Added LDLAST variable, substituted by configure script, for the final
argument to the linker (required for DEC Alpha threads).
This commit is contained in:
parent
16e93a8d59
commit
bd5f193ee5
|
@ -25,6 +25,7 @@ AR= @AR@
|
||||||
|
|
||||||
OPT= @OPT@
|
OPT= @OPT@
|
||||||
LDFLAGS= @LDFLAGS@
|
LDFLAGS= @LDFLAGS@
|
||||||
|
LDLAST= @LDLAST@
|
||||||
|
|
||||||
DEFS= @DEFS@
|
DEFS= @DEFS@
|
||||||
LIBS= @LIBS@
|
LIBS= @LIBS@
|
||||||
|
@ -126,7 +127,7 @@ $(LIB): $& $(OBJS) Makefile
|
||||||
$(CC) -c $(CFLAGS) -DBUILD=`cat buildno` $(srcdir)/getbuildinfo.c
|
$(CC) -c $(CFLAGS) -DBUILD=`cat buildno` $(srcdir)/getbuildinfo.c
|
||||||
$(AR) r $(LIB) getbuildinfo.o
|
$(AR) r $(LIB) getbuildinfo.o
|
||||||
$(LINKCC) $(LDFLAGS) $(OPT) $(LINKFORSHARED) $(ADDOBJS) \
|
$(LINKCC) $(LDFLAGS) $(OPT) $(LINKFORSHARED) $(ADDOBJS) \
|
||||||
$(MYLIBS) $(MODLIBS) $(LIBS) $(SYSLIBS) -o python
|
$(MYLIBS) $(MODLIBS) $(LIBS) $(SYSLIBS) -o python $(LDLAST)
|
||||||
mv python ../python
|
mv python ../python
|
||||||
|
|
||||||
buildno:
|
buildno:
|
||||||
|
|
Loading…
Reference in New Issue