blob: 7fad17b921ad453902a3f3f755c19a04fd5bc683 (
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 "-Xclang -disable-O0-optnone")
else()
set(OZERO_OPT "-O0")
endif()
configure_file(Makefile.cmake.test.in Makefile.cmake.test @ONLY)
|