commit 12b3bbbfdd341a81bcfe5087e70faa29ed451e78 parent 7feeef9a85c360d35091692eff0057e99fb778a7 Author: mrgrouse <bdmfegys@duck.com> Date: Sun, 12 May 2024 14:36:48 -0400 config.mk: enforce gcc as compiler, as tcc does not work with glyphs Diffstat:
| M | config.mk | | | 13 | +++++++------ |
1 file changed, 7 insertions(+), 6 deletions(-)
diff --git a/config.mk b/config.mk @@ -19,9 +19,10 @@ LDFLAGS = -L$(X11LIB) -s LDLIBS = -lX11 # compiler and linker -TCCCHECK = $(shell which tcc) -ifeq ($(TCCCHECK), $(shell false)) - CC = cc -else - CC = tcc -endif +CC = gcc +#TCCCHECK = $(shell which tcc) +#ifeq ($(TCCCHECK), $(shell false)) +# CC = cc +#else +# CC = tcc +#endif