diff options
author | Yao Qi <yao@codesourcery.com> | 2013-07-04 01:22:38 +0000 |
---|---|---|
committer | Yao Qi <yao@codesourcery.com> | 2013-07-04 01:22:38 +0000 |
commit | bd88542004361085d0345b795e112dc9022cce24 (patch) | |
tree | 3939056794c5455ced466b3843c509e40b8ec770 /gdb/gdbserver | |
parent | 0220e44b4ce2c602670ea0acdfca7dbbb9b597f5 (diff) | |
download | gdb-bd88542004361085d0345b795e112dc9022cce24.zip gdb-bd88542004361085d0345b795e112dc9022cce24.tar.gz gdb-bd88542004361085d0345b795e112dc9022cce24.tar.bz2 |
gdb/
2013-07-04 Yao Qi <yao@codesourcery.com>
Revert:
2013-06-27 Yao Qi <yao@codesourcery.com>
* common/create-version.sh: Update comments. Handle the case
that TARGET_ALIAS is empty.
gdb/gdbserver/
2013-07-04 Yao Qi <yao@codesourcery.com>
* Makefile.in (host_alias): Use @host_noncanonical@.
(target_alias): Use @target_noncanonical@.
* configure.ac: Use ACX_NONCANONICAL_TARGET and
ACX_NONCANONICAL_HOST.
* configure: Regenerated.
Revert:
2013-06-28 Mircea Gherzan <mircea.gherzan@intel.com>
* configure.ac (version_host, version_target): Set and AC_SUBST them.
* configure: Rebuild.
* Makefile.in (version_host, version_target): Get from configure.
(version.c): Use $(version_host) and $(version_target).
Diffstat (limited to 'gdb/gdbserver')
-rw-r--r-- | gdb/gdbserver/ChangeLog | 16 | ||||
-rw-r--r-- | gdb/gdbserver/Makefile.in | 8 | ||||
-rwxr-xr-x | gdb/gdbserver/configure | 32 | ||||
-rw-r--r-- | gdb/gdbserver/configure.ac | 11 |
4 files changed, 44 insertions, 23 deletions
diff --git a/gdb/gdbserver/ChangeLog b/gdb/gdbserver/ChangeLog index 39fa741..3d963ea 100644 --- a/gdb/gdbserver/ChangeLog +++ b/gdb/gdbserver/ChangeLog @@ -1,3 +1,19 @@ +2013-07-04 Yao Qi <yao@codesourcery.com> + + * Makefile.in (host_alias): Use @host_noncanonical@. + (target_alias): Use @target_noncanonical@. + * configure.ac: Use ACX_NONCANONICAL_TARGET and + ACX_NONCANONICAL_HOST. + * configure: Regenerated. + + Revert: + 2013-06-28 Mircea Gherzan <mircea.gherzan@intel.com> + + * configure.ac (version_host, version_target): Set and AC_SUBST them. + * configure: Rebuild. + * Makefile.in (version_host, version_target): Get from configure. + (version.c): Use $(version_host) and $(version_target). + 2013-07-03 Pedro Alves <palves@redhat.com> * Makefile.in (config.status): Depend on development.sh. diff --git a/gdb/gdbserver/Makefile.in b/gdb/gdbserver/Makefile.in index 3286fe1..2cbf208 100644 --- a/gdb/gdbserver/Makefile.in +++ b/gdb/gdbserver/Makefile.in @@ -18,10 +18,8 @@ prefix = @prefix@ exec_prefix = @exec_prefix@ -host_alias = @host_alias@ -target_alias = @target_alias@ -version_host = @version_host@ -version_target = @version_target@ +host_alias = @host_noncanonical@ +target_alias = @target_noncanonical@ program_transform_name = @program_transform_name@ bindir = @bindir@ libdir = @libdir@ @@ -393,7 +391,7 @@ force: version.c: Makefile $(srcdir)/../version.in $(srcdir)/../../bfd/version.h $(srcdir)/../common/create-version.sh $(SHELL) $(srcdir)/../common/create-version.sh $(srcdir)/.. \ - $(version_host) $(version_target) version.c + $(host_alias) $(target_alias) version.c xml-builtin.c: stamp-xml; @true stamp-xml: $(XML_DIR)/feature_to_c.sh Makefile $(XML_FILES) diff --git a/gdb/gdbserver/configure b/gdb/gdbserver/configure index 2ba961d..193aedc 100755 --- a/gdb/gdbserver/configure +++ b/gdb/gdbserver/configure @@ -589,8 +589,6 @@ ac_includes_default="\ #endif" ac_subst_vars='LTLIBOBJS -version_target -version_host GNULIB_STDINT_H extra_libraries IPA_DEPFILES @@ -614,6 +612,8 @@ MAKE CCDEPMODE DEPDIR am__leading_dot +host_noncanonical +target_noncanonical ALLOCA RANLIB INSTALL_DATA @@ -4550,6 +4550,26 @@ fi fi + case ${build_alias} in + "") build_noncanonical=${build} ;; + *) build_noncanonical=${build_alias} ;; +esac + + case ${host_alias} in + "") host_noncanonical=${build_noncanonical} ;; + *) host_noncanonical=${host_alias} ;; +esac + + case ${target_alias} in + "") target_noncanonical=${host_noncanonical} ;; + *) target_noncanonical=${target_alias} ;; +esac + + + + + + # Dependency checking. rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null @@ -5998,14 +6018,6 @@ if test x"$STDINT_H" != x; then fi -# For --version, we want to the print --host/--target exactly -# as passed to configure. But if those were not specified, then -# print the canonical host/target. -version_host=${host_alias:-$host} -version_target=${target_alias:-$target} - - - ac_config_files="$ac_config_files Makefile" ac_config_commands="$ac_config_commands default" diff --git a/gdb/gdbserver/configure.ac b/gdb/gdbserver/configure.ac index 4ce7918..456a1f7 100644 --- a/gdb/gdbserver/configure.ac +++ b/gdb/gdbserver/configure.ac @@ -53,6 +53,9 @@ else fi GDB_AC_LIBMCHECK(${libmcheck_default}) +ACX_NONCANONICAL_TARGET +ACX_NONCANONICAL_HOST + # Dependency checking. ZW_CREATE_DEPDIR ZW_PROG_COMPILER_DEPENDENCIES([CC]) @@ -483,14 +486,6 @@ if test x"$STDINT_H" != x; then fi AC_SUBST(GNULIB_STDINT_H) -# For --version, we want to the print --host/--target exactly -# as passed to configure. But if those were not specified, then -# print the canonical host/target. -version_host=${host_alias:-$host} -version_target=${target_alias:-$target} -AC_SUBST(version_host) -AC_SUBST(version_target) - AC_OUTPUT(Makefile, [case x$CONFIG_HEADERS in xconfig.h:config.in) |