summaryrefslogtreecommitdiff
path: root/toolchain/eglibc/Makefile.multilib
blob: 08be0a10001cdf451c0b990c77df8503572e88d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# multilib support
ifeq ($(ADK_TARGET_WITH_MULTILIB),y)
TABI:=
ifeq ($(ADK_TARGET_MULTILIB_X86_X32),y)
TABI+=x86_64-openadk-linux-gnu:x32
endif
ifeq ($(ADK_TARGET_MULTILIB_X86_32),y)
TABI+=i486-openadk-linux-gnu:32
endif
ifeq ($(ADK_TARGET_MULTILIB_X86_64),y)
TABI+=x86_64-openadk-linux-gnu:64
endif
endif