https://gcc.gnu.org/bugzilla/show_bug.cgi?id=79792

--- Comment #1 from Matthias Klose <doko at gcc dot gnu.org> ---
--program-prefix= and --program-suffix= are never passed into the gcc subdir,
but are transformed to a --program-transform-name.

the toplevel (expanded from an autoconf macro) has:

# The aliases save the names the user supplied, while $host etc.
# will get canonicalized.
test -n "$target_alias" &&
  test "$program_prefix$program_suffix$program_transform_name" = \
    NONENONEs,x,x, &&
  program_prefix=${target_alias}-

so the new program_prefix is ignored when --program-suffix= is passed. A work
around is to explicitly use --program-prefix=-<target-alias>.

Reply via email to