blob: debb6b1a67cd5cdef22a37e0981e1f2d6e08aa83 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# Multilibs for VxWorks.
# The common variant across the board is for -mrtp
MULTILIB_OPTIONS = mrtp
MULTILIB_DIRNAMES = mrtp
# Then variants for the "large" code model on x86_64, or fPIC on x86,
# RTP only. -fPIC -mrtp -mcmodel=large is not functional yet.
ifneq (,$(findstring x86_64, $(target)))
MULTILIB_OPTIONS += mcmodel=large
MULTILIB_DIRNAMES += large
endif
|