diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2021-08-25 13:56:27 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2021-08-25 13:56:27 +0200 |
commit | ef72aa231a8541a99aa5f64d401ac83a9a78a5f5 (patch) | |
tree | 5bd8581f64f103daa03b5c5867439278447334e5 | |
parent | 1557f0ea6e1ae6c363544b853c805d4ee5900ec3 (diff) |
enable cxa_atexit, fixes libressl compile error
-rw-r--r-- | toolchain/gcc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolchain/gcc/Makefile b/toolchain/gcc/Makefile index 39c68364d..3f533bad9 100644 --- a/toolchain/gcc/Makefile +++ b/toolchain/gcc/Makefile @@ -39,7 +39,7 @@ GCC_CONFOPTS:= --prefix=$(TOOLCHAIN_DIR)/usr \ --target=$(GNU_TARGET_NAME) \ --with-gmp=$(STAGING_HOST_DIR)/usr \ --with-mpfr=$(STAGING_HOST_DIR)/usr \ - --disable-__cxa_atexit \ + --enable-__cxa_atexit \ --with-system-zlib \ --with-gnu-ld \ --with-gnu-as \ |