diff options
-rw-r--r-- | jitter/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/jitter/Makefile b/jitter/Makefile index dde3870..a6c7fed 100644 --- a/jitter/Makefile +++ b/jitter/Makefile @@ -13,10 +13,10 @@ # limitations under the License. all: - gcc -O1 jitter.c -fstack-protector-all -fPIC -Wformat -Wformat-security -Wl,-z,noexecstack,-z,relro,-z,now -o jitter + gcc -O1 jitter.c -fstack-protector-all -fPIE -Wformat -Wformat-security -Wl,-z,noexecstack,-z,relro,-z,now -o jitter pt: - gcc -O1 jitter.c -fstack-protector-all -fPIC -Wformat -Wformat-security -Wl,-z,noexecstack,-z,relro,-z,now -o jitter -D PROCESSOR_TRACE + gcc -O1 jitter.c -fstack-protector-all -fPIE -Wformat -Wformat-security -Wl,-z,noexecstack,-z,relro,-z,now -o jitter -D PROCESSOR_TRACE clean: rm -f jitter |