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
Building on Linux (x86-64) fails. It looks like srandomdev() doesn't exist on Linux?
make[2]: Entering directory '/home/mark/Work/v-usb/examples/drivertest/commandline' gcc `libusb-config --cflags` -O -g -Wall -c opendevice.c gcc `libusb-config --cflags` -O -g -Wall -c runtest.c runtest.c: In function ‘main’: runtest.c:114:9: warning: implicit declaration of function ‘srandomdev’ [-Wimplicit-function-declaration] srandomdev(); ^~~~~~~~~~ gcc -o runtest opendevice.o runtest.o `libusb-config --libs` runtest.o: In function `main': /home/mark/Work/v-usb/examples/drivertest/commandline/runtest.c:114: undefined reference to `srandomdev' collect2: error: ld returned 1 exit status Makefile:41: recipe for target 'runtest' failed make[2]: *** [runtest] Error 1 make[2]: Leaving directory '/home/mark/Work/v-usb/examples/drivertest/commandline' make[1]: Leaving directory '/home/mark/Work/v-usb'
The text was updated successfully, but these errors were encountered:
You can simply remove this line if you want to run the tests on Linux.
Sorry, something went wrong.
Fix test compiling in Linux
adb685f
Fixes obdev#11
This issue can probably get closed as it should be fixed by 981b285.
Successfully merging a pull request may close this issue.
Building on Linux (x86-64) fails. It looks like srandomdev() doesn't exist on Linux?
The text was updated successfully, but these errors were encountered: