[llvm-commits] [gcc-plugin] r80092 - /gcc-plugin/trunk/Makefile
Duncan Sands
baldrick at free.fr
Wed Aug 26 07:22:14 PDT 2009
Author: baldrick
Date: Wed Aug 26 09:22:14 2009
New Revision: 80092
URL: http://llvm.org/viewvc/llvm-project?rev=80092&view=rev
Log:
The build is currently warning free. Use the
combination "-Werror -Wall" to try and keep it
this way!
Modified:
gcc-plugin/trunk/Makefile
Modified: gcc-plugin/trunk/Makefile
URL: http://llvm.org/viewvc/llvm-project/gcc-plugin/trunk/Makefile?rev=80092&r1=80091&r2=80092&view=diff
==============================================================================
--- gcc-plugin/trunk/Makefile (original)
+++ gcc-plugin/trunk/Makefile Wed Aug 26 09:22:14 2009
@@ -12,7 +12,7 @@
$(ARCH_DIR)/llvm-target.cpp llvm-types.cpp bits_and_bobs.cpp
PLUGIN_OBJECT_FILES=$(C_SOURCE_FILES:.c=.o) $(CPP_SOURCE_FILES:.cpp=.o)
-CFLAGS+=-Werror -fPIC -g -O2
+CFLAGS+=-Wall -Werror -fPIC -g -O2
CFLAGS+=-DIN_GCC -DREVISION=\"$(REVISION)\" \
-DTARGET_NAME=\"$(TARGET_TRIPLE)\" -I$(ARCH_DIR)
CFLAGS+=-I${GCCOBJECT_DIR}/gcc -I${GCCOBJECT_DIR}/gcc/include \
More information about the llvm-commits
mailing list