blob: 6e85952cabf5e4ab6346e4a65682aa8cd38f994a (
plain) (
tree)
|
|
#===--------------------------------------------------------*- Makefile -*--===#
#
# The KLEE Symbolic Virtual Machine
#
# This file is distributed under the University of Illinois Open Source
# License. See LICENSE.TXT for details.
#
#===------------------------------------------------------------------------===#
LEVEL := ../
include $(LEVEL)/Makefile.cmake.bitcode.config
# Prevent glibc from inlining some definitions
# of builtins
LLVMCC.Flags += -D__NO_INLINE__
# FIXME: This is a horrible hack
ifeq ($(USE_MODULE_INSTEAD_OF_BCA),1)
MODULE_NAME=klee-libc
else
ARCHIVE_NAME=klee-libc
endif
include $(LEVEL)/Makefile.cmake.bitcode.rules
|