chore: figure out how to compile everything with C

This commit is contained in:
Jef Roosens 2022-11-19 23:53:42 +01:00
parent 3e40eeff2d
commit 32ff120600
Signed by: Jef Roosens
GPG key ID: B75D4F293C7052DB
8 changed files with 29 additions and 2 deletions

View file

@ -3,7 +3,8 @@ SRC_DIR := src
SOURCES != find '$(SRC_DIR)' -iname '*.v'
V_PATH ?= v
V := $(V_PATH) -showcc -gc boehm -W -d use_openssl
# We need to use GCC because TCC doesn't like the way we use C bindings
V := $(V_PATH) -showcc -gc boehm -W -d use_openssl -cc gcc
all: vieter