diff options
author | Karel Kočí <cynerd@email.cz> | 2017-12-11 20:19:24 +0100 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2017-12-11 20:19:24 +0100 |
commit | 14c3682671431681c8bc39fbeb620cd1c9234694 (patch) | |
tree | 7efa2101e3ea1b7652112f7d950bc28dc401b24c | |
parent | 0d7da86ea5e5187dca2e843549c33f761e35f068 (diff) | |
download | qtmips-14c3682671431681c8bc39fbeb620cd1c9234694.tar.gz qtmips-14c3682671431681c8bc39fbeb620cd1c9234694.tar.bz2 qtmips-14c3682671431681c8bc39fbeb620cd1c9234694.zip |
Change used gcc version because of compilation error in ubsan.c
Compiling gcc 6.3.0 with gcc 7.2.0 results to error:
gcc-6.3.0/gcc/ubsan.c:1474:23: error: ISO C++ forbids comparison between
pointer and integer
So I changed used version to 5.4.0 because of that. Probably in future I
will update ct-ng and use gcc 7.2.0 but not now.
-rw-r--r-- | compiler/config | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/compiler/config b/compiler/config index 3e135f0..e81f7c3 100644 --- a/compiler/config +++ b/compiler/config @@ -164,12 +164,6 @@ CT_ARCH_FLOAT_SW=y CT_TARGET_CFLAGS="" CT_TARGET_LDFLAGS="" CT_ARCH_FLOAT="soft" -# CT_ARCH_ALPHA_EV4 is not set -# CT_ARCH_ALPHA_EV45 is not set -# CT_ARCH_ALPHA_EV5 is not set -# CT_ARCH_ALPHA_EV56 is not set -# CT_ARCH_ALPHA_EV6 is not set -# CT_ARCH_ALPHA_EV67 is not set # # mips other options @@ -337,16 +331,15 @@ CT_LIBC_NEWLIB_EXTRA_CONFIG_ARRAY="" CT_CC="gcc" CT_CC_CORE_PASS_2_NEEDED=y CT_CC_gcc=y -CT_CC_GCC_VERSION="6.3.0" +CT_CC_GCC_VERSION="5.4.0" # CT_CC_GCC_SHOW_LINARO is not set -CT_CC_GCC_V_6_3_0=y -# CT_CC_GCC_V_5_4_0 is not set +# CT_CC_GCC_V_6_3_0 is not set +CT_CC_GCC_V_5_4_0=y # CT_CC_GCC_V_4_9_4 is not set CT_CC_GCC_4_8_or_later=y CT_CC_GCC_4_9_or_later=y +CT_CC_GCC_5=y CT_CC_GCC_5_or_later=y -CT_CC_GCC_6=y -CT_CC_GCC_6_or_later=y CT_CC_GCC_HAS_LIBMPX=y CT_CC_GCC_ENABLE_CXX_FLAGS="" CT_CC_GCC_CORE_EXTRA_CONFIG_ARRAY="" |