mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-18 04:36:30 +01:00
allow to override FPU detection
This commit is contained in:
parent
c26a53d401
commit
3dc09d42ab
1 changed files with 5 additions and 0 deletions
|
|
@ -143,6 +143,11 @@ FPU::FPU ()
|
||||||
error << _("FPU object instantiated more than once") << endmsg;
|
error << _("FPU object instantiated more than once") << endmsg;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (getenv("ARDOUR_FPU_FLAGS")) {
|
||||||
|
_flags = Flags (atoi (getenv("ARDOUR_FPU_FLAGS")));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
#if !( (defined __x86_64__) || (defined __i386__) || (defined _M_X64) || (defined _M_IX86) ) // !ARCH_X86
|
#if !( (defined __x86_64__) || (defined __i386__) || (defined _M_X64) || (defined _M_IX86) ) // !ARCH_X86
|
||||||
/* Non-Intel architecture, nothing to do here */
|
/* Non-Intel architecture, nothing to do here */
|
||||||
return;
|
return;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue