blob: 0f565bedd7483918108b38598ee4ac689ab1e643 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#===------------------------------------------------------------------------===#
#
# The KLEE Symbolic Virtual Machine
#
# This file is distributed under the University of Illinois Open Source
# License. See LICENSE.TXT for details.
#
#===------------------------------------------------------------------------===#
if (${LLVM_VERSION_MAJOR} GREATER 4)
set(OZERO_OPT "-O0 -Xclang -disable-O0-optnone")
else()
set(OZERO_OPT "-O0")
endif()
configure_file(Makefile.cmake.test.in Makefile.cmake.test @ONLY)
|