summaryrefslogtreecommitdiff
path: root/toolchain/glibc/Makefile.multilib
blob: 47cc0ff9988f83996ecb5038a2d190c5e33fc0ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# This file is part of the OpenADK project. OpenADK is copyrighted
# material, please see the LICENCE file in the top-level directory.

# 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