diff options
| author | Andre Heider | 2023-02-09 09:09:08 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2023-02-19 18:44:39 +0000 |
| commit | eb093c517421465d8636fab5eb4fb890d0858a47 (patch) | |
| tree | 9d2a67d061f329cc13232457d60bae728bfc0363 | |
| parent | fb0d0c0f7903d2230d1d8c5072082879b7377818 (diff) | |
| download | noltari-eb093c517421465d8636fab5eb4fb890d0858a47.tar.gz | |
toolchain/gcc: remove glibc libgcc_eh hack
A modern glibc only links against libgcc_eh for its tests or when building it
static, which doesn't happen here.
Reverts a hunk of: a3edea1b "add support for alternative C libraries..."
Signed-off-by: Andre Heider <a.heider@gmail.com>
| -rw-r--r-- | toolchain/gcc/initial/Makefile | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/toolchain/gcc/initial/Makefile b/toolchain/gcc/initial/Makefile index c71b17dd87..68a7ccd3c7 100644 --- a/toolchain/gcc/initial/Makefile +++ b/toolchain/gcc/initial/Makefile @@ -23,9 +23,7 @@ define Host/Install install-gcc \ install-target-libgcc - # XXX: glibc insists on linking against libgcc_eh ( cd $(TOOLCHAIN_DIR)/initial/lib/gcc/$(REAL_GNU_TARGET_NAME)/$(PKG_VERSION) ; \ - [ -e libgcc_eh.a ] || ln -sf libgcc.a libgcc_eh.a ; \ cp libgcc.a libgcc_initial.a; \ ) |