audio crash
This commit is contained in:
parent
4e199a4a07
commit
593b01b709
2 changed files with 4 additions and 1 deletions
|
@ -172,6 +172,9 @@ void AudioDriverOSX::unlock() {
|
|||
|
||||
void AudioDriverOSX::finish() {
|
||||
|
||||
if (active)
|
||||
AudioOutputUnitStop(audio_unit);
|
||||
|
||||
memdelete_arr(samples_in);
|
||||
};
|
||||
|
||||
|
|
|
@ -99,7 +99,7 @@ def configure(env):
|
|||
env.Append(LIBS=['pthread'])
|
||||
#env.Append(CPPFLAGS=['-F/Developer/SDKs/MacOSX10.4u.sdk/System/Library/Frameworks', '-isysroot', '/Developer/SDKs/MacOSX10.4u.sdk', '-mmacosx-version-min=10.4'])
|
||||
#env.Append(LINKFLAGS=['-mmacosx-version-min=10.4', '-isysroot', '/Developer/SDKs/MacOSX10.4u.sdk', '-Wl,-syslibroot,/Developer/SDKs/MacOSX10.4u.sdk'])
|
||||
env.Append(LINKFLAGS=['-framework', 'Cocoa', '-framework', 'Carbon', '-framework', 'OpenGL', '-framework', 'AGL', '-framework', 'AudioUnit','-lz'])
|
||||
env.Append(LINKFLAGS=['-g3', '-framework', 'Cocoa', '-framework', 'Carbon', '-framework', 'OpenGL', '-framework', 'AGL', '-framework', 'AudioUnit','-lz'])
|
||||
|
||||
if (env["CXX"]=="clang++"):
|
||||
env.Append(CPPFLAGS=['-DTYPED_METHOD_BIND'])
|
||||
|
|
Loading…
Reference in a new issue