mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-19 12:59:21 +08:00
e7f8999918
Move the minor moxie-specific logic to a dedicated file & namespace them so we can merge its configure logic up a level.
14 lines
309 B
Plaintext
14 lines
309 B
Plaintext
dnl Don't build crt0 for moxiebox, which provides crt0 for us.
|
|
case "${target}" in
|
|
moxie-*-moxiebox*)
|
|
MOXIE_BUILD_CRT0_TRUE='#'
|
|
MOXIE_BUILD_CRT0_FALSE=
|
|
;;
|
|
*)
|
|
MOXIE_BUILD_CRT0_TRUE=
|
|
MOXIE_BUILD_CRT0_FALSE='#'
|
|
;;
|
|
esac
|
|
AC_SUBST(MOXIE_BUILD_CRT0_TRUE)
|
|
AC_SUBST(MOXIE_BUILD_CRT0_FALSE)
|