diff options
author | Per Bothner <per@bothner.com> | 2001-02-23 19:28:39 -0800 |
---|---|---|
committer | Per Bothner <bothner@gcc.gnu.org> | 2001-02-23 19:28:39 -0800 |
commit | fea2d5da9c4a43852594336efa2ff45283f5595b (patch) | |
tree | 8922ef8858d3181ab08328253b29081a198508fb /gcc/java/lang.c | |
parent | 1aed31b63c536a400353aa86d6fe8fc04147ac52 (diff) | |
download | gcc-fea2d5da9c4a43852594336efa2ff45283f5595b.zip gcc-fea2d5da9c4a43852594336efa2ff45283f5595b.tar.gz gcc-fea2d5da9c4a43852594336efa2ff45283f5595b.tar.bz2 |
Handle compiling multiple input files at once, and @FILE syntax. See ChangeLog.
From-SVN: r40024
Diffstat (limited to 'gcc/java/lang.c')
-rw-r--r-- | gcc/java/lang.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/java/lang.c b/gcc/java/lang.c index e69151a..1680d99 100644 --- a/gcc/java/lang.c +++ b/gcc/java/lang.c @@ -105,6 +105,10 @@ int flag_assume_compiled = 1; int flag_emit_class_files = 0; +/* Nonzero if input file is a file with a list of filenames to compile. */ + +int flag_filelist_file = 0; + /* When non zero, we emit xref strings. Values of the flag for xref backends are defined in xref_flag_table, xref.c. */ @@ -156,6 +160,7 @@ lang_f_options[] = { {"emit-class-file", &flag_emit_class_files, 1}, {"emit-class-files", &flag_emit_class_files, 1}, + {"filelist-file", &flag_filelist_file, 1}, {"use-divide-subroutine", &flag_use_divide_subroutine, 1}, {"use-boehm-gc", &flag_use_boehm_gc, 1}, {"hash-synchronization", &flag_hash_synchronization, 1}, |