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
This is for those of you who plan to put this on other linux builds without using raspbian os. If you set the option to " -mfloat-abi=softfp " in the make file the program will compile correctly. Even though the pi zero w supports hard floats the program will refuse to make the file unless you set it to soft as another user suggested or use softfp if you get audio skipping when just using just the soft value.
Just edit this line in the make file and it should compile when you change hard to either soft or softfp.
This is for those of you who plan to put this on other linux builds without using raspbian os. If you set the option to " -mfloat-abi=softfp " in the make file the program will compile correctly. Even though the pi zero w supports hard floats the program will refuse to make the file unless you set it to soft as another user suggested or use softfp if you get audio skipping when just using just the soft value.
Just edit this line in the make file and it should compile when you change hard to either soft or softfp.
ARCH_CFLAGS = -march=armv6 -O3 -mtune=arm1176jzf-s -mfloat-abi=hard
The text was updated successfully, but these errors were encountered: