Commit cc2f5d34 by Uwe Stieber Committed by Jim Wilson

Patch from Uwe Stieber.

* config/kaos.h (CPP_PREDEFINES): Delete.
(TARGET_OS_CPP_BUILTINS): New.

From-SVN: r68912
parent d6b4ea85
2003-07-03 Uwe Stieber <uwe@kaos-group.de>
* config/kaos.h (CPP_PREDEFINES): Delete.
(TARGET_OS_CPP_BUILTINS): New.
2003-07-03 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> 2003-07-03 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* c-aux-info.c: Include toplev.h after c-tree.h. * c-aux-info.c: Include toplev.h after c-tree.h.
......
...@@ -19,8 +19,12 @@ along with GCC; see the file COPYING. If not, write to ...@@ -19,8 +19,12 @@ along with GCC; see the file COPYING. If not, write to
the Free Software Foundation, 59 Temple Place - Suite 330, the Free Software Foundation, 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */ Boston, MA 02111-1307, USA. */
#undef CPP_PREDEFINES /* Specify predefined symbols in preprocessor. */
#define CPP_PREDEFINES "-D__kaOS__" #define TARGET_OS_CPP_BUILTINS() \
do { \
builtin_define ("__kaOS__"); \
} while (0)
/* do not link any library implicitly for kaOS target. */ /* do not link any library implicitly for kaOS target. */
#undef LIB_SPEC #undef LIB_SPEC
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment