blob: 928fc97345550fb212c5879d3bdbcce89684f614 [file] [log] [blame]
José Fonseca836a9f02009-09-01 12:22:52 +01001"""llvm
2
3Tool-specific initialization for LLVM
4
5"""
6
7#
8# Copyright (c) 2009 VMware, Inc.
9#
10# Permission is hereby granted, free of charge, to any person obtaining
11# a copy of this software and associated documentation files (the
12# "Software"), to deal in the Software without restriction, including
13# without limitation the rights to use, copy, modify, merge, publish,
14# distribute, sublicense, and/or sell copies of the Software, and to
15# permit persons to whom the Software is furnished to do so, subject to
16# the following conditions:
17#
18# The above copyright notice and this permission notice shall be included
19# in all copies or substantial portions of the Software.
20#
21# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
22# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
23# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
25# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
26# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
27# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28#
29
30import os
31import os.path
José Fonseca8edc6b02010-03-05 15:07:50 +000032import re
José Fonsecabf484472009-10-22 19:11:48 +010033import sys
José Fonseca8edc6b02010-03-05 15:07:50 +000034import distutils.version
José Fonseca836a9f02009-09-01 12:22:52 +010035
José Fonseca836a9f02009-09-01 12:22:52 +010036import SCons.Errors
37import SCons.Util
38
39
José Fonseca013ff2f2014-10-22 13:09:59 +010040required_llvm_version = '3.3'
José Fonsecac0ef9a62014-05-08 13:32:07 +010041
42
José Fonseca836a9f02009-09-01 12:22:52 +010043def generate(env):
José Fonseca601498a2010-11-01 13:30:22 +000044 env['llvm'] = False
45
José Fonseca836a9f02009-09-01 12:22:52 +010046 try:
47 llvm_dir = os.environ['LLVM']
48 except KeyError:
49 # Do nothing -- use the system headers/libs
José Fonsecabf484472009-10-22 19:11:48 +010050 llvm_dir = None
José Fonseca836a9f02009-09-01 12:22:52 +010051 else:
52 if not os.path.isdir(llvm_dir):
53 raise SCons.Errors.InternalError, "Specified LLVM directory not found"
54
55 if env['debug']:
56 llvm_subdir = 'Debug'
57 else:
58 llvm_subdir = 'Release'
59
60 llvm_bin_dir = os.path.join(llvm_dir, llvm_subdir, 'bin')
61 if not os.path.isdir(llvm_bin_dir):
José Fonseca459ea002009-09-16 10:39:06 +010062 llvm_bin_dir = os.path.join(llvm_dir, 'bin')
63 if not os.path.isdir(llvm_bin_dir):
64 raise SCons.Errors.InternalError, "LLVM binary directory not found"
José Fonseca836a9f02009-09-01 12:22:52 +010065
66 env.PrependENVPath('PATH', llvm_bin_dir)
67
José Fonseca9e3728c2009-11-25 18:06:12 +000068 if env['platform'] == 'windows':
José Fonsecabf484472009-10-22 19:11:48 +010069 # XXX: There is no llvm-config on Windows, so assume a standard layout
José Fonseca8edc6b02010-03-05 15:07:50 +000070 if llvm_dir is None:
José Fonsecaea532f02010-04-10 02:41:39 +010071 print 'scons: LLVM environment variable must be specified when building for windows'
José Fonseca601498a2010-11-01 13:30:22 +000072 return
José Fonseca8edc6b02010-03-05 15:07:50 +000073
74 # Try to determine the LLVM version from llvm/Config/config.h
Olivier Penab94a4e82015-04-27 10:23:58 +000075 llvm_config = os.path.join(llvm_dir, 'include/llvm/Config/llvm-config.h')
José Fonseca8edc6b02010-03-05 15:07:50 +000076 if not os.path.exists(llvm_config):
77 print 'scons: could not find %s' % llvm_config
José Fonseca601498a2010-11-01 13:30:22 +000078 return
Olivier Penab94a4e82015-04-27 10:23:58 +000079 llvm_version_major_re = re.compile(r'^#define LLVM_VERSION_MAJOR ([0-9]+)')
80 llvm_version_minor_re = re.compile(r'^#define LLVM_VERSION_MINOR ([0-9]+)')
José Fonseca8edc6b02010-03-05 15:07:50 +000081 llvm_version = None
Olivier Penab94a4e82015-04-27 10:23:58 +000082 llvm_version_major = None
83 llvm_version_minor = None
José Fonseca8edc6b02010-03-05 15:07:50 +000084 for line in open(llvm_config, 'rt'):
Olivier Penab94a4e82015-04-27 10:23:58 +000085 mo = llvm_version_major_re.match(line)
José Fonseca8edc6b02010-03-05 15:07:50 +000086 if mo:
Olivier Penab94a4e82015-04-27 10:23:58 +000087 llvm_version_major = mo.group(1)
88 mo = llvm_version_minor_re.match(line)
89 if mo:
90 llvm_version_minor = mo.group(1)
91 if llvm_version_major is not None and llvm_version_minor is not None:
92 llvm_version = distutils.version.LooseVersion('%s.%s' % (llvm_version_major, llvm_version_minor))
93
José Fonseca8edc6b02010-03-05 15:07:50 +000094 if llvm_version is None:
95 print 'scons: could not determine the LLVM version from %s' % llvm_config
José Fonseca601498a2010-11-01 13:30:22 +000096 return
José Fonsecac0ef9a62014-05-08 13:32:07 +010097 if llvm_version < distutils.version.LooseVersion(required_llvm_version):
98 print 'scons: LLVM version %s found, but %s is required' % (llvm_version, required_llvm_version)
99 return
José Fonseca8edc6b02010-03-05 15:07:50 +0000100
101 env.Prepend(CPPPATH = [os.path.join(llvm_dir, 'include')])
102 env.AppendUnique(CPPDEFINES = [
José Fonseca8edc6b02010-03-05 15:07:50 +0000103 'HAVE_STDINT_H',
104 ])
105 env.Prepend(LIBPATH = [os.path.join(llvm_dir, 'lib')])
Ben Boeckel58f51f02017-04-27 16:31:48 -0400106 # LIBS should match the output of `llvm-config --libs engine mcjit bitwriter x86asmprinter irreader`
107 if llvm_version >= distutils.version.LooseVersion('4.0'):
108 env.Prepend(LIBS = [
109 'LLVMX86Disassembler', 'LLVMX86AsmParser',
110 'LLVMX86CodeGen', 'LLVMSelectionDAG', 'LLVMAsmPrinter',
111 'LLVMDebugInfoCodeView', 'LLVMCodeGen',
112 'LLVMScalarOpts', 'LLVMInstCombine',
113 'LLVMTransformUtils',
114 'LLVMBitWriter', 'LLVMX86Desc',
115 'LLVMMCDisassembler', 'LLVMX86Info',
116 'LLVMX86AsmPrinter', 'LLVMX86Utils',
117 'LLVMMCJIT', 'LLVMExecutionEngine', 'LLVMTarget',
118 'LLVMAnalysis', 'LLVMProfileData',
119 'LLVMRuntimeDyld', 'LLVMObject', 'LLVMMCParser',
120 'LLVMBitReader', 'LLVMMC', 'LLVMCore',
121 'LLVMSupport',
122 'LLVMIRReader', 'LLVMAsmParser',
123 'LLVMDemangle', 'LLVMGlobalISel', 'LLVMDebugInfoMSF',
124 ])
125 elif llvm_version >= distutils.version.LooseVersion('3.9'):
George Kyriazis30ae2cb2016-11-09 16:35:48 -0600126 env.Prepend(LIBS = [
127 'LLVMX86Disassembler', 'LLVMX86AsmParser',
128 'LLVMX86CodeGen', 'LLVMSelectionDAG', 'LLVMAsmPrinter',
129 'LLVMDebugInfoCodeView', 'LLVMCodeGen',
130 'LLVMScalarOpts', 'LLVMInstCombine',
131 'LLVMInstrumentation', 'LLVMTransformUtils',
132 'LLVMBitWriter', 'LLVMX86Desc',
133 'LLVMMCDisassembler', 'LLVMX86Info',
134 'LLVMX86AsmPrinter', 'LLVMX86Utils',
135 'LLVMMCJIT', 'LLVMExecutionEngine', 'LLVMTarget',
136 'LLVMAnalysis', 'LLVMProfileData',
137 'LLVMRuntimeDyld', 'LLVMObject', 'LLVMMCParser',
138 'LLVMBitReader', 'LLVMMC', 'LLVMCore',
139 'LLVMSupport',
140 'LLVMIRReader', 'LLVMASMParser'
141 ])
142 elif llvm_version >= distutils.version.LooseVersion('3.7'):
Olivier Penaa5256012015-12-07 17:13:18 +0100143 env.Prepend(LIBS = [
144 'LLVMBitWriter', 'LLVMX86Disassembler', 'LLVMX86AsmParser',
145 'LLVMX86CodeGen', 'LLVMSelectionDAG', 'LLVMAsmPrinter',
146 'LLVMCodeGen', 'LLVMScalarOpts', 'LLVMProfileData',
147 'LLVMInstCombine', 'LLVMInstrumentation', 'LLVMTransformUtils', 'LLVMipa',
148 'LLVMAnalysis', 'LLVMX86Desc', 'LLVMMCDisassembler',
149 'LLVMX86Info', 'LLVMX86AsmPrinter', 'LLVMX86Utils',
150 'LLVMMCJIT', 'LLVMTarget', 'LLVMExecutionEngine',
151 'LLVMRuntimeDyld', 'LLVMObject', 'LLVMMCParser',
152 'LLVMBitReader', 'LLVMMC', 'LLVMCore', 'LLVMSupport'
153 ])
154 elif llvm_version >= distutils.version.LooseVersion('3.6'):
Olivier Penab94a4e82015-04-27 10:23:58 +0000155 env.Prepend(LIBS = [
156 'LLVMBitWriter', 'LLVMX86Disassembler', 'LLVMX86AsmParser',
157 'LLVMX86CodeGen', 'LLVMSelectionDAG', 'LLVMAsmPrinter',
158 'LLVMCodeGen', 'LLVMScalarOpts', 'LLVMProfileData',
159 'LLVMInstCombine', 'LLVMTransformUtils', 'LLVMipa',
160 'LLVMAnalysis', 'LLVMX86Desc', 'LLVMMCDisassembler',
161 'LLVMX86Info', 'LLVMX86AsmPrinter', 'LLVMX86Utils',
162 'LLVMMCJIT', 'LLVMTarget', 'LLVMExecutionEngine',
163 'LLVMRuntimeDyld', 'LLVMObject', 'LLVMMCParser',
164 'LLVMBitReader', 'LLVMMC', 'LLVMCore', 'LLVMSupport'
165 ])
166 elif llvm_version >= distutils.version.LooseVersion('3.5'):
Jose Fonseca5b941ce2015-02-03 10:16:50 +0000167 env.Prepend(LIBS = [
Jose Fonseca0db4ef92015-05-28 16:55:10 +0100168 'LLVMMCDisassembler',
Jose Fonseca5b941ce2015-02-03 10:16:50 +0000169 'LLVMBitWriter', 'LLVMMCJIT', 'LLVMRuntimeDyld',
170 'LLVMX86Disassembler', 'LLVMX86AsmParser', 'LLVMX86CodeGen',
171 'LLVMSelectionDAG', 'LLVMAsmPrinter', 'LLVMX86Desc',
172 'LLVMObject', 'LLVMMCParser', 'LLVMBitReader', 'LLVMX86Info',
173 'LLVMX86AsmPrinter', 'LLVMX86Utils', 'LLVMJIT',
174 'LLVMExecutionEngine', 'LLVMCodeGen', 'LLVMScalarOpts',
175 'LLVMInstCombine', 'LLVMTransformUtils', 'LLVMipa',
176 'LLVMAnalysis', 'LLVMTarget', 'LLVMMC', 'LLVMCore',
177 'LLVMSupport'
178 ])
179 else:
Keith Kriewallefd83112013-02-28 15:40:02 +0000180 env.Prepend(LIBS = [
Jose Fonseca0db4ef92015-05-28 16:55:10 +0100181 'LLVMMCDisassembler',
Keith Kriewallefd83112013-02-28 15:40:02 +0000182 'LLVMBitWriter', 'LLVMX86Disassembler', 'LLVMX86AsmParser',
183 'LLVMX86CodeGen', 'LLVMX86Desc', 'LLVMSelectionDAG',
184 'LLVMAsmPrinter', 'LLVMMCParser', 'LLVMX86AsmPrinter',
José Fonseca2c02f342014-05-14 12:20:14 +0100185 'LLVMX86Utils', 'LLVMX86Info', 'LLVMMCJIT', 'LLVMJIT',
Keith Kriewallefd83112013-02-28 15:40:02 +0000186 'LLVMExecutionEngine', 'LLVMCodeGen', 'LLVMScalarOpts',
187 'LLVMInstCombine', 'LLVMTransformUtils', 'LLVMipa',
188 'LLVMAnalysis', 'LLVMTarget', 'LLVMMC', 'LLVMCore',
189 'LLVMSupport', 'LLVMRuntimeDyld', 'LLVMObject'
190 ])
José Fonseca8edc6b02010-03-05 15:07:50 +0000191 env.Append(LIBS = [
192 'imagehlp',
193 'psapi',
Brian Paul3d1af782011-08-25 15:14:37 -0600194 'shell32',
195 'advapi32'
José Fonseca8edc6b02010-03-05 15:07:50 +0000196 ])
197 if env['msvc']:
198 # Some of the LLVM C headers use the inline keyword without
199 # defining it.
200 env.Append(CPPDEFINES = [('inline', '__inline')])
Jose Fonsecae518d972015-03-19 22:09:20 +0000201 # Match some of the warning options from llvm/cmake/modules/HandleLLVMOptions.cmake
202 env.AppendUnique(CXXFLAGS = [
203 '/wd4355', # 'this' : used in base member initializer list
204 '/wd4624', # 'derived class' : destructor could not be generated because a base class destructor is inaccessible
205 ])
José Fonsecae3a3a532010-09-29 14:24:52 +0100206 if env['build'] in ('debug', 'checked'):
José Fonseca8edc6b02010-03-05 15:07:50 +0000207 # LLVM libraries are static, build with /MT, and they
208 # automatically link agains LIBCMT. When we're doing a
209 # debug build we'll be linking against LIBCMTD, so disable
210 # that.
211 env.Append(LINKFLAGS = ['/nodefaultlib:LIBCMT'])
José Fonsecaea532f02010-04-10 02:41:39 +0100212 else:
Vinson Leef07da5a2016-11-22 17:01:35 -0800213 llvm_config = os.environ.get('LLVM_CONFIG', 'llvm-config')
214 if not env.Detect(llvm_config):
215 print 'scons: %s script not found' % llvm_config
José Fonseca601498a2010-11-01 13:30:22 +0000216 return
José Fonsecaea532f02010-04-10 02:41:39 +0100217
Vinson Leef07da5a2016-11-22 17:01:35 -0800218 llvm_version = env.backtick('%s --version' % llvm_config).rstrip()
José Fonseca19a63332010-03-06 09:18:15 +0000219 llvm_version = distutils.version.LooseVersion(llvm_version)
José Fonseca836a9f02009-09-01 12:22:52 +0100220
José Fonsecac0ef9a62014-05-08 13:32:07 +0100221 if llvm_version < distutils.version.LooseVersion(required_llvm_version):
222 print 'scons: LLVM version %s found, but %s is required' % (llvm_version, required_llvm_version)
223 return
224
Vinson Lee79f48c92009-09-07 15:16:25 +0100225 try:
José Fonsecaacf82192011-07-11 15:36:40 +0100226 # Treat --cppflags specially to prevent NDEBUG from disabling
227 # assertion failures in debug builds.
Vinson Leef07da5a2016-11-22 17:01:35 -0800228 cppflags = env.ParseFlags('!%s --cppflags' % llvm_config)
José Fonsecaacf82192011-07-11 15:36:40 +0100229 try:
230 cppflags['CPPDEFINES'].remove('NDEBUG')
231 except ValueError:
232 pass
233 env.MergeFlags(cppflags)
234
Alexander von Gluck IV9aad1ba2013-10-16 20:24:13 -0500235 # Match llvm --fno-rtti flag
Vinson Leef07da5a2016-11-22 17:01:35 -0800236 cxxflags = env.backtick('%s --cxxflags' % llvm_config).split()
Alexander von Gluck IV9aad1ba2013-10-16 20:24:13 -0500237 if '-fno-rtti' in cxxflags:
238 env.Append(CXXFLAGS = ['-fno-rtti'])
239
George Kyriazis30ae2cb2016-11-09 16:35:48 -0600240 components = ['engine', 'mcjit', 'bitwriter', 'x86asmprinter', 'mcdisassembler', 'irreader']
José Fonseca34697152012-07-13 18:09:30 +0100241
Vinson Leef07da5a2016-11-22 17:01:35 -0800242 env.ParseConfig('%s --libs ' % llvm_config + ' '.join(components))
243 env.ParseConfig('%s --ldflags' % llvm_config)
Vinson Lee35a34142013-12-19 15:55:28 -0800244 if llvm_version >= distutils.version.LooseVersion('3.5'):
Vinson Leef07da5a2016-11-22 17:01:35 -0800245 env.ParseConfig('%s --system-libs' % llvm_config)
Vinson Leef2d724c2014-03-01 18:31:07 -0800246 env.Append(CXXFLAGS = ['-std=c++11'])
Vinson Lee79f48c92009-09-07 15:16:25 +0100247 except OSError:
José Fonsecaea532f02010-04-10 02:41:39 +0100248 print 'scons: llvm-config version %s failed' % llvm_version
José Fonseca601498a2010-11-01 13:30:22 +0000249 return
José Fonseca8edc6b02010-03-05 15:07:50 +0000250
251 assert llvm_version is not None
José Fonseca601498a2010-11-01 13:30:22 +0000252 env['llvm'] = True
José Fonseca8edc6b02010-03-05 15:07:50 +0000253
254 print 'scons: Found LLVM version %s' % llvm_version
José Fonseca8edc6b02010-03-05 15:07:50 +0000255 env['LLVM_VERSION'] = llvm_version
256
257 # Define HAVE_LLVM macro with the major/minor version number (e.g., 0x0206 for 2.6)
258 llvm_version_major = int(llvm_version.version[0])
259 llvm_version_minor = int(llvm_version.version[1])
260 llvm_version_hex = '0x%02x%02x' % (llvm_version_major, llvm_version_minor)
261 env.Prepend(CPPDEFINES = [('HAVE_LLVM', llvm_version_hex)])
José Fonseca836a9f02009-09-01 12:22:52 +0100262
263def exists(env):
264 return True
265
266# vim:set ts=4 sw=4 et: