From 902cf02b0a79e1aaedaf8bb90511e5a92dd37532 Mon Sep 17 00:00:00 2001 From: Sanjiv Gupta Date: Thu, 6 Aug 2009 04:09:26 +0000 Subject: [PATCH] llvm-ld has a new option called -b to specify the name of bitcode output file, use that. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78282 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/llvmc/example/mcc16/plugins/PIC16Base/PIC16Base.td | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/llvmc/example/mcc16/plugins/PIC16Base/PIC16Base.td b/tools/llvmc/example/mcc16/plugins/PIC16Base/PIC16Base.td index 508652425b1..3d25ab612a0 100644 --- a/tools/llvmc/example/mcc16/plugins/PIC16Base/PIC16Base.td +++ b/tools/llvmc/example/mcc16/plugins/PIC16Base/PIC16Base.td @@ -55,7 +55,7 @@ def llvm_ld_lto : Tool<[ (in_language "llvm-bitcode"), (out_language "llvm-bitcode"), (output_suffix "bc"), - (cmd_line "$CALL(GetBinDir)llvm-ld -L $CALL(GetStdLibsDir) -l std $INFILE -o $OUTFILE"), + (cmd_line "$CALL(GetBinDir)llvm-ld -L $CALL(GetStdLibsDir) -l std $INFILE -b $OUTFILE"), (actions (case (switch_on "g"), (append_cmd "-disable-opt"), (not_empty "Wo,"), (unpack_values "Wo,"))),