Closed arkrost closed 7 years ago
For the bluez64 error, my patch is https://github.com/quozl/cforth-1/commit/a4ca717def4b3709f4ca87303f403dc6efb3d6a1 also referenced here.
Oh, I see. Can you suggest me the way how to build the minimal version of cforth, i.e. without glfw, bluez ant etc?
The bluez builds only work on Linux. MacOS and Windows have different APIs for Bluetooth.
Sorry about all that OpenGL cruft in host-serial-macos64. It was for some factory diagnostics at a previous job, for a product that didn't make it to market. To build without it for macos64, replace build/host-serial-macos64/Makefile with the following simplified version. Let me know if it works; I can't test it because I no longer have a Mac.
all: default TOPDIR=../.. CONFIG += -DBITS64 CONFIG += -DFLOATING -DMOREFP include $(TOPDIR)/src/app/host-serial/targets.mk
Haha, looks like I got marked down. The line "Builds a MacOS host Forth ..." starts with a '#', i.e. it's a Makefile comment, but Markdown treated it as a heading.
Heh. Been there. You probably know by now, but if not the trick is to enclose lines in triple backticks (```);
# Builds a MacOS host Forth application with serial port tools
all: default
TOPDIR=../..
CONFIG += -DBITS64
CONFIG += -DFLOATING -DMOREFP
include $(TOPDIR)/src/app/host-serial/targets.mk
I've some old Macs from a few years ago, but nothing recently upgraded. I can offer ESP32 testing, but haven't had time to port yet.
Reviewed 9a96d1f54987ed86268d69caa6103fdc725cb806 and 0d00d26cdaece84a420912ae8304eff08c4d84d5. Like 'em.
I confirm that it compiles fine with this makefile. Thank you!
Hi!
I'm having troubles with building cforth under mac.
If I'm trying to build bluez64 target I got:
If I'm trying to build host-serial-macos64 target I got the following.
But I'm sure I have glfw3 installed. Moreover I've tried to build glfw3 from sources.