diff options
author | Tanya Lattner <tonic@nondot.org> | 2008-03-18 19:59:04 +0000 |
---|---|---|
committer | Tanya Lattner <tonic@nondot.org> | 2008-03-18 19:59:04 +0000 |
commit | a043a9b0f09baf6ff54b15cece9d032259118c05 (patch) | |
tree | abc26c1abc4acb69c246a7e2f50448fe80f433fc | |
parent | d161e1f9178fceac7701135260a95a3e4e776fd8 (diff) | |
download | bcm5719-llvm-a043a9b0f09baf6ff54b15cece9d032259118c05.tar.gz bcm5719-llvm-a043a9b0f09baf6ff54b15cece9d032259118c05.zip |
Do not pass -g flag when compiling tests, so remove the C.Flags. This only happens if you have a debug build of llvm.
llvm-svn: 48498
-rw-r--r-- | llvm/test/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/Makefile b/llvm/test/Makefile index d577b867ff3..724ba01d0f7 100644 --- a/llvm/test/Makefile +++ b/llvm/test/Makefile @@ -95,7 +95,7 @@ site.exp: Makefile $(LLVM_OBJ_ROOT)/Makefile.config @echo 'set objdir "$(LLVM_OBJ_ROOT)/test"' >>site.tmp @echo 'set gccpath "$(CC)"' >>site.tmp @echo 'set gxxpath "$(CXX)"' >>site.tmp - @echo 'set compile_c "$(CC) $(CPP.Flags) $(C.Flags) $(CompileCommonOpts) -c "' >>site.tmp + @echo 'set compile_c "$(CC) $(CPP.Flags) $(CompileCommonOpts) -c "' >>site.tmp @echo 'set compile_cxx "$(CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) -c"' >> site.tmp @echo 'set link "$(CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) $(LD.Flags)"' >>site.tmp @echo 'set llvmgcc "$(LLVMGCC)"' >> site.tmp |