aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefanus Du Toit <stefanus.du.toit@intel.com>2013-07-30 19:19:55 +0000
committerStefanus Du Toit <stefanus.du.toit@intel.com>2013-07-30 19:19:55 +0000
commitf3b05d6372182528f3bb11982d9c68a1e431fe9f (patch)
treeeb8823974f5af09e63bc4cf76ac3a9298cd5dc59
parent9b27646b1327c09d398dd0ace6f0c41d3179477b (diff)
downloadlldb-f3b05d6372182528f3bb11982d9c68a1e431fe9f.tar.gz
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. git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@187432 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/macosx/order/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/macosx/order/Makefile b/test/macosx/order/Makefile
index 30d3a51d0..52fae2d2c 100644
--- a/test/macosx/order/Makefile
+++ b/test/macosx/order/Makefile
@@ -1,7 +1,7 @@
LEVEL = ../../make
C_SOURCES := main.c
-LDFLAGS = $(CFLAGS) -Xlinker -order_file ./order-file
+LDFLAGS = $(CFLAGS) -Xlinker -order_file -Xlinker ./order-file
MAKE_DSYM := NO
include $(LEVEL)/Makefile.rules