-
- Downloads
--with-{documentation,changes}-root-url tweaks
> , CHANGES_URL ("gcc-10/changes.html#empty_base"); > > where the macro would just use preprocessor string concatenation? Ok, the following patch implements it (doesn't introduce a separate macro and just uses CHANGES_ROOT_URL "gcc-10/changes.html#empty_base"), in addition adds the documentation Joseph requested. 2020-04-30 Jakub Jelinek <jakub@redhat.com> * configure.ac (--with-documentation-root-url, --with-changes-root-url): Diagnose URL not ending with /, use AC_DEFINE_UNQUOTED instead of AC_SUBST. * opts.h (get_changes_url): Remove. * opts.c (get_changes_url): Remove. * Makefile.in (CFLAGS-opts.o): Don't add -DDOCUMENTATION_ROOT_URL or -DCHANGES_ROOT_URL. * doc/install.texi (--with-documentation-root-url, --with-changes-root-url): Document. * config/arm/arm.c (aapcs_vfp_is_call_or_return_candidate): Don't call get_changes_url and free, change url variable type to const char * and set it to CHANGES_ROOT_URL "gcc-10/changes.html#empty_base". * config/s390/s390.c (s390_function_arg_vector, s390_function_arg_float): Likewise. * config/aarch64/aarch64.c (aarch64_vfp_is_call_or_return_candidate): Likewise. * config/rs6000/rs6000-call.c (rs6000_discover_homogeneous_aggregate): Likewise. * config.in: Regenerate. * configure: Regenerate.
Showing
- gcc/ChangeLog 23 additions, 0 deletionsgcc/ChangeLog
- gcc/Makefile.in 0 additions, 3 deletionsgcc/Makefile.in
- gcc/config.in 12 additions, 0 deletionsgcc/config.in
- gcc/config/aarch64/aarch64.c 2 additions, 2 deletionsgcc/config/aarch64/aarch64.c
- gcc/config/arm/arm.c 2 additions, 2 deletionsgcc/config/arm/arm.c
- gcc/config/rs6000/rs6000-call.c 2 additions, 3 deletionsgcc/config/rs6000/rs6000-call.c
- gcc/config/s390/s390.c 2 additions, 4 deletionsgcc/config/s390/s390.c
- gcc/configure 14 additions, 8 deletionsgcc/configure
- gcc/configure.ac 8 additions, 6 deletionsgcc/configure.ac
- gcc/doc/install.texi 13 additions, 0 deletionsgcc/doc/install.texi
- gcc/opts.c 0 additions, 10 deletionsgcc/opts.c
- gcc/opts.h 0 additions, 1 deletiongcc/opts.h
Loading
Please register or sign in to comment