Drop pinning esp simulator build to 32-bit.

Wasn't getting value out of mimicking the esp32 cell size.
This commit is contained in:
Brad Nelson
2022-02-12 07:42:44 -08:00
parent 3ae415b513
commit 16a8695c55

View File

@ -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 ----