forked from OSchip/llvm-project
Add missing -Xlinker to order test.
Both the parameter itself and the argument to the parameter must be prefixed with -Xlinker so that they are passed properly. llvm-svn: 187432
This commit is contained in:
parent
0400444e24
commit
8742add4b1
|
@ -1,7 +1,7 @@
|
||||||
LEVEL = ../../make
|
LEVEL = ../../make
|
||||||
|
|
||||||
C_SOURCES := main.c
|
C_SOURCES := main.c
|
||||||
LDFLAGS = $(CFLAGS) -Xlinker -order_file ./order-file
|
LDFLAGS = $(CFLAGS) -Xlinker -order_file -Xlinker ./order-file
|
||||||
MAKE_DSYM := NO
|
MAKE_DSYM := NO
|
||||||
|
|
||||||
include $(LEVEL)/Makefile.rules
|
include $(LEVEL)/Makefile.rules
|
||||||
|
|
Loading…
Reference in New Issue