[llvm] r228531 - [Orc][Kaleidoscope] Build Kaleidoscope/Orc tutorials with warnings.
Lang Hames
lhames at gmail.com
Sun Feb 8 11:15:33 PST 2015
Author: lhames
Date: Sun Feb 8 13:15:33 2015
New Revision: 228531
URL: http://llvm.org/viewvc/llvm-project?rev=228531&view=rev
Log:
[Orc][Kaleidoscope] Build Kaleidoscope/Orc tutorials with warnings.
Modified:
llvm/trunk/examples/Kaleidoscope/Orc/initial/Makefile
llvm/trunk/examples/Kaleidoscope/Orc/lazy_codegen/Makefile
llvm/trunk/examples/Kaleidoscope/Orc/lazy_irgen/Makefile
Modified: llvm/trunk/examples/Kaleidoscope/Orc/initial/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/examples/Kaleidoscope/Orc/initial/Makefile?rev=228531&r1=228530&r2=228531&view=diff
==============================================================================
--- llvm/trunk/examples/Kaleidoscope/Orc/initial/Makefile (original)
+++ llvm/trunk/examples/Kaleidoscope/Orc/initial/Makefile Sun Feb 8 13:15:33 2015
@@ -2,7 +2,7 @@
all: toy
toy: toy.cpp
- clang++ -std=c++11 toy.cpp -g -O0 -rdynamic -fno-rtti `llvm-config --cppflags --ldflags --system-libs --libs core orcjit native` -o toy
+ clang++ -Wall -std=c++11 toy.cpp -g -O0 -rdynamic -fno-rtti `llvm-config --cppflags --ldflags --system-libs --libs core orcjit native` -o toy
.PHONY: clean
clean:
Modified: llvm/trunk/examples/Kaleidoscope/Orc/lazy_codegen/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/examples/Kaleidoscope/Orc/lazy_codegen/Makefile?rev=228531&r1=228530&r2=228531&view=diff
==============================================================================
--- llvm/trunk/examples/Kaleidoscope/Orc/lazy_codegen/Makefile (original)
+++ llvm/trunk/examples/Kaleidoscope/Orc/lazy_codegen/Makefile Sun Feb 8 13:15:33 2015
@@ -2,7 +2,7 @@
all: toy
toy: toy.cpp
- clang++ -std=c++11 toy.cpp -g -O0 -rdynamic -fno-rtti `llvm-config --cppflags --ldflags --system-libs --libs core orcjit native` -o toy
+ clang++ -Wall -std=c++11 toy.cpp -g -O0 -rdynamic -fno-rtti `llvm-config --cppflags --ldflags --system-libs --libs core orcjit native` -o toy
.PHONY: clean
clean:
Modified: llvm/trunk/examples/Kaleidoscope/Orc/lazy_irgen/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/examples/Kaleidoscope/Orc/lazy_irgen/Makefile?rev=228531&r1=228530&r2=228531&view=diff
==============================================================================
--- llvm/trunk/examples/Kaleidoscope/Orc/lazy_irgen/Makefile (original)
+++ llvm/trunk/examples/Kaleidoscope/Orc/lazy_irgen/Makefile Sun Feb 8 13:15:33 2015
@@ -2,7 +2,7 @@
all: toy
toy: toy.cpp
- clang++ -std=c++11 toy.cpp -g -O0 -rdynamic -fno-rtti `llvm-config --cppflags --ldflags --system-libs --libs core orcjit native` -o toy
+ clang++ -Wall -std=c++11 toy.cpp -g -O0 -rdynamic -fno-rtti `llvm-config --cppflags --ldflags --system-libs --libs core orcjit native` -o toy
.PHONY: clean
clean:
More information about the llvm-commits
mailing list