about summary refs log tree commit diff
path: root/sysdeps/sh
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2014-06-25 17:52:56 +0000
committerJoseph Myers <joseph@codesourcery.com>2014-06-25 17:52:56 +0000
commit3e239be647036760563e62639ea574a2c55b9191 (patch)
treeb7fb407a91afacdb0922dba986c98a6ef1b6c2b7 /sysdeps/sh
parent74836003ed4f2613f5c47a654bdd38a366076c15 (diff)
downloadglibc-3e239be647036760563e62639ea574a2c55b9191.tar.gz
glibc-3e239be647036760563e62639ea574a2c55b9191.tar.xz
glibc-3e239be647036760563e62639ea574a2c55b9191.zip
Move base_machine and machine settings from configure.ac to sysdeps preconfigure fragments.
This patch makes non-ex-ports architectures set base_machine and
machine based on the original configured machine value in preconfigure
fragments, like ex-ports architectures, rather than in the toplevel
configure.ac.

Tested x86 that the disassembly of installed shared libraries is
unchanged by the patch.

	* configure.ac (base_machine): Do not set specially for particular
	machines here.
	* configure: Regenerated.
	* sysdeps/powerpc/preconfigure: Move machine and base_machine
	settings from configure.ac.
	* sysdeps/i386/preconfigure: New file.
	* sysdeps/s390/preconfigure: Likewise.
	* sysdeps/sh/preconfigure: Likewise.
	* sysdeps/sparc/preconfigure: Likewise.
Diffstat (limited to 'sysdeps/sh')
-rw-r--r--sysdeps/sh/preconfigure6
1 files changed, 6 insertions, 0 deletions
diff --git a/sysdeps/sh/preconfigure b/sysdeps/sh/preconfigure
new file mode 100644
index 0000000000..c1f6537797
--- /dev/null
+++ b/sysdeps/sh/preconfigure
@@ -0,0 +1,6 @@
+# preconfigure fragment for sh.
+
+case "$machine" in
+sh3*)		base_machine=sh machine=sh/sh3 ;;
+sh4*)		base_machine=sh machine=sh/sh4 ;;
+esac