point Makefile at foundation/el rather than /usr/local/lib/el
Forge Release / build-and-release (push) Failing after 4s

elc is not installed system-wide; resolve ELC and EL_LIB from
the monorepo at $(HOME)/Development/neuron-technologies/foundation/el
so plain `make build` works without extra env vars.
This commit is contained in:
Will Anderson
2026-05-03 02:07:27 -05:00
parent 3bf31cf602
commit e5d9986c11
+3 -2
View File
@@ -1,5 +1,6 @@
EL_LIB ?= /usr/local/lib/el EL_ROOT ?= $(HOME)/Development/neuron-technologies/foundation/el
ELC ?= elc EL_LIB ?= $(EL_ROOT)/el-compiler/runtime
ELC ?= $(EL_ROOT)/dist/platform/elc
CC ?= cc CC ?= cc
CFLAGS := -std=c11 -O2 -I$(EL_LIB) CFLAGS := -std=c11 -O2 -I$(EL_LIB)