From: Reid Spencer Date: Thu, 1 Jun 2006 07:19:28 +0000 (+0000) Subject: Fix gcc command line options after LLVMCore and LLVMbzip2 became archive X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=42505f55674f513a5fb1009250ca308ea0e8b6e1;p=oota-llvm.git Fix gcc command line options after LLVMCore and LLVMbzip2 became archive libraries. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28623 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/lib/llvm2cpp.exp b/test/lib/llvm2cpp.exp index 9450fe92a7b..33ca7df9f3e 100644 --- a/test/lib/llvm2cpp.exp +++ b/test/lib/llvm2cpp.exp @@ -54,7 +54,7 @@ proc llvm2cpp-test { files } { } set retval [ catch { - exec -keepnewline gcc -g -D__STDC_LIMIT_MACROS -o $executable $generated -I$srcroot/include -I$objroot/include -L$llvmlibsdir $llvmlibsdir/LLVMCore.o -lLLVMSupport $llvmlibsdir/LLVMbzip2.o -lLLVMSystem -lstdc++ } msg ] + exec -keepnewline gcc -g -D__STDC_LIMIT_MACROS -o $executable $generated -I$srcroot/include -I$objroot/include -L$llvmlibsdir -lLLVMCore -lLLVMSupport -lLLVMbzip2.o -lLLVMSystem -lstdc++ } msg ] if { $retval != 0 } { fail "$test: gcc returned $retval\n$msg" continue