1 #===-- Makefile.config - Local configuration for LLVM ------*- Makefile -*--===#
3 # The LLVM Compiler Infrastructure
5 # This file was developed by the LLVM research group and is distributed under
6 # the University of Illinois Open Source License. See LICENSE.TXT for details.
8 #===------------------------------------------------------------------------===#
10 # This file is included by Makefile.common. It defines paths and other
11 # values specific to a particular installation of LLVM.
13 #===------------------------------------------------------------------------===#
15 # Target operating system for which LLVM will be compiled.
18 # Target hardware architecture
21 # Endian-ness of the target
24 # Path to the C++ compiler to use. This is an optional setting, which defaults
25 # to whatever your gmake defaults to.
28 # Path to the CC binary, which use used by testcases for native builds.
31 # Path to the Python interpreter
37 # Libraries needed by tools
40 # Path to the library archiver program.
43 # The pathnames of the Flex and Bison programs, respectively.
48 # Paths to miscellaneous programs.
53 MKDIR = @abs_top_srcdir@/autoconf/mkinstalldirs
59 ETAGSFLAGS = @ETAGSFLAGS@
61 # Determine the target for which LLVM should generate code.
62 LLVMGCCARCH := @target@/3.4-llvm
64 # Full pathnames of LLVM C/C++ front-end 'cc1' and 'cc1plus' binaries:
66 LCC1XX = @LLVMCC1PLUS@
68 # Path to directory where object files should be stored during a build.
69 # Set OBJ_ROOT to "." if you do not want to use a separate place for
73 # Path to location for LLVM C/C++ front-end. You can modify this if you
74 # want to override the value set by configure.
75 LLVMGCCDIR := @LLVMGCCDIR@
77 # These are options that can either be enabled here, or can be enabled on the
78 # make command line (ie, make ENABLE_PROFILING=1):
80 # When ENABLE_OPTIMIZED is enabled, Release builds of all of the LLVM code are
81 # turned on, and Debug builds are turned off.
85 # When ENABLE_PROFILING is enabled, the llvm source base is built with profile
86 # information to allow gprof to be used to get execution frequencies.
89 # This option tells the Makefiles to produce verbose output.
90 # It essentially prints the commands that make is executing
93 # Enable JIT for this platform
96 # Shared library extension for this platform.
99 # Executable file extension for this platform.
102 ###########################################################################
103 # Directory Configuration
104 # This section of the Makefile determines what is where. To be
105 # specific, there are several locations that need to be defined:
107 # o LLVM_SRC_ROOT : The root directory of the LLVM source code.
108 # o LLVM_OBJ_ROOT : The root directory containing the built LLVM code.
110 # o BUILD_SRC_DIR : The directory containing the code to build.
111 # o BUILD_SRC_ROOT : The root directory of the code to build.
113 # o BUILD_OBJ_DIR : The directory in which compiled code will be placed.
114 # o BUILD_OBJ_ROOT : The root directory in which compiled code is placed.
116 ###########################################################################
118 # Set the object build directory. By default, it is the current directory.
120 BUILD_OBJ_DIR := $(subst //,/,$(shell $(RPWD)))
123 # Set the root of the object directory.
124 ifndef BUILD_OBJ_ROOT
125 BUILD_OBJ_ROOT := $(subst //,/,$(shell cd $(BUILD_OBJ_DIR)/$(LEVEL); $(RPWD)))
128 # Set the source build directory. That is almost always the current directory.
130 BUILD_SRC_DIR := $(subst //,/,@abs_top_srcdir@/$(patsubst $(BUILD_OBJ_ROOT)%,%,$(BUILD_OBJ_DIR)))
133 # Set the source root directory.
134 ifndef BUILD_SRC_ROOT
135 BUILD_SRC_ROOT := $(subst //,/,@abs_top_srcdir@)
138 # Set the LLVM object directory.
141 LLVM_OBJ_ROOT := $(shell cd $(LLVM_SRC_ROOT); $(RPWD))
143 LLVM_OBJ_ROOT := $(BUILD_OBJ_ROOT)
147 # Set the LLVM source directory.
148 # It is typically the root directory of what we're compiling now.
150 LLVM_SRC_ROOT := $(BUILD_SRC_ROOT)
153 # Set SourceDir for backwards compatbility.
155 SourceDir=$(BUILD_SRC_DIR)
158 # Handle configured libraries
159 HAVE_BZIP2 := @HAVE_BZIP2@
160 HAVE_ZLIB := @HAVE_ZLIB@
162 # Installation directories, as provided by the configure script.
163 exec_prefix = @exec_prefix@
165 program_transform_name = @program_transform_name@
168 libexecdir = @libexecdir@
170 sysconfdir = @sysconfdir@
171 sharedstatedir = @sharedstatedir@
172 localstatedir = @localstatedir@
174 bytecode_libdir = $(LLVMGCCDIR)/bytecode-libs
175 includedir = @includedir@
178 INSTALL_PROGRAM = @INSTALL_PROGRAM@
179 INSTALL_SCRIPT = @INSTALL_SCRIPT@
180 INSTALL_DATA = @INSTALL_DATA@