Happy to report that compiling with Makefile.os_x_arm64 worked. All the programs compiled. All the programs ran. Surprisingly enough, I modified this line in the makefile:
CC = cc -O -g -arch arm64 -Wno-pointer-sign
to:
CC = cc -O3 -g -arch arm64 -arch x86_64 -Wno-pointer-sign
and obtained a "universal" binary, compiled in an M1 mac, that ran all right in both arm64 and x86_64, even in macs with Big Sur:
Hi Bill et al!
Happy to report that compiling with Makefile.os_x_arm64 worked. All the programs compiled. All the programs ran. Surprisingly enough, I modified this line in the makefile:
to:
and obtained a "universal" binary, compiled in an M1 mac, that ran all right in both arm64 and x86_64, even in macs with Big Sur:
Best and thanks for your efforts! -Gabo