aboutsummaryrefslogtreecommitdiff
path: root/build/tools/gen-platforms.sh
diff options
context:
space:
mode:
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)"