diff options
author | aoliva <aoliva@138bc75d-0d04-0410-961f-82ee72b054a4> | 2017-01-31 01:00:51 +0000 |
---|---|---|
committer | aoliva <aoliva@138bc75d-0d04-0410-961f-82ee72b054a4> | 2017-01-31 01:00:51 +0000 |
commit | 2bff1a27c02e9ef0f11fa811f54ccf6161bffa73 (patch) | |
tree | 527bb62c7f3019515db3568acbcb3b35bd60842e /libcc1/ChangeLog | |
parent | a7fcd0459590962aca8e5a0c8022d57cb2b21b9d (diff) | |
download | gcc-2bff1a27c02e9ef0f11fa811f54ccf6161bffa73.tar.gz |
libcc1 base API: add set_verbose and new version of compile
for include/ChangeLog
* gcc-interface.h (enum gcc_base_api_version): Add comment to
GCC_FE_VERSION_1.
(struct gcc_base_vtable): Rename compile to compile_v0.
Update comment for compile. New methods set_verbose and
compile.
for libcc1/ChangeLog
* libcc1.cc: Include intl.h.
(struct libcc1): Add field verbose.
(libcc1::libcc1): Initialize it.
(libcc1_set_verbose): New function.
(libcc1_set_arguments): Print messages for VERBOSE.
(libcc1_compile): Remove parameter verbose. Use VERBOSE from
SELF.
(libcc1_compile_v0): New function.
(vtable): Use libcc1_compile_v0 and add libcc1_compile and
libcc1_set_verbose.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@245048 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libcc1/ChangeLog')
-rw-r--r-- | libcc1/ChangeLog | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libcc1/ChangeLog b/libcc1/ChangeLog index e899df37e3a..d7c124a0d6d 100644 --- a/libcc1/ChangeLog +++ b/libcc1/ChangeLog @@ -1,5 +1,16 @@ 2017-01-30 Jan Kratochvil <jan.kratochvil@redhat.com> + * libcc1.cc: Include intl.h. + (struct libcc1): Add field verbose. + (libcc1::libcc1): Initialize it. + (libcc1_set_verbose): New function. + (libcc1_set_arguments): Print messages for VERBOSE. + (libcc1_compile): Remove parameter verbose. Use VERBOSE from + SELF. + (libcc1_compile_v0): New function. + (vtable): Use libcc1_compile_v0 and add libcc1_compile and + libcc1_set_verbose. + * libcc1.cc (vtable): Update to GCC_FE_VERSION_1. (gcc_c_fe_context): Accept also GCC_FE_VERSION_1. |