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
Since dump1090 enables by default -Werror, starting with GCC-15, compilation will fail.
-Werror
x86_64-pc-linux-gnu-gcc -I. -D_POSIX_C_SOURCE=200112L -DMODES_DUMP1090_VERSION=\"unknown\" -DMODES_DUMP1090_VARIANT=\"dump1090-fa\" -D_DEFAULT_SOURCE -DENABLE_CPUFEATURES -Icpu_features/include -DENABLE_RTLSDR -DENABLE_SOAPYSDR -DSTARCH_MIX_X86 -O2 -pipe -march=native -fno-diagnostics-color -std=c11 -fno-common -Wall -Wmissing-declarations -Werror -Wformat-signedness -W -I/usr/include/ -c anet.c -o anet.o x86_64-pc-linux-gnu-gcc -I. -D_POSIX_C_SOURCE=200112L -DMODES_DUMP1090_VERSION=\"unknown\" -DMODES_DUMP1090_VARIANT=\"dump1090-fa\" -D_DEFAULT_SOURCE -DENABLE_CPUFEATURES -Icpu_features/include -DENABLE_RTLSDR -DENABLE_SOAPYSDR -DSTARCH_MIX_X86 -O2 -pipe -march=native -fno-diagnostics-color -std=c11 -fno-common -Wall -Wmissing-declarations -Werror -Wformat-signedness -W -I/usr/include/ -c mode_ac.c -o mode_ac.o x86_64-pc-linux-gnu-gcc -I. -D_POSIX_C_SOURCE=200112L -DMODES_DUMP1090_VERSION=\"unknown\" -DMODES_DUMP1090_VARIANT=\"dump1090-fa\" -D_DEFAULT_SOURCE -DENABLE_CPUFEATURES -Icpu_features/include -DENABLE_RTLSDR -DENABLE_SOAPYSDR -DSTARCH_MIX_X86 -O2 -pipe -march=native -fno-diagnostics-color -std=c11 -fno-common -Wall -Wmissing-declarations -Werror -Wformat-signedness -W -I/usr/include/ -c interactive.c -o interactive.o interactive.c: In function ‘interactiveShowData’: interactive.c:143:23: error: initializer-string for array of ‘char’ is too long [-Werror=unterminated-string-initialization] 143 | char spinner[4] = "|/-\\"; | ^~~~~~~ cc1: all warnings being treated as errors make: *** [Makefile:223: interactive.o] Error 1 make: *** Waiting for unfinished jobs.... x86_64-pc-linux-gnu-gcc -I. -D_POSIX_C_SOURCE=200112L -DMODES_DUMP1090_VERSION=\"unknown\" -DMODES_DUMP1090_VARIANT=\"dump1090-fa\" -D_DEFAULT_SOURCE -DENABLE_CPUFEATURES -Icpu_features/include -DENABLE_RTLSDR -DENABLE_SOAPYSDR -DSTARCH_MIX_X86 -O2 -pipe -march=native -fno-diagnostics-color -std=c11 -fno-common -Wall -Wmissing-declarations -Werror -Wformat-signedness -W -I/usr/include/ -c dump1090.c -o dump1090.o x86_64-pc-linux-gnu-gcc -I. -D_POSIX_C_SOURCE=200112L -DMODES_DUMP1090_VERSION=\"unknown\" -DMODES_DUMP1090_VARIANT=\"dump1090-fa\" -D_DEFAULT_SOURCE -DENABLE_CPUFEATURES -Icpu_features/include -DENABLE_RTLSDR -DENABLE_SOAPYSDR -DSTARCH_MIX_X86 -O2 -pipe -march=native -fno-diagnostics-color -std=c11 -fno-common -Wall -Wmissing-declarations -Werror -Wformat-signedness -W -I/usr/include/ -c comm_b.c -o comm_b.o x86_64-pc-linux-gnu-gcc -I. -D_POSIX_C_SOURCE=200112L -DMODES_DUMP1090_VERSION=\"unknown\" -DMODES_DUMP1090_VARIANT=\"dump1090-fa\" -D_DEFAULT_SOURCE -DENABLE_CPUFEATURES -Icpu_features/include -DENABLE_RTLSDR -DENABLE_SOAPYSDR -DSTARCH_MIX_X86 -O2 -pipe -march=native -fno-diagnostics-color -std=c11 -fno-common -Wall -Wmissing-declarations -Werror -Wformat-signedness -W -I/usr/include/ -c mode_s.c -o mode_s.o
The text was updated successfully, but these errors were encountered:
I suspect, that either char spinner[4] should be char spinner[5] or char spinner[].
char spinner[4]
char spinner[5]
char spinner[]
Sorry, something went wrong.
No branches or pull requests
Since dump1090 enables by default
-Werror
, starting with GCC-15, compilation will fail.The text was updated successfully, but these errors were encountered: