Skip to content

Commit

Permalink
fix: musl linux target to accept COMPILER env
Browse files Browse the repository at this point in the history
  • Loading branch information
jaromil committed Oct 8, 2024
1 parent dfbe41a commit 95df51e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions build/musl-linux.mk
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## Initialize build defaults
include build/init.mk

COMPILER := musl-gcc
COMPILER ?= musl-gcc

## Additional dependencies
BUILD_DEPS += tinycc
Expand All @@ -20,7 +20,9 @@ endif
# activate CCACHE etc.
include build/plugins.mk

all: ${BUILD_DEPS} zenroom zencode-exec zencc
all: deps zenroom zencode-exec zencc

deps: ${BUILD_DEPS}

cli_sources := src/cli-zenroom.o src/repl.o
zenroom: ${ZEN_SOURCES} ${cli_sources}
Expand Down

0 comments on commit 95df51e

Please sign in to comment.