summaryrefslogtreecommitdiff
path: root/test/lib/llvm2cpp.exp
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2006-06-01 07:19:28 +0000
committerReid Spencer <rspencer@reidspencer.com>2006-06-01 07:19:28 +0000
commit42505f55674f513a5fb1009250ca308ea0e8b6e1 (patch)
treeb68d6bf6d49782a47a6f877e5308e942ab415147 /test/lib/llvm2cpp.exp
parent79818a40d73a1ca6154f0823d599c3208956d5e7 (diff)
downloadllvm-42505f55674f513a5fb1009250ca308ea0e8b6e1.tar.gz
llvm-42505f55674f513a5fb1009250ca308ea0e8b6e1.tar.bz2
llvm-42505f55674f513a5fb1009250ca308ea0e8b6e1.tar.xz
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
Diffstat (limited to 'test/lib/llvm2cpp.exp')
-rw-r--r--test/lib/llvm2cpp.exp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lib/llvm2cpp.exp b/test/lib/llvm2cpp.exp
index 9450fe92a7..33ca7df9f3 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