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
Compilation following the instructions in the README fails on macOS, and probably with any operating system which primarily uses clang:
g++ -c -o main.obj main.cpp -MMD -Wall -Wextra -Werror -Wno-deprecated -Wno-unused-const-variable -std=c++0x -O3 -I../../common -I../../glpk-4.60/installed/include -I../../reluplex -I../../nnet -I. In file included from main.cpp:18: ../../reluplex/Reluplex.h:3415:14: error: private field '_numOutOfBoundFixesViaBland' is not used [-Werror,-Wunused-private-field] unsigned _numOutOfBoundFixesViaBland; ^ 1 error generated.
The flag -Wno-unused-but-set-variable should be replaced by -Wno-unused-private-field on these platforms.
-Wno-unused-but-set-variable
-Wno-unused-private-field
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Compilation following the instructions in the README fails on macOS, and probably with any operating system which primarily uses clang:
The flag
-Wno-unused-but-set-variable
should be replaced by-Wno-unused-private-field
on these platforms.The text was updated successfully, but these errors were encountered: