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:
Stefanus Du Toit 2013-07-30 19:19:55 +00:00
parent 0400444e24
commit 8742add4b1
1 changed files with 1 additions and 1 deletions

View File

@ -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