diff options
author | Barry Warsaw <barry@python.org> | 2010-09-03 18:30:30 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2010-09-03 18:30:30 (GMT) |
commit | 35f3a2cbeb5a2aabeb83d5e451e9560fcd288029 (patch) | |
tree | 3f64b1e1112301942579512e5f8de4e3f2f983c5 /Makefile.pre.in | |
parent | e4ea994f20a7fb1d505fca48295a196645dce9b6 (diff) | |
download | cpython-35f3a2cbeb5a2aabeb83d5e451e9560fcd288029.zip cpython-35f3a2cbeb5a2aabeb83d5e451e9560fcd288029.tar.gz cpython-35f3a2cbeb5a2aabeb83d5e451e9560fcd288029.tar.bz2 |
PEP 3149 is accepted.
http://mail.python.org/pipermail/python-dev/2010-September/103408.html
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 3fe35c4..aab82a5 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -35,6 +35,7 @@ LINKCC= @LINKCC@ AR= @AR@ RANLIB= @RANLIB@ SVNVERSION= @SVNVERSION@ +SOABI= @SOABI@ GNULD= @GNULD@ @@ -559,6 +560,11 @@ Modules/getpath.o: $(srcdir)/Modules/getpath.c Makefile Modules/python.o: $(srcdir)/Modules/python.c $(MAINCC) -c $(PY_CORE_CFLAGS) -o $@ $(srcdir)/Modules/python.c +Python/dynload_shlib.o: $(srcdir)/Python/dynload_shlib.c Makefile + $(CC) -c $(PY_CORE_CFLAGS) \ + -DSOABI='"$(SOABI)"' \ + -o $@ $(srcdir)/Python/dynload_shlib.c + $(IO_OBJS): $(IO_H) # Use a stamp file to prevent make -j invoking pgen twice |