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
Enable stack protection to help prevent stack buffer overflow attacks
-fstack-protector-all
Enable additional checks for some standard library functions to detect buffer overflows
-D_FORTIFY_SOURCE=2
Generate position-independent code (PIC) suitable for use in a shared library
-fPIE
Create a position-independent executable (PIE)
-pie
Enable read-only relocations (RELRO) for more secure memory handling
-Wl,-z,relro
When enabled, the dynamic linker will resolve symbols when the application is started, reducing the risk of certain types of attacks
-Wl,-z,now
The text was updated successfully, but these errors were encountered:
Implemented 🚀 ❇️
Sorry, something went wrong.
No branches or pull requests
The text was updated successfully, but these errors were encountered: