From ce39bd389039d99458950b072550ab52f0a07a34 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sat, 9 Jan 2016 04:09:35 -0500 Subject: sim: move many common settings from CPPFLAGS to config.h Rather than stuffing the command line with a bunch of -D flags, start moving things to config.h which is managed by autoheader. This makes the makefile a bit simpler and the build output tighter, and it makes the migration to automake easier as there are fewer vars to juggle. We'll want to move the other options out too, but it'll take more work. --- sim/aarch64/config.in | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'sim/aarch64/config.in') diff --git a/sim/aarch64/config.in b/sim/aarch64/config.in index f24eb3b..aa3e45c 100644 --- a/sim/aarch64/config.in +++ b/sim/aarch64/config.in @@ -3,6 +3,9 @@ /* Define if building universal (internal helper macro) */ #undef AC_APPLE_UNIVERSAL_BUILD +/* Sim debug setting */ +#undef DEBUG + /* Define to 1 if translation of program messages to the user's native language is requested. */ #undef ENABLE_NLS @@ -170,6 +173,9 @@ /* Additional package description */ #undef PKGVERSION +/* Sim profile settings */ +#undef PROFILE + /* Bug reporting address */ #undef REPORT_BUGS_TO @@ -201,6 +207,24 @@ #endif +/* Sim assert settings */ +#undef WITH_ASSERT + +/* Sim debug setting */ +#undef WITH_DEBUG + +/* Sim default environment */ +#undef WITH_ENVIRONMENT + +/* Sim profile settings */ +#undef WITH_PROFILE + +/* How to route I/O */ +#undef WITH_STDIO + +/* Sim trace settings */ +#undef WITH_TRACE + /* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most significant byte first (like Motorola and SPARC, unlike Intel). */ #if defined AC_APPLE_UNIVERSAL_BUILD -- cgit v1.1