From 16a8695c5577fb6aac3e593608a35cf5e06b1b31 Mon Sep 17 00:00:00 2001 From: Brad Nelson Date: Sat, 12 Feb 2022 07:42:44 -0800 Subject: [PATCH] Drop pinning esp simulator build to 32-bit. Wasn't getting value out of mimicking the esp32 cell size. --- ueforth/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ueforth/Makefile b/ueforth/Makefile index bf0dfad..c73f909 100644 --- a/ueforth/Makefile +++ b/ueforth/Makefile @@ -368,7 +368,7 @@ $(ESP32_SIM)/Esp32forth-sim: \ common/interp.h \ $(GEN)/esp32_boot.h \ $(GEN)/esp32_sim_opcodes.h | $(ESP32_SIM) - $(CXX) $(CFLAGS) -m32 -D_FILE_OFFSET_BITS=64 $< -o $@ + $(CXX) $(CFLAGS) $< -o $@ strip $(STRIP_ARGS) $@ # ---- ESP32 ----