summaryrefslogtreecommitdiff
path: root/etc/scons/mongodbtoolchain_clang.vars
diff options
context:
space:
mode:
Diffstat (limited to 'etc/scons/mongodbtoolchain_clang.vars')
-rw-r--r--etc/scons/mongodbtoolchain_clang.vars24
1 files changed, 0 insertions, 24 deletions
diff --git a/etc/scons/mongodbtoolchain_clang.vars b/etc/scons/mongodbtoolchain_clang.vars
deleted file mode 100644
index b9896888614..00000000000
--- a/etc/scons/mongodbtoolchain_clang.vars
+++ /dev/null
@@ -1,24 +0,0 @@
-# Configures the build to use the Clang toolchain in /opt/mongodbtoolchain/v2
-
-import os
-import subprocess
-import SCons.Defaults
-
-# Get the default SCons path as a list
-default_path = SCons.Defaults.DefaultEnvironment()['ENV']['PATH'].split(os.pathsep)
-
-# Put the toolchain path first so we prefer all tools from there in subprocs.
-ENV = {
- 'PATH' : os.pathsep.join(['/opt/mongodbtoolchain/v2/bin'] + default_path)
-}
-
-# Set any Variables for Tools from the toolchain here. Technically, we
-# shouldn't need the full paths since SCons will find the toolchain
-# ones first, but we don't want to accidentally get the system version
-# if, say, the toolchain is missing. Also, it is clearer that we are
-# getting the right toolchain in build log output when the path is
-# printed for each compiler invocation.
-CC = '/opt/mongodbtoolchain/v2/bin/clang'
-CXX = '/opt/mongodbtoolchain/v2/bin/clang++'
-AR = subprocess.check_output([CXX, '-print-prog-name=ar']).strip()
-OBJCOPY = '/opt/mongodbtoolchain/v2/bin/objcopy'