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
One patch is better than thousand words:D
diff --git a/src/Makefile.linux b/src/Makefile.linux index fd765f1..6418b6f 100644 --- a/src/Makefile.linux +++ b/src/Makefile.linux @@ -4,8 +4,8 @@ OSTYPE=Linux CPUTYPE:=$(shell uname -m) HVOPT=-DHV -CFLAGS=-D$(OSTYPE) -D$(CPUTYPE) $(HVOPT) -Wall -DTAP -LDFLAGS=-lpthread -lutil +CFLAGS:=$(CFLAGS) -D$(OSTYPE) -D$(CPUTYPE) $(HVOPT) -Wall -DTAP +LDFLAGS:=$(LDFLAGS) -lpthread -lutil OBJS=vpcs.o \ daemon.o \ readline.o \
My use case I've created vpcs-git package in the Arch Linux User Repository (AUR). During creation, I've got a couple of minor issues:
ELF file ('usr/bin/vpcs') lacks FULL RELRO, check LDFLAGS
ELF file ('usr/bin/vpcs') lacks GNU_PROPERTY_X86_FEATURE_1_SHSTK
These issues are really minor and not essential, but… what bad things could happen if custom (system-wide) CFLAGS and LDFLAGS would be enabled?
CFLAGS
LDFLAGS
Related issue #1
The text was updated successfully, but these errors were encountered:
No branches or pull requests
One patch is better than thousand words:D
My use case
I've created vpcs-git package in the Arch Linux User Repository (AUR). During creation, I've got a couple of minor issues:
ELF file ('usr/bin/vpcs') lacks FULL RELRO, check LDFLAGS
ELF file ('usr/bin/vpcs') lacks GNU_PROPERTY_X86_FEATURE_1_SHSTK
These issues are really minor and not essential, but… what bad things could happen if custom (system-wide)
CFLAGS
andLDFLAGS
would be enabled?Related issue
#1
The text was updated successfully, but these errors were encountered: