Commit 9db45a87 authored by geoffk's avatar geoffk
Browse files

2003-07-31 Geoffrey Keating <geoffk@apple.com>

	* Makefile.tpl (libsubdir): Use gcc instead of gcc-lib.
	* Makefine.in: Update.

Index: gcc/ChangeLog
2003-07-31  Geoffrey Keating  <geoffk@apple.com>

	* Makefile.in (libexecdir): New.
	(libsubdir): Use gcc instead of gcc-lib.
	(libexecsubdir): New.
	(ORDINARY_FLAGS_TO_PASS): Add libexecsubdir.
	(DRIVER_DEFINES): Add STANDARD_LIBEXEC_PREFIX, use gcc instead of
	gcc-lib.
	(installdirs): Make libexecsubdir.
	(install-common): Put executables in libexecsubdir.
	(itoolsdir): Use libexecsubdir.
	(itoolsdatadir): New.
	(install-mkheaders): Separate data files and executables.
	(install-collect2): Put executables in libexecsubdir.
	(uninstall): Remove libexecsubdir.
	* mkheaders.in: Update for new arrangement of files.
	(libexecdir): New.
	(libexecsubdir): New.
	(itoolsdir): Use libexecsubdir.
	(itoolsdatadir): New.
	* gcc.c (gcc_libexec_prefix): New.
	(STANDARD_LIBEXEC_PREFIX): Use gcc instead of gcc-lib.
	(standard_exec_prefix_1): Use libexec.
	(standard_exec_prefix_2): New.
	(standard_libexec_prefix): New.
	(process_command): Update for new arrangement of files.  Compute
	gcc_libexec_prefix.  Update for change from gcc-lib to gcc.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70024 138bc75d-0d04-0410-961f-82ee72b054a4
parent 3f2444de
2003-07-31 Geoffrey Keating <geoffk@apple.com>
* Makefile.tpl (libsubdir): Use gcc instead of gcc-lib.
* Makefine.in: Update.
2003-07-30 Andreas Tobler <a.tobler@schweiz.ch> 2003-07-30 Andreas Tobler <a.tobler@schweiz.ch>
* configure.in: Enable libgcj for darwin. * configure.in: Enable libgcj for darwin.
......
...@@ -85,7 +85,7 @@ tooldir = @tooldir@ ...@@ -85,7 +85,7 @@ tooldir = @tooldir@
build_tooldir = @build_tooldir@ build_tooldir = @build_tooldir@
   
# Directory in which the compiler finds executables, libraries, etc. # Directory in which the compiler finds executables, libraries, etc.
libsubdir = $(libdir)/gcc-lib/$(target_alias)/$(gcc_version) libsubdir = $(libdir)/gcc/$(target_alias)/$(gcc_version)
GDB_NLM_DEPS = GDB_NLM_DEPS =
   
