Browse Source

Fix loading ppc64le vst3 plugins

Signed-off-by: falkTX <falktx@falktx.com>
pull/1658/merge
falkTX 7 months ago
parent
commit
1e3b910d01
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      source/utils/CarlaVst3Utils.hpp

+ 5
- 1
source/utils/CarlaVst3Utils.hpp View File

@@ -59,7 +59,11 @@
#elif defined(__mips) || defined(__mips__)
#define V3_ARCHITECTURE "mips"
#elif defined(__ppc64) || defined(__ppc64__) || defined(__powerpc64__)
#define V3_ARCHITECTURE "ppc64"
#ifdef __LITTLE_ENDIAN__
#define V3_ARCHITECTURE "ppc64le"
#else
#define V3_ARCHITECTURE "ppc64"
#endif
#elif defined(__ppc) || defined(__ppc__) || defined(__powerpc__)
#define V3_ARCHITECTURE "ppc"
#elif defined(__riscv)


Loading…
Cancel
Save