Config.in 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. config BR2_PACKAGE_LIBGPG_ERROR_ARCH_SUPPORTS
  2. bool
  3. # see src/syscfg/
  4. default y if \
  5. BR2_aarch64 || BR2_aarch64_be || \
  6. BR2_arm || BR2_armeb || \
  7. BR2_i386 || BR2_mips || \
  8. BR2_mipsel || BR2_mips64 || \
  9. BR2_mips64el || BR2_m68k || \
  10. BR2_nios2 || BR2_or1k || \
  11. BR2_powerpc || BR2_powerpc64 || \
  12. BR2_powerpc64le || BR2_RISCV_64 || \
  13. BR2_RISCV_32 || BR2_s390x || \
  14. BR2_sh4 || BR2_sh4eb || \
  15. BR2_sh4a || BR2_sh4aeb || \
  16. BR2_sparc || BR2_sparc64 || \
  17. BR2_x86_64
  18. depends on BR2_USE_MMU # fork()
  19. config BR2_PACKAGE_LIBGPG_ERROR
  20. bool "libgpg-error"
  21. depends on BR2_PACKAGE_LIBGPG_ERROR_ARCH_SUPPORTS
  22. help
  23. Libgpg-error is a small library with error codes and
  24. descriptions shared by most GnuPG related software.
  25. https://www.gnupg.org/related_software/libgpg-error
  26. config BR2_PACKAGE_LIBGPG_ERROR_SYSCFG
  27. string
  28. default "aarch64-unknown-linux-gnu" \
  29. if BR2_aarch64 || BR2_aarch64_be
  30. default "arm-unknown-linux-gnueabi" \
  31. if BR2_arm || BR2_armeb
  32. default "i686-pc-linux-gnu" \
  33. if BR2_i386
  34. default "mips-unknown-linux-gnu" \
  35. if BR2_mips || BR2_mipsel
  36. default "mips64el-unknown-linux-gnuabi64" \
  37. if BR2_mips64 || BR2_mips64el
  38. default "m68k-unknown-linux-gnu" \
  39. if BR2_m68k
  40. default "nios2-unknown-linux-gnu" \
  41. if BR2_nios2
  42. default "or1k-unknown-linux-gnu" \
  43. if BR2_or1k
  44. default "powerpc-unknown-linux-gnu" \
  45. if BR2_powerpc
  46. default "powerpc64-unknown-linux-gnu" \
  47. if BR2_powerpc64 || BR2_powerpc64le
  48. default "riscv32-unknown-linux-gnu" \
  49. if BR2_RISCV_32
  50. default "riscv64-unknown-linux-gnu" \
  51. if BR2_RISCV_64
  52. default "s390x-unknown-linux-gnu" \
  53. if BR2_s390x
  54. default "sh4-unknown-linux-gnu" \
  55. if BR2_sh4 || BR2_sh4eb || BR2_sh4a || BR2_sh4aeb
  56. default "sparc-unknown-linux-gnu" \
  57. if BR2_sparc
  58. default "sparc64-unknown-linux-gnu" \
  59. if BR2_sparc64
  60. default "x86_64-unknown-linux-gnu" \
  61. if BR2_x86_64