mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-03 12:19:33 +01:00
workaround compilation issues with assembler in fpu code and mingw
This commit is contained in:
parent
339fc9ed13
commit
b7835cd7b1
1 changed files with 4 additions and 1 deletions
|
|
@ -39,11 +39,14 @@ FPU::FPU ()
|
|||
|
||||
_flags = Flags (0);
|
||||
|
||||
#if defined(__MINGW64__) // Vkamyshniy: under __MINGW64__ the assembler code below is not compiled
|
||||
return;
|
||||
#endif
|
||||
|
||||
#if !( (defined __x86_64__) || (defined __i386__) ) // !ARCH_X86
|
||||
return;
|
||||
#else
|
||||
|
||||
|
||||
#ifndef _LP64 //USE_X86_64_ASM
|
||||
asm volatile (
|
||||
"mov $1, %%eax\n"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue