You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With GCC 7.1.1 implicit fallthroughs throw a warning. Because of Werror the build will fail.
If someone else has this issue, as a temporal fix build with:
make -j
wait until the error is thrown and continue with
make -j CFLAGS='-Wno-implicit-fallthrough'
By only using the second make command the build will fail as well with "libusb.h" not found because of some buggy makefile wich does not properly handle CFLAGS???