https://gcc.gnu.org/bugzilla/show_bug.cgi?id=89517
--- Comment #2 from Tamar Christina <tnfchris at gcc dot gnu.org> --- Author: tnfchris Date: Fri Mar 1 14:07:38 2019 New Revision: 269313 URL: https://gcc.gnu.org/viewcvs?rev=269313&root=gcc&view=rev Log: AArch64: Make every option in options.def one line (GCC-8). Due to config.gcc all the options need to be on one line because of the grep lines which would select only the first line of the option. This causes it not to select the right bits on options that are spread over multiple lines when the --with-arch configure option is used. The issue happens silently and you just get a compiler with an incorrect set of default flags. This solution just collapses everything back to one line as they were in GCC7. Unfortunately this does make some lines quite long. gcc/ChangeLog: PR target/89517 * config/aarch64/aarch64-option-extensions.def (fp, simd, crypto, fp16): Collapse line. Modified: branches/gcc-8-branch/gcc/ChangeLog branches/gcc-8-branch/gcc/config/aarch64/aarch64-option-extensions.def