aboutsummaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorAnthony Barbier <anthony.barbier@arm.com>2018-03-15 09:43:45 +0000
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:49:16 +0000
commitb921593faac2e614d67346003f26be8adc750916 (patch)
treef26c8095c82d0275abdd9a199b9f82d9d5bfe0e4 /SConstruct
parenteb82fd2aa786715c3b6a941dc6d6deac4ce8e2a0 (diff)
downloadComputeLibrary-b921593faac2e614d67346003f26be8adc750916.tar.gz
COMPMID-959: Moved ccache workaround to jenkins scripts
There is no reason to have a workaround for a specific compiler cache in the library's build system Change-Id: Ie997c585f795ab9b6c9d24cfec923b5722905745 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/124665 Tested-by: Jenkins <bsgcomp@arm.com> Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com>
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct3
1 files changed, 0 insertions, 3 deletions
diff --git a/SConstruct b/SConstruct
index 4bf90c107d..cb0cb4fd0a 100644
--- a/SConstruct
+++ b/SConstruct
@@ -171,9 +171,6 @@ env['AS'] = prefix + "as"
env['AR'] = prefix + "ar"
env['RANLIB'] = prefix + "ranlib"
-if 'ccache' in env['compiler_cache'] and 'clang++' in cpp_compiler:
- env['ENV']['CCACHE_CPP2'] = 'yes'
-
if not GetOption("help"):
try:
compiler_ver = subprocess.check_output(env['CXX'].split() + ["-dumpversion"]).strip()