milgner / k290-fnkeyctl

Configures the behaviour of the F-keys on the Logitech K290
MIT License
222 stars 30 forks source link

README say that it need clang, but build.sh is using g++ #10

Closed kaworu closed 10 years ago

kaworu commented 10 years ago

Is that normal ?

mariuszs commented 10 years ago

Yes, clang is commented out in build.sh, uncomment clang if you want use it

g++ -std=gnu++0x k290_fnkeyctl.cpp `pkg-config --libs libusb-1.0` -o k290_fnkeyctl
# clang -std=c++11 -I/usr/include -L/usr/lib k290_fnkeyctl.cpp -lusb-1.0 -lstdc++ -o k290_fnkeyctl
milgner commented 10 years ago

Thanks for the notification. With the wide range of distributions out there that package various versions of GCC and/or clang, I decided to leave them both in the script. I'll update the README to reflect that change.