4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-19 12:59:21 +08:00
Mike Frysinger e7f8999918 libgloss: merge moxie configure script up a level
Move the minor moxie-specific logic to a dedicated file & namespace them
so we can merge its configure logic up a level.
2022-02-16 20:10:48 -05:00

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)