summaryrefslogtreecommitdiff
path: root/scons
diff options
context:
space:
mode:
authorEric Engestrom <eric.engestrom@intel.com>2018-10-28 17:30:26 +0000
committerEric Engestrom <eric.engestrom@intel.com>2018-10-30 18:10:59 +0000
commit6f9309d5d4943b7cfea8ade3b06170605bc44c96 (patch)
treea034ba2b3752f547df6b07330ac535ce28730d06 /scons
parenta18d726621c1be6e4cb48678c539106658557d40 (diff)
scons: drop unused HAVE_STDINT_H macro
This was required back when MSVC didn't support C99 and was missing this header, but since MSVC 2013 (or maybe earlier?) this isn't it does and this code isn't doing anything anymore. Signed-off-by: Eric Engestrom <eric.engestrom@intel.com> Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
Diffstat (limited to 'scons')
-rw-r--r--scons/llvm.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/scons/llvm.py b/scons/llvm.py
index a34edfb4b67..a84ad51d97a 100644
--- a/scons/llvm.py
+++ b/scons/llvm.py
@@ -99,9 +99,6 @@ def generate(env):
return
env.Prepend(CPPPATH = [os.path.join(llvm_dir, 'include')])
- env.AppendUnique(CPPDEFINES = [
- 'HAVE_STDINT_H',
- ])
env.Prepend(LIBPATH = [os.path.join(llvm_dir, 'lib')])
# LIBS should match the output of `llvm-config --libs engine mcjit bitwriter x86asmprinter irreader`
if llvm_version >= distutils.version.LooseVersion('5.0'):