diff options
author | zlaski <zlaski@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-06-29 03:01:27 +0000 |
---|---|---|
committer | zlaski <zlaski@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-06-29 03:01:27 +0000 |
commit | 66575a0b4994fa8b8c75366ccfdca82145d052ea (patch) | |
tree | 6da74cb40b335fa28c92f12e5adfac5c2b98d7e0 /gcc/toplev.c | |
parent | 2042b067969b996056a7cfc71e8583a4bdfec2c7 (diff) | |
download | gcc-66575a0b4994fa8b8c75366ccfdca82145d052ea.tar.gz |
[gcc/ChangeLog]
2006-06-28 Ziemowit Laski <zlaski@apple.com>
* c-common.c (flag_next_runtime): Move...
* toplev.c (flag_next_runtime): ... here.
* c-common.h (flag_next_runtime): Move...
* flags.h (flag_next_runtime): ... here.
* config/darwin-c.c: Include flags.h.
* config/t-darwin (darwin-c.o): Depend on flags.h.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101415 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/toplev.c')
-rw-r--r-- | gcc/toplev.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gcc/toplev.c b/gcc/toplev.c index 6107c048182..17f75fe00f7 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -289,6 +289,14 @@ const char *aux_info_file_name; int flag_shlib; +/* Generate code for GNU or NeXT Objective-C runtime environment. */ + +#ifdef NEXT_OBJC_RUNTIME +int flag_next_runtime = 1; +#else +int flag_next_runtime = 0; +#endif + /* Set to the default thread-local storage (tls) model to use. */ enum tls_model flag_tls_default = TLS_MODEL_GLOBAL_DYNAMIC; |