aboutsummaryrefslogtreecommitdiff
path: root/build/tools/gen-platforms.sh
diff options
context:
space:
mode:
authorAndrew Hsieh <andrewhsieh@google.com>2014-12-17 18:35:18 +0800
committerAndrew Hsieh <andrewhsieh@google.com>2014-12-18 10:47:44 +0800
commite5e7599ff9e946f3d47c6b3150d7265c1e2dab38 (patch)
treeba868aeb9e73d3d894a18e3698775580d44d95d7 /build/tools/gen-platforms.sh
parentcde0cb89ada253e9f7f4194de6f7f6af138b7e09 (diff)
downloadndk-e5e7599ff9e946f3d47c6b3150d7265c1e2dab38.tar.gz
Remove GCC 4.6
Change-Id: I840e7a2183e956e27e5dd93357ef2a2dd49fd40b
Diffstat (limited to 'build/tools/gen-platforms.sh')
-rwxr-xr-xbuild/tools/gen-platforms.sh4
1 files changed, 1 insertions, 3 deletions
diff --git a/build/tools/gen-platforms.sh b/build/tools/gen-platforms.sh
index 6abca57d3..f93808b72 100755
--- a/build/tools/gen-platforms.sh
+++ b/build/tools/gen-platforms.sh
@@ -388,9 +388,7 @@ get_default_compiler_for_arch()
elif [ -n "$OPTION_GCC_VERSION" -a "$OPTION_GCC_VERSION" != "default" ]; then
GCC_VERSION=$OPTION_GCC_VERSION
else
- # By default we want to use the first gcc (currently 4.6) instead of the default (gcc4.8)
- # for best compatibility, at least before gcc4.6 (now deprecated) is removed from NDK package
- GCC_VERSION=$(get_default_gcc_version_for_arch $ARCH) # $(get_first_gcc_version_for_arch $ARCH)
+ GCC_VERSION=$(get_default_gcc_version_for_arch $ARCH)
fi
for TAG in $HOST_TAG $HOST_TAG32; do
TOOLCHAIN_PREFIX="$NDK_DIR/$(get_toolchain_binprefix_for_arch $ARCH $GCC_VERSION $TAG)"