We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
WiringPi-Python $ sudo python setup.py install ... gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC -I/usr/include/python2.7 -c WiringPi/wiringPi/piNes.c -o build/temp.linux-armv6l-2.7/WiringPi/wiringPi/piNes.o WiringPi/wiringPi/piNes.c:25:22: fatal error: wiringPi.h: No such file or directory
Fixed by changing from #include <wiringPi.h> to #include "wiringPi.h" in my local copy, but this is bogus as it is in a separate project.
The text was updated successfully, but these errors were encountered:
sudo python setup.py build_ext -I ./WiringPi/wiringPi install
Sorry, something went wrong.
No branches or pull requests
WiringPi-Python $ sudo python setup.py install
...
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC -I/usr/include/python2.7 -c WiringPi/wiringPi/piNes.c -o build/temp.linux-armv6l-2.7/WiringPi/wiringPi/piNes.o
WiringPi/wiringPi/piNes.c:25:22: fatal error: wiringPi.h: No such file or directory
Fixed by changing from #include <wiringPi.h> to #include "wiringPi.h" in my local copy, but this is bogus as it is in a separate project.
The text was updated successfully, but these errors were encountered: