-
Notifications
You must be signed in to change notification settings - Fork 112
Miss pcaudiolib/audio.h dependency #25
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
Comments
Hi - this is addressed in the README. |
@berthubert Unfortunately it does not help to install it. Check: $ cmake . && make
-- The CXX compiler identification is AppleClang 15.0.0.15000100
-- The C compiler identification is AppleClang 15.0.0.15000100
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Configuring done
-- Generating done
-- Build files have been written to: /Users/***/googerteller
[ 14%] Generating configs.hh
[ 14%] Built target Work
[ 28%] Building CXX object CMakeFiles/teller.dir/teller.cc.o
/Users/***/googerteller/teller.cc:7:10: fatal error: 'pcaudiolib/audio.h' file not found
#include <pcaudiolib/audio.h>
^~~~~~~~~~~~~~~~~~~~
1 error generated.
make[2]: *** [CMakeFiles/teller.dir/build.make:76: CMakeFiles/teller.dir/teller.cc.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:113: CMakeFiles/teller.dir/all] Error 2
make: *** [Makefile:101: all] Error 2
$ env | grep INCL
INCLUDE=/opt/local/include:/usr/include
$ find /opt/local/include/ -name audio.h
/opt/local/include/pcaudiolib/audio.h It is installed and it is in the |
Open
@dmitryd export CPLUS_INCLUDE_PATH=/opt/local/include/
export LIBRARY_PATH=/opt/local/lib/ Then it should compile. I tested it out, and googerteller works. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi.
I faced with this error while make source code.
The text was updated successfully, but these errors were encountered: