aeb780bded
see PR 42424. I couldn't fix this problem using TOOLROOT variable.
131 lines
3.3 KiB
Makefile
131 lines
3.3 KiB
Makefile
# $NetBSD: mipspro.mk,v 1.42 2011/08/22 09:18:29 cheusov Exp $
|
|
#
|
|
# This is the compiler definition for the MIPSpro C compiler.
|
|
#
|
|
# User-settable variables:
|
|
#
|
|
# MIPSPROBASE
|
|
# The base directory where the compiler is installed.
|
|
#
|
|
|
|
.if !defined(COMPILER_MIPSPRO_MK)
|
|
COMPILER_MIPSPRO_MK= defined
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
MIPSPROBASE?= /usr
|
|
|
|
COMPILER_USE_SYMLINKS= no # PR pkg/42424
|
|
|
|
# LANGUAGES.<compiler> is the list of supported languages by the
|
|
# compiler.
|
|
#
|
|
LANGUAGES.mipspro= # empty
|
|
|
|
_MIPSPRO_DIR= ${WRKDIR}/.mipspro
|
|
_MIPSPRO_VARS= # empty
|
|
.if exists(${MIPSPROBASE}/bin/cc)
|
|
LANGUAGES.mipspro+= c
|
|
_MIPSPRO_VARS+= CC
|
|
_MIPSPRO_CC= ${_MIPSPRO_DIR}/bin/cc
|
|
_ALIASES.CC= cc
|
|
CCPATH= ${MIPSPROBASE}/bin/cc
|
|
PKG_CC:= ${_MIPSPRO_CC}
|
|
.endif
|
|
.if exists(${MIPSPROBASE}/bin/CC)
|
|
LANGUAGES.mipspro+= c++
|
|
_MIPSPRO_VARS+= CXX
|
|
_MIPSPRO_CXX= ${_MIPSPRO_DIR}/bin/CC
|
|
_ALIASES.CXX= CC c++
|
|
CXXPATH= ${MIPSPROBASE}/bin/CC
|
|
PKG_CXX:= ${_MIPSPRO_CXX}
|
|
.endif
|
|
_COMPILER_STRIP_VARS+= ${_MIPSPRO_VARS}
|
|
|
|
.if exists(${CCPATH})
|
|
# MIPSpro Compilers: Version 7.3.1.2m
|
|
CC_VERSION_STRING!= ${CCPATH} -version 2>&1 || ${TRUE}
|
|
CC_VERSION!= ${CCPATH} -version 2>&1 | ${GREP} '^MIPSpro'
|
|
.else
|
|
CC_VERSION_STRING?= ${CC_VERSION}
|
|
CC_VERSION?= MIPSpro Compilers
|
|
.endif
|
|
|
|
# MIPSPro linker option used to set the rpath.
|
|
_LINKER_RPATH_FLAG= -rpath
|
|
|
|
# MIPSPro passes rpath directives to the linker using "-Wl,-rpath,".
|
|
_COMPILER_RPATH_FLAG= -Wl,${_LINKER_RPATH_FLAG},
|
|
|
|
# MIPSPro supports compiling/linking objects for several ABIs: n32, o32,
|
|
# and 64 bit.
|
|
#
|
|
_COMPILER_ABI_FLAG.32= -n32 # ABI == "32" is an alias for ABI == "n32"
|
|
_COMPILER_ABI_FLAG.o32= # empty
|
|
_COMPILER_ABI_FLAG.n32= -n32
|
|
_COMPILER_ABI_FLAG.64= -64
|
|
|
|
# _LANGUAGES.<compiler> is ${LANGUAGES.<compiler>} restricted to the
|
|
# ones requested by the package in USE_LANGUAGES.
|
|
#
|
|
_LANGUAGES.mipspro= # empty
|
|
.for _lang_ in ${USE_LANGUAGES}
|
|
_LANGUAGES.mipspro+= ${LANGUAGES.mipspro:M${_lang_}}
|
|
.endfor
|
|
|
|
.if !empty(USE_LANGUAGES:Mc99)
|
|
_WRAP_EXTRA_ARGS.CC+= -c99
|
|
.endif
|
|
|
|
# Normally, the #error directive only results in a warning (which is
|
|
# explicitly allowed in ISO C99), but we want it to be an error.
|
|
_WRAP_EXTRA_ARGS.CC+= -diag_error 1035
|
|
_WRAP_EXTRA_ARGS.CXX+= -diag_error 1035
|
|
|
|
# Prepend the path to the compiler to the PATH.
|
|
.if !empty(_LANGUAGES.mipspro)
|
|
PREPEND_PATH+= ${_MIPSPRO_DIR}/bin
|
|
.endif
|
|
|
|
# Create compiler driver scripts in ${WRKDIR}.
|
|
.for _var_ in ${_MIPSPRO_VARS}
|
|
. if !target(${_MIPSPRO_${_var_}})
|
|
override-tools: ${_MIPSPRO_${_var_}}
|
|
${_MIPSPRO_${_var_}}:
|
|
${RUN}${MKDIR} ${.TARGET:H}
|
|
. if !empty(COMPILER_USE_SYMLINKS:M[Yy][Ee][Ss])
|
|
${RUN}${RM} -f ${.TARGET}
|
|
${RUN}${LN} -s ${MIPSPROBASE}/bin/${.TARGET:T} ${.TARGET}
|
|
. else
|
|
${RUN} \
|
|
(${ECHO} '#!${TOOLS_SHELL}'; \
|
|
${ECHO} 'exec ${MIPSPROBASE}/bin/${.TARGET:T} "$$@"'; \
|
|
) > ${.TARGET}
|
|
${RUN}${CHMOD} +x ${.TARGET}
|
|
. endif
|
|
. for _alias_ in ${_ALIASES.${_var_}:S/^/${.TARGET:H}\//}
|
|
${RUN} \
|
|
if [ ! -x "${_alias_}" ]; then \
|
|
${LN} -f -s ${.TARGET} ${_alias_}; \
|
|
fi
|
|
. endfor
|
|
. endif
|
|
.endfor
|
|
|
|
.if defined(ABI)
|
|
MABIFLAG= -${ABI:C/^32$/n&/}
|
|
CFLAGS+= ${MABIFLAG}
|
|
LDFLAGS+= ${MABIFLAG}
|
|
.endif
|
|
|
|
# Force the use of f2c-f77 for compiling Fortran.
|
|
_MIPSPRO_USE_F2C= no
|
|
FCPATH= /nonexistent
|
|
.if !exists(${FCPATH})
|
|
_MIPSPRO_USE_F2C= yes
|
|
.endif
|
|
.if !empty(_MIPSPRO_USE_F2C:M[yY][eE][sS])
|
|
. include "../../mk/compiler/f2c.mk"
|
|
.endif
|
|
|
|
.endif # COMPILER_MIPSPRO_MK
|