You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
right now, the main thing we want to separate is how the code gets compiled depending if it's for deployment or testing. The following flags are specified for the corresponding environment:
deployment/prod (for .o and .c files):
-std=c11 -O3 -fno-inline -fno-stack-protector
testing (for .o files):
-ftest-coverage -fprofile-arcs -fPIC
testing (for .c files):
-std=c11 -O0 -ftest-coverage -fprofile-arcs
Right now the makefile is a bunch of commented out, hard to read garbage and it needs to be fixed
The text was updated successfully, but these errors were encountered:
right now, the main thing we want to separate is how the code gets compiled depending if it's for deployment or testing. The following flags are specified for the corresponding environment:
deployment/prod (for .o and .c files):
-std=c11 -O3 -fno-inline -fno-stack-protector
testing (for .o files):
-ftest-coverage -fprofile-arcs -fPIC
testing (for .c files):
-std=c11 -O0 -ftest-coverage -fprofile-arcs
Right now the makefile is a bunch of commented out, hard to read garbage and it needs to be fixed
The text was updated successfully, but these errors were encountered: