diff options
author | Stephanos Ioannidis <root@stephanos.io> | 2021-06-07 03:02:33 +0900 |
---|---|---|
committer | Stephanos Ioannidis <root@stephanos.io> | 2021-06-08 02:13:45 +0900 |
commit | 1e21a30287d8d50d8425ce4debf1cf493371a6cf (patch) | |
tree | 5b4c270629c046bfadda993bc9aa86af888d5e3d /scripts | |
parent | 4ab0727f98fe4ec104912c243cc20599116357f8 (diff) | |
download | crosstool-ng-1e21a30287d8d50d8425ce4debf1cf493371a6cf.tar.gz crosstool-ng-1e21a30287d8d50d8425ce4debf1cf493371a6cf.tar.bz2 crosstool-ng-1e21a30287d8d50d8425ce4debf1cf493371a6cf.zip |
gcc: Add CT_CC_GCC_TM_CLONE_REGISTRY config
This commit adds a new gcc config `CT_CC_GCC_TM_CLONE_REGISTRY` that
enables the GCC transactional memory clone registry feature for libgcc.
Note that the gcc option to control this feature is only available in
gcc 10 and above.
(see gcc commit 5a4602805eb3ebddbc935b102481e63bffc7c5e6)
Signed-off-by: Stephanos Ioannidis <root@stephanos.io>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/build/cc/gcc.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/build/cc/gcc.sh b/scripts/build/cc/gcc.sh index cccd654b..c505314e 100644 --- a/scripts/build/cc/gcc.sh +++ b/scripts/build/cc/gcc.sh @@ -396,6 +396,12 @@ do_gcc_core_backend() { extra_config+=("--disable-__cxa_atexit") fi + if [ "${CT_CC_GCC_TM_CLONE_REGISTRY}" = "y" ]; then + extra_config+=("--enable-tm-clone-registry") + else + extra_config+=("--disable-tm-clone-registry") + fi + if [ -n "${CT_CC_GCC_ENABLE_CXX_FLAGS}" \ -a "${mode}" = "baremetal" ]; then extra_config+=("--enable-cxx-flags=${CT_CC_GCC_ENABLE_CXX_FLAGS}") @@ -998,6 +1004,12 @@ do_gcc_backend() { extra_config+=("--disable-__cxa_atexit") fi + if [ "${CT_CC_GCC_TM_CLONE_REGISTRY}" = "y" ]; then + extra_config+=("--enable-tm-clone-registry") + else + extra_config+=("--disable-tm-clone-registry") + fi + if [ -n "${CT_CC_GCC_ENABLE_CXX_FLAGS}" ]; then extra_config+=("--enable-cxx-flags=${CT_CC_GCC_ENABLE_CXX_FLAGS}") fi |