Commit 43aba518 by Nathanael Nerode

config.gcc, [...]: Replace uses of target_alias with target_noncanonical.

gcc:
	* config.gcc, config/m68hc11/t-m68hc11-gas: Replace uses of
	target_alias with target_noncanonical.

ada:
	* Make-lang.in: Replace uses of $(target_alias) with
	$(target_noncanonical).
	* ada/Makefile.in: Remove unused mention of $(target_alias).

cp:
	* Make-lang.in: Replace uses of $(target_alias) with
	$(target_noncanonical).

java:
	* Make-lang.in: Replace uses of $(target_alias) with
	$(target_noncanonical).

From-SVN: r72487
parent 1b4d5fde
2003-10-14 Nathanael Nerode <neroden@gcc.gnu.org>
* config.gcc, config/m68hc11/t-m68hc11-gas: Replace uses of
target_alias with target_noncanonical.
2003-10-14 Geoffrey Keating <geoffk@apple.com>
* expr.c (block_move_libcall_safe_for_call_parm): Clean up,
......
2003-10-14 Nathanael Nerode <neroden@gcc.gnu.org>
* Make-lang.in: Replace uses of $(target_alias) with
$(target_noncanonical).
* ada/Makefile.in: Remove unused mention of $(target_alias).
2003-10-06 Mark Mitchell <mark@codesourcery.com>
* Make-lang.in (ada.info): Replace with ...
......
......@@ -176,7 +176,6 @@ program_transform_name =
objdir = .
target=@target@
target_alias=@target_alias@
xmake_file = @xmake_file@
tmake_file = @tmake_file@
host_canonical=@host@
......
......@@ -2192,7 +2192,7 @@ if test x$with_cpu = x ; then
with_cpu=i486
;;
i586-*-*)
case $target_alias in
case ${target_noncanonical} in
k6_2-*)
with_cpu=k6-2
;;
......@@ -2211,7 +2211,7 @@ if test x$with_cpu = x ; then
esac
;;
i686-*-* | i786-*-*)
case $target_alias in
case ${target_noncanonical} in
k8-*)
with_cpu=k8
;;
......
......@@ -5,8 +5,8 @@ RANLIB_FOR_TARGET = ` \
if [ "$(host)" = "$(target)" ] ; then \
echo ranlib; \
else \
if [ -f $(bindir)/$(target_alias)-ranlib ] ; then \
echo $(bindir)/$(target_alias)-ranlib ; \
if [ -f $(bindir)/$(target_noncanonical)-ranlib ] ; then \
echo $(bindir)/$(target_noncanonical)-ranlib ; \
else \
t='$(program_transform_cross_name)'; echo ranlib | sed -e $$t ; \
fi; \
......
2003-10-14 Nathanael Nerode <neroden@gcc.gnu.org>
* Make-lang.in: Replace uses of $(target_alias) with
$(target_noncanonical).
2003-10-13 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
* ChangeLog: Add PR number to patch for PR c++/12370.
......
......@@ -39,8 +39,8 @@
# Actual names to use when installing a native compiler.
CXX_INSTALL_NAME = `echo c++|sed '$(program_transform_name)'`
GXX_INSTALL_NAME = `echo g++|sed '$(program_transform_name)'`
CXX_TARGET_INSTALL_NAME = $(target_alias)-`echo c++|sed '$(program_transform_name)'`
GXX_TARGET_INSTALL_NAME = $(target_alias)-`echo g++|sed '$(program_transform_name)'`
CXX_TARGET_INSTALL_NAME = $(target_noncanonical)-`echo c++|sed '$(program_transform_name)'`
GXX_TARGET_INSTALL_NAME = $(target_noncanonical)-`echo g++|sed '$(program_transform_name)'`
# Actual names to use when installing a cross-compiler.
CXX_CROSS_NAME = `echo c++|sed '$(program_transform_cross_name)'`
......
2003-10-14 Nathanael Nerode <neroden@gcc.gnu.org>
* Make-lang.in: Replace uses of $(target_alias) with
$(target_noncanonical).
2003-10-09 Tom Tromey <tromey@redhat.com>
* decl.c (java_init_decl_processing): Declare signers field.
......
......@@ -42,7 +42,7 @@
# Actual names to use when installing a native compiler.
JAVA_INSTALL_NAME = `echo gcj|sed '$(program_transform_name)'`
JAVA_TARGET_INSTALL_NAME = $(target_alias)-`echo gcj|sed '$(program_transform_name)'`
JAVA_TARGET_INSTALL_NAME = $(target_noncanonical)-`echo gcj|sed '$(program_transform_name)'`
# Actual names to use when installing a cross-compiler.
JAVA_CROSS_NAME = `echo gcj|sed '$(program_transform_cross_name)'`
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment