diff options
author | Hauke Mehrtens <hauke@hauke-m.de> | 2022-12-17 22:10:39 +0100 |
---|---|---|
committer | Petr Štetiar <ynezz@true.cz> | 2023-01-02 18:51:17 +0100 |
commit | 8446d22aaaedb112de934c8490c3b0927d4e6dcb (patch) | |
tree | 685be22ee6f794125164b5bbc570466d4bc517fc | |
parent | 558aa1f4821b31bf9e9a97319fccb99df57e9045 (diff) | |
download | upstream-8446d22aaaedb112de934c8490c3b0927d4e6dcb.tar.gz upstream-8446d22aaaedb112de934c8490c3b0927d4e6dcb.tar.bz2 upstream-8446d22aaaedb112de934c8490c3b0927d4e6dcb.zip |
gdb: Do not link against xxhash
libxxhash is now available in the OpenWrt package feed and gdb will link
against it if gdb finds this library. Explicitly deactivate the usage
of xxhash.
This should fix the build of gdb in build bots.
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
(cherry picked from commit a442974cfa89c7182c37b3b422b2d49319e2b339)
-rw-r--r-- | package/devel/gdb/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/devel/gdb/Makefile b/package/devel/gdb/Makefile index dd1df7af85..5add65a82a 100644 --- a/package/devel/gdb/Makefile +++ b/package/devel/gdb/Makefile @@ -66,6 +66,7 @@ CONFIGURE_ARGS+= \ --without-mpc \ --without-mpfr \ --without-isl \ + --without-xxhash \ --with-libgmp-prefix=$(STAGING_DIR)/usr CONFIGURE_VARS+= \ |