fix: should now compile with gcc
All checks were successful
ci/woodpecker/pr/lint Pipeline was successful
ci/woodpecker/pr/docs Pipeline was successful
ci/woodpecker/pr/build Pipeline was successful
ci/woodpecker/pr/docker Pipeline was successful
ci/woodpecker/pr/man Pipeline was successful
ci/woodpecker/pr/test Pipeline was successful
All checks were successful
ci/woodpecker/pr/lint Pipeline was successful
ci/woodpecker/pr/docs Pipeline was successful
ci/woodpecker/pr/build Pipeline was successful
ci/woodpecker/pr/docker Pipeline was successful
ci/woodpecker/pr/man Pipeline was successful
ci/woodpecker/pr/test Pipeline was successful
This commit is contained in:
parent
433184877c
commit
58b58806f3
2 changed files with 7 additions and 3 deletions
5
Makefile
5
Makefile
|
|
@ -1,6 +1,9 @@
|
|||
# =====CONFIG=====
|
||||
SRC_DIR := src
|
||||
SOURCES != find '$(SRC_DIR)' -\( -iname '*.v' -or -iname '*.h' -or -iname '*.c' -\)
|
||||
SRCS_C != find '$(SRC_DIR)' -iname '*.c'
|
||||
SRCS_H != find '$(SRC_DIR)' -iname '*.h'
|
||||
SRCS_V != find '$(SRC_DIR)' -iname '*.v'
|
||||
SOURCES := $(SRCS_C) $(SRCS_H) $(SRCS_V)
|
||||
|
||||
V_PATH ?= v
|
||||
V := $(V_PATH) -showcc -gc boehm -W -d use_openssl -skip-unused
|
||||
|
|
|
|||
Reference in a new issue