diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2010-04-24 05:07:24 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2010-04-24 05:07:24 +0000 |
commit | 36fe4b42e874e0d7a256f393822362b69e421c01 (patch) | |
tree | 450eb1df52fd9162d21c3defe035377f403a3e12 /examples | |
parent | 4e16ad18cd5ced3dfaca471cb7a8ee4ca6380171 (diff) | |
download | external_llvm-36fe4b42e874e0d7a256f393822362b69e421c01.zip external_llvm-36fe4b42e874e0d7a256f393822362b69e421c01.tar.gz external_llvm-36fe4b42e874e0d7a256f393822362b69e421c01.tar.bz2 |
Use provided llvm-defined variables instead of twisting user-controlled knobs.
No visible change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@102240 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'examples')
-rw-r--r-- | examples/ExceptionDemo/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/ExceptionDemo/Makefile b/examples/ExceptionDemo/Makefile index 06bba66..4807447 100644 --- a/examples/ExceptionDemo/Makefile +++ b/examples/ExceptionDemo/Makefile @@ -9,9 +9,8 @@ LEVEL = ../.. TOOLNAME = ExceptionDemo EXAMPLE_TOOL = 1 +REQUIRES_EH = 1 LINK_COMPONENTS := jit interpreter nativecodegen include $(LEVEL)/Makefile.common - -CXXFLAGS += -fexceptions |