Browse Source

Fix building jack standalones on ARM soft-fp

Signed-off-by: falkTX <falktx@falktx.com>
pull/397/head
falkTX 3 years ago
parent
commit
4786a13f61
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      distrho/src/DistrhoPluginJACK.cpp

+ 1
- 1
distrho/src/DistrhoPluginJACK.cpp View File

@@ -703,7 +703,7 @@ private:
"msr fpcr, %0 \n"
"isb \n"
: "=r"(c) :: "memory");
#elif defined(__arm__)
#elif defined(__arm__) && !defined(__SOFTFP__)
uint32_t c;
__asm__ __volatile__("vmrs %0, fpscr \n"
"orr %0, %0, #0x1000000\n"


Loading…
Cancel
Save