forked from OSchip/llvm-project
Fix gcc command line options after LLVMCore and LLVMbzip2 became archive
libraries. llvm-svn: 28623
This commit is contained in:
parent
f69d4c8f3b
commit
d661a4c218
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue