Chromium Code Reviews| Index: Makefile.standalone |
| diff --git a/Makefile.standalone b/Makefile.standalone |
| index b65e64833f7bf7c7579854c0f69fbd22180f9005..6a50f9a0302b8687c86509254db370d32b400f2f 100644 |
| --- a/Makefile.standalone |
| +++ b/Makefile.standalone |
| @@ -30,7 +30,7 @@ LLVM_LDFLAGS := `$(LLVM_BIN_PATH)/llvm-config --ldflags --libs` |
| OPTLEVEL := -O0 |
| CXX := g++ |
| CXXFLAGS := -Wall -Wextra -Werror -fno-rtti -fno-exceptions \ |
| - $(OPTLEVEL) -g $(LLVM_CXXFLAGS) -m32 |
| + $(OPTLEVEL) -g $(LLVM_CXXFLAGS) -m32 -Wno-error=unused-parameter |
|
jvoung (off chromium)
2014/07/01 17:32:52
Can you avoid filtering out the warning? Currently
Karl
2014/07/01 21:31:06
Added macro LLVM_UNUSED to individually turn this
Karl
2014/07/02 18:09:54
Adding flag back, since (at least at the moment) w
|
| LDFLAGS := -m32 |
| SRCS= \ |
| @@ -46,8 +46,10 @@ SRCS= \ |
| IceRegAlloc.cpp \ |
| IceTargetLowering.cpp \ |
| IceTargetLoweringX8632.cpp \ |
| + IceTranslator.cpp \ |
| IceTypes.cpp \ |
| - llvm2ice.cpp |
| + llvm2ice.cpp \ |
| + PNaClTranslator.cpp |
| OBJS=$(patsubst %.cpp, build/%.o, $(SRCS)) |