mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-11 17:16:38 +01:00
Fix MIDI input on Portaudio Backend with 32bit Windows release/optimized builds
MIDI input doesn't work with -O3 or -O2 optimization levels, no real idea why at this point. So just append -O0 to CXXFLAGS to override previous optimization flags for compiling the PortaudioBackend files
This commit is contained in:
parent
8132a31606
commit
9cabc1bb9a
1 changed files with 3 additions and 0 deletions
|
|
@ -40,3 +40,6 @@ def build(bld):
|
||||||
'ARDOURBACKEND_DLL_EXPORTS',
|
'ARDOURBACKEND_DLL_EXPORTS',
|
||||||
'USE_MMCSS_THREAD_PRIORITIES'
|
'USE_MMCSS_THREAD_PRIORITIES'
|
||||||
]
|
]
|
||||||
|
if bld.env['build_target'] == 'mingw':
|
||||||
|
# MIDI input doesn't work with -O3 or -O2 so override
|
||||||
|
obj.cxxflags = [ '-O0' ]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue