diff options
author | Keith Packard <keithp@keithp.com> | 2016-11-16 13:59:54 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2016-11-17 22:18:39 -0800 |
commit | 6e4264b6dba38e83d265a175f0f5cc8573dcfb26 (patch) | |
tree | 040ab5fdcd4398f532507744ee197a66a1830875 | |
parent | a6e52fa669b65404d4416b6660f8508743e46d9b (diff) |
altos/test: Disable position independent executables
This makes debugging programs so much harder
-rw-r--r-- | src/test/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/Makefile b/src/test/Makefile index df24c2b6..fae46ac8 100644 --- a/src/test/Makefile +++ b/src/test/Makefile @@ -10,7 +10,7 @@ INCS=ao_kalman.h ao_ms5607.h ao_log.h ao_data.h altitude-pa.h altitude.h ao_quat KALMAN=make-kalman -CFLAGS=-I.. -I. -I../kernel -I../drivers -I../micropeak -I../product -I../lisp -O0 -g -Wall -DAO_LISP_TEST +CFLAGS=-I.. -I. -I../kernel -I../drivers -I../micropeak -I../product -I../lisp -O3 -g -Wall -DAO_LISP_TEST -no-pie all: $(PROGS) ao_aprs_data.wav |