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
When the user provides CXXFLAGS, as in make CXXFLAGS=g3, the build breaks like:
make CXXFLAGS=g3
ui/drivers/ui_qt.cpp:17:10: fatal error: QApplication: No such file or directory 17 | #include <QApplication>
Providing flags using user intended variables such as CXXFLAGS or CFLAGS should not remove flags that are needed for the build to succeed.
CXXFLAGS
CFLAGS
The build breaks as shown in the description above.
make CXXFLAGS=-g3
Haven't bisected; happening with version 1.19.1.
The text was updated successfully, but these errors were encountered:
Does it behave differently if you pass the variable in a different way? CXXFLAGS=-g3 make
CXXFLAGS=-g3 make
As in, there is an override behavior for the variables defined after the make command: https://ftp.gnu.org/old-gnu/Manuals/make-3.79.1/html_chapter/make_9.html#SEC90
Sorry, something went wrong.
No branches or pull requests
Description
When the user provides CXXFLAGS, as in
make CXXFLAGS=g3
, the build breaks like:Expected behavior
Providing flags using user intended variables such as
CXXFLAGS
orCFLAGS
should not remove flags that are needed for the build to succeed.Actual behavior
The build breaks as shown in the description above.
Steps to reproduce the bug
make CXXFLAGS=-g3
Bisect Results
Haven't bisected; happening with version 1.19.1.
Environment information
The text was updated successfully, but these errors were encountered: