From: Hao Deng <860977+co-dh@users.noreply.github.com> Date: Wed, 30 Jan 2019 06:32:14 +0000 (-0500) Subject: fixes crash on modern gcc (#2) X-Git-Url: https://git.rrq.au/?a=commitdiff_plain;h=HEAD;p=rrq%2Fjonesforth.git fixes crash on modern gcc (#2) --- 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