diff options
| author | Hauke Mehrtens | 2021-10-31 16:40:06 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2021-11-03 22:52:08 +0000 |
| commit | db3acbac11cb11321e05c94babc543b94da19273 (patch) | |
| tree | a56c90e853cca8867e75c503756490fa7b0558c2 | |
| parent | 7f1edbd41295dff9f2127b169fbc086c0fb2c14e (diff) | |
| download | openwrt-db3acbac11cb11321e05c94babc543b94da19273.tar.gz | |
toolchain: Allow sanitizer on mips and mipsel
Support for libsanitizer on MIPS 32 and MIPSEL 32 was added with GCC 9.
MIPS 64 and ARC are still not supported.
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
| -rw-r--r-- | package/libs/toolchain/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/libs/toolchain/Makefile b/package/libs/toolchain/Makefile index 52a4cda19f..dea99060f9 100644 --- a/package/libs/toolchain/Makefile +++ b/package/libs/toolchain/Makefile @@ -115,7 +115,7 @@ define Package/libasan $(call Package/gcc/Default) NAME:=libasan TITLE:=Runtime library for AddressSanitizer in GCC - DEPENDS:=@USE_GLIBC +librt +libstdcpp @!mips @!mipsel @!mips64 @!mips64el @!arc + DEPENDS:=@USE_GLIBC +librt +libstdcpp @!mips64 @!mips64el @!arc ABI_VERSION:=5 endef @@ -202,7 +202,7 @@ define Package/libubsan $(call Package/gcc/Default) NAME:=libubsan TITLE:=Runtime library for UndefinedBehaviorSanitizer in GCC - DEPENDS:=@USE_GLIBC +librt +libstdcpp @!mips @!mipsel @!mips64 @!mips64el @!arc + DEPENDS:=@USE_GLIBC +librt +libstdcpp @!mips64 @!mips64el @!arc ABI_VERSION:=1 endef |