[Lldb-commits] [lldb] r187432 - Add missing -Xlinker to order test.

Stefanus Du Toit stefanus.du.toit at intel.com
Tue Jul 30 12:19:55 PDT 2013


Author: sdt
Date: Tue Jul 30 14:19:55 2013
New Revision: 187432

URL: http://llvm.org/viewvc/llvm-project?rev=187432&view=rev
Log:
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.

Modified:
    lldb/trunk/test/macosx/order/Makefile

Modified: lldb/trunk/test/macosx/order/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/macosx/order/Makefile?rev=187432&r1=187431&r2=187432&view=diff
==============================================================================
--- lldb/trunk/test/macosx/order/Makefile (original)
+++ lldb/trunk/test/macosx/order/Makefile Tue Jul 30 14:19:55 2013
@@ -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





More information about the lldb-commits mailing list