mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 22:23:16 +00:00
5e4e634625
If `select_from_ports` is evaluated lazily, we might miss a port during the dependency check. A way to prevent this is to use the `:=` operator. Fixes genodelabs/genode#4618
13 lines
335 B
PHP
13 lines
335 B
PHP
GMP_DIR := $(call select_from_ports,gmp)/src/lib/gmp
|
|
|
|
include $(REP_DIR)/lib/import/import-gmp.mk
|
|
|
|
LIBS += libc
|
|
|
|
CC_OPT += -DHAVE_CONFIG_H -D__GMP_WITHIN_GMP
|
|
CC_OPT += -Wno-unused-variable -Wno-unused-but-set-variable
|
|
CC_OPT += -Wno-implicit-function-declaration -Wno-unused-function
|
|
CC_OPT += -Wno-unused-value
|
|
|
|
INC_DIR += $(GMP_DIR)
|