mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-13 19:24:21 +00:00
7a2f39534f
llvm-svn: 171224
46 lines
1.6 KiB
Makefile
46 lines
1.6 KiB
Makefile
#===-- Makefile.config - Local configuration for LLVM ------*- Makefile -*--===#
|
|
#
|
|
# The LLVM Compiler Infrastructure
|
|
#
|
|
# This file is distributed under the University of Illinois Open Source
|
|
# License. See LICENSE.TXT for details.
|
|
#
|
|
#===------------------------------------------------------------------------===#
|
|
#
|
|
# This file is included by Makefile.common. It defines paths and other
|
|
# values specific to a particular installation of LLVM.
|
|
#
|
|
#===------------------------------------------------------------------------===#
|
|
|
|
# Set the root directory of this polly's object files
|
|
POLLY_SRC_ROOT := $(subst //,/,@abs_top_srcdir@)
|
|
|
|
# Set this variable to the top level directory where LLVM was built
|
|
POLLY_OBJ_ROOT := $(subst //,/,@abs_top_builddir@)
|
|
|
|
# Set the root directory of this project's install prefix
|
|
PROJ_INSTALL_ROOT := @prefix@
|
|
|
|
# Set the C++ flags
|
|
ifeq (@GXX@,yes)
|
|
POLLY_CXXFLAGS := "-fno-common -Woverloaded-virtual -Wno-long-long -Wall -W -Wno-unused-parameter -Wwrite-strings"
|
|
endif
|
|
|
|
POLLY_CXXFLAGS += "-fno-rtti -fno-exceptions"
|
|
|
|
CLOOG_FOUND := @cloog_found@
|
|
OPENSCOP_FOUND := @openscop_found@
|
|
SCOPLIB_FOUND := @scoplib_found@
|
|
CUDALIB_FOUND := @cuda_found@
|
|
|
|
# Set include directroys
|
|
POLLY_INC := @gmp_inc@ @isl_inc@ \
|
|
@cloog_inc@ @openscop_inc@ @scoplib_inc@ @cuda_inc@\
|
|
@pluto_inc@ -I$(POLLY_SRC_ROOT)/lib/JSON/include
|
|
|
|
POLLY_LD := @gmp_ld@ @isl_ld@ @cloog_ld@ @openscop_ld@ @scoplib_ld@ \
|
|
@scoplib_rpath@ @cuda_ld@ @pluto_ld@
|
|
|
|
POLLY_LIB := @gmp_lib@ @isl_lib@ @cloog_lib@ @openscop_lib@ @scoplib_lib@ \
|
|
@cuda_lib@ @pluto_lib@
|