(STARTFILE_SPEC): Fix line wrap.

(SIGNED_CHAR_SPEC): Defined to set _CHAR_UNSIGNED.

From-SVN: r2711
This commit is contained in:
Richard Stallman 1992-11-07 19:16:32 +00:00
parent f368417601
commit c75b6ee3bd

View File

@ -19,7 +19,8 @@
/* Use crt1.o as a startup file and crtn.o as a closing file. */
#undef STARTFILE_SPEC
#define STARTFILE_SPEC "%{pg:gcrt1.o%s}%{!pg:%{p:mcrt1.o%s}%{!p:crt1.o%s}} crtbegin.o%s"
#define STARTFILE_SPEC \
"%{pg:gcrt1.o%s}%{!pg:%{p:mcrt1.o%s}%{!p:crt1.o%s}} crtbegin.o%s"
#define ENDFILE_SPEC "crtend.o%s crtn.o%s"
@ -37,6 +38,17 @@
#undef CPP_SPEC
#define CPP_SPEC "%{scointl:-DM_INTERNAT}"
/* This spec is used for telling cpp whether char is signed or not. */
#undef SIGNED_CHAR_SPEC
#if DEFAULT_SIGNED_CHAR
#define SIGNED_CHAR_SPEC \
"%{funsigned-char:-D__CHAR_UNSIGNED__ -D_CHAR_UNSIGNED}"
#else
#define SIGNED_CHAR_SPEC \
"%{!fsigned-char:-D__CHAR_UNSIGNED__ -D_CHAR_UNSIGNED}"
#endif
/* Use atexit for static destructors, instead of defining
our own exit function. */
#define HAVE_ATEXIT