# This is the name of the environment variable used for the path to # This is the name of the environment variable used for the path to
......
...@@ -88,7 +88,7 @@ tooldir = @tooldir@ ...@@ -88,7 +88,7 @@ tooldir = @tooldir@
build_tooldir = @build_tooldir@ build_tooldir = @build_tooldir@
# Directory in which the compiler finds executables, libraries, etc. # Directory in which the compiler finds executables, libraries, etc.
libsubdir = $(libdir)/gcc-lib/$(target_alias)/$(gcc_version) libsubdir = $(libdir)/gcc/$(target_alias)/$(gcc_version)
GDB_NLM_DEPS = GDB_NLM_DEPS =
# This is the name of the environment variable used for the path to # This is the name of the environment variable used for the path to
......
2003-07-31 Geoffrey Keating <geoffk@apple.com>
* Makefile.in (libexecdir): New.
(libsubdir): Use gcc instead of gcc-lib.
(libexecsubdir): New.
(ORDINARY_FLAGS_TO_PASS): Add libexecsubdir.
(DRIVER_DEFINES): Add STANDARD_LIBEXEC_PREFIX, use gcc instead of
gcc-lib.
(installdirs): Make libexecsubdir.
(install-common): Put executables in libexecsubdir.
(itoolsdir): Use libexecsubdir.
(itoolsdatadir): New.
(install-mkheaders): Separate data files and executables.
(install-collect2): Put executables in libexecsubdir.
(uninstall): Remove libexecsubdir.
* mkheaders.in: Update for new arrangement of files.
(libexecdir): New.
(libexecsubdir): New.
(itoolsdir): Use libexecsubdir.
(itoolsdatadir): New.
* gcc.c (gcc_libexec_prefix): New.
(STANDARD_LIBEXEC_PREFIX): Use gcc instead of gcc-lib.
(standard_exec_prefix_1): Use libexec.
(standard_exec_prefix_2): New.
(standard_libexec_prefix): New.
(process_command): Update for new arrangement of files. Compute
gcc_libexec_prefix. Update for change from gcc-lib to gcc.
2003-07-31 Nathanael Nerode <neroden@gcc.gnu.org> 2003-07-31 Nathanael Nerode <neroden@gcc.gnu.org>
* inclhack.def (stdio_va_list): Avoid bogus replacement which * inclhack.def (stdio_va_list): Avoid bogus replacement which
......
...@@ -386,13 +386,17 @@ exec_prefix = @exec_prefix@ ...@@ -386,13 +386,17 @@ exec_prefix = @exec_prefix@
bindir = @bindir@ bindir = @bindir@
# Directory in which to put the directories used by the compiler. # Directory in which to put the directories used by the compiler.
libdir = @libdir@ libdir = @libdir@
# Directory in which GCC puts its executables.
libexecdir = @libexecdir@
# -------- # --------
# UNSORTED # UNSORTED
# -------- # --------
# Directory in which the compiler finds executables, libraries, etc. # Directory in which the compiler finds libraries etc.
libsubdir = $(libdir)/gcc-lib/$(target_alias)/$(version) libsubdir = $(libdir)/gcc/$(target_alias)/$(version)
# Directory in which the compiler finds executables
libexecsubdir = $(libexecdir)/gcc/$(target_alias)/$(version)
# Used to produce a relative $(gcc_tooldir) in gcc.o # Used to produce a relative $(gcc_tooldir) in gcc.o
unlibsubdir = ../../.. unlibsubdir = ../../..
# Directory in which to find other cross-compilation tools and headers. # Directory in which to find other cross-compilation tools and headers.
...@@ -769,6 +773,7 @@ ORDINARY_FLAGS_TO_PASS = \ ...@@ -769,6 +773,7 @@ ORDINARY_FLAGS_TO_PASS = \
"gcc_tooldir=$(gcc_tooldir)" \ "gcc_tooldir=$(gcc_tooldir)" \
"bindir=$(bindir)" \ "bindir=$(bindir)" \
"libsubdir=$(libsubdir)" \ "libsubdir=$(libsubdir)" \
"libexecsubdir=$(libsubdir)" \
"datadir=$(datadir)" \ "datadir=$(datadir)" \
"localedir=$(localedir)" "localedir=$(localedir)"
FLAGS_TO_PASS = $(ORDINARY_FLAGS_TO_PASS) "CC=@cc_set_by_configure@" \ FLAGS_TO_PASS = $(ORDINARY_FLAGS_TO_PASS) "CC=@cc_set_by_configure@" \
...@@ -1358,7 +1363,8 @@ c-pch.o : c-pch.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(CPPLIB_H) $(TREE_H) \ ...@@ -1358,7 +1363,8 @@ c-pch.o : c-pch.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(CPPLIB_H) $(TREE_H) \
DRIVER_DEFINES = \ DRIVER_DEFINES = \
-DSTANDARD_STARTFILE_PREFIX=\"$(unlibsubdir)/\" \ -DSTANDARD_STARTFILE_PREFIX=\"$(unlibsubdir)/\" \
-DSTANDARD_EXEC_PREFIX=\"$(libdir)/gcc-lib/\" \ -DSTANDARD_EXEC_PREFIX=\"$(libdir)/gcc/\" \
-DSTANDARD_LIBEXEC_PREFIX=\"$(libexecdir)/gcc/\" \
-DDEFAULT_TARGET_VERSION=\"$(version)\" \ -DDEFAULT_TARGET_VERSION=\"$(version)\" \
-DDEFAULT_TARGET_MACHINE=\"$(target_alias)\" \ -DDEFAULT_TARGET_MACHINE=\"$(target_alias)\" \
-DSTANDARD_BINDIR_PREFIX=\"$(bindir)/\" \ -DSTANDARD_BINDIR_PREFIX=\"$(bindir)/\" \
...@@ -2936,9 +2942,10 @@ install-cpp: cpp$(exeext) ...@@ -2936,9 +2942,10 @@ install-cpp: cpp$(exeext)
fi fi
# Create the installation directories. # Create the installation directories.
# $(libdir)/gcc-lib/include isn't currently searched by cpp. # $(libdir)/gcc/include isn't currently searched by cpp.
installdirs: installdirs:
$(SHELL) ${srcdir}/mkinstalldirs $(DESTDIR)$(libsubdir) $(SHELL) ${srcdir}/mkinstalldirs $(DESTDIR)$(libsubdir)
$(SHELL) ${srcdir}/mkinstalldirs $(DESTDIR)$(libexecsubdir)
$(SHELL) ${srcdir}/mkinstalldirs $(DESTDIR)$(bindir) $(SHELL) ${srcdir}/mkinstalldirs $(DESTDIR)$(bindir)
$(SHELL) ${srcdir}/mkinstalldirs $(DESTDIR)$(includedir) $(SHELL) ${srcdir}/mkinstalldirs $(DESTDIR)$(includedir)
$(SHELL) ${srcdir}/mkinstalldirs $(DESTDIR)$(infodir) $(SHELL) ${srcdir}/mkinstalldirs $(DESTDIR)$(infodir)
...@@ -2950,15 +2957,15 @@ installdirs: ...@@ -2950,15 +2957,15 @@ installdirs:
install-common: native $(EXTRA_PARTS) lang.install-common installdirs install-common: native $(EXTRA_PARTS) lang.install-common installdirs
for file in $(COMPILERS); do \ for file in $(COMPILERS); do \
if [ -f $$file ] ; then \ if [ -f $$file ] ; then \
rm -f $(DESTDIR)$(libsubdir)/$$file; \ rm -f $(DESTDIR)$(libexecsubdir)/$$file; \
$(INSTALL_PROGRAM) $$file $(DESTDIR)$(libsubdir)/$$file; \ $(INSTALL_PROGRAM) $$file $(DESTDIR)$(libexecsubdir)/$$file; \
else true; \ else true; \
fi; \ fi; \
done done
for file in $(EXTRA_PASSES) $(EXTRA_PROGRAMS) $(USE_COLLECT2) ..; do \ for file in $(EXTRA_PASSES) $(EXTRA_PROGRAMS) $(USE_COLLECT2) ..; do \
if [ x"$$file" != x.. ]; then \ if [ x"$$file" != x.. ]; then \
rm -f $(DESTDIR)$(libsubdir)/$$file; \ rm -f $(DESTDIR)$(libexecsubdir)/$$file; \
$(INSTALL_PROGRAM) $$file $(DESTDIR)$(libsubdir)/$$file; \ $(INSTALL_PROGRAM) $$file $(DESTDIR)$(libexecsubdir)/$$file; \
else true; fi; \ else true; fi; \
done done
for file in $(EXTRA_PARTS) ..; do \ for file in $(EXTRA_PARTS) ..; do \
...@@ -3165,25 +3172,28 @@ install-headers-cpio: stmp-int-hdrs $(STMP_FIXPROTO) install-include-dir ...@@ -3165,25 +3172,28 @@ install-headers-cpio: stmp-int-hdrs $(STMP_FIXPROTO) install-include-dir
install-headers-cp: stmp-int-hdrs $(STMP_FIXPROTO) install-include-dir install-headers-cp: stmp-int-hdrs $(STMP_FIXPROTO) install-include-dir
cp -p -r include $(DESTDIR)$(libsubdir) cp -p -r include $(DESTDIR)$(libsubdir)
itoolsdir = $(libsubdir)/install-tools itoolsdir = $(libexecsubdir)/install-tools
itoolsdatadir = $(libsubdir)/install-tools
# Don't install the headers. Instead, install appropriate scripts # Don't install the headers. Instead, install appropriate scripts
# and supporting files for fixincludes to be run later. # and supporting files for fixincludes to be run later.
install-mkheaders: stmp-int-hdrs $(STMP_FIXPROTO) install-include-dir \ install-mkheaders: stmp-int-hdrs $(STMP_FIXPROTO) install-include-dir \
mkheaders xlimits.h mkheaders xlimits.h
-rm -rf $(DESTDIR)$(itoolsdir) -rm -rf $(DESTDIR)$(itoolsdir) $(DESTDIR)$(itoolsdatadir)
$(SHELL) $(srcdir)/mkinstalldirs $(DESTDIR)$(itoolsdir)/include $(SHELL) $(srcdir)/mkinstalldirs $(DESTDIR)$(itoolsdatadir)/include
$(SHELL) $(srcdir)/mkinstalldirs $(DESTDIR)$(itoolsdir)
for file in $(USER_H); do \ for file in $(USER_H); do \
realfile=`echo $$file | sed -e 's|.*/\([^/]*\)$$|\1|'`; \ realfile=`echo $$file | sed -e 's|.*/\([^/]*\)$$|\1|'`; \
$(INSTALL_DATA) $$file \ $(INSTALL_DATA) $$file \
$(DESTDIR)$(itoolsdir)/include/$$realfile ; \ $(DESTDIR)$(itoolsdatadir)/include/$$realfile ; \
done done
$(INSTALL_DATA) xlimits.h $(DESTDIR)$(itoolsdir)/include/limits.h $(INSTALL_DATA) xlimits.h $(DESTDIR)$(itoolsdatadir)/include/limits.h
if [ x$(STMP_FIXINC) != x ] ; then \ if [ x$(STMP_FIXINC) != x ] ; then \
$(INSTALL_DATA) $(srcdir)/README-fixinc \ $(INSTALL_DATA) $(srcdir)/README-fixinc \
$(DESTDIR)$(itoolsdir)/include/README ; \ $(DESTDIR)$(itoolsdatadir)/include/README ; \
$(INSTALL_SCRIPT) fixinc.sh $(DESTDIR)$(itoolsdir)/fixinc.sh ; \ $(INSTALL_SCRIPT) fixinc.sh $(DESTDIR)$(itoolsdir)/fixinc.sh ; \
$(INSTALL_PROGRAM) fixinc/fixincl $(DESTDIR)$(itoolsdir)/fixincl ; \ $(INSTALL_PROGRAM) fixinc/fixincl $(DESTDIR)$(itoolsdir)/fixincl ; \
$(INSTALL_DATA) $(srcdir)/gsyslimits.h $(DESTDIR)$(itoolsdir)/gsyslimits.h ; \ $(INSTALL_DATA) $(srcdir)/gsyslimits.h \
$(DESTDIR)$(itoolsdatadir)/gsyslimits.h ; \
else :; fi else :; fi
if [ x$(STMP_FIXPROTO) != x ] ; then \ if [ x$(STMP_FIXPROTO) != x ] ; then \
$(INSTALL_SCRIPT) $(srcdir)/mkinstalldirs \ $(INSTALL_SCRIPT) $(srcdir)/mkinstalldirs \
...@@ -3194,23 +3204,26 @@ install-mkheaders: stmp-int-hdrs $(STMP_FIXPROTO) install-include-dir \ ...@@ -3194,23 +3204,26 @@ install-mkheaders: stmp-int-hdrs $(STMP_FIXPROTO) install-include-dir \
else :; fi else :; fi
$(INSTALL_SCRIPT) mkheaders $(DESTDIR)$(itoolsdir)/mkheaders $(INSTALL_SCRIPT) mkheaders $(DESTDIR)$(itoolsdir)/mkheaders
echo 'SYSTEM_HEADER_DIR="'"$(SYSTEM_HEADER_DIR)"'"' \ echo 'SYSTEM_HEADER_DIR="'"$(SYSTEM_HEADER_DIR)"'"' \
> $(DESTDIR)$(itoolsdir)/mkheaders.conf > $(DESTDIR)$(itoolsdatadir)/mkheaders.conf
echo 'OTHER_FIXINCLUDES_DIRS="$(OTHER_FIXINCLUDES_DIRS)"' \ echo 'OTHER_FIXINCLUDES_DIRS="$(OTHER_FIXINCLUDES_DIRS)"' \
>> $(DESTDIR)$(itoolsdir)/mkheaders.conf >> $(DESTDIR)$(itoolsdatadir)/mkheaders.conf
echo 'FIXPROTO_DEFINES="$(FIXPROTO_DEFINES)"' \ echo 'FIXPROTO_DEFINES="$(FIXPROTO_DEFINES)"' \
>> $(DESTDIR)$(itoolsdir)/mkheaders.conf >> $(DESTDIR)$(itoolsdatadir)/mkheaders.conf
echo 'STMP_FIXPROTO="$(STMP_FIXPROTO)"' >> $(DESTDIR)$(itoolsdir)/mkheaders.conf echo 'STMP_FIXPROTO="$(STMP_FIXPROTO)"' \
echo 'STMP_FIXINC="$(STMP_FIXINC)"' >> $(DESTDIR)$(itoolsdir)/mkheaders.conf >> $(DESTDIR)$(itoolsdatadir)/mkheaders.conf
echo 'STMP_FIXINC="$(STMP_FIXINC)"' \
>> $(DESTDIR)$(itoolsdatadir)/mkheaders.conf
# Use this target to install the program `collect2' under the name `collect2'. # Use this target to install the program `collect2' under the name `collect2'.
install-collect2: collect2 installdirs install-collect2: collect2 installdirs
$(INSTALL_PROGRAM) collect2$(exeext) $(DESTDIR)$(libsubdir)/collect2$(exeext) $(INSTALL_PROGRAM) collect2$(exeext) $(DESTDIR)$(libexecsubdir)/collect2$(exeext)
# Install the driver program as $(libsubdir)/gcc for collect2. # Install the driver program as $(libsubdir)/gcc for collect2.
$(INSTALL_PROGRAM) xgcc$(exeext) $(DESTDIR)$(libsubdir)/gcc$(exeext) $(INSTALL_PROGRAM) xgcc$(exeext) $(DESTDIR)$(libexecsubdir)/gcc$(exeext)
# Cancel installation by deleting the installed files. # Cancel installation by deleting the installed files.
uninstall: lang.uninstall uninstall: lang.uninstall
-rm -rf $(DESTDIR)$(libsubdir) -rm -rf $(DESTDIR)$(libsubdir)
-rm -rf $(DESTDIR)$(libexecsubdir)
-rm -rf $(DESTDIR)$(bindir)/$(GCC_INSTALL_NAME)$(exeext) -rm -rf $(DESTDIR)$(bindir)/$(GCC_INSTALL_NAME)$(exeext)
-rm -rf $(DESTDIR)$(bindir)/$(GCC_CROSS_NAME)$(exeext) -rm -rf $(DESTDIR)$(bindir)/$(GCC_CROSS_NAME)$(exeext)
-rm -f $(DESTDIR)$(bindir)/$(CPP_INSTALL_NAME)$(exeext) -rm -f $(DESTDIR)$(bindir)/$(CPP_INSTALL_NAME)$(exeext)
......
...@@ -1379,6 +1379,10 @@ static const char *just_machine_suffix = 0; ...@@ -1379,6 +1379,10 @@ static const char *just_machine_suffix = 0;
static const char *gcc_exec_prefix; static const char *gcc_exec_prefix;
/* Adjusted value of standard_libexec_prefix. */
static const char *gcc_libexec_prefix;
/* Default prefixes to attach to command names. */ /* Default prefixes to attach to command names. */
#ifdef CROSS_COMPILE /* Don't use these prefixes for a cross compiler. */ #ifdef CROSS_COMPILE /* Don't use these prefixes for a cross compiler. */
...@@ -1401,7 +1405,7 @@ static const char *gcc_exec_prefix; ...@@ -1401,7 +1405,7 @@ static const char *gcc_exec_prefix;
/* Supply defaults for the standard prefixes. */ /* Supply defaults for the standard prefixes. */
#ifndef STANDARD_EXEC_PREFIX #ifndef STANDARD_EXEC_PREFIX
#define STANDARD_EXEC_PREFIX "/usr/local/lib/gcc-lib/" #define STANDARD_EXEC_PREFIX "/usr/local/lib/gcc/"
#endif #endif
#ifndef STANDARD_STARTFILE_PREFIX #ifndef STANDARD_STARTFILE_PREFIX
#define STANDARD_STARTFILE_PREFIX "/usr/local/lib/" #define STANDARD_STARTFILE_PREFIX "/usr/local/lib/"
...@@ -1414,7 +1418,8 @@ static const char *gcc_exec_prefix; ...@@ -1414,7 +1418,8 @@ static const char *gcc_exec_prefix;
#endif #endif
static const char *const standard_exec_prefix = STANDARD_EXEC_PREFIX; static const char *const standard_exec_prefix = STANDARD_EXEC_PREFIX;
static const char *const standard_exec_prefix_1 = "/usr/lib/gcc/"; static const char *const standard_exec_prefix_1 = "/usr/libexec/gcc/";
static const char *const standard_exec_prefix_2 = "/usr/lib/gcc/";
static const char *md_exec_prefix = MD_EXEC_PREFIX; static const char *md_exec_prefix = MD_EXEC_PREFIX;
static const char *md_startfile_prefix = MD_STARTFILE_PREFIX; static const char *md_startfile_prefix = MD_STARTFILE_PREFIX;
...@@ -1428,6 +1433,8 @@ static const char *tooldir_prefix; ...@@ -1428,6 +1433,8 @@ static const char *tooldir_prefix;
static const char *const standard_bindir_prefix = STANDARD_BINDIR_PREFIX; static const char *const standard_bindir_prefix = STANDARD_BINDIR_PREFIX;
static const char *standard_libexec_prefix = STANDARD_LIBEXEC_PREFIX;
/* Subdirectory to use for locating libraries. Set by /* Subdirectory to use for locating libraries. Set by
set_multilib_dir based on the compilation options. */ set_multilib_dir based on the compilation options. */
...@@ -3163,34 +3170,43 @@ process_command (int argc, const char *const *argv) ...@@ -3163,34 +3170,43 @@ process_command (int argc, const char *const *argv)
/* Set up the default search paths. If there is no GCC_EXEC_PREFIX, /* Set up the default search paths. If there is no GCC_EXEC_PREFIX,
see if we can create it from the pathname specified in argv[0]. */ see if we can create it from the pathname specified in argv[0]. */
gcc_libexec_prefix = standard_libexec_prefix;
#ifndef VMS #ifndef VMS
/* FIXME: make_relative_prefix doesn't yet work for VMS. */ /* FIXME: make_relative_prefix doesn't yet work for VMS. */
if (!gcc_exec_prefix) if (!gcc_exec_prefix)
{ {
gcc_exec_prefix = make_relative_prefix (argv[0], standard_bindir_prefix, gcc_exec_prefix = make_relative_prefix (argv[0], standard_bindir_prefix,
standard_exec_prefix); standard_exec_prefix);
gcc_libexec_prefix = make_relative_prefix (argv[0],
standard_bindir_prefix,
standard_libexec_prefix);
if (gcc_exec_prefix) if (gcc_exec_prefix)
putenv (concat ("GCC_EXEC_PREFIX=", gcc_exec_prefix, NULL)); putenv (concat ("GCC_EXEC_PREFIX=", gcc_exec_prefix, NULL));
} }
else
gcc_libexec_prefix = make_relative_prefix (gcc_exec_prefix,
standard_exec_prefix,
standard_libexec_prefix);
#else
#endif #endif
if (gcc_exec_prefix) if (gcc_exec_prefix)
{ {
int len = strlen (gcc_exec_prefix); int len = strlen (gcc_exec_prefix);
if (len > (int) sizeof ("/lib/gcc-lib/") - 1 if (len > (int) sizeof ("/lib/gcc/") - 1
&& (IS_DIR_SEPARATOR (gcc_exec_prefix[len-1]))) && (IS_DIR_SEPARATOR (gcc_exec_prefix[len-1])))
{ {
temp = gcc_exec_prefix + len - sizeof ("/lib/gcc-lib/") + 1; temp = gcc_exec_prefix + len - sizeof ("/lib/gcc/") + 1;
if (IS_DIR_SEPARATOR (*temp) if (IS_DIR_SEPARATOR (*temp)
&& strncmp (temp + 1, "lib", 3) == 0 && strncmp (temp + 1, "lib", 3) == 0
&& IS_DIR_SEPARATOR (temp[4]) && IS_DIR_SEPARATOR (temp[4])
&& strncmp (temp + 5, "gcc-lib", 7) == 0) && strncmp (temp + 5, "gcc", 7) == 0)
len -= sizeof ("/lib/gcc-lib/") - 1; len -= sizeof ("/lib/gcc/") - 1;
} }
set_std_prefix (gcc_exec_prefix, len); set_std_prefix (gcc_exec_prefix, len);
add_prefix (&exec_prefixes, gcc_exec_prefix, "GCC", add_prefix (&exec_prefixes, gcc_libexec_prefix, "GCC",
PREFIX_PRIORITY_LAST, 0, NULL, 0); PREFIX_PRIORITY_LAST, 0, NULL, 0);
add_prefix (&startfile_prefixes, gcc_exec_prefix, "GCC", add_prefix (&startfile_prefixes, gcc_exec_prefix, "GCC",
PREFIX_PRIORITY_LAST, 0, NULL, 0); PREFIX_PRIORITY_LAST, 0, NULL, 0);
...@@ -3729,17 +3745,21 @@ warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n" ...@@ -3729,17 +3745,21 @@ warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n"
/* Use 2 as fourth arg meaning try just the machine as a suffix, /* Use 2 as fourth arg meaning try just the machine as a suffix,
as well as trying the machine and the version. */ as well as trying the machine and the version. */
#ifndef OS2 #ifndef OS2
add_prefix (&exec_prefixes, standard_exec_prefix, "GCC", add_prefix (&exec_prefixes, standard_libexec_prefix, "GCC",
PREFIX_PRIORITY_LAST, 1, warn_std_ptr, 0); PREFIX_PRIORITY_LAST, 1, warn_std_ptr, 0);
add_prefix (&exec_prefixes, standard_libexec_prefix, "BINUTILS",
PREFIX_PRIORITY_LAST, 2, warn_std_ptr, 0);
add_prefix (&exec_prefixes, standard_exec_prefix, "BINUTILS", add_prefix (&exec_prefixes, standard_exec_prefix, "BINUTILS",
PREFIX_PRIORITY_LAST, 2, warn_std_ptr, 0); PREFIX_PRIORITY_LAST, 2, warn_std_ptr, 0);
add_prefix (&exec_prefixes, standard_exec_prefix_1, "BINUTILS", add_prefix (&exec_prefixes, standard_exec_prefix_1, "BINUTILS",
PREFIX_PRIORITY_LAST, 2, warn_std_ptr, 0); PREFIX_PRIORITY_LAST, 2, warn_std_ptr, 0);
add_prefix (&exec_prefixes, standard_exec_prefix_2, "BINUTILS",
PREFIX_PRIORITY_LAST, 2, warn_std_ptr, 0);
#endif #endif
add_prefix (&startfile_prefixes, standard_exec_prefix, "BINUTILS", add_prefix (&startfile_prefixes, standard_exec_prefix, "BINUTILS",
PREFIX_PRIORITY_LAST, 1, warn_std_ptr, 0); PREFIX_PRIORITY_LAST, 1, warn_std_ptr, 0);
add_prefix (&startfile_prefixes, standard_exec_prefix_1, "BINUTILS", add_prefix (&startfile_prefixes, standard_exec_prefix_2, "BINUTILS",
PREFIX_PRIORITY_LAST, 1, warn_std_ptr, 0); PREFIX_PRIORITY_LAST, 1, warn_std_ptr, 0);
tooldir_prefix = concat (tooldir_base_prefix, spec_machine, tooldir_prefix = concat (tooldir_base_prefix, spec_machine,
......
...@@ -64,18 +64,22 @@ local_prefix=@local_prefix@ ...@@ -64,18 +64,22 @@ local_prefix=@local_prefix@
exec_prefix=@exec_prefix@ exec_prefix=@exec_prefix@
# Directory in which to put the directories used by the compiler. # Directory in which to put the directories used by the compiler.
libdir=@libdir@ libdir=@libdir@
# Directory in which the compiler finds executables, libraries, etc. libexecdir=@libexecdir@
# Directory in which the compiler finds libraries, etc.
libsubdir=${libdir}/gcc-lib/${target_alias}/${version} libsubdir=${libdir}/gcc-lib/${target_alias}/${version}
# Directory in which the compiler finds executables
libexecsubdir=${libexecdir}/gcc/${target_alias}/${version}
# Since gcc_tooldir does not exist at build-time, use -B${build_tooldir}/bin/ # Since gcc_tooldir does not exist at build-time, use -B${build_tooldir}/bin/
build_tooldir=${exec_prefix}/${target_alias} build_tooldir=${exec_prefix}/${target_alias}
# Directory to search for site-specific includes. # Directory to search for site-specific includes.
local_includedir=${local_prefix}/include local_includedir=${local_prefix}/include
includedir=${prefix}/include includedir=${prefix}/include
itoolsdir=${libsubdir}/install-tools itoolsdir=${libexecsubdir}/install-tools
itoolsdatadir=${libsubdir}/install-tools
incdir=${libsubdir}/include incdir=${libsubdir}/include
. ${itoolsdir}/mkheaders.conf . ${itoolsdatadir}/mkheaders.conf
cd ${itoolsdir} cd ${itoolsdir}
rm -rf ${incdir}/* rm -rf ${incdir}/*
...@@ -88,11 +92,11 @@ if [ x${STMP_FIXINC} != x ] ; then ...@@ -88,11 +92,11 @@ if [ x${STMP_FIXINC} != x ] ; then
if [ -f ${incdir}/limits.h ]; then if [ -f ${incdir}/limits.h ]; then
mv ${incdir}/limits.h ${incdir}/syslimits.h mv ${incdir}/limits.h ${incdir}/syslimits.h
else else
cp gsyslimits.h ${incdir}/syslimits.h cp ${itoolsdatadir}/gsyslimits.h ${incdir}/syslimits.h
fi fi
fi fi
cp include/* ${incdir} cp ${itoolsdatadir}/include/* ${incdir}
if [ x${STMP_FIXPROTO} != x ] ; then if [ x${STMP_FIXPROTO} != x ] ; then
mkinstalldirs="${SHELL} ${itoolsdir}/mkinstalldirs" mkinstalldirs="${SHELL} ${itoolsdir}/mkinstalldirs"
......
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