From 4f853252f715132e7716cbd44e5306cefb6a6fec Mon Sep 17 00:00:00 2001 From: Hao Deng <860977+co-dh@users.noreply.github.com> Date: Wed, 30 Jan 2019 01:32:14 -0500 Subject: [PATCH] fixes crash on modern gcc (#2) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 51fba1e..77d90d1 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ SHELL := /bin/bash all: jonesforth jonesforth: jonesforth.S - gcc -m32 -nostdlib -static -Wl,-Ttext,0 $(BUILD_ID_NONE) -o $@ $< + gcc -m32 -nostdlib -static $(BUILD_ID_NONE) -o $@ $< run: cat jonesforth.f $(PROG) - | ./jonesforth -- 2.39.2