-
-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RtAudio fails to build on macOS & GCC #3
Comments
I get the same error and wondering if you've managed to fix it? |
idem dito: : : [ 4%] Building CXX object rtaudio/CMakeFiles/rtaudio.dir/RtAudio.cpp.o |
Hey,
From a quick glance and a few years of experience that means the program
relies on Apple libraries and header files. Apple's system header files use
non-standard features (blocks: ^ symbol), which gcc doesn't support but
clang does.
Although I'm not a member of the development or support for RtAudio, so
this could be wrong: It does not build under GCC as is.
I can suggest using clang. If you want a modern version install it via
homebrew or macports in the LLVM packages.
Cheers,
Drew Crampsie
…On Tue, Sep 24, 2024 at 2:45 PM pajzd ***@***.***> wrote:
idem dito: : :
[ 4%] Building CXX object rtaudio/CMakeFiles/rtaudio.dir/RtAudio.cpp.o
In file included from
/Users/lesupralittoralofbrownnoise/cppsketch/ext/rtaudio/RtAudio.h:890,
from
/Users/lesupralittoralofbrownnoise/cppsketch/ext/rtaudio/RtAudio.cpp:44:
/System/Library/Frameworks/CoreAudio.framework/Headers/AudioHardware.h:162:2:
error: expected unqualified-id before '^' token
162 | (^AudioObjectPropertyListenerBlock)( UInt32 inNumberAddresses,
| ^
/System/Library/Frameworks/CoreAudio.framework/Headers/AudioHardware.h:162:2:
error: expected ')' before '^' token
162 | (^AudioObjectPropertyListenerBlock)( UInt32 inNumberAddresses,
| ~^
| )
In file included from
/Users/lesupralittoralofbrownnoise/cppsketch/ext/rtaudio/RtAudio.h:890,
from
/Users/lesupralittoralofbrownnoise/cppsketch/ext/rtaudio/RtAudio.cpp:44:
/System/Library/Frameworks/CoreAudio.framework/Headers/AudioHardware.h:400:41:
error: 'AudioObjectPropertyListenerBlock' has not been declared
400 | AudioObjectPropertyListenerBloc inListener)
__OSX_AVAILABLE_STARTING(__MAC_10_7, __IPHONE_7_0);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/System/Library/Frameworks/CoreAudio.framework/Headers/AudioHardware.h:421:41:
error: 'AudioObjectPropertyListenerBlock' has not been declared
421 | AudioObjectPropertyListenerBloc inListener)
__OSX_AVAILABLE_STARTING(__MAC_10_7, __IPHONE_7_0);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/System/Library/Frameworks/CoreAudio.framework/Headers/AudioHardware.h:804:2:
error: expected unqualified-id before '^' token
804 | (^AudioDeviceIOBlock)( const AudioTimeStamp* inNow,
| ^
/System/Library/Frameworks/CoreAudio.framework/Headers/AudioHardware.h:804:2:
error: expected ')' before '^' token
804 | (^AudioDeviceIOBlock)( const AudioTimeStamp* inNow,
| ~^
| )
/System/Library/Frameworks/CoreAudio.framework/Headers/AudioHardware.h:1343:37:error:
'AudioDeviceIOBlock' has not been declared
1343 | AudioDeviceIOBlock inIOBlock) __OSX_AVAILABLE_STARTING(__MAC_10_7,
__IPHONE_7_0);
| ^~~~~~~~~~~~~~~~~~
/Users/lesupralittoralofbrownnoise/cppsketch/ext/rtaudio/RtAudio.cpp: In
function 'void* pulseaudio_callback(void*)':
/Users/lesupralittoralofbrownnoise/cppsketch/ext/rtaudio/RtAudio.cpp:8516:15:
error: 'sched_getscheduler' was not declared in this scope
8516 | (sched_getscheduler(0) == SCHED_RR ? "" : "*NOT* ") <<
| ^~~~~~~~~~~~~~~~~~
make[2]: *** [rtaudio/CMakeFiles/rtaudio.dir/RtAudio.cpp.o] Error 1
make[1]: *** [rtaudio/CMakeFiles/rtaudio.dir/all] Error 2
make: *** [all] Error 2
—
Reply to this email directly, view it on GitHub
<#3 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AADVTXLMSDOCEFW4CZI25LDZYHMPBAVCNFSM6AAAAABOZGMNMCVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDGNZSGQ2DIMRUGQ>
.
You are receiving this because you commented.Message ID:
***@***.***>
|
Thanks for reporting. Actually, this repository is no longer maintained as you may see and I'm rewriting entire system with rust now. https://github.com/tomoyanonymous/mimium-rs It's almost ready to release, I'll post the announce on this repo soon. |
Seems like a bug in CoreAudio header files.
The text was updated successfully, but these errors were encountered: