2004-04-24 02:10:56 +02:00
|
|
|
#===-- Makefile.config - Local configuration for LLVM ------*- Makefile -*--===#
|
|
|
|
#
|
|
|
|
# The LLVM Compiler Infrastructure
|
|
|
|
#
|
2007-12-29 21:11:13 +01:00
|
|
|
# This file is distributed under the University of Illinois Open Source
|
|
|
|
# License. See LICENSE.TXT for details.
|
2009-01-09 17:44:42 +01:00
|
|
|
#
|
2004-04-24 02:10:56 +02:00
|
|
|
#===------------------------------------------------------------------------===#
|
2003-06-30 23:59:07 +02:00
|
|
|
#
|
|
|
|
# This file is included by Makefile.common. It defines paths and other
|
|
|
|
# values specific to a particular installation of LLVM.
|
2004-01-16 22:31:34 +01:00
|
|
|
#
|
2004-04-24 02:10:56 +02:00
|
|
|
#===------------------------------------------------------------------------===#
|
2003-06-30 23:59:07 +02:00
|
|
|
|
2005-01-16 03:20:42 +01:00
|
|
|
# Define LLVM specific info and directories based on the autoconf variables
|
|
|
|
LLVMPackageName := @PACKAGE_NAME@
|
|
|
|
LLVMVersion := @PACKAGE_VERSION@
|
2004-11-29 05:53:50 +01:00
|
|
|
LLVM_CONFIGTIME := @LLVM_CONFIGTIME@
|
2005-01-16 03:20:42 +01:00
|
|
|
|
|
|
|
###########################################################################
|
|
|
|
# Directory Configuration
|
|
|
|
# This section of the Makefile determines what is where. To be
|
|
|
|
# specific, there are several locations that need to be defined:
|
|
|
|
#
|
|
|
|
# o LLVM_SRC_ROOT : The root directory of the LLVM source code.
|
|
|
|
# o LLVM_OBJ_ROOT : The root directory containing the built LLVM code.
|
|
|
|
#
|
|
|
|
# o PROJ_SRC_DIR : The directory containing the code to build.
|
|
|
|
# o PROJ_SRC_ROOT : The root directory of the code to build.
|
|
|
|
#
|
|
|
|
# o PROJ_OBJ_DIR : The directory in which compiled code will be placed.
|
|
|
|
# o PROJ_OBJ_ROOT : The root directory in which compiled code is placed.
|
|
|
|
#
|
|
|
|
###########################################################################
|
|
|
|
|
2006-07-28 07:05:00 +02:00
|
|
|
PWD := @BINPWD@
|
2005-01-16 03:20:42 +01:00
|
|
|
# Set the project name to LLVM if its not defined
|
|
|
|
ifndef PROJECT_NAME
|
2006-08-08 01:23:39 +02:00
|
|
|
PROJECT_NAME := $(LLVMPackageName)
|
2005-01-16 03:20:42 +01:00
|
|
|
endif
|
|
|
|
|
2006-07-28 07:05:00 +02:00
|
|
|
PROJ_OBJ_DIR := $(shell $(PWD))
|
|
|
|
PROJ_OBJ_ROOT := $(shell cd $(PROJ_OBJ_DIR)/$(LEVEL); $(PWD))
|
2005-01-16 03:20:42 +01:00
|
|
|
|
2006-08-08 01:23:39 +02:00
|
|
|
ifeq ($(PROJECT_NAME),llvm)
|
2006-07-28 07:05:00 +02:00
|
|
|
LLVM_SRC_ROOT := $(shell cd @abs_top_srcdir@; $(PWD))
|
|
|
|
LLVM_OBJ_ROOT := $(shell cd @abs_top_builddir@; $(PWD))
|
|
|
|
PROJ_SRC_ROOT := $(shell cd $(LLVM_SRC_ROOT); $(PWD))
|
|
|
|
PROJ_SRC_DIR := $(shell cd $(LLVM_SRC_ROOT)/$(patsubst $(PROJ_OBJ_ROOT)%,%,$(PROJ_OBJ_DIR)); $(PWD))
|
2007-01-17 21:24:45 +01:00
|
|
|
prefix := @prefix@
|
|
|
|
PROJ_prefix := $(prefix)
|
2005-01-16 03:20:42 +01:00
|
|
|
PROJ_VERSION := $(LLVMVersion)
|
|
|
|
else
|
|
|
|
ifndef PROJ_SRC_ROOT
|
|
|
|
$(error Projects must define PROJ_SRC_ROOT)
|
|
|
|
endif
|
|
|
|
ifndef PROJ_OBJ_ROOT
|
|
|
|
$(error Projects must define PROJ_OBJ_ROOT)
|
|
|
|
endif
|
|
|
|
ifndef PROJ_INSTALL_ROOT
|
|
|
|
$(error Projects must define PROJ_INSTALL_ROOT)
|
|
|
|
endif
|
|
|
|
ifndef LLVM_SRC_ROOT
|
|
|
|
$(error Projects must define LLVM_SRC_ROOT)
|
|
|
|
endif
|
|
|
|
ifndef LLVM_OBJ_ROOT
|
|
|
|
$(error Projects must define LLVM_OBJ_ROOT)
|
|
|
|
endif
|
2006-07-28 07:05:00 +02:00
|
|
|
PROJ_SRC_DIR := $(shell cd $(PROJ_SRC_ROOT)/$(patsubst $(PROJ_OBJ_ROOT)%,%,$(PROJ_OBJ_DIR)); $(PWD))
|
2007-01-17 21:24:45 +01:00
|
|
|
prefix := $(PROJ_INSTALL_ROOT)
|
|
|
|
PROJ_prefix := $(prefix)
|
2005-01-16 03:20:42 +01:00
|
|
|
ifndef PROJ_VERSION
|
|
|
|
PROJ_VERSION := 1.0
|
|
|
|
endif
|
|
|
|
endif
|
2004-11-29 05:53:50 +01:00
|
|
|
|
2007-03-29 21:05:44 +02:00
|
|
|
LLVMMAKE := $(LLVM_SRC_ROOT)/make
|
|
|
|
|
2007-01-17 21:24:45 +01:00
|
|
|
PROJ_bindir := $(DESTDIR)$(PROJ_prefix)/bin
|
|
|
|
PROJ_libdir := $(DESTDIR)$(PROJ_prefix)/lib
|
|
|
|
PROJ_datadir := $(DESTDIR)$(PROJ_prefix)/share
|
|
|
|
PROJ_docsdir := $(DESTDIR)$(PROJ_prefix)/docs/llvm
|
|
|
|
PROJ_etcdir := $(DESTDIR)$(PROJ_prefix)/etc/llvm
|
|
|
|
PROJ_includedir := $(DESTDIR)$(PROJ_prefix)/include
|
|
|
|
PROJ_infodir := $(DESTDIR)$(PROJ_prefix)/info
|
2007-07-04 01:04:11 +02:00
|
|
|
PROJ_mandir := $(DESTDIR)$(PROJ_prefix)/share/man
|
2007-01-17 21:24:45 +01:00
|
|
|
|
2004-12-31 23:54:28 +01:00
|
|
|
# Determine if we're on a unix type operating system
|
|
|
|
LLVM_ON_UNIX:=@LLVM_ON_UNIX@
|
|
|
|
LLVM_ON_WIN32:=@LLVM_ON_WIN32@
|
|
|
|
|
2009-08-18 02:40:33 +02:00
|
|
|
# Host operating system for which LLVM will be run.
|
2003-06-30 23:59:07 +02:00
|
|
|
OS=@OS@
|
2009-08-18 02:40:33 +02:00
|
|
|
HOST_OS=@HOST_OS@
|
|
|
|
# Target operating system for which LLVM will compile for.
|
|
|
|
TARGET_OS=@TARGET_OS@
|
2003-06-30 23:59:07 +02:00
|
|
|
|
2003-07-02 00:07:39 +02:00
|
|
|
# Target hardware architecture
|
|
|
|
ARCH=@ARCH@
|
|
|
|
|
2006-07-26 23:14:56 +02:00
|
|
|
# Indicates, whether we're cross-compiling LLVM or not
|
|
|
|
LLVM_CROSS_COMPILING=@LLVM_CROSS_COMPILING@
|
|
|
|
|
|
|
|
# Executable file extension for build platform (mainly for
|
|
|
|
# tablegen call if we're cross-compiling).
|
|
|
|
BUILD_EXEEXT=@BUILD_EXEEXT@
|
|
|
|
|
2008-10-03 00:56:44 +02:00
|
|
|
# Compilers for the build platflorm (mainly for tablegen
|
|
|
|
# call if we're cross-compiling).
|
|
|
|
BUILD_CC=@BUILD_CC@
|
|
|
|
BUILD_CXX=@BUILD_CXX@
|
|
|
|
|
2009-09-03 01:52:23 +02:00
|
|
|
# Triple for configuring build tools when cross-compiling
|
|
|
|
BUILD_TRIPLE=@build@
|
|
|
|
|
2004-11-07 20:12:53 +01:00
|
|
|
# Target triple (cpu-vendor-os) for which we should generate code
|
|
|
|
TARGET_TRIPLE=@target@
|
|
|
|
|
2006-06-21 00:16:32 +02:00
|
|
|
# Extra options to compile LLVM with
|
|
|
|
EXTRA_OPTIONS=@EXTRA_OPTIONS@
|
|
|
|
|
2004-02-13 22:57:29 +01:00
|
|
|
# Endian-ness of the target
|
|
|
|
ENDIAN=@ENDIAN@
|
|
|
|
|
2003-06-30 23:59:07 +02:00
|
|
|
# Path to the C++ compiler to use. This is an optional setting, which defaults
|
|
|
|
# to whatever your gmake defaults to.
|
|
|
|
CXX = @CXX@
|
|
|
|
|
2004-06-17 17:39:58 +02:00
|
|
|
# Path to the CC binary, which use used by testcases for native builds.
|
2003-06-30 23:59:07 +02:00
|
|
|
CC := @CC@
|
|
|
|
|
2004-01-16 22:31:34 +01:00
|
|
|
# Linker flags.
|
2003-07-01 17:02:59 +02:00
|
|
|
LDFLAGS+=@LDFLAGS@
|
2003-07-01 00:33:53 +02:00
|
|
|
|
2004-01-16 22:31:34 +01:00
|
|
|
# Path to the library archiver program.
|
2003-06-30 23:59:07 +02:00
|
|
|
AR_PATH = @AR@
|
2009-08-18 02:40:33 +02:00
|
|
|
AR = @AR@
|
2003-06-30 23:59:07 +02:00
|
|
|
|
2006-07-28 01:00:30 +02:00
|
|
|
# Path to the nm program
|
|
|
|
NM_PATH = @NM@
|
|
|
|
|
2004-10-25 10:27:37 +02:00
|
|
|
# The pathnames of the programs we require to build
|
2004-12-16 18:48:14 +01:00
|
|
|
CMP := @CMP@
|
|
|
|
CP := @CP@
|
2004-11-29 05:53:50 +01:00
|
|
|
DATE := @DATE@
|
|
|
|
FIND := @FIND@
|
|
|
|
GREP := @GREP@
|
|
|
|
INSTALL := @INSTALL@
|
2005-01-16 03:20:42 +01:00
|
|
|
MKDIR := $(LLVM_SRC_ROOT)/autoconf/mkinstalldirs
|
2004-11-29 05:53:50 +01:00
|
|
|
MV := @MV@
|
|
|
|
RANLIB := @RANLIB@
|
|
|
|
RM := @RM@
|
|
|
|
SED := @SED@
|
|
|
|
TAR := @TAR@
|
|
|
|
|
|
|
|
# Paths to miscellaneous programs we hope are present but might not be
|
2009-01-09 17:44:42 +01:00
|
|
|
PERL := @PERL@
|
2004-11-29 05:53:50 +01:00
|
|
|
BZIP2 := @BZIP2@
|
|
|
|
DOT := @DOT@
|
|
|
|
DOXYGEN := @DOXYGEN@
|
|
|
|
GROFF := @GROFF@
|
|
|
|
GZIP := @GZIP@
|
2008-03-31 18:46:23 +02:00
|
|
|
OCAMLC := @OCAMLC@
|
|
|
|
OCAMLOPT := @OCAMLOPT@
|
|
|
|
OCAMLDEP := @OCAMLDEP@
|
|
|
|
OCAMLDOC := @OCAMLDOC@
|
2008-10-22 11:42:14 +02:00
|
|
|
GAS := @GAS@
|
2004-11-29 05:53:50 +01:00
|
|
|
POD2HTML := @POD2HTML@
|
|
|
|
POD2MAN := @POD2MAN@
|
|
|
|
RUNTEST := @RUNTEST@
|
2004-11-30 09:11:54 +01:00
|
|
|
TCLSH := @TCLSH@
|
2004-11-29 05:53:50 +01:00
|
|
|
ZIP := @ZIP@
|
2003-06-30 23:59:07 +02:00
|
|
|
|
2006-12-01 01:37:14 +01:00
|
|
|
HAVE_PERL := @HAVE_PERL@
|
|
|
|
HAVE_PTHREAD := @HAVE_PTHREAD@
|
2006-03-24 00:21:29 +01:00
|
|
|
|
2005-04-22 19:14:14 +02:00
|
|
|
LIBS := @LIBS@
|
|
|
|
|
2007-10-02 11:50:18 +02:00
|
|
|
# Targets that we should build
|
|
|
|
TARGETS_TO_BUILD=@TARGETS_TO_BUILD@
|
|
|
|
|
2004-12-22 06:57:09 +01:00
|
|
|
# Path to location for LLVM C/C++ front-end. You can modify this if you
|
|
|
|
# want to override the value set by configure.
|
|
|
|
LLVMGCCDIR := @LLVMGCCDIR@
|
|
|
|
|
2003-06-30 23:59:07 +02:00
|
|
|
# Determine the target for which LLVM should generate code.
|
2006-11-05 21:10:16 +01:00
|
|
|
ifeq (@LLVMGCC_MAJVERS@,3)
|
2003-06-30 23:59:07 +02:00
|
|
|
LLVMGCCARCH := @target@/3.4-llvm
|
2006-11-05 21:10:16 +01:00
|
|
|
else
|
|
|
|
LLVMGCCARCH := @target@/@LLVMGCC_VERSION@
|
|
|
|
endif
|
2003-06-30 23:59:07 +02:00
|
|
|
|
2006-12-21 23:55:41 +01:00
|
|
|
# Determine the path where the library executables are
|
|
|
|
LLVMGCCLIBEXEC := @LLVMGCCLIBEXEC@
|
|
|
|
|
2004-01-16 22:31:34 +01:00
|
|
|
# Full pathnames of LLVM C/C++ front-end 'cc1' and 'cc1plus' binaries:
|
2004-12-22 06:57:09 +01:00
|
|
|
LLVMGCC := @LLVMGCC@
|
|
|
|
LLVMGXX := @LLVMGXX@
|
|
|
|
LLVMCC1 := @LLVMCC1@
|
|
|
|
LLVMCC1PLUS := @LLVMCC1PLUS@
|
2006-04-07 00:00:36 +02:00
|
|
|
LLVMGCC_VERSION := @LLVMGCC_VERSION@
|
|
|
|
LLVMGCC_MAJVERS := @LLVMGCC_MAJVERS@
|
2007-04-21 23:28:12 +02:00
|
|
|
LLVMGCC_LANGS := @LLVMGCC_LANGS@
|
2004-01-16 22:31:34 +01:00
|
|
|
|
2003-06-30 23:59:07 +02:00
|
|
|
# Path to directory where object files should be stored during a build.
|
|
|
|
# Set OBJ_ROOT to "." if you do not want to use a separate place for
|
|
|
|
# object files.
|
2003-09-06 16:44:17 +02:00
|
|
|
OBJ_ROOT := .
|
2003-06-30 23:59:07 +02:00
|
|
|
|
2009-03-03 05:55:15 +01:00
|
|
|
# What to pass as rpath flag to g++
|
|
|
|
RPATH := @RPATH@
|
|
|
|
|
2009-03-05 09:20:21 +01:00
|
|
|
# What to pass as -rdynamic flag to g++
|
|
|
|
RDYNAMIC := @RDYNAMIC@
|
|
|
|
|
2003-06-30 23:59:07 +02:00
|
|
|
# These are options that can either be enabled here, or can be enabled on the
|
2004-01-16 22:31:34 +01:00
|
|
|
# make command line (ie, make ENABLE_PROFILING=1):
|
2003-06-30 23:59:07 +02:00
|
|
|
|
2006-04-07 17:59:41 +02:00
|
|
|
# When ENABLE_OPTIMIZED is enabled, LLVM code is optimized and output is put
|
2009-01-09 17:44:42 +01:00
|
|
|
# into the "Release" directories. Otherwise, LLVM code is not optimized and
|
2006-04-07 17:59:41 +02:00
|
|
|
# output is put in the "Debug" directories.
|
2003-06-30 23:59:07 +02:00
|
|
|
#ENABLE_OPTIMIZED = 1
|
|
|
|
@ENABLE_OPTIMIZED@
|
|
|
|
|
2009-04-17 16:49:22 +02:00
|
|
|
# When ENABLE_PROFILING is enabled, profile instrumentation is done
|
|
|
|
# and output is put into the "<Flavor>+Profile" directories, where
|
|
|
|
# <Flavor> is either Debug or Release depending on how other builkd
|
|
|
|
# flags are set.. Otherwise, output is put in the <Flavor>
|
|
|
|
# directories.
|
|
|
|
#ENABLE_PROFILING = 1
|
|
|
|
@ENABLE_PROFILING@
|
|
|
|
|
2009-07-03 05:52:07 +02:00
|
|
|
# When DISABLE_ASSERTIONS is enabled, builds of all of the LLVM code will
|
2006-04-10 01:39:43 +02:00
|
|
|
# exclude assertion checks, otherwise they are included.
|
2006-04-09 22:42:14 +02:00
|
|
|
#DISABLE_ASSERTIONS = 1
|
|
|
|
@DISABLE_ASSERTIONS@
|
2006-04-07 17:59:41 +02:00
|
|
|
|
2007-06-28 21:36:08 +02:00
|
|
|
# When ENABLE_EXPENSIVE_CHECKS is enabled, builds of all of the LLVM
|
|
|
|
# code will include expensive checks, otherwise they are excluded.
|
|
|
|
#ENABLE_EXPENSIVE_CHECKS = 0
|
|
|
|
@ENABLE_EXPENSIVE_CHECKS@
|
|
|
|
|
2006-11-17 04:32:33 +01:00
|
|
|
# When DEBUG_RUNTIME is enabled, the runtime libraries will retain debug
|
|
|
|
# symbols.
|
|
|
|
#DEBUG_RUNTIME = 1
|
|
|
|
@DEBUG_RUNTIME@
|
|
|
|
|
2009-09-27 19:47:29 +02:00
|
|
|
# When DEBUG_SYMBOLS is enabled, the compiler libraries will retain debug
|
|
|
|
# symbols.
|
|
|
|
#DEBUG_SYMBOLS = 1
|
|
|
|
@DEBUG_SYMBOLS@
|
|
|
|
|
2009-11-04 05:32:50 +01:00
|
|
|
# The compiler flags to use for optimized builds.
|
|
|
|
OPTIMIZE_OPTION := @OPTIMIZE_OPTION@
|
|
|
|
|
2003-06-30 23:59:07 +02:00
|
|
|
# When ENABLE_PROFILING is enabled, the llvm source base is built with profile
|
|
|
|
# information to allow gprof to be used to get execution frequencies.
|
|
|
|
#ENABLE_PROFILING = 1
|
|
|
|
|
2004-11-29 05:53:50 +01:00
|
|
|
# When ENABLE_DOXYGEN is enabled, the doxygen documentation will be built
|
|
|
|
ENABLE_DOXYGEN = @ENABLE_DOXYGEN@
|
|
|
|
|
2006-06-01 03:09:43 +02:00
|
|
|
# Do we want to enable threads?
|
|
|
|
ENABLE_THREADS := @ENABLE_THREADS@
|
|
|
|
|
2006-12-16 23:07:52 +01:00
|
|
|
# Do we want to build with position independent code?
|
|
|
|
ENABLE_PIC := @ENABLE_PIC@
|
|
|
|
|
2008-09-02 19:35:16 +02:00
|
|
|
# Use -fvisibility-inlines-hidden?
|
|
|
|
ENABLE_VISIBILITY_INLINES_HIDDEN := @ENABLE_VISIBILITY_INLINES_HIDDEN@
|
|
|
|
|
2003-07-02 23:20:04 +02:00
|
|
|
# This option tells the Makefiles to produce verbose output.
|
2003-06-30 23:59:07 +02:00
|
|
|
# It essentially prints the commands that make is executing
|
|
|
|
#VERBOSE = 1
|
|
|
|
|
|
|
|
# Enable JIT for this platform
|
2006-03-24 00:21:29 +01:00
|
|
|
TARGET_HAS_JIT = @TARGET_HAS_JIT@
|
2003-06-30 23:59:07 +02:00
|
|
|
|
2006-07-26 23:14:56 +02:00
|
|
|
# Shared library extension for host platform.
|
2004-01-21 20:39:07 +01:00
|
|
|
SHLIBEXT = @SHLIBEXT@
|
|
|
|
|
2006-07-26 23:14:56 +02:00
|
|
|
# Executable file extension for host platform.
|
2004-06-01 21:04:38 +02:00
|
|
|
EXEEXT = @EXEEXT@
|
|
|
|
|
2005-01-16 03:20:42 +01:00
|
|
|
# Things we just assume are "there"
|
|
|
|
ECHO := echo
|
2006-08-04 20:18:08 +02:00
|
|
|
|
|
|
|
# Get the options for causing archives to link all their content instead of
|
|
|
|
# just missing symbols, and the inverse of that. This is used for certain LLVM
|
|
|
|
# tools that permit loadable modules. It ensures that the LLVM symbols will be
|
|
|
|
# available to those loadable modules.
|
|
|
|
LINKALL := @LINKALL@
|
|
|
|
NOLINKALL := @NOLINKALL@
|
2006-11-03 19:04:08 +01:00
|
|
|
|
|
|
|
# Get the value of HUGE_VAL_SANITY which will be either "yes" or "no" depending
|
|
|
|
# on the check.
|
|
|
|
HUGE_VAL_SANITY = @HUGE_VAL_SANITY@
|
2007-10-02 11:50:18 +02:00
|
|
|
|
|
|
|
# Bindings that we should build
|
2007-10-02 18:42:10 +02:00
|
|
|
BINDINGS_TO_BUILD := @BINDINGS_TO_BUILD@
|
|
|
|
ALL_BINDINGS := @ALL_BINDINGS@
|
|
|
|
OCAML_LIBDIR := @OCAML_LIBDIR@
|
2007-10-02 11:50:18 +02:00
|
|
|
|
2008-01-15 23:50:50 +01:00
|
|
|
# When compiling under Mingw/Cygwin, executables such as tblgen
|
|
|
|
# expect Windows paths, whereas the build system uses Unix paths.
|
|
|
|
# The function SYSPATH transforms Unix paths into Windows paths.
|
|
|
|
ifneq (,$(findstring -mno-cygwin, $(CXX)))
|
|
|
|
SYSPATH = $(shell echo $(1) | cygpath -m -f -)
|
|
|
|
else
|
|
|
|
SYSPATH = $(1)
|
|
|
|
endif
|
2009-02-03 08:10:08 +01:00
|
|
|
|
|
|
|
# Location of the plugin header file for gold.
|
|
|
|
BINUTILS_INCDIR := @BINUTILS_INCDIR@
|
2009-07-03 05:52:47 +02:00
|
|
|
|
2009-12-07 01:27:35 +01:00
|
|
|
C_INCLUDE_DIRS := @C_INCLUDE_DIRS@
|
2009-11-16 20:46:55 +01:00
|
|
|
CXX_INCLUDE_ROOT := @CXX_INCLUDE_ROOT@
|
|
|
|
CXX_INCLUDE_ARCH := @CXX_INCLUDE_ARCH@
|
|
|
|
CXX_INCLUDE_32BIT_DIR = @CXX_INCLUDE_32BIT_DIR@
|
|
|
|
CXX_INCLUDE_64BIT_DIR = @CXX_INCLUDE_64BIT_DIR@
|
2009-11-12 06:46:09 +01:00
|
|
|
|
2009-07-03 05:52:47 +02:00
|
|
|
# When ENABLE_LLVMC_DYNAMIC is enabled, LLVMC will link libCompilerDriver
|
|
|
|
# dynamically. This is needed to make dynamic plugins work on some targets
|
|
|
|
# (Windows).
|
|
|
|
ENABLE_LLVMC_DYNAMIC = 0
|
|
|
|
#@ENABLE_LLVMC_DYNAMIC@
|
2009-07-04 05:55:25 +02:00
|
|
|
|
|
|
|
# When ENABLE_LLVMC_DYNAMIC_PLUGINS is enabled, LLVMC will have dynamic plugin
|
|
|
|
# support (via the -load option).
|
|
|
|
ENABLE_LLVMC_DYNAMIC_PLUGINS = 1
|
|
|
|
#@ENABLE_LLVMC_DYNAMIC_PLUGINS@
|
2009-10-26 20:58:44 +01:00
|
|
|
|
|
|
|
# Optional flags supported by the compiler
|
|
|
|
# -Wno-missing-field-initializers
|
|
|
|
NO_MISSING_FIELD_INITIALIZERS = @NO_MISSING_FIELD_INITIALIZERS@
|
|
|
|
# -Wno-variadic-macros
|
|
|
|
NO_VARIADIC_MACROS = @NO_VARIADIC_MACROS@
|