[llvm-commits] CVS: llvm/test/lib/llvm2cpp.exp
Reid Spencer
reid at x10sys.com
Thu Jun 1 00:20:15 PDT 2006
Changes in directory llvm/test/lib:
llvm2cpp.exp updated: 1.4 -> 1.5
---
Log message:
Fix gcc command line options after LLVMCore and LLVMbzip2 became archive
libraries.
---
Diffs of the changes: (+1 -1)
llvm2cpp.exp | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/test/lib/llvm2cpp.exp
diff -u llvm/test/lib/llvm2cpp.exp:1.4 llvm/test/lib/llvm2cpp.exp:1.5
--- llvm/test/lib/llvm2cpp.exp:1.4 Tue May 30 18:07:17 2006
+++ llvm/test/lib/llvm2cpp.exp Thu Jun 1 02:19:28 2006
@@ -54,7 +54,7 @@
}
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
More information about the llvm-commits
mailing list