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
For some reason I've noticed that -debug version of package is also built when I run sudo ccm s. How I can avoid building debug version during build?
-debug
sudo ccm s
The text was updated successfully, but these errors were encountered:
Edit whatever you are sourcing as your makepkg.conf for ccm and bang-out the debug setting in the OPTIONS array. For example:
makepkg.conf
OPTIONS
% grep OPTIONS= /usr/share/devtools/makepkg.conf.d/x86_64.conf # Makepkg defaults: OPTIONS=(!strip docs libtool staticlibs emptydirs !zipman !purge !debug !lto) OPTIONS=(strip docs !libtool !staticlibs emptydirs zipman purge debug lto)
Change debug to !debug and unless the PKGBUILD overrides that, it shouldn't build.
debug
!debug
PKGBUILD
Sorry, something went wrong.
Yeah, defaults changed
No branches or pull requests
For some reason I've noticed that
-debug
version of package is also built when I runsudo ccm s
. How I can avoid building debug version during build?The text was updated successfully, but these errors were encountered: