Stop using STATIC_CFLAGS.
This was added in r293648 to pass -mlong-calls for crt1.o and gcrt1.o. The use of -mlong-calls was removed in r358851 for LLVM 10.0, leaving STATIC_CFLAGS empty. Sponsored by: DARPA Differential Revision: https://reviews.freebsd.org/D25305
This commit is contained in:
parent
5ca3c99233
commit
85c0b9fcfe
@ -21,13 +21,13 @@ CLEANFILES= ${OBJS} crt1_c.o crt1_s.o gcrt1_c.o Scrt1_c.o
|
||||
CLEANFILES+= crtbrand.o ignore_init_note.o
|
||||
|
||||
crt1_c.o: crt1_c.c
|
||||
${CC} ${CFLAGS} ${STATIC_CFLAGS} -c -o ${.TARGET} ${.CURDIR}/crt1_c.c
|
||||
${CC} ${CFLAGS} -c -o ${.TARGET} ${.CURDIR}/crt1_c.c
|
||||
|
||||
crt1.o: crt1_c.o crt1_s.o crtbrand.o ignore_init_note.o
|
||||
${LD} ${_LDFLAGS} -o ${.TARGET} -r ${.ALLSRC:M*.o}
|
||||
|
||||
gcrt1_c.o: crt1_c.c
|
||||
${CC} ${CFLAGS} ${STATIC_CFLAGS} -DGCRT -c -o ${.TARGET} ${.CURDIR}/crt1_c.c
|
||||
${CC} ${CFLAGS} -DGCRT -c -o ${.TARGET} ${.CURDIR}/crt1_c.c
|
||||
|
||||
gcrt1.o: gcrt1_c.o crt1_s.o crtbrand.o ignore_init_note.o
|
||||
${LD} ${_LDFLAGS} -o ${.TARGET} -r ${.ALLSRC:M*.o}
|
||||
|
Loading…
Reference in New Issue
Block a user