summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Desaulniers <ndesaulniers@google.com>2019-02-08 13:44:05 -0800
committerandroid-build-merger <android-build-merger@google.com>2019-02-08 13:44:05 -0800
commite9b2ab0932573a0ca90cad11ab75d9619f19c458 (patch)
tree09101bab22e7687ac4c21b261bd84376265ffe36
parent16dab5225bf4c95baae3733f05b6e4b0e1c9aae9 (diff)
parent2d0a6d9181754296dc93375c43bdc608409aef90 (diff)
downloadarm-linux-androideabi-4.9-e9b2ab0932573a0ca90cad11ab75d9619f19c458.tar.gz
Add GCC deprecation warning and link to deprecation schedule. am: bdb57364ad am: 4aa8569e6b
am: 2d0a6d9181 Change-Id: I8fd9e7c4c6c68e1e4bbc013572c4f84955b2591d
-rwxr-xr-xbin/7fefe5b2-2588-11e9-996b-2bbad94f2d53 (renamed from bin/real-arm-linux-androideabi-gcc)bin784928 -> 784928 bytes
-rwxr-xr-xbin/8345f5e4-2588-11e9-ba23-c7b0d410816e (renamed from bin/real-arm-linux-androideabi-g++)bin789024 -> 789024 bytes
-rwxr-xr-xbin/arm-linux-androideabi-g++11
-rwxr-xr-xbin/arm-linux-androideabi-gcc11
4 files changed, 20 insertions, 2 deletions
diff --git a/bin/real-arm-linux-androideabi-gcc b/bin/7fefe5b2-2588-11e9-996b-2bbad94f2d53
index af3717d..af3717d 100755
--- a/bin/real-arm-linux-androideabi-gcc
+++ b/bin/7fefe5b2-2588-11e9-996b-2bbad94f2d53
Binary files differ
diff --git a/bin/real-arm-linux-androideabi-g++ b/bin/8345f5e4-2588-11e9-ba23-c7b0d410816e
index 8a37bdb..8a37bdb 100755
--- a/bin/real-arm-linux-androideabi-g++
+++ b/bin/8345f5e4-2588-11e9-ba23-c7b0d410816e
Binary files differ
diff --git a/bin/arm-linux-androideabi-g++ b/bin/arm-linux-androideabi-g++
index 54944a2..5923d19 100755
--- a/bin/arm-linux-androideabi-g++
+++ b/bin/arm-linux-androideabi-g++
@@ -1,5 +1,6 @@
#!/usr/bin/python
+from __future__ import print_function
import os
import sys
@@ -24,7 +25,7 @@ class CompilerWrapper():
compiler = os.path.basename(os.path.abspath(__file__))
self.real_compiler = os.path.join(
compiler_path,
- "real-" + compiler)
+ "8345f5e4-2588-11e9-ba23-c7b0d410816e")
self.argv0 = self.real_compiler
def process_gomacc_command(self):
@@ -49,7 +50,15 @@ class CompilerWrapper():
def add_flags(self):
self.args = self.prepend_flags + self.args + self.append_flags
+ def print_deprecation_warning(self):
+ print("Android GCC has been deprecated in favor of Clang, and will be removed from\n"
+ "Android in 2020-01 as per the deprecation plan in:\n"
+ "https://android.googlesource.com/platform/prebuilts/clang/host/linux-x86/+/master/GCC_4_9_DEPRECATION.md\n\n",
+ file=sys.stderr)
+
+
def invoke_compiler(self):
+ self.print_deprecation_warning()
self.set_real_compiler()
self.parse_custom_flags()
self.process_gomacc_command()
diff --git a/bin/arm-linux-androideabi-gcc b/bin/arm-linux-androideabi-gcc
index 54944a2..e937a80 100755
--- a/bin/arm-linux-androideabi-gcc
+++ b/bin/arm-linux-androideabi-gcc
@@ -1,5 +1,6 @@
#!/usr/bin/python
+from __future__ import print_function
import os
import sys
@@ -24,7 +25,7 @@ class CompilerWrapper():
compiler = os.path.basename(os.path.abspath(__file__))
self.real_compiler = os.path.join(
compiler_path,
- "real-" + compiler)
+ "7fefe5b2-2588-11e9-996b-2bbad94f2d53")
self.argv0 = self.real_compiler
def process_gomacc_command(self):
@@ -49,7 +50,15 @@ class CompilerWrapper():
def add_flags(self):
self.args = self.prepend_flags + self.args + self.append_flags
+ def print_deprecation_warning(self):
+ print("Android GCC has been deprecated in favor of Clang, and will be removed from\n"
+ "Android in 2020-01 as per the deprecation plan in:\n"
+ "https://android.googlesource.com/platform/prebuilts/clang/host/linux-x86/+/master/GCC_4_9_DEPRECATION.md\n\n",
+ file=sys.stderr)
+
+
def invoke_compiler(self):
+ self.print_deprecation_warning()
self.set_real_compiler()
self.parse_custom_flags()
self.process_gomacc_command()