mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 13:47:56 +00:00
a242bfce48
- Required by glib issue #4201
16 lines
433 B
Makefile
16 lines
433 B
Makefile
ifeq ($(filter-out $(SPECS),x86_32),)
|
|
INC_DIR += $(call select_from_ports,ffi)/include/ffi/spec/x86_32
|
|
endif
|
|
|
|
ifeq ($(filter-out $(SPECS),x86_64),)
|
|
INC_DIR += $(call select_from_ports,ffi)/include/ffi/spec/x86_64
|
|
endif
|
|
|
|
ifeq ($(filter-out $(SPECS),arm),)
|
|
INC_DIR += $(call select_from_ports,ffi)/include/ffi/spec/arm
|
|
endif
|
|
|
|
ifeq ($(filter-out $(SPECS),arm_64),)
|
|
INC_DIR += $(call select_from_ports,ffi)/include/ffi/spec/arm_64
|
|
endif
|