summaryrefslogtreecommitdiff
path: root/bin/aarch64-linux-android-gcc
diff options
context:
space:
mode:
Diffstat (limited to 'bin/aarch64-linux-android-gcc')
-rwxr-xr-xbin/aarch64-linux-android-gcc4
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/aarch64-linux-android-gcc b/bin/aarch64-linux-android-gcc
index 03632fa..8f66ee6 100755
--- a/bin/aarch64-linux-android-gcc
+++ b/bin/aarch64-linux-android-gcc
@@ -3,6 +3,7 @@
from __future__ import print_function
import os
import sys
+import time
class CompilerWrapper():
def __init__(self, argv):
@@ -25,7 +26,7 @@ class CompilerWrapper():
compiler = os.path.basename(os.path.abspath(__file__))
self.real_compiler = os.path.join(
compiler_path,
- "a19ee8e2-2589-11e9-a52d-3f0933a56607")
+ "ac3aa62a-6232-11e9-9685-635f3b138d0d")
self.argv0 = self.real_compiler
def process_gomacc_command(self):
@@ -64,6 +65,7 @@ class CompilerWrapper():
self.process_gomacc_command()
self.add_flags()
self.execargs += [self.real_compiler] + self.args
+ time.sleep(1)
os.execv(self.argv0, self.execargs)