diff options
author | Keith Packard <keithp@keithp.com> | 2016-11-17 16:07:42 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2016-11-17 22:18:39 -0800 |
commit | df0128993f72c84d3160a8a7498f23c9a87fe8cc (patch) | |
tree | 420f3923cc9a14570a05171690669b1fa7f0a9ab | |
parent | b7125fb4ab26a2fc8df365cdb5cb591b5cc47e3e (diff) |
altos/lisp: Compile ao_lisp_make_const -no-pie
Makes debugging easier
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r-- | src/lisp/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lisp/Makefile b/src/lisp/Makefile index b06e10dd..15297999 100644 --- a/src/lisp/Makefile +++ b/src/lisp/Makefile @@ -25,7 +25,7 @@ SRCS=\ OBJS=$(SRCS:.c=.o) -CFLAGS=-DAO_LISP_MAKE_CONST -O0 -g -I. -Wall -Wextra +CFLAGS=-DAO_LISP_MAKE_CONST -O0 -g -I. -Wall -Wextra -no-pie HDRS=\ ao_lisp.h \ |