Advertisement
Guest User

Untitled

a guest
Nov 7th, 2021
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. diff --git a/package/devel/gdb/Makefile b/package/devel/gdb/Makefile
  2. index 9e20644b04fb..24569634a9c1 100644
  3. --- a/package/devel/gdb/Makefile
  4. +++ b/package/devel/gdb/Makefile
  5. @@ -26,14 +26,14 @@ include $(INCLUDE_DIR)/nls.mk
  6. define Package/gdb/Default
  7. SECTION:=devel
  8. CATEGORY:=Development
  9. - DEPENDS:=+!USE_MUSL:libthread-db $(ICONV_DEPENDS) $(INTL_DEPENDS) +libgmp
  10. + DEPENDS:=+!USE_MUSL:libthread-db $(ICONV_DEPENDS) $(INTL_DEPENDS)
  11. URL:=https://www.gnu.org/software/gdb/
  12. endef
  13.  
  14. define Package/gdb
  15. $(call Package/gdb/Default)
  16. TITLE:=GNU Debugger
  17. - DEPENDS+=+libreadline +libncurses +zlib
  18. + DEPENDS+=+libreadline +libncurses +zlib +libgmp
  19. endef
  20.  
  21. define Package/gdb/description
  22. @@ -62,7 +62,11 @@ CONFIGURE_ARGS+= \
  23. --disable-ubsan \
  24. --disable-sim \
  25. --disable-werror \
  26. - --disable-source-highlight
  27. + --disable-source-highlight \
  28. + --without-mpc \
  29. + --without-mpfr \
  30. + --without-isl \
  31. + --with-libgmp-prefix=$(STAGING_DIR)/usr
  32.  
  33. CONFIGURE_VARS+= \
  34. ac_cv_search_tgetent="$(TARGET_LDFLAGS) -lncurses -lreadline"
  35. diff --git a/target/linux/pistachio/Makefile b/target/linux/pistachio/Makefile
  36. index 09bdf4d6b6ef..9b245ab95c4a 100644
  37. --- a/target/linux/pistachio/Makefile
  38. +++ b/target/linux/pistachio/Makefile
  39. @@ -9,7 +9,7 @@ BOARD:=pistachio
  40. BOARDNAME:=MIPS pistachio
  41. FEATURES:=fpu usb usbgadget squashfs targz nand
  42. CPU_TYPE:=24kc
  43. -CPU_SUBTYPE:=24kf
  44. +#CPU_SUBTYPE:=24kf
  45.  
  46. KERNEL_PATCHVER:=5.4
  47. KERNEL_TESTING_PATCHVER:=5.10
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement