aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorQBos07 <qubos@outlook.de>2024-12-01 15:41:48 +0000
committerChris Packham <judge.packham@gmail.com>2024-12-23 19:13:45 +1300
commit0145966e8e4f73843a72733e59263ce3f8c69f2e (patch)
tree3a7b8a0bbf129a6cf3dd7430163a826b973913bd /scripts
parent71cfd2d094dfc44b8e0d233cabeb75d536f46d22 (diff)
downloadcrosstool-ng-0145966e8e4f73843a72733e59263ce3f8c69f2e.tar.gz
crosstool-ng-0145966e8e4f73843a72733e59263ce3f8c69f2e.tar.bz2
crosstool-ng-0145966e8e4f73843a72733e59263ce3f8c69f2e.zip
Cleanup old avr-libstdcxx code and make it usable on other targets
Should not cause major unwanted behavior changes - C++ is now selected by default in many configs. Signed-off-by: QBos07 <qubos@outlook.de> [cp: depend on CC_LANG_CXX instead of select] Signed-off-by: Chris Packham <judge.packham@gmail.com>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/build/cc/gcc.sh56
-rw-r--r--scripts/build/libc/avr-libc.sh4
2 files changed, 39 insertions, 21 deletions
diff --git a/scripts/build/cc/gcc.sh b/scripts/build/cc/gcc.sh
index 6cf7e51f..5a60bc78 100644
--- a/scripts/build/cc/gcc.sh
+++ b/scripts/build/cc/gcc.sh
@@ -389,16 +389,32 @@ do_gcc_core_backend() {
"") extra_config+=("--disable-libstdcxx-verbose");;
esac
+ if [ "${build_libstdcxx}" = "yes" ]; then
+ if [ "${CT_CC_GCC_LIBSTDCXX}" = "n" ]; then
+ build_libstdcxx="no"
+ elif [ "${CT_CC_GCC_LIBSTDCXX}" = "y" ]; then
+ extra_config+=("--enable-libstdcxx")
+ fi
+
+ if [ "${CT_LIBC_AVR_LIBC}" = "y" ]; then
+ extra_config+=("--enable-cstdio=stdio_pure")
+ fi
+
+ if [ "${CT_CC_GCC_LIBSTDCXX_HOSTED_DISABLE}" = "y" ]; then
+ extra_config+=("--disable-libstdcxx-hosted")
+ fi
+ fi
+
if [ "${build_libstdcxx}" = "no" ]; then
extra_config+=(--disable-libstdcxx)
fi
if [ "${CT_LIBC_PICOLIBC}" = "y" ]; then
- extra_config+=("--with-default-libc=picolibc")
- extra_config+=("--enable-stdio=pure")
- if [ "${CT_PICOLIBC_older_than_1_8}" = "y" ]; then
- extra_config+=("--disable-wchar_t")
- fi
+ extra_config+=("--with-default-libc=picolibc")
+ extra_config+=("--enable-stdio=pure")
+ if [ "${CT_PICOLIBC_older_than_1_8}" = "y" ]; then
+ extra_config+=("--disable-wchar_t")
+ fi
fi
core_LDFLAGS+=("${ldflags}")
@@ -697,9 +713,7 @@ do_gcc_core_backend() {
else # build_libgcc
core_targets=( gcc )
fi # ! build libgcc
- if [ "${build_libstdcxx}" = "yes" \
- -a "${CT_CC_LANG_CXX}" = "y" \
- ]; then
+ if [ "${build_libstdcxx}" = "yes" ]; then
core_targets+=( target-libstdc++-v3 )
fi
@@ -810,9 +824,7 @@ do_cc_for_build() {
# lack of such a compiler, but better safe than sorry...
build_final_opts+=( "mode=baremetal" )
build_final_opts+=( "build_libgcc=yes" )
- if [ "${CT_LIBC_NONE}" != "y" ]; then
- build_final_opts+=( "build_libstdcxx=yes" )
- fi
+ build_final_opts+=( "build_libstdcxx=yes" )
build_final_opts+=( "build_libgfortran=yes" )
if [ "${CT_STATIC_TOOLCHAIN}" = "y" ]; then
build_final_opts+=( "build_staticlinked=yes" )
@@ -901,9 +913,7 @@ do_cc_for_host() {
if [ "${CT_BARE_METAL}" = "y" ]; then
final_opts+=( "mode=baremetal" )
final_opts+=( "build_libgcc=yes" )
- if [ "${CT_LIBC_NONE}" != "y" ]; then
- final_opts+=( "build_libstdcxx=yes" )
- fi
+ final_opts+=( "build_libstdcxx=yes" )
final_opts+=( "build_libgfortran=yes" )
if [ "${CT_STATIC_TOOLCHAIN}" = "y" ]; then
final_opts+=( "build_staticlinked=yes" )
@@ -1075,16 +1085,24 @@ do_gcc_backend() {
"") extra_config+=("--disable-libstdcxx-verbose");;
esac
- if [ "${build_libstdcxx}" = "no" ]; then
+ if [ "${CT_CC_GCC_LIBSTDCXX}" = "n" ]; then
extra_config+=(--disable-libstdcxx)
- elif [ "${CT_CC_GCC_EXTRA_LIBSTDCXX}" = "y" ]; then
+ elif [ "${CT_CC_GCC_LIBSTDCXX}" = "y" ]; then
extra_config+=(--enable-libstdcxx)
fi
+ if [ "${CT_CC_GCC_LIBSTDCXX_HOSTED_DISABLE}" = "y" ]; then
+ extra_config+=("--disable-libstdcxx-hosted")
+ fi
+
+ if [ "${CT_LIBC_AVR_LIBC}" = "y" ]; then
+ extra_config+=("--enable-cstdio=stdio_pure")
+ fi
+
if [ "${CT_LIBC_PICOLIBC}" = "y" ]; then
- extra_config+=("--with-default-libc=picolibc")
- extra_config+=("--enable-stdio=pure")
- extra_config+=("--disable-wchar_t")
+ extra_config+=("--with-default-libc=picolibc")
+ extra_config+=("--enable-stdio=pure")
+ extra_config+=("--disable-wchar_t")
fi
final_LDFLAGS+=("${ldflags}")
diff --git a/scripts/build/libc/avr-libc.sh b/scripts/build/libc/avr-libc.sh
index c13ae39b..4949380a 100644
--- a/scripts/build/libc/avr-libc.sh
+++ b/scripts/build/libc/avr-libc.sh
@@ -2,7 +2,7 @@
avr_libc_post_cc()
{
- if [ "${CT_CC_CORE_PASS_2_NEEDED}" != "y" ]; then
+ if [ "${CT_CC_CORE_NEEDED}" != "y" ]; then
CT_DoStep INFO "Installing C library"
CT_DoLog EXTRA "Copying sources to build directory"
@@ -32,7 +32,7 @@ avr_libc_post_cc()
avr_libc_main()
{
- if [ "${CT_CC_CORE_PASS_2_NEEDED}" = "y" ]; then
+ if [ "${CT_CC_CORE_NEEDED}" = "y" ]; then
CT_DoStep INFO "Installing C library"
CT_DoLog EXTRA "Copying sources to build directory"