The JUCE cross-platform C++ framework, with DISTRHO/KXStudio specific changes
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

83 lines
2.9KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library.
  4. Copyright (c) 2022 - Raw Material Software Limited
  5. JUCE is an open source library subject to commercial or open-source
  6. licensing.
  7. By using JUCE, you agree to the terms of both the JUCE 7 End-User License
  8. Agreement and JUCE Privacy Policy.
  9. End User License Agreement: www.juce.com/juce-7-licence
  10. Privacy Policy: www.juce.com/juce-privacy-policy
  11. Or: You may also use this code under the terms of the GPL v3 (see
  12. www.gnu.org/licenses).
  13. JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
  14. EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
  15. DISCLAIMED.
  16. ==============================================================================
  17. */
  18. #if defined(__arm__) || defined(__TARGET_ARCH_ARM) || defined(_M_ARM) || defined(_M_ARM64) || defined(__aarch64__) || defined(__ARM64__)
  19. #if defined(_M_ARM64) || defined(__aarch64__) || defined(__ARM64__)
  20. #error JUCE_ARCH aarch64
  21. #elif (defined(__TARGET_ARCH_ARM) && __TARGET_ARCH_ARM == 8) || defined(__ARMv8__) || defined(__ARMv8_A__)
  22. #error JUCE_ARCH armv8l
  23. #elif (defined(__TARGET_ARCH_ARM) && __TARGET_ARCH_ARM == 7) || defined(__ARM_ARCH_7__) || defined(__ARM_ARCH_7A__) || defined(__ARM_ARCH_7R__) || defined(__ARM_ARCH_7M__) || defined(__ARM_ARCH_7S__) || defined(_ARM_ARCH_7) || defined(__CORE_CORTEXA__)
  24. #error JUCE_ARCH armv7l
  25. #elif (defined(__TARGET_ARCH_ARM) && __TARGET_ARCH_ARM == 6) || defined(__ARM_ARCH_6__) || defined(__ARM_ARCH_6J__) || defined(__ARM_ARCH_6T2__) || defined(__ARM_ARCH_6Z__) || defined(__ARM_ARCH_6K__) || defined(__ARM_ARCH_6ZK__) || defined(__ARM_ARCH_6M__)
  26. #error JUCE_ARCH armv6l
  27. #elif (defined(__TARGET_ARCH_ARM) && __TARGET_ARCH_ARM == 5) || defined(__ARM_ARCH_5TEJ__)
  28. #error JUCE_ARCH armv5l
  29. #else
  30. #error JUCE_ARCH arm
  31. #endif
  32. #elif defined(__i386) || defined(__i386__) || defined(_M_IX86)
  33. #error JUCE_ARCH i386
  34. #elif defined(__x86_64) || defined(__x86_64__) || defined(__amd64) || defined(_M_X64)
  35. #error JUCE_ARCH x86_64
  36. #elif defined(__ia64) || defined(__ia64__) || defined(_M_IA64)
  37. #error JUCE_ARCH ia64
  38. #elif defined(__mips) || defined(__mips__) || defined(_M_MRX000)
  39. #if defined(_MIPS_ARCH_MIPS64) || defined(__mips64)
  40. #error JUCE_ARCH mips64
  41. #else
  42. #error JUCE_ARCH mips
  43. #endif
  44. #elif defined(__ppc__) || defined(__ppc) || defined(__powerpc__) || defined(_ARCH_COM) || defined(_ARCH_PWR) || defined(_ARCH_PPC) || defined(_M_MPPC) || defined(_M_PPC)
  45. #if defined(__ppc64__) || defined(__powerpc64__) || defined(__64BIT__)
  46. #error JUCE_ARCH ppc64
  47. #else
  48. #error JUCE_ARCH ppc
  49. #endif
  50. #elif defined(__riscv)
  51. #if __riscv_xlen == 64
  52. #error JUCE_ARCH riscv64
  53. #else
  54. #error JUCE_ARCH riscv
  55. #endif
  56. #else
  57. #error JUCE_ARCH unknown
  58. #endif