phase1: remove ccache helper
authorThibaut VARÈNE <hacks@slashdirt.org>
Tue, 26 Jun 2018 18:20:17 +0000 (20:20 +0200)
committerJo-Philipp Wich <jo@mein.io>
Tue, 26 Jun 2018 20:11:55 +0000 (22:11 +0200)
Signed-off-by: Thibaut VARÈNE <hacks@slashdirt.org>
phase1/master.cfg

index 41968b5782606b1d13e2354df41c855f9616c514..78a83fa02ed154287566cd99013a30fddf261221 100644 (file)
@@ -340,7 +340,6 @@ def MakeEnv(overrides=None, tryccache=False):
        env = {
                'CC': envcc,
                'CXX': envcxx,
-               'CCACHE_BASEDIR': Interpolate("%(kw:cwd)s", cwd=GetCwd)
        }
        if overrides is not None:
                env.update(overrides)
@@ -642,20 +641,6 @@ for target in targets:
                description = "Finding libc suffix",
                command = ["sed", "-ne", '/^CONFIG_LIBC=/ { s!^CONFIG_LIBC="\\(.*\\)"!\\1!; s!^musl$!!; s!.\\+!-&!p }', ".config"]))
 
-       # ccache helper
-       factory.addStep(FileDownload(
-               mastersrc = "ccache.sh",
-               slavedest = "../ccache.sh",
-               mode = 0755
-       ))
-
-       # ccache prepare
-       factory.addStep(ShellCommand(
-                name = "prepccache",
-                description = "Preparing ccache",
-                command = ["../ccache.sh"]
-       ))
-
        # install build key
        factory.addStep(FileDownload(mastersrc=home_dir+'/key-build', slavedest="key-build", mode=0600))
        factory.addStep(FileDownload(mastersrc=home_dir+'/key-build.pub', slavedest="key-build.pub", mode=0600))