1 2022-03-15 Jose E. Marchesi <jose.marchesi@oracle.com>
3 * gprofng/src/gp-collect-app.cc (collect::check_args): Use
4 fallthrough comment instead of attribute.
6 2022-03-11 Vladimir Mezentsev <vladimir.mezentsev@oracle.com>
8 * Makefile.def: Add gprofng module.
9 * configure.ac: Add --enable-gprofng option.
10 * src-release.sh: Add gprofng.
11 * Makefile.in: Regenerate.
12 * configure: Regenerate.
13 * gprofng: New directory.
15 2022-01-22 Nick Clifton <nickc@redhat.com>
17 * 2.38 release branch created.
19 2022-01-17 Nick Clifton <nickc@redhat.com>
21 Update config.[guess|sub] from upstream:
23 2022-01-09 Idan Horowitz <idan.horowitz@gmail.com>
25 config.guess: recognize SerenityOS
26 * config.guess (*:SerenityOS:*:*): Recognize.
29 2022-01-03 Bernhard Voelker <mail@bernhard-voelker.de>
31 Fix GPLv3 license headers to use a comma instead of semicolon
32 See: https://www.gnu.org/licenses/gpl-3.0.html#howto
34 Update license headers automatically using the following script:
36 $ git grep -l 'Foundation; either version 3' \
37 | xargs sed -i '/Foundation; either version 3/ s/n; e/n, e/'
39 * config.guess: Adjust via the above command.
41 * config.sub: Likewise.
42 * doc/config.guess.1: Regenerate.
43 * doc/config.sub.1: Likewise.
45 2022-01-01 Dmitry V. Levin <ldv@altlinux.org>
47 Update copyright years
48 * config.guess: Update copyright years.
49 * config.sub: Likewise.
51 2021-12-25 Dmitry V. Levin <ldv@altlinux.org>
53 config.sub: alias armh to armv7l
54 ALT uses armh as an alias for armv7l-alt-linux-gnueabihf since 2012.
56 * config.sub (armh-unknown|armh-alt): Set cpu, vendor, and basic_os.
59 2021-12-24 Dmitry V. Levin <ldv@altlinux.org>
61 config.sub: alias aarch64le to aarch64
62 Apparently, QNX reports aarch64 as aarch64le on little-endian machines.
64 * config.sub (aarch64le-*): Set cpu to aarch64.
67 2021-12-13 Dmitry V. Levin <ldv@altlinux.org>
69 config.sub: fix typo in timestamp
70 * config.sub: Fix timestamp.
72 2021-11-30 Andreas F. Borchert <github@andreas-borchert.de>
74 config.guess: x86_64-pc-solaris2.11 is not properly recognized
75 config.guess guesses Solaris 11 to run on a 32-bit platform
76 despite Solaris 11 no longer supporting any 32-bit platform.
78 See the following code at lines 434 to 445:
81 | # If there is a compiler, see if it is configured for 64-bit objects.
82 | # Note that the Sun cc does not turn __LP64__ into 1 like gcc does.
83 | # This test works for both compilers.
84 | if test "$CC_FOR_BUILD" != no_compiler_found; then
85 | if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \
86 | (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \
87 | grep IS_64BIT_ARCH >/dev/null
93 If "cc" is installed, i.e. the Oracle Studio compiler, this one is
94 chosen for $CC_FOR_BUILD. This compiler, the gcc provided by Oracle
95 and also gcc bootstrapped from sources on that platform with a default
96 configuration will by default generate 32-bit binaries -- even on
97 a 64-bit platform. And __amd64 will not be defined for compilations
98 targeting a 32-bit platform. This is different from the corresponding
99 behaviour on GNU/Linux systems where the local platform is targeted by
102 Thus, as long as you do not add "-m64" or if you have a custom-built
103 gcc which defaults to 64 bit, you will get 32-bit binaries on Solaris
104 despite living on a 64-bit platform.
106 * config.guess (i86pc:SunOS:5.*:* || i86xen:SunOS:5.*:*): Adapt the
107 test by adding the "-m64" flag. This will work properly for Solaris
108 10 as well (the last Solaris release that supported x86 32-bit
111 2021-10-27 Jordi Sanfeliu <jordi@fibranet.cat>
115 cd testsuite && bash config-guess.sh && rm uname
116 PASS: config.guess checks (137 tests)
117 cd testsuite && bash config-sub.sh
118 PASS: config.sub checks (882 tests)
119 PASS: config.sub idempotency checks (819 tests)
120 PASS: config.sub canonicalise each config.guess testcase (137 tests)
122 * config.guess (i*86:Fiwix:*:*): Recognize.
123 * config.sub (fiwix*): Likewise.
125 2021-10-18 Kinshuk Dua <kinshukdua@gmail.com>
127 config.sub: Fix typo in comment
128 Fixes: 5e531d391852a54e7fab2d8ff55625fca514b305
130 2021-08-14 Nick Bowler <nbowler@draconx.ca>
132 config.sub: work around command assignment bug in some shells
133 When combining variable assignments with a shell command, some older
134 shells (notably heirloom-sh and presumably also Solaris 10 /bin/sh)
135 have a bug which causes the assignment to alter the current execution
136 environment whenever the command is a shell built-in. For example:
138 % dash -c 'x=good; x=bad echo >/dev/null; echo $x'
141 % jsh -c 'x=good; x=bad echo >/dev/null; echo $x'
144 The config.sub script contains a few commands of the form:
148 which triggers this bug, causing the IFS assignment to persist for the
149 remainder of the script. This can cause misbehaviour in certain cases,
152 % jsh config.sub i386-linux-gnu
153 config.sub: test: unknown operator gnu
155 % jsh config.sub i386-gnu/linux
156 sed: can't read s|gnu/linux|gnu|: No such file or directory
157 Invalid configuration `i386-gnu/linux': OS `' not recognized
159 * config.sub: Save and restore IFS explicitly to avoid shell bugs.
160 * doc/config.sub.1: Regenerate.
162 2021-08-04 Jeremy Soller <jackpot51@gmail.com>
164 config.sub: add Linux Relibc Target
166 cd testsuite && bash config-guess.sh && rm uname
167 PASS: config.guess checks (136 tests)
168 cd testsuite && bash config-sub.sh
169 PASS: config.sub checks (881 tests)
170 PASS: config.sub idempotency checks (818 tests)
171 PASS: config.sub canonicalise each config.guess testcase (136 tests)
173 * config.sub (relibc*): Recognize.
174 * doc/config.sub.1: Regenerate.
175 * testsuite/config-sub.data (x86_64-linux-relibc): New test.
177 2021-07-06 Stephanos Ioannidis <root@stephanos.io>
179 config.sub: add Zephyr RTOS support
180 This adds the Zephyr RTOS targets in preparation for implementing the
181 Zephyr RTOS-specific toolchain support.
184 cd testsuite && bash config-guess.sh && rm uname
185 PASS: config.guess checks (136 tests)
186 cd testsuite && bash config-sub.sh
187 PASS: config.sub checks (880 tests)
188 PASS: config.sub idempotency checks (817 tests)
189 PASS: config.sub canonicalise each config.guess testcase (136 tests)
191 * config.sub (zephyr*): Recognize.
192 * doc/config.sub.1: Regenerate.
193 * testsuite/config-sub.data: Add testcases for *-zephyr.
195 2021-07-03 Ozkan Sezer <sezero@users.sourceforge.net>
197 config.sub: disable shellcheck SC2006 / SC2268 warnings
198 This is in line with the recent config.guess change in commit
199 12fcf67c9108f4c4b581eaa302088782f0ee40ea
201 * config.sub (shellcheck disable): Add SC2006,SC2268.
203 Suggested-by: Jacob Bachmeyer <jcb@gnu.org>
205 2021-07-03 Ozkan Sezer <sezero@users.sourceforge.net>
207 config.sub: normalize the quoting in the `echo FOO | sed ...`
208 Some cases quote the argument to echo and some do not. At runtime
209 it probably does not matter because the substituted values will never
210 contain whitespace, but quoting them all would make shellcheck more
213 * config.sub: Consistently quote the argument of echo.
214 * doc/config.sub.1: Regenerate.
216 Suggested-by: Jacob Bachmeyer <jcb@gnu.org>
218 2021-07-02 Ozkan Sezer <sezero@users.sourceforge.net>
220 config.sub: replace POSIX $( ) with classic ` ` throughout
221 This is in line with the recent config.guess change in commit
222 d70c4fa934de164178054c3a60aaa0024ed07c91.
224 The patch was generated using patch-6.gawk script introduced in that
227 * config.sub: Revert POSIX command substitutions to classic form.
229 2021-06-04 Vineet Gupta <Vineet.Gupta1@synopsys.com>
232 This is the 32-bit variant of ARCv3 ISA (which is not compatible with the
236 | cd testsuite && bash config-guess.sh && rm uname
237 | PASS: config.guess checks (136 tests)
238 | cd testsuite && bash config-sub.sh
239 | PASS: config.sub checks (864 tests)
240 | PASS: config.sub idempotency checks (801 tests)
241 | PASS: config.sub canonicalise each config.guess testcase (136 tests)
243 * config.guess (arc32:Linux:*:*): Recognize.
244 * config.sub (arc32): Likewise.
246 2021-05-27 Jacob Bachmeyer <jcb@gnu.org>
248 Remove automatic patch generators
249 These tools have served their purposes and need not be kept outside of
250 the repository history any longer. This patch as a diff also collects
251 the contents of the various tools in one convenient place.
253 * patch-1.gawk: Remove.
254 * patch-3.gawk: Likewise.
255 * patch-6.gawk: Likewise.
257 2021-05-26 Jacob Bachmeyer <jcb@gnu.org>
259 config.guess: manual fixups after previous automatic patch
260 The tool could not handle command substitutions that span lines, but
261 fortunately there were only two such substitutions in the script.
263 The test for which universe is active on Pyramid is rewritten into a
264 case block because it was the only use of a command substitution as an
265 argument to the test command, which would require quoting.
267 * config.guess: Rewrite "if" for Pyramid systems to "case".
269 2021-05-26 Jacob Bachmeyer <jcb@gnu.org>
271 config.guess: replace POSIX $( ) with classic ` ` throughout
272 The previous replacement of backticks with POSIX command substitutions
273 was ill-considered and illogical: this script recognizes many archaic
274 machine types that probably never had POSIX shells, therefore it needs
275 to be able to run successfully under pre-POSIX shells.
277 This patch was generated using the included GNU Awk program.
279 * config.guess: Revert POSIX command substitutions to classic form.
280 * patch-6.gawk: Store the tool that produced the automated patch.
282 2021-05-26 Jacob Bachmeyer <jcb@gnu.org>
284 config.guess: manual fixup after previous automated patches
285 This patch provides the special handling for the GNU system. As these
286 were two small and unique edits, they were not included in the scripts.
288 This patch also cleans up other minor issues that must be addressed
289 before reverting to classic command substitutions and updates
290 "shellcheck" directives to account for changes in this script and the
291 change in "shellcheck" towards reporting individual portability issues.
293 2021-05-26 Jacob Bachmeyer <jcb@gnu.org>
295 config.guess: automatic fixups after previous automated patch
296 This patch was generated using the following command:
298 sed -i config.guess \
299 -e '/="[^"]\+"\(-\|$\)/s/="\([^"([:space:])]\+\)"/=\1/' \
300 -e '/="[^"]\+"[[:alnum:]]/s/="\$\([^([:space:])]\+\)"/=${\1}/' \
302 '/\$(echo[^|]\+|/s/\([^[:space:]]\)[[:space:]]*|[[:space:]]*sed/\1 | sed/g'
304 * config.guess: Remove unneeded quotes in other variable assignments,
305 standardize spacing for "echo ... | sed" substitutions.
307 2021-05-26 Jacob Bachmeyer <jcb@gnu.org>
309 config.guess: remove unneeded quotes and factor command substitutions
310 This is further cleanup and simplifies some constructs that can confuse
311 Emacs' syntax highlighting while generally reducing required quoting.
313 This patch was generated using the included GNU Awk program.
315 * config.guess: Remove unneeded variable quotes and factor out command
316 substitutions when setting GUESS.
317 * patch-3.gawk: Store the tool that produced the automated patch.
319 2021-05-25 Jacob Bachmeyer <jcb@gnu.org>
321 config.guess: manual fixups after previous automatic patch
322 * config.guess: Adjust a few "leftover" cases that the tool could not
323 easily recognize and fixes comment indentation in a few other special
326 2021-05-25 Jacob Bachmeyer <jcb@gnu.org>
328 config.guess: use intermediate variable with uname results
329 This will allow quoting to be significantly simplified in another
330 pass through the file.
332 This patch was generated using the included GNU Awk program.
334 * config.guess: Use GUESS variable to hold results of uname analysis.
335 * patch-1.gawk: Store the tool that produced the automated patch.
337 2021-05-25 Jacob Bachmeyer <jcb@gnu.org>
339 config.guess: introduce intermediate variable with uname results
340 This will allow quoting to be significantly simplified in another
341 pass through the file.
343 * config.guess: Introduce GUESS variable to hold results of uname analysis.
345 2021-05-24 Dmitry V. Levin <ldv@altlinux.org>
347 config.guess: fix shellcheck warning SC2154
348 While, according to Plan 9 documentation, the environment variable
349 $cputype is set to the name of the kernel's CPU's architecture,
350 shellcheck warns that cputype is referenced but not assigned.
351 Be on the safe side and do not use cputype if it is not defined
354 * config.guess (*:Plan9:*:*): Fix shellcheck warning SC2154.
356 2021-05-24 Dmitry V. Levin <ldv@altlinux.org>
358 config.guess: remove redundant quotes in case commands
359 According to the GNU Autoconf Portable Shell Programming manual,
360 the Bourne shell does not systematically split variables and back-quoted
361 expressions, in particular on the right-hand side of assignments and in
362 the argument of 'case'.
364 The change is made automatically using the following command:
365 $ sed -E -i 's/(\<case )"(\$[^"]+)"( in\>)/\1\2\3/' config.guess
367 * config.guess: Simplify case commands by removing quotes around the
370 Suggested-by: Jacob Bachmeyer <jcb@gnu.org>
372 2021-05-24 Dmitry V. Levin <ldv@altlinux.org>
374 config.guess: simplify exit status workaround on alphaev67-dec-osf5.1
375 Commit 29865ea8a5622cdd80b7a69a0afa78004b4cd311 introduced an exit trap
376 reset before exiting to avoid a spurious non-zero exit status on
377 alphaev67-dec-osf5.1. Simplify that code a bit by moving the exit trap
380 * config.guess (alpha:OSF1:*:*): Reset exit trap earlier.
381 * doc/config.guess.1: Regenerate.
383 2021-10-29 Eli Zaretskii <eliz@gnu.org>
385 * gdb/doc/gdb.texinfo (Command Options): (Data): Document
386 '-memory-tag-violations'. Update the example.
388 2021-09-28 Andrew Burgess <andrew.burgess@embecosm.com>
390 * src-release.sh (GDB_SUPPPORT_DIRS): Add libbacktrace.
392 2021-09-27 Nick Alcock <nick.alcock@oracle.com>
395 * libtool.m4 (LT_PATH_NM): Try BSDization flags with a user-provided
396 NM, if there is one. Run nm on itself, not on /dev/null, to avoid
397 errors from nms that refuse to work on non-regular files. Remove
398 other workarounds for this problem. Strip out blank lines from the
401 2021-09-27 Nick Alcock <nick.alcock@oracle.com>
404 * libtool.m4 (lt_cv_sys_global_symbol_pipe): Augment symcode for
407 2021-07-03 Nick Clifton <nickc@redhat.com>
409 * 2.37 release branch created.
411 2021-07-03 Nick Clifton <nickc@redhat.com>
413 * libiberty: Sync with gcc. Bring in:
414 2021-06-30 Gerald Pfeifer <gerald@pfeifer.com>
416 * make-temp-file.c (usrtmp): Remove.
417 (choose_tmpdir): Remove use of usrtmp.
419 2021-06-28 Indu Bhagat <indu.bhagat@oracle.com>
421 * simple-object.c (handle_lto_debug_sections): Copy over .BTF section.
423 2021-06-28 Indu Bhagat <indu.bhagat@oracle.com>
424 David Faust <david.faust@oracle.com>
425 Jose E. Marchesi <jose.marchesi@oracle.com>
426 Weimin Pan <weimin.pan@oracle.com>
428 * simple-object.c (handle_lto_debug_sections): Copy over .ctf
431 2021-06-05 John David Anglin <danglin@gcc.gnu.org>
434 * configure.ac: Use libiberty snprintf and vsnprintf on
436 * configure: Regenerate.
438 2021-05-06 Tom Tromey <tom@tromey.com>
440 * hashtab.c (htab_eq_string): New function.
442 2021-05-04 Eric Botcazou <ebotcazou@adacore.com>
444 * configure.ac: Make test for variables more robust.
445 * configure: Regenerate.
447 2021-05-03 H.J. Lu <hjl.tools@gmail.com>
450 * configure: Regenerated.
452 2021-04-21 Andreas Schwab <schwab@linux-m68k.org>
455 * rust-demangle.c (demangle_const_char): Properly print the
458 2021-03-31 Patrick Palka <ppalka@redhat.com>
461 * cp-demangle.c (d_dump, d_make_comp, d_expression_1)
462 (d_count_templates_scopes): Handle DEMANGLE_COMPONENT_VENDOR_EXPR.
463 (d_print_comp_inner): Likewise.
464 <case DEMANGLE_COMPONENT_EXTENDED_OPERATOR>: Revert r11-4926
466 <case DEMANGLE_COMPONENT_UNARY>: Likewise.
467 * testsuite/demangle-expected: Adjust __alignof__ tests.
469 2021-03-16 Nick Clifton <nickc@redhat.com>
471 * sha1.c (sha1_process_bytes): Use memmove in place of memcpy.
473 2021-02-20 Mike Frysinger <vapier@gentoo.org>
475 * Makefile.in (ACLOCAL, ACLOCAL_AMFLAGS, $(srcdir)/aclocal.m4): Define.
476 (configure_deps): Rename to ...
477 (aclocal_deps): ... this. Replace aclocal.m4 with acinclude.m4.
478 ($(srcdir)/configure): Replace $(configure_deps) with
479 $(srcdir)/aclocal.m4.
480 * aclocal.m4: Move libiberty macros to acinclude.m4, then regenerate.
481 * acinclude.m4: New file.
482 * configure: Regenerate.
484 2021-02-19 Ayush Mittal <ayush.m@samsung.com>
486 * argv.c (expandargv): free allocated buffer if read fails.
488 2021-02-01 Martin Sebor <msebor@redhat.com>
490 * dyn-string.c (dyn_string_insert_cstr): Use memcpy instead of strncpy
491 to avoid -Wstringop-truncation.
493 2021-05-29 Mike Frysinger <vapier@gentoo.org>
495 * configure.ac: Add gnulib to configdirs for sim.
496 * configure: Regenerate.
498 2021-05-24 Maciej W. Rozycki <macro@orcam.me.uk>
500 * MAINTAINERS: Update path to readline config.{sub,guess} files.
502 2021-05-24 Maciej W. Rozycki <macro@orcam.me.uk>
504 * config.guess: Import from upstream.
505 * config.sub: Likewise.
507 2021-05-18 Mike Frysinger <vapier@gentoo.org>
509 * Makefile.def: Add configure-sim dependency on all-gnulib.
510 * Makefile.in: Regenerated.
512 2021-05-04 Nick Clifton <nickc@redhat.com>
514 * configure.ac (AC_PROG_CC): Replace with AC_PROG_CC_C99.
515 * configure: Regenerate.
517 2021-03-18 Nick Alcock <nick.alcock@oracle.com>
520 * Makefile.def: Add install-bfd dependencies for install-libctf and
521 install-ld, and install-strip-bfd dependencies for
522 install-strip-libctf and install-strip-ld; move the install-ld
523 dependency on install-libctf to join it.
524 * Makefile.in: Regenerated.
526 2021-03-12 Mike Frysinger <vapier@gentoo.org>
528 * Makefile.def: Remove all-sim dependency on configure-gdb.
529 * Makefile.in: Regenerated.
531 2021-02-28 H.J. Lu <hongjiu.lu@intel.com>
534 * Makefile.tpl (PGO_BUILD_TRAINING_FLAGS_TO_PASS): Add
535 PGO_BUILD_TRAINING=yes.
536 (PGO_BUILD_TRAINING_MFLAGS): New.
537 (all): Pass $(PGO_BUILD_TRAINING_MFLAGS) to the PGO build.
539 2021-02-09 Alan Modra <amodra@gmail.com>
541 * configure.ac: Delete arm*-*-symbianelf* entry.
542 * configure: Regenerate.
544 2021-01-26 Nick Alcock <nick.alcock@oracle.com>
546 * Makefile.def: Add install-libctf dependency to install-ld.
547 * Makefile.in: Regenerated.
549 2021-01-12 Mike Frysinger <vapier@gentoo.org>
551 * src-release.sh (do_proto_toplev): Rewrite indentation.
553 2021-01-11 H.J. Lu <hongjiu.lu@intel.com>
557 * configure: Regenerated.
559 2021-01-11 H.J. Lu <hongjiu.lu@intel.com>
562 * configure: Regenerated.
563 * libtool.m4 (_LT_CMD_OLD_ARCHIVE): Check if AR works with
564 --plugin and rc before enabling --plugin.
566 2021-01-09 H.J. Lu <hongjiu.lu@intel.com>
569 * Makefile.tpl (BUILD_CFLAGS): New.
570 (CFLAGS): Append $(BUILD_CFLAGS).
571 (CXXFLAGS): Likewise.
572 (PGO_BUILD_GEN_FLAGS_TO_PASS): New.
573 (PGO_BUILD_TRAINING_CFLAGS): Likewise.
574 (PGO_BUILD_TRAINING_CXXFLAGS): Likewise.
575 (PGO_BUILD_TRAINING_FLAGS_TO_PASS): Likewise.
576 (PGO_BUILD_TRAINING_MFLAGS): Likewise.
577 (PGO_BUILD_USE_FLAGS_TO_PASS): Likewise.
578 (PGO-TRAINING-TARGETS): Likewise.
579 (PGO_BUILD_TRAINING): Likewise.
580 (all): Add '+' to the command line for recursive make. Support
582 * configure.ac: Add --enable-pgo-build[=lto].
583 AC_SUBST PGO_BUILD_GEN_CFLAGS, PGO_BUILD_USE_CFLAGS and
584 PGO_BUILD_LTO_CFLAGS. Enable the PGO build in Makefile.
585 * Makefile.in: Regenerated.
586 * configure: Likewise.
588 2021-01-09 H.J. Lu <hongjiu.lu@intel.com>
590 * Makefile.tpl (AR): Add @AR_PLUGIN_OPTION@
591 (RANLIB): Add @RANLIB_PLUGIN_OPTION@.
592 * configure.ac: Include config/gcc-plugin.m4.
593 AC_SUBST AR_PLUGIN_OPTION and RANLIB_PLUGIN_OPTION.
594 * libtool.m4 (_LT_CMD_OLD_ARCHIVE): Pass --plugin to AR and
596 * Makefile.in: Regenerated.
597 * configure: Likewise.
599 2021-01-09 Nick Clifton <nickc@redhat.com>
601 * 2.36 release branch crated.
603 2021-01-07 Samuel Thibault <samuel.thibault@gnu.org>
605 * libtool.m4: Match gnu* along with other GNU systems.
607 2021-01-07 Alan Modra <amodra@gmail.com>
609 * config.sub: Accept OS of eabi* and gnueabi*.
611 2021-01-05 Nick Alcock <nick.alcock@oracle.com>
613 * Makefile.def (libctf): No longer no_check. Checking depends on
615 * Makefile.in: Regenerated.
617 2021-01-05 Nick Clifton <nickc@redhat.com>
619 * libiberty: Sync with gcc. Bring in:
620 2021-01-04 Martin Liska <mliska@suse.cz>
622 * strverscmp.c: Convert to utf8 from iso8859.
624 2020-12-22 Jason Merrill <jason@redhat.com>
627 * cp-demangle.h (struct d_info): Add unresolved_name_state.
628 * cp-demangle.c (d_prefix): Add subst parm.
629 (d_nested_name): Pass it.
630 (d_unresolved_name): Split out from...
631 (d_expression_1): ...here.
632 (d_demangle_callback): Maybe retry with old sr mangling.
633 * testsuite/demangle-expected: Add test.
635 2020-12-21 Jason Merrill <jason@redhat.com>
637 * cp-demangle.c (d_expression_1): Recognize qualified-id
639 * testsuite/demangle-expected: Add test.
641 2020-12-21 Jason Merrill <jason@redhat.com>
643 * cp-demangle.c (d_unqualified_name): Clear is_expression.
644 * testsuite/demangle-expected: Add tests.
646 2020-11-25 Matthew Malcomson <matthew.malcomson@arm.com>
648 * configure: Regenerate.
649 * configure.ac: Avoid using sanitizer.
651 2020-11-13 Eduard-Mihai Burtescu <eddyb@lyken.rs>
653 * rust-demangle.c (struct rust_demangler): Add
654 skipping_printing and bound_lifetime_depth fields.
655 (eat): Add (v0-only).
656 (parse_integer_62): Add (v0-only).
657 (parse_opt_integer_62): Add (v0-only).
658 (parse_disambiguator): Add (v0-only).
659 (struct rust_mangled_ident): Add punycode{,_len} fields.
660 (parse_ident): Support v0 identifiers.
661 (print_str): Respect skipping_printing.
662 (print_uint64): Add (v0-only).
663 (print_uint64_hex): Add (v0-only).
664 (print_ident): Respect skipping_printing,
665 Support v0 identifiers.
666 (print_lifetime_from_index): Add (v0-only).
667 (demangle_binder): Add (v0-only).
668 (demangle_path): Add (v0-only).
669 (demangle_generic_arg): Add (v0-only).
670 (demangle_type): Add (v0-only).
671 (demangle_path_maybe_open_generics): Add (v0-only).
672 (demangle_dyn_trait): Add (v0-only).
673 (demangle_const): Add (v0-only).
674 (demangle_const_uint): Add (v0-only).
675 (basic_type): Add (v0-only).
676 (rust_demangle_callback): Support v0 symbols.
677 * testsuite/rust-demangle-expected: Add v0 testcases.
679 2020-11-13 Seija Kijin <doremylover456@gmail.com>
681 * strstr.c (strstr): Make implementation ANSI/POSIX compliant.
683 2020-11-11 Patrick Palka <ppalka@redhat.com>
686 * cp-demangle.c (d_print_comp_inner)
687 <case DEMANGLE_COMPONENT_EXTENDED_OPERATOR>: Don't print the
688 "operator " prefix for __alignof__.
689 <case DEMANGLE_COMPONENT_UNARY>: Always print parens around the
690 operand of __alignof__.
691 * testsuite/demangle-expected: Test demangling for __alignof__.
693 2020-11-09 Christophe Lyon <christophe.lyon@linaro.org>
695 * pex-win32.c (pex_win32_exec_child): Initialize orig_err.
697 2020-10-06 Martin Liska <mliska@suse.cz>
700 * simple-object-elf.c (simple_object_elf_copy_lto_debug_sections):
701 Use sh_link of a .symtab_shndx section.
703 2021-01-05 Alan Modra <amodra@gmail.com>
705 * config.guess: Import from upstream.
706 * config.sub: Likewise.
708 2020-12-16 Martin Liska <mliska@suse.cz>
709 Tom de Vries <tdevries@suse.de>
711 * gdb/debuginfod-support.c (struct user_data): Remove has_printed
712 field. Add meter field.
713 (progressfn): Print progress using meter.
715 2020-12-02 Enze Li <lienze2010@hotmail.com>
717 * .gitignore: Add gnu global outputs.
719 2020-12-02 Simon Marchi <simon.marchi@polymtl.ca>
721 * .gitignore: Sync with gcc.
723 2020-10-26 Andreas Rammhold <andreas@rammhold.de>
725 * src-release.sh: Use sha256sum instead of md5sum.
727 2020-10-14 Andrew Burgess <andrew.burgess@embecosm.com>
729 * Makefile.in: Rebuild.
730 * Makefile.def: Make distclean-gnulib depend on distclean-gdb and
733 2020-07-24 Aaron Merey <amerey@redhat.com>
735 * configure: Rebuild.
736 * configure.ac: Remove AC_DEBUGINFOD.
738 2020-07-04 Nick Clifton <nickc@redhat.com>
740 Binutils 2.35 branch created.
742 2020-04-21 Stephen Casner <casner@acm.org>
745 * configure.ac (noconfigdirs): Exclude gdb & gprof for pdp11.
746 * configure: Rebuild.
748 2020-03-12 Tom Tromey <tom@tromey.com>
750 * Makefile.in: Rebuild.
751 * Makefile.def (gdbserver): Depend on gdbsupport.
753 2020-03-12 Tom Tromey <tom@tromey.com>
755 * Makefile.in: Rebuild.
756 * Makefile.def (gdbsupport): Don't depend on bfd.
758 2020-03-12 Tom Tromey <tom@tromey.com>
760 * Makefile.in: Rebuild.
761 * Makefile.def (gdbsupport): Depend on intl.
763 2020-02-17 Tom Tromey <tom@tromey.com>
765 * configure: Rebuild.
766 * configure.ac (configdirs): Add gnulib and gdbsupport when building
769 2020-02-14 Tom Tromey <tom@tromey.com>
771 * Makefile.in: Rebuild.
772 * Makefile.def: Make gdbserver require gnulib and libiberty.
774 2020-02-07 Tom Tromey <tom@tromey.com>
775 Pedro Alves <palves@redhat.com>
777 * src-release.sh (GDB_SUPPORT_DIRS): Add gdbserver.
778 * gdbserver: New directory, moved from gdb/gdbserver.
779 * configure.ac (host_tools): Add gdbserver.
780 Only build gdbserver on certain systems.
781 * Makefile.in, configure: Rebuild.
782 * Makefile.def (host_modules, dependencies): Add gdbserver.
783 * MAINTAINERS: Add gdbserver.
785 2020-01-28 Sergio Durigan Junior <sergiodj@redhat.com>
787 * src-release.sh (getver): Look for gdbsupport's
788 create-version.sh script at the current directory if tool is
791 2020-01-19 Simon Marchi <simon.marchi@polymtl.ca>
793 * remote-sim.c (gdbsim_target::wait): Return
794 sim_data->remote_sim_ptid instead of inferior_ptid.
796 2020-01-18 Nick Clifton <nickc@redhat.com>
798 Binutils 2.34 branch created.
800 2020-01-18 Nick Clifton <nickc@redhat.com>
802 Synchronize top level configure files with master version:
804 2020-01-01 Ben Elliston <bje@gnu.org>
806 * config.guess: Update copyright years.
807 * config.sub: Likewise.
809 2019-12-21 Ben Elliston <bje@gnu.org>
811 * config.guess (set_cc_for_build): Prevent multiple calls by
812 checking if $tmp is already set. We can't check CC_FOR_BUILD as
813 the user may set it externally. Thanks to Torbjörn Granlund for
816 2019-12-21 Torbjörn Granlund <tg@gmplib.org>
818 * config.guess (alpha:Linux:*:*): Guard against missing
819 /proc/cpuinfo by redirecting standard error to /dev/null.
821 2019-09-12 Daniel Bittman <danielbittman1@gmail.com>
823 * config.guess (*:Twizzler:*:*): New.
824 * config.sub (-twizzler*): New.
826 2019-07-24 Ben Elliston <bje@gnu.org>
828 * config.guess (mips:OSF1:*.*): Whitespace cleanup.
830 2019-06-30 Ben Elliston <bje@gnu.org>
832 * config.sub (case $os): Match nsk* and powerunix. Don't later
833 match nsk* and set os=nsk which removes the OS version number.
835 2019-06-30 Ben Elliston <bje@gnu.org>
837 * config.sub: Recognise os108*.
839 2019-06-26 Ben Elliston <bje@gnu.org>
841 * config.sub (hp300): Set $os to hpux.
843 2019-06-26 Ben Elliston <bje@gnu.org>
845 * config.sub (vsta): Move into alphabetical order.
847 2019-06-10 Ben Elliston <bje@gnu.org>
849 * config.guess (*:OS108:*:*): Recognise new OS.
851 2019-05-28 Ben Elliston <bje@gnu.org>
853 * config.guess (*:Darwin:*:*): Run xcode-select to determine if a
854 system compiler is installed. If not, do not run set_cc_for_build,
855 as the default cc will open a dialog box asking to install
856 Xcode. If no C compiler is available, guess based on uname -p and
859 2019-05-28 Ben Elliston <bje@gnu.org>
861 * config.guess (*:Darwin:*:*): Simplify UNAME_PROCESSOR.
863 2020-01-17 Simon Marchi <simon.marchi@efficios.com>
865 * Makefile.def: Add dependencies of all-gdbsupport on all-bfd.
866 * Makefile.in: Re-generate.
868 2020-01-14 Tom Tromey <tom@tromey.com>
870 * src-release.sh (GDB_SUPPORT_DIRS): Add gdbsupport.
871 * MAINTAINERS: Add gdbsupport.
872 * configure: Rebuild.
873 * configure.ac (configdirs): Add gdbsupport.
874 * gdbsupport: New directory, move from gdb/gdbsupport.
875 * Makefile.def (host_modules, dependencies): Add gnulib.
876 * Makefile.in: Rebuild.
878 2020-01-09 Aaron Merey <amerey@redhat.com>
880 * config/debuginfod.m4: New file. Add macro AC_DEBUGINFOD. Adds
881 new configure option --with-debuginfod.
882 * configure: Regenerate.
883 * configure.ac: Call AC_DEBUGINFOD.
885 2019-12-26 Christian Biesinger <cbiesinger@google.com>
887 * .gitignore: Add perf.data and perf.data.old.
889 2019-10-17 Sergio Durigan Junior <sergiodj@redhat.com>
891 * src-release.sh (GDB_SUPPORT_DIRS): Add libctf.
893 2019-10-17 Alan Modra <amodra@gmail.com>
896 * src-release.sh (getver): Replace "head -1" with "head -n 1".
898 2019-07-30 Nick Alcock <nick.alcock@oracle.com>
900 * Makefile.def (host_modules): libctf is no longer no_install.
901 * Makefile.in: Regenerated.
903 2019-07-13 Nick Alcock <nick.alcock@oracle.com>
905 * Makefile.def (dependencies): all-ld depends on all-libctf.
906 * Makefile.in: Regenerated.
908 2019-09-09 Phil Blundell <pb@pbcl.net>
910 binutils 2.33 branch created
912 2019-08-19 Tom Tromey <tom@tromey.com>
914 * configure: Rebuild.
915 * configure.ac: Add --with-static-standard-libraries.
917 2019-08-09 Nick Clifton <nickc@redhat.com>
919 * libiberty: Sync with gcc. Bring in:
920 2019-08-08 Martin Liska <mliska@suse.cz>
923 * lrealpath.c (is_valid_fd): New function.
925 2019-07-24 Martin Liska <mliska@suse.cz>
928 * simple-object-elf.c (simple_object_elf_copy_lto_debug_sections):
929 Find first '\0' starting from gnu_lto + 1.
931 2019-07-12 Ren Kimura <rkx1209dev@gmail.com>
933 * simple-object-elf.c (simple_object_elf_match): Check zero value shstrndx.
934 This fixes a Bug 90924.
936 2019-07-22 Martin Liska <mliska@suse.cz>
938 * simple-object-elf.c (simple_object_elf_copy_lto_debug_sections):
939 Do not search for gnu_lto_v1, but search for first '\0'.
941 2019-07-18 Eduard-Mihai Burtescu <eddyb@lyken.rs>
943 * cplus-dem.c: Include rust-demangle.h.
944 * rust-demangle.c: Include rust-demangle.h.
945 * rust-demangle.h: New file.
947 2019-05-31 Michael Forney <mforney@mforney.org>
949 * cp-demangle.c: Don't define CP_DYNAMIC_ARRAYS if __STDC_NO_VLA__
952 2019-04-30 Ben L <bobsayshilol@live.co.uk>
954 * d-demangle.c (dlang_parse_assocarray): Correctly handle error result.
955 * testsuite/d-demangle-expected: Add testcase.
957 * d-demangle.c (dlang_parse_tuple): Correctly handle error result.
958 * testsuite/d-demangle-expected: Add testcase.
960 * d-demangle.c (dlang_parse_structlit): Correctly handle error result.
961 * testsuite/d-demangle-expected: Add testcase.
963 * d-demangle.c (dlang_parse_arrayliteral): Correctly handle error result.
964 * testsuite/d-demangle-expected: Add testcase.
966 * d-demangle.c (dlang_parse_integer): Fix stack underflow.
967 * testsuite/d-demangle-expected: Add testcase.
969 * cp-demangle (d_print_comp_inner): Guard against a NULL 'typed_name'.
970 * testsuite/demangle-expected: Add testcase.
972 * cp-demangle.c (d_encoding): Guard against NULL return values from
974 * testsuite/demangle-expected: Add testcase.
976 2019-04-29 Ben L <bobsayshilol@live.co.uk>
978 * cp-demangle.c (d_expression_1): Don't peek ahead unless the current
980 * testsuite/demangle-expected: Add testcase.
982 2019-04-10 Nick Clifton <nickc@redhat.com>
985 * cp-demangle.c (cplus_demangle_fill_name): Reject negative
987 (d_count_templates_scopes): Replace num_templates and num_scopes
988 parameters with a struct d_print_info pointer parameter. Adjust
989 body of the function accordingly. Add recursion counter and check
990 that the recursion limit is not reached.
991 (d_print_init): Pass dpi parameter to d_count_templates_scopes.
992 Reset recursion counter afterwards, unless the recursion limit was
995 2019-07-13 Joel Brobecker <brobecker@adacore.com>
997 * src-release (getver): If $tool/gdbsupport/create-version.sh
998 exists, use that to determine the version number.
1000 2019-06-21 Andreas Schwab <schwab@linux-m68k.org>
1002 * src-release.sh (GDB_SUPPORT_DIRS): Add gnulib.
1004 2019-06-14 Tom Tromey <tom@tromey.com>
1006 * MAINTAINERS: Add gnulib.
1007 * gnulib: New directory, move from gdb/gnulib.
1008 * configure.ac (host_libs): Add gnulib.
1009 * configure: Rebuild.
1010 * Makefile.def (host_modules, dependencies): Add gnulib.
1011 * Makefile.in: Rebuild.
1013 2019-06-03 Nick Clifton <nickc@redhat.com>
1016 2019-05-29 Nick Clifton <nickc@redhat.com>
1018 * configure.ac (noconfigdirs): Add libctf if the target does not use
1019 the ELF file format.
1020 * configure: Regenerate.
1022 2019-05-29 Nick Clifton <nickc@redhat.com>
1024 * src-release.sh (do_proto_toplev): Add libctf to list of
1025 directories that can be disabled.
1027 2019-05-29 Nick Clifton <nickc@redhat.com>
1029 * configure.ac (noconfigdirs): Add libctf if the target does not use
1030 the ELF file format.
1031 * configure: Regenerate.
1033 2019-05-28 Nick Alcock <nick.alcock@oracle.com>
1035 * Makefile.def (dependencies): configure-libctf depends on all-bfd
1037 * Makefile.in: Regenerated.
1039 2019-05-28 Nick Alcock <nick.alcock@oracle.com>
1041 * MAINTAINERS: Add libctf.
1043 2019-05-28 Nick Alcock <nick.alcock@oracle.com>
1045 * Makefile.def (host_modules): Add libctf.
1046 * Makefile.def (dependencies): Likewise.
1047 libctf depends on zlib, libiberty, and bfd.
1048 * Makefile.in: Regenerated.
1049 * configure.ac (host_libs): Add libctf.
1050 * configure: Regenerated.
1052 2019-05-23 Jose E. Marchesi <jose.marchesi@oracle.com>
1054 * config.guess: Synchronize with config project master sources.
1055 * config.sub: Likewise.
1056 * readline/support/config.guess: Likewise.
1057 * readline/support/config.sub: Likewise.
1059 2019-04-10 Nick Clifton <nickc@redhat.com>
1061 * libiberty: Sync with gcc. Bring in:
1062 2019-04-10 Nick Clifton <nickc@redhat.com>
1065 * cp-demangle.c (cplus_demangle_fill_name): Reject negative
1067 (d_count_templates_scopes): Replace num_templates and num_scopes
1068 parameters with a struct d_print_info pointer parameter. Adjust
1069 body of the function accordingly. Add recursion counter and check
1070 that the recursion limit is not reached.
1071 (d_print_init): Pass dpi parameter to d_count_templates_scopes.
1072 Reset recursion counter afterwards, unless the recursion limit was
1075 2018-06-24 Nick Clifton <nickc@redhat.com>
1077 2.32 branch created.
1079 2019-01-14 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
1083 * config.guess: Import upstream version 2019-01-03.
1084 * config.sub: Import upstream version 2019-01-01.
1086 2019-01-10 Nick Clifton <nickc@redhat.com>
1088 * libiberty: Sync with gcc. Bring in:
1089 2019-01-09 Sandra Loosemore <sandra@codesourcery.com>
1093 * cp-demangle.c: Mechanically replace "can not" with "cannot".
1094 * floatformat.c: Likewise.
1095 * strerror.c: Likewise.
1097 2018-12-22 Jason Merrill <jason@redhat.com>
1099 Remove support for demangling GCC 2.x era mangling schemes.
1100 * cplus-dem.c: Remove cplus_mangle_opname, cplus_demangle_opname,
1101 internal_cplus_demangle, and all subroutines.
1102 (libiberty_demanglers): Remove entries for ancient GNU (pre-3.0),
1103 Lucid, ARM, HP, and EDG demangling styles.
1104 (cplus_demangle): Remove 'work' variable. Don't call
1105 internal_cplus_demangle.
1107 2019-01-03 Дилян Палаузов <dilyan.palauzov@aegee.org>
1109 * configure.ac: Don't configure readline if --with-system-readline is
1111 * configure: Re-generate.
1113 2018-10-31 Joseph Myers <joseph@codesourcery.com>
1117 * multilib.am: New file. From automake.
1119 2018-09-12 Sergio Durigan Junior <sergiodj@redhat.com>
1121 * src-release.sh (GDB_SUPPORT_DIRS): Add "contrib".
1123 2018-07-16 Nick Clifton <nickc@redhat.com>
1125 * src-release.sh (DEVO_SUPPORT): Add test-driver and ar-lib.
1127 2018-07-06 Sebastian Huber <sebastian.huber@embedded-brains.de>
1129 * config.sub: Sync with upstream version 2018-07-03.
1131 2018-07-05 Sebastian Huber <sebastian.huber@embedded-brains.de>
1133 * config.guess: Sync with upstream version 2018-06-26.
1134 * config.sub: Sync with upstream version 2018-07-02.
1136 2018-06-29 Alexandre Oliva <oliva@adacore.com>
1138 * configure.ac: Introduce support for @unless/@endunless.
1139 * Makefile.tpl (dep-kind): Rewrite with cond; return
1140 postbootstrap in some cases.
1141 (make-postboot-dep, postboot-targets): New.
1142 (dependencies): Do not output postbootstrap dependencies at
1143 first. Output non-target ones changed for configure to depend
1144 on stage_last @if gcc-bootstrap, and the original deps @unless
1146 * configure.in, Makefile.in: Rebuilt.
1148 2018-06-24 Nick Clifton <nickc@redhat.com>
1150 * configure: Regenerate.
1152 2018-06-19 Simon Marchi <simon.marchi@ericsson.com>
1154 * libtool.m4: Use AC_LANG_SOURCE.
1155 * configure.ac: Remove AC_PREREQ, use AC_LANG_SOURCE.
1156 * README-maintainer-mode: Update version requirements.
1158 * test-driver: New file.
1159 * configure: Re-generate.
1161 2018-06-18 Eric Botcazou <ebotcazou@adacore.com>
1163 * Makefile.def (fortran): Add check-target-libgomp-fortran.
1164 * Makefile.tpl (check-target-libgomp-fortran): New phony target.
1165 * Makefile.in: Regenerate.
1167 * configure: Regenerate.
1169 2018-06-18 Simon Marchi <simon.marchi@ericsson.com>
1171 * configure.ac: Sync with GCC, remove MPX-related things.
1173 2018-05-01 Nick Clifton <nickc@redhat.com>
1175 * config.guess: Synchronize with config project master sources.
1176 * config.sub: Likewise.
1178 2018-05-01 Francois H. Theron <francois.theron@netronome.com>
1180 * configure.ac: Added "nfp" target.
1181 * configure: Regenerate.
1183 2018-02-13 Maciej W. Rozycki <macro@mips.com>
1185 * configure.ac <wasm32-*-*> (noconfigdirs): Add `ld'.
1186 * configure: Regenerate.
1188 2018-01-30 Nick Clifton <nickc@redhat.com>
1190 * src-release.sh (do_proto_toplev): Add patterns for more junk files
1191 to delete before creating the tarball.
1193 2018-01-29 Nick Clifton <nickc@redhat.com>
1195 * src-release.sh (do_proto_toplev): Strip patch remnant files from
1196 the sources before creating the tarball.
1198 2018-01-13 Nick Clifton <nickc@redhat.com>
1200 * src-release.sh: Update copyright notice. Change reference to devo
1201 to be a reference to root.
1203 2018-01-10 Nick Clifton <nickc@redhat.com>
1205 * config-ml.in: Sync with gcc sources.
1206 * config.guess: Likewise.
1207 * config.sub: Likewise.
1208 * configure.ac: Likewise.
1209 * configure: Regenerate.
1211 2017-12-14 Nick Clifton <nickc@redhat.com>
1213 * COPYING.LIBGLOSS: Update address of FSF in copyright notice.
1215 2017-12-12 Stafford Horne <shorne@gmail.com>
1217 * configure.ac: Remove logic adding gdb to noconfigsdirs for or1k.
1218 * configure: Regenerate.
1220 2017-09-15 Nick Clifton <nickc@redhat.com>
1222 * src-release.sh (LZIPPROG): New define. Provides the name of the
1224 (do_lz): New function. Compresses a tarball using the lzip
1226 (do_compress): Add support for lzip compression.
1227 (usage): Mention -l option.
1228 (build_release): Support -l option to invoke lzip compression.
1230 2017-09-15 Alan Modra <amodra@gmail.com>
1232 * src-release.sh (do_proto_toplev): Revert last patch. Enable or
1233 disable binutils, gas, gdb, gold, gprof, ld, libdecnumber, readline,
1234 and sim depending on $tool and $support_files. Echo configure line.
1236 2017-09-14 Matt Rice <ratmice@gmail.com>
1238 * src-release.sh (do_proto_toplev): Enable gold during release process.
1240 2017-04-13 Andrew Jenner <andrew@codesourcery.com>
1242 * config.sub: Sync with master version in config project.
1244 2017-04-03 Andrew Jenner <andrew@codesourcery.com>
1246 * config.sub: Handle ia16 in $basic_machine.
1249 * config.bfd: Handle ia16.
1252 * configure.tgt: Handle ia16.
1255 * configure.tgt: Handle ia16.
1257 2017-03-22 Nick Clifton <nickc@redhat.com>
1259 * config.sub: Sync with master version in config project.
1260 * config.guess: Likewise.
1262 2017-01-23 Nick Clifton <nickc@redhat.com>
1264 * configure.ac: Update year in copyright notice.
1265 Sync from FSF GCC mainline, bringing in the following patches.
1266 * Makefile.def: Likewise.
1267 * Makefile.tpl: Likewise.
1268 * configure: Regenerate.
1269 * Makefile.in: Regenerate.
1271 2016-12-21 Jakub Jelinek <jakub@redhat.com>
1273 * configure.ac: Don't bootstrap libmpx unless --with-build-config
1274 includes bootstrap-mpx.
1276 2016-12-01 Matthias Klose <doko@ubuntu.com>
1278 * configure.ac: Don't use pkg-config to check for bdw-gc.
1280 2016-11-30 Matthias Klose <doko@ubuntu.com>
1282 * Makefile.def: Remove reference to boehm-gc target module.
1283 * configure.ac: Include pkg.m4, check for --with-target-bdw-gc
1284 options and for the bdw-gc pkg-config module.
1286 2016-11-15 Matthias Klose <doko@ubuntu.com>
1288 * config-ml.in: Remove references to GCJ.
1289 * configure.ac: Likewise.
1291 2016-09-30 Jakub Jelinek <jakub@redhat.com>
1293 * configure.ac: Add target-libffi to target_libraries.
1294 Readd libgcj target disablings, modified to only target-libffi.
1295 Readd target addition of go to unsupported languages.
1297 2016-09-30 Andrew Haley <aph@redhat.com>
1299 * Makefile.def: Remove libjava.
1300 * Makefile.tpl: Likewise.
1301 * configure.ac: Likewise.
1303 2016-09-26 Anton Kolesov <Anton.Kolesov@synopsys.com>
1305 * configure.ac: Disable "sim" directory for arc*-*-*.
1307 2016-09-12 Maciej W. Rozycki <macro@imgtec.com>
1309 * configure.ac: Check for the minimum in-tree MPFR version
1312 2016-12-31 Alan Modra <amodra@gmail.com>
1314 * config.sub: Import from upstream.
1316 2016-12-08 Alan Modra <amodra@gmail.com>
1318 * configure: Regenerate.
1320 2016-12-02 Josh Conner <joshconner@google.com>
1322 * configure.ac: Add fuchsia to targets that use ELF.
1323 * configure: Regenerated.
1325 2016-11-07 Doug Evans <dje@google.com>
1327 * config.sub: Sync with upstream version 2016-11-03.
1328 git://git.sv.gnu.org/config.git
1329 * config.guess: Sync with upstream version 2016-10-02.
1331 2016-09-27 Simon Marchi <simon.marchi@polymtl.ca>
1333 * .gitignore: Add archives and make stamps.
1335 2016-07-20 Yan-Ting Lin <currygt52@gmail.com>
1337 * configure.ac (nds32*-*-*): Remove entry to enable gdb.
1338 * configure: Regenerated.
1340 2016-06-28 Walter Lee <walt@tilera.com>
1342 * configure.ac (tilepro-*-*): Add gdb to noconfigdirs.
1343 * configure: Regenerate.
1345 2016-05-28 Alan Modra <amodra@gmail.com>
1347 * Makefile.tpl (configure): Depend on m4 files included.
1348 * Makefile.in: Regenerate.
1350 2016-05-27 Nick Clifton <nickc@redhat.com>
1352 * config.guess (Alpha OSF1): Fix typo introduced during the most
1353 recent synchronization update.
1355 2016-05-23 Nick Clifton <nickc@redhat.com>
1357 * Import these patches from the gcc mainline:
1359 2016-05-16 Jakub Sejdak <jakub.sejdak@phoesys.com>
1361 * config.guess: Import version 2016-04-02 (newest).
1362 * config.sub: Import version 2016-05-10 (newest).
1364 2016-04-19 Nick Clifton <nickc@redhat.com>
1366 * Import this patch from the GCC mainline:
1368 2016-04-13 Segher Boessenkool <segher@kernel.crashing.org>
1371 * Makefile.tpl (local-distclean): Delete the libcc1, gnattools,
1372 and gotools directories. Delete the stage_final file.
1373 * Makefile.in: Regenerate.
1375 2016-03-17 Cary Coutant <ccoutant@gmail.com>
1377 * configure.ac: Add mips and s390 to the gold target check.
1378 * configure: Regenerate.
1380 2016-02-10 Nick Clifton <nickc@redhat.com>
1382 Import these patches from the GCC mainline:
1384 2016-01-12 Andris Pavenis <andris.pavenis@iki.fi>
1386 * configure.ac: Enable LTO for DJGPP
1387 * configure: Regenerate
1389 2016-01-24 Mikhail Maltsev <maltsevm@gmail.com>
1392 * Makefile.tpl (BASE_FLAGS_TO_PASS): Add LSAN_OPTIONS.
1393 * Makefile.in: Regenerate.
1395 2016-01-25 Aditya Kumar <aditya.k7@samsung.com>
1396 Sebastian Pop <s.pop@samsung.com>
1398 * Makefile.in: Regenerate.
1399 * Makefile.tpl: Export ISLVER.
1400 * configure: Regenerate.
1401 * config/isl.m4: Detect isl-0.15.
1403 2016-01-29 Sebastian Pop <s.pop@samsung.com>
1405 * config/isl.m4: Add comments about isl-0.16.
1406 * configure: Regenerate.
1408 2016-01-12 H.J. Lu <hongjiu.lu@intel.com>
1411 2015-11-26 David Edelsohn <dje.gcc@gmail.com>
1413 * m4/libtool.m4 (export_symbols_cmds) [AIX]: Add global TLS "L"
1416 2016-01-12 Bernd Edlinger <bernd.edlinger@hotmail.de>
1419 * Makefile.def (mpfr): Disable assembler.
1420 * Makefile.in: Regenerate.
1422 2016-01-11 Nick Clifton <nickc@redhat.com>
1424 Import the following changes from the GCC mainline:
1426 2015-11-13 Tsvetkova Alexandra <aleksandra.tsvetkova@intel.com>
1428 * configure.ac: Enable libmpx by default.
1429 * configure: Regenerated.
1431 2015-11-19 Martin Liska <mliska@suse.cz>
1433 * .gitignore: Add .clang-format to ignored files.
1434 * Makefile.tpl: Add clang-format.
1435 * Makefile.in: Regenerate.
1437 2015-12-01 Andreas Tobler <andreast@gcc.gnu.org>
1440 * Makefile.def (lang_env_dependencies): Make libffi depend
1442 * Makefile.in: Regenerate.
1444 2015-12-02 Ian Lance Taylor <iant@google.com>
1447 * Makefile.tpl (HOST_EXPORTS): Add XGCC_FLAGS_FOR_TARGET.
1448 * Makefile.in: Regenerate.
1450 2015-12-17 Nathan Sidwell <nathan@acm.org>
1452 * config/isl.m4 (ISL_CHECK_VERSION): Add gmp libs.
1453 * configure: Regenerate.
1455 2015-12-17 Sebastian Pop <s.pop@samsung.com>
1457 * Makefile.in: Replace ISL with isl.
1458 * Makefile.tpl: Same.
1459 * config/isl.m4: Same.
1460 * configure.ac: Same.
1461 * contrib/download_prerequisites: Same.
1462 * configure: Regenerate.
1464 2016-01-01 Ben Elliston <bje@gnu.org>
1466 * config.guess: Import version 2016-01-01.
1467 * config.sub: Likewise.
1469 2015-11-20 Tristan Gingold <gingold@adacore.com>
1471 * configure.ac: Add aarch64-*-darwin* and arm-*-darwin*.
1472 * configure: Regenerate.
1474 2015-10-21 Nick Clifton <nickc@redhat.com>
1477 * configure.ac: Note the 'none' is an acceptable argument to
1478 --enable-compressed-debug-sections.
1479 * configure: Regenerate.
1481 2015-10-20 H.J. Lu <hongjiu.lu@intel.com>
1485 --enable-compressed-debug-sections={all,gas,gold,ld}.
1486 * configure: Regenerated.
1488 2015-09-30 Nick Clifton <nickc@redhat.com>
1490 Import the following patches from the GCC mainline:
1492 2015-08-23 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
1495 * Makefile.def: Make libgfortran depend on libbacktrace.
1496 * Makefile.in: Regenerate.
1498 2015-08-12 Tom de Vries <tom@codesourcery.com>
1502 * configure.ac: Remove --with_host_libstdcxx support.
1503 * configure: Regenerate.
1505 2015-08-10 Thomas Schwinge <thomas@codesourcery.com>
1506 Jakub Jelinek <jakub@redhat.com>
1508 * configure.ac (noconfigdirs): Don't add "target-libgomp" for target
1510 * configure: Regenerate.
1512 2015-08-07 H.J. Lu <hongjiu.lu@intel.com>
1515 2015-07-28 Ben Elliston <bje@gnu.org>
1517 * config.sub, config.guess: Import from upstream.
1519 2015-08-06 Yaakov Selkowitz <yselkowi@redhat.com>
1521 * Makefile.def (libiconv): Define bootstrap=true.
1522 Mark pdf/html/info as missing.
1523 (configure-gcc): Depend on all-libiconv.
1525 (configure-libcpp): Ditto.
1526 (all-libcpp): Ditto.
1527 (configure-intl): Ditto.
1529 * Makefile.in: Regenerate.
1531 2015-07-27 H.J. Lu <hongjiu.lu@intel.com>
1534 2015-07-24 Michael Darling <darlingm@gmail.com>
1537 * config-ml.in: Reflects renaming of configure.in to configure.ac
1538 * configure: Likewise
1539 * configure.ac: Likewise
1541 2015-07-14 H.J. Lu <hongjiu.lu@intel.com>
1543 * Makefile.in: Regenerated.
1546 2015-05-21 Jason Merrill <jason@redhat.com>
1548 * Makefile.tpl: Update comments.
1550 2015-04-22 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
1552 * Makefile.tpl: Remove surplus whitespace throughout.
1554 2015-03-25 Martin Liska <mliska@suse.cz>
1555 Yury Gribov <y.gribov@samsung.com>
1557 * Makefile.tpl: Fix ln source location for vimrc file.
1559 2015-07-14 H.J. Lu <hongjiu.lu@intel.com>
1562 2015-05-16 James Bowman <james.bowman@ftdichip.com>
1564 * configure.ac: FT32 target added.
1565 * configure: Regenerate.
1567 2015-07-14 H.J. Lu <hongjiu.lu@intel.com>
1570 2015-06-02 Jason Merrill <jason@redhat.com>
1573 * configure.ac: Use -std=gnu++98.
1575 2015-05-28 Mike Frysinger <vapier@gentoo.org>
1577 * configure.ac (--vtable-verify): Use AS_HELP_STRING for help.
1578 * configure: Regenerate.
1580 2015-05-11 Paulo Matos <paulo@matos-sorge.com>
1582 * configure.ac: Fix typo.
1583 * configure: Regenerate.
1585 2015-05-03 Matthias Klose <doko@ubuntu.com>
1587 * configure.ac: Match $host configured with triplets.
1588 * configure: Regenerate.
1590 2015-04-17 Jakub Jelinek <jakub@redhat.com>
1593 * configure.ac (--enable-stage1-checking): Default to
1594 release,misc,gimple,rtlflag,tree,types if --disable-checking
1595 or --enable-checking is not specified and DEV-PHASE is not
1597 * configure: Regenerated.
1599 2015-03-27 Uros Bizjak <ubizjak@gmail.com>
1601 Install back PR target/47230 fix (Revert the revert).
1603 2015-06-30 H.J. Lu <hongjiu.lu@intel.com>
1605 * configure.ac (ospace_frag): Enable for i?86*-*-elfiamcu
1607 * configure: Regenerate.
1609 2015-05-13 John David Anglin <dave.anglin@bell.net>
1611 * configure.ac: Disable configuration of GDB for HPUX targets.
1612 * configure: Regenerate.
1614 2015-05-01 H.J. Lu <hongjiu.lu@intel.com>
1617 * Makefile.def: Add extra_configure_flags to host zlib.
1618 * configure.ac (extra_host_zlib_configure_flags): New. Set
1619 to --enable-host-shared When bfd is to be built as shared
1621 * Makefile.in: Regenerated.
1623 2015-04-15 Mike Frysinger <vapier@gentoo.org>
1624 Hans-Peter Nilsson <hp@axis.com>
1626 Adjust src-release.sh for sim using the gdb create-version.sh.
1627 * src-release.sh (tar_compress): If there's a fifth parameter,
1628 use that in the getver call instead of $tool.
1629 (sim_release): Pass gdb as fifth parameter to tar_compress.
1630 (SIM_SUPPORT_DIRS): Add gdb/common/create-version.sh.
1632 2015-04-14 Max Ostapenko <m.ostapenko@partner.samsung.com>
1634 * Makefile.tpl (EXTRA_HOST_EXPORTS): New variables.
1635 (EXTRA_BOOTSTRAP_FLAGS): Likewise.
1636 (check-[+module+]): Add EXTRA_HOST_EXPORTS and EXTRA_BOOTSTRAP_FLAGS.
1637 * Makefile.in: Regenerate.
1639 2015-04-01 H.J. Lu <hongjiu.lu@intel.com>
1641 * configure.ac: Add --with-system-zlib.
1642 * configure: Regenerated.
1644 2015-03-31 H.J. Lu <hongjiu.lu@intel.com>
1646 * src-release.sh: Don't configure with --with-target-subdir=.
1649 2015-03-31 H.J. Lu <hongjiu.lu@intel.com>
1651 * src-release.sh (DEVO_SUPPORT): Replace src-release with
1654 2015-03-30 Ed Schouten <ed@nuxi.nl>
1656 * config.sub: Update from upstream, to 2015-03-04 version.
1657 * config.guess: Likewise.
1659 2015-03-30 H.J. Lu <hongjiu.lu@intel.com>
1661 * Makefile.def (dependencies): Add all-zlib to all-bfd.
1662 * Makefile.in: Regenerated.
1664 2015-03-28 H.J. Lu <hongjiu.lu@intel.com>
1666 * src-release.sh (do_proto_toplev): Configure with --target
1667 --with-target-subdir and --disable-multilib.
1668 (BINUTILS_SUPPORT_DIRS): Add zlib.
1669 (GAS_SUPPORT_DIRS): Likewise.
1670 (GDB_SUPPORT_DIRS): Likewise.
1671 (SIM_SUPPORT_DIRS): Likewise.
1673 2015-03-17 H.J. Lu <hongjiu.lu@intel.com>
1675 * configure.ac (target_configdirs): Exclude target-zlib if
1676 target-libjava isn't built.
1677 * configure: Regenerated.
1679 2015-03-17 H.J. Lu <hongjiu.lu@intel.com>
1682 2014-06-13 Thomas Schwinge <thomas@codesourcery.com>
1684 * config-ml.in: Robustify ac_configure_args parsing.
1686 2015-03-16 H.J. Lu <hongjiu.lu@intel.com>
1688 * Makefile.def: Updated from GCC trunk.
1689 * Makefile.tpl: Likewise.
1690 * configure.ac: Likewise.
1691 * Makefile.in: Regenerated.
1692 * configure: Likewise.
1694 2015-01-28 James Bowman <james.bowman@ftdichip.com>
1696 * configure.ac: Add FT32 support.
1697 * configure: Regenerate.
1699 2015-01-12 Anthony Green <green@moxielogic.com>
1701 * configure.ac: Don't disable gprof for moxie.
1702 * configure: Rebuild.
1704 2015-01-03 Andrew Pinski <apinski@cavium.com>
1706 * Makefile.def (flags_to_pass): Pass OBJCOPY_FOR_TARGET also.
1707 * Makefile.tpl (HOST_EXPORTS): Add OBJCOPY_FOR_TARGET.
1708 (BASE_TARGET_EXPORTS): Add OBJCOPY.
1709 (OBJCOPY_FOR_TARGET): New variable.
1710 (EXTRA_TARGET_FLAGS): Add OBJCOPY.
1711 * Makefile.in: Regenerate.
1712 * configure.ac: Check for already installed target objcopy.
1713 Also GCC_TARGET_TOOL on objcopy.
1714 * configure: Regenerate.
1716 2015-01-02 Hans-Peter Nilsson <hp@bitrange.com>
1718 * config.sub: Update from upstream, to 2015-01-01 version.
1719 * config.guess: Ditto.
1721 2014-12-06 Eric Botcazou <ebotcazou@adacore.com>
1723 * config.sub: Update from upstream config repo.
1725 2014-11-24 H.J. Lu <hongjiu.lu@intel.com>
1727 * libtool.m4: Updated from GCC trunk.
1729 2014-11-16 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1731 * config.guess: Update from upstream config repo.
1732 * config.sub: Ditto.
1734 2014-11-16 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1736 * move-if-change: Update from upstream gnulib.
1738 2014-11-16 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1740 * compile: Sync with upstream Automake.
1742 * install-sh: Ditto.
1744 * mkinstalldirs: Ditto.
1747 2014-10-15 Tristan Gingold <gingold@adacore.com>
1749 * src-release.sh (do_proto_toplev): Configure with --target.
1751 2014-10-03 Jing Yu <jingyu@google.com>
1753 * configure.ac: Add aarch64 to list of targets that support gold.
1754 * configure: Regenerate.
1756 2014-09-12 Andrew Bennett <andrew.bennett@imgtec.com>
1758 * configure.ac: Add mips*-img-elf* target triple.
1759 * configure: Regenerate.
1761 2014-09-06 Kuan-Lin Chen <kuanlinchentw@gmail.com>
1762 * configure: Disable gdb for nds32*-*-* until supported.
1763 * configure.ac: Disable gdb for nds32*-*-* until supported.
1765 2014-09-05 Joel Brobecker <brobecker@adacore.com>
1767 * configure: Regenerate.
1769 2014-08-27 Will Newton <will.newton@linaro.org>
1771 * src-release.sh: New file.
1772 * src-release: Remove file.
1774 2014-07-27 Joel Sherrill <joel.sherrill@oarcorp.com>
1776 GDB not supported for or1k*-*-rtems*
1777 * configure.ac (or1k*-*-rtems*): gdb not supported. The ordering
1778 of the stanzas results in this not being caught by or1k*-*-* later.
1779 * configure. Regenerated.
1781 2014-07-25 Samuel Bronson <naesten@gmail.com>
1783 * .gitattributes: New file for use with git-merge-changelog.
1785 2014-07-21 Joel Sherrill <joel.sherrill@oarcorp.com>
1787 Disable gdb for or1k*-*-* until supported
1788 * configure.ac (or1k*-*-*): Disable gdb.
1789 * configure: Regenerated.
1791 2014-05-14 Sandra Loosemore <sandra@codesourcery.com>
1793 * configure.ac (target_makefile_frag): Set for nios2-*-elf*.
1794 * configure: Regenerated.
1796 2014-03-26 Jakub Jelinek <jakub@redhat.com>
1799 * Makefile.def: Set bootstrap=true; for host fixincludes.
1800 * configure.ac: Don't bootstrap host fixincludes unless
1801 --with-build-config=bootstrap-{a,ub}san.
1802 * Makefile.in: Regenerated.
1803 * configure: Regenerated.
1805 2014-03-21 Jakub Jelinek <jakub@redhat.com>
1807 * configure.ac: Move BUILD_CONFIG set up earlier. Add
1808 --enable-vtable-verify option parsing. Don't add
1809 target-libsanitizer to bootstrap_target_libs unless
1810 --with-build-config=bootstrap-asan or
1811 --with-build-config=bootstrap-ubsan. Don't add target-libvtv
1812 to bootstrap_target_libs unless --enable-vtable-verify.
1813 * configure: Regenerated.
1815 2014-03-07 Jakub Jelinek <jakub@redhat.com>
1818 * Makefile.tpl (POSTSTAGE1_CXX_EXPORT): Use -isystem instead of
1819 -I for libstdc++-v3 includes if $(LEAN).
1820 * Makefile.in: Regenerated.
1822 2014-02-24 Walter Lee <walt@tilera.com>
1824 * configure.ac (tilepro-*-*) Change to tilepro*-*-*.
1825 (tilegx-*-*): Change to tilegx*-*-*.
1826 * configure: Regenerate.
1828 2014-05-01 Richard Sandiford <rdsandiford@googlemail.com>
1830 * config.sub, config.guess: Import from upstream.
1832 2014-04-04 Eric Botcazou <ebotcazou@adacore.com>
1835 * Makefile.def (dependencies): Make gnattools depend on libstdc++-v3.
1836 * Makefile.in: Regenerate.
1838 2014-03-28 Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
1840 * Makefile.def (dependencies): Make all-ld depend on all-binutils
1841 for WINDRES_FOR_TARGET in default-manifest.o rule.
1842 * Makefile.in: Regenerate.
1844 2014-02-04 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
1847 * ltmain.sh (opt_duplicate_compiler_generated_deps): Enable on
1850 2013-12-19 Keven Boell <keven.boell@intel.com>
1852 * cp-namespace.c (cp_lookup_nested_symbol): Enable
1853 nested lookups for fortran modules.
1854 * dwarf2read.c (read_module): Add fortran module to
1856 (add_partial_symbol, add_partial_module): Add fortran
1857 module to the partial symbol table.
1858 (new_symbol_full): Create full symbol for fortran module.
1859 * f-exp.y (yylex): Add new module domain to be parsed.
1860 * symtab.h: New domain for fortran modules.
1862 2013-12-19 Keven Boell <keven.boell@intel.com>
1864 * f-exp.y (yylex): Add domain array to enable lookup
1865 in multiple domains. Loop over lookup domains and try
1866 to find requested symbol. Add STRUCT_DOMAIN to lookup
1867 domains to be able to query for user defined types.
1869 2013-12-13 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
1871 * configure.ac: Add user-friendly check for native x86_64-linux
1873 * configure: Regenerate.
1875 2013-11-23 Alan Modra <amodra@gmail.com>
1877 * config.sub, config.guess: Import from upstream.
1879 2013-11-07 Thomas Schwinge <thomas@codesourcery.com>
1881 * Makefile.in: Regenerate.
1883 * Makefile.tpl: Fix typo.
1884 * Makefile.in: Regenerate partially.
1886 2013-11-04 Balaji V. Iyer <balaji.v.iyer@intel.com>
1888 * configure.ac: Added libcilkrts to noconfig list when C++ is not
1890 * configure: Regenerated.
1892 2013-10-30 Jason Merrill <jason@redhat.com>
1894 * Makefile.tpl (STAGE1_CONFIGURE_FLAGS): Pass
1895 --disable-build-format-warnings.
1897 2013-10-29 Balaji V. Iyer <balaji.v.iyer@intel.com>
1899 * Makefile.def: Add libcilkrts to target_modules. Make libcilkrts
1900 depend on libstdc++ and libgcc.
1901 * configure: Regenerate.
1902 * configure.ac: Added libcilkrts to target binaries. Also, restrict
1903 libcilkrts for POSIX and i*86, and x86_64 architectures.
1904 * Makefile.in: Added libcilkrts related fields to support building it.
1906 2013-10-26 Jeff Law <law@redhat.com>
1908 * Makefile.def (target_modules): Remove libmudflap
1909 (languages): Remove check-target-libmudflap).
1910 * Makefile.in: Rebuilt.
1911 * Makefile.tpl (check-target-libmudflap-c++): Remove.
1912 * configure.ac (target_libraries): Remove target-libmudflap.
1913 Remove checks which disabled libmudflap on some systems.
1914 * configure: Rebuilt.
1915 * libmudflap: Directory removed.
1917 2013-10-16 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1919 * configure.ac: Update from GCC.
1920 * configure: Regenerate.
1922 2013-10-15 Hans-Peter Nilsson <hp@axis.com>
1924 * src-release (do-proto-toplevel): Support subdir-path-prefixed
1925 files in SUPPORT_FILES.
1926 (SIM_SUPPORT_DIRS): New variable.
1927 (sim.tar.bz2): New rule.
1929 2013-10-08 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1931 * configure.ac: Update from GCC.
1932 * configure: Regenerate.
1934 2013-10-01 Jeff Johnston <jjohnstn@redhat.com>
1936 * COPYING.NEWLIB: Update with new copyright.
1938 2013-09-21 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1940 * configure.ac: Update from GCC.
1941 * configure: Regenerate.
1943 2013-09-20 Alan Modra <amodra@gmail.com>
1945 * libtool.m4 (_LT_ENABLE_LOCK <ld -m flags>): Remove non-canonical
1946 ppc host match. Support little-endian powerpc linux hosts.
1948 2013-08-16 Joel Brobecker <brobecker@adacore.com>
1950 * src-release (VER): When using $(TOOL)/common/create-version.sh,
1951 strip the "-cvs" suffix from the version number if present.
1953 2013-08-12 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1955 * configure.ac: Sync with GCC repo.
1956 * Makefile.def: Ditto.
1957 * configure: Regenerate.
1958 * Makefile.in: Ditto.
1960 2013-07-22 Joel Brobecker <brobecker@adacore.com>
1962 * src-release (VER): Use $(TOOL)/common/create-version.sh
1965 2013-06-22 Richard Sandiford <rdsandiford@googlemail.com>
1967 * configure.ac (mips*-*-bsd*, mips*-*-ultrix*, mips*-*-osf*)
1968 (mips*-*-ecoff*, mips*-*-pe*, mips*-*-irix* [v4 and earlier])
1969 (mips*-*-lnews*, mips*-*-riscos*): Add gas and ld to noconfigdirs.
1970 * configure: Regenerate.
1972 2013-06-01 George Thomas <george.thomas@atmel.com>
1974 * include/opcode/avr.h: Rename AVR_ISA_XCH to AVR_ISA_RMW. Remove
1975 from AVR_ISA_XMEGA and add new AVR_ISA_XMEGAU
1977 2013-05-06 Sandra Loosemore <sandra@codesourcery.com>
1979 * COPYING.NEWLIB: Add Altera Corporation copyright.
1981 2013-04-29 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1983 * config.guess: Update from config repo.
1984 * config.sub: Ditto.
1986 2013-04-22 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1988 * Makefile.def: Sync with GCC.
1989 * Makefile.in: Regenerate.
1991 2013-04-22 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1993 * configure.ac: Sync with GCC.
1994 * configure: Regenerate.
1996 2013-03-22 Mike Frysinger <vapier@gentoo.org>
1998 * src-release (VER): Change bfd/configure.in sed to use the new
1999 `bfd/configure --version` output.
2001 2013-02-15 Yufeng Zhang <yufeng.zhang@arm.com>
2003 * configure.ac: Sync with GCC repo.
2006 2013-02-05 Ian Lance Taylor <iant@google.com>
2009 * configure.ac: Disable libgo on some systems where it does not
2011 * configure: Rebuild.
2013 2013-02-05 Alan Modra <amodra@gmail.com>
2015 * configure: Regenerate after syncing config/.
2017 2013-01-15 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2019 * configure.ac: Sync with GCC repo.
2021 * Makefile.def: Ditto.
2022 * Makefile.in: Ditto.
2024 2013-01-11 Joel Brobecker <brobecker@adacore.com>
2026 Sync with GCC, merge:
2028 2013-01-09 Jason Merrill <jason@redhat.com>
2030 * .gitignore: Import from gdb repository.
2032 2013-01-11 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2034 * config.sub: Update from config repo.
2036 2013-01-11 Eric Botcazou <ebotcazou@adacore.com>
2038 * Makefile.tpl (BOOT_ADAFLAGS): Remove -gnata.
2039 * Makefile.in: Regenerate.
2041 2013-01-09 H.J. Lu <hongjiu.lu@intel.com>
2043 * Makefile.def (configure-gcc): Depend on all-gmp.
2044 (all-gcc): Remove dependency on all-gmp.
2045 * Makefile.in: Regenerated.
2047 2013-01-08 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2049 * config.guess: Update from config repo.
2050 * config.sub: Ditto.
2052 2013-01-07 Jeff Johnston <jjohnstn@redhat.com>
2054 * COPYING.LIBGLOSS: Remove license for mips/lsi33k-stub.h which no longer
2055 exists and replace the new bfin license in its location.
2057 2013-01-07 H.J. Lu <hongjiu.lu@intel.com>
2060 * Makefile.def (dependencies): Make all-binutils, all-gprof,
2061 all-ld and all-gold depend on all-gas.
2062 * Makefile.in: Regenerated.
2064 2012-12-29 Ben Elliston <bje@gnu.org>
2066 * config.guess: Update to 2012-12-29 version.
2067 * config.sub: Likewise.
2069 2012-12-20 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2071 * Makefile.def (install-target-libgo): Depend on
2072 install-target-libatomic. Merged from GCC repo.
2073 * Makefile.in: Regenerate.
2075 2012-12-17 Jeff Johnston <jjohnstn@redhat.com>
2077 * COPYING.LIBGLOSS: Add license for bfin libgloss.
2079 2012-12-16 Thomas Schwinge <thomas@codesourcery.com>
2081 * configure.ac (ENABLE_GOLD): Consider *-*-gnu* targets ELF.
2082 * configure: Regenerate.
2084 2012-12-11 H.J. Lu <hongjiu.lu@intel.com>
2086 * Makefile.def (target_modules): Add bootstrap=true and
2087 raw_cxx=true to libsanitizer.
2088 * configure.ac (bootstrap_target_libs): Add libsanitizer.
2089 * Makefile.in: Regenerated.
2090 * configure: Likewise.
2092 2012-12-08 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2094 * config.sub: Merge from config repo.
2096 2012-11-30 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2098 * configure.ac: Merge from GCC.
2099 * Makefile.tpl: Ditto.
2100 * Makefile.in: Ditto.
2103 2012-11-28 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2105 * configure.ac (noconfigdirs): Merge from GCC.
2106 * configure: Regenerate.
2108 2012-11-19 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2110 * config.sub (arm): Merge from upstream: Handle armv[6-8] targets.
2112 2012-11-14 Roland McGrath <mcgrathr@google.com>
2114 * configure.ac (ENABLE_GOLD): Consider *-*-nacl* targets ELF.
2115 * configure: Regenerate.
2117 2012-11-13 Richard Henderson <rth@redhat.com>
2119 * configure.ac: Move libsanitizer logic to subdirectory.
2120 * configure: Regenerate.
2122 2012-11-13 Dodji Seketeli <dodji@redhat.com>
2124 * configure.ac: Enable libsanitizer just on x86 linux for now.
2125 * configure: Re-generate.
2127 2012-11-13 David Edelsohn <dje.gcc@gmail.com>
2129 * configure.ac: Merge libquadmath sections.
2130 * configure: Regenerate.
2132 2012-11-12 Wei Mi <wmi@google.com>
2134 * configure.ac: Add libsanitizer to target_libraries.
2135 * Makefile.def: Ditto.
2136 * configure: Regenerate.
2137 * Makefile.in: Regenerate.
2139 2012-11-03 H.J. Lu <hongjiu.lu@intel.com>
2141 * configure: Regenerated.
2143 2012-11-03 Robert Mason <rbmj@verizon.net>
2145 * configure.ac: add --disable-libstdcxx configure option
2146 and handle defaulted state only for VxWorks, ARM-wince-pe and AVR.
2148 2012-10-24 Corinna Vinschen <corinna@vinschen.de>
2150 * configure.ac (FLAGS_FOR_TARGET,target=cygwin): Fix for building
2151 against Mingw64 w32api.
2152 * configure: Regenerate.
2154 2012-10-23 Eric Botcazou <ebotcazou@adacore.com>
2157 * configure.ac (have_static_libs): Force 'no' for GCC version < 4.5.
2158 * configure: Regenerate.
2160 2012-10-22 Eric Botcazou <ebotcazou@adacore.com>
2163 * Makefile.tpl (STAGE1_FLAGS_TO_PASS): New variable.
2164 (all-[+prefix+][+module+]): Pass stage1_args to sub-makes.
2165 (all-stage[+id+]-[+prefix+][+module+]): Likewise, if prev is false.
2166 (clean-stage[+id+]-[+prefix+][+module+]): Likewise, if prev is false.
2167 (host_modules): Set stage1_args to STAGE1_FLAGS_TO_PASS.
2168 * Makefile.in: Regenerate.
2169 * configure.ac (have_static_libs): New variable and associated check.
2170 (stage1-ldflags): Move to after stage1_libs and set to -static-libstdc++
2171 -static-libgcc if stage1_libs is empty and have_static_libs is yes.
2172 * configure: Regenerate.
2174 2012-10-10 David Holsgrove <david.holsgrove@xilinx.com>
2176 * config.guess, config.sub: Include updated version from
2177 config-patches. Adds microblaze little endian support.
2179 2012-09-28 Ian Lance Taylor <iant@google.com>
2181 * Makefile.def: Make all-target-libgo depend on
2182 all-target-libbacktrace.
2183 * Makefile.in: Rebuild.
2185 2012-09-26 Ian Lance Taylor <iant@google.com>
2187 * Makefile.def: Make all-gcc depend on all-libbacktrace.
2188 * Makefile.in: Rebuild.
2190 2012-09-06 Diego Novillo <dnovillo@google.com>
2192 * configure.ac: Bump minimum GMP version to 4.2.3.
2193 * configure: Re-generate.
2195 2012-09-05 Georg-Johann Lay <avr@gjlay.de>
2198 * configure.ac (noconfigdirs,target=avr-*-*): Add target-newlib,
2199 target-libgloss if not configured --with-avrlibc=no.
2200 * configure: Regenerate.
2202 2012-09-04 Jason Merrill <jason@redhat.com>
2204 * configure.ac: Fix --enable-languages=all.
2206 2012-09-03 Richard Guenther <rguenther@suse.de>
2209 * configure.ac: Re-organize ISL / CLOOG checks to allow
2210 disabling with either --without-isl or --without-cloog.
2211 * configure: Regenerated.
2213 2012-09-03 Georg-Johann Lay <avr@gjlay.de>
2215 * configure.ac (noconfigdirs,target=avr): Add target-libquadmath.
2216 * configure: Regenerate.
2218 2012-09-21 Steve Ellcey <sellcey@mips.com>
2220 * configure.ac: Add mips*-mti-elf* target.
2221 * configure: Regenerate.
2223 2012-09-19 Ian Lance Taylor <iant@google.com>
2225 * configure.ac (host_libs): Add libbacktrace.
2226 (target_libraries): Add libbacktrace.
2227 * Makefile.def (host_modules): Add libbacktrace.
2228 (target_modules): Likewise.
2229 * configure, Makefile.in: Rebuild.
2231 2012-09-15 Jiong Wang <jiwang@tilera.com>
2233 * configure.ac (ENABLE_GOLD): support tilegx*
2234 * configure: rebuild
2236 2012-09-14 David Edelsohn <dje.gcc@gmail.com>
2239 Merge upstream change.
2240 * libtool.m4 (_LT_COMPILER_PIC): Add -fPIC to GCC and GXX for AIX.
2242 * configure.ac: Add target-libquadmath to noconfigdirs for AIX.
2243 Add libgomp*.o to compare_exclusions for AIX.
2244 * configure: Regenerate.
2246 2012-08-26 H.J. Lu <hongjiu.lu@intel.com>
2249 * Makefile.def (host_modules): Rmove lib_path=.libs from bfd
2251 * Makefile.in: Regenerated.
2253 2012-08-14 Diego Novillo <dnovillo@google.com>
2255 Merge from cxx-conversion branch.
2257 * Makefile.tpl (STAGE[+id+]_CXXFLAGS): Remove
2258 POSTSTAGE1_CONFIGURE_FLAGS.
2259 * Makefile.in: Regenerate.
2260 * configure.ac (ENABLE_BUILD_WITH_CXX): Remove. Update all users.
2261 Force C++ when bootstrapping.
2262 * configure: Regenerate.
2264 2012-07-06 Richard Guenther <rguenther@suse.de>
2266 * Makefile.def (cloog): Pass $(HOST_GMPINC) and $(HOST_ISLINC)
2267 as CPPFLAGS, pass path to built gmp as LDFLAGS, always use
2269 * Makefile.in: Regenerated.
2270 * configure: Likewise.
2272 2012-07-06 Richard Guenther <rguenther@suse.de>
2274 * configure.ac (extra_isl_gmp_configure_flags): Initialize and subst.
2275 * Makefile.def (isl): Use extra_isl_gmp_configure_flags and
2276 supply V=1 as extra_make_flags.
2277 * configure: Regenerated.
2278 * Makefile.in: Likewise.
2280 2012-07-03 Richard Guenther <rguenther@suse.de>
2282 * Makfile.def (isl): Remove not necessary extra_exports and
2284 (cloog): Use $$CPPFLAGS instead of ${CPPFLAGS}.
2285 * Makefile.in: Regenerated.
2287 2012-07-03 Richard Guenther <rguenther@suse.de>
2289 * Makefile.def (cloog): Add V=1 to extra_make_flags.
2290 * configure.ac: If either the ISL or the CLooG check failed
2291 do not try to build in-tree versions.
2292 * Makefile.in: Regenerated.
2293 * configure: Regenerated.
2295 2012-07-02 Richard Guenther <rguenther@suse.de>
2296 Michael Matz <matz@suse.de>
2297 Tobias Grosser <tobias@grosser.es>
2298 Sebastian Pop <sebpop@gmail.com>
2300 * Makefile.def: Add ISL host module, remove PPL host module.
2301 Adjust ClooG host module to use the proper ISL.
2302 * Makefile.tpl: Pass ISL include flags instead of PPL ones.
2303 * configure.ac: Include config/isl.m4. Add ISL host library,
2304 remove PPL. Remove PPL configury, add ISL configury, adjust
2306 * Makefile.in: Regenerated.
2307 * configure: Likewise.
2309 2012-07-02 Richard Guenther <rguenther@suse.de>
2311 Merge from graphite branch
2312 2011-07-21 Tobias Grosser <tobias@grosser.es>
2314 * configure: Regenerated.
2315 * config/cloog.m4: Remove support for CLooG-ppl and CLooG-parma,
2316 both cloog.org and legacy versions. The only supported version will
2317 be CLooG with the isl backend.
2319 2011-07-21 Tobias Grosser <tobias@grosser.es>
2321 * configure: Regenerated.
2322 * configure.ac: Require cloog isl 0.17.0
2324 2011-07-21 Tobias Grosser <tobias@grosser.es>
2326 * configure: Regenerated.
2327 * config/cloog.m4: Do not define CLOOG_ORG
2329 2012-06-29 Steven Bosscher <steven@gcc.gnu.org>
2331 * configure.ac: Skip C if explicitly selected.
2332 * configure: Regenerate.
2334 2012-06-28 Christophe Lyon <christophe.lyon@st.com>
2336 * configure.ac (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Make sure
2338 * configure: Regenerate.
2340 2012-06-20 Jason Merrill <jason@redhat.com>
2342 * Makefile.tpl (check-target-libgomp-c++): New.
2343 (check-target-libitm-c++): New.
2344 * Makefile.def (c++): Add them.
2345 * Makefile.in: Regenerate.
2347 2012-05-16 Olivier Hainque <hainque@adacore.com>
2349 * Makefile.tpl (gcc-no-fixedincludes): Rename into ...
2350 (gcc-install-no-fixedincludes): Now forwarder to local target in gcc/
2351 (install-no-fixedincludes): Adjust accordingly.
2352 * Makefile.in: Regenerate.
2354 2012-05-09 Nick Clifton <nickc@redhat.com>
2355 Paul Smith <psmith@gnu.org>
2358 * configure.ac (mpfr-dir): When using in-tree MPFR sources
2359 allow for the fact that from release v3.1.0 of MPFR the source
2360 files were moved into a src sub-directory.
2361 * configure: Regenerate.
2363 2012-05-07 Janne Blomqvist <jb@gcc.gnu.org>
2365 * configure.ac: Bump minimum MPFR version to 2.4.0.
2366 * configure: Regenerated.
2368 2012-05-01 Richard Henderson <rth@redhat.com>
2370 * Makefile.def (libatomic): New target_module.
2371 * configure.ac (target_libraries): Add libatomic.
2372 (noconfigdirs): Check if libatomic is supported.
2373 * Makefile.in, configure: Rebuild.
2375 2012-05-15 H.J. Lu <hongjiu.lu@intel.com>
2377 Merge upstream change
2378 * libtool.m4 (_LT_ENABLE_LOCK): Support x32.
2380 2011-11-21 Andreas Tobler <andreast@fgznet.ch>
2382 * libtool.m4: Additional FreeBSD 10 fixes.
2384 2012-06-28 Christophe Lyon <christophe.lyon@st.com>
2386 * configure.ac (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Make sure
2388 * configure: Regenerate.
2390 2012-05-14 Catherine Moore <clm@codesourcery.com>
2392 * NEWS: Mention PowerPC VLE port.
2394 2012-05-11 Mike Frysinger <vapier@gentoo.org>
2396 * MAINTAINERS (config/): Move to intl/ section.
2397 (compile; depcomp; install-sh; missing; ylwrap): Likewise.
2399 2012-05-09 Nick Clifton <nickc@redhat.com>
2400 Paul Smith <psmith@gnu.org>
2403 * configure.ac (mpfr-dir): When using in-tree MPFR sources
2404 allow for the fact that from release v3.1.0 of MPFR the source
2405 files were moved into a src sub-directory.
2406 * configure: Regenerate.
2408 2012-05-02 Roland McGrath <mcgrathr@google.com>
2410 * configure.ac (ENABLE_GOLD): Consider *-*-nacl* targets ELF.
2411 * configure: Regenerate.
2413 2012-04-25 Joel Brobecker <brobecker@adacore.com>
2415 * config.sub: Update to 2012-04-18 version from official repo.
2417 2012-03-19 Tristan Gingold <gingold@adacore.com>
2419 * configure.ac (ia64*-*-*vms*): Add support for ld.
2420 * configure: Regenerate.
2422 2012-03-14 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2424 * configure.ac (enable_libgomp): Remove *-*-irix6*.
2425 (unsupported_languages): Remove mips-sgi-irix6.*.
2426 (noconfigdirs): Don't add ${libgcj} for mips*-*-irix6*.
2427 (with_stabs): Remove.
2428 * configure: Regenerate.
2430 2012-03-12 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2432 * configure.ac (enable_libgomp): Remove *-*-osf*.
2433 (with_stabs): Remove alpha*-*-osf*.
2434 * configure: Regenerate.
2436 2012-03-09 Jeff Johnston <jjohnstn@redhat.com>
2438 * COPYING.NEWLIB: Modify DJ Delorie license to include
2439 modification rights in clause as permitted by DJ Delorie.
2440 * COPYING.LIBGLOSS: Ditto.
2442 2012-03-09 Jeff Johnston <jjohnstn@redhat.com>
2444 * COPYING.NEWLIB: Remove two unused licenses.
2446 2012-03-05 Tristan Gingold <gingold@adacore.com>
2448 * configure.ac: Enable gdb and readline for ia64*-*-*vms*.
2449 * configure: Regenerate.
2451 2012-02-21 Joern Rennecke <joern.rennecke@embecosm.com>
2453 * COPYING.NEWLIB: Add Adapteva notice.
2454 * COPYING.LIBGLOSS: Add Adapteva notice.
2456 2011-12-18 Eric Botcazou <ebotcazou@adacore.com>
2458 * configure: Regenerate.
2460 2011-12-15 Jeff Johnston <jjohnstn@redhat.com>
2462 * COPYING.LIBGLOSS: Add GPL with exception license.
2464 2011-11-09 Roland McGrath <mcgrathr@google.com>
2466 * configure.ac: Add tool checks for READELF and READELF_FOR_TARGET.
2467 * configure: Rebuild.
2468 * Makefile.def (flags_to_pass): Add READELF_FOR_TARGET.
2469 * Makefile.tpl (READELF, READELF_FOR_TARGET): New variables.
2470 (HOST_EXPORTS): Add READELF, READELF_FOR_TARGET.
2471 (BASE_FLAGS_TO_PASS): Add READELF_FOR_TARGET.
2472 (BASE_TARGET_EXPORTS, EXTRA_HOST_FLAGS, EXTRA_TARGET_FLAGS):
2474 * Makefile.in: Rebuild.
2476 2011-11-08 Richard Henderson <rth@redhat.com>
2478 * configure.ac: Test for libitm directory present first.
2480 * configure.ac: Adjust srcdir for running libitm/configure.tgt.
2482 * configure.ac: Test libitm/configure.tgt to disable libitm.
2483 * configure: Rebuild.
2485 2011-11-02 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2487 * Makefile.tpl (EXTRA_GCC_FLAGS): Remove LIBGCC2_CFLAGS,
2488 LIBGCC2_DEBUG_CFLAGS, LIBGCC2_INCLUDES.
2489 * Makefile.in: Regenerate.
2491 2011-11-01 DJ Delorie <dj@redhat.com>
2493 * configure.ac (rl78-*-*) New case.
2494 * configure: Regenerate.
2496 2011-11-01 DJ Delorie <dj@redhat.com>
2498 * config.sub: Update to version 2011-10-29 (added rl78)
2500 2011-10-27 Nick Clifton <nickc@redhat.com>
2502 * config.sub: Import these changes from the config project:
2504 2011-10-08 Joern Rennecke <joern.rennecke@embecosm.com>
2505 Ben Elliston <bje@gnu.org>
2507 * config.sub (epiphany): New.
2509 2011-09-09 Linas Vepstas <linasvepstas@gmail.com>
2510 Ben Elliston <bje@gnu.org>
2512 * config.sub (hexagon, hexagon-*): New.
2514 2011-08-23 Roland McGrath <mcgrathr@google.com>
2516 * config.sub: Rename 32eb to be32, 32el to le32, 64el to le64, and
2519 2011-08-16 Roland McGrath <mcgrathr@google.com>
2521 * config.sub (32eb, 32el, 64eb, 64el): New (pseudo-)CPUs.
2522 (nacl): Grok as alias for 32el-unknown-nacl.
2524 2011-08-19 Joel Brobecker <brobecker@adacore.com>
2526 * src-release (GDB_SUPPORT_DIRS): Add 'cpu'.
2528 2011-08-14 Yao Qi <yao@codesourcery.com>
2532 2011-08-14 Yao Qi <yao@codesourcery.com>
2533 * configure.ac (tic6x-*-*): Remove gdb from noconfigdirs.
2534 * configure: Regenerate.
2536 2011-07-26 Ian Lance Taylor <iant@google.com>
2540 2011-07-26 Ian Lance Taylor <iant@google.com>
2541 * configure.ac: Set have_compiler based on whether gcc directory
2542 exists, rather than on whether gcc is in configdirs.
2543 * configure: Rebuild.
2545 2011-07-20 David Edelsohn <dje.gcc@gmail.com>
2546 * Makefile.tpl (POSTSTAGE1_CONFIGURE_FLAGS): Add libsupc++ to
2548 * Makefile.in: Rebuild.
2550 2011-07-20 Ian Lance Taylor <iant@google.com>
2552 * configure.ac: Move --enable-bootstrap handling earlier in file.
2553 If --enable-bootstrap and either --enable-build-with-cxx or
2554 --enable-build-poststage1-with-cxx, enable C++ automatically.
2555 * configure: Rebuild.
2557 2011-07-19 Ian Lance Taylor <iant@google.com>
2558 * configure.ac: Add --enable-build-poststage1-with-cxx. If set,
2559 make C++ a boot_language. Set and substitute
2560 POSTSTAGE1_CONFIGURE_FLAGS.
2561 * Makefile.tpl (POSTSTAGE1_CONFIGURE_FLAGS): New variable.
2562 (STAGE[+id+]_CONFIGURE_FLAGS): Add $(POSTSTAGE1_CONFIGURE_FLAGS).
2563 * configure, Makefile.in: Rebuild.
2565 2011-07-16 Jason Merrill <jason@redhat.com>
2566 * Makefile.def (language=c++): Add check-c++0x and
2567 check-target-libmudflap-c++.
2568 * Makefile.tpl (check-target-libmudflap-c++): New.
2569 * Makefile.in: Regenerate.
2571 2011-07-16 Matthias Klose <doko@ubuntu.com>
2572 * Makefile.tpl (EXTRA_CONFIGARGS_LIBJAVA): Define.
2573 * Makefile.def (target_modules/libjava): Pass
2574 $(EXTRA_CONFIGARGS_LIBJAVA).
2575 * configure.ac: Pass --disable-static in EXTRA_CONFIGARGS_LIBJAVA,
2576 if not configured with --enable-static-libjava.
2577 * Makefile.in: Regenerate.
2578 * configure: Likewise.
2580 2011-06-22 Hans-Peter Nilsson <hp@axis.com>
2586 * configure.ac (target_libraries): Remove target-libiberty.
2587 Remove case-statement setting skipdirs=target-libiberty for
2588 multiple targets. Remove checking target_configdirs and
2589 removing target-libiberty but keeping target-libgcc if
2591 * Makefile.def (target_modules): Don't add libiberty.
2592 (dependencies): Remove all traces of target-libiberty.
2593 * configure, Makefile.in: Regenerate.
2595 2011-07-22 Jason Merrill <jason@redhat.com>
2597 * Makefile.def (language=c++): Add check-c++0x and
2598 check-target-libmudflap-c++.
2599 * Makefile.tpl (check-target-libmudflap-c++): New.
2600 * Makefile.in: Regenerate.
2602 2011-07-18 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2604 * configure: Regenerate.
2606 2011-07-07 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2609 * configure.ac (i[3456789]86-*-solaris2*): Also accept
2610 x86_64-*-solaris2.1[0-9]*.
2611 * configure: Regenerate.
2613 2011-06-13 Walter Lee <walt@tilera.com>
2615 * configure.ac (tilepro-*-*) New case.
2616 (tilegx-*-*): Likewise.
2617 * configure: Regenerate.
2619 2011-06-06 Nick Clifton <nickc@redhat.com>
2621 * config.sub: Sync from upstream.
2623 2011-05-08 Doug Kwan <dougkwan@google.com>
2627 2011-05-08 Doug Kwan <dougkwan@google.com>
2629 * configure.ac: Propagate LDFLAGS_FOR_TARGET.
2630 * configure: Regenerated.
2631 * Makefile.tpl (LDFLAGS_FOR_TARGET): Use LDFLAGS_FOR_TARGET
2632 value from configure.
2633 * Makefile.in: Regenerated.
2635 2011-05-05 Joseph Myers <joseph@codesourcery.com>
2637 * configure.ac (alpha*-dec-osf*, i[[3456789]]86-*-rdos*,
2638 sh*-*-pe|mips*-*-pe|arm-wince-pe, sparc-*-sunos4*, *-*-aix*,
2639 *-*-beos*, *-*-chorusos, *-*-dragonfly*, *-*-freebsd*, *-*-linux*
2640 | *-*-gnu* | *-*-k*bsd*-gnu | *-*-kopensolaris*-gnu, *-*-lynxos*,
2641 *-*-mingw*, *-*-netbsd*, *-*-netware*, *-*-tpf*, *-*-uclinux*,
2642 *-*-vxworks*): Disable newlib and libgloss in separate case
2644 (i[[3456789]]86-*-linux*): Move logic allowing newlib to be built
2645 to separate case statement.
2646 (*-*-chorusos, *-*-dragonfly*, *-*-freebsd*, *-*-netbsd*,
2647 *-*-netware*, *-*-tpf*, *-*-uclinux*, *-*-vxworks*,
2648 alpha*-dec-osf*, alpha*-*-linux*, am33_2.0-*-linux*, sh-*-linux*,
2649 sh*-*-pe|mips*-*-pe|*arm-wince-pe, arm-*-coff, arm-*-elf* |
2650 arm*-*-eabi*, arm*-*-linux-gnueabi, arm*-*-symbianelf*, avr-*-*,
2651 bfin-*-*, cris-*-* | crisv32-*-*, frv-*-*, i[[3456789]]86-*-coff |
2652 i[[3456789]]86-*-elf, i[[3456789]]86-w64-mingw*,
2653 i[[3456789]]86-*-mingw*, x86_64-*-mingw*,
2654 i[[3456789]]86-*-interix*, i[[3456789]]86-*-beos*,
2655 i[[3456789]]86-*-rdos*, m32r-*-*,
2656 m68hc11-*-*|m6811-*-*|m68hc12-*-*|m6812-*-*, m68k-*-elf*, m68*-*-*
2657 | fido-*-*, powerpc-*-aix*, powerpc-*-beos*, powerpc-*-eabi,
2658 powerpc-*-eabi* | powerpcle-*-eabi* | powerpc-*-rtems*,
2659 rs6000-*-lynxos*, rs6000-*-aix*, mips*-*-linux*, sparclet-*-aout*
2660 | sparc86x-*-*, sparc-*-elf*, sparc64-*-elf*, sparclite-*-*,
2661 sparc-*-sunos4*, sparc-*-solaris* | sparc64-*-solaris* |
2662 sparcv9-*-solaris*, *-*-linux* | *-*-gnu* | *-*-k*bsd*-gnu |
2663 *-*-kopensolaris*-gnu, *-*-lynxos*, *-*-*): Don't disable newlib
2664 and libgloss in main case over targets. Remove most empty cases
2665 in main case over targets.
2666 * configure: Regenerate.
2668 2011-05-04 Joseph Myers <joseph@codesourcery.com>
2670 * configure.ac: Remove code setting special library locations for
2671 hppa*64*-*-hpux11*. Remove code setting compiler for
2672 sparc-sun-solaris2*.
2673 * configure: Regenerate.
2675 2011-05-04 Joseph Myers <joseph@codesourcery.com>
2677 * configure.ac: Separate libgloss_dir settings from general case
2679 * configure: Regenerate.
2681 2011-04-28 Joseph Myers <joseph@codesourcery.com>
2683 * configure.ac (*-*-dragonfly*, *-*-freebsd*, *-*-netbsd*,
2684 alpha*-dec-osf*, alpha*-*-linux*, alpha*-*-*, sh-*-linux*,
2685 arm-*-elf* | arm*-*-eabi*, arm*-*-linux-gnueabi, frv-*-*): Remove
2686 cases in libgcj-disabling case statement.
2687 (hppa*64*-*-linux*): Set unsupported_languages instead of
2688 disabling target-zlib.
2689 (hppa*64*-*-*): Restrict case in libgcj-disabling case statement
2690 to hppa*64*-*-hpux*.
2691 (hppa*-*-*): Restrict case in libgcj-disabling case statement to
2693 (ia64*-*-elf*, ia64*-**-hpux*, i[[3456789]]86-*-elf,
2694 i[[3456789]]86-*-linux*, *-*-cygwin*, i[[3456789]]86-*-interix*,
2695 i[[3456789]]86-*-solaris2*, m32r-*-*, m68k-*-elf*, m68*-*-* |
2696 fido-*-*, powerpc-*-eabi, powerpc-*-eabi* | powerpcle-*-eabi* |
2697 powerpc-*-rtems*, mips*-*-linux*, mips*-*-*, sh-*-* | sh64-*-*,
2698 sparc-*-elf*, sparc64-*-elf*, sparc-*-solaris* |
2699 sparc64-*-solaris* | sparcv9-*-solaris*, *-*-linux* | *-*-gnu* |
2700 *-*-k*bsd*-gnu | *-*-kopensolaris*-gnu, *-*-*): Remove cases in
2701 libgcj-disabling case statement.
2702 * configure: Regenerate.
2704 2011-04-28 Joseph Myers <joseph@codesourcery.com>
2706 * configure.ac: Disable Java for targets not supporting libffi.
2707 (*-*-chorusos, *-*-kaos*, am33_2.0-*-linux*, sh*-*-pe|mips*-*-pe):
2708 Remove cases in Java-disabling statement.
2709 (*arm-wince-pe): Change to arm-wince-pe.
2710 (arc-*-*, arm-*-coff, arm-*-pe*, arm-*-riscix*, avr-*-*): Remove
2711 cases in Java-disabling statement.
2712 (bfin-*-*): Don't disable Java again.
2713 (c4x-*-* | tic4x-*-*, tic54x-*-*, cr16-*-*, d10v-*-*, d30v-*-*,
2714 fr30-*-elf*, moxie-*-*, h8300*-*-*, h8500-*-*, hppa1.1-*-osf* |
2715 hppa1.1-*-bsd*, hppa*-*-*elf* | hppa*-*-lites* | hppa*-*-openbsd*,
2716 hppa*-*-pro*, i960-*-*, i[[3456789]]86-*-coff,
2717 i[[3456789]]86-*-pe, i[[3456789]]86-*-sco3.2v5*,
2718 i[[3456789]]86-*-sco*, i[[3456789]]86-*-sysv4*,
2719 i[[3456789]]86-*-beos*, i[[3456789]]86-*-rdos*,
2720 m68hc11-*-*|m6811-*-*|m68hc12-*-*|m6812-*-*): Remove cases in
2721 Java-disabling statement.
2722 (mmix-*-*): Don't disable Java again.
2723 (mt-*-*, powerpc*-*-winnt* | powerpc*-*-pe*, powerpcle-*-solaris*,
2724 powerpc-*-beos*, rs6000-*-lynxos*, rs6000-*-*, m68k-apollo-*,
2725 microblaze*, mips*-sde-elf*, mips*-*-irix5*, mips*-*-bsd*,
2726 sparclet-*-aout* | sparc86x-*-*, sparclite-*-*, sparc-*-sunos4*,
2727 tic6x-*-*, v810-*-*, vax-*-*): Remove cases in Java-disabling
2729 * configure: Regenerate.
2731 2011-04-28 Joseph Myers <joseph@codesourcery.com>
2735 2011-04-18 Jack Howarth <howarth@bromo.med.uc.edu>
2738 * configure.ac: Re-enable LTO on *-apple-darwin9*.
2739 * configure: Regenerate.
2741 2011-04-28 Joseph Myers <joseph@codesourcery.com>
2743 * configure.ac: Separate cases disabling Java and Java libraries
2744 from general case over targets.
2745 * configure: Regenerate.
2747 2011-04-06 Joseph Myers <joseph@codesourcery.com>
2749 * configure.ac (build_tools): Remove build-byacc.
2750 (host_libs): Remove mmalloc.
2751 (host_tools): Remove byacc make patch prms send-pr ash bash bzip2
2752 autoconf automake libtool diff rcs fileutils shellutils time
2753 textutils wdiff find uudecode hello tar gzip indent recode release
2754 sed perl gawk findutils gettext zip.
2755 (libgcj): Remove target-qthreads.
2756 (target_tools): Remove target-examples target-gperf.
2757 (YACC): Don't handle building byacc.
2758 * configure: Regenerate.
2759 * Makefile.def (ash, autoconf, automake, bash, byacc, bzip2, diff,
2760 dosutils, examples, fileutils, find, findutils, gawk, gettext,
2761 gnuserv, gperf, gzip, hello, indent, libtool, make, mmalloc,
2762 patch, perl, prms, qthreads, rcs, recode, release, sed, send-pr,
2763 shellutils, tar, textutils, time, uudecode, wdiff, zip): Don't
2764 handle building components.
2765 * Makefile.in: Regenerate.
2767 2011-04-05 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
2769 * config.sub: Sync from upstream.
2771 2011-04-01 Joseph Myers <joseph@codesourcery.com>
2773 * configure.ac (avr-*-*): Add comment about why libssp is disabled.
2774 (microblaze*): Don't disable libssp.
2775 * configure: Regenerate.
2777 2011-04-01 Joseph Myers <joseph@codesourcery.com>
2779 * configure.ac: Remove code setting CONFIG_SHELL, config_shell and
2781 * configure: Regenerate.
2782 * Makefile.tpl: Use @SHELL@ not @config_shell@.
2783 * Makefile.in: Regenerate.
2785 2011-04-01 Joseph Myers <joseph@codesourcery.com>
2787 * configure.ac (*-*-sysv4*): Don't enable libgomp.
2788 (alpha*-*-*vms*, i[[34567]]86-*-sco3.2v5*, mn10300-*-*,
2789 powerpc-*-chorusos*, powerpc*-*-eabi*, powerpc*-*-sysv*,
2790 powerpc*-*-kaos*, s390x-ibm-tpf*, sparc64-*-elf*, v850*-*-*,
2791 xtensa*-*-elf*, *-*-beos*, *-*-elf*, *-*-netware*, *-*-rtems*,
2792 *-*-sysv[[45]]*, *-*-vxworks*, *-wrs-windiss): Remove
2793 md_exec_prefix cases.
2794 * configure: Regenerate.
2796 2011-04-01 Joseph Myers <joseph@codesourcery.com>
2798 * configure.ac: Separate cases disabling target-libssp,
2799 target-libiberty, target-libstdc++-v3 and Fortran from general
2801 * configure: Regenerate.
2803 2011-04-01 Joseph Myers <joseph@codesourcery.com>
2805 * configure.ac (*-*-chorusos): Don't disable libgcj.
2806 (*-*-freebsd[[12]] | *-*-freebsd[[12]].* | *-*-freebsd*aout*):
2808 (*-*-kaos*): Don't disable GCC libraries, zlib or fastjar.
2809 (arm-*-coff): Don't disable libgcj.
2810 (arm*-*-linux-gnueabi): Remove useless assignment.
2811 (arm-*-riscix*): Don't disable libgcj.
2812 (bfin-*-*): Don't enable target-bsp and target-cygmon depending on
2814 (c4x-*-* | tic4x-*-*): Don't disable GCC libraries.
2815 (c54x*-*-*): Remove case.
2816 (tic54x-*-*): Don't disable GCC or GCC libraries.
2817 (cris-*-* | crisv32-*-*): Don't handle *-*-aout. Change *-*-elf
2819 (d10v-*-*): Don't disable GCC libraries.
2820 (d30v-*-*): Don't disable libgcj.
2821 (h8500-*-*): Don't disable GCC libraries.
2822 (i960-*-*): Don't disable libgcj.
2823 (i[[3456789]]86-*-linux*): Don't handle *-*-*libc1*.
2824 (i[[3456789]]86-*-sco3.2v5*, i[[3456789]]86-*-sco*,
2825 i[[3456789]]86-*-sysv4*, i[[3456789]]86-*-beos*): Don't disable
2827 (m68k-*-coff*): Remove case.
2828 (mmix-*-*): Don't disable libgloss on host.
2829 (mn10200-*-*, mn10300-*-*): Remove cases.
2830 (powerpc*-*-winnt* | powerpc*-*-pe*, powerpcle-*-solaris*,
2831 powerpc-*-beos*, m68k-apollo-*, mips*-*-irix5*, mips*-*-bsd*):
2832 Don't disable libgcj.
2833 (romp-*-*): Remove case.
2834 (sparclite-*-*, sparc-*-sunos4*): Don't disable libgcj.
2835 (sparc-*-solaris2.[[0-6]] | sparc-*-solaris2.[[0-6]].*): Remove
2837 (v810-*-*): Don't disable GCC libraries.
2838 (v850*-*-*, vax-*-vms, xtensa*-*-*): Remove cases.
2839 (ip2k-*-*): Don't disable GCC libraries.
2840 * configure: Regenerate.
2842 2011-03-28 Joseph Myers <joseph@codesourcery.com>
2844 * configure.ac (i[[3456789]]86-*-msdosdjgpp*): Don't disable
2846 (x86_64-*-mingw*, i[[3456789]]86-*-mingw32*): Don't disable newlib
2848 (c54x*-*-* | tic54x-*-*): Don't disable newlib on host.
2849 * configure: Regenerate.
2851 2011-03-26 John Marino <binutils@marino.st>
2853 * configure.ac: Add support for *-*-dragonfly*
2854 * configure: Regenerate.
2856 2011-03-25 Joseph Myers <joseph@codesourcery.com>
2858 * configure.ac (native_only): Remove.
2859 (i[[3456789]]86-*-msdosdjgpp*): Don't disable expect dejagnu
2860 send-pr uudecode guile gnuserv on host.
2861 (x86_64-*-mingw*): Don't disable expect dejagnu autoconf automake
2862 send-pr rcs guile perl texinfo libtool on host.
2863 (i[[3456789]]86-*-mingw32*): Don't disable expect dejagnu autoconf
2864 automake send-pr rcs guile perl texinfo libtool on host.
2865 (*-*-cygwin*, *-*-netbsd*): Remove host cases.
2866 (*-*-kaos*): Don't disable target-examples target-gperf on target.
2867 (alpha*-dec-osf*): Don't disable fileutils on target.
2868 (sh*-*-pe|mips*-*-pe|*arm-wince-pe): Don't disable target-examples
2869 texinfo send-pr expect dejagnu on target.
2870 (arm-*-elf* | arm*-*-eabi*, arm*-*-linux-gnueabi): Don't disable
2871 target-qthreads on target.
2872 (hppa*-hp-hpux11*, hppa*-*-*): Don't disable shellutils on target.
2873 (ia64*-*-elf*, ia64*-*-*vms*): Don't disable mmalloc on target.
2874 (i[[3456789]]86-w64-mingw*, i[[3456789]]86-*-mingw*,
2875 x86_64-*-mingw*): Don't disable expect on target.
2876 (*-*-cygwin*): Don't disable target-gperf on target.
2877 (powerpc*-*-winnt* | powerpc*-*-pe*): Don't disable make expect
2879 (powerpcle-*-solaris*): Don't disable make expect gnuserv on
2881 * configure: Regenerate.
2883 2011-03-25 Joseph Myers <joseph@codesourcery.com>
2885 * configure.ac (target_tools): Remove target-groff.
2886 (native_only): Remove target-groff.
2887 (hppa*64*-*-*): Don't disable byacc.
2888 (i[[3456789]]86-*-mingw32*): Remove commented-out noconfigdirs
2890 (*-*-kaos*): Don't skip target-librx and target-groff.
2891 (*-*-netware*): Don't skip target-libmudflap.
2892 (*-*-tpf*): Don't skip target-libmudflap.
2893 (sh*-*-pe|mips*-*-pe|*arm-wince-pe): Don't condition configured
2894 directories on the host.
2895 (ia64*-*-*vms*): Don't skip tix.
2896 (sh-*-* | sh64-*-*): Don't condition skipped directories on the
2898 * configure: Regenerate.
2900 2011-03-24 Paolo Bonzini <pbonzini@redhat.com>
2902 * configure.ac: Remove references to mt-mep, mt-netware,
2904 * Makefile.def: Add all-utils soft dependencies.
2905 * Makefile.tpl: Remove GDB_NLM_DEPS.
2906 * configure: Regenerate.
2907 * Makefile.in: Regenerate.
2909 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2913 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2915 * configure.ac: Do not include mh-x86omitfp.
2916 * configure: Regenerate.
2918 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2920 * configure.ac: Remove empty cases.
2921 * configure: Regenerate.
2923 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2925 * Makefile.def: Add dependency from termcap to gdb.
2926 * Makefile.in: Regenerate.
2928 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2930 * configure.ac: Remove all mentions of mh-sysv4 and mh-solaris.
2931 * configure: Regenerate.
2932 * Makefile.def: Remove all mentions of X11_FLAGS_TO_PASS.
2933 * Makefile.tpl: Likewise.
2934 * Makefile.in: Regenerate.
2936 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2938 * configure.ac: Remove all mentions of tentative_cc.
2939 * configure: Regenerate.
2941 2011-03-16 Jack Howarth <howarth@bromo.med.uc.edu>
2944 * configure.ac: Re-enable LTO on *-apple-darwin9.
2945 * configure: Regenerate.
2947 2011-03-24 Joseph Myers <joseph@codesourcery.com>
2949 * configure.ac (i[[3456789]]86-*-vsta, i[[3456789]]86-*-go32*,
2950 i[[3456789]]86-*-beos*, powerpc-*-beos*, m68k-hp-hpux*,
2951 m68k-apollo-sysv*, m68k-apollo-bsd*, m88k-dg-dgux*,
2952 m88k-harris-cxux*, m88k-motorola-sysv*, mips*-dec-ultrix*,
2953 mips*-nec-sysv4*, mips*-sgi-irix4*, mips*-*-sysv4*, mips*-*-sysv*,
2954 i370-ibm-opened*, i[[3456789]]86-*-sysv5*, i[[3456789]]86-*-dgux*,
2955 i[[3456789]]86-ncr-sysv4.3*, i[[3456789]]86-ncr-sysv4*,
2956 i[[3456789]]86-*-sco3.2v5*, i[[3456789]]86-*-sco*,
2957 i[[3456789]]86-*-udk*, vax-*-ultrix2*, m68k-sun-sunos*,
2958 hppa*-*-hiux*, *-*-hiux*, rs6000-*-lynxos*, *-*-sysv4*,
2959 *-*-rhapsody*): Remove host cases.
2960 * configure: Regenerate.
2962 2011-03-24 Joseph Myers <joseph@codesourcery.com>
2964 * configure.ac (ppc*-*-pe): Remove host case.
2965 (strongarm-*-coff | xscale-*-coff, strongarm-*-elf* |
2966 xscale-*-elf*, thumb-*-coff, thumb-*-elf, thumb-*-pe, ep9312-*-elf
2967 | ep9312-*-coff, parisc*64*-*-linux*, ppc*-*-pe): Remove target
2969 * configure: Regenerate.
2971 2011-03-24 Joseph Myers <joseph@codesourcery.com>
2973 * config.sub: Update to version 2011-03-23.
2975 2011-03-22 Joseph Myers <joseph@codesourcery.com>
2977 * configure.ac (arm-semi-aof, crx-*-*, parisc*-*-linux*,
2978 i370-*-opened*, i[[3456789]]86-moss-msdos | i[[3456789]]86-*-moss*
2979 | i[[3456789]]86-*-uwin*, mcore-*-pe*): Remove empty cases.
2980 * configure: Regenerate.
2982 2011-03-22 Joseph Myers <joseph@codesourcery.com>
2984 * config-ml.in: Don't handle arc-*-elf*.
2985 * configure.ac (arc-*-*, crx-*-*, i[[3456789]]86-*-pe,
2986 m68hc11-*-*|m6811-*-*|m68hc12-*-*|m6812-*-*, mcore-*-pe*): Don't
2987 handle GCC libraries.
2988 * configure: Regenerate.
2990 2011-03-21 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2993 * configure.ac (pwllib): Use LIBS instead of LDFLAGS.
2994 Add -lstdc++ -lm to LIBS.
2995 * configure: Regenerate.
2997 2011-03-18 David Edelsohn <dje.gcc@gmail.com>
2999 * config.guess: Update to version 2011-02-02
3000 * config.sub: Update to version 2011-02-24
3002 2011-03-03 Sebastian Pop <sebastian.pop@amd.com>
3004 * configure.ac: Adjust test of with_ppl.
3005 * configure: Regenerated.
3007 2011-03-02 Sebastian Pop <sebastian.pop@amd.com>
3009 * configure.ac: Add -lpwl to ppllibs.
3010 * config/cloog.m4: Add -lisl to clooglibs.
3011 * configure: Regenerated.
3013 2011-02-13 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3015 Import from Libtool and gnulib:
3017 2011-01-27 Gerald Pfeifer <gerald@pfeifer.com>
3019 Prepare for supporting FreeBSD 10.
3020 * config.rpath: Remove handling of freebsd1* which soon would
3023 2011-01-20 Gerald Pfeifer <gerald@pfeifer.com> (tiny change)
3025 Remove support for FreeBSD 1.x.
3026 * libtool.m4 (_LT_LINKER_SHLIBS)
3027 (_LT_SYS_DYNAMIC_LINKER): Remove handling of freebsd1* which
3028 soon would incorrectly match FreeBSD 10.0.
3030 2011-02-12 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3033 * MAINTAINERS (mkinstalldirs): Comes from Automake.
3034 (move-if-change): Comes from gnulib.
3035 * move-if-change: Import version from gnulib.
3037 2011-02-12 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3041 2011-02-12 Alexandre Oliva <aoliva@redhat.com>
3044 * Makefile.def (lto-plugin): Double dash for enable-shared.
3045 (configure-gcc): Depend on all-lto-plugin.
3046 * Makefile.in: Rebuilt.
3048 2011-02-11 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3050 * configure.ac: Remove extra bracket.
3051 * configure: Regenerate.
3053 2011-02-06 Kai Tietz <kai.tietz@onevision.com>
3056 * Makefile.def: Add dependency for install-gcc
3057 on install-lto-plugin.
3058 * Makfile.in: Regenerated
3060 2011-01-25 Jakub Jelinek <jakub@redhat.com>
3062 * configure.ac: If with_ppl is no, move setting with_cloog=no
3063 after CLOOG_REQUESTED check.
3064 * configure: Regenerated.
3066 2011-01-25 Sebastian Pop <sebastian.pop@amd.com>
3068 * configure.ac: Call AC_MSG_ERROR when PPL 0.11 is not present and
3069 CLooG has been requested.
3070 * configure: Regenerated.
3072 2011-01-25 Sebastian Pop <sebastian.pop@amd.com>
3074 * configure: Regenerated.
3075 * configure.ac: Check for version 0.11 (or later revision) of PPL.
3077 2011-01-25 Tobias Grosser <grosser@fim.uni-passau.de>
3079 * configure: Regenerated.
3080 * configure.ac: Use CLOOG_CHECK_VERSION(0,16,1).
3082 2011-01-07 Jan Hubicka <jh@suse.cz>
3085 * Makefile.in: Regenerate.
3086 * Makefile.def (lto-plugin): Always pass enable-shared to the plugin
3089 2011-01-31 Alexandre Oliva <aoliva@redhat.com>
3092 * configure.ac: Discard --with-* flags for host when configuring
3093 target libraries for cross build.
3094 * configure: Rebuilt.
3096 2011-01-21 Andreas Schwab <schwab@redhat.com>
3100 2011-01-21 Andreas Schwab <schwab@redhat.com>
3102 * configure.ac: Use AS_HELP_STRING throughout.
3103 * configure: Regenerate.
3105 2011-01-18 Jie Zhang <jie.zhang@analog.com>
3107 * configure.ac (bfin-*-*): Remove gdb from noconfigdirs.
3108 * configure: Regenerate.
3110 2010-12-10 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
3112 * ltmain.sh (relink): Use absolute path when hardcoding with -L.
3114 2011-01-13 Joel Brobecker <brobecker@adacore.com>
3116 * configure.ac: Remove readline, mmalloc, and gdb from noconfigdirs
3118 * configure: Regenerate.
3120 2011-01-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3123 2010-12-22 Hariharan Sandanagobalane <hariharan@picochip.com>
3125 * configure.ac: (picochip): Disable libiberty.
3126 * configure: Regenerate.
3128 2010-12-18 Jeff Johnston <jjohnstn@redhat.com>
3130 * COPYING.LIBGLOSS: Remove the GPL for fr30 target.
3132 2010-12-10 Ian Lance Taylor <iant@google.com>
3135 * configure.ac: For --disable-libgcj clear libgcj_saved.
3136 * configure: Rebuild.
3138 2010-12-10 Tobias Burnus <burnus@net-b.de>
3141 * configure.ac: Add --disable-libquadmath and
3142 --disable-libquadmath-support.
3143 * configure: Regenerate.
3145 2010-12-10 Tristan Gingold <gingold@adacore.com>
3147 * src-release (ETC_SUPPORT): add gnu-oids.texi
3149 2010-12-03 Hans-Peter Nilsson <hp@axis.com>
3152 * configure.ac (cris-*-elf, crisv32-*-elf): Disable target-libffi.
3153 * configure: Regenerate.
3155 2010-12-02 Ian Lance Taylor <iant@google.com>
3157 * configure.ac: Always set default for poststage1_ldflags to
3158 -static-libstdc++ -static-libgcc.
3160 2010-12-02 Jeff Johnston <jjohnstn@redhat.com>
3162 * COPYING.NEWLIB: Add National Semiconductor notice.
3164 2010-11-29 Andreas Schwab <schwab@redhat.com>
3166 * configure.ac: Move comment to remove extra space in last argument
3169 2010-11-26 Alexandre Oliva <aoliva@redhat.com>
3172 * configure.ac (CXX_FOR_TARGET): Add -funconfigured-libstdc++-v3.
3173 * Makefile.def (CXX_FOR_TARGET): Removed from flags_to_pass.
3174 * Makefile.tpl (CXX_FOR_TARGET_FLAG_TO_PASS): New.
3175 (BASE_FLAGS_TO_PASS): Use it.
3176 * configure: Rebuilt.
3177 * Makefile.in: Rebuilt.
3179 2010-11-23 H.J. Lu <hongjiu.lu@intel.com>
3182 * configure.ac: Correct comments for --enable-gold/--enable-ld.
3183 Properly check default linker.
3184 * configure: Regnerated.
3186 2010-11-23 Matthias Klose <doko@ubuntu.com>
3188 * configure.ac: For --enable-gold, handle value `default' instead of
3189 `both*'. New configure option --{en,dis}able-ld.
3190 * configure: Regenerate.
3192 2010-11-20 Ian Lance Taylor <iant@google.com>
3194 * configure.ac: Only disable a language library if no language needs
3195 it. Don't let --disable-libgcj uncondtionally disable libffi.
3196 * configure: Rebuild.
3198 2010-11-20 Paolo Bonzini <bonzini@gnu.org>
3200 * configure: Regenerate.
3202 2010-11-20 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3205 * configure.ac: Fix just-built in-tree STRIP name to be
3207 * configure: Regenerate.
3208 * Makefile.def (install-strip-gcc, install-strip-binutils)
3209 (install-strip-opcodes, install-strip-ld, install-strip-itcl)
3210 (install-strip-sid): Mirror dependencies on non-strip variants
3211 of these targets on the respective -strip prerequisites.
3212 * Makefile.tpl (install-strip, install-strip-host)
3213 (install-strip-target): New targets.
3214 (install-strip-[+module+], install-strip-target-[+module+]):
3216 * Makefile.in: Regenerate.
3218 2010-11-19 Ian Lance Taylor <iant@google.com>
3219 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3221 * configure.ac: Add target-libgo to target_libraries. Set
3222 and substitute GOC_FOR_BUILD and GOC_FOR_TARGET.
3223 * Makefile.tpl (BUILD_EXPORTS): Add GOC and GOCFLAGS.
3224 (HOST_EXPORTS): Add GOC.
3225 (BASE_TARGET_EXPORTS): Add GOC.
3226 (GOC_FOR_BUILD, GOCFLAGS, GOC_FOR_TARGET): New variables.
3227 (GOCFLAGS_FOR_TARGET): New variable.
3228 (EXTRA_HOST_FLAGS): Add GOC.
3229 (EXTRA_TARGET_FLAGS): Add GOC and GOCFLAGS.
3230 * Makefile.def (target_modules): Add libgo.
3231 (flags_to_pass): Add GOC_FOR_TARGET and GOCFLAGS_FOR_TARGET.
3232 (dependencies): Add dependency from configure-target-libgo to
3233 configure-target-libffi and all-target-libstdc++-v3. Add
3234 dependencies from all-target-libgo to all-target-libffi.
3235 (languages): Add go.
3236 * configure: Rebuild.
3237 * Makefile.in: Rebuild.
3239 2010-11-19 Ian Lance Taylor <iant@google.com>
3241 * config-ml.in: Add Go support: treat GOC and GOCFLAGS like other
3242 compiler/flag environment variables.
3244 2010-11-18 Ian Lance Taylor <iant@google.com>
3246 * configure.ac: Check for lang_requires_boot_languages in
3247 config-lang.in files.
3248 * configure: Rebuild.
3250 2010-11-17 Mike Frysinger <vapier@gentoo.org>
3252 * .gitignore: New file.
3254 2010-11-16 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
3255 Tobias Burnus <burnus@net-b.de>
3258 * Makefile.def: Add libquadmath; build it with language=fortran.
3259 * configure.ac: Add libquadmath.
3260 * Makefile.tpl: Handle multiple libs in check-[+language+].
3261 * Makefile.in: Regenerate.
3262 * configure: Regenerate.
3264 2010-11-15 Andreas Schwab <schwab@redhat.com>
3266 * configure.ac: Fix spelling in option names.
3267 * configure: Regenerated.
3269 2010-11-13 Georg-Johann Lay <georgjohann@web.de>
3272 * configure.ac (FLAGS_FOR_TARGET): Add include-fixed path.
3273 * configure: Regenerated.
3275 2010-11-12 Tobias Grosser <grosser@fim.uni-passau.de>
3277 * config/cloog.m4: Add -enable-cloog-backend=(isl|ppl|ppl-legacy) to
3278 define the cloog backend to use. Furthermore, only pass the ppllibs to
3279 the configure checks, if necessary.
3280 * configure: Regenerate.
3282 2010-11-12 Tobias Grosser <grosser@fim.uni-passau.de>
3284 * config/cloog.m4: Use CLooG predefined macro to check for CLooG PPL.
3285 * configure: regenerate
3287 2010-11-12 Tobias Grosser <grosser@fim.uni-passau.de>
3289 * config/cloog.m4: Fix typo. verison -> version.
3290 * configure: Regenerate.
3292 2010-11-12 Tobias Grosser <grosser@fim.uni-passau.de>
3294 * config/cloog.m4: Pass ppl libraries to the CLooG version check.
3295 * configure: Regenerate.
3297 2010-11-11 Andreas Simbuerger <simbuerg@fim.uni-passau.de>
3299 * configure.ac: Support official CLooG.org versions.
3300 * configure: Regenerate.
3301 * config/cloog.m4: New.
3303 2010-11-05 Michael Eager <eager@eagercon.com>
3305 * COPYING.LIBGLOSS: Correct typo in microblaze.
3306 * COPYING.NEWLIB: Same.
3308 2010-11-04 Iain Sandoe <iains@gcc.gnu.org>
3310 * configure.ac (*-*-darwin*): Use mh-darwin for all Darwin variants.
3311 * configure: Regenerate.
3313 2010-11-03 Ian Lance Taylor <iant@google.com>
3314 Dave Korn <dave.korn.cygwin@gmail.com>
3317 * configure.ac: Remove libelf tests. Build lto-plugin on ELF always
3318 and on other supported platforms whenever LTO is enabled.
3319 * configure: Rebuild.
3321 2010-11-02 Alan Modra <amodra@gmail.com>
3324 * configure.ac: Error when source path contains spaces.
3325 * configure: Regenerate.
3327 2010-10-20 Ian Lance Taylor <iant@google.com>
3329 * Makefile.def (target_modules): Set lib_path to src/.libs for
3330 libstdc++-v3 module.
3331 * Makefile.tpl: Fix typo in TARGET_LIB_PATH comment.
3332 * Makefile.in: Rebuild.
3334 2010-10-08 Bernd Schmidt <bernds@codesourcery.com>
3335 Joseph Myers <joseph@codesourcery.com>
3337 * COPYING.LIBGLOSS: Add National Semiconductor and CodeSourcery
3339 * COPYING.NEWLIB: Add Texas Instruments notice.
3341 2010-10-07 Dave Korn <dave.korn.cygwin@gmail.com>
3343 * configure.ac (build_lto_plugin): New shell variable.
3344 (--enable-lto): Turn on by default for all non-ELF platforms that
3345 have had LTO support added so far. Set build_lto_plugin appropriately
3346 for both ELF and non-ELF.
3347 (configdirs): Add lto-plugin or not based on build_lto_plugin.
3348 * configure: Regenerate.
3350 2010-10-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3354 * configure.ac: Honor initial values of $build_configargs,
3355 $host_configargs, $target_configargs. Mark the precious, so
3356 environment settings get recorded.
3357 * configure: Regenerate.
3359 2010-10-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3363 2010-09-30 Michael Eager <eager@eagercon.com>
3365 * configure.ac (microblaze): Add target-libssp to noconfigdirs.
3366 * configure: Regenerate.
3368 2010-09-21 Iain Sandoe <iains@gcc.gnu.org>
3370 * configure.ac (enable-lto): Add Darwin to the list of supported lto
3371 targets and amend comment.
3372 * configure: Regenerate.
3374 2010-09-03 Jack Howarth <howarth@bromo.med.uc.edu>
3376 * configure.ac: Enable LTO by default on Darwin.
3377 * configure: Regenerate.
3379 2010-07-23 Marc Glisse <marc.glisse@normalesup.org>
3382 * configure.ac (extra_mpfr_configure_flags): Copy from
3383 extra_mpc_gmp_configure_flags.
3384 * configure: Re-generated.
3386 2010-09-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3391 * Makefile.def (info-gcc, dvi-gcc, pdf-gcc, html-gcc):
3392 Depend on all-build-libiberty.
3393 * Makefile.in: Regenerate.
3395 2010-09-27 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3400 * configure.ac: Fix unportable shell quoting.
3401 * configure: Regenerate.
3403 2010-07-26 Naveen.H.S <naveen.S@kpitcummins.com>
3405 * configure.ac: Support all v850 targets.
3406 * configure: Regenerate.
3408 2010-07-17 Jack Howarth <howarth@bromo.med.uc.edu>
3411 * Makefile.tpl (POSTSTAGE1_CXX_EXPORT):
3412 Provide -B option to allow for link spec %s substitutions for
3413 libstdc++.a on darwin.
3414 * Makefile.in: Regenerate.
3416 2010-06-10 Alexandre Oliva <aoliva@redhat.com>
3418 * Makefile.def (configure-gcc): Depend on all-libelf.
3419 * Makefile.in: Rebuild.
3421 2010-06-01 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3423 * config.sub, config.guess: Update from upstream sources.
3425 2010-06-01 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3429 2010-05-05 Sebastian Pop <sebastian.pop@amd.com>
3430 * configure.ac: Allow all the versions greater than 0.10 of PPL.
3431 * configure: Regenerated.
3433 2010-04-20 Eric Botcazou <ebotcazou@adacore.com>
3434 * configure.ac (BUILD_CONFIG): Redirect output to /dev/null.
3435 * configure: Regenerate.
3437 2010-04-17 Ralf Cors<E9>pius <ralf.corsepius@rtems.org>
3438 * configure.ac (*-*-rtems*): Add target-libiberty to $skipdirs.
3439 * configure: Regenerate.
3441 2010-04-16 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3442 * configure.ac: Check for elf_getshdrstrndx or elf_getshstrndx
3444 * configure: Regenerate.
3446 2010-04-13 Steve Ellcey <sje@cup.hp.com>
3447 * configure: Regenerate after change to elf.m4.
3449 2010-04-02 Sebastian Pop <sebastian.pop@amd.com>
3450 * configure.ac: Add brackets around AC_TRY_COMPILE alternative.
3451 * configure: Regenerated.
3453 2010-04-02 Sebastian Pop <sebastian.pop@amd.com>
3454 * configure.ac: Print "buggy but acceptable" when CLooG
3455 revision is less than 9.
3456 * configure: Regenerated.
3458 2010-05-26 Dave Korn <dave.korn.cygwin@gmail.com>
3462 2010-05-18 Steven Bosscher <steven@gcc.gnu.org>
3463 * configure.ac (--enable-lto): All *-apple-darwin* now support LTO.
3464 * configure: Regenerate.
3466 2010-05-07 Steven Bosscher <steven@gcc.gnu.org>
3467 * configure.ac (--enable-lto): Add x86_64-apple-darwin* as
3468 a platform that supports LTO.
3469 * configure: Regenerate.
3471 2010-04-27 Dave Korn <dave.korn.cygwin@gmail.com>
3473 * configure.ac (--enable-lto): Refactor handling so libelf tests
3474 are only performed inside then-clause of ACX_ELF_TARGET_IFELSE,
3475 and allow LTO to be explicitly enabled on non-ELF platforms that
3476 are known to support it inside else-clause.
3477 * configure: Regenerate.
3479 2010-04-27 Roland McGrath <roland@redhat.com>
3480 H.J. Lu <hongjiu.lu@intel.com>
3482 * configure.ac (--enable-gold): Support both, both/gold and
3483 both/bfd to add gold to configdirs without removing ld.
3484 * configure: Regenerated.
3486 * Makefile.def: Add install-gold dependency to install-ld.
3487 * Makefile.in: Regenerated.
3489 2010-04-14 Tristan Gingold <gingold@adacore.com>
3491 * configure.ac (alpha*-*-*vms*): Remove ld from noconfigdirs.
3492 * configure: Regenerate.
3494 2010-04-08 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3500 2010-03-31 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3501 * configure.ac: Do not pass --enable-multilib nor
3502 --disable-multilib in baseargs. Accept explicitly passed
3504 * configure: Regenerate.
3506 2010-03-31 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3509 * configure.ac: Do not pass --enable-multilib nor
3510 --disable-multilib in baseargs. Accept explicitly passed
3512 * configure: Regenerate.
3514 2010-03-23 Joseph Myers <joseph@codesourcery.com>
3516 * configure.ac (tic6x-*-*): New case.
3517 * configure: Regenerate.
3519 2010-03-23 Joseph Myers <joseph@codesourcery.com>
3522 2010-03-19 Jack Howarth <howarth@bromo.med.uc.edu>
3524 * configure.ac: Only pass -c to ranlib for darwin9 and earlier.
3525 * configure: Regenerate.
3527 2010-03-23 Joseph Myers <joseph@codesourcery.com>
3529 * config.sub: Update to version 2010-03-22.
3530 * config.guess: Update to version 2009-12-30.
3532 2010-03-14 Joseph Myers <joseph@codesourcery.com>
3535 2010-01-11 Richard Guenther <rguenther@suse.de>
3537 * Makefile.def (all-lto-plugin): Depend on all-gcc.
3538 * Makefile.in: Regenerated.
3540 2010-03-01 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3543 * configure.ac (RANLIB): Default to true.
3545 (RANLIB_FOR_TARGET): Remove superfluous : argument.
3546 * configure: Regenerate.
3548 2010-02-17 Nick Clifton <nickc@redhat.com>
3551 * Makefile.tpl (local-distclean): Also remove config.cache files in
3552 sub-directories as there may not be Makefiles present in the
3554 * Makefile.tpl: Use "-exec rm {}" rather than "-delete" to delete
3555 the config.cache files found by the find command.
3557 * Makefile.in: Regenerate.
3558 * configure.ac: Revert previous delta.
3559 * configure: Regenerate.
3561 2010-02-15 Nick Clifton <nickc@redhat.com>
3564 * configure.ac: Delete config.cache files in sub-directories when
3566 * configure: Regenerate.
3568 2010-02-15 Nick Clifton <nickc@redhat.com>
3570 * configure.ac: Sync from gcc.
3571 * configure: Regenerate.
3573 2010-01-31 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3576 * configure.ac: Add "recommended" version checks for GMP/MPC.
3577 Update recommended GMP/MPFR/MPC versions.
3578 * configure: Regenerate.
3580 2010-01-25 Joern Rennecke <amylaar@spamcop.net>
3582 gcc PR libstdc++/36101, gcc PR libstdc++/42813
3583 * configure.ac (bootstrap_target_libs): Make inclusion of
3584 target-libgomp conditional on libgomb being in target_configdirs.
3585 * configure: Regenerate.
3587 2010-01-23 Joern Rennecke <amylaar@spamcop.net>
3589 gcc PR libstdc++/36101, gcc PR libstdc++/42813
3590 * configure.ac (bootstrap_target_libs): Include target-libgomp.
3591 * configure: Regenerate.
3593 2010-01-22 Joern Rennecke <amylaar@spamcop.net>
3595 gcc PR libstdc++/36101, gcc PR libstdc++/42813
3596 * configure.ac (target_configdirs): Substitute.
3597 * Makefile.def: Bootstrap target module libgomp.
3598 Add dependency of all-target-libstdc++-v3 on configure-target-libgomp.
3599 * Makefile.tpl (TARGET_CONFIGDIRS): New makefile variable.
3600 (BASE_TARGET_EXPORTS): Export TARGET_CONFIGDIRS.
3601 * configure, Makefile.in: Regenerate.
3603 2009-12-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3605 * libtool.m4: Sync from git Libtool.
3606 * ltmain.sh: Likewise.
3607 * ltoptions.m4: Likewise.
3608 * ltversion.m4: Likewise.
3609 * lt~obsolete.m4: Likewise.
3611 2010-01-07 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3612 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
3615 * configure.ac: Include libtool m4 files.
3616 (_LT_CHECK_OBJDIR): Call it.
3617 (extra_mpc_mpfr_configure_flags, extra_mpc_gmp_configure_flags,
3618 gmplibs, ppllibs, clooglibs): Use $lt_cv_objdir.
3620 * configure: Regenerate.
3622 2010-01-07 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3625 * Makefile.tpl (BASE_TARGET_EXPORTS): Only add TARGET_LIB_PATH
3626 to $(RPATH_ENVVAR) if bootstrapping. Fix typo in comment.
3627 * Makefile.in: Regenerate.
3629 2009-12-18 Ben Elliston <bje@au.ibm.com>
3631 * config.sub, config.guess: Update from upstream sources.
3633 2009-12-17 Jeff Johnston <jjohnstn@redhat.com>
3635 * COPYING.NEWLIB: Update copyright date.
3636 * COPYING.LIBGLOSS: Ditto.
3638 2009-12-07 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3644 * configure.ac: Require MPC.
3645 * configure: Regenerate.
3647 * configure.ac: Update minimum MPC version to 0.8.
3648 * configure: Regenerate.
3650 2009-11-20 Paolo Bonzini <bonzini@gnu.org>
3652 * config.guess: Sync with upstream and gcc.
3653 * config.sub: Sync with upstream and gcc.
3655 2009-11-16 Alexandre Oliva <aoliva@redhat.com>
3657 * Makefile.def: Restore host and target settings for gmp.
3658 * Makefile.in: Rebuild.
3660 2009-11-16 Alexandre Oliva <aoliva@redhat.com>
3662 * configure.ac: Add libelf to host_libs. Enable in-tree configury
3663 of ppl and cloog. Fix in-tree configury of libelf, skip tests.
3664 Fix portability of test of C++ as bootstrap language. Add
3665 ppl/src/ppl-config.o to the bootstrap compare exclusion list.
3666 * configure: Rebuild.
3667 * Makefile.def: Drop host and target settings from gmp, mpfr, ppl,
3668 and cloog. Fix in-tree ppl configuration. Introduce libelf
3670 * Makefile.tpl (POSTSTAGE1_CXX_EXPORT): New.
3671 (POSTSTAGE1_HOST_EXPORTS): Use it.
3672 (STAGE[+id+]_CXXFLAGS): New.
3673 (BASE_FLAGS_TO_PASS): Pass it down.
3674 (configure-stage[+id+]-[+prefix+][+module+]): Use it. Add
3676 (all-stage[+id+]-[+prefix+][+module+]): Likewise.
3677 (configure-[+prefix+][+module+], all-[+prefix+][+module+]): Add
3679 * Makefile.in: Rebuild.
3681 2009-11-06 Ozkan Sezer <sezeroz@gmail.com>
3683 * configure.ac (FLAGS_FOR_TARGET): Add -L and -isystem
3684 paths for *-w64-mingw* and x86_64-*mingw*.
3685 * configure: Regenerated.
3687 2009-10-30 Kai Tietz <kai.tietz@onevision.com>
3689 * configure.ac: Disable target-winsup & co for
3690 x86_64-*-mingw* and *-w64-mingw* targets.
3691 * configure: Regenerated.
3693 2009-10-23 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3695 * configure.ac (CLooG test): Use = with test.
3696 * configure: Regenerate.
3698 2009-10-22 Richard Guenther <rguenther@suse.de>
3700 * configure.ac: Do not set LIBS for ppl/cloog checks. Disable
3701 cloog if the ppl version check failed. Move flags saving
3702 before setting in libelf check.
3703 * configure: Regenerate.
3705 2009-10-21 Richard Guenther <rguenther@suse.de>
3707 * configure.ac: Adjust the ppl and cloog configure to work as
3708 documented. Disable cloog if ppl was disabled. Omit the version
3709 checks if they were disabled.
3710 * configure: Re-generate.
3712 2009-10-13 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3714 * configure.ac: Add 'lto' to enable_languages, not
3715 new_enable_languages, and only if not already present.
3716 * configure: Regenerate.
3718 2009-10-06 Ian Lance Taylor <iant@google.com>
3720 * Makefile.def: check-gold depends upon all-gas.
3721 * Makefile.in: Rebuild.
3723 2009-10-03 2009-02-05 Rafael Avila de Espindola <espindola@google.com>
3725 * Makefile.def: all-lto-plugin depends on all-libiberty.
3726 set bootstrap=true for lto-plugin.
3728 * Makefile.in: Regenerate.
3729 * configure.ac (host_libs): Add lto-plugin.
3730 * configure: Regenerate.
3732 2009-10-03 Diego Novillo <dnovillo@google.com>
3734 * Makefile.tpl (HOST_EXPORTS): Add LIBELFLIBS and LIBELFINC.
3735 (HOST_LIBELFLIBS): Define.
3736 (HOST_LIBELFINC): Define.
3737 * Makefile.in: Regenerate.
3738 * configure.ac: Add --enable-lto.
3739 Add --with-libelf, --with-libelf-include and --with-libelf-lib.
3740 If --enable-lto is used, add 'lto' to new_enable_languages.
3741 If --enable-lto is used and gold is enabled, add
3742 lto-plugin to configdirs.
3743 * configure: Regenerate.
3745 2009-10-03 Simon Baldwin <simonb@google.com>
3747 * configure.ac: If --with-system-zlib, suppress local zlib and
3748 pass --with-system-zlib to subdir configure scripts.
3749 * configure: Regenerate.
3751 2009-10-01 Loren J. Rittle <ljrittle@acm.org>
3752 Paolo Bonzini <bonzini@gnu.org>
3754 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Use $$s rather than
3756 * Makefile.in: Rebuilt.
3758 2009-09-29 Paolo Bonzini <bonzini@gnu.org>
3761 2009-09-26 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3763 * configure.ac: Update minimum MPC version to 0.7.
3764 * configure: Regenerate.
3766 2009-09-25 Nick Clifton <nickc@redhat.com>
3768 * configure.ac: Pass any --cache-file=/dev/null option on to
3770 * configure: Regenerate.
3772 2009-09-23 Nick Clifton <nickc@redhat.com>
3774 * config.sub, config.guess: Update from upstream sources.
3776 2009-09-22 Loren J. Rittle <ljrittle@acm.org>
3778 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Remove stray $$r/.
3779 * Makefile.in: Rebuilt.
3781 2009-09-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3784 * configure.ac: Error out if $srcdir isn't '.' but contains
3785 host-${host_noncanonical}.
3786 * configure: Regenerate.
3788 2009-09-21 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3790 * configure.ac: If bootstrapping a combined tree with
3791 --enable-gold, require c++ in stage1_languages.
3792 * configure: Regenerate.
3794 * configure.ac: Also add target_libs of stage1_languages to
3795 bootstrap_target_libs.
3796 * configure: Regenerate.
3798 * configure.ac: Diagnose --enable-build-with-cxx bootstrap
3799 with --enable-languages not containing c++.
3800 * configure: Regenerate.
3802 2009-09-16 Jie Zhang <jie.zhang@analog.com>
3804 * configure.ac: Disable java and boehm-gc for bfin-*-*.
3805 * configure: Regenerate.
3807 2009-09-08 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3809 * configure.ac: Do not use $extrasub for replacing @if/@endif
3810 parts in Makefile; instead, use additional arguments to
3811 AC_CONFIG_COMMANDS to do the replacement manually, with several
3812 sed invocations, to avoid HP-UX sed command limits.
3813 * configure: Regenerate.
3815 2009-09-04 Alexandre Oliva <aoliva@redhat.com>
3817 * configure.ac (with-build-config): Document. Handle without.
3818 Handle missing argument.
3819 * configure: Rebuilt.
3821 2009-09-03 Alexandre Oliva <aoliva@redhat.com>
3823 * configure.ac (--with-build-config): New. Set BUILD_CONFIG.
3824 Default to bootstrap-debug only if compare-debug works.
3825 * configure: Rebuilt.
3826 * Makefile.tpl: Make BUILD_CONFIG configure-configurable.
3827 * Makefile.in: Rebuilt.
3829 2009-09-01 Alexandre Oliva <aoliva@redhat.com>
3831 * Makefile.tpl (BUILD_CONFIG): Default to bootstrap-debug.
3832 * Makefile.in: Rebuilt.
3834 2009-09-02 Paolo Bonzini <bonzini@gnu.org>
3836 * Makefile.tpl (AWK): Fix typo.
3837 * Makefile.in: Regenerate.
3839 2009-09-02 Paolo Bonzini <bonzini@gnu.org>
3841 * configure.ac: Detect awk and sed.
3842 * Makefile.def (flags_to_pass): Add AWK and SED.
3843 * Makefile.tpl (AWK, SED): New.
3844 (BASE_FLAGS_TO_PASS): Add AWK and SED.
3845 * configure: Regenerate.
3846 * Makefile.in: Regenerate.
3848 2009-09-01 Tristan Gingold <gingold@adacore.com>
3850 * setup.com: Ported to Itanium VMS. Can also build using DCL scripts.
3851 Remove logical names.
3853 2009-08-31 Dave Korn <dave.korn.cygwin@gmail.com>
3855 * ltmain.sh (func_normal_abspath): New function.
3856 (func_relative_path): Likewise.
3857 (func_mode_help): Document new -bindir option for link mode.
3858 (func_mode_link): Add new -bindir option, and use it to place
3859 output DLL if specified.
3861 2009-08-24 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3863 * configure.ac (AC_PREREQ): Bump to 2.64.
3865 2009-08-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3867 * README-maintainer-mode: Point directly to upstream locations
3868 for autoconf, automake, libtool, gettext, instead of copies on
3869 sources.redhat.com. Document required versions.
3870 * configure.ac: Do not substitute datarootdir, htmldir,
3871 pdfdir, docdir. Do not process --with-datarootdir,
3872 --with-htmldir, --with-pdfdir, --with-docdir.
3873 * configure: Regenerate.
3875 * configure: Regenerate.
3877 * compile: Sync from Automake 1.11.
3878 * depcomp: Likewise.
3879 * install-sh: Likewise.
3880 * missing: Likewise.
3881 * mkinstalldirs: Likewise.
3884 2009-08-19 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3886 * configure.ac: Call AC_DISABLE_OPTION_CHECKING.
3887 (baseargs): Add --disable-option-checking.
3888 * configure: Regenerate.
3890 * Makefile.def (configure-target-libiberty): Depend on
3891 all-binutils and all-ld.
3892 (configure-target-newlib): Likewise.
3893 * Makefile.in: Regenerate.
3895 2009-08-19 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3897 Sync with GCC, merge:
3899 2009-07-31 Christian Bruel <christian.bruel@st.com>
3901 * configure.ac (sh*-*-elf): Don't add target-libgloss to noconfigdirs.
3902 * configure: Regenerate.
3904 2009-07-06 Ian Lance Taylor <iant@google.com>
3906 * configure.ac: Add missing comma in AC_ARG_WITH(boot-libs).
3907 * configure: Rebuild.
3909 2009-06-26 Steve Ellcey <sje@cup.hp.com>
3912 * configure.ac (comparestring): Create new variable.
3913 * Makefile.tpl (comparestring): Use to skip some comparisions.
3914 * configure: Regenerate.
3915 * Makefile.in: Regenerate.
3917 2009-06-23 Ian Lance Taylor <iant@google.com>
3919 * configure.ac: Add --enable-build-with-cxx. When set, add c++ to
3920 boot_languages. Only bootstrap target libraries listed in
3921 target_libs for some boot language. Add --with-stage1-ldflags,
3922 --with-stage1-libs, --with-boot-ldflags, --with-boot-libs. Remove
3923 with_host_libstdcxx from ppllibs. Only add -fkeep-inline-functions
3924 if not building with C++.
3925 * Makefile.def: For target_module libstdc++-v3, set bootstrap=true.
3926 * Makefile.tpl (STAGE1_LDFLAGS, STAGE1_LIBS): New variables.
3927 (POSTSTAGE1_LDFLAGS, POSTSTAGE1_LIBS): New variables.
3928 (HOST_EXPORTS): Add STAGE1_LDFLAGS to LDFLAGS. Export HOST_LIBS.
3929 (POSTSTAGE1_HOST_EXPORTS): Set CXX and CXX_FOR_BUILD. Add
3930 POSTSTAGE1_LDFLAGS to LDFLAGS. Export HOST_LIBS.
3931 (POSTSTAGE1_FLAGS_TO_PASS): Likewise.
3932 * configure, Makefile.in: Rebuild.
3934 2009-06-08 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3936 * configure.ac: Detect MPC in default directory.
3937 * configure: Regenerate.
3939 2009-06-02 Richard Sandiford <r.sandiford@uk.ibm.com>
3941 * configure.ac (powerpc-*-aix*, rs6000-*-aix*): Add target-newlib
3943 * configure: Regenerate.
3945 2009-05-29 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3947 * Makefile.def: Add MPC support and dependencies.
3948 * configure.ac: Likewise. Reorganize GMP/MPFR checks.
3950 * Makefile.in, configure: Regenerate.
3952 2009-05-24 Nicolas Roche <roche@adacore.com>
3954 * Makefile.tpl (compare-target): Skip ./ada/*tools directories.
3955 * Makefile.in: Regenerate.
3957 2009-05-21 Dave Korn <dave.korn.cygwin@gmail.com>
3959 * configure.ac (cygwin noconfigdirs): Remove libgcj.
3960 * configure: Regenerate.
3962 2009-05-07 Dave Korn <dave.korn.cygwin@gmail.com>
3964 * configure.ac ($with_ppl): Default to no if not supplied.
3965 ($with_cloog): Likewise.
3966 configure: Regenerate.
3968 2009-04-24 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3971 * configure.ac (extra_mpfr_configure_flags): Set and AC_SUBST.
3972 * Makefile.def (module=mpfr): Use extra_mpfr_configure_flags.
3974 * configure, Makefile.in: Regenerate.
3976 2009-04-14 Jakub Jelinek <jakub@redhat.com>
3978 * configure.ac: Change copyright header to refer to version
3979 3 of the GNU General Public License and to point readers at the
3980 COPYING3 file and the FSF's license web page.
3981 * Makefile.def: Likewise.
3982 * Makefile.tpl: Likewise.
3983 * Makefile.in: Regenerate.
3985 2009-04-09 Jack Howarth <howarth@bromo.med.uc.edu>
3987 * configure.ac: Restore match for darwin9 or later. Use double
3988 brackets since regeneration eats one pair.
3989 * configure: Regenerate.
3991 2009-08-18 Christopher Faylor <me+cygwin@cgf.cx>
3993 * MAINTAINERS: Perform some obvious fixups.
3995 2009-08-17 Ben Elliston <bje@au.ibm.com>
3997 * config.sub, config.guess: Update from upstream sources.
3999 2009-08-06 Michael Eager <eager@eagercon.com>
4001 * configure.ac: Add Microblaze target.
4002 * configure: Regenerate.
4004 2009-07-02 Tristan Gingold <gingold@adacore.com>
4006 * configure.ac: Do not exclude gas for i386-*-darwin.
4007 Add a case for x86_64-*-darwin.
4008 * configure: Regenerate.
4010 2009-06-26 Doug Evans <dje@sebabeach.org>
4012 * Makefile.def (host_modules): Add cgen.
4013 * Makefile.in: Regenerate.
4014 * configure.ac (host_tools): Add cgen.
4015 * configure: Regenerate.
4017 2009-06-17 Michael Eager <eager@eagercon.com>
4019 * COPYING.LIBGLOSS: Add Xilinx license.
4021 2009-06-15 Ryan Mansfield <rmansfield@qnx.com>
4023 * configure.ac: Define is_elf for QNX Neutrino targets.
4024 * configure: Regenerate.
4026 2009-06-03 Jerome Guitton <guitton@adacore.com>
4027 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4029 * Makefile.tpl (all): Avoid a trailing backslash.
4030 * Makefile.in: Regenerate.
4032 2009-06-03 Ben Elliston <bje@au.ibm.com>
4034 * config.sub, config.guess: Update from upstream sources.
4036 2009-06-02 Alexandre Oliva <aoliva@redhat.com>
4038 * Makefile.tpl ([+compare-target+]): Compare all stage
4039 directories, rather than just gcc.
4040 * Makefile.in: Rebuilt.
4042 2009-05-28 Doug Kwan <dougkwan@google.com>
4044 * configure.ac: Support gold for target arm*-*-*.
4045 * configure: Regenerate.
4047 2009-05-27 Alexandre Oliva <aoliva@redhat.com>
4049 * Makefile.tpl (all): Avoid harmless warning in make all when
4050 gcc-bootstrap is enabled but stage_last does not exist.
4051 * Makefile.in: Rebuilt.
4053 2009-05-25 Tristan Gingold <gingold@adacore.com>
4055 * setup.com: Complete the file with configuration and build.
4057 2009-05-18 Alexandre Oliva <aoliva@redhat.com>
4060 * Makefile.tpl (all): Don't assume gcc-bootstrap and
4061 gcc-no-bootstrap are mutually exclusive.
4062 * Makefile.in: Rebuilt.
4064 2009-05-18 Alexandre Oliva <aoliva@redhat.com>
4067 * Makefile.tpl (all): Don't end with unconditional success.
4068 * Makefile.in: Rebuilt.
4070 2009-05-12 Alexandre Oliva <aoliva@redhat.com>
4073 * Makefile.def (flags_to_pass): Remove redundant and incomplete
4074 STAGE1_CFLAGS, STAGE2_CFLAGS, STAGE3_CFLAGS, and STAGE4_CFLAGS.
4075 Add FLAGS_FOR_TARGET and BUILD_CONFIG.
4076 (bootstrap_stage): Remove bootstrap-debug custom stages. Turn
4077 stage_configureflags, stage_cflags and stage_libcflags into
4078 explicit Makefile macros.
4079 * Makefile.tpl (HOST_EXPORTS, EXTRA_HOST_FLAGS): Pass GCJ and
4081 (POSTSTAGE1_HOST_EXPORTS): Add XGCC_FLAGS_FOR_TARGET and TFLAGS to
4082 CC. Set CC_FOR_BUILD from CC.
4083 (BASE_TARGET_EXPORTS, RAW_CXX_TARGET_EXPORTS,
4084 NORMAL_TARGET_EXPORTS): Move SYSROOT_CFLAGS_FOR_TARGET and
4085 DEBUG_PREFIX_CFLAGS_FOR_TARGET from CFLAGS and CXXFLAGS to
4086 XGCC_FLAGS_FOR_TARGET. Add it along with TFLAGS to CC, CXX, GCJ,
4088 (TFLAGS, STAGE_CFLAGS, STAGE_TFLAGS, STAGE_CONFIGURE_FLAGS): New.
4089 (_LIBCFLAGS): Renamed to _TFLAGS.
4090 (do-compare-debug, do-compare3-debug): Drop.
4091 (CC, GCC_FOR_TARGET, CXX_FOR_TARGET, RAW_CXX_FOR_TARGET,
4092 GCJ_FOR_TARGET, GFORTRAN_FOR_TARGET): Remove FLAGS_FOR_TARGET.
4093 (FLAGS_FOR_TARGET, SYSROOT_CFLAGS_FOR_TARGET,
4094 DEBUG_PREFIX_CFLAGS_FOR_TARGET): Move down.
4095 (XGCC_FLAGS_FOR_TARGET): New.
4096 (BASE_FLAGS_TO_PASS): Pass STAGEid_CFLAGS, STAGEid_TFLAGS and TFLAGS.
4097 (EXTRA_HOST_FLAGS): Pass GCJ and GFORTRAN.
4098 (POSTSTAGE1_FLAGS_TO_PASS): Move SYSROOT_CFLAGS_FOR_TARGET and
4099 DEBUG_PREFIX_CFLAGS_FOR_TARGET from CFLAGS, CXXFLAGS, LIBCFLAGS,
4100 LIBCXXFLAGS to XGCC_FLAGS_FOR_TARGET. Add it along with TFLAGS
4101 to CC, CXX, GCJ, and GFORTRAN. Pass XGCC_FLAGS_FOR_TARGET and
4103 (BUILD_CONFIG): Include if requested.
4104 (all): Set TFLAGS on bootstrap.
4105 (configure-stageid-prefixmodule): Pass TFLAGS, adjust FLAGS.
4106 (all-stageid-prefixmodule): Likewise.
4107 (do-clean, distclean-stageid): Set TFLAGS.
4108 (restrap): Fix whitespace.
4109 * Makefile.in: Rebuilt.
4111 2009-04-25 Eric Botcazou <ebotcazou@adacore.com>
4113 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Add GNATBIND.
4114 (POSTSTAGE1_FLAGS_TO_PASS): Pick up exported value for GNATBIND.
4115 * Makefile.in: Regenerate.
4117 2009-04-24 Eli Zaretskii <eliz@gnu.org>
4119 * config.guess (pc:*:*:*): Return i586-pc-msdosdjgpp, for
4120 consistency with config.sub. (Update from upstream sources.)
4122 2009-04-21 Joseph Myers <joseph@codesourcery.com>
4124 * texinfo/texinfo.tex: Update to version 2009-03-28.05.
4126 2009-04-17 Ben Elliston <bje@au.ibm.com>
4128 * config.sub, config.guess: Update from upstream sources.
4130 2009-04-15 Anthony Green <green@moxielogic.com>
4132 * configure.ac: Add moxie support.
4133 * configure: Rebuilt.
4135 2009-04-09 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4137 * configure.ac: Bump minimum GMP/MPFR versions to 4.2 and 2.3.1.
4138 * configure: Regenerate.
4140 2009-04-09 H.J. Lu <hongjiu.lu@intel.com>
4143 * configure.ac: Require texinfo 4.7.
4144 * configure: Regenerated.
4146 2009-04-09 Steve Ellcey <sje@cup.hp.com>
4148 * Makefil.def (languages): New entries.
4149 * Makefile.tpl (check-gcc-*): New generic target.
4150 * Makefile.in: Regenerate.
4152 2009-03-27 Eli Zaretskii <eliz@gnu.org>
4154 * djunpack.bat: Use ".." quoting in Sed command, for the sake of
4155 Windows builds of Sed.
4157 2009-03-18 Tom Tromey <tromey@redhat.com>
4159 * configure: Rebuild.
4160 * configure.ac (host_libs): Add libiconv.
4161 * Makefile.in: Rebuild.
4162 * Makefile.def (host_modules): Add libiconv.
4163 (configure-gdb, all-gdb): Depend on libiconv.
4165 2009-03-16 Tristan Gingold <gingold@adacore.com>
4167 * configure.ac: Treat gdb as supported on x86_64-darwin.
4168 * configure: Regenerate.
4170 2009-03-16 Joseph Myers <joseph@codesourcery.com>
4174 2009-03-16 Joseph Myers <joseph@codesourcery.com>
4176 * configure.ac (--with-host-libstdcxx): New option.
4177 * configure: Regenerate.
4179 2009-01-29 Robert Millan <rmh@aybabtu.com>
4181 * configure.ac: Recognize GNU/kOpenSolaris (*-*-kopensolaris*-gnu).
4182 * configure: Regenerate.
4184 2009-01-12 Sebastian Pop <sebastian.pop@amd.com>
4186 PR tree-optimization/38515
4187 * configure.ac (cloog-polylib): Removed.
4188 (with_ppl, with_cloog): Test for "no".
4189 * configure: Regenerated.
4191 2009-03-01 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4193 Backport from git Libtool:
4195 2009-01-19 Robert Millan <rmh@aybabtu.com>
4196 Support GNU/kOpenSolaris.
4197 * libltdl/m4/libtool.m4 (_LT_SYS_DYNAMIC_LINKER)
4198 (_LT_CHECK_MAGIC_METHOD, _LT_COMPILER_PIC, _LT_LINKER_SHLIBS)
4199 (_LT_LANG_CXX_CONFIG) [kopensolaris*-gnu]: Recognize
4202 2009-02-05 Andreas Schwab <schwab@suse.de>
4204 * Makefile.tpl (stage_last): Define $r and $s before using
4205 $(RECURSE_FLAGS_TO_PASS).
4206 * Makefile.in: Regenerate
4208 2009-01-21 Jeff Johnston <jjohnstn@redhat.com>
4210 * COPYING.NEWLIB: Add ARM license.
4212 2009-01-16 Alan Modra <amodra@bigpond.net.au>
4214 * Makefile.def (configure-opcodes): Depend on configure-libiberty.
4215 (all-opcodes): Depend on all-libiberty.
4216 * Makefile.in: Regenerate.
4218 2009-01-15 Douglas B Rupp <rupp@gnat.com>
4220 * configure.ac (ia64*-*-*vms*): Add case with no gdb or ld support.
4221 * configure: Regenerate.
4223 2008-12-18 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4225 Backport link test fix from upstream Libtool:
4227 * libltdl.m4 (_LT_SYS_DYNAMIC_LINKER, _LT_LINKER_SHLIBS):
4228 Add cache variables to tests that require the linker to work.
4229 For shlibpath_overrides_runpath, this also changes the semantics
4230 to let the result from the C compiler take precedence.
4231 compiler take precedence.
4233 2008-12-02 Ben Elliston <bje@au.ibm.com>
4235 * config.sub, config.guess: Update from upstream sources.
4237 2008-12-17 Jeff Johnston <jjohnstn@redhat.com>
4239 * COPYING.NEWLIB: Updated.
4240 * COPYING.LIBGLOSS: Ditto.
4242 2008-12-16 Paolo Bonzini <bonzini@gnu.org>
4246 2008-12-12 Sebastian Pop <sebastian.pop@amd.com>
4248 * configure.ac (ppllibs): Add by default the lib flags.
4249 * configure: Regenerate.
4251 2008-12-04 Jack Howarth <howarth@bromo.med.uc.edu>
4253 * configure.ac: Add double brackets on darwin[912].
4254 * configure: Regenerate.
4256 2008-12-02 Jack Howarth <howarth@bromo.med.uc.edu>
4258 * configure.ac: Expand to darwin10 and later.
4259 * configure: Regenerate.
4261 2008-12-02 Andreas Schwab <schwab@suse.de>
4263 * Makefile.def: configure-target-boehm-gc depends on
4264 all-target-libstdc++-v3.
4265 * Makefile.in: Regenerate.
4267 2008-12-02 Ben Elliston <bje@au.ibm.com>
4269 * config.sub, config.guess: Update from upstream sources.
4271 2008-11-27 Joseph Myers <joseph@codesourcery.com>
4275 2007-12-02 Matthias Klose <doko@ubuntu.com>
4277 * config-ml.in: Remove 64bit configure tests.
4279 2008-05-14 Rafael Espindola <espindola@google.com>
4281 * config-ml.in: don't handle --enable-shared and --enable-static.
4283 2008-09-02 Sebastian Pop <sebastian.pop@amd.com>
4284 Tobias Grosser <grosser@fim.uni-passau.de>
4285 Jan Sjodin <jan.sjodin@amd.com>
4286 Harsha Jagasia <harsha.jagasia@amd.com>
4287 Dwarakanath Rajagopal <dwarak.rajagopal@amd.com>
4288 Konrad Trifunovic <konrad.trifunovic@inria.fr>
4289 Adrien Eliche <aeliche@isty.uvsq.fr>
4291 Merge from graphite branch.
4292 * configure: Regenerate.
4293 * Makefile.in: Regenerate.
4294 * configure.ac (host_libs): Add ppl and cloog.
4295 Add checks for PPL and CLooG.
4296 * Makefile.def (ppl, cloog): Added modules and dependences.
4297 * Makefile.tpl (PPLLIBS, PPLINC, CLOOGLIBS, CLOOGINC): New.
4298 (HOST_PPLLIBS, HOST_PPLINC, HOST_CLOOGLIBS, HOST_CLOOGINC): New.
4300 2008-09-03 Richard Guenther <rguenther@suse.de>
4302 * configure.ac: Always pass -DCLOOG_PPL_BACKEND to the
4304 * configure: Re-generate.
4306 2008-09-03 Sebastian Pop <sebastian.pop@amd.com>
4308 * configure.ac (--with-cloog-polylib): New.
4309 (--disable-cloog-version-check): New.
4310 (--disable-ppl-version-check): New.
4311 * configure: Re-generate.
4313 2008-09-05 Richard Guenther <rguenther@suse.de>
4315 * configure.ac: Initialize clooglibs to -lcloog.
4316 * configure: Re-generate.
4318 2008-10-13 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4320 * configure.ac (MPFR check): Bump minimum version to 2.3.0 and
4321 recommended version to 2.3.2.
4323 * configure: Regenerate.
4325 2008-10-31 Ben Elliston <bje@au.ibm.com>
4327 * configure.ac (spu-*-*): Remove special case.
4328 * configure: Regenerate.
4330 Complete comment text from GCC version of:
4332 2008-08-31 Aaron W. LaFramboise <aaronavay62@aaronwl.com>
4334 * configure.ac (RPATH_ENVVAR): Use PATH on Windows.
4335 (GCC_SHLIB_SUBDIR): New.
4336 * Makefile.tpl (HOST_LIB_PATH_gcc): Use GCC_SHLIB_SUBDIR.
4337 * configure: Regenerate.
4338 * Makefile.in: Regenerate.
4340 2008-11-27 Tristan Gingold <gingold@adacore.com>
4342 * configure.ac: Build gdb for i?86-*-darwin*
4343 * configure: Regenerated.
4345 2008-11-14 Daniel Jacobowitz <dan@codesourcery.com>
4352 2008-10-24 Daniel Jacobowitz <dan@codesourcery.com>
4354 * Makefile.tpl (HOST_EXPORTS): Correct CPPFLAGS typo.
4355 * Makefile.in: Regenerated.
4357 2008-10-22 Daniel Jacobowitz <dan@codesourcery.com>
4364 * Makefile.def (flags_to_pass): Add CPPFLAGS_FOR_BUILD and CPPFLAGS.
4365 * Makefile.tpl (BUILD_EXPORTS): Set CPPFLAGS.
4366 (EXTRA_BUILD_FLAGS): Correct typo. Pass CPPFLAGS.
4367 (HOST_EXPORTS): Pass CPPFLAGS.
4368 (CPPFLAGS_FOR_BUILD, CPPFLAGS, CPPFLAGS_FOR_TARGET): Define.
4369 (LDFLAGS_FOR_TARGET): Initialize from configure script.
4370 (EXTRA_TARGET_FLAGS): Set CPPFLAGS.
4371 * Makefile.in, configure: Regenerated.
4372 * configure.ac: Set CPPFLAGS_FOR_TARGET, LDFLAGS_FOR_TARGET,
4373 and CPPFLAGS_FOR_BUILD.
4375 2008-10-29 Stefan Schulze Frielinghaus <xxschulz@de.ibm.com>
4377 * configure.ac [spu-*-*]: Do not set skipdirs.
4378 * configure: Re-generate.
4380 2008-10-24 Daniel Jacobowitz <dan@codesourcery.com>
4382 * Makefile.tpl (HOST_EXPORTS): Correct CPPFLAGS typo.
4383 * Makefile.in: Regenerated.
4385 2008-10-22 Daniel Jacobowitz <dan@codesourcery.com>
4392 * Makefile.def (flags_to_pass): Add CPPFLAGS_FOR_BUILD and CPPFLAGS.
4393 * Makefile.tpl (BUILD_EXPORTS): Set CPPFLAGS.
4394 (EXTRA_BUILD_FLAGS): Correct typo. Pass CPPFLAGS.
4395 (HOST_EXPORTS): Pass CPPFLAGS.
4396 (CPPFLAGS_FOR_BUILD, CPPFLAGS, CPPFLAGS_FOR_TARGET): Define.
4397 (LDFLAGS_FOR_TARGET): Initialize from configure script.
4398 (EXTRA_TARGET_FLAGS): Set CPPFLAGS.
4399 * Makefile.in, configure: Regenerated.
4400 * configure.ac: Set CPPFLAGS_FOR_TARGET, LDFLAGS_FOR_TARGET,
4401 and CPPFLAGS_FOR_BUILD.
4403 2008-09-29 Peter O'Gorman <pogma@thewrittenword.com>
4405 * libtool.m4: Update to libtool 2.2.6.
4406 * lt~obsolete.m4: Update to libtool 2.2.6.
4407 * ltmain.sh: Update to libtool 2.2.6.
4408 * ltsugar.m4: Update to libtool 2.2.6.
4409 * ltversion.m4: Update to libtool 2.2.6.
4410 * ltoptions.m4: Update to libtool 2.2.6.
4411 * ltgcc.m4: Update to match changes from libtool 2.2.6.
4413 2008-08-31 Aaron W. LaFramboise <aaronavay62@aaronwl.com>
4415 * configure.ac (RPATH_ENVVAR): Use PATH on Windows.
4416 (GCC_SHLIB_SUBDIR): New.
4417 * Makefile.tpl (HOST_LIB_PATH_gcc): Use GCC_SHLIB_SUBDIR.
4418 * configure: Regenerate.
4419 * Makefile.in: Regenerate.
4421 2008-08-28 Tristan Gingold <gingold@adacore.com>
4423 * configure.ac (powerpc-*-darwin*, i?86-*-darwin*,x86_64-*-darwin9):
4424 Enable bfd, binutils and opcodes.
4425 * configure: Regenerate.
4427 2008-08-16 Nicolas Roche <roche@adacore.com>
4429 * Makefile.tpl: Add BOOT_ADAFLAGS.
4430 * Makefile.in: Regenerate.
4432 2008-08-16 Richard Sandiford <rdsandiford@googlemail.com>
4434 * configure.ac (mips*-*-*linux*, mips*-*-gnu*): Use mt-mips-gnu.
4435 * configure: Regenerate.
4437 2008-07-30 Paolo Bonzini <bonzini@gnu.org>
4440 2008-07-30 Paolo Bonzini <bonzini@gnu.org>
4442 * configure.ac: Add makefile fragments for hpux.
4443 * Makefile.def (flags_to_pass): Add ADA_CFLAGS.
4444 * Makefile.tpl (HOST_EXPORTS): Pass ADA_CFLAGS.
4445 * configure: Regenerate.
4446 * Makefile.in: Regenerate.
4448 2008-06-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4450 * Makefile.tpl ($(srcdir)/configure): Update dependencies.
4451 * Makefile.in: Regenerate.
4452 * configure: Regenerate.
4454 2008-06-18 Ian Lance Taylor <iant@google.com>
4456 * src-release (BINUTILS_SUPPORT_DIRS): Remove mkdep and depcomp.
4458 * src-release (BINUTILS_SUPPORT_DIRS): Add depcomp.
4460 2008-06-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4462 * configure: Regenerate.
4464 2008-06-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4466 * configure.ac: Set TOPLEVEL_CONFIGURE_ARGUMENTS early, when
4467 "$@" is still intact with both Autoconf 2.59 and 2.62.
4468 * configure: Regenerate.
4470 2008-06-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4472 * Makefile.tpl: Fix comment errors.
4473 * Makefile.in: Regenerate.
4475 2008-06-13 Julian Brown <julian@codesourcery.com>
4477 * configure.ac (arm*-*-linux-gnueabi): Don't disable building
4478 of libobjc for ARM EABI Linux.
4479 * configure: Regenerate.
4481 2008-06-12 David S. Miller <davem@davemloft.net>
4482 David Edelsohn <edelsohn@gnu.org>
4484 * configure.ac: Add powerpc*-*-* to gold supported targets.
4485 * configure: Regenerate.
4487 2008-06-08 Joseph Myers <joseph@codesourcery.com>
4489 PR tree-optimization/36218
4490 * Makefile.def (flags_to_pass): Add LDFLAGS_FOR_BUILD.
4491 * Makefile.tpl (EXTRA_BUILD_FLAGS): Define.
4492 (all prefix="build-"): Pass them to build-system sub-makes.
4493 * Makefile.in: Regenerate.
4495 2008-05-16 Daniel Jacobowitz <dan@codesourcery.com>
4497 * src-release (DEVO_SUPPORT): Add ChangeLog, MAINTAINERS,
4498 README-maintainer-mode, lt~obsolete.m4, ltgcc.m4, depcomp,
4499 mkdep, and compile. Update comments.
4500 (ETC_SUPPORT): Add ChangeLog and update comments.
4502 2008-05-11 Ian Lance Taylor <iant@google.com>
4504 * src-release (BINUTILS_SUPPORT_DIRS): Add elfcpp and gold.
4506 2008-04-18 Paolo Bonzini <bonzini@gnu.org>
4509 2008-04-18 Paolo Bonzini <bonzini@gnu.org>
4512 * configure.ac: Include override.m4.
4513 * configure: Regenerate.
4515 2008-04-18 Paolo Bonzini <bonzini@gnu.org>
4517 * Makefile.tpl (restrap): Call `make all' using double-colon rules.
4518 * Makefile.in: Regenerate.
4520 2008-04-11 Eric B. Weddington <eweddington@cso.atmel.com>
4522 * configure.ac: Do not build libssp for the AVR.
4523 * configure: Regenerate.
4525 2008-04-18 Nick Clifton <nickc@redhat.com>
4527 * MAINTAINERS: Replace reference to configure.in with reference to
4530 2008-04-18 M R Swami Reddy <MR.Swami.Reddy@nsc.com>
4532 * configure.ac (cr16-*-*): Add case for cr16 target and include gdb
4533 as nonconfigurable directories list.
4534 * configure: Regenerate.
4536 2008-04-14 David S. Miller <davem@davemloft.net>
4538 * configure.ac: Add sparc*-*-* to gold supported targets.
4539 * configure: Regenerate.
4541 2008-04-14 Ben Elliston <bje@au.ibm.com>
4543 * config.sub, config.guess: Update from upstream sources.
4545 2008-04-12 Hans-Peter Nilsson <hp@axis.com>
4547 * Makefile.tpl <gcc>: Error early unless at least GNU make 3.80.
4548 * Makefile.in: Regenerate.
4550 2008-04-07 Ian Lance Taylor <iant@google.com>
4552 * Makefile.def: check-gold depends upon all-binutils.
4553 * Makefile.in: Regenerate.
4555 2008-04-04 Nick Clifton <nickc@redhat.com>
4558 * configure.ac: Run ACX_CHECK_CYGWIN_CAT_WORKS for cygwin hosted
4560 * configure: Regenerate.
4562 2008-04-04 NightStrike <NightStrike@gmail.com>
4565 * configure.ac: Combine rules for mingw32 and mingw64.
4566 * configure: Regenerate.
4568 2008-03-27 Paolo Bonzini <bonzini@gnu.org>
4570 * Makefile.tpl (PICFLAG, PICFLAG_FOR_TARGET): Remove.
4571 * Makefile.in: Regenerate.
4573 2008-03-20 Ian Lance Taylor <iant@google.com>
4575 * configure.ac: Add support for --enable-gold.
4576 * Makefile.def: Add gold as a directory like ld.
4577 * configure, Makefile.in: Regenerate.
4579 2008-03-19 Andreas Krebbel <krebbel1@de.ibm.com>
4581 * opcodes/s390-mkopc.c (s390_opcode_cpu_val): S390_OPCODE_Z10 added.
4582 (s390_cond_extensions): Reduced extensions to the compare related.
4583 (main): z10 cpu type option added.
4584 (expandConditionalJump): Renamed to ...
4585 (insertExpandedMnemonic): ... this.
4587 * opcodes/s390-opc.c: Re-group the operand format makros.
4588 (INSTR_RIE_RRPU, INSTR_RIE_RRP0, INSTR_RIE_RUPI,
4589 INSTR_RIE_R0PI, INSTR_RIE_RUPU, INSTR_RIE_R0PU, INSTR_RIE_R0IU,
4590 INSTR_RIE_R0I0, INSTR_RIE_R0UU, INSTR_RIE_R0U0,
4591 INSTR_RIE_RRUUU, INSTR_RIS_RURDI, INSTR_RIS_R0RDI, INSTR_RIS_RURDU,
4592 INSTR_RIS_R0RDU, INSTR_RRF_U0RR, INSTR_RRF_00RR, INSTR_RRS_RRRDU,
4593 INSTR_RRS_RRRD0, INSTR_RXY_URRD, INSTR_SIY_IRD, INSTR_SIL_RDI,
4594 INSTR_SIL_RDU): New instruction formats added.
4595 (MASK_RIE_RRPU, MASK_RIE_RRP0, MASK_RIE_RUPI, MASK_RIE_R0PI,
4596 MASK_RIE_RUPU, MASK_RIE_R0PU, MASK_RIE_R0IU, MASK_RIE_R0I0,
4597 MASK_RIE_R0UU, MASK_RIE_R0U0, MASK_RIE_RRUUU, MASK_RIS_RURDI,
4598 MASK_RIS_R0RDI, MASK_RIS_RURDU, MASK_RIS_R0RDU, MASK_RRF_U0RR,
4599 MASK_RRF_00RR, MASK_RRS_RRRDU, MASK_RRS_RRRD0, MASK_RXY_URRD,
4600 MASK_SIY_IRD, MASK_SIL_RDI, MASK_SIL_RDU): New instruction format
4602 (s390_opformats): New formats added "ris", "rrs", "sil".
4603 * opcodes/s390-opc.txt: Add the conditional jumps with the
4604 extensions removed from automatic expansion in s390-mkopc.c manually.
4605 (asi - trtre): Add new System z10 EC instructions.
4606 * include/opcode/s390.h (s390_opcode_cpu_val): S390_OPCODE_Z10 added.
4608 2008-03-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4610 * configure.ac: m4_include config/proginstall.m4.
4611 * configure: Regenerate.
4613 2008-03-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4615 Backport from upstream Libtool:
4617 2007-10-12 Eric Blake <ebb9@byu.net>
4619 Deal with Autoconf 2.62's semantic change in m4_append.
4620 * ltsugar.m4 (lt_append): Replace broken versions of
4622 (lt_if_append_uniq): Don't require separator to be overquoted,
4623 and avoid broken m4_append.
4624 (lt_dict_add): Fix typo.
4625 * libtool.m4 (_LT_DECL): Don't overquote separator.
4627 2008-03-13 David Edelsohn <edelsohn@gnu.org>
4629 * config.rpath: Add AIX 6 support.
4631 2008-03-13 Paolo Bonzini <bonzini@gnu.org>
4633 * Makefile.def (stageprofile). Remove -fprofile-generate
4634 from stage_libcflags.
4635 * Makefile.in: Regenerate.
4637 2008-03-13 Ben Elliston <bje@au.ibm.com>
4639 * config.sub, config.guess: Update from upstream sources.
4641 2008-03-06 Florian Krohm <fkrohm@us.ibm.com>
4643 * s390-opc.c (INSTR_RSL_R0RD): Fix operands.
4644 * s390-opc.txt (cmpsc): Duplicate entry removed.
4645 (dxr, sqdr, sqer, cxfbr, cdfbr, cefbr, lzer, lzdr, lzxr,
4646 cegbr, cdgbr, cxgbr, cegr, cdgr, cxgr, cxfr, cdfr, cefr, fixr, fidr,
4647 fier, cu42, cu41): Fix operand format.
4649 2008-02-20 Paolo Bonzini <bonzini@gnu.org>
4654 * configure.ac (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Compute here.
4655 * configure: Regenerate.
4657 * Makefile.def: Define stage_libcflags for all bootstrap stages.
4658 * Makefile.tpl (BOOT_LIBCFLAGS, STAGE2_LIBCFLAGS, STAGE3_LIBCFLAGS,
4659 STAGE4_LIBCFLAGS): New.
4660 (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Subst from autoconf, without
4661 $(SYSROOT_CFLAGS_FOR_TARGET) and $(DEBUG_PREFIX_CFLAGS_FOR_TARGET).
4662 (BASE_TARGET_EXPORTS): Append them here to C{,XX}FLAGS.
4663 (EXTRA_TARGET_FLAGS): Append them here to {LIB,}C{,XX}FLAGS.
4664 (configure-stage[+id+]-[+prefix+][+module+]): Pass stage_libcflags
4665 for target modules. Don't export LIBCFLAGS.
4666 (all-stage[+id+]-[+prefix+][+module+]): Pass stage_libcflags; pass
4667 $(BASE_FLAGS_TO_PASS) where [+args+] was passed, and [+args+] after
4668 the overridden CFLAGS_FOR_TARGET and CXXFLAGS_FOR_TARGET.
4669 (invocations of `all'): Replace $(TARGET_FLAGS_TO_PASS) with
4670 $(EXTRA_TARGET_FLAGS), $(FLAGS_TO_PASS) with $(EXTRA_HOST_FLAGS).
4671 * Makefile.in: Regenerate.
4673 2008-02-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4676 * libtool.m4 (_LT_COMPILER_PIC) [ mingw, cygwin ] <GCJ>:
4677 Do not use -DDLL_EXPORT. Backport from upstream.
4679 2008-02-14 Nick Clifton <nickc@redhat.com>
4681 Import this patch from gcc:
4682 2008-01-24 David Edelsohn <edelsohn@gnu.org>
4684 * libtool.m4: Backport AIX 6 support from ToT Libtool.
4686 2008-02-02 Hans-Peter Nilsson <hp@axis.com>
4688 * configure.ac: Enable fortran for cris-*-elf and crisv32-*-elf.
4689 * configure: Regenerate.
4691 2008-01-31 Marc Gauthier <marc@tensilica.com>
4693 * configure.ac (xtensa*-*-*): Recognize processor variants.
4694 * configure: Regenerate.
4696 2008-01-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4699 * configure.ac (PARSE_ARGS): Push suitable setting of
4700 ac_subdirs_all, for `./configure --help=recursive'.
4701 Handle `+' in generic toplevel directory disabling.
4702 * configure: Regenerate.
4704 2008-01-23 Ben Elliston <bje@au.ibm.com>
4706 * config.sub, config.guess: Update from upstream sources.
4708 2008-01-08 Ben Elliston <bje@au.ibm.com>
4710 * config.sub, config.guess: Update from upstream sources.
4712 2007-12-19 Jeff Johnston <jjohnstn@redhat.com>
4714 * COPYING.LIBGLOSS: Update default copyright.
4716 2007-12-19 Jeff Johnston <jjohnstn@redhat.com>
4718 * COPYING.NEWLIB: Update default copyright.
4720 2007-12-17 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4722 * configure.ac: Change required MPFR from 2.2.0 -> 2.2.1.
4723 Change recommended MPFR from 2.2.1 > 2.3.0.
4724 * configure: Regenerate.
4726 2007-12-13 Richard Sandiford <rsandifo@nildram.co.uk>
4728 * Makefile.tpl (CFLAGS_FOR_TARGET): Add -g.
4729 (CXXFLAGS_FOR_TARGET): Add -O2 -g.
4730 * Makefile.in: Regenerate.
4732 2007-12-10 Andreas Tobler <a.tobler@schweiz.org>
4734 * configure.ac: Enable libjava for x86_64-*-darwin9.
4735 * configure: Regenerate.
4737 2007-12-05 Ben Elliston <bje@au.ibm.com>
4739 * config.sub, config.guess: Update from upstream sources.
4741 2007-11-28 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4743 * config-ml.in: Robustify against white space in absolute file
4746 * config-ml.in (multi-clean): Substitute ${Makefile}.
4747 Remove superfluous ${Makefile} in list.
4749 2007-10-23 Daniel Jacobowitz <dan@codesourcery.com>
4751 * Makefile.def (dependencies): Make configure-gdb depend on
4753 * Makefile.in: Regenerated.
4755 2007-10-15 Patrick Mansfield <patmans@us.ibm.com>
4757 * Makefile.def: To avoid problems running with parallel makes,
4758 build newlib before libgloss so that target specific header
4760 * Makefile.in: Regenerate.
4762 2007-10-11 Daniel Jacobowitz <dan@codesourcery.com>
4764 * Makefile.def (dependencies): Add all-gdb -> all-libdecnumber.
4765 * Makefile.in: Regenerate.
4767 2007-10-11 Daniel Jacobowitz <dan@codesourcery.com>
4769 * src-release (GDB_SUPPORT_DIRS): Add libdecnumber.
4770 * libdecnumber: New directory, imported from GCC.
4772 2007-10-08 Mike Frysinger <vapier@gentoo.org>
4774 * configure.ac (CFLAGS_FOR_BUILD, CXXFLAGS_FOR_BUILD,
4775 LDFLAGS_FOR_BUILD): Default them to host flags only for $host = $build.
4776 Set default CXXFLAGS_FOR_BUILD to CXXFLAGS, not CFLAGS. Set default
4777 LDFLAGS_FOR_BUILD to LDFLAGS, not CFLAGS.
4778 * configure: Regenerate.
4780 2007-10-01 Paolo Bonzini <bonzini@gnu.org>
4782 * Makefile.tpl (AR_FOR_BUILD, AS_FOR_BUILD, CXX_FOR_BUILD,
4783 DLLTOOL_FOR_BUILD, GCJ_FOR_BUILD, GFORTRAN_FOR_BUILD,
4784 LDFLAGS_FOR_BUILD, LD_FOR_BUILD, NM_FOR_BUILD, RANLIB_FOR_BUILD,
4785 WINDMC_FOR_BUILD, WINDRES_FOR_BUILD): Use autoconf substitutions.
4786 * configure.ac: Default them to host tools for $host = $build.
4789 * configure: Regenerate.
4790 * Makefile.in: Regenerate.
4792 2007-09-20 Richard Sandiford <rsandifo@nildram.co.uk>
4794 * configure.ac (mipsisa*-*-elfoabi*): New stanza.
4795 * configure: Regenerate.
4797 2007-09-19 Benjamin Kosnik <bkoz@redhat.com>
4799 * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Move libgomp before
4801 * Makefile.def: Add libgomp config as a maybe dependency for libstdc++.
4802 * configure: Regenerate.
4803 * Makefile.in: Regenerate.
4805 2007-09-17 Andreas Schwab <schwab@suse.de>
4807 * configure.ac: Raise minimum makeinfo version to 4.6.
4808 * configure: Regenerate.
4810 2007-09-15 Alan Modra <amodra@bigpond.net.au>
4812 * configure.ac: Correct makeinfo version check.
4813 * configure: Regenerate.
4815 2007-09-14 Richard Sandiford <richard@codesourcery.com>
4817 * configure.ac (mips*-sde-elf*): New stanza. Add target-libiberty
4818 to $skipdirs and only disable gprof for newlib. Use the normal
4819 mips*-elf* handling in other respects.
4820 * configure: Regnerate.
4822 2007-09-12 David Daney <ddaney@avtrex.com>
4824 * configure.ac: Remove mips64*-*-linux* noconfigdirs section, thus
4826 * configure: Regenerate.
4828 2007-09-12 Richard Guenther <rguenther@suse.de>
4830 * configure.ac (--enable-stage1-checking): If neither --enable-checking
4831 nor --disable-checking is provided also turn on yes and types
4832 checking for stage1.
4833 * configure: Re-generate.
4835 2007-09-11 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
4838 * configure.ac: Use config/mh-mingw on mingw.
4839 * configure: Regenerate.
4841 2007-09-10 Rask Ingemann Lambertsen <rask@sygehus.dk>
4844 * configure.ac: For libgloss targets, point the linker to the linker
4845 script, startup code and simulator library.
4846 * configure: Regenerate.
4848 2007-09-09 Andrew Haley <aph@redhat.com>
4850 * configure.ac (noconfigdirs): Remove target-libffi and
4853 2007-08-29 Nick Clifton <nickc@redhat.com>
4855 * config.sub, config.guess: Update from upstream sources.
4857 2007-08-21 Richard Guenther <rguenther@suse.de>
4859 * configure.ac: Add types checking to stage1 checking flags.
4860 * configure: Regenerate.
4862 2007-08-18 Paul Brook <paul@codesourcery.com>
4863 Joseph Myers <joseph@codesourcery.com>
4865 * Makefile.tpl (DEBUG_PREFIX_CFLAGS_FOR_TARGET): New.
4866 (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Include it.
4867 * Makefile.in: Regenerate.
4868 * configure.ac (--with-debug-prefix-map): New.
4869 * configure: Regenerate.
4871 2007-08-17 Richard Sandiford <richard@codesourcery.com>
4872 Nigel Stephens <nigel@mips.com>
4874 * configure.ac (mips*-sde-elf*): New stanza. Use config/mt-sde
4875 as target_makefile_frag.
4876 * configure: Regenerate.
4878 2007-08-16 Alexandre Oliva <aoliva@redhat.com>
4880 * Makefile.def (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS):
4881 Add to flags_to_pass. Adjust uses of BOOT_CFLAGS.
4882 (bootstrap2-debug, bootstrap-debug): New bootstrap stages.
4883 * Makefile.tpl (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS): New.
4884 (do-compare, do-compare3, do-compare-debug): New.
4885 ([+compare-target+]): Use them.
4887 2007-08-16 Alexandre Oliva <aoliva@redhat.com>
4889 * Makefile.def (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS):
4890 Add to flags_to_pass. Adjust uses of BOOT_CFLAGS.
4891 (bootstrap2-debug, bootstrap-debug): New bootstrap stages.
4892 * Makefile.tpl (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS): New.
4893 (do-compare, do-compare3, do-compare-debug): New.
4894 ([+compare-target+]): Use them.
4896 2007-08-13 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4897 Ben Elliston <bje@au.ibm.com>
4899 * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS, baseargs): Pass
4900 --silent if $silent.
4901 * configure: Regenerate.
4903 2007-08-12 Daniel Jacobowitz <dan@codesourcery.com>
4905 * src-release (DEVO_SUPPORT): Add COPYING3 and COPYING3.LIB.
4907 2007-07-17 Nick Clifton <nickc@redhat.com>
4909 * COPYING3: New file. Contains version 3 of the GNU General
4911 * COPYING3.LIB: New file. Contains version 3 of the GNU
4912 Lesser General Public License.
4914 2007-07-11 Bernd Schmidt <bernd.schmidt@analog.com>
4916 * configure.ac: Fix my previous change to really match GCC.
4917 * configure: Regenerate.
4919 2007-07-11 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4921 * configure.ac: Rewrite 'configure --help' strings to look nicer.
4922 * configure: Regenerate.
4924 2007-07-11 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4926 * configure.ac: Add some missing m4 quotation.
4927 * configure: Regenerate.
4929 2007-07-09 Kai Tietz <kai.tietz@onevision.com>
4931 * Makefile.def: Add windmc tool to build.
4932 * Makefile.tpl: Likewise.
4933 * configure.ac: Likewise.
4934 * Makefile.in: Regenerate.
4935 * configure: Regenerate.
4937 2007-07-05 H.J. Lu <hongjiu.lu@intel.com>
4939 * lt~obsolete.m4: New. Import from 20070318 libtool.
4941 2007-06-29 Bernd Schmidt <bernd.schmidt@analog.com>
4943 * configure.ac: Don't add target-libmudflap to noconfigdirs for
4944 uclinux and linux-uclibc targets.
4945 * configure: Regenerate.
4947 2007-06-28 DJ Delorie <dj@redhat.com>
4949 * configure.ac (arm*-*-linux-gnueabi): Don't build libgloss if we're
4950 not building newlib.
4951 * configure: Regenerated.
4953 2007-06-22 Daniel Jacobowitz <dan@codesourcery.com>
4955 * src-release (DEVO_SUPPORT): Correct typos.
4957 2007-06-18 Daniel Jacobowitz <dan@codesourcery.com>
4959 * Makefile.def: Add dependency from configure-gdb to all-bfd.
4960 * Makefile.in: Regenerated.
4962 2007-06-14 Paolo Bonzini <bonzini@gnu.org>
4964 * Makefile.tpl (cleanstrap): Don't delete the toplevel Makefile.
4965 (distclean-stage[+id+]): Possibly delete stage_last.
4966 * Makefile.in: Regenerate.
4968 2007-06-07 Ben Elliston <bje@au.ibm.com>
4970 * config.sub, config.guess: Update from upstream sources.
4972 2007-06-07 Ben Elliston <bje@au.ibm.com>
4974 * Makefile.tpl: Fix spelling error.
4975 * Makefile.in: Regenerate.
4977 2007-06-04 Paolo Bonzini <bonzini@gnu.org>
4980 2007-05-30 Jakub Jelinek <jakub@redhat.com>
4983 * configure.ac: Don't use -fkeep-inline-functions for GCC < 3.3.1.
4984 * configure: Rebuilt.
4986 2007-06-01 Steve Ellcey <sje@cup.hp.com>
4988 * libtool.m4 (LT_CMD_MAX_LEN): Try using getconf to set
4989 lt_cv_sys_max_cmd_len.
4991 2007-05-31 Paolo Bonzini <bonzini@gnu.org>
4993 * ltgcc.m4: Update from GCC.
4995 2007-05-25 Andreas Tobler <a.tobler@schweiz.org>
4997 * ltmain.sh: Fix Darwin verstring, remove ${wl}.
4999 2007-05-24 Steve Ellcey <sje@cup.hp.com>
5001 * ltmain.sh: Update from GCC.
5002 * libtool.m4: Update from GCC.
5003 * ltsugar.m4: New. Update from GCC.
5004 * ltversion.m4: New. Update from GCC.
5005 * ltoptions.m4: New. Update from GCC.
5007 * ltcf-c.sh: Remove.
5008 * ltcf-cxx.sh: Remove.
5009 * ltcf-gcj.sh: Remove.
5010 * src-release: Update with new libtool file list.
5012 2007-05-16 Paolo Bonzini <bonzini@gnu.org>
5014 * Makefile.def (bootstrap_stage): Replace stage_make_flags with
5016 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS, POSTSTAGE1_FLAGS_TO_PASS):
5017 Remove CFLAGS/LIBCFLAGS.
5018 (configure-stage[+id+]-[+prefix+][+module+],
5019 all-stage[+id+]-[+prefix+][+module+]): Pass it from [+stage_cflags+].
5020 * Makefile.in: Regenerate.
5022 2007-04-14 Steve Ellcey <sje@cup.hp.com>
5024 * config-ml.in: Update from GCC.
5026 2007-04-09 Daniel Jacobowitz <dan@codesourcery.com>
5028 * src-release (do-proto-toplev): Process the support directories before
5031 2007-03-21 Richard Sandiford <richard@codesourcery.com>
5033 * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Fix m4 quoting
5034 of glob. Quote arguments with single quotes too.
5035 * configure: Regenerate.
5037 2007-03-12 Brooks Moses <brooks.moses@codesourcery.com>
5039 * Makefile.def (fixincludes): Remove unneeded "missing" lines.
5040 * Makefile.in: Regenerate
5042 2007-03-07 Andreas Schwab <schwab@suse.de>
5044 * configure: Regenerate.
5046 2007-03-01 Brooks Moses <brooks.moses@codesourcery.com>
5048 * configure.ac: Add "--with-pdfdir" configure option,
5049 which defines pdfdir variable.
5050 * Makefile.def (target=fixincludes): Add install-pdf to
5052 (recursive_targets): Add install-pdf target.
5053 (flags_to_pass): Add pdfdir.
5054 * Makefile.tpl: Add pdfdir handling, add do-install-pdf
5056 * configure: Regenerate
5057 * Makefile.in: Regenerate
5059 2007-02-28 Eric Christopher <echristo@apple.com>
5062 2006-12-07 Mike Stump <mrs@apple.com>
5064 * Makefile.def (dependencies): Add dependency for
5065 install-target-libssp and install-target-libgomp on
5067 * Makefile.in: Regenerate.
5069 2007-02-27 Matt Kraai <kraai@ftbfs.org>
5071 * configure: Regenerate.
5072 * configure.ac: Move statements after variable declarations.
5074 2007-02-19 Joseph Myers <joseph@codesourcery.com>
5076 * configure.ac: Adjust for loop syntax.
5077 * configure: Regenerate.
5079 2007-02-18 Alexandre Oliva <aoliva@redhat.com>
5081 * configure: Rebuilt.
5083 2007-02-18 Alexandre Oliva <aoliva@redhat.com>
5085 * configure.ac: Drop multiple occurrences of --enable-languages,
5086 and fix its quoting.
5087 * configure: Rebuilt.
5089 2007-02-17 Mark Mitchell <mark@codesourcery.com>
5090 Nathan Sidwell <nathan@codesourcery.com>
5091 Vladimir Prus <vladimir@codesourcery.com
5092 Joseph Myers <joseph@codesourcery.com>
5094 * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Fix quoting.
5095 * configure: Regenerate.
5097 2007-02-13 Daniel Jacobowitz <dan@codesourcery.com>
5099 * configure.ac (target_libraries): Move libgcc before libiberty.
5100 * configure: Regenerated.
5102 2007-02-13 Paolo Bonzini <bonzini@gnu.org>
5104 * configure: Regenerate again?
5106 2007-02-13 Paolo Bonzini <bonzini@gnu.org>
5108 * configure: Reapply PR30748 fix which was lost in the previous commit.
5110 2007-02-13 Daniel Jacobowitz <dan@codesourcery.com>
5111 Paolo Bonzini <bonzini@gnu.org>
5114 * configure.ac: Remove obsolete build / host tests. Use AC_PROG_CC
5115 unconditionally. Use AC_PROG_CXX. Use ACX_TOOL_DIRS to find $prefix.
5116 * configure: Regenerated.
5118 2007-02-10 Paolo Bonzini <bonzini@gnu.org>
5120 * configure: Regenerate.
5122 2007-02-09 Daniel Jacobowitz <dan@codesourcery.com>
5125 * configure.ac: Correct syntax for Solaris ksh.
5126 * configure: Regenerated.
5128 2007-02-09 Paolo Bonzini <bonzini@gnu.org>
5130 * Makefile.def: Sync with GCC.
5131 * Makefile.tpl: Sync with GCC.
5132 * Makefile.in: Regenerate.
5133 * configure: Regenerate.
5135 2007-02-09 Daniel Jacobowitz <dan@codesourcery.com>
5137 * Makefile.tpl (build_alias, host_alias, target_alias): Use
5138 noncanonical equivalents.
5139 * configure.in: Rename to...
5140 * configure.ac: ...this. Update AC_PREREQ. Prevent error for
5141 AS_FOR_TARGET. Set build_noncanonical, host_noncanonical, and
5142 target_noncanonical. Use them. Rewrite removal of configure
5143 arguments for autoconf 2.59. Discard variable settings. Force
5144 program_transform_name for native tools.
5146 * Makefile.in: Regenerated.
5147 * configure: Regenerated with autoconf 2.59.
5149 * src-release (DEVO_SUPPORT, do-proto-toplev): Expect configure.ac.
5151 2007-02-08 Jeff Johnston <jjohnstn@redhat.com>
5153 * COPYING.LIBGLOSS: Reformat default Red Hat
5154 license to fit within 80 columns.
5155 * COPYING.NEWLIB: Ditto.
5157 2007-02-05 Dave Brolley <brolley@redhat.com>
5159 * Contribute the following changes:
5160 2006-11-28 DJ Delorie <dj@redhat.com>
5162 * configure.in: Fix typo for mep's target_makefile_frag.
5163 * configure: Regenerated.
5165 2005-04-22 Richard Sandiford <rsandifo@redhat.com>
5167 * configure.in (mep*): Add -mlibrary to FLAGS_FOR_TARGET.
5168 * configure: Regenerate.
5170 2001-09-19 DJ Delorie <dj@redhat.com>
5172 * configure.in (target_makefile_frag): use mt-mep
5174 2001-06-12 Don Howard <dhoward@redhat.com>
5176 * configure.in: Remove gdb from MeP skip list.
5178 2001-04-05 DJ Delorie <dj@redhat.com>
5180 * configure.in (noconfigdirs): Remove gcc from MeP skip list.
5182 2001-03-20 Ben Elliston <bje@redhat.com>
5184 * configure.in (noconfigdirs): Add gcc and gdb for MeP.
5186 2001-03-19 Ben Elliston <bje@redhat.com>
5188 * config.sub (mep, mep-*): Add.
5190 2007-01-31 Andreas Schwab <schwab@suse.de>
5192 * Makefile.tpl (LDFLAGS): Substitute it.
5193 * Makefile.in: Regenerate.
5195 2007-01-11 Paolo Bonzini <bonzini@gnu.org>
5197 * configure.in: Change == to = in test command.
5198 * configure: Regenerate.
5200 2007-01-11 Paolo Bonzini <bonzini@gnu.org>
5201 Nick Clifton <nickc@redhat.com>
5202 Kaveh R. Ghazi <ghazi@caip.rutgets.edu>
5204 * configure.in (build_configargs, host_configargs, target_configargs):
5205 Remove build/host/target parameters.
5206 (host_libs): Add gmp and mpfr.
5207 (GMP tests): Reorganize to allow in-tree GMP/MPFR.
5208 * Makefile.def (gmp, mpfr): New.
5209 (gcc): Remove target.
5210 * Makefile.tpl (build_os, build_vendor, host_os, host_vendor,
5211 target_os, target_vendor): New.
5212 (configure): Add host_alias/target_alias arguments. Adjust invocations.
5213 * configure: Regenerate.
5214 * Makefile.in: Regenerate.
5216 2007-01-11 Matt Fago <fago@earthlink.net>
5218 * configure.in: Try to link to functions only in mpfr 2.2.x
5219 to improve robustness of configure tests.
5220 * configure: Regenerate.
5222 2007-01-08 Kai Tietz <kai.tietz@onevision.com>
5224 * configure.in: Add support for an x86_64-mingw* target.
5225 * configure: Regenerate.
5227 2007-01-05 Daniel Jacobowitz <dan@codesourcery.com>
5229 * Makefile.tpl (all-target): Correct @if conditional for target
5231 * configure.in: Omit libiberty if building only target libgcc.
5232 * configure, Makefile.in: Regenerated.
5234 2007-01-04 Paolo Bonzini <bonzini@gnu.org>
5236 * configure.in: Use DEV-PHASE to detect the default for --enable-werror.
5237 * configure: Regenerate.
5239 2007-01-03 Daniel Jacobowitz <dan@codesourcery.com>
5241 * Makefile.def (target_modules): Add libgcc.
5242 (lang_env_dependencies): Remove default items. Use no_c and no_gcc.
5243 * Makefile.tpl (clean-target-libgcc): Delete.
5244 (configure-target-[+module+]): Emit --disable-bootstrap dependencies
5245 on gcc even for bootstrapped modules. Rewrite handling of
5246 lang_env_dependencies to loop over target_modules.
5247 * configure.in (target_libraries): Add target-libgcc.
5248 * Makefile.in, configure: Regenerated.
5250 2006-12-29 Paolo Bonzini <bonzini@gnu.org>
5253 2006-12-29 Paolo Bonzini <bonzini@gnu.org>
5255 * configure.in: Reorganize recognition of languages. Add
5256 --enable-stage1-languages. Show supported languages for the chosen
5257 target rather than all recognized languages.
5258 * configure: Regenerate.
5260 2006-12-29 Paolo Bonzini <bonzini@gnu.org>
5262 * Makefile.tpl (GCC_STRAP_TARGETS, all-prebootstrap): Remove.
5263 * Makefile.in: Regenerate.
5265 2006-12-29 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5267 * configure.in: Warn that MPFR 2.2.0 is buggy.
5268 * configure: Regenerate.
5270 2006-12-27 Ian Lance Taylor <iant@google.com>
5272 * configure.in: When removing Makefiles to force a reconfigure, also
5273 remove prev-DIR*/Makefile.
5274 * configure: Regenerate.
5276 2006-12-23 Kazu Hirata <kazu@codesourcery.com>
5278 * config.bfd: Recognize fido.
5280 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
5284 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
5286 * configure.in: Remove "$build" case for powerpc-*-darwin* since
5287 it only affects bootstrap and could be tested on "$host" as well.
5288 * configure: Regenerate.
5289 * config/mh-ppc-darwin: Add to the stage1 cflags here.
5291 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
5294 * Makefile.def (flags_to_pass): Add STAGE1_CHECKING.
5295 (bootstrap_stage): Add STAGE1_CHECKING to stage1 configure flags,
5296 move here comment from Makefile.tpl.
5297 * Makefile.tpl: Move some definitions higher in the file.
5298 (STAGE1_CHECKING): New.
5299 * configure.in: Add --enable-stage1-checking.
5300 * configure: Regenerate.
5301 * Makefile.in: Regenerate.
5303 2006-12-03 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5305 * configure.in: Update error message for missing GMP/MPFR.
5307 * configure: Regenerate.
5309 2006-12-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5311 * configure.in: Update MPFR version in error message.
5313 * configure: Regenerate.
5315 2006-11-26 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5317 * configure.in (--with-mpfr-dir, --with-gmp-dir): Remove flags.
5318 (--with-mpfr-include, --with-mpfr-lib, --with-gmp-include,
5319 --with-gmp-lib): New flags.
5321 * configure: Regenerate.
5323 2006-12-12 Andreas Tobler <a.tobler@schweiz.org>
5326 * configure.in: Correct x86 darwin support for libjava to powerpc
5328 * configure: Regenerate.
5330 2006-12-11 Alan Modra <amodra@bigpond.net.au>
5332 * configure.in: Handle spu makefile frag.
5333 * Makefile.tpl (MAINT): Define
5334 (MAINTAINER_MODE_FALSE, MAINTAINER_MODE_TRUE): Define.
5335 * configure: Regenerate.
5336 * Makefile.in: Regenerate.
5338 2006-12-11 Ben Elliston <bje@au.ibm.com>
5340 * config.sub, config.guess: Update from upstream sources.
5342 2006-12-11 Ben Elliston <bje@au.ibm.com>
5344 * configure.in: Sync with GCC (spu-*-*).
5345 * configure: Sync with GCC.
5347 2006-12-07 Mike Stump <mrs@apple.com>
5349 * Makefile.def (dependencies): Add dependency for
5350 install-target-libssp and install-target-libgomp on
5352 * Makefile.in: Regenerate.
5354 2006-11-16 Paolo Bonzini <bonzini@gnu.org>
5356 * Makefile.tpl (clean-target-libgcc): Test for gcc Makefile presence.
5357 (unstage): Test for stage_last presence.
5360 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Add HOST_SUBDIR in STAGE_PREFIX.
5361 * Makefile.in: Regenerate.
5363 2006-11-14 DJ Delorie <dj@redhat.com>
5365 * Makefile.tpl (clean-stage*): Sync with GCC (clean).
5366 * Makefile.in: Sync with GCC.
5367 * configure.in: Sync with GCC (mpfr, gmp).
5368 * configure: Sync with GCC.
5370 2006-11-08 Jie Zhang <jie.zhang@analog.com>
5372 * configure.in: Remove target-libgloss from noconfigdirs for
5374 * configure: Regenerated.
5376 2006-10-27 Jeff Johnston <jjohnstn@redhat.com>
5378 * COPYING.NEWLIB: Add spu license.
5379 * COPYING.LIBGLOSS: Ditto.
5381 2006-10-17 Brooks Moses <bmoses@stanford.edu>
5383 * Makefile.def: Added pdf target handling.
5384 * Makefile.tpl: Added pdf target handling.
5385 * Makefile.in: Regenerated.
5387 2006-10-11 Jeff Johnston <jjohnstn@redhat.com>
5389 * COPYING.NEWLIB: Updated.
5390 * COPYING.LIBGLOSS: Ditto.
5392 2006-09-27 Dave Brolley <brolley@redhat.com>
5394 * configure.in (RUNTEST): Look for 'runtest' in the source tree by using
5396 * configure: Regenerated.
5398 2006-09-26 Ben Elliston <bje@au.ibm.com>
5400 * config.sub, config.guess: Update from upstream sources.
5402 2006-09-20 Thiemo Seufer <ths@mips.com>
5404 * configure.in: Remove redundant handling of mips*-dec-bsd*. Likewise
5405 for mipstx39-*-*. Disable libgloss for mips64*-*-linux*.
5406 * configure: Regenerate.
5408 2006-08-30 Corinna Vinschen <corinna@vinschen.de>
5410 * configure.in: Never build newlib for a Mingw host.
5411 Never build newlib as Mingw target library.
5412 Test the existence of winsup/cygwin for building a Cygwin newlib,
5413 rather than just winsup.
5414 Add winsup/mingw and winsup/w32api paths to FLAGS_FOR_TARGET if
5415 building a Mingw target.
5416 * configure: Regenerate.
5418 2006-08-15 Thiemo Seufer <ths@mips.com>
5419 Nigel Stephens <nigel@mips.com>
5420 David Ung <davidu@mips.com>
5422 * config.sub: Add support for sde as alias of mipsisa32-sde-elf.
5424 2006-07-25 Paolo Bonzini <bonzini@gnu.org>
5427 2006-07-04 Eric Botcazou <ebotcazou@libertysurf.fr>
5430 * configure.in: Add -fkeep-inline-functions to CFLAGS for stage 1
5431 if the bootstrap compiler is a GCC version that supports it.
5432 * configure: Regenerate.
5434 2006-07-22 Daniel Jacobowitz <dan@codesourcery.com>
5436 * configure.in: Allow mingw32 and cygwin targets to build cross-gdb.
5437 * configure: Regenerated.
5439 2006-07-18 Paolo Bonzini <bonzini@gnu.org>
5441 * Makefile.tpl (configure-stageN-MODULE): Pass --with-build-libsubdir
5442 for stages after the first.
5444 2006-07-17 Jakub Jelinek <jakub@redhat.com>
5446 * Makefile.def: Add dependencies for configure-opcodes
5447 on configure-intl and all-opcodes on all-intl.
5448 * Makefile.in: Regenerated.
5450 2006-07-04 Peter O'Gorman <peter@pogma.com>
5452 * ltconfig: chmod 644 before ranlib during install.
5454 2006-07-03 Paolo Bonzini <bonzini@gnu.org>
5456 * configure.in: Fix thinkos in previous check-in.
5457 * configure: Regenerate.
5459 2006-07-03 Paolo Bonzini <bonzini@gnu.org>
5463 2007-07-03 Paolo Bonzini <bonzini@gnu.org>
5466 * configure.in: Test subdir_requires and give an appropriate
5468 * configure: Regenerate.
5470 2006-06-16 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
5473 * configure.in: Only enable libgomp on IRIX 6.
5474 * configure: Regenerate.
5476 2006-06-20 David Ayers <d.ayers@inode.at>
5479 * configure.in: Add target-boehm-gc to noconfigdirs depending on
5480 whether target-libjava is being configured instead of whether the
5481 java front end is enabled.
5482 * configure: Regenerate.
5484 2006-06-15 Mark Shinwell <shinwell@codesourcery.com>
5486 * include/elf/arm.h: Correct names of R_ARM_LDC_G{0,1,2}
5487 to R_ARM_LDC_SB_G{0,1,2} respectively.
5489 2006-06-15 Paolo Bonzini <bonzini@gnu.org>
5491 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Export CFLAGS and LDFLAGS
5493 * Makefile.in: Regenerate.
5495 2006-06-13 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
5499 2006-06-12 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
5500 * configure.in: Don't enable libgomp on hpux10.
5501 * configure: Rebuilt.
5503 2006-06-13 David Ayers <d.ayers@inode.at>
5507 2006-06-12 David Ayers <d.ayers@inode.at>
5511 * configure.in: Remove target-boehm-gc from noconfigdirs where
5512 ${libgcj} is specified.
5513 * configure: Regenerate.
5515 2006-06-08 Jeff Johnston <jjohnstn@redhat.com>
5519 2005-01-12 David Edelsohn <edelsohn@gnu.org>
5520 Andreas Schwab <schwab@suse.de>
5523 * config-ml.in: Eval option if surrounded by single quotes.
5525 2006-06-07 Carlos O'Donell <carlos@codesourcery.com>
5529 2006-06-06 David Ayers <d.ayers@inode.at>
5532 * Makefile.def: Add dependencies for libobjc which boehm-gc.
5533 * Makefile.in: Regenerate.
5534 * configure.in: Add --enable-objc-gc at toplevel and have it
5535 enable boehm-gc for Objective-C.
5536 Remove target-boehm-gc from libgcj.
5537 Add target-boehm-gc to target_libraries.
5538 Add target-boehm-gc to noconfigdirs where ${libgcj}
5540 Assert that boehm-gc is supported when requested for Objective-C.
5541 Only build boehm-gc if needed either for Java or Objective-C.
5542 * configure: Regenerate.
5544 2006-06-05 Paolo Bonzini <bonzini@gnu.org>
5547 * Makefile.tpl (configure-[+prefix+][+module+],
5548 all-[+prefix+][+module+]): Depend on stage_current if bootstrapping.
5549 Remove rule to unstage bootstrapped modules.
5550 (stage_current): New.
5551 * Makefile.in: Regenerate.
5553 2006-05-20 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
5554 Andreas Tobler <a.tobler@schweiz.ch>
5556 * configure.in: Enable libgcj for hppa*-hp-hpux11*.
5557 * configure: Rebuilt.
5560 2006-01-31 Richard Guenther <rguenther@suse.de>
5561 Paolo Bonzini <bonzini@gnu.org>
5563 * Makefile.def (target_modules): Add libgcc-math target module.
5564 * configure.in (target_libraries): Add libgcc-math target library.
5565 (--enable-libgcc-math): New configure switch.
5566 * Makefile.in: Re-generate.
5567 * configure: Re-generate.
5569 2006-06-05 Jeff Johnston <jjohnstn@redhat.com>
5571 * config-ml.in: Alter CCASFLAGS to include special
5572 multilib options the same as is done for CFLAGS.
5574 2006-05-31 Daniel Jacobowitz <dan@codesourcery.com>
5576 * Makefile.def: Added dependencies from sim and gdb on intl, and
5577 added configure dependencies to everything with an all dependency
5579 * gettext.m4: Removed.
5580 * src-release (DEVO_SUPPORT): Don't mention gettext.m4.
5581 (GDB_SUPPORT_DIRS): Add intl.
5582 * Makefile.in: Regenerated.
5584 2006-05-25 Daniel Jacobowitz <dan@codesourcery.com>
5586 * src-release (DEVO_SUPPORT): Add config.rpath.
5588 2006-05-25 Paolo Bonzini <bonzini@gnu.org>
5590 * Makefile.def (bfd, opcodes): Fix lib_path.
5591 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Replace ADAC with ADAFLAGS.
5592 (restrap): Move under "@if gcc-bootstrap". Fix typo.
5593 * Makefile.in: Regenerate.
5595 2006-05-24 Mark Shinwell <shinwell@codesourcery.com>
5597 * configure.in: Enable gprof for cross builds.
5598 * configure: Regenerate.
5600 2006-05-17 Daniel Jacobowitz <dan@codesourcery.com>
5602 * src-release (MAKEINFOFLAGS): Define.
5603 (do-proto-toplev): Pass MAKEINFOFLAGS to submakes.
5605 2006-05-14 Ben Elliston <bje@au.ibm.com>
5607 * config.sub, config.guess: Update from upstream sources.
5609 2006-05-12 Ben Elliston <bje@au.ibm.com>
5611 * config.sub, config.guess: Update from upstream sources.
5613 2006-05-04 Steve Ellcey <sje@cup.hp.com>
5615 * blt, iwidgets, mmalloc: Remove directories.
5617 2006-05-01 DJ Delorie <dj@redhat.com>
5619 * configure.in: Restore CFLAGS if GMP isn't present.
5620 * configure: Regenerate.
5622 2006-04-18 DJ Delorie <dj@redhat.com>
5624 * configure.in (m32c): Build libstdc++-v3. Pass flags to
5625 reference libgloss so that libssp can be built in a combined
5627 * configure: Regenerate.
5629 2006-04-10 Ben Elliston <bje@au.ibm.com>
5631 * contrib: Remove directory.
5633 2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
5635 * Makefile.tpl: Add install-html target.
5636 * Makefile.def: Add install-html target.
5637 * Makefile.in: Regenerate.
5638 * configure.in: Add --with-datarootdir, --with-docdir,
5639 and --with-htmldir options.
5640 * configure: Regenerate.
5642 2006-03-31 Ben Elliston <bje@au.ibm.com>
5645 * configure.in: Require makeinfo 4.4 or higher.
5646 * configure: Regenerate.
5648 2006-03-14 Paolo Bonzini <bonzini@gnu.org>
5650 * Makefile.in: Regenerate.
5652 2006-03-14 Paolo Bonzini <bonzini@gnu.org>
5655 2006-03-10 Aldy Hernandez <aldyh@redhat.com>
5657 * configure.in: Handle --disable-<component> generically.
5658 * configure: Regenerate.
5660 2006-02-21 Rafael Avila de Espindola <rafael.espindola@gmail.com>
5662 * Makefile.tpl (BUILD_CONFIGDIRS): Remove.
5663 (TARGET_CONFIGDIRS): Remove.
5664 * configure.in: Remove AC_SUBST(target_configdirs).
5665 * Makefile.in, configure: Regenerated.
5668 2006-03-01 H.J. Lu <hongjiu.lu@intel.com>
5671 * ltmain.sh: Don't use "$finalize_rpath" for compile.
5673 2006-02-20 Paolo Bonzini <bonzini@gnu.org>
5677 * Makefile.tpl ([+compare-target+]): Print explanation messages.
5679 * Makefile.def (ADAFLAGS, BOOT_ADAFLAGS, LANGUAGES): New flags_to_pass.
5680 * Makefile.tpl (BASE_FLAGS_TO_PASS): Support optional flags_to_pass.
5681 (EXTRA_GCC_FLAGS): Remove ADAFLAGS, BOOT_ADAFLAGS, LANGUAGES,
5682 BUILD_PREFIX, BUILD_PREFIX_1.
5683 * configure.in: (BUILD_PREFIX, BUILD_PREFIX_1): Don't substitute.
5685 * Makefile.def (bootstrap stage 1): Pass LIBCFLAGS too.
5686 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Override LIBCFLAGS too.
5688 * Makefile.tpl (configure-stage[+id+]-[+prefix+][+module+],
5689 all-stage[+id+]-[+prefix+][+module+], : Use $(current_stage) instead
5690 of `cat stage_current`. Always provide the `r' and `s' variables.
5691 (clean-stage[+id+]-[+prefix+][+module+]): Likewise, and make it into
5692 a single shell execution.
5693 (configure-[+prefix+][+module+], all-[+prefix+][+module+]): For
5694 bootstrapped modules, make the stage1 module if the build was not
5695 started yet, else build the current stage.
5696 (all-host, all-target): Omit bootstrapped modules (if bootstrapping).
5697 (all-build, all-host, all-target, [+make_target+]-host,
5698 [+make_target+]-target): Do not use \-continued lines.
5699 (target modules): Depend on stage_last, not all-gcc, if bootstrapping.
5700 (current_stage, restrap, stage_last): New.
5702 * Makefile.in: Regenerate.
5703 * configure: Regenerate.
5705 2006-02-14 Paolo Bonzini <bonzini@gnu.org>
5709 2006-01-31 Richard Guenther <rguenther@suse.de>
5710 Paolo Bonzini <bonzini@gnu.org>
5712 * Makefile.def (target_modules): Add libgcc-math target module.
5713 * configure.in (target_libraries): Add libgcc-math target library.
5714 (--enable-libgcc-math): New configure switch.
5715 * Makefile.in: Re-generate.
5716 * configure: Re-generate.
5717 * libgcc-math: New toplevel directory.
5719 2006-01-18 Richard Henderson <rth@redhat.com>
5720 Jakub Jelinek <jakub@redhat.com>
5721 Diego Novillo <dnovillo@redhat.com>
5723 * libgomp: New directory.
5724 * Makefile.def: Add target_module libgomp.
5725 * Makefile.in: Regenerate.
5726 * configure.in (target_libraries): Add target-libgomp.
5727 * configure: Regenerate.
5729 2006-02-14 Paolo Bonzini <bonzini@gnu.org>
5730 Andreas Schwab <schwab@suse.de>
5732 * configure: Regenerate.
5734 2006-01-16 Paolo Bonzini <bonzini@gnu.org>
5736 * configure.in: Set with_gnu_as, with_gnu_ld, with_newlib earlier.
5737 Set md_exec_prefix. Use ACX_CHECK_INSTALLED_TARGET_TOOL to find
5738 the assembler, linker and binutils.
5739 * configure: Regenerate.
5741 2006-01-16 Nick Clifton <nickc@redhat.com>
5743 * config.sub, config.guess: Sync from config repository.
5745 2006-01-05 Alexandre Oliva <aoliva@redhat.com>
5747 * Makefile.tpl (clean-stage[+id+]-[+prefix+][+module+]): Remove
5748 @ from continuation.
5749 * Makefile.in: Rebuilt.
5751 2006-01-04 Paolo Bonzini <bonzini@gnu.org>
5755 2006-01-04 Paolo Bonzini <bonzini@gnu.org>
5759 * Makefile.def (flags_to_pass): Add STAGE1_CFLAGS and STAGE1_LANGUAGES.
5760 * Makefile.tpl (OBJDUMP): New.
5761 (EXTRA_HOST_FLAGS): Add it.
5762 (EXTRA_GCC_FLAGS): Remove flags already specified in flags_to_pass.
5764 * Makefile.tpl (stage[+id+]-start, stage[+id+]-end): Do not try
5765 to use symbolic links between directories. Avoid race conditions
5766 or make them harmless.
5767 * configure.in: Do not try to use symbolic links between directories.
5769 * Makefile.def (LEAN): Pass.
5770 * Makefile.tpl (LEAN): Define.
5771 (stage[+id+]-start): Accept that the previous directory does not
5772 exist, if the bootstrap is lean.
5773 (stage[+id+]-bubble): Invoke lean bootstrap commands after
5774 stage[+id+]-start. Use a makefile variable and an `if' instead of a
5775 configure substitution.
5776 ([+compare-target+]): Likewise.
5777 ([+bootstrap-target+]-lean): New.
5778 * configure.in: Remove lean bootstrap support from here.
5780 * Makefile.in: Regenerate.
5781 * configure: Regenerate.
5783 2006-01-02 Andreas Schwab <schwab@suse.de>
5785 * configure.in: When reconfiguring remove Makefile in
5786 all stage directories.
5787 * configure: Regenerate.
5789 2005-12-27 Leif Ekblad <leif@rdos.net>
5791 * configure.in: Add support for RDOS target.
5792 * configure: Regenerate.
5794 2005-12-27 Nick Clifton <nickc@redhat.com>
5797 * libtool.m4: Synchronize with version in GCC sources.
5799 2005-12-20 Paolo Bonzini <bonzini@gnu.org>
5801 Revert Ada-related part of the previous change.
5803 * Makefile.def (ADAFLAGS, BOOT_ADAFLAGS, ADAFLAGS_FOR_TARGET):
5805 * Makefile.tpl (BOOT_ADAFLAGS): Do not define.
5806 * Makefile.in: Regenerate.
5807 * configure.in: Do not include mt-ppc-aix target fragment.
5808 * configure: Regenerate.
5810 2005-12-19 Paolo Bonzini <bonzini@gnu.org>
5812 * configure.in: Select appropriate fragments for PowerPC/AIX.
5813 * configure: Regenerate.
5815 * Makefile.def (flags_to_pass): Add ADAFLAGS, BOOT_ADAFLAGS,
5816 BOOT_CFLAGS, BOOT_LDFLAGS.
5817 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Handle BOOT_ADAFLAGS,
5818 BOOT_CFLAGS, BOOT_LDFLAGS.
5819 (TARGET_FLAGS_TO_PASS): Handle ADAFLAGS_FOR_TARGET.
5820 (stage[+id+]-bubble): Pass flags recursively to the comparison target.
5821 (stage): Fail if we cannot complete the work.
5822 * Makefile.in: Regenerate.
5824 2005-12-16 Jeff Johnston <jjohnstn@redhat.com>
5826 * COPYING.NEWLIB: Update copyright year for default
5829 2005-12-15 Paolo Bonzini <bonzini@gnu.org>
5831 * Makefile.tpl (all, do-[+make_target+], do-check, install,
5832 install-host-nogcc): Don't invoke $(stage) at the end.
5833 * Makefile.in: Regenerate.
5835 2005-12-14 Paolo Bonzini <bonzini@gnu.org>
5837 * configure.in: Flip the top-level bootstrap switch.
5838 * configure: Regenerate.
5842 2005-12-14 Daniel Jacobowitz <dan@codesourcery.com>
5844 * Makefile.tpl: Throughout the file, use : $(MAKE) along with
5845 $(stage) and $(unstage).
5846 (EXTRA_TARGET_FLAGS): Correct double-quoting.
5847 (all): Remove stray semicolon.
5848 (local-distclean): Don't handle multilib.tmp and multilib.out.
5849 (install.all): Set $s for consistency.
5850 (configure-[+prefix+][+module+]): Instead of [+deps+], handle
5851 check_multilibs setting. Always make the install directory.
5852 (configure-stage[+id+]-[+prefix+][+module+]): Likewise.
5854 (all-stage[+id+]-[+prefix+][+module+]): Correct @if/@endif.
5855 ($(TARGET_SUBDIR)/[+module+]/multilib.out): Remove.
5856 (stage[+id+]-start, stage[+id+]-end): Stage $(TARGET_SUBDIR).
5857 (multilib.out): Remove.
5858 * Makefile.in: Regenerated.
5860 2005-12-12 Nathan Sidwell <nathan@codesourcery.com>
5862 * config.sub: Replace ms1 arch with mt. Allow ms1 as alias.
5863 * configure.in: Replace ms1 arch with mt.
5864 * configure: Rebuilt.
5866 2005-12-05 Paolo Bonzini <bonzini@gnu.org>
5870 2005-12-12 Nathan Sidwell <nathan@codesourcery.com>
5872 * config.sub: Replace ms1 arch with mt. Allow ms1 as alias.
5873 * configure.in: Replace ms1 arch with mt.
5874 * configure: Rebuilt.
5876 2005-12-05 Paolo Bonzini <bonzini@gnu.org>
5880 2005-12-05 Paolo Bonzini <bonzini@gnu.org>
5882 * configure.in (CONFIGURED_BISON, CONFIGURED_YACC, CONFIGURED_M4,
5883 CONFIGURED_FLEX, CONFIGURED_LEX, CONFIGURED_MAKEINFO): Remove
5884 "CONFIGURED_" from the AC_CHECK_PROGS invocation. Move below.
5885 Find in-tree tools if available.
5886 (EXPECT, RUNTEST, LIPO, STRIP): Find them and substitute them.
5887 (CONFIGURED_*_FOR_TARGET): Don't set nor substitute.
5888 (*_FOR_TARGET): Set them with GCC_TARGET_TOOL.
5889 (COMPILER_*_FOR_TARGET): New.
5890 * Makefile.tpl (HOST_EXPORTS): Add *_FOR_TARGET symbols that gcc needs.
5891 (BASE_TARGET_EXPORTS): Use COMPILER_*_FOR_TARGET symbols.
5892 (CONFIGURED_*, USUAL_*): Remove.
5893 (BISON, YACC, FLEX, LEX, M4, MAKEINFO, EXPECT, RUNTEST, LIPO,
5894 STRIP): Use autoconf substitutions.
5895 (COMPILER_AS_FOR_TARGET, COMPILER_LD_FOR_TARGET,
5896 COMPILER_NM_FOR_TARGET): New.
5897 (EXTRA_HOST_FLAGS): Pass LIPO and STRIP.
5899 (all): Make all-host and all-target in parallel.
5900 (do-[+make_target+], do-check, install, [+compare-target+]): Ensure
5901 that $$r and $$s are set before invoking a recursive make.
5902 (stage[+id+]-bubble): Likewise, and invoke the comparison at the end.
5903 ([+bootstrap-target+]): Inline most of the `all' target.
5905 2005-11-29 Ben Elliston <bje@au.ibm.com>
5907 * Makefile.tpl (clean-target-libgcc): Invoke clean-target-libgcc
5908 from the gcc build directory.
5909 * Makefile.in: Regenerate.
5911 2005-11-29 Ben Elliston <bje@au.ibm.com>
5913 * Makefile.def: Add new libdecnumber host_module. Make all-gcc
5914 depend on all-libdecnumber.
5915 * configure.in (host_libs): Include libdecnumber.
5916 * Makefile.in: Regenerate.
5917 * configure: Likewise.
5919 2005-11-21 Kean Johnston <jkj@sco.com>
5921 * config.sub, config.guess: Sync from upstream sources.
5923 2005-11-11 Daniel Jacobowitz <dan@codesourcery.com>
5925 * Makefile.def: Remove gdb dependencies for gdbtk.
5926 * Makefile.tpl (CONFIGURE_GDB_TK, INSTALL_GDB_TK): New variables.
5927 (configure-gdb, install-gdb): New rules.
5928 * configure.in: Set CONFIGURE_GDB_TK and INSTALL_GDB_TK.
5929 * Makefile.in, configure: Regenerated.
5931 2005-10-22 Paolo Bonzini <bonzini@gnu.org>
5934 * Makefile.tpl (do-[+make-target+], do-check, install,
5935 stage[+id+]-bubble, [+compare-target+]): Ensure $$r and $$s
5936 are set before recursing.
5937 * Makefile.in: Regenerate.
5939 2005-10-20 Eric Botcazou <ebotcazou@adacore.com>
5942 * Makefile.def (gcc) <target>: Fix thinko.
5943 * Makefile.in: Regenerate.
5945 2005-10-17 Bernd Schmidt <bernd.schmidt@analog.com>
5947 * configure.in (bfin-*-*): Use test, not brackets, in if statement.
5948 * configure: Regenerate.
5950 2005-10-09 Kazu Hirata <kazu@codesourcery.com>
5952 * configure.in (arm-*-linux-gnueabi): Add to noconfigdirs
5953 target-libffi, target-qthreads, target-libjava, and
5955 * configure: Regenerate.
5957 2005-10-06 Daniel Jacobowitz <dan@codesourcery.com>
5959 * Makefile.def (flags_to_pass): Add OBJDUMP_FOR_TARGET.
5960 * Makefile.tpl (BASE_TARGET_EXPORTS): Add OBJDUMP.
5961 (OBJDUMP_FOR_TARGET, CONFIGURED_OBJDUMP_FOR_TARGET)
5962 (USUAL_OBJDUMP_FOR_TARGET): New.
5963 (EXTRA_TARGET_FLAGS): Add OBJDUMP.
5964 * configure.in: Check for $OBJDUMP_FOR_TARGET.
5965 * configure, Makefile.in: Regenerated.
5967 2005-10-05 Paolo Bonzini <bonzini@gnu.org>
5969 * Makefile.tpl (all) [gcc-no-bootstrap]: Make prebootstrap packages
5970 before other host packages.
5972 2005-10-05 Paolo Bonzini <bonzini@gnu.org>
5976 * configure.in (default_target): Remove.
5977 * Makefile.tpl (all): Do not use prerequisites as subroutines
5978 (all) [gcc-bootstrap]: Bootstrap gcc first if it was not done yet.
5979 (do-[+make_target+], check, install, [+bootstrap_target+]): Do not
5980 use prerequisites as subroutines.
5981 (check-host, check-target): New.
5982 (bootstrap configure & all targets): Do not use stage*-start
5983 if the directory layout is already ok.
5984 (non-bootstrap configure & all targets): Prepend a $(unstage).
5985 (stage[+id+]-bubble): Do that here. Do not use NOTPARALLEL.
5986 (NOTPARALLEL): Remove.
5987 (unstage, stage variables): New variables.
5988 (unstage, stage targets): Simply expand to those variables.
5990 * configure: Regenerate.
5991 * Makefile.in: Regenerate.
5993 2005-10-04 James E Wilson <wilson@specifix.com>
5995 * Makefile.def (lang_env_dependencies): Add libmudflap.
5996 * Makefile.in: Regenerate.
5998 2005-10-03 Catherine Moore <clm@cm00re.com>
6000 * configure.in (bfin-*-*): Support bfin.
6001 * configure: Regenerated.
6003 2005-09-30 H.J. Lu <hongjiu.lu@intel.com>
6005 * configure.in (*-*-darwin*): Build bfd, binutils and opcodes.
6006 * configure: Regenerated.
6008 2005-09-28 Geoffrey Keating <geoffk@apple.com>
6010 * Makefile.tpl (BASE_TARGET_EXPORTS): Add LIPO, STRIP.
6011 (LIPO_FOR_TARGET): New.
6012 (CONFIGURED_LIPO_FOR_TARGET): New.
6013 (USUAL_LIPO_FOR_TARGET): New.
6014 (STRIP_FOR_TARGET): New.
6015 (CONFIGURED_STRIP_FOR_TARGET): New.
6016 (USUAL_STRIP_FOR_TARGET): New.
6017 * Makefile.def (flags_to_pass): Add LIPO_FOR_TARGET and
6019 * configure.in: Set LIPO_FOR_TARGET, STRIP_FOR_TARGET,
6020 CONFIGURED_LIPO_FOR_TARGET, CONFIGURED_STRIP_FOR_TARGET.
6021 * Makefile.in: Regenerate.
6022 * configure: Regenerate.
6024 2005-09-19 David Edelsohn <edelsohn@gnu.org>
6026 * configure.in (powerpc-*-aix*): Add target-libssp to noconfigdirs.
6027 (rs6000-*-aix*): Same.
6028 * configure: Regenerate.
6030 2005-09-14 Francois-Xavier Coudert <coudert@clipper.ens.fr>
6032 * configure.in: Recognize f95 in the --enable-languages option,
6033 and substitute it for fortran, issuing a warning.
6034 * configure: Regenerate.
6036 2005-09-07 Ben Elliston <bje@au.ibm.com>
6038 Import from Autoconf sources:
6040 2005-09-06 Paul Eggert <eggert@cs.ucla.edu>
6041 * move-if-change: Don't output "$2 is unchanged"; suggested by Ben
6042 Elliston. Handle weird characters correctly.
6044 2005-08-30 Phil Edwards <phil@codesourcery.com>
6046 * configure.in (*-*-vxworks*): Add target-libstdc++-v3 to noconfigdirs.
6047 * configure: Regenerated.
6049 2005-08-20 Richard Earnshaw <richard.earnshaw@arm.com>
6051 * Makefile.def (libssp): Add to lang_env_dependencies.
6052 * Makefile.in: Regenerate.
6054 2005-08-17 Christian Groessler <chris@groessler.org>
6056 * Makefile.tpl: (USUAL_CC_FOR_TARGET): Add missing trailing slash.
6057 * Makefile.in: Regenerate.
6059 2005-08-12 Paolo Bonzini <bonzini@gnu.org>
6061 * configure.in: Replace NCN_STRICT_CHECK_TOOL with
6062 NCN_STRICT_CHECK_TOOLS, and likewise for NCN_STRICT_CHECK_TARGET_TOOLS.
6063 Look for alternate names of the target cc and c++
6064 * configure: Regenerate.
6066 2005-08-08 Paolo Bonzini <bonzini@gnu.org>
6068 * configure.in (CC_FOR_TARGET, CXX_FOR_TARGET, GCJ_FOR_TARGET,
6069 GCC_FOR_TARGET, RAW_CXX_FOR_TARGET, GFORTRAN_FOR_TARGET): Find
6070 them with NCN_STRICT_CHECK_TARGET_TOOL, like the other target
6071 tools; remove code to manually set them.
6072 (Target tools): Look in the environment for them.
6073 * Makefile.tpl (CC_FOR_TARGET, CXX_FOR_TARGET, GCJ_FOR_TARGET,
6074 GCC_FOR_TARGET, RAW_CXX_FOR_TARGET, GFORTRAN_FOR_TARGET): Redefine.
6075 (AS_FOR_TARGET, LD_FOR_TARGET, NM_FOR_TARGET): Look into gcc
6077 (CONFIGURED_CC_FOR_TARGET, CONFIGURED_CXX_FOR_TARGET,
6078 CONFIGURED_GCJ_FOR_TARGET, CONFIGURED_GCC_FOR_TARGET,
6079 CONFIGURED_GFORTRAN_FOR_TARGET, USUAL_CC_FOR_TARGET,
6080 USUAL_CXX_FOR_TARGET, USUAL_GCJ_FOR_TARGET, USUAL_GCC_FOR_TARGET,
6081 USUAL_RAW_CXX_FOR_TARGET, USUAL_GFORTRAN_FOR_TARGET): New.
6082 (CXX_FOR_TARGET_FOR_RECURSIVE_MAKE,
6083 RAW_CXX_FOR_TARGET_FOR_RECURSIVE_MAKE, RECURSE_FLAGS): Delete.
6084 * configure: Regenerate.
6085 * Makefile.in: Regenerate.
6087 2005-07-27 Mark Mitchell <mark@codesourcery.com>
6089 * Makefile.tpl (EXTRA_TARGET_FLAGS): Set LDFLAGS=LDFLAGS_FOR_TARGET.
6090 * Makefile.def (flags_to_pass): Add LDFLAGS_FOR_TARGET.
6091 * Makefile.in: Regenerated.
6093 2005-07-26 Mark Mitchell <mark@codesourcery.com>
6095 * Makefile.tpl (SYSROOT_CFLAGS_FOR_TARGET): New variable.
6096 (CFLAGS_FOR_TARGET): Use it.
6097 (CXXFLAGS_FOR_TARGET): Likewise.
6098 * Makefile.in: Regenerated.
6099 * configure.in (--with-build-sysroot): New option.
6100 * configure: Regenerated.
6102 2005-07-24 Paolo Bonzini <bonzini@gnu.org>
6104 * Makefile.tpl: Wrap install between unstage and stage
6105 * Makefile.in: Regenerate.
6107 2005-07-16 Kelley Cook <kcook@gcc.gnu.org>
6109 * all files: Update FSF address.
6111 2005-07-14 Jim Blandy <jimb@redhat.com>
6113 * configure.in: Add cases for Renesas m32c.
6114 * configure: Regenerated.
6116 2005-07-14 Kelley Cook <kcook@gcc.gnu.org>
6118 * COPYING, compile, config-ml.in, config.guess,
6119 config.sub, install-sh, missing, mkinstalldirs,
6120 symlink-tree, ylwrap: Sync from upstream sources.
6122 2005-07-13 Eric Christopher <echristo@redhat.com>
6124 * configure.in: Add toplevel noconfigdir support for tpf.
6125 * configure: Regenerate.
6127 2005-07-11 Jakub Jelinek <jakub@redhat.com>
6129 * Makefile.def (target_modules): Add libssp.
6130 * configure.in (target_libraries): Add target-libssp.
6131 * configure: Rebuilt.
6132 * Makefile.in: Rebuilt.
6134 2005-07-11 Paolo Bonzini <bonzini@gnu.org>
6138 * Makefile.def: Sync with gcc.
6139 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Fix pasto.
6140 * Makefile.in: Regenerate.
6142 2005-07-07 Andreas Schwab <schwab@suse.de>
6144 * Makefile.def (flags_to_pass): Add CFLAGS_FOR_BUILD.
6145 * Makefile.tpl (EXTRA_GCC_FLAGS): Don't pass CFLAGS_FOR_BUILD here.
6146 * Makefile.in: Regenerated.
6148 2005-07-07 Kazu Hirata <kazu@codesourcery.com>
6150 * configure.in: Add --enable-libssp and --disable-libssp.
6151 * configure: Regenerate with autoconf-2.13.
6153 2005-07-06 Geoffrey Keating <geoffk@apple.com>
6155 * configure.in: Don't build sim or rda when targetting darwin.
6156 * configure: Regenerate.
6158 2005-07-04 Ben Elliston <bje@gnu.org>
6160 * src-release (do-proto-toplev): Remove dejagnu bits.
6161 (DEJAGNU_SUPPORT_DIRS): Remove.
6162 (dejagnu.tar.bz2, dejagnu.tar): Likewise.
6163 (GDBD_SUPPORT_DIRS): Likewise.
6164 (gdb+dejagnu.tar.bz2, gdb+dejagnu.tar): Likewise.
6165 (INSIGHTD_SUPPORT_DIRS): Likewise.
6166 (insight+dejagnu.tar.bz2, insight+dejagnu.tar): Likewise.
6168 2005-06-30 Ben Elliston <bje@gnu.org>
6170 * setup.com (mpw): Remove unused directive.
6172 2005-06-22 Paolo Bonzini <bonzini@gnu.org>
6174 * Makefile.def (stagefeedback): Come after profile.
6175 Define profiledbootstrap target.
6176 * Makefile.tpl (profiledbootstrap): Remove.
6177 (stageprofile-end): Zap stagefeedback.
6178 (stagefeedback-start): Copy all .gcda files, not only GCC's.
6179 * Makefile.in: Regenerate.
6181 2005-06-13 Zack Weinberg <zack@codesourcery.com>
6183 * depcomp: Update from automake CVS. Add 'ia64hp' stanza.
6184 In 'cpp' stanza, support '#line' as well as '# '.
6186 2005-06-07 Hans-Peter Nilsson <hp@axis.com>
6188 * configure.in (unsupported_languages): New macro.
6189 <mmix-knuth-mmixware>: Set unsupported_languages. Name explicit
6190 non-ported target libraries in noconfigdirs.
6191 <cris-*, crisv32-*> Ditto, except for non-aout, non-elf,
6192 non-linux-gnu. Remove libgcj_ex_libffi.
6193 <lang_frag loop>: Set add_this_lang=no if the language is in
6194 unsupported_languages.
6195 * configure: Regenerate.
6197 2005-06-04 Tobias Schl"uter <tobias.schlueter@physik.uni-muenchen.de>
6199 * configure.in: Fix typo in handling of --with-mpfr-dir.
6200 * configure: Regenerate.
6202 2005-06-02 Jim Blandy <jimb@redhat.com>
6204 * config.sub: Add cases for the Renesas m32c. (This patch has been
6205 accepted into the master sources.)
6207 2005-06-02 Aldy Hernandez <aldyh@redhat.com>
6208 Michael Snyder <msnyder@redhat.com>
6209 Stan Cox <scox@redhat.com>
6211 * configure.in: Set noconfigdirs for ms1.
6213 * configure: Regenerate.
6215 2005-05-25 Paolo Bonzini <bonzini@gnu.org>
6217 * Makefile.tpl (stage[+id+]-start): Iterate over target module as well.
6218 (Dependencies): Consider target modules for bootstrap dependencies.
6219 Make target bootstrap modules depend on each stage's gcc.
6220 * Makefile.in: Regenerate.
6222 2005-05-20 Paolo Bonzini <bonzini@gnu.org>
6224 * Makefile.def (configure-gcc): Depend on binutils having been built.
6225 (all-gcc): No need to do it here.
6226 * Makefile.in: Regenerate.
6228 2005-05-19 Paul Brook <paul@codesourcery.com>
6230 * configure.in: Rewrite misleading error message when requested
6231 language cannot be built.
6232 * configure: Regenerate.
6234 2005-05-15 Daniel Jacobowitz <dan@codesourcery.com>
6236 * ylwrap: Import from Automake 1.9.5.
6238 2005-05-04 Mike Stump <mrs@apple.com>
6240 * configure.in: Always pass --target to target configures as
6241 otherwise rebuilds that do --recheck will fail.
6242 * configure: Rebuilt.
6244 2005-05-04 Paolo Bonzini <bonzini@gnu.org>
6246 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Rename from
6248 (configure, all): Add bootstrap support.
6249 (Host modules, target modules): Pass post-stage1 flags and exports.
6250 (Top-level bootstrap): Remove bootstrap rules, expanded elsewhere.
6251 * Makefile.in: Regenerate.
6253 2005-04-29 Paolo Bonzini <bonzini@gnu.org>
6257 2005-04-22 Bernd Schmidt <bernd.schmidt@analog.com>
6259 * config.sub: Update from master copy.
6261 2005-04-19 Hans-Peter Nilsson <hp@axis.com>
6263 * configure.in <crisv32-*-*, cris-*-*>: New local variable
6264 libgcj_ex_libffi. Have specific match for *-*-linux*. Separate
6265 matches for "*-*-aout" and "*-*-elf". Don't disable libffi for
6266 "*-*-elf" and "*-*-linux*".
6267 * configure: Regenerate.
6269 2005-04-06 Paolo Bonzini <bonzini@gnu.org>
6271 * Makefile.tpl (BUILD_CONFIGARGS): Include --with-build-subdir.
6272 (TARGET_CONFIGARGS): Include --with-target-subdir.
6273 (configure, all): New macros. Use them throughout.
6275 2005-04-05 Paolo Bonzini <bonzini@gnu.org>
6277 * Makefile.tpl: Sync with gcc.
6278 * Makefile.in: Regenerate.
6280 2005-03-30 J"orn Rennecke <joern.rennecke@st.com>
6282 * config/mh-mingw32: Delete.
6283 * configure.in: Don't use it.
6284 * configure: Regenerate.
6286 2005-03-31 Paolo Bonzini <bonzini@gnu.org>
6288 * Makefile.def (bfd, opcodes, libstdc++-v3, libmudflap): Set lib_path.
6289 * Makefile.tpl (SET_LIB_PATH, REALLY_SET_LIB_PATH): Remove.
6290 (HOST_EXPORTS, STAGE_HOST_EXPORTS, TARGET_EXPORTS): Set $(RPATH_ENVVAR).
6291 (HOST_LIB_PATH): Generate from Makefile.def.
6292 (TARGET_LIB_PATH): Likewise.
6293 (Old bootstrap targets): Include TARGET_LIB_PATH into RPATH_ENVVAR.
6294 * Makefile.in: Regenerate.
6295 * configure.in (set_lib_path, SET_LIB_PATH, SET_GCC_LIB_PATH): Remove.
6296 (RPATH_ENVVAR): Include Darwin case.
6297 * configure: Regenerate.
6299 2005-03-25 Paolo Bonzini <bonzini@gnu.org>
6301 * configure.in (RPATH_ENVVAR): Set to DYLD_LIBRARY_PATH on Darwin.
6302 * configure: Regenerate.
6304 2005-03-21 Zack Weinberg <zack@codesourcery.com>
6306 * Makefile.def: Remove libstdcxx_incdir, libsubdir, gxx_include_dir,
6307 gcc_version, and gcc_version_trigger from set of flags to pass.
6308 * Makefile.tpl: Remove definitions of above variables.
6309 (config.status): Remove dependency on $(gcc_version_trigger).
6310 * Makefile.in: Regenerate.
6311 * configure.in: Do not reference config/gcc-version.m4 nor
6312 config/gxx-include-dir.m4. Do not invoke TL_AC_GCC_VERSION nor
6313 TL_AC_GXX_INCLUDE_DIR. Do not set gcc_version_trigger.
6314 * configure: Regenerate.
6316 2005-03-16 Manfred Hollstein <manfred.h@gmx.net>
6317 Andrew Pinski <pinskia@physics.uc.edu>
6319 * Makefile.tpl (check-[+module+]): Fix shell statement inside if ... fi.
6320 * Makefile.in: Regenerate.
6322 2005-03-01 Alexandre Oliva <aoliva@redhat.com>
6325 * ltmain.sh: Avoid creating archives with components that have
6326 duplicate basenames.
6328 2005-02-28 Andrew Pinski <pinskia@physics.uc.edu>
6331 * Makefile.tpl (HOST target installs): Fix copy and pasto, use install
6333 * Makefile.in: Regenerate.
6335 2005-02-28 Paolo Bonzini <bonzini@gnu.org>
6339 2005-02-28 Paolo Bonzini <bonzini@gnu.org>
6342 * Makefile.def (target_modules): Remove "stage", now unnecessary.
6343 * Makefile.tpl (HOST_SUBDIR): New substitution.
6344 (STAGE_HOST_EXPORTS, EXPECT, HOST_LIB_PATH, USUAL_AR_FOR_TARGET,
6345 USUAL_AS_FOR_TARGET, USUAL_DLLTOOL_FOR_TARGET, USUAL_GCC_FOR_TARGET,
6346 USUAL_LD_FOR_TARGET, USUAL_NM_FOR_TARGET, USUAL_OBJDUMP_FOR_TARGET,
6347 USUAL_RANLIB_FOR_TARGET, USUAL_WINDRES_FOR_TARGET): Use it.
6348 (Host modules, Bootstrapped modules): Use it.
6349 (Build modules, Target modules): Do not create symlink trees,
6350 always configure out-of-srcdir.
6351 (distclean): Try removing $(host_subdir) with rm before using rm -rf.
6352 * configure.in (FLAGS_FOR_TARGET, CC_FOR_TARGET, GCJ_FOR_TARGET,
6353 GFORTRAN_FOR_TARGET, CXX_FOR_TARGET, RAW_CXX_FOR_TARGET): Use
6354 $(HOST_SUBDIR). Create a symlink for host_subdir.
6356 * Makefile.in: Regenerate.
6357 * configure: Regenerate.
6359 Merged from libada-gnattools-branch:
6360 2004-11-28 Nathanael Nerode <neroden@gcc.gnu.org>
6362 * Makefile.def: Add gnattools as a module, depending on target-libada.
6363 * Makefile.in: Regenerate.
6364 * configure.in: Include gnattools in host_tools; disable it if ada
6366 * configure: Regenerate.
6368 2005-02-23 Nick Clifton <nickc@redhat.com>
6370 * configure: Regenerate.
6372 2005-02-22 Paul Schlie <schlie@comcast.net>
6374 * configure.in: Allow darwin targeted ports to build tk, itcl and
6377 2005-02-21 Eric Botcazou <ebotcazou@libertysurf.fr>
6380 * configure.in (noconfigdirs) <sparc-*-solaris2.[0-6]>: Add libgcj.
6381 * configure: Regenerate.
6383 2005-02-08 Andrew Cagney <cagney@gnu.org>
6385 * MAINTAINERS: Delete reference to dejagnu/ and mmalloc/ from the
6386 gdb/ section. Update GDB's URL.
6388 2005-01-31 Andrew Cagney <cagney@gnu.org>
6390 * gettext.m4: Only set ENABLE_NLS when gettext is present.
6392 2005-01-29 Hans-Peter Nilsson <hp@axis.com>
6394 * configure.in (noconfigdirs) <crisv32-*-*>: Match like cris-*-*.
6395 <crisv32-*-*, cris-*-*>: Only disable target-newlib and
6396 target-libgloss when not *-*-elf and *-*-aout.
6397 * configure: Regenerate.
6399 2005-01-27 Andrew Cagney <cagney@gnu.org>
6401 * gettext.m4: Don't use NONE as a default for CATOBJEXT.
6403 2005-01-24 Andrew Cagney <cagney@gnu.org>
6405 * gettext.m4: Only fall back to ../intl/ when it's present.
6407 2005-01-17 Kelley Cook <kcook@gcc.gnu.org>
6409 * install-sh, config.sub: Import from upstream.
6411 2005-01-17 Kelley Cook <kcook@gcc.gnu.org>
6414 * Makefile.def: Pass CPPFLAGS_FOR_TARGET.
6415 * Makefile.tpl: Define target CPPFLAGS on CPPFLAGS_FOR_TARGET.
6416 * Makefile.in: Regenerate.
6418 2005-01-03 Paolo Bonzini <bonzini@gnu.org>
6420 Revert 2004-12-28 Makefile changes, a better fix will be
6421 applied to mainline and src after GCC 4.0 branches.
6423 2004-12-28 Paolo Bonzini <bonzini@gnu.org>
6427 * Makefile.def (target_modules): Remove stage parameter,
6428 it is always true now.
6429 * Makefile.tpl (configure-build-[+module+],
6430 configure-target-[+module+]): Always build symlink tree
6431 for the directory and for include. BUILD_SUBDIR and
6432 TARGET_SUBDIR cannot be . anymore.
6433 * Makefile.in: Regenerate.
6435 2004-12-25 David Edelsohn <edelsohn@gnu.org>
6437 Revert 2004-12-08 Makefile changes.
6439 2004-12-16 Andrew Stubbs <andrew.stubbs@st.com>
6441 * configure.in (sh64-*-*): Reenable gprof.
6442 * configure: Regenerate.
6444 2004-12-09 Jim Blandy <jimb@redhat.com>
6446 * MAINTAINERS: List 'depcomp' as part of automake.
6448 2004-12-08 David Edelsohn <edelsohn@gnu.org>
6450 * Makefile.def (flags_to_pass): Add PICFLAG_FOR_TARGET.
6451 * Makefile.tpl (EXTRA_HOST_FLAGS): Add PICFLAG.
6452 (EXTRA_TARGET_FLAGS): Add PICFLAG.
6453 * Makefile.in: Regenerate.
6455 2004-12-07 Matt Kraai <kraai@ftbfs.org>
6457 * Makefile.tpl: Generate normal dependencies if the LHS module is
6459 * Makefile.in: Regenerate.
6461 2004-12-03 Richard Sandiford <rsandifo@redhat.com>
6463 * configure.in: Include config/gxx-include-dir.m4. Use
6464 TL_AC_GXX_INCLUDE_DIR. Remove some now-redundant AC_SUBSTs.
6465 * configure: Regenerate.
6467 2004-12-03 Richard Sandiford <rsandifo@redhat.com>
6469 * config.if: Delete.
6470 * configure.in: Set libstdcxx_incdir directly.
6471 * configure: Regenerate.
6472 * MAINTAINERS: Remove mention of config.if.
6473 * src-release (DEVO_SUPPORT): Remove config.if.
6475 2004-12-02 Eric Christopher <echristo@redhat.com>
6477 * Makefile.tpl (clean-target-libgcc): Add stmp-dirs to list
6478 of things to remove.
6479 * Makefile.in: Regenerate.
6481 2004-12-02 Richard Sandiford <rsandifo@redhat.com>
6483 * configure.in: Clear gcc_version_trigger if the file doesn't exist.
6484 * configure: Regenerate.
6486 2004-12-02 Richard Sandiford <rsandifo@redhat.com>
6488 * configure.in: Include config/gcc-version.m4. Use TL_AC_GCC_VERSION
6489 to set gcc_version_trigger. Remove some now-redundant AC_SUBSTs.
6490 * configure: Regenerate.
6492 2004-11-26 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
6494 * configure.in (hppa*-*-linux*): Don't add libgcj to noconfigdirs.
6495 (hppa*64*-*-*): Delete incorrect comment.
6496 * configure: Rebuilt.
6498 2004-11-15 Kelley Cook <kcook@gcc.gnu.org>
6500 * install-sh, compile: Import from automake.
6502 2004-11-15 Kelley Cook <kcook@gcc.gnu.org>
6504 * config.guess, config.sub: Import from savannnah.
6506 2004-11-12 Mike Stump <mrs@apple.com>
6508 * Makefile.def: Add html support.
6509 * Makefile.tpl: Likewise.
6510 * Makefile.in: Regenerate.
6512 2004-11-11 Geoffrey Keating <geoffk@apple.com>
6515 * configure.in: Remove all instances of build-fixincludes from
6517 (build_configargs): Supply --target to subdirectories.
6518 * configure: Regenerate.
6520 * Makefile.def: Make gcc install depend on fixincludes install.
6521 * Makefile.in: Regenerate.
6523 2004-11-08 Hans-Peter Nilsson <hp@bitrange.com>
6525 * configure.in (noconfigdirs) [mmix-*-*]: Disable
6527 * configure: Regenerate.
6529 2004-11-07 David Edelsohn <edelsohn@gnu.org>
6531 * config-ml.in: Pass FCFLAGS for multilibs, handle GFORTRAN
6534 2004-11-05 Paolo Bonzini <bonzini@gnu.org>
6536 * Makefile.def (host fixincludes): Specify missing targets.
6537 * Makefile.in: Regenerate.
6539 2004-11-04 H.J. Lu <hongjiu.lu@intel.com>
6542 * configure.in: Set up LD_LIBRARY_PATH by default for gcc.
6543 * configure: Regenerated.
6545 2004-11-04 Daniel Jacobowitz <dan@debian.org>
6547 * configure.in (arm-*-oabi*, thumb-*-oabi*): Remove.
6548 * configure: Regenerated.
6550 2004-10-28 Eric B. Weddington <ericw@evcohs.com>
6553 * configure.in (case ${target}): Do not build fixincludes for avr.
6554 * configure: Regenerated.
6556 2004-10-26 Paolo Bonzini <bonzini@gnu.org>
6558 * configure.in (case ${target}): Do not build fixincludes
6559 on platforms where it is not used.
6560 * configure: Regenerated.
6562 2004-10-23 Daniel Jacobowitz <dan@debian.org>
6564 * configure.in: Use an absolute path to install-sh.
6565 * configure: Regenerated.
6567 2004-10-19 Andrew Cagney <cagney@gnu.org>
6569 * src-release (do-djunpack, do-md5sum): Install the generated file
6570 directly into the proto-toplev/ directory.
6572 2004-10-19 Andrew Cagney <cagney@gnu.org>
6574 * src-release (GDB_SUPPORT_DIRS): Remove utils and intl.
6576 2004-10-12 Kelley Cook <kcook@gcc.gnu.org>
6578 * configure.in (*-*-cygwin*): Supress warning if newlib not present.
6579 * configure: Regenerate.
6581 2004-10-06 Paolo Bonzini <bonzini@gnu.org>
6583 Fix wrong conflict resolution in:
6585 2004-08-16 Paolo Bonzini <bonzini@gnu.org>
6587 * Makefile.in: Regenerate.
6588 * Makefile.tpl (Autogenerated `all-*' targets): Invoke $(TARGET-*)
6589 in the recursive `make', instead of hardwiring `all'.
6590 (Autogenerated TARGET-* variables): New.
6592 2004-10-05 Ulrich Weigand <uweigand@de.ibm.com>
6594 Merged from GCC / libtool upstream:
6595 2004-10-02 P.J. Darcy <darcypj@us.ibm.com>
6596 * ltcf-c.sh (tpf*): Add ld_shlibs=yes.
6597 * ltcf-cxx.sh (tpf*): Likewise.
6598 * ltconfig (tpf*): Add TPF OS configuration support.
6600 2004-09-30 Tomer Levi <Tomer.Levi@nsc.com>
6602 * configure.in: Enable target-libgloss for crx-*-*.
6603 * configure: Regenerate.
6605 2004-09-24 Michael Roth <mroth@nessie.de>
6607 * configure.in (--without-headers): Add missing double quotes.
6608 * configure: Regenerate.
6610 2004-09-24 Kelley Cook <kcook@gcc.gnu.org>
6612 * ylwrap: Revert to previous version.
6614 2004-09-23 H.J. Lu <hongjiu.lu@intel.com>
6617 * Makefile.tpl (REALLY_SET_LIB_PATH): Add @SET_GCC_LIB_PATH@.
6618 (HOST_EXPORTS]): Add @SET_GCC_LIB_PATH@. Set and export
6619 SET_GCC_LIB_PATH_CMD.
6620 (BASE_TARGET_EXPORTS): Likewise.
6621 * Makefile.in: Regenerated.
6623 * configure.in (SET_GCC_LIB_PATH): Set and substitute.
6624 * configure: Regenerated.
6626 2004-09-23 Kelley Cook <kcook@gcc.gnu.org>
6628 * config.guess: New upstream version
6629 * compile, depcomp, install-sh, ylwrap: Likewise.
6631 2004-09-19 Roger Sayle <roger@eyesopen.com>
6633 * config/mh-x86omitfp: New host makefile fragment. Add
6634 -fomit-frame-pointer to the default BOOT_CFLAGS.
6635 * configure.in: Use it to speed up bootstrap on some IA-32 hosts.
6636 * configure: Regenerate.
6638 2004-09-15 Andrew Pinski <pinskia@physics.uc.edu>
6641 * configure.in (*-*-darwin*): Renable libobjc.
6642 * configure: Regenerate.
6644 2004-09-09 Daniel Berlin <dberlin@dberlin.org>
6646 * Makefile.def: Remove libbanshee.
6647 * Makefile.tpl: Ditto.
6648 * configure.in: Ditto.
6649 * Makefile.in: Regen.
6652 2004-09-07 Paolo Bonzini <bonzini@gnu.org>
6654 * missing: Import latest version from master repository.
6656 2004-09-04 Nick Clifton <nickc@redhat.com>
6658 * config.sub: Import latest version from master repository.
6659 * config.guess: Likewise.
6660 This includes these changes:
6662 2004-08-27 Hans-Peter Nilsson <hp@axis.com>
6664 * config.sub: Handle crisv32, alias etraxfs.
6665 * config.guess (crisv32:Linux:*:*): Handle.
6667 2004-08-13 Brad Smith <brad@comstyle.com>
6669 * config.guess (*:OpenBSD:*:*): Remove defunct MIPS machines.
6670 (sgi:OpenBSD:*:*): Emit mips64, not mipseb.
6672 2004-08-11 Paul Eggert <eggert@cs.ucla.edu>
6674 * config.guess (*:Darwin:*:*): If uname -p reports "unknown",
6675 assume the processor is a powerpc. This is because coreutils
6676 uname (at least versions 4.5.7 through 5.2.1) outputs "unknown"
6677 in this case, due to a MacOS X bug that causes
6678 sysctl ((int[]) {CTL_HW, HW_MACHINE_ARCH}, 2, buffer, &bufsize, 0, 0)
6679 to return a negative number.
6680 Problem reported by Petter Reinholdtsen in:
6681 http://lists.gnu.org/archive/html/bug-gnu-utils/2003-02/msg00201.html
6683 2004-07-19 Ben Elliston <bje@gnu.org>
6685 * config.guess (S7501:*:4.0:3.0): Handle NCR System V UNIX machine.
6687 2004-06-24 Ben Elliston <bje@gnu.org>
6689 * config.guess: Update copyright years.
6690 * config.sub: Likewise.
6692 2004-06-22 Robert Millan <robertmh@gnu.org>
6694 * config.guess (*:FreeBSD:*:*): Remove check for glibc (unneeded
6695 since GNU/kFreeBSD systems match *:GNU/*:*:* instead).
6697 2004-06-22 Stanley F. Quayle <stan@stanq.com>
6699 * config.guess (*:*VMS:*:*): New entry. Replaces
6700 Alpha:OpenVMS:*. Recognize and advertise all VMS flavors as dec
6703 2004-06-22 Ben Elliston <bje@gnu.org>
6705 * config.guess: Cray fixes from Wendy Palm <wendyp@cray.com>.
6706 * config.sub: Likewise.
6708 2004-06-22 Ben Elliston <bje@gnu.org>
6710 Reported by Hans-Peter Nilsson <hp@bitrange.com>:
6711 * config.sub: Correctly handle mmix-knuth and mmix-knuth-mmixware.
6713 2004-06-11 Ben Elliston <bje@gnu.org>
6715 * config.guess (pegasos:OpenBSD:*:*): Remove.
6717 2004-06-11 Ben Elliston <bje@gnu.org>
6719 From Wouter Verhelst <wouter@grep.be>:
6720 * config.guess (M68*:*:R3V[5678]:*): Detect R3V8.
6722 2004-06-11 Ben Elliston <bje@gnu.org>
6724 * config.guess (luna88k:OpenBSD:*:*): New.
6726 2004-03-12 Kazuhiro Inaoka <inaoka.kazuhiro@renesas.com>
6728 * config.guess (m32r*:Linux:*:*): New case.
6729 * config.sub: Handle m32rle.
6731 2004-03-12 Ben Elliston <bje@wasabisystems.com>
6733 From Jens Petersen <petersen@redhat.com>:
6734 * config.sub: Handle sparcv8.
6736 2004-03-03 Ben Elliston <bje@wasabisystems.com>
6738 From Tom Smith <smith@cag.lkg.hp.com>:
6739 * config.guess: Version suffixes are equally significant on Tru64
6740 V4.* and V5.*, so do not ignore them on V5.*. Handle a version
6741 prefix of "P" (patched kernel).
6743 2004-02-23 Tal Agmon <Tal.Agmon@nsc.com>
6745 * config.sub: Add support for National Semiconductor CRX target.
6747 2004-09-03 Jan Beulich <jbeulich@novell.com>
6749 * configure.in: Remove target-libstdc++-v3 from noconfigdirs for
6750 *-*-netware, but add target-libmudflap.
6751 Consolidate *-*-netware targets (of which really only i?86 exists)
6752 into a single entry.
6753 * configure: Likewise.
6755 2004-09-01 Paolo Bonzini <bonzini@gnu.org>
6757 * Makefile.tpl (sorry): Remove.
6758 (clean-stage[+id+], clean-stage[+id+]-module): New targets.
6759 (cleanstrap targets): Depend on distclean, not distclean-stage1.
6760 (do-clean): Clean per-stage directories too.
6761 (do-distclean): Run distclean-stage1 too.
6762 (.NOTPARALLEL): Enable during toplevel bootstrap.
6763 (stage[+id+]-bubble): Enable parallel execution during
6764 the recursive invocation.
6765 * Makefile.in: Regenerate.
6767 Sync from gcc (moving the Makefile.in change to Makefile.tpl):
6769 2004-08-31 Robert Bowdidge <bowdidge@apple.com>
6771 * Makefile.in: Move BOOT_CFLAGS above host makefile fragment include.
6772 * configure.in: add test for powerpc-*-darwin* to specify makefile frag
6773 * configure: regenerate
6774 * config/mh-ppc-darwin: create file, override BOOT_CFLAGS for
6777 2004-08-31 Paolo Bonzini <bonzini@gnu.org>
6779 * Makefile.tpl: Move BOOT_CFLAGS above host makefile fragment
6781 * configure.in: Fix indentation.
6782 * configure: Regenerate.
6784 2004-08-31 Paolo Bonzini <bonzini@gnu.org>
6786 * Makefile.def (build_modules): Add fixincludes.
6787 (dependencies): Make gcc depend on fixincludes.
6788 * configure.in (build_tools): Add fixincludes.
6789 (build_configdirs): Always include build_libs.
6790 * Makefile.in: Regenerate.
6791 * configure: Regenerate.
6793 2004-08-30 Paolo Bonzini <bonzini@gnu.org>
6795 * Makefile.def (bootstrap stages): Add 'lean' parameter.
6796 * Makefile.tpl (configure-stageN-*, all-stageN-*): Turned into
6797 phony targets; do not generate timestamp files.
6798 (distclean-stageN): Remove references to their timestamp files.
6799 (restageN, touch-stageN): Remove.
6800 (stageN-bubble): Rewritten.
6801 (compare): Support lean bootstraps.
6802 * Makefile.in: Regenerate.
6804 * configure.in: Only warn when bootstrapping but
6805 build != host or build != target. Support lean bootstraps.
6806 * configure: Regenerate.
6809 2004-08-26 Phil Edwards <phil@codesourcery.com>
6811 * configure.in: Give a better error message if GMP/MPFR are missing
6812 and a language needing them has been requested.
6813 * configure: Regenerated.
6815 2004-08-25 Phil Edwards <phil@codesourcery.com>
6817 * configure.in: Print a list of available language front-ends if
6818 a requested one is missing. Tidy stray tab characters.
6819 * configure: Regenerated.
6821 2004-08-17 Paolo Bonzini <bonzini@gnu.org>
6823 * Makefile.in: Regenerate.
6824 * configure: Regenerate.
6826 * Makefile.def (bootstrap-stage): Rename extra_*_flags to
6828 * Makefile.tpl (configure-[+module+], all-[+module+]): Exit
6829 for bootstrapped modules if toplevel bootstrap is going.
6830 (GCC bootstrap): Generate per-stage targets for all bootstrapped
6831 modules. Adjust for changes in Makefile.def. Enable several
6832 rules even in non-bootstrap mode, just to avoid peppering the
6833 template with unnecessary "@if/@endif gcc-bootstrap" pairs.
6834 (stage-[+prev+]-bubble): Remove.
6836 * Makefile.def (Dependencies): Depend on all-build-bison,
6837 all-build-flex, all-build-byacc, all-build-texinfo, rather
6838 than the host variations.
6839 * Makefile.tpl (BUILD_DIR_PREFIX): Remove. Replace throughout
6841 (BISON): Update for recent Bisons.
6843 (cross): Depend on all-build.
6844 (all): Do not depend on all-build.
6845 (prebootstrap): Remove.
6846 (dep-kind): Accept separate prefixes for MODULE and ON variables.
6847 (Prebootstrap dependencies): Add them to the per-stage targets
6848 and to all-prebootstrap.
6849 * configure.in (build_configdirs): Always enable build_tools.
6850 (BUILD_DIR_PREFIX): Remove.
6852 * Makefile.def (gcc): Add target variable.
6853 (gdb, expect, guile, tk, tix): Replace with_x with extra_make_flags.
6854 * Makefile.tpl (Autogenerated `all-*' targets): Invoke $(TARGET-*)
6855 in the recursive `make', instead of hardwiring `all'.
6856 (Autogenerated TARGET-* variables): New.
6858 2004-08-17 Robert Millan <robertmh@gnu.org>
6860 * configure.in: In noconfigdirs check, match GNU/k*BSD with GNU/Linux
6861 (instead of FreeBSD).
6862 * configure: Regenerate.
6864 2004-08-12 Nathanael Nerode <neroden@gcc.gnu.org>
6866 * Makefile.def, configure.in, src-release: Remove useless, bogus
6868 * Makefile.in, configure: Regenerate.
6870 * src-release: Stop distributing mmalloc with gdb (which doesn't
6872 * Makefile.def: GDB doesn't depend on mmalloc anymore.
6873 * Makefile.in: Regenerate.
6875 2004-08-09 Mark Mitchell <mark@codesourcery.com>
6877 * configure.in (arm*-*-eabi*): New target.
6878 * configure: Regenerate.
6880 2004-08-01 Robert Millan <robertmh@gnu.org>
6882 * configure.in: Turn mt-linux into mt-gnu. Use mt-gnu and enable
6883 libmudflap for all GNU-based systems (with Glibc).
6884 * configure: Regenerate.
6886 2004-08-06 Paolo Bonzini <bonzini@gnu.org>
6888 * Makefile.def (bfd, opcodes, gcc, zlib): Mark as bootstrap module.
6889 (bison, byacc, flex, texinfo): Do not mark as bootstrap module.
6890 (Dependencies): New section.
6891 * Makefile.tpl (Dependencies): Generate from Makefile.def.
6892 (configure-target-[+module+]): Depend on maybe-all-gcc
6893 (all-prebootstrap): New name of all-bootstrap. Changed throughout.
6894 (toplevel profiledbootstrap): Fix dependencies.
6895 * Makefile.in: Regenerate.
6897 2004-08-03 Mark Mitchell <mark@codesourcery.com>
6899 * configure.in (arm*-*-symbianelf*): Add ${libgcj} and
6900 target-libiberty to noconfigdirs.
6902 2004-08-03 Paul Brook <paul@codesourcery.com>
6904 * configure.in: Check for MPFR as well as GMP.
6905 * configure: Regenerate.
6907 2004-08-03 Paolo Bonzini <bonzini@gnu.org>
6909 * Makefile.def (host-modules): Add gcc.
6910 * Makefile.in: Regenerate.
6911 * Makefile.tpl (sorry): New rule.
6912 (configure-host, all-host, [+make_target+]-host, do-check,
6913 install-host): Do not add gcc as a special case.
6914 (host modules): Add a small special-casing for gcc. Export
6915 extra_make_flags through the environment.
6916 (maybe-configure-gcc, configure-gcc, maybe-all-gcc, all-gcc,
6917 maybe-check-gcc, check-gcc, maybe-install-gcc, install-gcc,
6918 other recursive targets for gcc): Remove.
6920 (all, do-[+make_target+], do-check): Wrap between unstage and stage.
6921 (stage, unstage): New rules.
6922 (stage[+id+]-start, stage[+id+]-end, [+compare-target+],
6923 distclean-stage[+id+]): Use stage_current.
6924 ([+bootstrap-target+], profiledbootstrap): Do not invoke manually
6925 the stage*-start rules.
6927 2004-07-19 Robert Millan <robertmh@gnu.org>
6931 2004-04-26 Robert Millan <robertmh@gnu.org>
6933 Add patches from libtool CVS.
6934 * libtool.m4: Add kfreebsd*-gnu and knetbsd*-gnu.
6935 * ltconfig: Likewise.
6936 * ltcf-c.sh: Likewise.
6937 * ltcf-cxx.sh: Likewise.
6938 * ltcf-gcj.sh: Likewise.
6940 2004-07-12 Paolo Bonzini <bonzini@gnu.org>
6942 * configure.in: Add noconfigdirs for crx-*-*.
6943 * configure: Regenerate.
6945 2004-07-12 Paolo Bonzini <bonzini@gnu.org>
6949 2004-07-09 Loren J. Rittle <ljrittle@acm.org>
6951 * configure.in: Build libmudflap by default on FreeBSD.
6952 * configure: Regenerated.
6954 2004-07-09 Mark Mitchell <mark@codesourcery.com>
6956 * configure.in: Do not build libmudflap by default on non-GNU/Linux
6958 * configure: Regenerated.
6960 2004-07-08 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
6963 * Makefile.tpl (profiledbootstrap): Build runtime libraries with
6964 feedback based compiler.
6965 * Makefile.in: Rebuilt.
6967 2004-07-05 Phil Edwards <phil@codesourcery.com>
6969 * configure.in: Do not prepend $srcdir to /dev/null in
6971 * configure: Regenerate.
6973 2004-07-08 Alexandre Oliva <aoliva@redhat.com>
6975 * Makefile.def (host_modules): Set bootstrap=true for flex.
6976 * Makefile.tpl (all-gcc): Depend on texinfo and flex.
6977 * Makefile.in: Rebuilt.
6979 2004-07-01 Paolo Bonzini <bonzini@gnu.org>
6981 * Makefile.def (build_modules): Add bison, byacc, flex,
6983 (flags_to_pass): Add FLEX.
6984 * Makefile.tpl (BUILD_DIR_PREFIX, BASE_EXPORTS): New.
6985 (BUILD_EXPORTS, HOST_EXPORTS, BASE_TARGET_EXPORTS): Include it.
6986 (DEFAULT_YACC, USUAL_YACC, DEFAULT_LEX, USUAL_LEX, DEFAULT_M4,
6987 DEFAULT_MAKEINFO): Remove.
6988 (CONFIGURED_YACC, CONFIGURED_FLEX, CONFIGURED_BISON,
6989 CONFIGURED_LEX, CONFIGURED_M4, CONFIGURED_MAKEINFO): Substitute.
6990 (YACC, FLEX, BISON, LEX, M4, MAKEINFO): Define to look into
6991 objdir or else use configured tool.
6993 (all): Depend on it.
6994 (Build module dependencies): Add.
6995 * Makefile.in: Regenerate.
6996 * configure.in: Better support for multiple build modules,
6997 matching what is done for host/target modules. Do not look
6998 for "plausible" locations of build tools if Canadian cross.
6999 Use autoconf's AC_PROG_CC to find a C compiler. Define
7000 BUILD_DIR_PREFIX. Look for flex, makeinfo and m4.
7001 * configure: Regenerate.
7003 2004-06-22 Paolo Bonzini <bonzini@gnu.org>
7005 * Makefile.tpl (HOST_EXPORTS): Fix pasto.
7006 * Makefile.in: Regenerate.
7008 2004-06-22 Paolo Bonzini <bonzini@gnu.org>
7010 * Makefile.tpl (configure-build-[+module+],
7011 configure-[+module+], configure-target-[+module+]): Pass
7012 [+extra_configure_args+].
7013 (all-build-[+module+], all-[+module+], check-[+module+],
7014 install-[+module+], [+make_target+]-[+module+],
7015 all-target-[+module+], check-target-[+module+],
7016 install-target-[+module+], [+make_target+]-target-[+module+]):
7017 Pass [+extra_make_args+].
7018 (HOST_EXPORTS): Include the former GCC_HOST_EXPORTS.
7019 (GCC_HOST_EXPORTS): Remove.
7020 (configure-gcc, all-gcc, GCC_STRAP_TARGETS, profiledbootstrap,
7021 cross, check-gcc, check-gcc-c++, install-gcc,
7022 gcc-no-fixedincludes, [+make_target+]-gcc, stage[+id+]-bubble):
7023 Replace GCC_HOST_EXPORTS with HOST_EXPORTS.
7024 * Makefile.in: Regenerate.
7026 2004-06-21 Christopher Faylor <cgf@alum.bu.edu>
7028 * configure.in: Check for srcdir/winsup rather than build directory
7030 * configure: Regenerate.
7032 2004-06-17 Corinna Vinschen <vinschen@redhat.com>
7034 * configure.in: Don't build Cygwin native newlib if winsup
7035 directory is missing. Emit warning instead.
7036 * configure: Regenerate.
7038 2004-06-09 Paolo Bonzini <bonzini@gnu.org>
7040 * Makefile.tpl (touch-stage[+id+]): New.
7041 (restage[+prev+]): Depend on touch-stage[+id+].
7043 * Makefile.tpl (RECURSE_FLAGS_TO_PASS): New.
7046 * Makefile.def: Add profile and feedback bootstrap stages.
7047 Remove next field from bootstrap stages.
7048 * Makefile.tpl (LN, LN_S): Substitute.
7049 (stageN-start, stageN-end): Use double-colon rules, to
7050 provide a hook for additional setup commands.
7051 (distclean-stageN-gcc, restageN): Create dependencies from
7052 [+prev+], not from [+next+].
7053 (stageN-bubble): Add commands for successive stages from
7054 [+prev+], using double-colon rules.
7055 (all-stageN-gcc): Fix typo.
7056 (stagefeedback-start, profiledbootstrap): New.
7057 * Makefile.in: Regenerate.
7058 * configure.in: Call ACX_PROG_LN.
7059 * configure: Regenerate.
7061 2004-06-03 Paolo Bonzini <bonzini@gnu.org>
7063 * configure.in: Fix --enable-bootstrap breakage introduced in trees
7065 * configure: Regenerate.
7067 2004-06-01 Paolo Bonzini <bonzini@gnu.org>
7069 * Makefile.tpl: Fix typo.
7070 * Makefile.in: Regenerate.
7072 2004-06-01 Paolo Bonzini <bonzini@gnu.org>
7074 * configure.in: Remove new- prefix from toplevel
7076 * configure: Regenerate.
7078 2004-06-01 Paolo Bonzini <bonzini@gnu.org>
7080 Merge this patch from the gcc tree:
7082 2004-05-30 Andreas Jaeger <aj@suse.de>
7083 Jim Wilson <wilson@specifixinc.com>
7085 * config-ml.in: Pass FFLAGS and ADAFLAGS for multilibs, handle F77
7088 2004-06-01 Paolo Bonzini <bonzini@gnu.org>
7090 * Makefile.tpl (all.normal): Rename to all.
7091 (all): Replace with a rule to pick the default
7092 target from configure.
7093 (all-gcc, configure-gcc): Use conditionals to
7094 do nothing when toplevel bootstrap is going on.
7095 (GCC directory bootstrap) [gcc-bootstrap]: Disable.
7096 (Toplevel bootstrap) [gcc-no-bootstrap]: Disable.
7097 * configure.in: Support --enable-bootstrap.
7099 * Makefile.def: Remove new- prefix from toplevel
7101 * Makefile.tpl: Likewise.
7103 * Makefile.def: Add bootstrap_stage 4. Add bootstrap2
7106 * Makefile.tpl (Toplevel bootstrap): Pass $(BASE_FLAGS_TO_PASS)
7107 $(RECURSE_FLAGS) to recursive invocation of make.
7109 * Makefile.in: Regenerate.
7110 * configure: Regenerate.
7112 2004-05-27 Daniel Jacobowitz <dan@debian.org>
7114 * configure.in: Fix sed invocation for GFORTRAN_FOR_TARGET.
7115 * configure: Regenerate.
7117 2004-05-25 Daniel Jacobowitz <drow@false.org>
7119 * Makefile.tpl (BUILD_EXPORTS, HOST_EXPORTS, GCC_HOST_EXPORTS)
7120 (STAGE_HOST_EXPORTS, BASE_TARGET_EXPORTS, RAW_CXX_TARGET_EXPORTS)
7121 (NORMAL_TARGET_EXPORTS): New macros. Use them in all the recursive
7123 * Makefile.in: Regenerate.
7125 2005-05-24 Paolo Bonzini <bonzini@gnu.org>
7127 * configure.in: Test the ability to symlink directories.
7128 * configure: Regenerate.
7130 * Makefile.def (bootstrap-stage): New definitions.
7131 * Makefile.tpl (configure-stage1-gcc,
7132 configure-stage2-gcc, configure-stage3-gcc,
7133 all-stage1-gcc, all-stage2-gcc, all-stage3-gcc,
7134 new-bootstrap, new-cleanstrap, new-restage1, new-restage2,
7135 new-restage3, compare): Autogenerate, see Makefile.in
7136 entry for behavioral changes.
7137 (distclean-stage1, new-stage1-start, new-stage1-end,
7138 new-stage1-bubble, distclean-stage2, new-stage2-start,
7139 new-stage2-end, new-stage2-bubble, distclean-stage3,
7140 new-stage3-start, new-stage3-end): New autogenerated targets.
7141 (objext, prebootstrap, BOOT_CFLAGS,
7142 POSTSTAGE1_FLAGS_TO_PASS): Move above the autogenerated
7145 * Makefile.in: Regenerate.
7146 (distclean-stage1, new-stage1-start, new-stage1-end,
7147 new-stage1-bubble, distclean-stage2, new-stage2-start,
7148 new-stage2-end, new-stage2-bubble, distclean-stage3,
7149 new-stage3-start, new-stage3-end): New targets.
7150 (all-stage1-gcc): Move prebootstrap dependency from here...
7151 (configure-stage1-gcc): ...to here.
7152 (new-bootstrap): Use bubble targets.
7153 (new-cleanstrap, new-restage1, new-restage2, new-restage3):
7154 Use per-stage distclean targets.
7155 (configure-stage1-gcc, configure-stage2-gcc,
7156 configure-stage3-gcc, all-stage1-gcc,
7157 all-stage2-gcc, all-stage3-gcc, new-bootstrap):
7158 Use new-stageN-start to prepare the tree.
7160 2004-05-23 Paolo Bonzini <bonzini@gnu.org>
7162 * Makefile.def (host_modules): add libcpp.
7163 * Makefile.tpl: Add dependencies on and for libcpp.
7164 * Makefile.in: Regenerate.
7165 * configure.in: Add libcpp host module.
7166 * configure: Regenerate.
7168 2004-05-17 Zack Weinberg <zack@codesourcery.com>
7170 * Makefile.def, Makefile.tpl, configure.in: Remove all mention
7172 * configure, Makefile.in: Regenerate.
7174 2004-05-13 Diego Novillo <dnovillo@redhat.com>
7176 Merge from tree-ssa-20020619-branch.
7178 * Makefile.def: Add libbanshee, libmudflap and libgfortran.
7179 * Makefile.tpl (BUILD_CONFIGDIRS): Add libbanshee.
7180 (HOST_GMPLIBS): Define.
7181 (HOST_GMPINC): Define.
7182 (TARGET_LIB_PATH): Add libmudflap.
7183 (GFORTRAN_FOR_TARGET): Define.
7184 (configure-build*): Export GFORTRAN.
7185 (configure-gcc): Export GMPLIBS and GMPINC.
7186 (all-gcc): Add maybe-all-libbanshee.
7187 (configure-target-libgfortran): Define.
7188 * Makefile.in: Regenerate.
7189 * configure.in (host_libs): Add libbanshee.
7190 (target_libraries): Add target-libmudflap and target-libgfortran.
7191 Add --with-libbanshee.
7192 Handle --disable-libmudflap.
7193 (*-*-freebsd*): Use with_gmp.
7194 Add $(libgcj) to noconfigdirs.
7195 * configure: Regenerate.
7196 * depcomp: New file.
7197 * MAINTAINERS: Add tree-ssa maintainers.
7199 2004-04-28 Paolo Bonzini <bonzini@gnu.org>
7201 * config/acx.m4: Fix fastcompare support for new-bootstrap.
7202 * configure: Regenerate.
7204 2004-04-27 Paolo Bonzini <bonzini@gnu.org>
7207 2004-04-26 Paolo Bonzini <bonzini@gnu.org>
7209 * Makefile.def (flags_to_pass): Remove *dir variables that
7210 are passed to the modules via TOPLEVEL_CONFIGURE_ARGUMENTS,
7211 as well as prefix and exec_prefix.
7212 * Makefile.in: Regenerate.
7214 2004-04-26 Paolo Bonzini <bonzini@gnu.org>
7216 * Makefile.def (host_modules): Mark with the bootstrap
7217 flag packages on which gcc depends.
7218 * Makefile.tpl (all-bootstrap): Use it.
7219 * Makefile.in: Regenerate.
7221 2004-04-26 Paolo Bonzini <bonzini@gnu.org>
7223 * Makefile.def (flags_to_pass): Remove *dir variables that
7224 are passed to the modules via TOPLEVEL_CONFIGURE_ARGUMENTS,
7225 as well as prefix and exec_prefix.
7226 * Makefile.in: Regenerate.
7228 2004-04-26 Paolo Bonzini <bonzini@gnu.org>
7230 * configure.in: Invoke ACX_PROG_CMP_IGNORE_INITIAL.
7231 * configure: Regenerate.
7232 * config/acx.m4: Mutuate ACX_PROG_CMP_IGNORE_INITIAL from gcc.
7233 * gcc/Makefile.tpl (compare): Use the result of the test.
7234 * gcc/Makefile.in: Regenerate.
7236 2004-04-23 Paolo Bonzini <bonzini@gnu.org>
7238 * Makefile.tpl (all-stage1-gcc, all-stage2-gcc, all-stage3-gcc):
7239 Always relocate gcc and prev-gcc to the original names, even
7241 (new-cleanstrap, new-restage1, new-restage2, new-restage3):
7244 2004-04-19 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
7246 * configure.in (mips*-*-irix5*): Enable ld.
7247 * configure: Regenerate.
7249 2004-04-15 James E Wilson <wilson@specifixinc.com>
7251 * Makefile.tpl (configure-[+module+], configure-gcc,
7252 configure-stage1-gcc, configure-stage2-gcc, configure-stage3-gcc):
7253 Set and export LDFLAGS.
7254 * Makefile.in: Regenerate.
7256 2004-04-09 Nathanael Nerode <neroden@gcc.gnu.org>
7259 * Makefile.tpl: If we don't have built-in-tree target tools,
7260 use the ones found by configure rather than hacking around with
7261 program_transform_name.
7262 * configure.in: Give Makefile.tpl the information necessary
7264 * Makefile.in: Regenerate.
7265 * configure: Regenerate.
7267 2004-04-06 Nathanael Nerode <neroden@gcc.gnu.org>
7270 * configure.in: When computing baseargs, strip *all* copies of
7271 offending options. Also, don't match/substitute the trailing space,
7272 so that this actually works when two similar options are separated by
7274 * configure: Regenerate.
7276 2004-04-06 David Edelsohn <edelsohn@gnu.org>
7278 * configure.in (powerpc-*-aix*): Remove target-libada from noconfigdirs.
7279 (rs6000-*-aix*): Same.
7280 * configure: Regenerate.
7282 2004-03-25 Stan Shebs <shebs@apple.com>
7284 Remove MPW support, no longer used.
7285 * mpw-README, mpw-build.in, mpw-config.in, mpw-configure,
7286 mpw-install: Remove files.
7287 * src-release (DEVO_SUPPORT): Remove names of removed files.
7288 * MAINTAINERS: Likewise.
7290 2004-03-24 Nathanael Nerode <neroden@gcc.gnu.org>
7292 * Makefile.tpl (top level bootstrap support): Remove now-unneeded
7293 STRICT_WARN, WARN_CFLAGS flags passed down to make.
7294 * Makefile.in: Regenerate.
7296 * configure.in (top level bootstrap support): Rework --enable-werror
7297 to set @stage2_werror_flag@.
7298 * configure: Regenerate.
7299 * Makefile.tpl (top level bootstrap support): Pass
7300 @stage2_werror_flag@ down to configure in stages 2 and 3.
7301 * Makefile.in: Regenerate.
7303 2004-03-23 Nathanael Nerode <neroden@gcc.gnu.org>
7305 * Makefile.tpl (new-bootstrap): Set CC and CC_FOR_BUILD in configure
7306 for stages 2 and 3 as well as in make. As a consequence, remove
7307 OUTPUT_OPTION (now detected by configure) from the flags passed down
7309 * Makefile.in: Regenerate.
7311 * Makefile.tpl (new-bootstrap): Fix typo.
7312 * Makefile.in: Regenerate.
7314 2004-03-22 Nathanael Nerode <neroden@gcc.gnu.org>
7316 * Makefile.tpl: Rearrange by moving recursive_targets rules
7317 into their proper sections.
7318 * Makefile.tpl (top level bootstrap support): Move disabling
7319 of coverage flags from 'make' to 'configure'; improve comments.
7320 * Makefile.in: Regenerate.
7322 * Makefile.tpl (experimental top level bootstrap) Move stage1
7323 language setting from all- target to configure- target; disable
7324 intermodule optimization in stage 1; prevent gratuitous rebuilds
7326 * Makefile.in: Regenerate.
7327 * configure.in: Comma-separate stage 1 language list for top
7329 * configure: Regenerate.
7331 * Makefile.tpl: Clean up experimental top level bootstrap support:
7332 note known problems; set CONFIG_SHELL; don't set BUILD_CC; relocate
7333 prev-gcc in configure- targets as well as all- targets.
7334 * Makefile.in: Regenerate.
7336 2004-03-17 Paolo Bonzini <bonzini@gnu.org>
7338 * configure.in: Remove symbolic link section.
7339 * configure: Regenerate.
7340 * Makefile.tpl (links): Remove.
7341 * Makefile.in: Regenerate.
7343 2004-03-15 Paolo Bonzini <bonzini@gnu.org>
7344 Nathanael Nerode <neroden@gcc.gnu.org>
7346 * configure.in (DEFAULT_YACC, DEFAULT_M4, DEFAULT_LEX):
7347 Set with AC_CHECK_PROGS.
7348 * configure.in: Fix comment typo from last patch.
7349 * configure: Regenerate.
7351 2004-03-15 Nathanael Nerode <neroden@gcc.gnu.org>
7353 * Makefile.tpl: Introduce experimental top level bootstrap support.
7354 * Makefile.in: Regenerate.
7355 * configure.in: Introduce support for top level bootstrap.
7356 * configure: Regenerate.
7358 2004-03-12 Eric Botcazou <ebotcazou@gcc.gnu.org>
7359 Paolo Bonzini <bonzini@gnu.org>
7362 * configure.in: Cope with shells that do not support unquoted ^
7363 * configure: Regenerate.
7365 2004-03-11 Eric Botcazou <ebotcazou@gcc.gnu.org>
7366 Paolo Bonzini <bonzini@gnu.org>
7369 * configure.in: Cope with shell that do not support nesting
7370 quotes inside quoted backquote substitutions.
7371 * configure: Regenerate.
7373 2004-03-10 Andrew Pinski <pinskia@physics.uc.edu>
7376 * configure.in: Fix escaping of $.
7377 * configure: Regenerate.
7379 2004-03-11 Nathanael Nerode <neroden@gcc.gnu.org>
7381 * configure: Regenerate.
7383 2004-03-08 Paolo Bonzini <bonzini@gnu.org>
7386 Move language detection to the top level.
7387 * configure.in: Find default values for the tools as
7388 soon as possible. Disable ada if GNAT is not found.
7389 Emit error message about missing languages. Expand
7390 --enable-languages=all for the gcc subdirectory.
7392 2004-03-01 Richard Sandiford <rsandifo@redhat.com>
7394 * configure.in (mips64*-*-linux*): Override mips*-*-linux* case
7396 * configure: Regenerated.
7398 2004-02-28 Nathanael Nerode <neroden@gcc.gnu.org>
7401 * Makefile.tpl: Guard XFOO sed statements better.
7402 * Makefile.tpl: Add dependency for configure-target-libada.
7403 * Makefile.in: Regenerate (incidentally fixes broken
7404 commit when libada-branch was merged).
7406 2004-02-28 Andrew Cagney <cagney@redhat.com>
7408 * src-release (CVS_NAMES): Define.
7409 (do-tar, do-tar): Prune $(CVS_NAMES).
7411 2004-02-23 Andrew Cagney <cagney@redhat.com>
7413 * texinfo/texinfo.tex: Update from version 2003-02-03.16 to
7416 2004-02-19 Nathanael Nerode <neroden@gcc.gnu.org>
7419 * mkinstalldirs, install-sh: Import from automake CVS HEAD.
7421 2004-02-19 Andrew Cagney <cagney@redhat.com>
7423 * config.guess: Update from version 2003-06-12 to 2004-02-16.
7424 * config.sub: Update from version 2003-06-13 to 2004-02-16.
7426 2004-02-11 David Edelsohn <edelsohn@gnu.org>
7428 * configure.in (powerpc-*-aix*): Add target-libada to noconfigdirs.
7429 (rs6000-*-aix*): Same.
7430 * configure: Regenerate.
7432 2004-02-11 Kelley Cook <kcook@gcc.gnu.org>
7434 * configure.in (host): Add in missing $noconfigdirs to defines.
7435 * configure: Regenerate.
7437 2004-02-10 Arnaud Charlet <charlet@act-europe.fr>,
7438 Nathanael Nerode <neroden@gcc.gnu.org>
7440 PR ada/6637, PR ada/5911
7441 Merge with libada-branch:
7442 * configure.in, Makefile.tpl, Makefile.def: Add target-libada,
7443 with appropriate dependencies. Add --enable-libada configure switch.
7444 * configure, Makefile.in: Regenerate.
7446 2004-02-05 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
7448 * configure.in: Don't pass --with-stabs on IRIX 5 either.
7449 * configure: Regenerate.
7451 2004-02-02 Jeff Johnston <jjohnstn@redhat.com>
7453 * COPYING.NEWLIB: Update Red Hat license to 2004.
7455 2004-01-23 DJ Delorie <dj@redhat.com>
7457 * Makefile.def (target_modules) [libiberty]: Don't stage.
7458 * Makefile.in: Rebuilt.
7460 2004-01-23 Jeff Johnston <jjohnstn@redhat.com>
7462 * COPYING.NEWLIB: Update to include copyrights for new
7465 2004-01-15 Andrew Cagney <cagney@redhat.com>
7467 * src-release: Update copyright year.
7468 (do-proto-toplev): Configure using i686-pc-linux-gnu.
7469 (NEWLIB_SUPPORT_DIRS): Delete macro.
7470 (newlib.tar.bz2): Delete rule.
7472 2004-01-14 Loren J. Rittle <ljrittle@acm.org>
7474 * Makefile.def (target_modules) [libtermcap, libiberty, zlib]: Stage.
7475 * Makefile.tpl (configure-target-[+module+]): Support stage.
7476 * Makefile.in: Rebuilt.
7478 2003-01-14 Maciej W. Rozycki <macro@ds2.pg.gda.pl>
7480 * gettext.m4: Quote names of macros to be defined by AC_DEFUN
7483 2004-01-04 Nathanael Nerode <neroden@gcc.gnu.org>
7485 * configure.in: Use ./config.cache, not config.cache.
7486 * configure: Regenerate.
7487 * Makefile.tpl: Special-casing not needed for GCC any more.
7488 * Makefile.in: Regenerate.
7490 * configure.in: Don't share a cache file for host dirs.
7491 * configure: Regenerate.
7493 * config-ml.in: Don't mess with the cache file.
7495 2004-01-03 Nathanael Nerode <neroden@gcc.gnu.org>
7497 * Makefile.tpl: Make GCC use a separate config.cache.
7498 * Makefile.in: Regenerate.
7500 PR bootstrap/11932, PR bootstrap/11933
7501 (I don't know if it will fix either of them, but it relates
7503 * configure.in: Don't use shared config.cache for target
7505 * configure: Regenerate.
7507 2003-12-31 Roger Sayle <roger@eyesopen.com>
7509 * configure.in (ia64*-*-hpux*): Disable building java libraries.
7510 * configure: Regenerated.
7512 2003-12-21 Bernardo Innocenti <bernie@develer.com>
7514 * configure.in (*-*-uclinux): Exclude newlib, libgloss and rda.
7515 * configure: Regenerated.
7517 2003-12-19 Nathanael Nerode <neroden@gcc.gnu.org>
7519 Port change over from GCC:
7520 2003-11-20 Kelley Cook <kcook@gcc.gnu.org>
7521 * Makefile.tpl (BASE_FLAGS_TO_PASS): Pass along CONFIG_SHELL.
7522 (configure-build-[+module+], configure-[+module+]): Likewise.
7523 (configure-target-[+module+], configure-gcc, config.status): Likewise.
7524 * Makefile.in: Regenerate.
7526 2003-12-08 Thomas Fitzsimmons <fitzsim@redhat.com>
7528 * configure.in (raw_libstdcxx_flags): Remove the leading space.
7529 * configure: Regenerate.
7531 2003-11-27 Jeff Johnston <jjohnstn@redhat.com>
7533 * COPYING.NEWLIB: Add license info for long long routines added to
7536 2003-11-14 Arnaud Charlet <charlet@act-europe.fr>
7538 * Makefile.tpl (EXTRA_GCC_FLAGS): Pass BOOT_ADAFLAGS.
7539 * Makefile.in: Regenerate.
7541 2003-10-20 Phil Edwards <phil@codesourcery.com>
7543 * configure.in (*-*-vxworks): Add target-libiberty to noconfdirs.
7544 * configure: Regenerate.
7546 2003-10-13 Nathanael Nerode <neroden@gcc.gnu.org>
7548 * Makefile.tpl: Make GCC_FLAGS_TO_PASS a superset of
7550 * Makefile.in: Regenerate.
7552 2003-10-05 Mohan Embar <gnustuff@thisiscool.com>
7554 * configure.in: Allow explicit specification of CFLAGS_FOR_BUILD.
7555 * configure: Rebuilt
7556 * Makefile.tpl: Use CFLAGS_FOR_BUILD computed by configure
7557 * Makefile.in: Rebuilt
7559 2003-10-03 H.J. Lu <hongjiu.lu@intel.com>
7561 * ltconfig (sys_lib_search_path_spec): Fix a typo for HPUX.
7563 2003-10-01 Phil Edwards <pme@gcc.gnu.org>
7565 * config-ml.in: Use ac_configure_args directly instead of
7566 ml_arguments. Only set ml_norecursion if --no[-]recursion is
7569 2003-10-01 Eric Botcazou <ebotcazou@libertysurf.fr>
7571 * config-ml.in: Propagate INSTALL variables.
7573 2003-09-21 Daniel Jacobowitz <drow@mvista.com>
7575 * configure.in: Pass a computed --program-transform-name
7577 * configure: Regenerated.
7579 2003-09-20 Nathanael Nerode <neroden@gcc.gnu.org>
7581 * Makefile.tpl: Don't pass down obsolete ENQUIRE variable.
7582 * Makefile.in: Regenerate.
7584 * Makefile.tpl: Don't pass (unused) DLLTOOL or WINDRES to gcc.
7585 * Makefile.in: Regenerate.
7587 2003-09-17 Daniel Jacobowitz <drow@mvista.com>
7589 * configure.in (TOPLEVEL_CONFIGURE_ARGUMENTS, baseargs): Fix
7591 * configure: Regenerated.
7593 2003-09-12 Michael Chastain <mec@shout.net>
7596 * src-release (do-proto-topleve): Remove junk files
7597 intl/config.cache, intl/config.status,
7598 intl/config.h, intl/stamp-h.
7600 2003-09-14 Andrew Cagney <cagney@redhat.com>
7602 * src-release (dejagnu.tar): New target.
7603 (dejagnu.tar.bz2): Recursively call "gdb-taz" rule.
7604 (do-djunpack): Use $(PACKAGE) for the package name.
7606 2003-09-04 DJ Delorie <dj@redhat.com>
7608 * configure: Regenerate.
7610 2003-09-04 Robert Millan <robertmh@gnu.org>
7612 * configure.in: Match GNU/KFreeBSD with new kfreebsd*-gnu triplet.
7614 2003-09-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
7616 * configure.in: Ensure arguments to sed are properly spaced.
7617 * configure: Regenerate.
7619 2003-08-28 Daniel Jacobowitz <drow@mvista.com>
7622 2003-07-20 Phil Edwards <pme@gcc.gnu.org>
7623 * install-sh: Update to newer upstream versions (associated with
7625 * missing: Likewise, plus $1Help2man -> $1 typo fix.
7627 2003-08-27 Daniel Jacobowitz <drow@mvista.com>
7629 * configure.in: Set RAW_CXX_FOR_TARGET if unset.
7630 * configure: Regenerated.
7632 2003-08-23 Phil Edwards <pme@gcc.gnu.org>
7634 * configure.in: Use newline instead of semicolon when assuming
7635 shell arguments in a for loop.
7636 * configure: Regenerated.
7638 2003-08-20 Geoffrey Keating <geoffk@apple.com>
7641 * configure.in: When testing with_libs and with_headers, treat
7642 'no' as unset. Based on a patch by Dan Kegel <dank@kegel.com>.
7643 * configure: Regenerate.
7645 * configure.in (TOPLEVEL_CONFIGURE_ARGUMENTS): Quote properly for
7647 (baseargs): Likewise.
7648 * configure: Regenerate.
7650 2003-08-19 Geoffrey Keating <geoffk@apple.com>
7652 * configure.in: Disable libgcj for darwin not on powerpc.
7653 * configure: Rebuild.
7655 2003-08-15 Michael Chastain <mec@shout.net>
7657 * src-release (do-proto-toplev): Remove junk files
7658 dejagnu/example/calc/config.status,
7659 dejagnu/example/calc/config.log.
7661 2003-08-14 Alexandre Duret-Lutz <adl@gnu.org>
7663 * config-ml.in, symlink-tree: Add license.
7665 2003-08-01 Nathanael Nerode <neroden@gcc.gnu.org>
7669 2003-08-01 Matt Kraai <kraai@alumni.cmu.edu>
7670 * Makefile.tpl (check, check-c++): Express dependencies using
7671 dependencies rather than commands.
7672 * Makefile.in: Regenerate.
7674 2003-07-31 Geoffrey Keating <geoffk@apple.com>
7675 * Makefile.tpl (libsubdir): Use gcc instead of gcc-lib.
7676 * Makefile.in: Update.
7678 2003-08-01 Andrew Cagney <cagney@redhat.com>
7680 * configure.in (noconfigdirs): Do not add GDB when m32r-*-*.
7683 2003-07-30 Andreas Tobler <a.tobler@schweiz.ch>
7685 * configure.in: Enable libgcj for darwin.
7686 * configure: Rebuild.
7688 2003-07-29 Nathanael Nerode <neroden@gcc.gnu.org>
7690 * mkinstalldirs: Import autoconf 2.57 / automake 1.7 version.
7692 2003-07-27 Nathanael Nerode <neroden@gcc.gnu.org>
7694 * Makefile.tpl: Use 'mkinstalldirs' rather than 'mkdir' when
7695 creating target and build subdirs to build all parent dirs as needed.
7696 * Makefile.in: Rebuild.
7697 * configure.in: Don't build dirs explicitly here.
7698 * configure: Rebuild.
7700 2003-07-22 Alexandre Oliva <aoliva@redhat.com>
7702 * Makefile.tpl (all-make): Depend on intl.
7703 * Makefile.in: Rebuilt.
7705 2003-07-16 Nathanael Nerode <neroden@gcc.gnu.org>
7707 * config.if: Remove unused libc_interface determination.
7709 2003-07-14 Nathanael Nerode <neroden@gcc.gnu.org>
7711 * Makefile.in: Regenerate, correctly this time.
7713 2003-07-13 Nathanael Nerode <neroden@gcc.gnu.org>
7715 * Makefile.tpl: Set INSTALL and friends using autoconf. Remove
7716 unused INSTALL_PROGRAM_ARGS.
7717 * configure.in: Use AC_PROG_INSTALL.
7718 * Makefile.in: Regenerate.
7719 * configure: Regenerate.
7721 2003-07-10 Alexandre Oliva <aoliva@redhat.com>
7723 * configure: Rebuilt.
7724 2001-09-26 Alexandre Oliva <aoliva@redhat.com>
7725 * configure.in (noconfigdirs) [am33_2.0-*-linux*]: Don't build
7726 newlib nor libgloss.
7727 Wed May 9 10:07:19 2001 Alexandre Oliva <aoliva@redhat.com>
7728 * configure.in (am33_2.0-*-linux*): Added.
7730 2003-07-09 Bob Wilson <bob.wilson@acm.org>
7732 * configure.in: Add ${libgcj} to noconfigdirs for xtensa-*-* targets.
7733 * configure: Regenerate.
7735 2003-07-06 H.J. Lu <hongjiu.lu@intel.com>
7737 * config-ml.in: Replace PWD with PWD_COMMAND.
7738 * Makefile.tpl: Likewise.
7739 * Makefile.in: Regenerated.
7741 2003-06-27 Nathanael Nerode <neroden@gcc.gnu.org>
7743 * configure.in: Clean up config-lang.in handling. Delete
7744 useless assignment to "subdirs".
7745 * configure: Regenerate.
7747 2003-06-26 Nathanael Nerode <neroden@gcc.gnu.org>
7749 * configure.in: Rename 'target_libs' to 'target_libraries'.
7750 Remove useless reference to 'target_libs'.
7751 * configure: Regenerate.
7753 2003-06-23 Keith Seitz <kseitz@sources.redhat.com>
7755 * Makefile.tpl: Add maybe-configure-itcl to configure-gdb.
7756 * Makefile.in: Regenerate.
7758 2003-06-23 Nathanael Nerode <neroden@gcc.gnu.org>
7760 * Makefile.def: Introduce flags_to_pass.
7761 * Makefile.tpl: Generate BASE_FLAGS_TO_PASS using it.
7762 * Makefile.in: Regenerate.
7764 2003-06-23 Hans-Peter Nilsson <hp@bitrange.com>
7766 * configure.in (noconfigdirs) <cris-*-*>: Disable target-newlib
7767 and target-libgloss.
7768 <d30v-*-*, fr30-*-*, i960-*-*, m32r-*-*>: Disable gdb.
7769 <h8300*-*-*>: Disable libf2c and ${libgcj}.
7770 * configure: Regenerate.
7772 2003-06-17 Benjamin Kosnik <bkoz@redhat.com>
7774 * configure.in: Update testsuite_flags to new location.
7775 * configure. Regenerate.
7777 2003-06-18 Nathanael Nerode <neroden@gcc.gnu.org>
7779 * Makefile.tpl: Remove BUILD_CC stuff.
7780 * Makefile.in: Regenerate.
7782 2003-06-14 H.J. Lu <hongjiu.lu@intel.com>
7784 * config.guess: Update to 2003-06-12 version.
7785 * config.sub: Update to 2003-06-13 version.
7787 2003-06-12 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
7789 * MAINTAINERS: Add myself as MIPS co-maintainer.
7791 2003-06-12 H.J. Lu <hongjiu.lu@intel.com>
7793 * config.guess: Update to 2003-06-06 version.
7794 * config.sub: Update to 2003-06-06 version.
7796 2003-06-11 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
7798 * configure.in: Don't pass --with-stabs for mips*-sgi-irix6*o32.
7799 * configure. Regenerate.
7801 2003-06-10 Nathanael Nerode <neroden@gcc.gnu.org>
7803 * configure.in: Disable serial configure by default.
7804 * configure: Regenerate.
7805 * Makefile.tpl: Abolish .NOTPARALLEL.
7806 * Makefile.in: Regenerate.
7808 * Makefile.tpl: Replace {build,host,target}_canonical by
7809 {build,host,target}.
7810 * Makefile.in: Regenerate.
7812 * Makefile.tpl: Fix stupid pasto.
7813 * Makefile.in: Regenerate.
7815 2003-06-09 Nathanael Nerode <neroden@gcc.gnu.org>
7817 * Makefile.tpl: Remove bogus conditional.
7818 * Makefile.in: Regenerate.
7820 2003-06-03 Nathanael Nerode <neroden@gcc.gnu.org>
7822 * Makefile.tpl: Make 'recursive targets' using autogen rather
7823 than shell loop. Remove duplicate 'clean' targets and false
7825 * Makefile.def: Add systematic dependencies to 'recursive' targets.
7826 Add systematic method of specifying missing targets in subdirs.
7827 Add copyright boilerplate.
7828 * Makefile.in: Regenerate.
7829 * configure.in: Add 'recursive targets' to maybe list.
7830 * configure: Regenerate.
7832 * Makefile.tpl: Rename [+target+] to [+make_target+].
7833 * Makefile.def: Rename 'target' to 'make_target'.
7835 2003-05-30 Nick Clifton <nickc@redhat.com>
7837 * README-maintainer-mode: Update URL for locating blessed config
7840 2003-05-29 Robert Millan <rmh@debian.org>
7842 * ltconfig: Import this patch and modify for use with current
7843 version of ltconfig:
7845 2003-05-21 Bruno Haible <bruno@clisp.org>
7847 * libtool.m4 (AC_LIBTOOL_SYS_DYNAMIC_LINKER): Add support for
7850 2003-05-28 DJ Delorie <dj@redhat.com>
7852 * Makefile.tpl: Make maybe-check-gcc .PHONY.
7853 * Makefile.in: Regenerate.
7855 2003-05-28 Jeff Johnston <jjohnstn@redhat.com>
7857 * COPYING.NEWLIB: Add license info for newlib/libc/sys/linux/stdlib.
7859 2003-05-21 DJ Delorie <dj@redhat.com>
7861 * Makefile.tpl (configure-target-libiberty): Depend only on gcc, not
7863 * Makefile.in: Regenerate.
7865 2003-05-21 DJ Delorie <dj@redhat.com>
7867 * Makefile.tpl: Add missing empty maybe-check-gcc target.
7868 * Makefile.in: Regenerate.
7870 2003-05-20 Maciej W. Rozycki <macro@ds2.pg.gda.pl>
7872 * configure.in: Use curly braces in the definition of tooldir.
7873 * configure: Regenerate.
7875 2003-05-19 Nathanael Nerode <neroden@gcc.gnu.org>
7877 * configure.in: Switch more things to use maybe dependencies.
7878 * Makefile.tpl: Switch more things to use maybe dependencies.
7879 Factor out common code from autogen IF statements.
7880 * configure: Regenerate.
7881 * Makefile.in: Regenerate.
7883 2003-05-14 Kelley Cook <kelleycook@wideopenwest.com>
7885 * configure.in: Accept i[3456789]86 for machine type.
7886 * configure: Regenerate.
7888 2003-05-18 Nathanael Nerode <neroden@gcc.gnu.org>
7890 * configure.in: Switch more things to use maybe dependencies.
7891 Rearrange a little. Use GCC_TOPLEV_SUBDIRS.
7892 * configure: Regenerate.
7893 * Makefile.tpl: Switch more things to use maybe dependencies.
7894 * Makefile.in: Regenerate.
7896 2003-05-16 Andreas Schwab <schwab@suse.de>
7898 * Makefile.tpl (install-opcodes): Define.
7899 * Makefile.in: Rebuild.
7901 2003-05-13 Andreas Jaeger <aj@suse.de>
7903 * config.guess: Update to 2003-05-09 version.
7904 * config.sub: Update to 2003-05-09 version.
7906 2003-05-13 Michael Eager <eager@mvista.com>
7908 * configure.in: Correct sed script so that options in quotes are not
7910 * configure: Rebuild.
7912 2003-05-12 Corinna Vinschen <corinna@vinschen.de>
7914 * configure.in (FLAGS_FOR_TARGET): Remove $$s/newlib/libc/sys/cygwin
7915 and $$s/newlib/libc/sys/cygwin32 include paths.
7918 2003-05-05 H.J. Lu <hjl@gnu.org>
7920 * config-ml.in: Restored from gcc repository.
7922 2003-05-02 Chris Demetriou <cgd@broadcom.com>
7924 * Makefile.tpl: Require "makeinfo" from texinfo 4.2 or later.
7925 * Makefile.in: Regenerate.
7927 2003-04-27 Daniel Jacobowitz <drow@mvista.com>
7929 * src-release (DEVO_SUPPORT): Add src-release, Makefile.tpl,
7932 2003-04-27 Daniel Jacobowitz <drow@mvista.com>
7934 * Makefile.tpl: Clean $(BUILD_SUBDIR).
7935 * Makefile.in: Regenerated.
7937 2003-04-18 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
7939 * Makefile.tpl (MAKEINFOFLAGS): Default to --split-size=5000000.
7940 * Makefile.in: Regenerate.
7942 2003-04-18 Jakub Jelinek <jakub@redhat.com>
7944 * configure.in (powerpc64*-*-linux*): Remove.
7945 * configure: Rebuilt.
7947 2003-04-17 Phil Edwards <pme@gcc.gnu.org>
7949 * Makefile.tpl (GCC_STRAP_TARGETS): New variable containing all the
7950 previous bootstrap targets, plus bubblestrap, quickstrap, cleanstrap,
7952 * Makefile.in: Regenerate.
7954 2003-04-16 Richard Earnshaw <rearnsha@arm.com>
7956 * configure.in (arm-*-netbsdelf*): Enable building java libraries.
7957 * configure: Regenerated.
7959 2003-04-11 Alexandre Oliva <aoliva@redhat.com>
7961 * libtool.m4 (lt_cv_deplibs_check_method): Use pass_all on mips*.
7962 * */configure: Rebuilt.
7964 2003-03-14 Nathanael Nerode <neroden@gcc.gnu.org>
7966 * Makefile.tpl: Move .NOEXPORT, MAKEOVERRIDES back down.
7967 * Makefile.in: Regenerate.
7969 2003-03-14 Michael Chastain <mec@shout.net>
7971 * Makefile.in: Regenerate with correct Makefile.def.
7973 2003-03-12 Nathanael Nerode <neroden@gcc.gnu.org>
7975 * Makefile.tpl: Move .NOEXPORT, MAKEOVERRIDES up. Delete unused
7977 * Makefile.in: Regenerate.
7978 * configure.in: Clean up gxx_include_dir logic.
7979 * configure: Regenerate.
7981 2003-03-09 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
7983 * configure.in (gxx_include_dir): Fix typo.
7984 * configure: Regenerated.
7986 2003-03-06 Andrew Cagney <cagney@redhat.com>
7988 * texinfo/texinfo.tex: Import version 2003-02-03.16.
7990 2003-03-04 Daniel Jacobowitz <drow@mvista.com>
7992 * configure.in: Include $(build_tooldir)/sys-include in
7994 * configure: Regenerated.
7996 2003-03-04 Nathanael Nerode <neroden@gcc.gnu.org>
7998 * Makefile.tpl: Reindent.
7999 * Makefile.in: Regenerate.
8000 * configure.in: Reindent. Don't set unused variables.
8001 * configure: Regenerate.
8003 * Makefile.tpl: Always pass down RANLIB.
8004 * Makefile.in: Regenerate.
8006 * Makefile.tpl: Don't set unused enable_shared, enable_threads macros.
8007 * Makefile.in: Regenerate.
8008 * configure.in: Remove unused logic relating to --enable-shared
8009 and --enable-threads. Remove bogus comments. Remove redundant
8011 * configure: Regenerate.
8013 * configure.in: Replace ${libstdcxx_version} by its value.
8014 Remove reference to mh-dgux.
8015 * configure: Regenerate.
8017 2003-02-28 Nathanael Nerode <neroden@gcc.gnu.org>
8019 * Makefile.tpl: Rearrange.
8020 * Makefile.in: Regenerate.
8022 2003-02-25 Nick Clifton <nickc@redhat.com>
8024 * configure: Remove site-file supprot - it is obsolete.
8026 2003-02-24 Uwe Stieber <uwe@wwws.de>
8028 * configure.in: Add support for kaOS as cross build target system.
8029 * configure: Regenerated.
8031 2003-02-20 Sean McNeil <sean@blue.mcneil.com>
8033 * Makefile.tpl: Add definition of CPPFLAGS to pass into
8034 configure-target-* as some target builds may require additional
8035 flags for preprocessor tests.
8036 * Makefile.in: Regenerated.
8038 2003-02-19 Alexandre Oliva <aoliva@redhat.com>
8040 * libtool.m4 (LD): Append -melf* option to LD on IRIX with GNU ld.
8041 * ltconfig: Handle it.
8042 * ltcf-cxx.sh: Use with_gnu_ld passed as a shell variable instead of
8045 2003-02-19 Alexandre Oliva <aoliva@redhat.com>
8047 * ltcf-cxx.sh: Replace $linker_flags with $compiler_flags wherever
8048 it is used as argument to $CC.
8049 * ltcf-gcj.sh: Likewise.
8051 2003-02-19 Alexandre Oliva <aoliva@redhat.com>
8053 * configure.in: Introduce --enable-maintainer-mode.
8054 * configure: Rebuilt.
8055 * Makefile.tpl (Makefile.in, configure): Enable dependencies only
8056 for maintainer mode.
8057 * Makefile.in: Rebuilt.
8059 2003-02-19 Andrew Cagney <ac131313@redhat.com>
8061 * configure: Regenerate using autoconf 2.13.
8063 2003-02-19 Alan Modra <amodra@bigpond.net.au>
8065 * config.guess: Import latest version.
8066 * config.sub: Import latest version.
8068 2003-02-18 Jason Merrill <jason@redhat.com>
8070 * Makefile.tpl (check-c++): Allow parallelism.
8072 2003-02-17 Andrew Cagney <ac131313@redhat.com>
8074 * configure: Regenerate using autoconf 000227.
8076 2003-02-15 Geoffrey Keating <geoffk@apple.com>
8078 * configure.in (*-*-darwin*): Rename from powerpc*-*-darwin*,
8079 don't configure target-libobjc.
8080 * configure: Regenerate.
8082 2003-02-14 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
8084 * Makefile.tpl (RANLIB): Define.
8085 * Makefile.in: Regenerate.
8087 2003-02-06 Keith R Seitz <keiths@redhat.com>
8089 * Makefile.def: Remove "snavigator", "grep", and "db" modules.
8090 * Makefile.tpl: Remove "all-snavigator" and "all-grep".
8091 * Makefile.in: Regenerated.
8092 * configure.in: Remove all traces of snavigator, db, and grep.
8093 * configure: Regenerated.
8095 2003-01-31 Frank Ch. Eigler <fche@redhat.com>
8097 * Makefile.tpl (all-sid): Add libiberty/bfd/opcodes dependencies.
8098 * Makefile.in: Regenerated.
8100 2003-01-30 Alexandre Oliva <aoliva@redhat.com>
8102 * config.if: Copy from GCC.
8104 2003-01-27 Phil Edwards <pme@gcc.gnu.org>
8106 * configure.in: Revert 24Jan change.
8107 * configure: Regenerate.
8109 2003-01-23 Nathanael Nerode <neroden@gcc.gnu.org>
8111 * configure.in: Revert previous change.
8112 * configure: Regenerate.
8114 2003-01-23 Nathanael Nerode <neroden@gcc.gnu.org>
8116 * configure.in: Make rda native-only.
8117 * configure: Regenerate.
8119 2003-01-19 Nathanael Nerode <neroden@gcc.gnu.org>
8121 * configure.in: Add missing \.
8122 * configure: Rebuilt.
8124 2003-01-17 Jakub Jelinek <jakub@redhat.com>
8126 * configure.in (baseargs): Avoid using \| in sed regular
8128 * configure: Rebuilt.
8130 2003-01-16 Jakub Jelinek <jakub@redhat.com>
8132 * configure.in (baseargs): Remove all supported forms of
8133 --cache-file, --srcdir, --host, --build and --target options
8134 from argument lists.
8135 * configure: Rebuilt.
8137 2003-01-15 Alexandre Oliva <aoliva@redhat.com>
8139 * configure.in (noconfigdirs): Don't skip gas on IRIX 6.
8140 * configure: Rebuilt.
8142 2003-01-09 Nathanael Nerode <neroden@gcc.gnu.org>
8144 * configure.in: Substitute TOPLEVEL_CONFIGURE_ARGUMENTS.
8145 * Makefile.tpl: Pass TOPLEVEL_CONFIGURE_ARGUMENTS to gcc.
8146 * Makefile.in: Regenerate.
8147 * configure: Regenerate.
8149 2003-01-09 Christian Cornelssen <ccorn@cs.tu-berlin.de>
8151 * Makefile.tpl (BASE_FLAGS_TO_PASS): Also pass DESTDIR.
8152 (install-info, dir.info): Prepend $(DESTDIR) to $(infodir).
8153 * Makefile.in: Regenerate.
8155 2003-01-09 Alexandre Oliva <aoliva@redhat.com>
8157 * configure.in: Remove Makefile in build, host and target modules
8158 unless configure was run with --no-recursion.
8159 * configure: Rebuilt.
8161 2003-01-08 Chris Demetriou <cgd@broadcom.com>
8163 * config.guess: Update to 2003-01-03 version.
8164 * config.sub: Update to 2003-01-03 version.
8166 2003-01-07 Christopher Faylor <cgf@redhat.com>
8168 * configure: Regenerate with proper autoconf 2.13.
8170 2003-01-07 Christopher Faylor <cgf@redhat.com>
8172 * configure.in: Add AC_PREREQ for consistency.
8173 * configure: Regenerate.
8175 2003-01-06 Andrew Cagney <ac131313@redhat.com>
8177 * configure.in (GDB_TK): Add tcl directories conditional on
8178 gdb/gdbtk directory being present.
8179 * configure: Regenerate.
8181 2003-01-04 John David Anglin <dave.anglin@nrc.ca>
8183 * configure.in (LD): Improve test for gcc. Try to set LD to the ld used
8184 by gcc if LD is not defined and we are not doing a Canadian Cross.
8185 * configure: Rebuilt.
8187 2003-01-01 Daniel Jacobowitz <drow@mvista.com>
8189 * src-release (ETC_SUPPORT): Add fdl.texi and texi2pod.pl.
8191 2002-12-31 Tom Tromey <tromey@redhat.com>
8193 * Makefile.in: Rebuilt.
8194 * Makefile.def (target_modules) [libffi]: Allow installation.
8196 2002-12-31 Andreas Schwab <schwab@suse.de>
8198 * configure.in: Fix use of $program_transform_name.
8199 * configure: Regenerated.
8201 2002-12-30 Daniel Jacobowitz <drow@mvista.com>
8203 * configure.in (baseargs): Don't remove first configure argument.
8204 * configure: Regenerated.
8206 2002-12-29 Alexandre Oliva <aoliva@redhat.com>
8208 * Makefile.tpl (local-distclean): Don't remove...
8209 (multilib.ts): ... this. Moved into...
8210 (multilib.out): ... this. Don't use sub-make.
8211 ($(BUILD_SUBDIR)/[+module+]/Makefile, [+module+]/Makefile,
8212 $(TARGET_SUBDIR)/[+module+]/Makefile, gcc/Makefile): Moved into...
8213 (configure-build-[+module+], configure-[+module+],
8214 configure-target-[+module+], configure-gcc): ... these. Test
8215 for Makefile existence. Drop config.status from dependencies.
8216 * Makefile.in: Rebuilt.
8217 * configure.in: Move gcc-version-trigger to the end of
8218 ac_configure_args. Add comments to maybedep.tmp and
8219 serdep.tmp. Introduce --disable-serial-configure. Remove
8220 nonopt from baseargs, matching and removing corresponding
8221 whitespace while at it.
8222 * configure: Rebuilt.
8224 2002-12-28 Alexandre Oliva <aoliva@redhat.com>
8226 * configure.in (host_configargs): Replace reference to
8227 no-longer-defined buildopts with --build=${build_alias}.
8228 * configure: Rebuilt.
8230 2002-12-28 Alexandre Oliva <aoliva@redhat.com>
8232 * Makefile.tpl ($(NOTPARALLEL)): Move to the end. Bring uses of
8233 program_transform_name to standard idiom.
8234 (AUTOGEN, AUTOCONF): Define.
8235 (Makefile.in): Use $(AUTOGEN).
8236 (Makefile): Depend on config.status, and use autoconf-style rule to
8237 build it. Move original commands to...
8238 (config.status): ... this new target.
8239 (configure): Add $(srcdir). Depend on config/acx.m4. Use
8241 * Makefile.in: Rebuilt.
8243 2002-12-28 Nathanael Nerode <neroden@gcc.gnu.org>
8245 * Makefile.tpl: Fix dramatic bustage due to change in
8246 program_transform_name.
8247 * Makefile.in: Regenerate.
8249 * configure.in: Remove unnecessary PATH setting.
8250 * configure: Regnerate.
8252 * configure.in: Don't default to unprefixed tools unless
8253 the native tools will work.
8254 * configure: Regenerate.
8256 * configure.in: Convert to autoconf script. Blow away lots
8257 of now-redundant Makefile fragments.
8258 * configure: Generate using Autoconf.
8259 * Makefile.tpl: Rewrite to reflect autoconfiscation.
8260 * Makefile.in: Regenerate.
8262 2002-12-27 Nathanael Nerode <neroden@gcc.gnu.org>
8264 * configure: Remove unneeded 'export's. Make CC_FOR_TARGET,
8265 CXX_FOR_TARGET, GCJ_FOR_TARGET substituted in configure.in only.
8267 * ChangeLog: Move a couple of entries from here to winsup/cygwin,
8270 2002-12-24 Andreas Schwab <schwab@suse.de>
8272 * Makefile.tpl (multilib.out): Fix missing space.
8273 * Makefile.in: Regenerate.
8275 2002-12-23 Nathanael Nerode <neroden@gcc.gnu.org>
8277 * Makefile.tpl: Use shared multilib.out. Use move-if-change for it.
8278 Convert (cd foo; make) to (cd foo && make). Clean up multilib.out.
8279 * Makefile.in: Regenerate.
8280 * configure.in: Remove unnecessary leftovers.
8282 2002-12-21 Geoffrey Keating <geoffk@apple.com>
8284 * configure.in (extra_ranlibflags_for_target): New variable.
8285 (*-*-darwin): Add -c to ranlib commands.
8286 * configure (tooldir): Handle extra_ranlibflags_for_target.
8288 2002-12-20 Jeff Johnston <jjohnstn@redhat.com>
8290 * COPYING.NEWLIB: Updated.
8291 * COPYING.LIBGLOSS: Ditto.
8293 2002-12-19 Nathanael Nerode <neroden@gcc.gnu.org>
8295 * Makefile.tpl: Revert HJL's change.
8296 * Makefile.in: Regenerated.
8297 * configure.in: Put build_prefix before $(BUILD_SUBDIR) here, and
8300 2002-12-19 Andreas Schwab <schwab@suse.de>
8302 * Makefile.tpl, configure.in: Substitute libstdcxx_incdir.
8303 * Makefile.in: Regenerate.
8305 2002-12-18 H.J. Lu <hjl@gnu.org>
8307 * Makefile.tpl: Add @build_prefix@ before $(BUILD_SUBDIR).
8308 * Makefile.in: Regenerated.
8310 * configure.in (build_prefix): New. Substitute.
8312 2002-12-18 Nathanael Nerode <neroden@gcc.gnu.org>
8314 * Makefile.tpl: Don't let real targets depend on phony targets.
8315 * Makefile.in: Regenerate.
8317 * Makefile.tpl (do-info): Depend on maybe-all-texinfo, not all-texinfo.
8318 * Makefile.in: Regenerate.
8320 2002-12-16 Jason Merrill <jason@redhat.com>
8322 * Makefile.tpl (all-gcc): Use 'make quickstrap' if there was a
8323 previous 'make bootstrap'.
8324 * Makefile.in: Regenerate.
8326 2002-12-17 Hans-Peter Nilsson <hp@bitrange.com>
8328 * configure.in (noconfigdirs) [mmix-*-*]: Disable libgloss and gdb.
8330 2002-12-13 Jason Merrill <jason@redhat.com>
8332 * Makefile.tpl (check-gcc-c++): Renamed from check-c++. Don't run
8334 (check-c++): Just depend on it and check-target-libstdc++-v3.
8335 * Makefile.in: Regenerate.
8337 2002-12-13 Nathanael Nerode <neroden@gcc.gnu.org>
8339 * configure.in, Makefile.tpl, Makefile.def: Remove tclX.
8340 * Makefile.in: Regenerate.
8342 2002-12-12 Jeff Johnston <jjohnstn@redhat.com>
8344 * COPYING.NEWLIB: Update list of alternate Regent of California
8345 licenses and discuss official revoking of advertising clause.
8346 * COPYING.LIBGLOSS: Ditto.
8348 2002-12-12 Alexandre Oliva <aoliva@redhat.com>
8350 * Makefile.tpl (configure-target-rda): Depend on $(ALL_GCC_C).
8351 * Makefile.in: Rebuilt.
8353 2002-12-10 Nathanael Nerode <neroden@gcc.gnu.org>
8355 * configure: Fix bug put in by gremlins.
8357 * Makefile.tpl: Substitute more autoconfily.
8358 * configure: Substitute more autoconfily.
8359 * Makefile.in: Regenerate.
8361 2002-12-08 Andrew Cagney <ac131313@redhat.com>
8363 * Makefile.tpl (all-sim): Depend on maybe-configure-gdb.
8364 * Makefile.in (all-sim): Ditto.
8366 2002-12-06 DJ Delorie <dj@redhat.com>
8368 * Makefile.tpl: Change configure dependencies to not have real
8369 targets depend on phony targets.
8371 2002-12-05 Nathanael Nerode <neroden@gcc.gnu.org>
8373 * configure.in: Revert unintentional change.
8375 * src-release: Configure host subdirs.
8377 * Makefile.tpl: Change dependency for */multilib.out so that
8378 it works when gcc isn't in the tree.
8380 * configure.in: Substitute more.
8381 * configure: Run subconfigures from the Makefile.
8382 * Makefile.tpl: Run subconfigures from the Makefile; add a few
8383 convenience targets. Make sure gcc isn't rebuilt after bootstrap.
8385 2002-12-03 Nathanael Nerode <neroden@gcc.gnu.org>
8387 * Makefile.tpl: Add targets for configuring host subdirs in Makefile,
8388 and corresponding dependencies.
8389 * Makefile.in: Regenerate.
8391 * configure.in (host_tools): Order binutils, gas and ld for
8392 convenience in running the testsuites.
8394 * Makefile.tpl: Introduce rules to serialize subconfigure runs.
8395 * Makefile.in: Regenerate.
8396 * configure.in: Introduce rules to serialize subconfigure runs.
8398 * configure.in: Introduce BASE_CC_FOR_TARGET.
8399 * Makefile.tpl: Reorganize and comment. Introduce HOST_CONFIGARGS.
8400 Realize configure-build-* targets. Realize configure-target-* targets.
8401 * Makefile.in: Regenerate.
8403 2002-12-02 Nathanael Nerode <neroden@gcc.gnu.org>
8405 * configure: Move gcc_version_trigger stuff from here...
8406 * configure.in: ...to here.
8408 * configure.in: Separate subconfigure options added by this file from
8409 options given by the user. Add machinery to put args for host
8410 subconfigures into the Makefile.
8412 * Makefile.tpl: Remove 'vault' targets.
8413 * Makefile.tpl: Reorder and comment dependencies.
8414 * Makefile.in: Regenerate.
8416 2002-11-28 Geoffrey Keating <geoffk@apple.com>
8418 * configure.in: Move host-specific darwin noconfigdirs into
8419 the host-specific section.
8421 2002-12-02 Nathanael Nerode <neroden@gcc.gnu.org>
8423 * Makefile.tpl: Restore bkorb's style patch, accidentally lost
8425 * Makefile.in: Regenerate.
8427 (finishing slow-motion replay)
8428 * configure: Remove skip-this-dir support.
8429 * Makefile.tpl: Remove skip-this-dir support.
8431 * Makefile.tpl: Remove leftover support for non-autoconfiscated
8433 * Makefile.in: Regenerate.
8435 * Makefile.tpl: Strip out useless setting of 'dir'.
8436 * Makefile.in: Regenerate.
8438 2002-12-02 Nathanael Nerode <neroden@gcc.gnu.org>
8440 (finishing slow-motion replay)
8441 * configure.in: Fix deeply stupid bug.
8443 * configure.in: Introduce RAW_CXX_FOR_TARGET and simplify embedded
8444 shell code in CXX_FOR_TARGET
8445 * Makefile.def: Introduce raw_cxx.
8446 * Makefile.tpl: Use raw_cxx to select between CXX_FOR_TARGET and
8448 * Makefile.in: Regenerate.
8450 2002-12-02 Nathanael Nerode <neroden@gcc.gnu.org>
8452 (finishing slow-motion replay)
8453 * Makefile.tpl: Remove unnecessary ifs.
8454 * Makefile.in: Regenerate.
8456 * Makefile.tpl: Implement soft dependency machinery. Maybe-ize
8457 dependencies. Maybe-ize build-libiberty. Create dummy install
8458 targets for 'no_install' modules.
8459 * configure: Move GDB_TK substitution to configure.in. Move
8460 build_modules stuff to configure.in.
8461 * configure.in: Implement soft dependency machinery. Maybe-ize
8462 GDB_TK, rearrange slightly. Move build_modules stuff from configure.
8463 * Makefile.in: Regenerate.
8465 2002-12-01 Nathanael Nerode <neroden@gcc.gnu.org>
8467 (continuing slow-motion replay)
8468 * Makefile.tpl: Make all-target, install-target behave similarly
8469 to all, install (only hitting configured targets). Eliminate
8470 unused macro defintions.
8472 * Makefile.tpl: Add all-gcc: all-build-libiberty dependency when
8475 * Makefile.tpl: Add all-gcc: all-libiberty dependency.
8477 * ltcf-c.sh, ltcf-gcj.sh, Makefile.tpl: Correct BUILD/HOST confusion.
8479 * configure.in: Produce lists of subdir targets we're actually
8480 configuring. Remove references to "dosrel".
8481 * Makefile.tpl: Let configure set which subdir targets are hit.
8482 Remove install-cross; clean up install; remove ALL. Remove
8483 references to "dosrel". Remove "EXTRA_TARGET_HOST" hackery.
8484 Autogenerate host module targets. Remove empty dependency lines
8485 and redundant dependency; rearrange slightly.
8486 * Makefile.def: Add host-side libtermcap, utils.
8488 * Makefile.in: Regenerate.
8490 2002-12-01 Nathanael Nerode <neroden@gcc.gnu.org>
8492 (Continuing slow-motion replay)
8493 * Makefile.def: Add list of recursive targets to autogenerate.
8495 * Makefile.tpl: Autogenerate do-* targets. Autogenerate *-target-*
8496 targets. Autogenerate *-build-* targets.
8497 * Makefile.in: Regenerate.
8499 2002-11-30 Nathanael Nerode <neroden@gcc.gnu.org>
8501 (Continuing slow-motion replay)
8502 * configure: More autoconf-style substitutions.
8503 * Makefile.tpl: More autoconf-style substitutions.
8504 * Makefile.in: Regenerate.
8506 2002-11-30 Nathanael Nerode <neroden@gcc.gnu.org>
8508 (Continuing slow-motion replay)
8509 * configure: Substitute more variables in a more autoconf-friendly
8510 way. Simplify slightly.
8511 * Makefile.tpl: Make more variables substitutable in an
8512 autoconf-friendly way.
8513 * Makefile.in: Regenerate.
8515 2002-11-29 Nathanael Nerode <neroden@gcc.gnu.org>
8517 (Continuing slow-motion replay)
8518 * configure.in (v810*): Remove special setting of tools.
8520 * configure: Add support for extra required flags for ar or nm.
8521 * configure.in (aix4.3+): Use above support for target-specific
8522 issues, rather than using config/mt-aix43.
8524 2002-11-29 Nathanael Nerode <neroden@gcc.gnu.org>
8526 (Starting slow-motion replay merge from gcc 3.4 b-i-b branch)
8527 * configure: Remove 'removing', which doesn't work. Replace $subdir
8528 with . everywhere. Replace $subdirs with ''. Replace $makesrcdir
8529 with $srcdir. Reformat indentation. Substitute some variables
8530 formerly hard-coded in the Makefile for build=host.
8531 * Makefile.tpl: Autogenerate more; make more autoconf-friendly.
8532 * Makefile.def: Autogenerate more.
8533 * Makefile.in: Regenerate.
8535 2002-11-13 Bruce Korb <bkorb@gnu.org>
8537 * Makefile.tpl: syntactic cleanup
8539 2002-11-04 Kevin Buettner <kevinb@redhat.com>
8541 * Makefile.def (host_modules): Add rda.
8542 * Makefile.in: Regenerate.
8543 * configure.in (target_tool): Add target-rda to list.
8545 2002-10-25 Phil Edwards <pme@gcc.gnu.org>
8547 * Makefile.tpl (bootstrap): Add bubblestrap, quickstrap, cleanstrap,
8548 and restrap targets to this rule.
8549 * Makefile.in: Regenerate.
8551 2002-10-24 Hans-Peter Nilsson <hp@bitrange.com>
8553 * configure.in (i[3456]86-*-linux*): Add check to disable
8554 ${libgcj} for glibc1.
8556 2002-10-07 Svein E. Seldal <Svein.Seldal@solidas.com>
8558 * configure.in: Add tic4x target.
8560 2002-10-03 Nathanael Nerode <neroden@gcc.gnu.org>
8562 * Makefile.tpl: Make SET_LIB_PATH substitution more autoconfy.
8563 * Makefile.tpl: Make RPATH_ENVVAR substitution more autoconfy.
8564 * configure.in: Make SET_LIB_PATH substitution more autoconfy.
8565 * configure.in: Make RPATH_ENVVAR substitution more autoconfy.
8566 * Makefile.in: Regenerate.
8568 2002-10-02 Nathanael Nerode <neroden@gcc.gnu.org>
8570 * Makefile.tpl: Eliminate reference to all-gui, all-libproc.
8571 * Makefile.in: Regenerate.
8573 * Makefile.def: Remove order dependency comments.
8574 * Makefile.tpl: Add explicit install-install dependencies.
8575 * Makefile.in: Regenerate.
8577 * Makefile.tpl: Remove material now in src-release. (Finally!)
8578 * Makefile.in: Regenerate.
8580 * configure: Restore my original patch by syncing with gcc version.
8582 * Bring following over from gcc:
8584 2002-09-30 Ulrich Weigand <uweigand@de.ibm.com>
8586 * configure.in (s390*-*-linux*): Enable libgcj.
8588 2002-10-02 Nathanael Nerode <neroden@gcc.gnu.org>
8590 * Makefile.in: Regenerate. This really ought to fix things. :sigh:
8592 2002-10-02 Alan Modra <amodra@bigpond.net.au>
8594 * configure: Move stray lines back to where they belong.
8596 2002-10-01 Nathanael Nerode <neroden@gcc.gnu.org>
8598 * Makefile.tpl: Insert configure-target target, for src-release.
8600 * configure: Finish reverting change which Andrew Cagney started
8601 reverting. Should fix bustage.
8603 * src-release (BINUTILS_SUPPORT_DIRS): Add cpu directory.
8604 * src-release: New file. Contains material for making net
8605 releases for gdb, binutils, et al., formerly in Makefile.in.
8607 2002-09-30 Nick Clifton <nickc@redhat.com>
8609 * cpu: New top level directory. Intended to hold input files for
8610 CGEN which have FSF copyright assignment.
8611 * Makefile.in (BINUTILS_SUPPORT_DIRS): Add cpu directory.
8613 2002-09-29 Andrew Cagney <ac131313@redhat.com>
8615 Revert below (note that src does not contain Makefile.tpl):
8616 * Makefile.tpl: Make subsituted variables more autoconfy.
8617 * Makefile.in: Regenerate.
8619 2002-09-29 Nathanael Nerode <neroden@gcc.gnu.org>
8621 * configure: Revert accidentally applied changes.
8623 * Makefile.tpl: Make more autoconf-friendly.
8624 * Makefile.in: Regenerate.
8625 * configure: Make substitution more autoconf-like.
8627 2002-09-28 Richard Earnshaw <rearnsha@arm.com>
8629 * configure.in (arm-*-coff, strongarm-*-coff, xscale-*-coff): Use a
8630 single entry to handle all these.
8631 (arm-*-elf, strongarm-*-elf, xscale-*-elf): Likewise. Also enable
8632 libjava on arm-*-elf.
8634 2002-09-27 Geoffrey Keating <geoffk@apple.com>
8636 * configure.in (powerpc-*-darwin*): Don't configure BFD, TK, or the
8637 things that depend on them.
8639 2002-09-25 Nathanael Nerode <neroden@gcc.gnu.org>
8641 * Makefile.tpl: Make subsituted variables more autoconfy.
8642 * Makefile.in: Regenerate.
8643 * configure: Make seds more autoconfy.
8645 2002-09-25 Nathanael Nerode <neroden@gcc.gnu.org>
8647 * Makefile.tpl: Rewrite substituted lines to look autoconfy.
8648 * Makefile.in: Regenerate.
8649 * configure.in: Rewrite sed statements to look autoconfy.
8651 * Makefile.tpl: Autogenerate *-target-* lists, dependencies of
8652 all-target-foo on configure-target-foo.
8653 * Makefile.def: Ditto.
8654 * Makefile.in: Rebuild.
8656 2002-09-22 Nathanael Nerode <neroden@gcc.gnu.org>
8658 * Makefile.def: New file.
8659 * Makefile.tpl: New file.
8660 * Makefile.in: Generate from Makefile.tpl with 'autogen Makefile.def'.
8662 * configure.in: Minor rearrangement. Simplify tests.
8664 2002-09-23 Jason Thorpe <thorpej@wasabisystems.com>
8666 * configure.in (with_headers): Skip copy if value is "yes".
8667 (with_libs): Likewise.
8669 2002-09-20 Nathanael Nerode <neroden@gcc.gnu.org>
8671 * configure.in (*-*-netbsd*): Use noconfigdirs, not skipdirs.
8672 * configure.in (sh*-*-pe*): Ditto.
8673 * configure.in (mips*-*-pe*): Ditto.
8674 * configure.in (*arm-wince-pe): Ditto.
8676 * configure.in: Rearrange.
8678 2002-09-12 Nick Clifton <nickc@redhat.com>
8680 * Import these changes from the config master repository:
8682 2002-09-05 Svein E. Seldal <Svein.Seldal@solidas.com>
8684 * config.sub: Add tic4x target.
8686 2002-09-03 Ben Elliston <bje@redhat.com>
8688 * config.guess: Detect NSR-D machines for nsr-tandem-nsk.
8689 Reported by <Duncan_Stodart@insession.com>.
8691 2002-09-10 Jeff Johnston <jjohnstn@redhat.com>
8693 * COPYING.NEWLIB: More updates.
8695 2002-09-09 Jeff Johnston <jjohnstn@redhat.com>
8697 * COPYING.NEWLIB: Update.
8699 2002-08-23 Andrew Cagney <ac131313@redhat.com>
8701 * texinfo/texinfo.tex: Import version 2002-06-04.06.
8703 * config.guess: Import version 2002-08-23.
8704 * config.sub: Import version 2002-08-22.
8706 2002-08-20 Alexandre Oliva <aoliva@redhat.com>
8708 * Makefile.in (GCC_FOR_TARGET): Prepend STAGE_CC_WRAPPER.
8709 * configure.in (CC_FOR_TARGET, GCJ_FOR_TARGET, CXX_FOR_TARGET,
8710 CXX_FOR_TARGET_FOR_RECURSIVE_MAKE): Likewise.
8712 2002-08-06 Federico G. Schwindt <fgsch@olimpo.com.br>
8714 * configure.in (hppa*-*-openbsd*): Treat like hppa*-*-*elf*.
8716 2002-08-04 H.J. Lu (hjl@gnu.org)
8718 * configure.in (mips*-*-linux*): Don't skip target-libffi.
8720 2002-07-31 Alan Modra <amodra@bigpond.net.au>
8722 * configure.in: Move generic linux case to end. Copy generic
8723 linux noconfigdirs to mips*-*-linux* entry and new
8724 powerpc64*-*-linux* entry. Add target-libffi for the latter.
8726 2002-07-19 Chris Demetriou <cgd@broadcom.com>
8728 * MAINTAINERS: Clarify on config.guess and config.sub, and add
8729 one instance of them which was missed to the list to update.
8731 2002-07-16 Chris Demetriou <cgd@broadcom.com>
8733 * config.guess: Update to 2002-07-09 version.
8734 * config.sub: Update to 2002-07-03 version.
8736 2002-07-11 Nathanael Nerode <neroden@gcc.gnu.org>
8738 * configure.in: Remove two redundant tests.
8740 2002-07-11 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
8742 * configure.in (mips*-*-irix6*o32): Enable stabs.
8744 2002-07-08 Nathanael Nerode <neroden@gcc.gnu.org>
8746 * configure.in: Don't build grez.
8747 * Makefile.in: Ditto.
8749 * Makefile.in: Remove references to bsp, cygmon, libstub.
8750 * configure.in: Ditto.
8752 * configure.in: Remove leftover reference to gdbtest.
8754 2002-07-08 Phil Edwards <pme@gcc.gnu.org>
8756 * configure.in (gxx_include_dir): Change to match versioned
8757 C++ headers if --enable-version-specific-runtime-libs is used.
8759 2002-07-04 Steve Ellcey <sje@cup.hp.com>
8761 * ltcf-cxx.sh (hpux*): Modify to support ia64-*-hpux*.
8763 2002-07-03 Nathanael Nerode <neroden@gcc.gnu.org>
8765 * configure.in: Make --without-x work.
8767 2002-07-03 Nick Clifton <nickc@cambridge.redhat.com>
8769 * contrib: New directory. Created to contain a copy of the
8770 texi2pod.pl script so that it is in the same place as the version in
8771 the FSF GCC sources.
8773 2002-07-02 Nathanael Nerode <neroden@gcc.gnu.org>
8775 * configure.in: Rearrange target Makefile fragment collection.
8777 * Makefile.in: Don't try to build gdbtest, tgas, ispell, inet, or
8779 * configure.in: Ditto.
8781 2002-07-01 Nathanael Nerode <neroden@gcc.gnu.org>
8783 * Makefile.in: Eliminate 'apache' targets.
8784 * configure.in: Eliminate 'apache' targets.
8786 * configure.in: Eliminate redundant tests. Reorganize.
8788 * Makefile.in: Eliminate last reference to LIBGCC1_TEST.
8790 * config-ml.in: Eliminate references to Cygnus configure.
8792 * Makefile.in: Eliminate references to building emacs.
8794 2002-07-01 Denis Chertykov <denisc@overta.ru>
8796 * configure.in: Add support for ip2k.
8798 2002-06-24 Ben Elliston <bje@redhat.com>
8800 * configure.in (host_tools): Remove cgen.
8802 * Makefile.in (all-cgen): Remove; runs from its source directory.
8803 (check-cgen, install-cgen, clean-cgen): Likewise.
8804 (all-opcodes): No not depend on all-cgen.
8805 (all-sim): Likewise.
8807 2002-06-22 Nathanael Nerode <neroden@twcny.rr.com>
8809 * configure.in: Fix AIX configury bug.
8811 2002-06-19 Nathanael Nerode <neroden@twcny.rr.com>
8813 * configure.in: Replace ${topsrcdir} with ${srcdir}.
8815 * configure.in: Move definition of libstdcxx_flags right above
8816 usage, rather than way earlier.
8818 * configure.in: Pull definition of is_cross_compiler earlier.
8820 * configure.in: Rearrange a little.
8822 * configure.in: Remove references to librx.
8823 * Makefile.in: Remove references to librx.
8825 2002-06-19 Nathanael Nerode <neroden@twcny.rr.com>
8827 * configure.in: Eliminate ${gasdir} variable.
8829 2002-06-18 Dave Brolley <brolley@redhat.com>
8831 * configure.in: Add support for frv.
8832 * config.sub: Add support for frv.
8834 2002-06-12 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
8836 * Makefile.in (CFLAGS_FOR_TARGET): Add -O2.
8838 2002-06-08 Jason Thorpe <thorpej@wasabisystems.com>
8840 * configure.in (vax-*-netbsd*): Re-enable gas.
8842 2002-05-31 Nathanael Nerode <neroden@twcny.rr.com>
8844 * Makefile.in: Replace HOST_PREFIX, HOST_PREFIX_1 with BUILD_PREFIX,
8845 BUILD_PREFIX_1, to correct nomenclature.
8846 * configure: Likewise.
8848 * Makefile.in: Eliminate version-specific references to tcl8.1, tk8.1.
8849 * configure.in: Eliminate version-specific references to tcl8.1, tk8.1.
8851 2002-05-31 Olaf Hering <olh@suse.de>
8853 * config-ml.in: Propogate DESTDIR also.
8855 2002-05-29 Jason Thorpe <thorpej@wasabisystems.com>
8857 * configure.in (vax-*-netbsd*): Don't build gas for this
8860 2002-05-28 Marek Michalkiewicz <marekm@amelek.gda.pl>
8862 * configure.in (noconfigdirs): Don't compile libiberty, libstdcxx
8865 2002-05-28 Nick Clifton <nickc@cambridge.redhat.com>
8867 * config.sub: Add DLX target.
8869 2002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
8871 * config.guess: Update to 2002-05-22 version.
8872 * config.sub: Likewise.
8874 2002-05-16 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
8876 * Makefile.in: Allow for PWDCMD to override hardcoded pwd.
8877 * config-ml.in: Likewise.
8878 * configure: Likewise.
8879 * configure.in: Likewise.
8881 2002-05-13 Nathanael Nerode <neroden@twcny.rr.com>
8883 * configure.in: Simplify makefile fragment collection.
8885 * configure.in: Remove code to build emacs.
8887 * configure.in : Remove --srcdir argument from targargs and buildargs
8888 (it's always overridden in the Makefile anyway). Rearrange a bit.
8890 * configure: Move some logic to configure.in.
8891 * configure.in: Move some logic from configure.
8893 2002-05-07 Jeff Johnston <jjohnstn@redhat.com>
8895 * COPYING.LIBGLOSS: New file.
8897 2002-05-07 Federico G. Schwindt <fgsch@olimpo.com.br>
8899 * Makefile.in: Honour DESTDIR.
8901 2002-05-05 Alexandre Oliva <aoliva@redhat.com>
8903 * configure.in (noconfigdirs): Don't disable libgcj on
8904 sparc64-*-solaris* and sparcv9-*-solaris*.
8906 2002-05-03 Alexandre Oliva <aoliva@redhat.com>
8908 * configure.in: Revert 2002-04-18's patch; fixed in libjava.
8910 2002-05-03 Thomas Fitzsimmons <fitzsim@redhat.com>
8912 * configure.in (FLAGS_FOR_TARGET): Do not add
8913 -B$$r/$(TARGET_SUBDIR)/newlib/ when compiling newlib natively
8914 on i[3456]86-*-linux*.
8916 2002-05-01 Thomas Fitzsimmons <fitzsim@redhat.com>
8918 * configure.in (noconfigdirs): Replace [ ] with test.
8920 * configure.in (noconfigdirs): Do not add target-newlib if
8921 target == i[3456]86-*-linux*, and host == target.
8923 2002-04-29 Mark Mitchell <mark@codesourcery.com>
8925 * config.guess: Updated to 2002-04-26's version.
8926 * config.sub: Updated to 2002-04-26's version.
8928 2002-04-29 Nathanael Nerode <neroden@doctormoo.dyndns.org>
8930 * configure.in: delete reference to absent file
8932 * configure.in: replace '[' with 'test'
8934 * configure.in: Eliminate references to gash.
8935 * Makefile.in: Eliminate references to gash.
8937 * configure.in: remove useless references to 'pic' makefile fragments.
8939 * configure.in: (*-*-windows*) Finish removing.
8941 * configure.in: Eliminate redundant test for libgui.
8943 2002-04-26 Joel Sherrill <joel@OARcorp.com>
8945 * configure.in (h8300*-*-rtems*): Disable libf2c and libgcj.
8946 (sparc-*-elf*, sparc64-*-elf*): Disable libgcj.
8948 2002-04-19 Nathanael Nerode <neroden@twcny.rr.com>
8950 * configure.in: remove references to dead files
8952 2002-04-18 Tom Tromey <tromey@redhat.com>
8954 * configure.in: Disallow configuring libgcj when it is already
8955 installed and we're using Solaris 2.8 linker. Do enable libgcj on
8956 Solaris 2.8 by default. For PR libgcj/6158.
8958 2002-04-17 Nathanael Nerode <neroden@twcny.rr.com>
8960 * configure.in: Move default CC setting out of config/mh-* fragments
8963 2002-04-17 Nathanael Nerode <neroden@twcny.rr.com>
8965 * configure.in: don't even try to configure or make a subdirectory
8966 if there's no configure script for it.
8968 2002-04-15 Mark Mitchell <mark@codesourcery.com>
8970 * MAINTAINERS: Remove chill maintainers.
8971 * Makefile.in (CHILLFLAGS): Remove.
8972 (CHILL_LIB): Remove.
8973 (TARGET_CONFIGDIRS): Remove libchill.
8974 (CHILL_FOR_TARGET): Remove.
8975 (BASE_FLAGS_TO_PASS): Don't pass CHILLFLAGS, CHILL_FOR_TARGET, or
8977 (CONFIGURE_TARGET_MODULES): Remove configure-target-libchill.
8978 (CHECK_TARGET_MODULES): Likewise.
8979 (INSTALL_TARGET_MODULES): Likewise.
8980 (CLEAN_TARGET_MODULES): Likewise.
8981 (configure-target-libchill): Remove.
8982 (all-target-libchill): Remove.
8983 * configure.in (target_libs): Remove target-libchill.
8984 Do not compute CHILL_FOR_TARGET.
8985 * libchill: Remove directory.
8987 2002-04-15 DJ Delorie <dj@redhat.com>
8989 * Makefile.in, configure.in, configure: Sync with gcc, entries
8992 2002-04-08 Tom Tromey <tromey@redhat.com>
8994 * configure.in: Add FLAGS_FOR_TARGET to GCJ_FOR_TARGET.
8995 Fixes PR libgcj/6068.
8997 2002-03-30 Krister Walfridsson <cato@df.lth.se>
8999 * configure.in (i*86-*-netbsdelf*): Don't disable libgcj.
9001 2002-03-27 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
9003 * configure.in (alpha*-dec-osf*): Enable libgcj.
9005 2002-03-24 Nick Clifton <nickc@cambridge.redhat.com>
9007 Fix for: PR bootstrap/3591, target/5676
9008 * configure.in (mcore-pe): Disable the configuration of
9009 libstdc++-v3 since exceptions are not supported.
9011 2002-03-20 Anthony Green <green@redhat.com>
9013 * configure.in: Enable libgcj for xscale-elf target.
9015 2002-02-28 Alexandre Oliva <aoliva@redhat.com>
9017 * configure.in (libstdcxx_flags): Don't add libstdc++-v3 flags for
9019 (CXX_FOR_TARGET): Explain why -shared-libgcc here.
9021 2002-02-22 Alexandre Oliva <aoliva@redhat.com>
9023 * configure.in (CXX_FOR_TARGET): Add -shared-libgcc for
9024 libstdc++-v3 and libjava.
9026 2002-02-11 Adam Megacz <adam@xwt.org>
9028 * gcc/Makefile.in: Removed libstdc++-v3 dependancy for libjava and
9031 2002-02-09 Alexandre Oliva <aoliva@redhat.com>
9033 * config.guess: Updated to 2002-01-30's version.
9034 * config.sub: Updated to 2002-02-01's version.
9035 Contribute sh64-elf.
9036 2000-12-01 Alexandre Oliva <aoliva@redhat.com>
9037 * configure.in: Added sh64-*-*.
9039 2002-01-17 H.J. Lu <hjl@gnu.org>
9041 * Makefile.in (all-fastjar): Also depend on all-libiberty.
9042 (all-target-fastjar): Also depend on all-target-libiberty.
9044 Wed Dec 5 07:33:45 2001 Douglas B. Rupp <rupp@gnat.com>
9046 * configure, configure.in: Use temp file for long sed commands.
9048 2001-11-14 Hans-Peter Nilsson <hp@bitrange.com>
9050 * configure.in (noconfigdirs) [h8300*-*-*, h8500-*-*]: Disable
9053 2001-11-03 Hans-Peter Nilsson <hp@bitrange.com>
9055 * configure.in (noconfigdirs) [mmix-*-*]: Disable libgcj.
9057 2001-10-11 Hans-Peter Nilsson <hp@axis.com>
9059 * configure.in (noconfigdirs) [cris-*-*]: Disable libgcj.
9061 2001-10-02 Joseph S. Myers <jsm28@cam.ac.uk>
9063 * configure: Handle temporary files securely using mkdir.
9065 2001-09-26 Will Cohen <wcohen@redhat.com>
9067 * configure.in (*-*-linux*): Disable configuration of target-newlib
9068 and target-libgloss.
9070 2001-09-26 Alexandre Oliva <aoliva@redhat.com>
9072 * Makefile.in (EXTRA_TARGET_FLAGS): Pass RANLIB_FOR_TARGET for
9075 2001-08-11 Graham Stott <grahams@redhat.com>
9077 * Makefile.in (check-c++): Add missing semicolon.
9079 2001-07-25 Andrew Haley <aph@cambridge.redhat.com>
9081 * configure.in (sh-*-linux*): New.
9083 2001-07-12 Stephane Carrez <Stephane.Carrez@worldnet.fr>
9085 * configure.in (noconfigdirs): Don't compile libiberty, libstdcxx
9086 and libgcj on m68hc11/m68hc12.
9088 2001-06-27 H.J. Lu (hjl@gnu.org)
9090 * Makefile (CFLAGS_FOR_BUILD): New.
9091 (EXTRA_GCC_FLAGS): Add CFLAGS_FOR_BUILD.
9093 2001-06-01 Hans-Peter Nilsson <hp@axis.com>
9095 * configure.in (libstdcxx_flags): Do not try to execute
9096 libstdc++-v3/testsuite_flags until it exists.
9098 2001-05-18 Benjamin Kosnik <bkoz@redhat.com>
9100 * configure.in (libstdcxx_flags): Remove reference to libstdc++.INC.
9102 2001-05-09 Jeffrey Oldham <oldham@codesourcery.com>
9104 * ltcf-cxx.sh: Add -nostdlib to IRIX 6 archive_cmds.
9106 Mon Apr 23 09:15:03 2001 Anthony Green <green@redhat.com>
9108 * configure.in: Move *-chorusos target case to the proper switch.
9111 2001-04-13 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
9113 * Makefile.in (STAGE1_CFLAGS): Pass down.
9115 2001-04-13 Alan Modra <amodra@one.net.au>
9117 * config.guess: Add hppa64-linux support. Note for next import that
9118 this is already in the master file.
9119 * configure.in: Likewise. Accept `parisc' alias for `hppa'.
9121 2001-03-22 Colin Howell <chowell@redhat.com>
9123 * Makefile.in (DO_X): Do not backslash single-quotes in
9124 backquotes (two places).
9126 2001-03-18 Laurynas Biveinis <lauras@softhome.net>
9128 * Makefile.in (DO_X): Quote nested quotes.
9130 2001-03-15 Laurynas Biveinis <lauras@softhome.net>
9132 * Makefile.in (DO_X): Use double quotes for quoting
9133 "RANLIB=$${RANLIB}".
9135 2001-03-09 Nicola Pero <n.pero@mi.flashnet.it>
9137 * configure.in: Only use `lang_requires' for languages athat are
9140 2001-03-07 Tom Tromey <tromey@redhat.com>
9142 * configure.in: Allow config-lang.in to set `lang_requires' to list
9143 of other required languages.
9145 2001-03-06 Laurynas Biveinis <lauras@softhome.net>
9147 * Makefile.in: Remove RANLIB definition. Use RANLIB
9148 in RANLIB_FOR_TARGET, EXTRA_HOST_FLAGS, EXTRA_TARGET_FLAGS,
9149 EXTRA_GCC_FLAGS, $(DO_X) targets only when the RANLIB is set.
9151 2001-02-28 Benjamin Kosnik <bkoz@redhat.com>
9152 Alexandre Oliva <aoliva@redhat.com>
9154 * Makefile.in (check-c++): Use tabs, not spaces.
9156 2001-02-19 Benjamin Kosnik <bkoz@redhat.com>
9158 * Makefile.in (check-c++): New rule.
9160 * configure.in (target_libs): Remove libg++.
9161 (noconfigdirs): Remove libg++.
9162 (noconfigdirs): Same.
9163 (noconfigdirs): Same.
9164 (noconfigdirs): Same.
9166 * config-ml.in: Remove libg++ references.
9168 * Makefile.in (TARGET_CONFIGDIRS): Remove libio, libstdc++, libg++.
9169 (ALL_TARGET_MODULES): Same.
9170 (configure-target-libg++): Remove.
9171 (all-target-libg++): Remove.
9172 (configure-target-libio): Remove.
9173 (all-target-libio): Remove.
9174 (check-target-libio): Remove.
9176 (libg++.tar.bz2): Remove.
9177 (all-target-cygmon): Remove libio.
9178 (all-target-libstdc++): Remove.
9179 (configure-target-libstdc++): Remove.
9180 (TARGET_LIB_PATH): Remove libstdc++.
9181 (ALL_GCC_CXX): Remove libstdc++.
9182 (all-target-gperf): Correct.
9184 2001-02-15 Anthony Green <green@redhat.com>
9186 * configure: Introduce GCJ_FOR_TARGET.
9187 * configure.in: Ditto.
9188 * Makefile.in: Ditto.
9190 2001-02-08 Chandrakala Chavva <cchavva@redhat.com>
9192 * configure.in: for *-chorusos, don't config target-newlib and
9195 2001-02-04 Mark Mitchell <mark@codesourcery.com>
9197 Remove V2 C++ library.
9198 * configure.in: Remove --enable-libstdcxx_v3 support.
9200 2001-01-27 Richard Henderson <rth@redhat.com>
9202 * configure.in (target_makefile_frag) [alpha*-*]: Use mt-alphaieee.
9204 2001-01-26 Tom Tromey <tromey@redhat.com>
9206 * configure.in: Allow libgcj to be built on Sparc Solaris.
9208 2001-01-23 Bryce McKinlay <bryce@albatross.co.nz>
9210 * configure.in: Enable libgcj on several additional platforms.
9212 2001-01-22 Bryce McKinlay <bryce@albatross.co.nz>
9214 * configure.in: Enable libgcj for linux targets.
9216 2001-01-09 Mike Stump <mrs@wrs.com>
9218 * Makefile.in (CONFIGURE_TARGET_MODULES): Pass back configuration
9219 failures of subdirectories.
9221 2001-01-02 Laurynas Biveinis <lauras@softhome.net>
9223 * configure: handle DOS-style absolute paths.
9225 2001-01-02 Laurynas Biveinis <lauras@softhome.net>
9227 * configure.in: remove supported directories from $noconfigdirs for DJGPP.
9229 2000-12-18 Benjamin Kosnik <bkoz@redhat.com>
9231 * Makefile.in (BASE_FLAGS_TO_PASS): Alphabetize.
9232 (libstdcxx_incdir): Pass down.
9233 * config.if: Remove expired bits for cxx_interface, add stub.
9234 (libstdcxx_incdir): Add variable for g++ include directory.
9235 * configure.in (gxx_include_dir): Use it.
9237 2000-12-15 Andreas Jaeger <aj@suse.de>
9239 * configure.in: Handle lang_dirs.
9241 2000-12-13 Anthony Green <green@redhat.com>
9243 * configure.in: Disable libgcj for any target not specifically
9244 listed. Disable libgcj for x86 and Alpha Linux until compatible
9247 2000-12-13 Mike Stump <mrs@wrs.com>
9249 * Makefile.in (local-distclean): Also remove fastjar.
9251 2000-12-10 Anthony Green <green@redhat.com>
9253 * configure.in: Define libgcj. Disable libgcj target libraries for
9256 2000-12-09 Alexandre Petit-Bianco <apbianco@cygnus.com>
9258 * configure.in (target_libs): Revert 2000-12-08 patch.
9259 (noconfigdirs): Added target-libjava.
9261 2000-12-09 Laurynas Biveinis <lauras@softhome.net>
9263 * Makefile.in: handle DOS-style absolute paths.
9265 2000-12-08 Alexandre Petit-Bianco <apbianco@cygnus.com>
9267 * Makefile.in (TARGET_CONFIGDIRS): Wrong place. Removed note about
9269 * configure.in (target_libs): Removed `target-libjava'.
9271 2000-12-08 Alexandre Petit-Bianco <apbianco@cygnus.com>
9273 * Makefile.in (TARGET_CONFIGDIRS): Added note about libjava.
9274 (ALL_MODULES): Added fastjar.
9275 (NATIVE_CHECK_MODULES, INSTALL_MODULES, CLEAN_MODULES): Likewise.
9276 (all-target-libjava): all-fastjar replaces all-zip.
9277 (all-fastjar): Added.
9278 (configure-target-fastjar, all-target-fastjar): Likewise.
9279 * configure.in (host_tools): Added fastjar.
9281 2000-12-07 Mike Stump <mrs@wrs.com>
9283 * Makefile.in (local-distclean): Remove leftover built files.
9285 2000-11-16 Fred Fish <fnf@be.com>
9287 * configure.in (enable_libstdcxx_v3): Fix typo,
9288 libstd++ -> libstdc++.
9290 2000-11-13 Joseph S. Myers <jsm28@cam.ac.uk>
9292 * configure: Provide the original toplevel configure arguments
9293 (including $0) to subprocesses in the environment rather than
9294 through gcc/configargs.h.
9296 2000-11-12 Mark Mitchell <mark@codesourcery.com>
9298 * configure: Turn on libstdc++ V3 by default.
9300 2000-10-16 Michael Meissner <meissner@redhat.com>
9302 * configure (gcc/configargs.h): Only create if there is a build GCC
9305 2000-10-05 Phil Edwards <pme@gcc.gnu.org>
9307 * configure: Save configure arguments to gcc/configargs.h.
9309 2000-10-04 Andris Pavenis <pavenis@latnet.lv>
9311 * Makefile.in (bootstrap): avoid recursion if subdir missing
9313 (do-proto-toplev): ditto
9315 Wed Sep 13 11:11:29 2000 Jeffrey A Law (law@cygnus.com)
9317 * configure.in: Do not build byacc for hppa64. Provide paths to the
9318 X11 libraries for hppa64.
9320 2000-09-02 Anthony Green <green@cygnus.com>
9322 * Makefile.in (all-gcc): Depend on all-zlib.
9323 (CLEAN_MODULES): Add clean-zlib.
9324 (ALL_MODULES): Add all-zlib.
9325 * configure.in (host_libs): Add zlib.
9327 2000-08-25 Alexandre Oliva <aoliva@redhat.com>
9329 * configure.in (FLAGS_FOR_TARGET): Use $target_configdirs and
9330 $targargs to tell whether newlib is going to be built.
9332 * configure.in [disable-libstdcxx-v3] (libstdcxx_flags): Search
9333 $$r/TARGET_SUBDIR/libio for _G_config.h.
9335 2000-08-14 Zack Weinberg <zack@wolery.cumb.org>
9337 * configure.in (libstdcxx_flags): Remove -isystem $$s/libio/stdio.
9339 * configure: Make enable_threads and enable_shared defaults
9340 explicit. Substitute enable_threads into generated Makefiles.
9341 * configure.in: Accept *-*-linux* not just *-*-linux-gnu*.
9342 * libtool.m4: Accept *-*-linux* not just *-*-linux-gnu*.
9344 2000-08-02 Manfred Hollstein <manfredh@redhat.com>
9346 * configure.in: Re-enable all references to libg++ and librx.
9348 2002-04-09 Loren James Rittle <rittle@labs.mot.com>
9350 * configure.in: Add *-*-freebsd* configurations.
9352 2002-04-07 Andrew Cagney <ac131313@redhat.com>
9354 * Makefile.in (do-tar-bz2): Delete rule. Replace with ...
9355 (do-tar, do-bz2): New rules.
9356 (taz): Update. Replace do-tar-bz2 with do-tar and do-bz2.
9357 (gdb-tar): New rule.
9358 (gdb-taz): Rewrite. Use gdb-tar and do-bz2.
9359 (insight_dejagnu.tar): New rule.
9360 (insight.tar): New rule.
9361 (gdb+dejagnu.tar): New rule.
9362 (gdb.tar): New rule.
9364 2002-04-07 Andrew Cagney <ac131313@redhat.com>
9366 * MAINTAINERS: Update dejagnu/
9368 2002-03-16 Alexandre Oliva <aoliva@redhat.com>
9370 * ltmain.sh (relink_command): Fix typo in previous change.
9372 2002-03-15 Alexandre Oliva <aoliva@redhat.com>
9374 * ltmain.sh (taglist): Initialized. Don't let `CC' tag out of it.
9375 (relink_command): Added --tag flags.
9376 (mode=install): If relinking fails; error out.
9378 2002-03-12 Richard Henderson <rth@redhat.com>
9380 * Makefile.in (NOTPARALLEL): New. Use it instead of explicit
9382 (do-check): Rename from check.
9383 (check): Allow parallel check.
9385 2002-03-11 Richard Henderson <rth@redhat.com>
9387 * Makefile.in (.NOTPARALLEL): Add fake tag.
9389 2002-03-07 H.J. Lu (hjl@gnu.org)
9391 * configure.in: Enable gprof for mips*-*-linux*.
9393 2002-02-28 Alexandre Oliva <aoliva@redhat.com>
9395 * configure.in (libstdcxx_flags): Don't add libstdc++-v3 flags for
9397 (CXX_FOR_TARGET): Add -shared-libgcc for libstdc++-v3 and libjava.
9399 2002-02-24 Andrew Cagney <ac131313@redhat.com>
9401 * texinfo/texinfo.tex: Update to version 2002-02-14.08.
9403 2002-02-23 Daniel Jacobowitz <drow@mvista.com>
9405 * config.guess: Import from master sources, rev 1.232.
9406 * config.sub: Import from master sources, rev 1.246.
9408 2002-02-23 Alexandre Oliva <aoliva@redhat.com>
9410 * Makefile.in (MAKEINFO): Don't assume makeinfo will be built just
9411 because its Makefile is there; test for the executable instead.
9413 2002-02-09 Alexandre Oliva <aoliva@redhat.com>
9415 Contribute sh64-elf.
9416 2000-12-01 Alexandre Oliva <aoliva@redhat.com>
9417 * configure.in: Added sh64-*-*.
9419 2002-02-04 Jeff Johnston <jjohnstn@redhat.com>
9421 * COPYING.NEWLIB: Remove advertising clause from
9422 Berkeley and Red Hat licenses.
9424 2002-02-01 Mo DeJong <supermo@bayarea.net>
9426 * Makefile.in: Add all-tix to deps for all-snavigator
9427 so that tix is built when building snavigator.
9429 2002-02-01 Ben Elliston <bje@redhat.com>
9431 * config.guess: Import from master sources, rev 1.229.
9432 * config.sub: Import from master sources, rev 1.240.
9434 2002-01-27 Daniel Jacobowitz <drow@mvista.com>
9436 From Steve Ellcey <sje@cup.hp.com>:
9437 * libtool.m4 (HPUX_IA64_MODE): Set to 32 or 64 based on ABI.
9438 (lt_cv_deplibs_check_method, lt_cv_file_magic_cmd,
9439 lt_cv_file_magic_test_file): Set to appropriate values for HP-UX
9441 * ltcf-c.sh (archive_cmds, hardcode_*): Ditto.
9442 * ltconfig (shlibpath_*, dynamic_linker, library_names_spec,
9443 soname_spec, sys_lib_search_path_spec): Ditto.
9445 2002-01-26 Jason Thorpe <thorpej@wasabisystems.com>
9447 * configure.in (*-*-netbsd*): New. Skip target-newlib,
9448 target-libiberty, and target-libgloss. Skip Java-related
9449 libraries if not supported for NetBSD on target CPU.
9451 2002-01-23 Nick Clifton <nickc@cambridge.redhat.com>
9453 * configure.in: Import StrongARM and XScale target_configdirs from
9456 2002-01-16 H.J. Lu (hjl@gnu.org)
9458 * config.guess: Import from master sources, rev 1.225.
9459 * config.sub: Import from master sources, rev 1.238.
9461 * MAINTAINERS: Updated notes on config.guess and config.sub.
9463 2002-01-11 Steve Ellcey <sje@cup.hp.com>
9465 * configure.in (ia64*-*-hpux*): New target for IA64 HP-UX,
9466 ld and gdb are not supported.
9468 2002-01-07 Jeff Johnston <jjohnstn@redhat.com>
9470 * Change reference to Cygnus Solutions to be Red Hat.
9472 2002-01-07 Jeff Johnston <jjohnstn@redhat.com>
9474 * COPYING.NEWLIB: Update generic copyright date.
9476 2002-01-07 Mark Salter <msalter@redhat.com>
9478 * configure.in: Remove target-bsp and target-cygmon from arm builds.
9479 Allow target-libgloss to be built for arm, strongarm, and xscale.
9481 2002-01-03 Ben Elliston <bje@redhat.com>
9483 * MAINTAINERS: Update URL for config.* scripts.
9485 2001-12-18 Alan Modra <amodra@bigpond.net.au>
9487 * config.sub: Import latest version.
9488 * config.guess: Likewise.
9490 2001-12-13 Thomas Fitzsimmons <fitzsim@redhat.com>
9492 * configure.in (FLAGS_FOR_TARGET): Remove -nostdinc and -isystem
9493 options for i[3456]86-pc-linux* native builds.
9495 2001-12-05 Laurent Guerby <guerby@acm.org>
9497 * MAINTAINERS: gcc adopts symlink-tree, refer more to
9500 Import this patch from gcc:
9502 2000-12-09 Laurynas Biveinis <lauras@softhome.net>
9504 * symlink-tree: handle DOS-style absolute paths.
9506 2001-11-28 DJ Delorie <dj@redhat.com>
9507 Zack Weinberg <zack@codesourcery.com>
9509 When build != host, create libiberty for the build machine.
9511 * Makefile.in (TARGET_CONFIGARGS, BUILD_CONFIGARGS): Replace
9513 (ALL_BUILD_MODULES_LIST, BUILD_CONFIGDIRS, BUILD_SUBDIR):
9515 (ALL_BUILD_MODULES, CONFIGURE_BUILD_MODULES): New variables
9517 (all.normal): Depend on ALL_BUILD_MODULES.
9518 (CONFIGURE_TARGET_MODULES rule): Use TARGET_CONFIGARGS.
9519 (all-build-libiberty): Depend on configure-build-libiberty.
9521 * configure: Calculate and substitute proper value for
9523 * configure.in: Create the build subdirectory.
9524 Calculate and substitute TARGET_CONFIGARGS (formerly
9525 CONFIG_ARGUMENTS); also BUILD_SUBDIR and BUILD_CONFIGARGS (new).
9527 2001-11-26 Geoffrey Keating <geoffk@redhat.com>
9529 * config.sub: Update to version 1.232 on subversion.
9531 2001-11-20 Nick Clifton <nickc@cambridge.redhat.com>
9533 * Makefile.in (do-proto-toplev): Use msgfmt to generate .gmo
9534 files from .po files for a distribution.
9536 2001-11-19 Hans-Peter Nilsson <hp@bitrange.com>
9538 * COPYING.NEWLIB: Mention preserved notice in specific parts.
9540 2001-11-13 Jeff Holcomb <jeffh@redhat.com>
9542 Merged from net gcc:
9543 2001-07-30 Jeff Sturm <jsturm@one-pont.com>
9544 * ltcf-c.sh: Use $objext, not $ac_objext.
9545 2001-07-27 Mark Kettenis <kettenis@gnu.org>
9546 * ltcf-cxx.sh: Add support for GNU.
9547 2001-07-22 Timothy Wall <twall@redhat.com>
9548 * ltcf-c.sh: Don't disable shared libraries for AIX5/IA64. Preserve
9549 default settings if using GNU tools with that configuration.
9550 * ltcf-cxx.sh: Ditto.
9551 * ltcf-gcj.sh: Ditto.
9552 2001-07-21 Michael Chastain <chastain@redhat.com>
9553 * ltconfig: Set max_cmd_len to a maximum of 512Kb, as it seems some
9554 HPUX 11.0 systems have trouble with 1MB. Mark as gcc-local.
9555 * ltmain.sh: Mark as gcc-local.
9557 2001-11-13 Jeff Holcomb <jeffh@redhat.com>
9559 * Makefile.in (all-bison): Revert 2001-10-24.
9560 Don't depend on texinfo.
9562 2001-11-12 Hans-Peter Nilsson <hp@bitrange.com>
9564 * COPYING.NEWLIB: Add BSD-style license/copyright blurb for my work.
9566 2001-11-08 Phil Edwards <pedwards@disaster.jaj.com>
9568 * configure.in (--enable-languages): Be more permissive about
9569 syntax. Check for empty lists better. Warn about $LANGUAGES.
9571 2001-11-06 Hans-Peter Nilsson <hp@bitrange.com>
9573 * Makefile.in (MAKEINFO): Use "missing" for makeinfo older than 4.0.
9575 2001-10-24 Jeff Holcomb <jeffh@redhat.com>
9577 Makefile.in (all-bison): Don't depend on texinfo.
9579 2001-10-03 Alan Modra <amodra@bigpond.net.au>
9581 * gettext.m4: Test po/POTFILES.in exists before trying to read.
9583 2001-09-29 Alexandre Oliva <aoliva@redhat.com>
9585 * Makefile.in (configure-target-gperf): Depend on $(ALL_GCC_CXX).
9587 2001-09-28 Hans-Peter Nilsson <hp@axis.com>
9589 * config.sub, config.guess: Import latest from subversions.
9591 2001-09-21 Alexandre Oliva <aoliva@redhat.com>
9593 * Makefile.in (AS_FOR_TARGET, LD_FOR_TARGET,
9594 DLLTOOL_FOR_TARGET, WINDRES_FOR_TARGET, AR_FOR_TARGET,
9595 RANLIB_FOR_TARGET, NM_FOR_TARGET): Don't use double quotes to
9596 avoid quotes nesting problems.
9597 (NATIVE_CHECK_MODULES): Ditto, just for consistency.
9598 (DO_X): Export only variables that are set.
9600 2001-09-19 Ben Elliston <bje@redhat.com>
9602 * configure.in (sparc-sun-solaris2*): Don't use /usr/bin/which on
9603 Solaris when testing for the /usr/ucb/cc compiler; it has incorrect
9604 semantics. Use the shell built-in "type" command instead.
9606 2001-09-15 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
9608 * config.sub: Reverted the earlier change, this version is not the
9611 2001-09-14 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
9613 * config.sub: Change machine triplets from mipsel*-* to mips*el-*.
9614 Add support for mips64.
9616 2001-09-03 Jeff Holcomb <jeffh@redhat.com>
9618 * configure.in: Enable libstdc++-v3 for h8300 targets.
9620 2001-08-30 Eric Christopher <echristo@redhat.com>
9621 Jason Eckhardt <jle@redhat.com>
9623 * config.sub: Add support for mipsisa32.
9625 2001-08-30 Eric Christopher <echristo@redhat.com>
9627 * config.sub, config.guess: Import latest from subversions.
9629 2001-08-20 Alan Modra <amodra@bigpond.net.au>
9631 * config.sub, config.guess: Import latest from subversions.
9633 2001-07-26 DJ Delorie <dj@redhat.com>
9635 * MAINTAINERS: Clarify libiberty merge rules and procedures.
9637 2001-06-19 Alan Modra <amodra@bigpond.net.au>
9639 * Makefile.in: Revert 2001-06-17.
9640 (VER): If AM_INIT_AUTOMAKE uses BFD_VERSION, get version from bfd/.
9642 2001-06-17 H.J. Lu <hjl@gnu.org>
9644 * Makefile.in (gas.tar.bz2): Pass TOOL=bfd PACKAGE=gas to make.
9645 (gas+binutils.tar.bz2): Likewise.
9646 (binutils.tar.bz2): Pass TOOL=bfd PACKAGE=binutils to make.
9648 Fri Jun 8 11:14:02 2001 Andrew Cagney <cagney@b1.cygnus.com>
9650 * Makefile.in (VER): When present, extract the version number from
9651 the file version.in.
9653 2001-06-08 Alexandre Oliva <aoliva@redhat.com>, Jeff Sturm <jsturm@one-point.com>
9655 * Makefile.in (AS_FOR_TARGET, LD_FOR_TARGET, NM_FOR_TARGET): If
9656 gcc/xgcc is built, use -print-prog-name to find out the program
9659 2001-06-04 Mark Mitchell <mark@codesourcery.com>
9661 * ltcf-c.sh (archive_cmds, archive_expsym_cmds) [solaris,
9662 with_gcc]: Use `gcc -shared' to build a shared library.
9664 2001-06-04 John David Anglin <dave@hiauly1.hia.nrc.ca>
9666 * ltcf-c.sh (archive_cmd) [hpux, with_gcc]: Use gcc to link shared
9669 2001-05-28 Simon Patarin <simon.patarin@inria.fr>
9671 * ltcf-cxx.sh (osf3/osf4/osf5): Support creation of C++ shared
9672 libraries when using g++ with native linker.
9674 2001-05-28 Alexandre Oliva <aoliva@redhat.com>
9676 * ltconfig, ltmain.sh: Upgrade to libtool 1.4a 1.641.2.256.
9678 2001-05-24 Tom Rix <trix@redhat.com>
9680 * configure.in : enable ld for aix
9682 2001-05-22 Alexandre Oliva <aoliva@redhat.com>
9684 * ltcf-cxx.sh (allow_undefined_flag, no_undefined_flag)
9685 [aix4*|aix5*]: Prepend blank.
9687 2001-05-20 Alexandre Oliva <aoliva@redhat.com>
9689 * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh, ltcf-cxx.sh,
9690 ltcf-gcj.sh: Upgraded to libtool 1.4a 1.641.2.254. Rebuilt a number
9691 of subdir/configure scripts to use the new libtool.m4.
9693 2001-05-14 H.J. Lu <hjl@gnu.org>
9695 * config.if (libc_interface): Set to -libc6.2- for cross
9696 compiling to Linux/glibc 2.2.
9698 2001-05-03 Alexandre Oliva <aoliva@redhat.com>
9700 * configure.in (noconfigdirs) [*-cygwin*, *-mingw*, *-beos]: Disable
9703 2001-04-26 Alexandre Oliva <aoliva@redhat.com>
9705 * configure.in (noconfigdirs): Don't reset it from scratch in the
9706 target case; only append to it.
9708 2001-04-26 Alexandre Oliva <aoliva@redhat.com>
9710 * configure.in (noconfigdirs) [hppa*-*-*, mips*-*-irix6*,
9711 sparc-*-solaris2.8]: Disable ${libgcj}.
9713 2001-04-25 Alexandre Oliva <aoliva@redhat.com>
9715 * configure.in (libgcj_saved): Copy from $libgcj.
9716 (libgcj): Zero out if --enable-libgcj; add to noconfigdirs is
9719 2001-04-20 Alexandre Oliva <aoliva@redhat.com>
9721 * ltconfig, ltmain.sh, ltcf-cxx.sh: Upgraded to libtool 1.4a
9724 2001-04-12 Alexandre Oliva <aoliva@redhat.com>
9726 * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh, ltcf-cxx.sh,
9727 ltcf-gcj.sh: Upgraded to libtool 1.4a 1.641.2.226.
9729 2001-04-01 Alexandre Oliva <aoliva@redhat.com>
9731 * Makefile.in (CXX_FOR_TARGET_FOR_RECURSIVE_MAKE, RECURSE_FLAGS):
9733 (bootstrap, cross): Use RECURSE_FLAGS.
9734 * configure.in: Subst CXX_FOR_TARGET_FOR_RECURSIVE_MAKE.
9736 2001-03-27 Alexandre Oliva <aoliva@redhat.com>
9738 * configure.in (CXX_FOR_TARGET): Use xgcc for libstdc++-v3.
9740 2001-03-23 Nick Clifton <nickc@redhat.com>
9742 * README-maintainer-mode: Add note about inability to use "make
9743 distclean" in maintainer mode.
9745 2001-03-22 Alexandre Oliva <aoliva@redhat.com>
9748 2001-01-02 Laurynas Biveinis <lauras@softhome.net>
9749 * ltcf-c.sh: Clear ac_cv_prog_cc_pic for DJGPP. Do not add
9750 '-DPIC' to ac_cv_prog_cc_pic for DJGPP.
9751 * ltcf-cxx.sh: Likewise.
9752 * ltcf-gcj.sh: Likewise.
9754 2001-03-22 Philip Blundell <philb@gnu.org>
9756 * config.sub, config.guess: Import latest from subversions.
9758 2001-03-22 Alexandre Oliva <aoliva@redhat.com>
9760 * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh, ltcf-cxx.sh,
9761 ltcf-gcj.sh: Upgraded to libtool 1.4a 1.641.2.198.
9763 2001-03-20 Michael Chastain <chastain@redhat.com>
9765 * Makefile.in: all-m4 depends on all-texinfo.
9767 2001-03-08 Alexandre Oliva <aoliva@redhat.com>
9769 * Makefile.in (ALL_GCC, ALL_GCC_C, ALL_GCC_CXX): Set before use.
9771 2001-02-22 Jeff Johnston <jjohnstn@redhat.com>
9773 * COPYING.NEWLIB: Remove DJ Delorie's address because it is no
9776 2001-02-16 Nick Clifton <nickc@redhat.com>
9778 * configure.in (noconfigdirs): Allow configuration of texinfo
9781 2001-02-09 Martin Schwidefsky <schwidefsky@de.ibm.com>
9783 * config.guess: Add linux target for S/390.
9784 * config.sub: Likewise.
9785 * configure.in: Likewise.
9787 2001-02-06 Ben Elliston <bje@redhat.com>
9789 * configure: Output host type to stdout, not stderr.
9791 2001-02-04 Michael Sokolov <msokolov@ivan.Harhan.ORG>
9793 * config.guess: Import from subversions.gnu.org (revision 1.181).
9794 * config.sub: Import from subversions.gnu.org (revision 1.199).
9796 2001-01-30 Alan Modra <alan@linuxcare.com.au>
9798 * config.guess: Handle hppa64-linux systems.
9800 2001-01-27 Michael Sokolov <msokolov@ivan.Harhan.ORG>
9802 * ltcf-cxx.sh (ac_cv_prog_cc_pic_works, ac_cv_prog_cc_static_works):
9803 Don't unset, it's non-portable and no longer necessary, set to empty
9806 2001-01-27 Michael Sokolov <msokolov@ivan.Harhan.ORG>, Alexandre Oliva <oliva@lsd.ic.unicamp.br>
9808 * ltconfig: Shell portability fix for the tagname validity check.
9810 2001-01-27 Michael Sokolov <msokolov@ivan.Harhan.ORG>
9812 * ltcf-cxx.sh: Use parentheses around eval $ac_compile.
9814 2001-01-27 Alexandre Oliva <aoliva@redhat.com>
9816 * ltcf-c.sh (ld_shlibs) [aix5*]: Disable on unknown CPU types.
9817 * ltcf-cxx.sh, ltcf-gcj.sh: Likewise.
9819 2001-01-24 Alexandre Oliva <aoliva@redhat.com>
9821 * ltmain.sh (TAG disable-shared, TAG disable-static): Make sure we
9822 keep at least one of build_libtool_libs or build_old_libs set to
9825 2001-01-24 Alexandre Oliva <aoliva@redhat.com>
9827 * ltcf-gcj.sh (lt_simple_link_test_code): Remove stray `(0)'.
9828 * libtool.m4 (_AC_LIBTOOL_GCJ): Pass $CPPFLAGS on.
9830 2000-11-07 Philip Blundell <pb@futuretv.com>
9832 * Makefile.in (ETC_SUPPORT): Also add configbuild.* and configdev.*.
9834 2000-11-03 Philip Blundell <pb@futuretv.com>
9836 * Makefile.in (ETC_SUPPORT): Add configure.texi and associated info
9839 2001-01-15 Jeff Johnston <jjohnstn@redhat.com>
9841 * COPYING.NEWLIB: Put into source repository.
9843 2001-01-15 Ben Elliston <bje@redhat.com>
9845 * configure.in (host_tools): Add sid.
9846 Always configure cgen.
9847 * Makefile.in (all-sid): New target.
9848 (check-sid, clean-sid, install-sid): Likewise.
9850 2001-01-07 Andreas Jaeger <aj@suse.de>
9852 * config.sub, config.guess: Update from subversions.
9854 2000-12-12 Alexandre Oliva <aoliva@redhat.com>
9856 * configure.in: Disable language-specific target libraries for
9857 languages that aren't enabled.
9859 2000-11-24 Nick Clifton <nickc@redhat.com>
9861 * configure.in (xscale-elf): Add target.
9862 (xscale-coff): Add target.
9863 (c4x, c5x, tic54x): Move after ARM targets.
9865 2000-11-23 Alexandre Oliva <aoliva@redhat.com>
9867 * ltcf-gcj.sh: Added file, required by 2000-11-18 merge.
9869 2000-11-20 Ian Lance Taylor <ian@zembu.com>
9871 * ltcf-cxx.sh: Added file, required by 2000-11-18 merge.
9873 2000-11-18 Alexandre Oliva <aoliva@redhat.com>
9875 * Makefile.in: Merge with GCC and libgcj.
9876 (ALL_GCC_C, ALL_GCC_CXX): New macros. Use them as dependencies of
9877 configure-target-<library> when their configure scripts need the C
9878 or C++ library to have already been built to work properly.
9879 (do_proto_toplev): Set them to an empty string.
9881 2000-11-18 Alexandre Oliva <aoliva@redhat.com>
9883 * Makefile.in (HOST_LIB_PATH, TARGET_LIB_PATH): New macros.
9884 (REALLY_SET_LIB_PATH): Use them.
9886 2000-11-06 Christopher Faylor <cgf@cygnus.com>
9888 * config.sub: Add support for Sun Chorus
9890 2000-11-02 Per Lundberg <plundis@chaosdev.org>
9892 * config.sub: Add support for the *-storm-chaos OS.
9894 2000-10-30 Stephane Carrez <stcarrez@worldnet.fr>
9896 * configure.in (noconfigdirs): Don't compile some
9897 of the libraries for 68HC11 & 68hc12 targets.
9899 2000-09-30 Alexandre Oliva <aoliva@redhat.com>
9901 * ltconfig, ltmain.sh, libtool.m4: Updated from libtool
9902 multi-language branch, to work around Solaris' /bin/sh bug. Rebuilt
9903 all affected `configure' scripts.
9905 2000-09-25 Alexandre Oliva <aoliva@redhat.com>
9907 * Makefile.in (DEVO_SUPPORT): Added gettext.m4, libtool.m4 and
9910 2000-09-12 Philip Blundell <philb@gnu.org>
9912 * config.sub, config.guess: Update from subversions.
9914 2000-09-06 Alexandre Oliva <aoliva@redhat.com>
9916 * Makefile.in (all-zlib): Added dummy target.
9918 * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh: Updated from libtool
9919 multi-language branch.
9921 2000-09-05 Alexandre Oliva <aoliva@redhat.com>
9923 * Makefile.in (all-bootstrap): Added all-texinfo and all-zlib.
9924 (bootstrap*): Depend on all-bootstrap.
9926 2000-09-02 Alexandre Oliva <aoliva@redhat.com>, DJ Delorie <dj@redhat.com>
9928 * configure.in (FLAGS_FOR_TARGET): Use -nostdinc even for Canadian
9929 crosses, but add gcc/include to the header search path for them.
9931 2000-08-31 Alexandre Oliva <aoliva@redhat.com>
9933 * ltconfig, ltmain.sh: Updated from libtool multi-language branch.
9934 * libtool.m4, ltcf-c.sh: Copied from libtool multi-language branch.
9935 * gettext.m4: New file, extracted from aclocal.m4.
9937 2000-08-22 Alexandre Oliva <aoliva@redhat.com>
9939 * config-ml.in (CC, CXX): Avoid trailing whitespace.
9940 (LD_LIBRARY_PATH, SHLIB_PATH): Adjust for multilibs and export to
9943 2000-08-20 Doug Evans <dje@casey.transmeta.com>
9945 * Makefile.in (ALL_MODULES): Add all-cgen.
9946 (CROSS_CHECK_MODULES,INSTALL_MODULES,CLEAN_MODULES): Similarily.
9947 (all-cgen): New target.
9948 (all-opcodes,all-sim): Depend on all-cgen.
9949 * configure.in (host_tools): Add cgen.
9950 Only configure cgen if --enable-cgen-maint.
9952 2000-08-17 Alexandre Oliva <aoliva@redhat.com>
9954 * config-ml.in (CC, CXX): Don't introduce a leading space.
9956 2000-08-16 Alexandre Oliva <aoliva@redhat.com>
9958 * configure.in (libstdcxx_flags): Use
9959 libstdc++-v3/src/libstdc++.INC.
9961 2000-08-15 Alexandre Oliva <aoliva@redhat.com>
9963 * configure.in (libstdcxx_flags): Use libstdc++-v3/src/INCLUDES.
9965 2000-08-11 Jason Merrill <jason@redhat.com>
9967 * configure.in (CC_FOR_TARGET, CHILL_FOR_TARGET,
9968 CXX_FOR_TARGET): Add -B$$r/gcc/ here.
9969 (FLAGS_FOR_TARGET): Not here.
9970 (CHILL_FOR_TARGET, CXX_FOR_TARGET): Don't check the list of languages.
9972 2000-08-07 DJ Delorie <dj@redhat.com>
9974 * configure.in (FLAGS_FOR_TARGET): invert test for xgcc, should mean
9975 "if we're also building gcc, and it's a gcc that will run on the
9976 build machine, we want to use its includes instead of the system's
9979 2000-08-03 Alexandre Oliva <aoliva@redhat.com>
9981 * configure.in (libstdcxx_flags): Don't use `"'.
9983 * config-ml.in: Adjust multilib search paths to the
9984 appropriate multilib tree.
9986 2000-08-02 Alexandre Oliva <aoliva@redhat.com>
9988 * configure.in (CHILL_FOR_TARGET, CXX_FOR_TARGET): Convert blanks to
9989 commas in $LANGUAGES.
9991 2000-08-01 Alexandre Oliva <aoliva@redhat.com>
9993 * configure.in (qCXX_FOR_TARGET): Use echo instead of expr.
9995 2000-07-31 Alexandre Oliva <aoliva@redhat.com>
9997 * configure.in (qCXX_FOR_TARGET): Quote `&' characters in
9998 CXX_FOR_TARGET for sed.
10000 2000-07-30 Alexandre Oliva <aoliva@redhat.com>
10002 * configure.in (CC_FOR_TARGET, CHILL_FOR_TARGET, CXX_FOR_TARGET):
10003 Do not override if already set in the environment or in configure.
10004 Don't duplicate $(FLAGS_FOR_TARGET) if it already appears in them.
10005 (FLAGS_FOR_TARGET): Don't use host directories on Canadian crosses.
10007 2000-07-27 Alexandre Oliva <aoliva@redhat.com>
10009 * Makefile.in (FLAGS_FOR_TARGET): New macro.
10010 (GCC_FOR_TARGET): Use it.
10011 (CC_FOR_TARGET, CXX_FOR_TARGET, CHILL_FOR_TARGET): Now defined...
10012 * configure.in: ... here.
10013 (FLAGS_FOR_TARGET): Define. Add ld build dir to -L path.
10014 (libstdcxx_flags): Define and append to CXX_FOR_TARGET.
10016 2000-07-24 Alexandre Oliva <aoliva@redhat.com>
10018 * Makefile.in (configure-target-libf2c): Depend on $(ALL_GCC).
10019 (configure-target-libchill, configure-target-libobjc): Likewise.
10021 * configure.in: Use the same cache file for all target libs.
10022 * config-ml.in: But different cache files per multilib variant.
10024 2000-07-23 Michael Sokolov <msokolov@ivan.Harhan.ORG>
10026 * configure (topsrcdir): Don't use dirname.
10028 2000-07-20 Jason Merrill <jason@redhat.com>
10030 * configure.in: Remove all references to libg++ and librx.
10032 * configure, configure.in, Makefile.in: Unify gcc and binutils.
10034 2000-07-20 Hans-Peter Nilsson <hp@axis.com>
10036 * config.sub: Update to subversions version 2000-07-06.
10038 2000-07-12 Andrew Haley <aph@cygnus.com>
10040 * configure.in (host_makefile_frag): Use mh-ia64pic on IA-64 hosts.
10041 (target_makefile_frag): Use mt-ia64pic on IA-64 targets.
10043 2000-07-07 Phil Edwards <pme@sourceware.cygnus.com>
10045 * symlink-tree: Check number of arguments.
10047 2000-06-06 Andrew Cagney <cagney@b1.cygnus.com>
10049 * texinfo/texinfo.tex: Update to version 2000-05-28.15.
10051 2000-07-05 Jim Wilson <wilson@cygnus.com>
10053 * Makefile.in (CXX_FOR_TARGET): Add libstdc++ to the library
10054 search path for a g++ extracted from the build tree. This
10055 will allow link tests run by configure scripts in
10056 subdirectories to succeed.
10058 2000-07-01 Koundinya K <kk@ddeorg.soft.net>
10060 * ltconfig: Add support for mips-dde-sysv4.2MP
10062 2000-06-28 Corinna Vinschen <vinschen@cygnus.com>
10064 * ltconfig: Check for host_os beeing one of `cygwin', `mingw' or
10065 `os2'. Force ac_cv_exeext to be ".exe" in that case.
10067 2000-06-19 Timothy Wall <twall@cygnus.com>
10069 * configure.in (noconfigdirs): Set noconfigdirs for tic54x target.
10070 * config.sub: Add tic54x target.
10072 2000-06-07 Phillip Thomas <pthomas@suse.de>
10074 * README-maintainer-mode: New file: Contains notes on using
10075 --enable-maintainer-mode with binutils.
10077 2000-05-29 Andrew Cagney <cagney@b1.cygnus.com>
10079 * texinfo/texinfo.tex: Update. Version from makeinfo 4.0.
10081 2000-05-30 Andrew Cagney <cagney@b1.cygnus.com>
10083 * config.sub: Import CVS version 1.167 Tue May 30 09:00:07 2000.
10084 * config.guess: Import CVS version 1.148 Tue May 30 09:00:06 2000
10086 20000-05-21 H.J. Lu (hjl@gnu.org)
10088 * Makefile.in (CC_FOR_TARGET): Make sure as/ld in the gcc
10089 directory are used if they exist. Make sure
10090 $(build_tooldir)/include is searched for header files,
10091 $(build_tooldir)/lib/ for library files.
10092 (GCC_FOR_TARGET): Likewise.
10093 (CXX_FOR_TARGET): Likewise.
10095 2000-05-18 Jeffrey A Law (law@cygnus.com)
10097 * configure.in (hppa*64*-*-*): Do build ld for this configuration.
10099 2000-05-17 Alexandre Oliva <aoliva@cygnus.com>
10101 * Makefile.in (configure-target-libiberty): Depend on
10102 configure-target-newlib.
10104 2000-05-16 Alexandre Oliva <aoliva@cygnus.com>
10106 * configure.in, Makefile.in: Merge all libffi-related
10107 configury stuff from the libgcj tree.
10109 2000-05-16 Andrew Cagney <cagney@b1.cygnus.com>
10111 Thu Apr 27 11:01:48 2000 Andrew Cagney <cagney@b1.cygnus.com>:
10112 * Makefile.in (do-tar-bz2, do-md5sum): Skip CVS directories.
10114 2000-05-16 Andrew Cagney <cagney@b1.cygnus.com>
10116 Wed Apr 26 17:03:53 2000 Andrew Cagney <cagney@b1.cygnus.com>:
10117 * Makefile.in (do-djunpack): New target. Update djunpack.bat with
10118 current version information. Add to proto-toplev directory.
10119 (gdb-taz): Build do-djunpack.
10121 2000-05-15 David Edelsohn <edelsohn@gnu.org>
10123 * configure.in: Special case powerpc*-*-aix* target_makefile_frag.
10125 2000-05-13 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
10127 * ltmain.sh: Preserve in relink_command any environment
10128 variables that may affect the linker behavior.
10130 2000-05-12 Jeffrey A Law (law@cygnus.com)
10132 * config.sub (basic_machine): Recognize hppa64 as a valid cpu type.
10134 2000-05-10 Jim Wilson <wilson@cygnus.com>
10136 * configure.in (ia64*-*-elf*): Add gdb and friends to noconfigdirs.
10138 2000-05-08 Eli Zaretskii <eliz@is.elta.co.il>
10140 * djunpack.bat: Change the Sed script to replace @V@ in fnchange.lst
10141 with the version name.
10143 2000-05-01 Benjamin Kosnik <bkoz@cygnus.com>
10145 * config.if: Tweak.
10147 2000-04-23 Eli Zaretskii <eliz@is.elta.co.il>
10149 * djunpack.bat: New file.
10151 2000-04-19 Andrew Cagney <cagney@b1.cygnus.com>
10153 * Makefile.in (taz, gdb-taz, gas.tar.bz2, binutils.tar.bz2,
10154 gas+binutils.tar.bz2, libg++.tar.bz2, gnats.tar.bz2, gdb.tar.bz2,
10155 dejagnu.tar.bz2, gdb+dejagnu.tar.bz2, insight.tar.bz2,
10156 insight+dejagnu.tar.bz2, newlib.tar.bz2): Pass MD5PROG to sub-make.
10158 2000-04-16 Dave Pitts <dpitts@cozx.com>
10160 * config.sub (case $basic_machine): Change default for "ibm-*"
10163 2000-04-12 Andrew Cagney <cagney@b1.cygnus.com>
10165 * Makefile.in (gdb-taz): New target. GDB specific archive.
10166 (do-md5sum): New target.
10168 (PACKAGE): Default to TOOL.
10169 (VER): Default to a shell script.
10170 (taz): Rewrite target. Move real work to do-proto-toplev. Include
10171 md5 checksum generation.
10172 (do-proto-toplev): New target. Create $(PACKAGE)-$(VER) link.
10173 (do-tar-bz2): Delete creation of $(PACKAGE)-$(VER) link.
10174 (gdb.tar.bz2, dejagnu.tar.bz2, gdb+dejagnu.tar.bz2,
10175 insight.tar.bz2): Use gdb-taz to create archive.
10177 2000-04-07 Andrew Cagney <cagney@b1.cygnus.com>
10179 * configure (warn_cflags): Delete.
10181 2000-04-05 Benjamin Kosnik <bkoz@cygnus.com>
10182 Martin v. Loewis <martin@loewis.home.cs.tu-berlin.de>
10184 * configure.in (enable_libstdcxx_v3): Add.
10185 (target_libs): Add bits here to switch between libstdc++-v2 and
10187 * config.if: And this file too.
10188 * Makefile.in: Add libstdc++-v3 targets.
10190 2000-04-05 Michael Meissner <meissner@redhat.com>
10192 * config.sub (d30v): Add d30v as a basic machine type.
10194 2000-03-29 Jason Merrill <jason@casey.cygnus.com>
10196 * configure.in: -linux-gnu*, not -linux-gnu.
10198 2000-03-03 Andrew Cagney <cagney@b1.cygnus.com>
10200 * Makefile.in (taz): Set PACKAGE to TOOL when not defined.
10201 (do-tar-bz2): Replace TOOL with PACKAGE.
10202 (gdb.tar.bz2): Remove GDBTK from GDB package.
10203 (gdb+dejagnu.tar.bz2, insight.tar.bz2, insight+dejagnu.tar.bz2,
10204 dejagnu.tar.bz2): New packages.
10206 2000-02-27 Andreas Jaeger <aj@suse.de>
10208 * configure.in: Add entry for mips*-*-linux*, move catch all
10209 *-*-*linux* entry below this one.
10211 2000-02-27 Ian Lance Taylor <ian@zembu.com>
10213 * ltconfig, ltmain.sh: Update to libtool 1.3.4.
10215 2000-02-24 Nick Clifton <nickc@cygnus.com>
10217 * config.sub: Support an OS of "wince".
10219 2000-02-24 Andrew Cagney <cagney@b1.cygnus.com>
10221 * config.guess, config.sub: Updated to match config's 2000-02-15
10224 2000-02-23 Linas Vepstas <linas@linas.org>
10226 * config.sub: Add support for Linux/IBM 370.
10227 * configure.in: Likewise.
10229 2000-02-22 Nick Clifton <nickc@cygnus.com>
10231 * configure.in: Add mips-pe, sh-pe and arm-wince-pe targets.
10233 2000-02-20 Christopher Faylor <cgf@cygnus.com>
10235 * config.guess: Guess "cygwin" rather than "cygwin32".
10237 2000-02-16 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10239 * configure (gcc_version): When setting, narrow search to
10240 lines containing `version_string'.
10242 2000-02-15 Denis Chertykov <denisc@overta.ru>
10244 * config.sub: Add support for avr target.
10246 2000-02-01 Hans-Peter Nilsson <hp@bitrange.com>
10248 * config.sub: Add mmix-knuth-mmixware.
10250 2000-01-27 Christopher Faylor <cgf@redhat.com>
10252 * Makefile.in (CC_FOR_TARGET): Add new winsup directory
10253 structure stuff to -L library search.
10254 (CXX_FOR_TARGET): Ditto.
10255 (CROSS_CHECK_MODULES): Fix spelling mistake.
10257 2000-01-24 Mark Mitchell <mark@codesourcery.com>
10259 * Makefile.in (CXX_FOR_TARGET): Use g++, not xgcc, to invoke
10262 2000-01-12 Richard Henderson <rth@cygnus.com>
10264 * configure.in: Don't build some bits for beos.
10266 2000-01-12 Joel Sherrill (joel@OARcorp.com)
10268 * Makefile.in (CC_FOR_TARGET): Use newlib libraries as well
10271 2000-01-06 Geoff Keating <geoffk@cygnus.com>
10273 * configure.in: Use mt-aix43 to handle *_TARGET defs,
10276 1999-12-14 Richard Henderson <rth@cygnus.com>
10278 * config.guess (alpha-osf, alpha-linux): Detect ev67.
10279 * config.sub: Accept alphaev[78], alphaev8.
10281 1999-12-03 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
10283 * config.guess, config.sub: Update from autoconf.
10285 Tue Nov 23 00:57:41 1999 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
10287 * config-ml.in (sparc*-*-*): Disable sparcv9 support if the
10288 necessary libraries are missing.
10290 1999-10-25 Andreas Schwab <schwab@suse.de>
10292 * configure: Fix quoting inside arguments of eval.
10294 1999-10-21 Nick Clifton <nickc@cygnus.com>
10296 * config-ml.in: Allow suppression of some ARM multilibs.
10298 Tue Sep 7 23:33:57 1999 Linas Vepstas <linas@linas.org>
10300 * config.guess: Add OS/390 match pattern.
10301 * config.sub: Add mvs, openedition targets.
10302 * configure.in (i370-ibm-opened*): New.
10304 1999-09-04 Steve Chamberlain <sac@pobox.com>
10306 * config.sub: Add support for configuring for pj.
10308 1999-08-31 Nick Clifton <nickc@cygnus.com>
10310 * config.sub (maybe_os): Add support for configuring for fr30.
10312 1999-08-25 Nick Clifton <nickc@cygnus.com>
10314 * configure.in: Do not configure or build ld for AIX
10315 platforms. ld is known to be broken on these platforms.
10317 Wed Aug 25 01:12:25 1999 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
10319 * config-ml.in: Pass compiler flag corresponding to multidirs to
10322 1999-08-09 Ian Lance Taylor <ian@zembu.com>
10324 * Makefile.in (LDFLAGS): Define.
10326 1999-08-08 Mumit Khan <khan@xraylith.wisc.edu>
10328 * configure.in (i[3456]-*-mingw32*): Don't put gprof in
10330 (*-*-cygwin*): Likewise.
10332 1999-08-08 Ian Lance Taylor <ian@zembu.com>
10335 * Makefile.in (GAS_SUPPORT_DIRS): Add mkdep.
10336 (BINUTILS_SUPPORT_DIRS): Add mkdep.
10338 From Eli Zaretskii <eliz@is.elta.co.il>:
10339 * configure (tmpfile): Change cONf$$ to cNf$$ to avoid an overly
10340 long file name when using DJGPP on MS-DOS.
10342 Wed Aug 4 02:07:14 1999 Jeffrey A Law (law@cygnus.com)
10344 * config.sub (vxworks case): Use os=-vxworks, not os=vxworks.
10346 1999-07-30 Alan Modra <alan@spri.levels.unisa.edu.au>
10348 * Makefile.in (check-target-libio): Remove all-target-libstdc++
10349 dependency as this causes "make check" to globally "make all"
10351 Tue Jun 22 23:45:18 1999 Tom Tromey <tromey@cygnus.com>
10353 * configure.in (target_libs): Added target-zlib.
10354 * Makefile.in (ALL_TARGET_MODULES): Added zlib.
10355 (CONFIGURE_TARGET_MODULES): Likewise.
10356 (CHECK_TARGET_MODULES): Likewise.
10357 (INSTALL_TARGET_MODULES): Likewise.
10358 (CLEAN_TARGET_MODULES): Likewise.
10359 (configure-target-zlib): New target.
10360 (all-target-zlib): Likewise.
10361 (all-target-libjava): Depend on all-target-zlib.
10362 (configure-target-libjava): Depend on configure-target-zlib.
10364 * Makefile.in (configure-target-libjava): Depend on
10365 configure-target-newlib.
10366 (configure-target-boehm-gc): New target.
10367 (configure-target-qthreads): New target.
10369 * configure.in (target_libs): Added target-qthreads.
10370 * Makefile.in (ALL_TARGET_MODULES): Added qthreads.
10371 (CONFIGURE_TARGET_MODULES): Likewise.
10372 (CHECK_TARGET_MODULES): Likewise.
10373 (INSTALL_TARGET_MODULES): Likewise.
10374 (CLEAN_TARGET_MODULES): Likewise.
10375 (all-target-qthreads): New target.
10376 (configure-target-libjava): Depend on configure-target-qthreads.
10377 (all-target-libjava): Depend on all-target-qthreads.
10379 * Makefile.in (ALL_TARGET_MODULES): Added libjava, boehm-gc.
10380 (CONFIGURE_TARGET_MODULES): Likewise.
10381 (CHECK_TARGET_MODULES): Likewise.
10382 (INSTALL_TARGET_MODULES): Likewise.
10383 (CLEAN_TARGET_MODULES): Likewise.
10384 (all-target-libjava): New target.
10385 (all-target-boehm-gc): Likewise.
10386 * configure.in (target_libs): Added libjava, boehm-gc.
10388 1999-07-22 Ian Lance Taylor <ian@zembu.com>
10390 * Makefile.in (binutils.tar.bz2): Don't pass makeall.bat and
10391 configure.bat in SUPPORT_FILES.
10392 (gas+binutils.tar.bz2): Likewise.
10394 * makeall.bat: Remove; obsolete.
10396 1999-07-21 Ian Lance Taylor <ian@zembu.com>
10398 From Mark Elbrecht:
10399 * configure.bat: Remove; obsolete.
10401 1999-07-11 Ian Lance Taylor <ian@zembu.com>
10403 * configure: Add -W -Wall to the default CFLAGS when compiling with
10406 Thu Jul 8 12:32:23 1999 John David Anglin <dave@hiauly1.hia.nrc.ca>
10408 * configure.in: Build ld, binutils & gas for hppa*-*-linux-gnu*.
10410 1999-06-30 Mark Mitchell <mark@codesourcery.com>
10412 * configure.in: Build ld on IRIX6.
10414 1999-06-12 Ian Lance Taylor <ian@zembu.com>
10416 * Makefile.in: Change distribution targets to use bzip2 instead of
10418 (TEXINFO_SUPPORT): Set to just texinfo/texinfo.tex.
10419 (taz): Don't use texinfo/gpl.texinfo or texinfo/lgpl.texinfo.
10421 1999-06-04 Nick Clifton <nickc@cygnus.com>
10423 * config.sub: Add mcore target.
10425 1999-05-30 Cort Dougan <cort@cs.nmt.edu>
10427 * config.guess (ppc-*-linux-gnu): Also use ld emul elf32ppclinux.
10429 1999-05-25 H.J. Lu (hjl@gnu.org)
10431 * config.guess (dummy): Changed to $dummy.
10433 1999-05-24 Nick Clifton <nickc@cygnus.com>
10435 * config.sub: Tidied up case statements.
10437 1999-05-22 Ben Elliston <bje@cygnus.com>
10439 * config.guess: Handle NEC UX/4800. Contributed by Jiro Takabatake
10442 * config.guess: Merge with FSF version. Future changes will be
10443 more accurately recorded in this ChangeLog.
10444 * config.sub: Likewise.
10446 1999-05-20 Stephen L Moshier <moshier@world.std.com>
10448 * Makefile.in (GCC_FOR_TARGET): Add -I$(build_tooldir)/include.
10450 1999-04-30 Tom Tromey <tromey@cygnus.com>
10452 * ltmain.sh: [mode link] Always use CC given by ltconfig.
10454 1999-04-23 Tom Tromey <tromey@cygnus.com>
10456 * ltconfig, ltmain.sh: Update to libtool 1.2f.
10458 1999-04-20 Drew Moseley <dmoseley@cygnus.com>
10460 * configure.in (noconfigdirs): Don't build libstub for arm-elf targets.
10461 (noconfigdirs): Don't build any bsp stuff for for arm-oabi targets.
10462 Bad merge removed these two changes.
10464 Tue Apr 13 22:50:54 1999 Donn Terry (donn@interix.com)
10465 Martin Heller (Ing.-Buero_Heller@t-online.de)
10467 * config.guess (interix Alpha): Add.
10469 1999-04-11 Richard Henderson <rth@cygnus.com>
10471 * configure.in (i?86-*-beos*): Do config gperf; don't config
10472 gdb, newlib, or libgloss.
10474 1999-04-11 Alexandre Oliva <oliva@dcc.unicamp.br>
10476 * config-ml.in: On mips*-*-*, if multidirs contains mabi=64, try to
10477 link a trivial program with -mabi=64. If it fails, remove mabi=64
10480 1999-04-10 Philipp Thomas (kthomas@gwdg.de)
10482 * config.sub: Set basic_machine to i586 when target_alias = k6-*.
10484 1999-04-08 Nick Clifton <nickc@cygnus.com>
10486 * config.sub: Add support for mcore targets.
10488 1999-04-07 Michael Meissner <meissner@cygnus.com>
10490 * configure.in (d30v-*): Use config/mt-d30v as makefile fragment,
10491 not mt-ospace, in order to shut up assembler warning about using
10492 symbols that are named the same as registers.
10494 1999-04-07 Drew Moseley <dmoseley@cygnus.com>
10496 * Makefile.in (all-target-cygmon): Added all-target-bsp to the
10497 dependency list for all-target-cygmon.
10499 1999-04-05 Doug Evans <devans@casey.cygnus.com>
10501 * config-ml.in: Check $host, not $target, for selective multilibs.
10502 (arm-*-*): Allow disabling of biendian, h/w fp, 26 bit apcs,
10503 thumb interworking, and underscore prefix multilibs.
10505 1999-04-04 Ian Lance Taylor <ian@zembu.com>
10507 * missing: Update to version from current automake.
10509 Fri Apr 2 15:11:32 1999 H.J. Lu (hjl@gnu.org)
10511 * configure (gxx_include_dir): Removed.
10513 * configure.in (gxx_include_dir): Handle it.
10514 * Makefile.in: Likewise.
10516 1999-03-29 Gavin Romig-Koch <gavin@cygnus.com>
10518 * config.sub (mips64vr4111,mips64vr4111el) Add.
10520 1999-03-21 Ben Elliston <bje@cygnus.com>
10522 * config.guess: Correct typo for detecting ELF on FreeBSD.
10524 Thu Mar 18 00:17:50 1999 Mark Elbrecht <snowball3@usa.net>
10526 * configure.in (pc-msdosdjgpp): Set host_makefile_frag to
10529 Thu Mar 11 18:37:23 1999 Drew Moseley <dmoseley@cygnus.com>
10531 * Makefile.in (all-target-bsp): Added all-gcc all-binutils and
10532 all-target-newlib to dependency list for all-target-bsp.
10534 Thu Mar 11 01:19:31 1999 Mumit Khan <khan@xraylith.wisc.edu>
10536 * config.sub: Add i386-uwin support.
10537 * config.guess: Likewise.
10539 Thu Mar 11 01:07:55 1999 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
10541 * configure.in: cleanup, add mh-*pic handling for arm, special
10542 case powerpc*-*-aix*
10544 Wed Mar 10 18:35:07 1999 Jeff Johnston <jjohnstn@cygnus.com>
10546 * configure.in (noconfigdirs): Removed target-libgloss so libnosys.a
10549 Wed Mar 10 17:39:09 1999 Drew Moseley <dmoseley@cygnus.com>
10551 * configure.in: Added bsp support to arm-*-coff and arm-*-elf
10554 1999-03-02 Nick Clifton <nickc@cygnus.com>
10556 * config.sub: Rename CYGNUS LOCAL to EGCS LOCAL
10558 1999-02-28 Geoffrey Noer <noer@cygnus.com>
10560 * config.sub: Check for "cygwin*" rather than "cygwin32*"
10562 1999-02-24 Nick Clifton <nickc@cygnus.com>
10564 * config.sub: Fix typo in arm recognition.
10566 1999-02-24 Drew Moseley <dmoseley@cygnus.com>
10568 * configure.in (noconfigdirs): Changed target_configdirs to
10569 include target-bsp only for m68k-*-elf* and m68k-*-coff*
10570 rather than m68k-*-* since it is not known to work on
10571 m68k-aout. Ditto for arm-*-*oabi.
10573 1999-02-24 Stan Shebs <shebs@andros.cygnus.com>
10575 * configure.in (*-*-windows*): Remove, no longer used.
10577 1999-02-19 Ben Elliston <bje@cygnus.com>
10579 * config.guess: Automatically recognise ELF on FreeBSD. From Niall
10580 Smart and improved by Andrew Cagney.
10582 1999-02-18 Marc Espie <espie@cvs.openbsd.org>
10584 * config.guess: Recognize openbsd-*-hppa.
10586 1999-02-17 H.J. Lu (hjl@gnu.org)
10588 * Makefile.in (REALLY_SET_LIB_PATH): Append $$$(RPATH_ENVVAR)
10589 only if it is not empty.
10591 1999-02-17 Nick Clifton <nickc@cygnus.com>
10593 Patch from: Scott Bambrough <scottb@corelcomputer.com>
10595 * config.guess: Modified to recognize uname's armv* syntax.
10597 * config.sub: Modified to recognize uname's armv* syntax.
10599 1999-02-17 Mark Salter <msalter@cygnus.com>
10601 * configure.in: Added target-bsp for sparclite.
10603 1999-02-08 Richard Henderson <rth@cygnus.com>
10605 * config.sub: Recognize alphapca5[67] and up to alphaev8.
10607 1999-02-08 Nick Clifton <nickc@cygnus.com>
10609 * configure.in: Add support for strongarm port.
10610 * config.sub: Add support for strongarm target.
10612 1999-02-07 Mumit Khan <khan@xraylith.wisc.edu>
10614 * configure.in (*-*-cygwin32*): Use config/mh-cygwin instead of
10615 the old name config/mh-cygwin32.
10618 1999-02-04 Ian Lance Taylor <ian@cygnus.com>
10620 * configure.in: Do build ld for ix86 Solaris.
10622 1999-02-02 Jim Wilson <wilson@cygnus.com>
10624 * Makefile.in (EXTRA_GCC_FLAGS): Set AR to $AR instead of
10625 $AR_FOR_TARGET. Likewise for RANLIB.
10627 1999-02-02 Catherine Moore <clm@cygnus.com>
10629 * config.sub (oabi): Recognize.
10630 * configure.in (arm-*-oabi): Handle.
10632 1999-01-30 Robert Lipe (robertlipe@usa.net)
10634 * config.guess: Improve detection of i686 on UnixWare 7.
10636 1999-01-30 Mumit Khan <khan@xraylith.wisc.edu>
10638 * config.guess: Add support for i386-pc-interix.
10639 * config.sub: Likewise.
10640 * configure.in: Likewise.
10642 1999-01-18 Christopher Faylor <cgf@cygnus.com>
10644 * Makefile.in: Remove unneeded all-target-libio from
10645 from all-target-winsup target since it is now unneeded.
10646 Add all-target-libtermcap in its place since it is now
10649 1998-12-30 Christopher Faylor <cgf@cygnus.com>
10651 * configure.in: makefile stub for cygwin target is probably
10652 unnecessary. Remove it for now.
10654 1998-12-30 Christopher Faylor <cgf@cygnus.com>
10656 * configure.in: libtermcap.a should be built when cygwin is the
10657 target as well as the host.
10658 * config.guess: Allow mixed case in cygwin uname output.
10659 * Makefile.in: Add libtermcap target.
10661 1998-12-23 Jeffrey A Law (law@cygnus.com)
10663 * config.sub: Clean up handling of hppa2.0.
10665 1998-12-22 Rodney Brown (rodneybrown@pmsc.com)
10667 * config.guess: Use C code to identify more HP machines.
10669 Thu Dec 17 01:22:30 1998 Jeffrey A Law (law@cygnus.com)
10671 * config.sub: Handle hppa2.0.
10673 Tue Dec 15 17:02:58 1998 Bob Manson <manson@charmed.cygnus.com>
10675 * configure.in: Add cygmon for x86-coff and x86-elf. Configure
10676 cygmon for all sparclite targets, regardless of object format.
10678 1998-12-15 Mark Salter <msalter@cygnus.com>
10680 * configure.in: Added target-bsp for several target architectures.
10682 * Makefile.in: Added rules for bsp.
10684 Fri Dec 4 01:34:02 1998 Jeffrey A Law (law@cygnus.com)
10686 * config.guess: Improve detection of hppa2.0 processors.
10688 Fri Dec 4 01:33:05 1998 Niall Smart <nialls@euristix.ie>
10690 * config.guess: Recognize FreeBSD using ELF automatically.
10692 1998-11-26 Manfred Hollstein <manfred@s-direktnet.de>
10694 * configure (skip-this-dir): Add handling for new shell script, which
10695 might be created by a sub-directory's configure to indicate, this particular
10696 directory is "unwanted".
10697 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): Likewise.
10699 Wed Nov 18 18:28:45 1998 Geoffrey Noer <noer@cygnus.com>
10701 * ltconfig: import from libtool, after changing libtool to
10702 account for the cygwin name change.
10704 Wed Nov 18 18:09:14 1998 Geoffrey Noer <noer@cygnus.com>
10706 * Makefile.in: CC_FOR_TARGET and CXX_FOR_TARGET should also
10707 include newlib/libc/sys/cygwin and newlib/libc/sys/cygwin32.
10709 Wed Nov 18 20:13:29 1998 Christopher Faylor <cgf@cygnus.com>
10711 * configure.in: Add libtermcap to list of cygwin dependencies.
10713 1998-11-17 Geoffrey Noer <noer@cygnus.com>
10715 * Makefile.in: modify CC_FOR_TARGET and CXX_FOR_TARGET so that
10716 they include winsup/include when it's a cygwin target.
10718 1998-11-12 Tom Tromey <tromey@cygnus.com>
10720 * configure.in (host_tools): Added zip.
10721 * Makefile.in (all-target-libjava): Depend on all-zip.
10722 (all-zip): New target.
10723 (ALL_MODULES): Added all-zip.
10724 (NATIVE_CHECK_MODULES): Added check-zip.
10725 (INSTALL_MODULES): Added install-zip.
10726 (CLEAN_MODULES): Added clean-zip.
10728 1998-11-12 Geoffrey Noer <noer@cygnus.com>
10730 * Makefile.in: lose "32" from comment about cygwin.
10732 1998-11-05 Nick Clifton <nickc@cygnus.com>
10734 * configure.in: Use -Os to build target libraries for the fr30.
10736 1998-11-04 Dave Brolley <brolley@cygnus.com>
10738 * config.sub: Add fr30.
10740 1998-11-02 Geoffrey Noer <noer@cygnus.com>
10742 * configure.in: drop "32" from config/mh-cygwin32. Check
10743 cygwin* instead of cygwin32*.
10744 * config.sub: Check cygwin* instead of cygwin32*.
10746 1998-10-22 Robert Lipe <robertl@dgii.com>
10748 * config.guess: Match any version of Unixware7.
10750 1998-10-20 Syd Polk <spolk@cygnus.com>
10752 * Makefile.in configure.in: Add the ability to use tcl8.1 and tk8.1
10755 1998-10-18 Jeffrey A Law (law@cygnus.com)
10757 * config.if (cxx_interface, libstdcxx_interface): Do not try to set
10758 these if the appropriate directories and files to not exist.
10760 1998-10-14 Jeffrey A Law (law@cygnus.com)
10762 * Makefile.in (DEVO_SUPPORT): Add config.if.
10764 1998-10-13 Manfred Hollstein <manfred@s-direktnet.de>
10766 * configure: Add pattern to replace "build_tooldir"'s
10767 definition in the generated Makefile with "tooldir"'s
10770 Tue Oct 13 09:17:06 1998 Jeffrey A Law (law@cygnus.com)
10772 * config.sub: Bring back lost sparcv9.
10774 * Makefile.in (all-snvavigator): Remove all-flexlm dependency.
10776 Mon Oct 12 12:09:44 1998 Jeffrey A Law (law@cygnus.com)
10778 * Makefile.in (CHILL_FOR_TARGET): Mirror recent changes to
10779 CC_FOR_TARGET and friends.
10781 Mon Oct 12 12:09:30 1998 Alexandre Oliva <oliva@dcc.unicamp.br>
10783 * Makefile.in (build_tooldir): New variable, same as tooldir.
10784 (CC_FOR_TARGET, GCC_FOR_TARGET, CXX_FOR_TARGET): Add
10785 -B$(build_tooldir)/bin/.
10786 (BASE_FLAGS_TO_PASS): Pass build_tooldir down.
10788 Wed Sep 30 22:20:50 1998 Robert Lipe <robertl@dgii.com>
10790 * config.sub: Add support for i[34567]86-pc-udk.
10791 * configure.in: Likewise.
10793 Wed Sep 30 19:23:48 1998 Geoffrey Noer <noer@cygnus.com>
10795 * Makefile.in: add bzip2 package building bits for user
10797 * configure.in: ditto
10799 Wed Sep 30 03:00:05 1998 Jeffrey A Law (law@cygnus.com)
10801 * Makefile.in (TARGET_CONFIGDIRS): Add libobjc.
10802 (ALL_TARGET_MODULES): Add all-target-libobjc.
10803 (CONFIGURE_TARGET_MODULES, CHECK_TARGET_MODULES): Similarly.
10804 (INSTALL_TARGET_MODULES, CLEAN_TARGET_MODULES): Similarly.
10805 (all-target-libchill): Add dependencies.
10806 * configure.in (target_libs): Add libchill.
10808 1998-09-30 Manfred Hollstein <manfred@s-direktnet.de>
10810 * configure.in (target_subdir): Remove duplicate line.
10812 Tue Sep 29 22:45:41 1998 Felix Lee <flee@cygnus.com>
10814 * Makefile.in (all-automake): fix dependencies.
10816 Mon Sep 28 04:04:27 1998 Jeffrey A Law (law@cygnus.com)
10818 * configure.in: Minor cleanups for building in the $(target_alias)
10821 1998-09-22 Jim Wilson <wilson@cygnus.com>
10823 * Makefile.in (bootstrap): Set r and s before make all. Use
10824 BASE_FLAGS_TO_PASS in make all.
10827 1998-09-20 Mark Mitchell <mark@markmitchell.com>
10829 * Makefile.in (bootstrap): Pass TARGET_FLAGS_TO_PASS to `make all'.
10831 Sun Sep 20 00:13:02 1998 Richard Henderson <rth@cygnus.com>
10833 * config.sub: Fix typo in last change.
10835 1998-09-19 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
10837 * config.sub: Add support for C4x target.
10838 * configure.in: Likewise.
10840 1998-09-13 David S. Miller <davem@pierdol.cobaltmicro.com>
10842 * config.sub: Recognize sparcv9 just like sparc64.
10844 Wed Sep 9 15:44:52 1998 Robert Lipe <robertl@dgii.com>
10846 * config.guess: Match "Pent II" or "PentII" for OpenServer.
10848 Tue Sep 8 01:18:39 1998 Jeffrey A Law (law@cygnus.com)
10850 * config.guess: Correctly identify Pentium II sco boxes.
10852 * config.guess: Fix "tr" code. From Weiwen Liu.
10854 Sat Sep 5 13:56:52 1998 John Hughes <john@Calva.COM>
10856 * configure.in: Do not assume x86-svr4 or x86-unixware can handle
10859 Sat Sep 5 02:12:02 1998 Jeffrey A Law (law@cygnus.com)
10861 * Makefile.in (TARGET_CONFIGDIRS): Add libchill.
10862 (ALL_TARGET_MODULES): Add all-target-libchill.
10863 (CONFIGURE_TARGET_MODULES, CHECK_TARGET_MODULES): Similarly.
10864 (INSTALL_TARGET_MODULES, CLEAN_TARGET_MODULES): Similarly.
10865 (all-target-libchill): Add dependencies.
10866 * configure.in (target_libs): Add libchill.
10868 Sun Aug 30 22:27:02 1998 Lutz Wohlrab <lutz.wohlrab@informatik.tu-chemnitz.de>
10870 * config.guess: Avoid assumptions about "tr" behaves when
10871 LANG is set to something other than English.
10873 Sun Aug 30 22:14:44 1998 H.J. Lu (hjl@gnu.org)
10875 * configure (gxx_include_dir): Changed to
10876 '${prefix}/include/g++'-${libstdcxx_interface}.
10878 * config.if: New to determine the interfaces.
10880 Sun Aug 30 21:15:19 1998 Mark Klein (mklein@dis.com)
10882 * config.guess: Detect and handle MPE/IX.
10883 * config.sub: Deal with MPE/IX.
10885 Sat Aug 29 14:32:55 1998 David Edelsohn <edelsohn@mhpcc.edu>
10887 * configure.in: Use mh-aix43.
10889 1998-07-29 Manfred Hollstein <manfred@s-direktnet.de>
10891 * configure: Fix --without/--disable cases for gxx-include-dir.
10893 Fri Aug 28 12:28:26 1998 Per Bothner <bothner@cygnus.com>
10895 * mdata-sh: Imported. Needed for automake support.
10897 Thu Aug 13 12:49:29 1998 H.J. Lu <hjl@gnu.org>
10899 * Makefile.in (taz): Try "chmod -R og=u ." before
10900 "chmod og=u `find . -print`".
10902 Fri Jul 31 09:38:33 1998 Catherine Moore <clm@cygnus.com>
10904 * configure.in: Add arm-elf and thumb-elf support.
10906 Mon Jul 27 16:23:58 1998 Doug Evans <devans@canuck.cygnus.com>
10908 * Makefile.in: Undo previous patch.
10910 Fri Jul 24 19:55:24 1998 Doug Evans <devans@canuck.cygnus.com>
10912 * Makefile.in (INSTALL_TARGET): Move EXTRA_TARGET_HOST_INSTALL_MODULES
10914 (install-no-fixedincludes): and here
10915 (INSTALL_MODULES): ... from here.
10917 Fri Jul 24 17:01:42 1998 Ian Lance Taylor <ian@cygnus.com>
10919 * config.sub: Merge with FSF.
10921 * config.guess: Merge with FSF.
10923 Fri Jul 24 08:43:36 1998 Doug Evans <devans@canuck.cygnus.com>
10925 * configure (extraconfigdirs): New variable.
10926 (SUBDIRS): Add extraconfigdirs and recurse on them too.
10927 * Makefile.in (all): Move higher in file.
10928 (EXTRA_TARGET_HOST_ALL_MODULES): New variable.
10929 (EXTRA_TARGET_HOST_{INSTALL,CHECK}_MODULES): New variables.
10930 (ALL_MODULES): Add EXTRA_TARGET_HOST_ALL_MODULES.
10931 (CROSS_CHECK_MODULES): Add EXTRA_TARGET_HOST_CHECK_MODULES.
10932 (INSTALL_MODULES): Add EXTRA_TARGET_HOST_INSTALL_MODULES.
10934 1998-07-23 Brendan Kehoe <brendan@cygnus.com>
10936 * Makefile.in (all-target-libjava): Depend on all-gcc and
10938 (configure-target-libjava): Depend on $(ALL_GCC).
10940 Sat Jul 18 14:32:43 CDT 1998 Robert Lipe <robertl@dgii.com>
10942 * config.guess: (*-pc-sco3.2v5) Add detection for Pentium II.
10943 (*-pc-unixware7) Add detection for Pentium II, Pentium Pro.
10945 Fri Jul 17 13:30:18 1998 Ian Lance Taylor <ian@cygnus.com>
10947 * ylwrap: Change absolute path checks to check for DOS style path
10950 * ylwrap: Don't use a full path name if the source file is in the
10951 same directory. From hjl@lucon.org (H.J. Lu).
10953 * config-ml.in: Default to being verbose, to match Feb 18 change to
10956 Thu Jul 16 12:29:51 1998 Ian Lance Taylor <ian@cygnus.com>
10958 Brought over from egcs:
10960 Sat Jun 27 22:46:32 1998 Jeffrey A Law (law@cygnus.com)
10962 * configure.in (target_subdir): Set to ${target_alias} instead
10965 Mon Sep 1 16:45:44 1997 Jim Wilson <wilson@cygnus.com>
10967 * configure.in (target_subdir): Set to libraries if enable_multilib.
10969 Wed Jul 15 01:00:54 1998 Ian Lance Taylor <ian@cygnus.com>
10971 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): If there are any
10972 multilibs, force reconfiguration the first time we create
10973 multilib.out in a subdirectory, in case TARGET_SUBDIR is `.'.
10975 Tue Jul 14 23:41:03 1998 Ian Lance Taylor <ian@cygnus.com>
10977 * configure.in: Strip any --no option from CONFIG_ARGUMENTS, to
10978 avoid confusion with --no-recursion.
10980 Tue Jul 14 15:37:41 1998 Geoffrey Noer <noer@cygnus.com>
10982 * configure.in: Win32 hosts shouldn't use install -x
10983 * install-sh: remove -x option, and special .exe-handling
10986 Tue Jul 14 15:28:41 1998 Richard Henderson <rth@cygnus.com>
10988 * config.guess: Recognize i586-pc-beos.
10989 * configure.in: Don't build some bits for beos.
10991 Tue Jul 14 13:22:18 1998 Ian Lance Taylor <ian@cygnus.com>
10993 * configure: If CC is set but CFLAGS is not, and CC is gcc, make
10994 CFLAGS default to -O2.
10996 * ltmain.sh: Add some hacks to make SunOS --enable-shared work
10999 Fri Jul 10 13:18:23 1998 Ian Lance Taylor <ian@cygnus.com>
11001 * ltmain.sh: Correct install when using a different shell.
11003 Tue Jul 7 15:24:38 1998 Ian Lance Taylor <ian@cygnus.com>
11005 * ltconfig, ltmain.sh: Update to libtool 1.2b.
11007 Thu Jul 2 13:57:36 1998 Klaus Kaempf <kkaempf@rmi.de>
11009 * makefile.vms: Update to build binutils/makefile.vms. Add install
11012 Wed Jul 1 16:45:21 1998 Ian Lance Taylor <ian@cygnus.com>
11014 * ltconfig: Update to correct AIX handling.
11016 Sat Jun 27 22:46:32 1998 Jeffrey A Law (law@cygnus.com)
11018 * Makefile.in (BASE_FLAGS_TO_PASS): Add TARGET_SUBDIR.
11020 * configure.in (target_subdir): Set to ${target_alias} instead
11023 1998-06-26 Manfred Hollstein <manfred@s-direktnet.de>
11025 * Makefile.in (BASE_FLAGS_TO_PASS): Add gcc_version_trigger.
11026 (Makefile): Depend on $(gcc_version_trigger).
11028 * configure (gcc_version): Change default initializer to empty
11030 (gcc_version_trigger): New variable; pass this variable down
11031 to subdir configures to enable them checking gcc's version
11032 themselves. Emit make macros for both gcc_version vars.
11033 (topsrcdir): Initialize reliably.
11034 (recursion line): Remove --with-gcc-version=${gcc_version}.
11036 1998-06-24 Manfred Hollstein <manfred@s-direktnet.de>
11038 * configure (enable_version_specific_runtime_libs): Implement new flag
11039 --enable-version-specific-runtime-libs which installs C++ runtime stuff
11040 in $(libsubdir); emit definition in each generated Makefile.
11041 (gxx_include_dir): Initialize depending on
11042 $enable_version_specific_runtime_libs.
11044 1998-06-24 Manfred Hollstein <manfred@s-direktnet.de>
11046 * configure (gcc_version): Initialize properly depending on
11047 how and where configure is started.
11048 (recursion line): Pass a --with-gcc-version=${gcc_version}
11049 to configures in subdirs.
11051 Wed Jun 24 16:01:59 1998 John Metzler <jmetzler@cygnus.com>
11053 * configure.in (noconfigdirs): Add configure pattern for mips tx39
11056 Tue Jun 23 22:42:32 1998 Mark Alexander <marka@cygnus.com>
11058 * configure.in: Add cygmon and libstub support for mn10200.
11060 1998-06-19 Manfred Hollstein <manfred@s-direktnet.de>
11062 * configure (gcc_version): Add new variable describing the
11063 particular gcc version we're building.
11064 * Makefile.in (libsubdir): Add new macro for the directory
11065 in which the compiler finds executables, libraries, etc.
11066 (BASE_FLAGS_TO_PASS): Pass down gcc_version, target_alias
11069 Fri Jun 19 02:36:59 1998 Alexandre Oliva <oliva@dcc.unicamp.br>
11071 * Makefile.in (local-clean): Remove *.log.
11072 (warning.log): Built with warn_summary from build.log.
11073 (mail-report.log): Run test_summary.
11074 (mail-report-with-warnings.log): Run test_summary including
11075 warning.log in the report.
11077 Thu Jun 18 11:26:03 1998 Robert Lipe <robertl@dgii.com>
11079 * config.guess: Detection of Pentium II for *-sco-3.2v5*.
11081 Mon Jun 15 14:53:54 1998 Andrew Cagney <cagney@b1.cygnus.com>
11083 * Makefile.in (grep): Grep no longer depends on libiberty.
11085 Fri Jun 12 14:03:34 1998 Syd Polk <spolk@cygnus.com>
11087 * Makefile.in: all-snavigator needs all-libgui.
11089 Thu Jun 11 19:43:47 1998 Mark Alexander <marka@cygnus.com>
11091 * configure.in: Add cygmon and libstub support for mn10300.
11093 Wed Jun 10 11:19:47 1998 Ian Lance Taylor <ian@cygnus.com>
11095 * missing: Update to version from automake 1.3.
11097 * ltmain.sh: On installation, don't get confused if the same name
11098 appears more than once in the list of library names.
11100 Wed Jun 3 14:51:42 1998 Ian Lance Taylor <ian@cygnus.com>
11102 * config.sub: Accept m68060 and m5200 as CPU names.
11104 Mon Jun 1 17:25:16 1998 Ian Lance Taylor <ian@cygnus.com>
11106 * configure: Use && rather than using -a in test, because odd
11107 strings can confuse test.
11108 * configure.in: Likewise.
11110 Thu May 28 19:31:13 1998 Ian Lance Taylor <ian@cygnus.com>
11112 * ltconfig, ltmain.sh: Bring in Visual C++ support.
11114 Sat May 23 23:44:13 1998 Alexandre Oliva <oliva@dcc.unicamp.br>
11116 * Makefile.in (boostrap2-lean, bootstrap3-lean,
11117 bootstrap4-lean): New targets.
11119 Mon May 11 23:55:56 1998 Jeffrey A Law (law@cygnus.com)
11121 * mpw-* Delete. Not used.
11123 Mon May 11 23:11:34 1998 Jeffrey A Law (law@cygnus.com)
11125 * COPYING.LIB: Update FSF address.
11127 Fri May 8 01:30:20 1998 Ian Lance Taylor <ian@cygnus.com>
11129 * ltconfig, ltmain.sh: Update to libtool 1.2a.
11131 * Makefile.in (GASB_SUPPORT_DIRS): Remove intl; already included via
11134 Thu May 7 17:27:35 1998 Ian Lance Taylor <ian@cygnus.com>
11136 * ltconfig, ltmain.sh: Avoid producing a version number if
11137 -version-info was not used.
11139 Tue May 5 18:02:24 1998 Ian Lance Taylor <ian@cygnus.com>
11141 * configure.in: Add --with-newlib to CONFIG_ARGUMENTS if we are
11142 building with newlib.
11144 1998-04-30 Paul Eggert <eggert@twinsun.com>
11146 * Makefile.in (EXTRA_GCC_FLAGS): Remove backslash at end;
11147 Solaris `make' causes it to continue to next definition.
11149 Tue Apr 28 16:24:24 1998 Jason Molenda (crash@bugshack.cygnus.com)
11151 * Makefile.in (install-gdbtk): Call this 'install-gdb' so that
11152 the right GUI libraries and files are installed along with GDB.
11154 Tue Apr 28 18:11:24 1998 Ian Lance Taylor <ian@cygnus.com>
11156 * configure.in: Change alpha to alpha* in several places.
11158 Tue Apr 28 07:42:00 1998 Mark Alexander <marka@cygnus.com>
11160 * config.sub: Recognize sparc86x.
11162 Tue Apr 28 07:35:02 1998 Michael Meissner <meissner@cygnus.com>
11164 * configure.in (--enable-target-optspace): Remove debug echo.
11166 Thu Apr 23 21:31:16 1998 Jim Wilson <wilson@cygnus.com>
11168 * configure: Set CXXFLAGS from CXXFLAGS, not CFLAGS.
11170 Thu Apr 23 12:26:38 1998 Ian Lance Taylor <ian@cygnus.com>
11172 * ltconfig: Update cygwin32 support.
11174 * Makefile.in (GAS_SUPPORT_DIRS): Add intl.
11175 (BINUTILS_SUPPORT_DIRS, GASB_SUPPORT_DIRS): Likewise.
11176 (GDB_SUPPORT_DIRS): Likewise.
11178 Wed Apr 22 12:30:10 1998 Michael Meissner <meissner@cygnus.com>
11180 * configure.in (target_makefile_frag): If --enable-target-optspace,
11181 use -Os to compile target libraries rather than -O2. Default to
11182 using -Os for d10v and m32r if --{enable,disable}-target-optspace is
11184 * configure.in (target_cflags): Ditto for d30v.
11186 Tue Apr 21 23:06:54 1998 Tom Tromey <tromey@cygnus.com>
11188 * Makefile.in (all-bfd): Depend on all-intl.
11189 (all-binutils): Likewise.
11190 (all-gas): Likewise.
11191 (all-gprof): Likewise.
11192 (all-ld): Likewise.
11194 1998-04-19 Brendan Kehoe <brendan@cygnus.com>
11196 * configure.in (host_tools): Fix typo, lbtool -> libtool.
11198 Fri Apr 17 16:20:42 1998 Ian Lance Taylor <ian@cygnus.com>
11200 * Makefile.in (all-bfd): Depend upon all-libiberty.
11202 * ltconfig, ltmain.sh: Bring in newer cygwin32 support.
11204 Fri Apr 17 12:22:22 1998 Bob Manson <manson@charmed.cygnus.com>
11206 * Makefile.in: Add libstub.
11208 * configure.in: Ditto. Build libstub for targets that have cygmon
11211 Tue Apr 14 18:01:55 1998 Ian Lance Taylor <ian@cygnus.com>
11213 * configure.in: Don't set PICFLAG on ix86-cygwin32.
11215 Tue Apr 14 12:24:45 1998 J. Kean Johnston <jkj@sco.com>
11217 * configure.in: Recognise i[3456]96-*-sysv5* as a valid host, and
11218 use mh-sysv5 if specified. Support gprof on SCO Open Server.
11220 Tue Apr 14 11:33:51 1998 Krister Walfridsson <cato@df.lth.se>
11222 * configure: Define DEFAULT_M4 by searching PATH.
11223 * Makfile.in: Use DEFAULT_M4.
11225 Mon Apr 13 15:37:24 1998 Ian Lance Taylor <ian@cygnus.com>
11227 * ltconfig: Add cygwin32 support.
11229 * Makefile.in, configure.in: Add libtool as a native only directory
11230 to configure and build.
11232 Sun Apr 12 20:58:46 1998 Jeffrey A Law (law@cygnus.com)
11234 * Makefile.in (INSTALL_MODULES): Remove texinfo.
11236 Wed Apr 8 13:18:56 1998 Philippe De Muyter <phdm@macqel.be>
11238 * Makefile.in (EXTRA_GCC_FLAGS): XFOO lines shortened.
11240 Thu Apr 2 14:48:44 1998 Geoffrey Noer <noer@cygnus.com>
11242 * Makefile.in: add ash make rules
11243 * configure.in: add ash to native_only and host_tools lists
11245 Thu Mar 26 12:53:20 1998 Tom Tromey <tromey@cygnus.com>
11247 * Makefile.in (all-gettext, all-intl): New targets.
11248 (ALL_MODULES): Added all-gettext, all-intl.
11249 (CROSS_CHECK_MODULES): Added check-gettext, check-intl.
11250 (INSTALL_MODULES): Added install-gettext, install-intl.
11251 (CLEAN_MODULES): Added clean-gettext, clean-intl.
11253 * configure.in (host_tools): Added gettext.
11254 (native_only): Likewise.
11255 (noconfigdirs) [various cases]: Likewise.
11256 (host_libs): Added intl.
11258 Thu Mar 26 15:00:11 1998 Keith Seitz <keiths@onions.cygnus.com>
11260 * configure: Do not disable building gdbtk for cygwin32 hosts.
11262 Wed Mar 25 10:04:18 1998 Nick Clifton <nickc@cygnus.com>
11264 * configure.in: Add thumb-coff target.
11265 * config.sub: Add thumb-coff target.
11267 Wed Mar 25 11:49:12 1998 Jason Molenda (crash@bugshack.cygnus.com)
11269 * Makefile.in: Revert yesterday's change.
11270 (all-target-winsup): all-target-librx stays out of here.
11272 Tue Mar 24 16:58:29 1998 Jason Molenda (crash@bugshack.cygnus.com)
11274 * Makefile.in (TARGET_CONFIGDIRS, ALL_TARGET_MODULES,
11275 CONFIGURE_TARGET_MODULES, CHECK_TARGET_MODULES,
11276 INSTALL_TARGET_MODULES, CLEAN_TARGET_MODULES, all-target-winsup):
11277 Remove references to librx and libg++.
11279 Tue Mar 24 18:28:12 1998 Eric Mumpower <nocturne@cygnus.com>
11281 * Makefile.in (BASE_FLAGS_TO_PASS): Pass $(lispdir) down to
11284 Tue Mar 24 11:37:45 1998 Ian Lance Taylor <ian@cygnus.com>
11286 * Makefile.in (CC_FOR_TARGET): Use $(TARGET_SUBDIR) when passing -B
11287 for newlib directory.
11288 (CXX_FOR_TARGET): Likewise.
11290 Mon Mar 23 11:30:21 1998 Jeffrey A Law (law@cygnus.com)
11292 * ltconfig: Update after libtool/ltconfig.in change for
11295 Fri Mar 20 18:51:43 1998 Ian Lance Taylor <ian@cygnus.com>
11297 * ltconfig, ltmain.sh: Update to libtool 1.2.
11299 Fri Mar 20 09:32:14 1998 Manfred Hollstein <manfred@s-direktnet.de>
11301 * Makefile.in (install-gcc): Don't specify LANGUAGES here.
11302 (install-gcc-cross): Instead, override LANGUAGES here.
11304 1998-03-18 Dave Love <d.love@dl.ac.uk>
11306 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): Set CONFIG_SITE to a
11307 non-existent file since /dev/null loses with bash 2.0/autoconf 2.12.
11309 Wed Mar 18 09:24:59 1998 Nick Clifton <nickc@cygnus.com>
11311 * configure.in: Add Thumb-pe target.
11313 Tue Mar 17 16:59:00 1998 Syd Polk <spolk@cygnus.com>
11315 * Makefile.in - changed sn targets to snavigator
11316 * configure.in - changed sn targets to snavigator
11318 Tue Mar 17 10:33:28 1998 Manfred Hollstein <manfred@s-direktnet.de>
11320 * config-ml.in: After building symlink tree call make distclean
11321 if a Makefile got linked into ${ml_dir}/${ml_libdir}; this happens
11322 to be the case for libiberty.
11324 Tue Mar 17 10:22:37 1998 H.J. Lu (hjl@gnu.ai.mit.edu)
11326 * configure: When making link, also check the current
11327 directory. The configure scripts may create one.
11329 Fri Mar 6 01:02:03 1998 Richard Henderson <rth@cygnus.com>
11331 * config.sub: Accept alphapca56 and alphaev6 properly.
11333 Fri Mar 6 00:14:55 1998 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
11335 * configure.in: Revert 3 Jan change for powerpc-linux-gnulibc1.
11337 Mon Feb 23 15:09:18 1998 Bruno Haible <bruno@linuix.mathematik.uni-karlsruhe.de
11339 * config.sub (sco5): Fix typo.
11341 Mon Feb 23 14:46:06 1998 Ian Lance Taylor <ian@cygnus.com>
11343 * Makefile.in (INSTALL_MODULES): Move install-tcl before
11345 (install-itcl): Remove dependency on install-tcl.
11347 Mon Feb 23 09:53:28 1998 Mark Alexander <marka@cygnus.com>
11349 * configure.in: Remove libgloss from noconfigdirs for MN10300.
11351 Thu Feb 19 13:40:41 1998 Ian Lance Taylor <ian@cygnus.com>
11353 * configure.in: Don't build libgui for a cygwin32 target when not on
11356 Wed Feb 18 12:29:00 1998 Jason Molenda (crash@bugshack.cygnus.com)
11358 * configure (redirect): Set to null, so default behavior of
11359 configure is now --verbose.
11361 1998-02-16 Dave Love <d.love@dl.ac.uk>
11363 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): Run configure with
11364 CONFIG_SITE=/dev/null to forestall lossage with site configuration.
11366 Mon Feb 16 12:23:53 1998 Manfred Hollstein <Manfred.Hollstein@ks.sel.alcatel.de>
11368 * Makefile.in (BASE_FLAGS_TO_PASS, EXTRA_TARGET_FLAGS): Really add
11369 this change to sync Makefile.in with its ChangeLog entries.
11371 Thu Feb 12 15:03:08 1998 H.J. Lu <hjl@gnu.org>
11373 * ltmain.sh (mkdir): Check that the directory doesn't exist
11374 before we exit with error, so that we don't get races during
11377 Sat Feb 7 15:19:18 1998 Ian Lance Taylor <ian@cygnus.com>
11379 * ltconfig, ltmain.sh: Update from libtool 1.0i.
11381 Fri Feb 6 01:33:52 1998 Manfred Hollstein <manfred@s-direktnet.de>
11383 * Makefile.in (BASE_FLAGS_TO_PASS): Don't pass PICFLAG and
11384 PICFLAG_FOR_TARGET.
11385 (EXTRA_TARGET_FLAGS): Don't pass PICFLAG_FOR_TARGET.
11387 * configure: Emit a definition for the new macro enable_shared
11388 into each Makefile.
11390 Thu Feb 5 17:01:12 1998 Jason Molenda (crash@bugshack.cygnus.com)
11392 * configure.in (host_tools, native_only): Add libtool.
11394 Wed Feb 4 16:53:58 1998 Geoffrey Noer <noer@cygnus.com>
11396 * configure.in: add target-gperf to noconfigdirs for Cygwin32.
11397 Fix typo in ming config comment.
11399 Wed Feb 4 18:56:13 1998 Ian Lance Taylor <ian@cygnus.com>
11401 * ltconfig, ltmain.sh: Update from libtool 1.0h.
11403 Mon Feb 2 19:38:19 1998 Ian Lance Taylor <ian@cygnus.com>
11405 * config.sub: Add tic30 cases, and map c30 to tic30.
11407 Sun Feb 1 02:40:41 1998 Richard Henderson <rth@cygnus.com>
11409 * Makefile.in (TARGET_CONFIGDIRS): Add libf2c.
11410 (ALL_TARGET_MODULES, CONFIGURE_TARGET_MODULES): Similarly
11411 (CHECK_TARGET_MODULES, INSTALL_TARGET_MODULES): Similarly
11412 (CLEAN_TARGET_MODULES): Similarly
11413 (all-target-libf2c): Add dependences.
11414 * configure.in (target_libs): Add libf2c.
11416 Fri Jan 30 17:18:32 1998 Geoffrey Noer <noer@cygnus.com>
11418 * configure.in: Remove expect from noconfigdirs when target
11419 is cygwin32. OK to build expect and dejagnu with Canadian
11422 Wed Jan 28 12:58:49 1998 Ian Lance Taylor <ian@cygnus.com>
11424 * configure.in: Do build expect, dejagnu, and cvssrc for a cygwin32
11427 * config.guess: Use ${UNAME_MACHINE} rather than i386 for cygwin32
11430 Wed Jan 28 10:26:37 1998 Manfred Hollstein <manfred@s-direktnet.de>
11432 * Makefile.in (BASE_FLAGS_TO_PASS): Remove passing $(local_prefix)
11433 here as it is not defined in the toplevel Makefile.
11435 Tue Jan 27 23:25:06 1998 Manfred Hollstein <manfred@s-direktnet.de>
11437 * configure (package_makefile_rules_frag): New variable, which names
11438 a file with generic rules, ...
11439 Change comment to mention we now have FIVE parts.
11440 * configure: Undo last change.
11442 Tue Jan 27 23:15:55 1998 Lassi A. Tuura <lat@iki.fi>
11444 * config.guess: More accurate determination of HP processor types.
11445 * config.sub: More accurate determination of HP processor types.
11447 Sat Jan 24 01:59:45 1998 Manfred Hollstein <manfred@s-direktnet.de>
11449 * configure (package_makefile_frag): Move inserting the
11450 ${package_makefile_frag} to where it should be according
11453 Fri Jan 23 00:29:28 1998 Philip Blundell <pb@nexus.co.uk>
11455 * config.guess: Add support for Linux/ARM.
11457 Thu Jan 22 15:14:01 1998 Fred Fish <fnf@cygnus.com>
11459 * .cvsignore: Remove *-info and *-install since they match
11460 release-info and mpw-install, which we don't want to just ignore.
11462 Thu Jan 22 01:38:33 1998 Richard Henderson <rth@cygnus.com>
11464 * configure.in: Revert 3 Jan change for alpha-linux-gnulibc1.
11466 Sat Jan 17 21:28:08 1998 Pieter Nagel <pnagel@epiuse.co.za>
11468 * Makefile.in (FLAGS_TO_PASS): Pass down gcc_include_dir and
11469 local_prefix to sub-make invocations.
11471 Sat Jan 17 21:04:59 1998 H.J. Lu (hjl@gnu.org)
11473 * configure.in: Check makefile fragments in the source
11476 Fri Jan 16 00:41:37 1998 Alexandre Oliva <oliva@dcc.unicamp.br>
11478 * configure.in: Check whether host and target makefile
11479 fragments exist before adding them to *_makefile_frag.
11481 Wed Jan 14 23:39:10 1998 Bob Manson <manson@charmed.cygnus.com>
11483 * configure.in (target_configdirs): Add cygmon for sparc64-elf.
11485 Wed Jan 14 12:48:07 1998 Keith Seitz <keiths@pizza.cygnus.com>
11487 * configure.in: Make sure we only replace RPATH_ENVVAR on
11488 lines which begin with RPATH_ENVVAR, i.e. add "^" to the
11491 * Makefile.in (BASE_FLAGS_TO_PASS): Pass RRPATH_ENVVAR down
11494 1998-01-13 Lee Iverson (leei@ai.sri.com)
11496 * config-ml.in (multi-do): LDFLAGS must include multilib
11499 Tue Jan 13 01:13:24 1998 Robert Lipe (robertl@dgii.com)
11501 * config.guess: Recognize i[3456]-i586-UnixWare7-sysv5.
11503 Sun Jan 4 01:06:55 1998 Mumit Khan <khan@xraylith.wisc.edu>
11505 * config.sub: Add mingw32 support.
11506 * configure.in: Likewise.
11508 Sat Jan 3 12:11:05 1998 Franz Sirl <franz.sirl-kernel@lauterbach.com>
11510 * configure.in: Finalize support for {alpha|powerpc}*-*-linux-gnulibc1
11512 Sun Dec 28 11:28:58 1997 Jeffrey A Law (law@cygnus.com)
11514 * Makefile.in (INSTALL_TARGET): Do install-gcc first.
11515 * configure (gxx_include_dir): Provide a definition for subdirs
11516 which do not use autoconf.
11518 Wed Dec 24 22:46:55 1997 Jeffrey A Law (law@cygnus.com)
11520 * config.guess: Sync with egcs. Picks up new alpha support,
11521 BeOS & some additional linux support.
11523 Tue Dec 23 12:44:24 1997 Jeffrey A Law (law@cygnus.com)
11525 * config.guess: HP 9000/803 is a PA1.1 machine.
11527 Mon Dec 22 02:39:24 1997 Richard Henderson <rth@cygnus.com>
11529 * configure.in: It's alpha*-...
11531 Sun Dec 21 16:53:12 1997 H.J. Lu (hjl@gnu.ai.mit.edu)
11533 * configure.in (host_makefile_frag, target_makefile_frag):
11534 Handle multiple config files.
11535 (alpha-*-linux*): Treat alpha-*-linux* as alpha-*-linux* and
11538 Thu Dec 18 13:13:03 1997 Doug Evans <devans@canuck.cygnus.com>
11542 Wed Dec 17 09:53:02 1997 Michael Meissner <meissner@cygnus.com>
11544 * configure.in (d30v-*-*): Allow configuring of libide, vmake, etc.
11546 Tue Dec 16 17:36:05 1997 Ian Lance Taylor <ian@cygnus.com>
11548 * Makefile.in: Add libgui directory.
11549 (GDB_TK): Add all-libgui.
11550 * configure.in: Add libgui directory.
11551 * configure: Add all-libgui to GDB_TK.
11553 Mon Dec 15 16:12:28 1997 Nick Clifton <nickc@cygnus.com>
11555 * config-ml.in (multidirs): Add m32r to multilib list.
11557 Fri Dec 12 10:43:31 1997 Brendan Kehoe <brendan@canuck.cygnus.com>
11559 * Makefile.in (all-target-gperf): Change dependency to
11560 all-target-libstdc++.
11562 Thu Dec 11 23:30:51 1997 Fred Fish <fnf@ninemoons.com>
11564 * config.guess: Add BeOS support.
11566 Wed Dec 10 15:10:38 1997 Ian Lance Taylor <ian@cygnus.com>
11568 Source directory cvs renamed to cvssrc:
11569 * configure.in (host_tools): Change cvs to cvssrc.
11570 (native_only): Likewise.
11571 (noconfigdirs) [various cases]: Likewise.
11572 * Makefile.in (ALL_MODULES): Change all-cvs to all-cvssrc.
11573 (CROSS_CHECK_MODULES): Change check-cvs to check-cvssrc.
11574 (INSTALL_MODULES): Change install-cvs to install-cvssrc.
11575 (CLEAN_MODULES): Change clean-cvs to clean-cvssrc.
11576 (all-cvssrc): Rename target from all-cvs.
11578 Wed Dec 3 07:55:59 1997 Jeffrey A Law (law@cygnus.com)
11580 * configure (gxx_include_dir): Fix thinko.
11582 Tue Dec 2 10:55:34 1997 Jeffrey A Law (law@cygnus.com)
11584 * Makefile.in (INSTALL_TARGET_CROSS): Define.
11585 (install-cross, install-gcc-cross): New targets.
11587 Tue Dec 2 10:08:31 1997 Nick Clifton <nickc@cygnus.com>
11589 * configure.in (noconfigdirs): Add support for Thumb target.
11591 * config.sub (maybe_os): Add support for Thumb target.
11593 Sun Nov 30 16:12:27 1997 Bob Manson <manson@charmed.cygnus.com>
11595 * Makefile.in: Add rules for cygmon.
11597 * configure.in: Build cygmon for sparc-elf and sparclite-aout.
11599 Thu Nov 27 01:31:30 1997 Jeffrey A Law (law@cygnus.com)
11601 * Makefile.in (INSTALL_TARGET): Do install-gcc first.
11602 * configure (gxx_include_dir): Provide a definition for subdirs
11603 which do not use autoconf.
11605 Wed Nov 26 11:53:33 1997 Keith Seitz <keiths@onions.cygnus.com>
11607 * Makefile.in, configure, configure.in, ChangeLog: merge with foundry's
11610 Wed Nov 26 16:08:50 1997 Jeffrey A Law (law@cygnus.com)
11613 * config.guess (powerpc*-*-linux): Handle glibc2 beta release
11614 found on RedHat Linux systems.
11616 Fri Nov 21 09:51:01 1997 Jeffrey A Law (law@cygnus.com)
11618 * config.guess (alpha stuff): Merge with FSF to avoid incorrect
11621 Thu Nov 13 11:38:37 1997 Jeffrey A Law (law@cygnus.com)
11623 * configure.in (i[3456]86-ncr-sysv4.3*): Tweak.
11625 Mon Nov 10 15:23:21 1997 H.J. Lu <hjl@gnu.ai.mit.edu>
11627 * ltmain.sh: If mkdir fails, check whether the directory was created
11628 anyhow by some other process.
11630 Mon Nov 10 14:38:03 1997 Michael Meissner <meissner@cygnus.com>
11632 * configure.in (d30v-*-*): Configure all directories.
11634 Sun Nov 9 17:36:20 1997 Michael Meissner <meissner@cygnus.com>
11636 * configure.in (d30v-*-*): Configure newlib, libiberty directories
11639 Sat Nov 8 14:42:59 1997 Michael Meissner <meissner@cygnus.com>
11641 * configure.in (d30v-*-*): Configure target-libgloss on the D30V.
11643 Fri Nov 7 10:34:09 1997 Rob Savoye <rob@darkstar.cygnus.com>
11645 * include/libiberty.h: Add extern "C" { so it can be used with C++
11647 * include/remote-sim.h: Add extern "C" { so it can be used with C++
11650 Thu Oct 30 11:09:29 1997 Michael Meissner <meissner@cygnus.com>
11652 * configure.in (d30v-*-*): Configure GCC now.
11654 Mon Oct 27 13:17:24 1997 Stan Shebs <shebs@andros.cygnus.com>
11656 * configure.in: Remove a "second pass" of tweaking noconfigdirs,
11657 is no longer needed.
11659 Mon Oct 27 12:03:53 1997 Jason Merrill <jason@yorick.cygnus.com>
11661 * Makefile.in: check-target-libio depends on all-target-libstdc++.
11663 Sun Oct 26 11:48:27 1997 Manfred Hollstein (manfred@s-direktnet.de)
11665 * Makefile.in (bootstrap-lean): Combined with `normal' bootstrap
11666 targets using "$@" to provide support for similar but not identical
11667 targets without having to duplicate code.
11669 Mon Oct 20 15:28:49 1997 Klaus K"ampf <kkaempf@progis.de>
11671 * makefile.vms: Fix to work with DEC C.
11673 Tue Oct 7 23:58:57 1997 Gavin Koch <gavin@cygnus.com>
11675 * config.sub: Add mips-tx39-elf to marketing names.
11677 Tue Oct 7 14:24:41 1997 Ian Lance Taylor <ian@cygnus.com>
11679 * ltmain.sh: Handle symlinks in generated script.
11681 Wed Oct 1 13:11:27 1997 Ian Lance Taylor <ian@cygnus.com>
11683 * configure: Handle autoconf style directory options: --bindir,
11684 --datadir, --includedir, --infodir, --libdir, --libexecdir,
11685 --mandir, --oldincludedir, --sbindir, --sharedstatedir,
11687 * Makefile.in (sbindir, libexecdir, sysconfdir): New variables.
11688 (sharedstatedir, localstatedir, oldincludedir): New variables.
11689 (BASE_FLAGS_TO_PASS): Pass down bindir, datadir, includedir,
11690 infodir, libdir, libexecdir, localstatedir, mandir, oldincludedir,
11691 sbindir, sharedstatedir, and sysconfdir.
11693 Mon Sep 29 00:38:08 1997 Aaron Jackson <jackson@negril.msrce.howard.edu>
11695 * Makefile.in (bootstrap-lean): New target.
11697 Wed Sep 24 18:06:27 1997 Stu Grossman <grossman@babylon-5.cygnus.com>
11699 * configure.in (d30v): Remove tcl, tk, expect, gdb, itcl, tix, db,
11700 sn, and gnuserv from noconfigdirs.
11702 Wed Sep 24 15:18:32 1997 Ian Lance Taylor <ian@cygnus.com>
11704 * ltmain.sh: Tweak shell pattern to avoid bug in NetBSD /bin/sh.
11706 Thu Sep 18 23:58:27 1997 Jeffrey A Law (law@cygnus.com)
11708 * Makefile.in (cross): New target.
11710 Thu Sep 18 21:43:23 1997 Alexandre Oliva <oliva@dcc.unicamp.br>
11711 Jeff Law <law@cygnus.com>
11713 * Makefile.in (bootstrap2, bootstrap3): New targets.
11714 (all-bootstrap): Remove outdated and confusing target.
11715 (bootstrap, bootstrap2, bootstrap3): Don't pass BOOT_CFLAGS down.
11717 Thu Sep 18 15:37:42 1997 Andrew Cagney <cagney@b1.cygnus.com>
11719 * configure (tooldir): enable_gdbtk=YES for cygwin32, NO for
11720 windows. Consistent with gdb/configure.
11722 1997-09-15 02:37 Ulrich Drepper <drepper@cygnus.com>
11724 * configure.in: Name Linux target fragment.
11726 * configure: Rewrite so that project Makefile fragment is inserted
11727 first and appears last in the resulting Makefile.
11729 Tue Sep 16 09:55:07 1997 Andrew Cagney <cagney@b1.cygnus.com>
11731 * Makefile.in (install-itcl): Install tcl first.
11733 Fri Sep 12 16:19:20 1997 Geoffrey Noer <noer@cygnus.com>
11735 * configure.in: remove bison from noconfigdirs for Cygwin32 host
11737 Thu Sep 11 16:40:46 1997 H.J. Lu (hjl@gnu.ai.mit.edu)
11739 * Makefile.in (local-distclean): Also remove mh-frag mt-frag.
11741 * configure.in (skipdirs): Add target-librx for Linux.
11742 (alpha-*-linux*): Use config/mh-elfalphapic and config/mt-elfalphapic.
11744 Wed Sep 10 21:29:54 1997 Jeffrey A Law (law@cygnus.com)
11746 * Makefile.in (bootstrap): New target.
11748 Wed Sep 10 15:19:22 1997 Jeffrey A Law (law@cygnus.com)
11750 * config.sub: Accept 'amigados' for backward compatability.
11752 Mon Sep 8 20:46:20 1997 Ian Lance Taylor <ian@cygnus.com>
11754 * config.guess: Merge with FSF.
11756 Sun Sep 7 23:18:32 1997 Fred Fish <fnf@ninemoons.com>
11758 * config.sub: Change 'amigados' to 'amigaos' to match current usage.
11760 Sun Sep 7 15:55:28 1997 Gavin Koch <gavin@cygnus.com>
11762 * config.sub: Add "marketing-names" patch.
11764 Fri Sep 5 16:11:28 1997 Joel Sherrill (joel@OARcorp.com)
11766 * configure.in (*-*-rtems*): Do not build libgloss for rtems.
11768 Fri Sep 5 12:27:17 1997 Jeffrey A Law (law@cygnus.com)
11770 * config.sub: Handle v850-elf.
11772 Wed Sep 3 22:01:58 1997 Fred Fish <fnf@ninemoons.com>
11774 * .cvsignore (*-install): Remove.
11776 Wed Sep 3 12:15:24 1997 Chris Provenzano <proven@cygnus.com>
11778 * ltconfig: Set CONFIG_SHELL in libtool.
11779 * ltmain.sh: Use CONFIG_SHELL instead of /bin/sh
11781 Mon Sep 1 16:45:44 1997 Jim Wilson <wilson@cygnus.com>
11783 * configure.in (target_subdir): Set to libraries if enable_multilib.
11785 Wed Aug 27 16:15:11 1997 Jim Wilson <wilson@cygnus.com>
11787 * config.guess: Update from gcc directory.
11789 Tue Aug 26 16:46:46 1997 Andrew Cagney <cagney@b1.cygnus.com>
11791 * Makefile.in (all-sim): Depends on all-readline.
11793 Wed Aug 20 19:57:37 1997 Jason Merrill <jason@yorick.cygnus.com>
11795 * Makefile.in (BISON, YACC): Use $$s.
11796 (all-bison): Depend on all-texinfo.
11798 Tue Aug 19 01:41:32 1997 Jason Merrill <jason@yorick.cygnus.com>
11800 * Makefile.in (BISON): Add -L flag.
11803 Mon Aug 18 11:30:50 1997 Nick Clifton <nickc@cygnus.com>
11805 * configure.in (noconfigdirs): Add support for v850e target.
11807 * config.sub (maybe_os): Add support for v850e target.
11809 Mon Aug 18 11:30:50 1997 Nick Clifton <nickc@cygnus.com>
11811 * configure.in (noconfigdirs): Add support for v850ea target.
11813 * config.sub (maybe_os): Add support for v850ea target.
11815 Mon Aug 18 09:24:06 1997 Gavin Koch <gavin@cygnus.com>
11817 * config.sub: Add mipstx39. Delete r3900.
11819 Mon Aug 18 17:20:10 1997 Jason Molenda (crash@godzilla.cygnus.co.jp)
11821 * Makefile.in (all-autoconf): Depends on all-texinfo.
11823 Fri Aug 15 23:09:26 1997 Michael Meissner <meissner@cygnus.com>
11825 * config-ml.in ({powerpc,rs6000}*-*-*): Update to current AIX and
11828 Thu Aug 14 14:42:17 1997 Ian Lance Taylor <ian@cygnus.com>
11830 * configure: Get CFLAGS and CXXFLAGS from Makefile, if possible.
11832 * configure: When handling a Canadian Cross, handle YACC as well as
11833 BISON. Just set BISON to bison. When setting YACC, prefer bison.
11834 * Makefile.in (all-bison): Depend upon all-texinfo.
11836 Tue Aug 12 20:09:48 1997 Jason Merrill <jason@yorick.cygnus.com>
11838 * Makefile.in (BISON): bison, not byacc or bison -y.
11839 (YACC): bison -y or byacc or yacc.
11840 (various): Add *-bison as appropriate.
11841 (taz): No need to mess with BISON anymore.
11843 Tue Aug 12 22:33:08 1997 Ian Lance Taylor <ian@cygnus.com>
11845 * configure: If OSTYPE matches *win32*, try to find a good value for
11848 Sun Aug 10 14:41:11 1997 Ian Lance Taylor <ian@cygnus.com>
11850 * Makefile.in (taz): Get the version number from AM_INIT_AUTOMAKE in
11851 configure.in if it is present.
11853 Sat Aug 9 00:58:01 1997 Ian Lance Taylor <ian@cygnus.com>
11855 * Makefile.in (LD_FOR_TARGET): Change ld.new to ld-new.
11857 Fri Aug 8 16:30:13 1997 Doug Evans <dje@canuck.cygnus.com>
11859 * config.sub: Recognize `arc' cpu.
11860 * configure.in: Likewise.
11861 * config-ml.in: Likewise.
11863 Thu Aug 7 11:02:34 1997 Ian Lance Taylor <ian@cygnus.com>
11865 * Makefile.in ($(INSTALL_X11_MODULES)): Depend upon installdirs.
11867 Wed Aug 6 16:27:29 1997 Chris Provenzano <proven@cygnus.com>
11869 * configure: Changed sed delimiter from ':' to '|' when
11870 attempting to substitute ${config_shell} for SHELL. On
11871 NT ${config_shell} may contain a ':' in it.
11873 Wed Aug 6 12:29:05 1997 Jason Merrill <jason@yorick.cygnus.com>
11875 * Makefile.in (EXTRA_GCC_FLAGS): Fix for non-bash shells.
11877 Wed Aug 6 00:42:35 1997 Ian Lance Taylor <ian@cygnus.com>
11879 * Makefile.in (AS_FOR_TARGET): Change as.new to as-new.
11881 Tue Aug 5 14:08:51 1997 Ian Lance Taylor <ian@cygnus.com>
11883 * Makefile.in (NM_FOR_TARGET): Change nm.new to nm-new.
11885 * ylwrap: If the program is a relative path, force it to be
11888 Tue Aug 5 12:12:44 1997 Andrew Cagney <cagney@b1.cygnus.com>
11890 * configure (tooldir): Set BISON to `bison -y' and not just bison.
11892 Mon Aug 4 22:59:02 1997 Andrew Cagney <cagney@b1.cygnus.com>
11894 * Makefile.in (CC_FOR_TARGET): When winsup/Makefile present,
11895 correctly specify the target build directory $(TARGET_SUBDIR)/winsup
11898 Mon Aug 4 12:40:24 1997 Jason Merrill <jason@yorick.cygnus.com>
11900 * Makefile.in (EXTRA_GCC_FLAGS): Fix handling of macros with values
11901 separated by spaces.
11903 Thu Jul 31 19:49:49 1997 Ian Lance Taylor <ian@cygnus.com>
11905 * ylwrap: New file.
11906 * Makefile.in (DEVO_SUPPORT): Add ylwrap.
11908 * ltmain.sh: Handle /bin/sh at start of install program.
11910 * Makefile.in (DEVO_SUPPORT): Add ltconfig, ltmain.sh, and missing.
11912 * ltconfig, ltmain.sh: New files, from libtool 1.0.
11913 * missing: New file, from automake 1.2.
11915 Thu Jul 24 12:57:56 1997 Ian Lance Taylor <ian@cygnus.com>
11917 * Makefile.in: Treat tix like tk, putting it in X11_MODULES. Add
11918 check-tk to CHECK_X11_MODULES.
11920 Wed Jul 23 17:03:29 1997 Ian Lance Taylor <ian@cygnus.com>
11922 * config.sub: Merge with FSF.
11924 Tue Jul 22 19:08:29 1997 Ian Lance Taylor <ian@cygnus.com>
11926 * config.guess: Merge with FSF.
11928 Tue Jul 22 14:50:42 1997 Robert Hoehne <robert.hoehne@Mathematik.TU-Chemnitz.DE>
11930 * configure: Treat msdosdjgpp like go32.
11931 * configure.in: Likewise. Don't remove gprof for go32.
11933 * configure: Change Makefile.tem2 to Makefile.tm2.
11935 Mon Jul 21 10:31:26 1997 Stephen Peters <speters@cygnus.com>
11937 * configure.in (noconfigdirs): For alpha-dec-osf*, don't ignore grep.
11939 Tue Jul 15 14:33:03 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
11941 * install-sh (chmodcmd): Set to null if the DST directory already
11942 exists. Same as Nov 11th change.
11944 Mon Jul 14 11:01:15 1997 Martin M. Hunt <hunt@cygnus.com>
11946 * configure (GDB_TK): Needs itcl and tix.
11948 Mon Jul 14 00:32:10 1997 Jason Merrill <jason@yorick.cygnus.com>
11950 * config.guess: Update from FSF.
11952 Fri Jul 11 11:57:11 1997 Martin M. Hunt <hunt@cygnus.com>
11954 * Makefile.in (GDB_TK): Depend on itcl and tix.
11956 Fri Jul 4 13:25:31 1997 Ian Lance Taylor <ian@cygnus.com>
11958 * Makefile.in (INSTALL_PROGRAM_ARGS): New variable.
11959 (INSTALL_PROGRAM): Use $(INSTALL_PROGRAM_ARGS).
11960 (INSTALL_SCRIPT): New variable.
11961 (BASE_FLAGS_TO_PASS): Pass down INSTALL_SCRIPT.
11962 * configure.in: If host is *-*-cygwin32*, set INSTALL_PROGRAM_ARGS
11964 * install-sh: Add support for -x option.
11966 Mon Jun 30 15:51:30 1997 Ian Lance Taylor <ian@cygnus.com>
11968 * configure.in, Makefile.in: Treat tix like itcl.
11970 Thu Jun 26 13:59:19 1997 Ian Lance Taylor <ian@cygnus.com>
11972 * Makefile.in (WINDRES): New variable.
11973 (WINDRES_FOR_TARGET): New variable.
11974 (BASE_FLAGS_TO_PASS): Add WINDRES_FOR_TARGET.
11975 (EXTRA_HOST_FLAGS): Add WINDRES.
11976 (EXTRA_TARGET_FLAGS): Add WINDRES.
11977 (EXTRA_GCC_FLAGS): Add WINDRES.
11978 ($(DO_X)): Pass down WINDRES.
11979 ($(CONFIGURE_TARGET_MODULES)): Set WINDRES when configuring.
11980 * configure: Treat WINDRES like DLLTOOL, and WINDRES_FOR_TARGET like
11981 DLLTOOL_FOR_TARGET.
11983 Wed Jun 25 15:01:26 1997 Felix Lee <flee@cygnus.com>
11985 * configure.in: configure sim before gdb for win32-x-ppc
11987 Wed Jun 25 12:18:54 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
11989 Move gperf into the toplevel, from libg++.
11990 * configure.in (target_tools): Add target-gperf.
11991 (native_only): Add target-gperf.
11992 * Makefile.in (all-target-gperf): New target, depend on
11994 (configure-target-gperf): Empty rule.
11995 (ALL_TARGET_MODULES): Add all-target-gperf.
11996 (CONFIGURE_TARGET_MODULES): Add configure-target-gperf.
11997 (CHECK_TARGET_MODULES): Add check-target-gperf.
11998 (INSTALL_TARGET_MODULES): Add install-target-gperf.
11999 (CLEAN_TARGET_MODULES): Add clean-target-gperf.
12001 Mon Jun 23 10:51:53 1997 Jeffrey A Law (law@cygnus.com)
12003 * config.sub (mn10200): Recognize new basic machine.
12005 Thu Jun 19 14:16:42 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
12007 * configure.in: Don't set ENABLE_MULTILIB, so we'll be passing
12008 --enable-multilib down to subdirs; setting TARGET_SUBDIR was enough.
12010 Tue Jun 17 15:31:20 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
12012 * configure.in: If we're building mips-sgi-irix6* native, turn on
12013 ENABLE_MULTILIB and set TARGET_SUBDIR.
12015 Tue Jun 17 12:20:59 1997 Tom Tromey <tromey@cygnus.com>
12017 * Makefile.in (all-sn): Depend on all-grep.
12019 Mon Jun 16 11:11:10 1997 Ian Lance Taylor <ian@cygnus.com>
12021 * configure.in: Use mh-ppcpic and mt-ppcpic for powerpc*-* targets.
12023 * configure: Set CFLAGS and CXXFLAGS, and substitute them into
12024 Makefile. From Jeff Makey <jeff@cts.com>.
12025 * Makefile.in: Add comment for CFLAGS and CXXFLAGS.
12027 * Makefile.in (DISTBISONFILES): Remove.
12028 (taz): Don't futz with DISTBISONFILES. Change BISON to use
12031 * configure.in: Build itl, db, sn, etc., when building for native
12034 * Makefile.in (LD): New variable.
12035 (EXTRA_HOST_FLAGS): Pass down LD.
12036 ($(DO_X)): Likewise.
12038 Mon Jun 16 11:10:35 1997 Philip Blundell <Philip.Blundell@pobox.com>
12040 * Makefile.in (INSTALL): Use $(SHELL) when executing install-sh.
12042 Fri Jun 13 10:22:56 1997 Bob Manson <manson@charmed.cygnus.com>
12044 * configure.in (targargs): Strip out any supplied --build argument
12045 before adding our own. Always add --build.
12047 Thu Jun 12 21:12:28 1997 Bob Manson <manson@charmed.cygnus.com>
12049 * configure.in (targargs): Pass --build if we're doing
12052 Fri Jun 6 21:38:40 1997 Rob Savoye <rob@chinadoll.cygnus.com>
12054 * configure: Use '|' instead of ":" as the separator in
12055 sed. Otherwise sed chokes on NT path names with drive
12056 designators. Also look for "?:*" as the leading characters in an
12059 Mon Jun 2 13:05:20 1997 Gavin Koch <gavin@cygnus.com>
12061 * config.sub: Support for r3900.
12063 Wed May 21 17:33:31 1997 Ian Lance Taylor <ian@cygnus.com>
12065 * configure.in: Use install-sh, not install.sh.
12067 Wed May 14 16:06:51 1997 Ian Lance Taylor <ian@cygnus.com>
12069 * Makefile.in (taz): Improve check for BISON so it doesn't try to
12072 Fri May 9 17:22:05 1997 Ian Lance Taylor <ian@cygnus.com>
12074 * Makefile.in (INSTALL_MODULES): Put install-opcodes before
12077 Thu May 8 17:29:50 1997 Ian Lance Taylor <ian@cygnus.com>
12079 * Makefile.in: Add automake targets.
12080 * configure.in (host_tools): Add automake.
12082 Tue May 6 15:49:52 1997 Ian Lance Taylor <ian@cygnus.com>
12084 * configure: Default CXX to c++, not gcc.
12085 * Makefile.in (CXX): Set to c++, not gcc.
12086 (CXX_FOR_TARGET): When cross, transform c++, not gcc.
12088 Thu May 1 10:11:43 1997 Geoffrey Noer <noer@cygnus.com>
12090 * install-sh: try appending a .exe if source file doesn't
12093 Wed Apr 30 12:05:36 1997 Jason Merrill <jason@yorick.cygnus.com>
12095 * configure.in: Turn on multilib by default.
12096 (cross_only): Remove target-libiberty.
12098 * Makefile.in (all-gcc): Don't depend on libiberty.
12100 Mon Apr 28 18:39:45 1997 Michael Snyder <msnyder@cleaver.cygnus.com>
12102 * config.guess: improve algorithm for recognizing Gnu Hurd x86.
12104 Thu Apr 24 19:30:07 1997 Ian Lance Taylor <ian@cygnus.com>
12106 * Makefile.in (DEVO_SUPPORT): Add mpw-install.
12107 (DISTBISONFILES): Add ld/Makefile.in
12109 Tue Apr 22 17:17:28 1997 Geoffrey Noer <noer@pizza.cygnus.com>
12111 * configure.in: if target is cygwin32 but host isn't cygwin32,
12112 don't configure gdb tcl tk expect, not just gdb.
12114 Mon Apr 21 13:33:39 1997 Tom Tromey <tromey@cygnus.com>
12116 * configure.in: Added gnuserv everywhere sn appears.
12118 * Makefile.in (ALL_MODULES): Added all-gnuserv.
12119 (CROSS_CHECK_MODULES): Added check-gnuserv.
12120 (INSTALL_MODULES): Added install-gnuserv.
12121 (CLEAN_MODULES): Added clean-gnuserv.
12122 (all-gnuserv): New target.
12124 Thu Apr 17 13:57:06 1997 Per Fogelstrom <pefo@openbsd.org>
12126 * config.guess: Fixes for MIPS OpenBSD systems.
12128 Tue Apr 15 12:21:07 1997 Ian Lance Taylor <ian@cygnus.com>
12130 * Makefile.in (INSTALL_XFORM): Remove.
12131 (BASE_FLAGS_TO_PASS): Remove INSTALL_XFORM.
12133 * mkinstalldirs: New file, copied from automake.
12134 * Makefile.in (installdirs): Rename from install-dirs. Use
12135 mkinstalldirs. Change all users.
12136 (DEVO_SUPPORT): Add mkinstalldirs.
12138 Mon Apr 14 11:21:38 1997 Ian Lance Taylor <ian@cygnus.com>
12140 * install-sh: Rename from install.sh.
12141 * Makefile.in (INSTALL): Change install.sh to install-sh.
12142 (DEVO_SUPPORT): Likewise.
12144 * configure: Use ${config_shell} with ${moveifchange}. From Thomas
12145 Graichen <graichen@rzpd.de>.
12147 Fri Apr 11 16:37:10 1997 Niklas Hallqvist <niklas@appli.se>
12149 * config.guess: Recognize OpenBSD systems correctly.
12151 Fri Apr 11 17:07:04 1997 Jason Molenda (crash@godzilla.cygnus.co.jp)
12153 * README, Makefile.in (ETC_SUPPORT): Remove references to
12154 cfg-paper*, configure.{texi,man,info*}._
12156 Sun Apr 6 18:47:57 1997 Andrew Cagney <cagney@kremvax.cygnus.com>
12158 * Makefile.in (all.normal): Ensure that gcc is built after all
12159 the x11 - ie gdb - targets.
12161 Tue Apr 1 16:28:50 1997 Klaus Kaempf <kkaempf@progis.de>
12163 * makefile.vms: Don't run conf-a-gas.
12165 Mon Mar 31 16:26:55 1997 Joel Sherrill <joel@oarcorp.com>
12167 * configure.in (hppa1.1-*-rtems*): New target, like hppa-*-*elf*.
12169 Sun Mar 30 12:38:27 1997 Fred Fish <fnf@cygnus.com>
12171 * configure.in: Remove noconfigdirs case since gdb also
12172 configures and builds for tic80-coff.
12174 Fri Mar 28 18:28:52 1997 Ian Lance Taylor <ian@cygnus.com>
12176 * configure: Set cache_file to config.cache.
12177 * Makefile.in (local-distclean): Remove config.cache.
12179 Wed Mar 26 18:49:39 1997 Ian Lance Taylor <ian@cygnus.com>
12181 * COPYING: Update FSF address.
12183 Wed Mar 26 10:38:25 1997 Michael Meissner <meissner@cygnus.com>
12185 * configure.in (tic80-*-*): Remove G++ libraries and libgloss from
12188 Mon Mar 24 15:02:39 1997 Ian Lance Taylor <ian@cygnus.com>
12190 * Makefile.in (install-dirs): Don't crash if prefix, and hence
12191 MAKEDIRS, is empty.
12193 Mon Mar 24 12:40:55 1997 Doug Evans <dje@canuck.cygnus.com>
12195 * config.sub: Tweak mn10300 entry.
12197 Fri Mar 21 15:35:27 1997 Michael Meissner <meissner@cygnus.com>
12199 * configure.in (host_tools): Put sim before gdb, so gdb's
12200 configure.tgt can determine if the simulator was configured.
12202 Sun Mar 16 16:07:08 1997 Fred Fish <fnf@cygnus.com>
12204 * config.sub: Move BeOS $os case to be with other Cygnus
12207 Sun Mar 16 01:34:55 1997 Martin Hunt <hunt@cygnus.com>
12209 * config.sub: Remove misplaced comment that broke Linux.
12211 Sat Mar 15 22:50:15 1997 Fred Fish <fnf@cygnus.com>
12213 * config.sub: Add BeOS support.
12215 Mon Mar 10 13:30:11 1997 Tom Tromey <tromey@cygnus.com>
12217 * Makefile.in (CHECK_X11_MODULES): Don't run check-tk.
12219 Wed Mar 5 12:09:29 1997 Martin <hunt@cygnus.com>
12221 * configure.in (noconfigdirs): Remove tcl and tk from
12222 noconfigdirs for cygwin32 builds.
12224 Fri Feb 28 18:20:15 1997 Fred Fish <fnf@cygnus.com>
12226 * configure.in (tic80-*-*): Remove ld from noconfigdirs.
12228 Thu Feb 27 14:57:26 1997 Ken Raeburn <raeburn@cygnus.com>
12230 * Makefile.in (GAS_SUPPORT_DIRS, BINUTILS_SUPPORT_DIRS): Remove
12231 make-all.com, use makefile.vms instead.
12233 Tue Feb 25 18:46:14 1997 Stan Shebs <shebs@andros.cygnus.com>
12235 * config.sub: Accept -lnews*.
12237 Tue Feb 25 13:19:14 1997 Andrew Cagney <cagney@kremvax.tpgi.com.au>
12239 * configure.in (noconfigdirs): Disable target-newlib,
12240 target-examples and target-libiberty for d30v.
12242 Fri Feb 21 17:56:25 1997 Martin M. Hunt <hunt@pizza.cygnus.com>
12244 * configure.in (noconfigdirs): Enable ld for d30v.
12246 Fri Feb 21 20:58:51 1997 Michael Meissner <meissner@cygnus.com>
12248 * configure.in (tic80-*-*): Build compiler.
12250 Sun Feb 16 15:41:09 1997 Andrew Cagney <cagney@critters.cygnus.com>
12252 * configure.in (d30v-*): Remove sim directory from list of
12253 unsupported d30v directories
12255 Tue Feb 18 17:32:42 1997 Martin M. Hunt <hunt@pizza.cygnus.com>
12257 * config.sub, configure.in: Add d30v target cpu.
12259 Thu Feb 13 22:04:44 1997 Klaus Kaempf <kkaempf@progis.de>
12261 * makefile.vms: New file.
12262 * make-all.com: Remove.
12264 Wed Feb 12 12:54:18 1997 Jim Wilson <wilson@cygnus.com>
12266 * Makefile.in (EXTRA_GCC_FLAGS): Add LIBGCC2_DEBUG_CFLAGS.
12268 Sat Feb 8 20:36:49 1997 Michael Meissner <meissner@cygnus.com>
12270 * Makefile.in (all-itcl): The rule is all-itcl, not all-tcl.
12272 Tue Feb 4 11:39:29 1997 Tom Tromey <tromey@cygnus.com>
12274 * Makefile.in (ALL_MODULES): Added all-db.
12275 (CROSS_CHECK_MODULES): Addec check-db.
12276 (INSTALL_MODULES): Added install-db.
12277 (CLEAN_MODULES): Added clean-db.
12279 Mon Feb 3 13:29:36 1997 Ian Lance Taylor <ian@cygnus.com>
12281 * config.guess: Merge with latest FSF sources.
12283 Tue Jan 28 09:20:37 1997 Tom Tromey <tromey@cygnus.com>
12285 * Makefile.in (ALL_MODULES): Added all-itcl.
12286 (CROSS_CHECK_MODULES): Added check-itcl.
12287 (INSTALL_MODULES): Added install-itcl.
12288 (CLEAN_MODULES): Added clean-itcl.
12290 Thu Jan 23 01:44:27 1997 Geoffrey Noer <noer@cygnus.com>
12292 * configure.in: build gdb for mn10200
12294 Fri Jan 17 15:32:15 1997 Doug Evans <dje@canuck.cygnus.com>
12296 * Makefile.in (all-target-winsup): Depend on all-target-libio.
12298 Mon Jan 13 22:46:54 1997 Michael Meissner <meissner@tiktok.cygnus.com>
12300 * configure.in (tic80-*-*): Turn off most targets right now.
12302 Fri Jan 3 16:04:03 1997 Ian Lance Taylor <ian@cygnus.com>
12304 * Makefile.in (MAKEINFO): Check for the existence of the Makefile,
12305 rather than the makeinfo program.
12306 (do-info): Depend upon all-texinfo.
12308 Tue Dec 31 16:00:31 1996 Ian Lance Taylor <ian@cygnus.com>
12310 * configure.in: Remove uses of config/mh-linux.
12312 * config.sub, config.guess: Merge with latest FSF sources.
12314 Fri Dec 27 23:04:33 1996 Fred Fish <fnf@cygnus.com>
12316 * config.sub (case $basic_machine): Add tic80 entries.
12318 Fri Dec 27 12:07:59 1996 Ian Lance Taylor <ian@cygnus.com>
12320 * config.sub, config.guess: Merge with latest FSF sources.
12322 Wed Dec 18 22:46:39 1996 Stan Shebs <shebs@andros.cygnus.com>
12324 * mpw-build.in: Build ld before gcc, use NewFolderRecursive.
12325 * mpw-config.in: Test for NewFolderRecursive.
12326 * mpw-install: Use symbolic name for startup filename.
12327 * mpw-README: Add various additional details.
12329 Wed Dec 18 13:11:46 1996 Jim Wilson <wilson@cygnus.com>
12331 * configure.in (mips*-sgi-irix6*): Remove binutils from noconfigdirs.
12333 Wed Dec 18 10:29:31 1996 Jeffrey A Law (law@cygnus.com)
12335 * configure.in: Do build gcc and the target libraries for
12338 Wed Dec 4 16:53:05 1996 Geoffrey Noer <noer@cygnus.com>
12340 * configure.in: don't avoid building gdb for mn10300 any more
12341 * Makefile.in: double-quote GCC_FOR_TARGET line in EXTRA_GCC_FLAGS
12342 instead of single-quoting it.
12344 Tue Dec 3 23:26:50 1996 Jason Merrill <jason@yorick.cygnus.com>
12346 * configure.in: Don't use --with-stabs on IRIX 6.
12348 Tue Dec 3 09:05:25 1996 Doug Evans <dje@canuck.cygnus.com>
12350 * configure.in (m32r): Build gdb, libg++ now.
12352 Sun Dec 1 00:18:59 1996 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
12354 * configure.in (mips*-sgi-irix6*): Remove gdb and related
12355 directories from noconfigdirs.
12357 Tue Nov 26 11:45:33 1996 Kim Knuttila <krk@cygnus.com>
12359 * config.sub (basic_machine): added mips16 configuration
12361 Sat Nov 23 19:26:22 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12363 * config.sub: Handle d10v-unknown.
12365 Sat Nov 23 10:23:01 1996 Gavin Koch <gavin@cygnus.com>
12367 * config.sub: Handle v850-unknown.
12369 Thu Nov 21 16:19:44 1996 Geoffrey Noer <noer@cygnus.com>
12371 * Makefile.in: add findutils
12372 * configure.in: add findutils to list of host_tools
12374 Wed Nov 20 10:09:01 1996 Jeffrey A Law (law@cygnus.com)
12376 * config.sub: Handle mn10200 and mn10300.
12378 Tue Nov 19 16:35:14 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12380 * configure.in (d10v-*): Do not build librx.
12382 Mon Nov 18 13:28:41 1996 Jeffrey A Law (law@cygnus.com)
12384 * configure.in (mn10300): Build everything except gdb & libgloss.
12386 Wed Nov 13 14:59:46 1996 Per Bothner <bothner@deneb.cygnus.com>
12388 * config.guess: Patch for Dansk Data Elektronik servers,
12389 from Niels Skou Olsen <nso@dde.dk>.
12391 For ncr, use /bin/uname rather than uname, since GNU uname does not
12392 support -p. Suggested by Mark Mitchell <mmitchell@usa.net>.
12394 Patch for MIPS R4000 running System V,
12395 from Eric S. Raymond <esr@snark.thyrsus.com>.
12397 Fix thinko for nextstep.
12399 Patch for OSF1 in i?86, from Dan Murphy <dlm@osf.org> via Harlan Stenn.
12401 Sat Jun 24 18:58:17 1995 Morten Welinder <terra+@cs.cmu.edu>
12402 * config.guess: Guess mips-dec-mach_bsd4.3.
12404 Thu Oct 10 04:07:04 1996 Harlan Stenn <harlan@pfcs.com>
12405 * config.guess (i?86-ncr-sysv*): Emit just enough of the minor
12407 * config.guess (mips-mips-riscos*): Emit just enough of the
12410 Tue Oct 8 10:37:22 1996 Frank Vance <fvance@waii.com>
12411 * config.guess (sparc-auspex-sunos*): Added.
12412 (f300-fujitsu-*): Added.
12414 Wed Sep 25 22:00:35 1996 Jeff Woolsey <woolsey@jlw.com>
12415 * config.guess: Recognize a Tadpole as a sparc.
12417 Wed Nov 13 00:53:09 1996 David J. MacKenzie <djm@churchy.gnu.ai.mit.edu>
12419 * config.guess: Don't assume that NextStep version is either 2 or
12420 3. NextStep 4 (aka OpenStep 4) has come out now.
12422 Mon Nov 11 23:52:03 1996 David J. MacKenzie <djm@churchy.gnu.ai.mit.edu>
12424 * config.guess: Support Cray T90 that reports itself as "CRAY TS".
12425 From Rik Faith <faith@cs.unc.edu>.
12427 Fri Nov 8 11:34:58 1996 David J. MacKenzie <djm@geech.gnu.ai.mit.edu>
12429 * config.sub: Contributions from bug-gnu-utils to:
12430 Support plain "hppa" (no version given) architecture, reported by
12432 OpenBSD like NetBSD.
12433 LynxOs is not a hardware supplier.
12435 * config.guess: Contributions from bug-gnu-utils to add support for:
12436 OpenBSD like NetBSD.
12438 More Pyramid systems.
12439 i[n>4]86 Intel chips.
12440 M680[n>4]0 Motorola chips.
12441 Use unknown instead of lynx for hardware manufacturer.
12443 Mon Nov 11 10:09:08 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
12445 * install.sh (chmodcmd): Set to null if the DST directory already
12448 Mon Nov 11 10:43:41 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12450 * configure.in (powerpc*-{eabi,elf,linux,rtem,sysv,solaris}*): Do
12451 not use mt-ppc target Makefile fragment any more.
12453 Sun Nov 3 19:17:07 1996 Stu Grossman (grossman@critters.cygnus.com)
12455 * configure.in (*-*-windows): Exclude everything but those dirs
12456 needed to build windows.
12458 Tue Oct 29 16:41:31 1996 Doug Evans <dje@canuck.cygnus.com>
12460 * Makefile.in (all-target-winsup): Depend on all-target-librx.
12462 Mon Oct 28 17:32:46 1996 Stu Grossman (grossman@critters.cygnus.com)
12464 * configure.in: Exclude mmalloc from i386-windows.
12466 Thu Oct 24 09:22:46 1996 Stu Grossman (grossman@critters.cygnus.com)
12468 * Undo my previous change.
12470 Thu Oct 24 12:12:04 1996 Ian Lance Taylor <ian@cygnus.com>
12472 * Makefile.in (EXTRA_GCC_FLAGS): Pass down GCC_FOR_TARGET
12474 (MAKEOVERRIDES): Define (revert this part of October 18 change).
12476 Thu Oct 24 09:02:07 1996 Stu Grossman (grossman@critters.cygnus.com)
12478 * Makefile.in (FLAGS_TO_PASS): Add $(HOST_FLAGS) to allow the
12479 host to add it's own flags.
12481 Tue Oct 22 15:20:26 1996 Ian Lance Taylor <ian@cygnus.com>
12483 * configure: Handle GCC_FOR_TARGET like CC_FOR_TARGET.
12485 Fri Oct 18 13:37:13 1996 Ian Lance Taylor <ian@cygnus.com>
12487 * Makefile.in (CC_FOR_TARGET): Check for xgcc, not Makefile.
12488 (CXX_FOR_TARGET): Likewise.
12489 (GCC_FOR_TARGET): Define.
12490 (BASE_FLAGS_TO_PASS): Remove GCC_FOR_TARGET.
12491 (EXTRA_GCC_FLAGS): Define GCC_FOR_TARGET based on whether
12492 CC_FOR_TARGET was specified on the command line.
12493 (MAKEOVERRIDES): Don't define.
12495 Thu Oct 17 10:27:56 1996 Doug Evans <dje@canuck.cygnus.com>
12497 * configure.in (m32r): Fix spelling of libg++ libs.
12499 Thu Oct 10 10:37:17 1996 Stan Shebs <shebs@andros.cygnus.com>
12501 * config.sub (-apple*): Remove, now redundant.
12503 Thu Oct 10 12:30:54 1996 Ian Lance Taylor <ian@cygnus.com>
12505 * configure: Don't get confused by CPU-VENDOR-linux-gnu.
12507 * configure: Rework yesterday's sed script patch.
12509 * config.sub: Merge with FSF.
12511 Wed Oct 9 17:24:59 1996 Per Bothner <bothner@deneb.cygnus.com>
12513 * config.guess: Merge from FSF.
12515 1996-09-12 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
12516 * config.guess: Use pc instead of unknown, for pc clone systems.
12517 Change linux to linux-gnu.
12519 Mon Jul 15 23:51:11 1996 Karl Heuer <kwzh@gnu.ai.mit.edu>
12520 * config.guess: Avoid non-portable tr syntax.
12522 Wed Oct 9 06:06:46 1996 Jeffrey A Law (law@cygnus.com)
12524 * test-build.mk (HOLES): Add "xargs" for gdb.
12526 * configure: Avoid hpux10.20 sed bug.
12528 Tue Oct 8 08:32:48 1996 Stu Grossman (grossman@critters.cygnus.com)
12530 * configure.in: Add support for windows host
12531 (that is a build done under the Microsoft build environment).
12533 Tue Oct 8 10:39:08 1996 Ian Lance Taylor <ian@cygnus.com>
12535 * Makefile.in: Replace all uses of srcroot with s, to shrink
12536 command line lengths.
12538 Patches from Geoffrey Noer <noer@cygnus.com>:
12539 * configure.in: If configuring for newlib, pass --with-newlib to
12541 * Makefile.in (CC_FOR_TARGET): If winsup/Makefile exists, pass a
12542 -Bnewlib/ and -Lwinsup to gcc.
12543 (CXX_FOR_TARGET): Likewise.
12545 Mon Oct 7 10:59:35 1996 Ian Lance Taylor <ian@cygnus.com>
12547 * Makefile.in (ETC_SUPPORT): Add configure.
12549 Fri Oct 4 12:22:58 1996 Angela Marie Thomas (angela@cygnus.com)
12551 * configure.in: Use config/mh-dgux386 for i[345]86-dg-dgux
12552 host configuration file.
12554 Thu Oct 3 09:28:25 1996 Jeffrey A Law (law@cygnus.com)
12556 * configure.in: Break mn10x00 support into separate
12557 mn10200 and mn10300 configurations.
12558 * config.sub: Likewise.
12560 Wed Oct 2 22:27:52 1996 Jeffrey A Law (law@cygnus.com)
12562 * configure.in: Add lots of stuff to noconfigdirs for
12563 the mn10x00 targets.
12565 * config.sub, configure.in: Add mn10x00 support.
12567 Wed Oct 2 15:52:36 1996 Klaus Kaempf <kkaempf@progis.de>
12569 * make-all.com: Call conf-a-gas, not config-a-gas.
12571 Tue Oct 1 01:28:41 1996 James G. Smith <jsmith@cygnus.co.uk>
12573 * configure.in (noconfigdirs): Don't build libgloss for arm-coff
12576 Mon Sep 30 14:24:01 1996 Stan Shebs <shebs@andros.cygnus.com>
12578 * mpw-README: Add much more detail for native PowerMac.
12579 * mpw-install: New file.
12580 * mpw-configure: Add --norecursion and --help options.
12581 * mpw-config.in: Translate readme and install files when
12583 * mpw-build.in: Don't always depend on byacc and flex.
12584 (install-only-top): New action.
12586 Fri Sep 27 17:39:44 1996 Stu Grossman (grossman@critters.cygnus.com)
12588 * configure.in: You can now configure GDB for the v850.
12590 Tue Sep 24 19:05:12 1996 Stan Shebs <shebs@andros.cygnus.com>
12592 * configure.in (noconfigdirs): Don't configure any C++ dirs
12595 Tue Sep 17 12:15:31 1996 Ian Lance Taylor <ian@cygnus.com>
12597 * config.sub: Recognize mips64vr5000.
12599 Mon Sep 16 17:00:52 1996 Ian Lance Taylor <ian@cygnus.com>
12601 * configure.in: Use a single line for host_tools and native_only.
12603 Mon Sep 9 12:21:30 1996 Doug Evans <dje@canuck.cygnus.com>
12605 * config.sub, configure.in: Add entries for m32r.
12607 Thu Sep 5 13:52:47 1996 Tom Tromey <tromey@creche.cygnus.com>
12609 * Makefile.in (inet-install): Don't run install-gzip.
12611 Wed Sep 4 17:26:13 1996 Stu Grossman (grossman@critters.cygnus.com)
12613 * configure.in: Don't config lots of things for *-*-windows*.
12615 Sat Aug 31 11:45:57 1996 Stan Shebs <shebs@andros.cygnus.com>
12617 * mpw-config.in: Test for mpw-true, true, and null-command scripts.
12618 (host_libs, host_tools): Copy from configure.in.
12619 * mpw-configure: Don't complain about directories not found.
12621 Thu Aug 29 16:44:58 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12623 * configure.in (i[345]86): Recognize i686 for pentium pro.
12624 (i[3456]86-*-dgux*): Use config/mh-sysv for the host configuration
12627 * config.guess (i[345]86): Ditto.
12629 Mon Aug 26 18:34:42 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
12631 * configure.in (noconfigdirs): Removed gdb for D10V.
12633 Thu Aug 22 17:13:52 1996 Jeffrey A Law (law@cygnus.com)
12635 * configure.in: Remove ld, target-libio, target-libg++, and
12636 target-libstdc++ from noconfigdirs.
12638 Wed Aug 21 18:56:38 1996 Fred Fish <fnf@cygnus.com>
12640 * configure: Fix three locations where shell scripts were
12641 being run directly rather than with config_shell.
12643 Tue Aug 20 13:08:47 1996 J.T. Conklin <jtc@hippo.cygnus.com>
12645 * configure.in (v850-*-*): Set up initial $noconfigdirs.
12646 * config.sub (basic_machine): Recognize v850.
12648 Thu Aug 15 12:19:33 1996 Stan Shebs <shebs@andros.cygnus.com>
12650 * mpw-configure: Handle multiple enable/disable options and
12651 pass them down recursively, handle -c and -s flags appropriately
12652 depending on choice of compiler, add escape mechanism for
12653 quoted arguments to gC.
12655 Mon Aug 12 13:15:13 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12657 * configure.in (powerpc*-*-*): For eabi, system V.4, Linux, and
12658 solaris targets, use config/mt-ppc to set C{,XX}FLAGS_FOR_TARGETS
12659 so that -mrelocatable-lib and -mno-eabi are used.
12661 * Makefile.in (CONFIGURE_TARGET_MODULES): If target compiler does
12662 not support --print-multi-lib, don't abort.
12664 Thu Aug 8 12:18:59 1996 Klaus Kaempf <kkaempf@progis.de>
12666 * make-all.com: Run config-a-gas.
12667 * setup.com: Don't copy subdirectory files around.
12669 Tue Jul 30 17:49:31 1996 Brendan Kehoe <brendan@cygnus.com>
12671 * configure.in (*-*-ose): Remove exclusion of libgloss for this
12672 target, it now compiles correctly.
12674 Sat Jul 27 15:10:43 1996 Stan Shebs <shebs@andros.cygnus.com>
12676 * mpw-config.in: Generate Mac include for elf/dwarf2.h.
12678 Tue Jul 23 10:47:04 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
12680 * configure.in (d10v-*-*): Remove ld from $noconfigdirs.
12682 Mon Jul 22 13:28:51 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
12684 * configure.in (native_only): Add prms.
12686 Mon Jul 22 12:27:58 1996 Ian Lance Taylor <ian@cygnus.com>
12688 * Makefile.in (GAS_SUPPORT_DIRS): Add make-all.com and setup.com.
12689 (BINUTILS_SUPPORT_DIRS): Likewise.
12691 Thu Jul 18 12:55:40 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12693 * configure.in (d10v-*-*): Don't configure ld or gdb until the
12694 d10v support is added.
12696 Wed Jul 17 14:33:09 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
12698 * configure.in (d10v-*-*): New target.
12700 Mon Jul 15 11:53:00 1996 Jeffrey A Law (law@cygnus.com)
12702 * config.guess (HP 9000/811): Recognize this as a PA1.1
12705 Fri Jul 12 23:21:17 1996 Ken Raeburn <raeburn@cygnus.com>
12707 * Makefile.in (do-tar-gz): New target, split out from tail end of
12708 taz target. Run each command separately, don't use pipes.
12711 Fri Jul 12 12:08:04 1996 Stan Shebs <shebs@andros.cygnus.com>
12713 * mpw-configure: Look for g-mpw-make.sed in config/mpw.
12714 * mpw-build.in: No builds should depend on building byacc or flex,
12715 they are assumed to be installed already.
12717 Fri Jul 12 09:52:52 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12719 * Makefile.in (CONFIGURE_TARGET_MODULES): Set r environment
12720 variable that CC_FOR_TARGET needs.
12722 Thu Jul 11 10:09:45 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12724 * Makefile.in (CONFIGURE_TARGET_MODULES): Determine if the multlib
12725 options have changed since the last time the subdirectory was
12726 configured, and if it has, reconfigure.
12727 (CLEAN_TARGET_MODULES): Delete multilib.out and tmpmulti.out, which
12728 CONFIGURE_TARGET_MODULES uses to remember the old multilib options.
12730 Wed Jul 10 18:56:59 1996 Doug Evans <dje@canuck.cygnus.com>
12732 * Makefile.in (ALL_MODULES,CROSS_CHECK_MODULES,INSTALL_MODULES,
12733 CLEAN_MODULES): Add bash.
12734 (all-bash): New target.
12736 Mon Jul 8 17:33:14 1996 Jim Wilson <wilson@cygnus.com>
12738 * configure.in (mips-sgi-irix6*): Use mh-irix6 instead of mh-irix5.
12740 Mon Jul 1 13:31:35 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12742 * config.sub (basic_machine): Recognize d10v as a valid processor.
12744 Fri Jun 28 12:14:35 1996 Stan Shebs <shebs@andros.cygnus.com>
12746 * mpw-configure: Add support for --bindir.
12747 * mpw-build.in: Use a GCC-specific build script for GCC actions.
12749 Wed Jun 26 17:20:12 1996 Geoffrey Noer <noer@cygnus.com>
12751 * configure.in: add bash, time, gawk to list of hosttools and things
12752 to only build for native toolchains
12754 Tue Jun 25 23:09:03 1996 Jason Molenda (crash@godzilla.cygnus.co.jp)
12756 * Makefile.in (docdir): Remove.
12758 Tue Jun 25 19:00:08 1996 Jason Molenda (crash@godzilla.cygnus.co.jp)
12760 * Makefile.in (datadir): Set to $(prefix)/share.
12762 Mon Jun 24 23:26:07 1996 Geoffrey Noer <noer@cygnus.com>
12764 * configure.in: build diff and patch for cygwin32-hosted
12767 Mon Jun 24 15:01:12 1996 Joel Sherrill <joel@merlin.gcs.redstone.army.mil>
12769 * config.sub: Accept -rtems*.
12771 Sun Jun 23 22:41:54 1996 Geoffrey Noer <noer@cygnus.com>
12773 * configure.in: enable dosrel for cygwin32-hosted builds,
12774 remove diff from the list of things not buildable
12777 Sat Jun 22 11:39:01 1996 Jason Merrill <jason@yorick.cygnus.com>
12779 * Makefile.in (TARGET_SUBDIR): Move comment to previous line so we
12782 Fri Jun 21 17:24:48 1996 Jim Wilson <wilson@cygnus.com>
12784 * configure.in (mips*-sgi-irix6*): Set noconfigdirs appropriately.
12786 Thu Jun 20 16:57:40 1996 Ken Raeburn <raeburn@cygnus.com>
12788 * Makefile.in (taz): Handle case where tex3patch didn't even get
12789 checked out. Also, if it was found, put the symlink in a new util
12792 Thu Jun 20 12:20:33 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12794 * config.guess (*:Linux:*:*): Add support for PowerPC Linux.
12796 Tue Jun 18 14:24:12 1996 Klaus Kaempf (kkaempf@progis.de)
12798 * config.sub: Recognize -openvms.
12799 * configure.in (alpha*-*-*vms*): Set noconfigdirs.
12800 * make-all.com, setup.com: New files.
12802 Mon Jun 17 16:34:46 1996 Jason Merrill <jason@yorick.cygnus.com>
12804 * Makefile.in (taz): tex3patch moved to texinfo/util.
12806 Sat Jun 15 17:13:25 1996 Geoffrey Noer <noer@cygnus.com>
12808 * configure: enable_gdbtk=no for cygwin32-hosted toolchains
12809 * configure.in: remove make from disable-if-Can-Cross list
12810 enable gdb if ${host} and ${target} are cygwin32
12812 Fri Jun 7 18:16:52 1996 Harlan Stenn <harlan@pfcs.com>
12814 * config.guess (i?86-ncr-sysv*): Emit minor release numbers.
12815 Recognize the NCR 4850 machine and NCR Pentium-based platforms.
12817 Wed Jun 5 00:09:17 1996 Per Bothner <bothner@wombat.gnu.ai.mit.edu>
12819 * config.guess: Combine mips-mips-riscos cases, and use cpp to
12820 distinguish sysv/svr4/bsd variants.
12821 Based on a patch from Harlan Stenn <harlan@pfcs.com>.
12823 Fri Jun 7 14:24:49 1996 Tom Tromey <tromey@creche.cygnus.com>
12825 * configure.in: Added copyright notice.
12826 * move-if-change: Added copyright notice.
12828 Thu Jun 6 16:27:05 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12830 * configure.in (powerpcle-*-solaris*): Until we get shared
12831 libraries working, don't build gdb, sim, make, tcl, tk, or
12834 Tue Jun 4 20:41:45 1996 Per Bothner <bothner@deneb.cygnus.com>
12836 * config.guess: Merge with FSF:
12838 Mon Jun 3 08:49:14 1996 Karl Heuer <kwzh@gnu.ai.mit.edu>
12839 * config.guess (*:Linux:*:*): Add guess for sparc-unknown-linux.
12841 Fri May 24 18:34:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
12842 * config.guess (AViiON:dgux:*:*): Fix typo in recognizing mc88110.
12844 Fri Apr 12 20:03:59 1996 Per Bothner <bothner@spiff.gnu.ai.mit.edu>
12845 * config.guess: Combine two OSF1 rules.
12846 Also recognize field test versions. From mjr@zk3.dec.com.
12847 * config.guess (dgux): Use /usr/bin/uname rather than uname,
12848 because GNU uname does not support -p. From pmr@pajato.com.
12850 Tue Jun 4 11:07:25 1996 Tom Tromey <tromey@csk3.cygnus.com>
12852 * Makefile.in (MAKEDIRS): Removed $(tooldir).
12854 Tue May 28 12:30:50 1996 Stan Shebs <shebs@andros.cygnus.com>
12856 * mpw-README: Document GCCIncludes.
12858 Sun May 26 15:16:27 1996 Fred Fish <fnf@cygnus.com>
12860 * configure.in (alpha-*-linux*): Set enable_shared to yes.
12862 Tue May 21 15:41:39 1996 Stan Shebs <shebs@andros.cygnus.com>
12864 * mpw-configure: Handle --enable-FOO and --disable-FOO.
12866 Mon May 20 10:12:29 1996 Geoffrey Noer <noer@cygnus.com>
12868 * configure.in (*-*-cygwin32): Configure make.
12870 Tue May 7 14:19:42 1996 Tom Tromey <tromey@snuffle.cygnus.com>
12872 * Makefile.in (inet-install): Quote value of INSTALL_MODULES.
12874 Fri May 3 08:57:17 1996 Tom Tromey <tromey@lisa.cygnus.com>
12876 * Makefile.in (all-inet): Depend on all-perl.
12878 * Makefile.in (inet-install): New target.
12880 * Makefile.in (all-inet): Depend on all-tcl.
12881 (all-inet): Depend on all-send-pr.
12883 Tue Apr 30 13:55:51 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12885 * configure.in (powerpcle-*-solaris*): Turn off tk and tcl
12888 Thu Apr 25 11:48:20 1996 Ian Lance Taylor <ian@cygnus.com>
12890 * configure.in: Don't configure --with-gnu-ld on AIX.
12892 Thu Apr 25 06:33:36 1996 Michael Meissner <meissner@wogglebug.tiac.net>
12894 * configure.in (powerpcle-*-solaris*): Turn off gdb temporarily.
12896 Tue Apr 23 09:07:39 1996 Tom Tromey <tromey@creche.cygnus.com>
12898 * Makefile.in (ALL_MODULES): Added all-inet.
12899 (CROSS_CHECK_MODULES): Added check-inet.
12900 (INSTALL_MODULES): Added install-inet.
12901 (CLEAN_MODULES): Added clean-inet.
12902 (all-indent): New target.
12904 * configure.in (host_tools): Added inet.
12905 (native_only): Added inet.
12906 (noconfigdirs): Added inet.
12908 Fri Apr 19 15:35:29 1996 Ian Lance Taylor <ian@cygnus.com>
12910 * configure.in: Don't configure libgloss if we are not configuring
12913 Wed Apr 17 19:30:01 1996 Rob Savoye <rob@chinadoll.cygnus.com>
12915 * configure.in: Don't configure libgloss for unsupported
12918 Tue Apr 16 11:17:05 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12920 * Makefile.in (CLEAN_MODULES): Add clean-apache.
12922 Mon Apr 15 15:09:05 1996 Tom Tromey <tromey@creche.cygnus.com>
12924 * Makefile.in (ALL_MODULES): Include all-apache.
12925 (CROSS_CHECK_MODULES): Include check-apache.
12926 (INSTALL_MODULES): Include install-apache.
12927 (all-apache): New target.
12929 * configure.in: Added apache everywhere perl is seen.
12931 Mon Apr 15 14:59:13 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12933 * Makefile.in: Add support for clean-{module} and
12934 clean-target-{module} rules.
12936 Wed Apr 10 21:37:41 PDT 1996 Marilyn E. Sander <msander@cygnus.com>
12938 * configure.in (*-*-ose) do not build libgloss.
12940 Mon Apr 8 16:16:20 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12942 * config.guess (prep*:SunOS:5.*:*): Turn into
12943 powerpele-unknown-solaris2.
12945 Mon Apr 8 14:45:41 1996 Ian Lance Taylor <ian@cygnus.com>
12947 * configure.in: Permit --enable-shared to specify a list of
12950 Fri Apr 5 08:17:57 1996 Jason Molenda (crash@phydeaux.cygnus.com)
12952 * configure.in (host==solaris): Pass only the first word of $CC
12953 to /usr/bin/which when checking if we're using /usr/ccs/bin/cc.
12955 Fri Apr 5 03:16:13 1996 Jason Molenda (crash@phydeaux.cygnus.com)
12957 * Makefile.in (BASE_FLAGS_TO_PASS): pass down $(MAKE).
12959 Thu Mar 28 14:11:11 1996 Tom Tromey <tromey@creche.cygnus.com>
12961 * Makefile.in (ALL_MODULES): Include all-perl.
12962 (CROSS_CHECK_MODULES): Include check-perl.
12963 (INSTALL_MODULES): Include install-perl.
12964 (ALL_X11_MODULES): Include all-guile.
12965 (CHECK_X11_MODULES): Include check-guile.
12966 (INSTALL_X11_MODULES): Include install-guile.
12967 (all-perl): New target.
12968 (all-guile): New target.
12970 * configure.in (host_tools): Include perl and guile.
12971 (native_only): Include perl and guile.
12972 (noconfigdirs): Don't build guile and perl; no ports have been
12975 Tue Mar 26 21:18:50 1996 Andrew Cagney <cagney@kremvax.highland.com.au>
12977 * configure (--enable-*): Handle quoted option lists such as
12978 --enable-sim-cflags='-g0 -O' better.
12980 Thu Mar 21 11:53:08 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12982 * Makefile.in ({,inst}all-target): New rule so we can make and
12983 install all of the target directories easily.
12985 Wed Mar 20 18:10:57 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
12987 * configure.in: Add missing global flag in sed substitution when
12988 deleting `target-' from ${configdirs}.
12990 Thu Mar 14 19:15:06 1996 Ian Lance Taylor <ian@cygnus.com>
12992 * Makefile.in (DO_X): Don't get confused if CC contains `=' in an
12995 * configure.in (mips*-nec-sysvr4*): Use a host_makefile_frag of
12998 * install.sh: Correct misspelling of transformbasename.
13000 * config.guess: Recognize mips-*-sysv*.
13002 Mon Mar 11 15:36:42 1996 Dawn Perchik <dawn@critters.cygnus.com>
13004 * config.sub: Recognize mon960.
13006 Sun Mar 10 13:18:38 1996 Ian Lance Taylor <ian@cygnus.com>
13008 * configure: Restore Canadian Cross handling of BISON and LEX,
13009 removed in Feb 20 change.
13011 Fri Mar 8 20:07:09 1996 Per Bothner <bothner@kalessin.cygnus.com>
13013 * README: Suggestions from Torbjorn Granlund <tege@matematik.su.se>:
13014 Mention make install. Remove the old copyright date as well the
13015 clumsy and rather pointless copyright on the README file.
13017 Fri Mar 8 17:51:35 1996 Ian Lance Taylor <ian@cygnus.com>
13019 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): If there is a
13020 Makefile after running symlink-tree, then run `make distclean' to
13021 avoid clobbering any generated files in srcdir.
13023 Tue Mar 5 08:21:44 1996 J.T. Conklin <jtc@rtl.cygnus.com>
13025 * configure.in (m68k-*-netbsd*): Build everything now.
13027 Wed Feb 28 12:25:46 1996 Jason Merrill <jason@yorick.cygnus.com>
13029 * Makefile.in (taz): Fix quoting.
13031 Tue Feb 27 11:33:57 1996 Doug Evans <dje@charmed.cygnus.com>
13033 * configure.in (sparclet-*-*): Build everything now.
13035 Tue Feb 27 14:31:51 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
13037 * configure.in (m68k-*-linux*): New host.
13039 Mon Feb 26 14:32:44 1996 Ian Lance Taylor <ian@cygnus.com>
13041 * configure: Check for bison before byacc.
13043 Tue Feb 20 23:12:35 1996 Stu Grossman (grossman@critters.cygnus.com)
13045 * Makefile.in configure: Change the way LEX and BISON/YACC are
13046 set. configure now defines DEFAULT_LEX and DEFAULT_YACC by
13047 searching PATH. These are used as fallbacks by Makefile.in if
13048 flex/bison/byacc aren't in objdir.
13050 Mon Feb 19 11:45:30 1996 Ian Lance Taylor <ian@cygnus.com>
13052 * Makefile.in: Make everything which depends upon all-bfd also
13053 depend upon all-opcodes, in case --with-commonbfdlib is used.
13055 Thu Feb 15 19:50:50 1996 Michael Meissner <meissner@tiktok.cygnus.com>
13057 * configure.in (host *-*-cygwin32): Don't build gdb if we are
13058 building NT native compilers on Unix.
13060 Thu Feb 15 17:42:25 1996 Ian Lance Taylor <ian@cygnus.com>
13062 * configure.in: Don't get CC from the host Makefile fragment if we
13063 can find gcc in PATH, or if this is a Canadian Cross. Move the
13064 Solaris test for /usr/ucb/cc to the post target script, just after
13065 the compiler sanity test.
13067 Wed Feb 14 16:57:40 1996 Ian Lance Taylor <ian@cygnus.com>
13069 * config.sub: Merge with FSF.
13071 Tue Feb 13 14:27:48 1996 Ian Lance Taylor <ian@cygnus.com>
13073 * Makefile.in (RPATH_ENVVAR): New variable.
13074 (REALLY_SET_LIB_PATH): Use it.
13075 * configure.in: On HP/UX, set RPATH_ENVVAR to SHLIB_PATH.
13077 Mon Feb 12 15:28:49 1996 Doug Evans <dje@charmed.cygnus.com>
13079 * config.sub, configure.in: Recognize sparclet cpu.
13081 Mon Feb 12 15:33:59 1996 Christian Bauernfeind <chrisbfd@theorie3.physik.uni-erlangen.de>
13083 * config.guess: Support m68k-cbm-sysv4.
13085 Sat Feb 10 12:06:42 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
13087 * config.guess (*:Linux:*:*): Guess m68k-unknown-linux and
13088 m68k-unknown-linuxaout from linker help string. Put quotes around
13091 Thu Dec 7 09:03:24 1995 Tom Horsley <Tom.Horsley@mail.hcsc.com>
13093 * config.guess (powerpc-harris-powerunix): Add guess for port
13096 Thu Feb 8 15:37:52 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
13098 * config.guess (UNAME_VERSION): Recognize X4.x as an OSF version.
13100 Mon Feb 5 16:36:51 1996 Ian Lance Taylor <ian@cygnus.com>
13102 * configure.in: If --enable-shared was used, set SET_LIB_PATH to
13103 $(REALLY_SET_LIB_PATH) in Makefile.
13104 * Makefile.in (SET_LIB_PATH): New variable.
13105 (REALLY_SET_LIB_PATH): New variable.
13106 ($(DO_X)): Use $(SET_LIB_PATH).
13107 (install.all, gcc-no-fixedincludes, $(ALL_MODULES)): Likewise.
13108 ($(NATIVE_CHECK_MODULES), $(CROSS_CHECK_MODULES)): Likewise.
13109 ($(INSTALL_MODULES), $(CONFIGURE_TARGET_MODULES)): Likewise.
13110 ($(ALL_TARGET_MODULES), $(CHECK_TARGET_MODULES)): Likewise.
13111 ($(INSTALL_TARGET_MODULES), $(ALL_X11_MODULES)): Likewise.
13112 ($(CHECK_X11_MODULES), $(INSTALL_X11_MODULES)): Likewise.
13113 (all-gcc, all-bootstrap, check-gcc, install-gcc): Likewise.
13114 (install-dosrel): Likewise.
13115 (all-opcodes): Depend upon all-libiberty.
13117 Sun Feb 4 16:51:11 1996 Steve Chamberlain <sac@slash.cygnus.com>
13119 * config.guess (*:CYGWIN*): New
13121 Sat Feb 3 10:42:35 1996 Michael Meissner <meissner@tiktok.cygnus.com>
13123 * Makefile.in (all-target-winsup): All all-target-libiberty.
13125 Fri Feb 2 17:58:56 1996 Michael Meissner <meissner@tiktok.cygnus.com>
13127 * configure.in (noconfigdirs): Add missing # in front of comment.
13129 Thu Feb 1 14:38:13 1996 Geoffrey Noer <noer@cygnus.com>
13131 * configure.in: add second pass to things added to noconfigdirs
13132 so *-gm-magic can exclude libgloss properly.
13134 Thu Feb 1 11:10:16 1996 Stan Shebs <shebs@andros.cygnus.com>
13136 * mpw-configure (extralibs_name, rez_name): Set correctly
13137 for MWC68K compiler.
13139 * mpw-README: Add more info on the necessary build tools.
13141 Thu Feb 1 10:22:38 1996 Steve Chamberlain <sac@slash.cygnus.com>
13143 * configure.in, config.sub: Recognize cygwin32.
13145 Wed Jan 31 14:17:10 1996 Richard Henderson <rth@tamu.edu>
13147 * config.guess, config.sub: Recognize A/UX.
13149 Wed Jan 31 13:52:14 1996 Ian Lance Taylor <ian@cygnus.com>
13151 * config.sub: Merge with gcc/config.sub.
13153 Thu Jan 25 11:01:10 1996 Raymond Jou <rjou@mexican.cygnus.com>
13155 * mpw-build.in (do-binutils): Add build of stamps.
13157 Thu Jan 25 17:05:26 1996 James G. Smith <jsmith@cygnus.co.uk>
13159 * config.sub: Add recognition for mips64vr4100*-* targets.
13161 Wed Jan 24 12:47:55 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
13163 * test-build.mk: Add checking of `hpux9' rather than just `hpux'.
13164 Add creation of gconfigargs with `--enable-shared' turned on.
13165 ($(host)-stamp-stage2-configured): Pass $(gconfigargs).
13166 ($(host)-stamp-stage3-configured): Likewise.
13167 (HOLES): Add chatr and ldd.
13168 (i386-ncr-sysv4.3*): Add use of /usr/ccs/bin in the PATH and HOLE_DIRS.
13170 Wed Jan 24 20:32:30 1996 Torbjorn Granlund <tege@noisy.matematik.su.se>
13172 * configure: Pass --nfp to recursive configures.
13174 Mon Jan 22 10:41:56 1996 Steve Chamberlain <sac@slash.cygnus.com>
13176 * Makefile.in (DLLTOOL): New.
13177 (DLLTOOL_FOR_TARGET): New.
13178 (EXTRA_HOST_FLAGS): Pass down DLLTOOL.
13179 (EXTRA_TARGET_FLAGS): Ditto.
13180 (EXTRA_GCC_FLAGS): Ditto.
13181 (CONFIGURE_TARGET_MODULES): Ditto.
13183 * configure: Add DLLTOOL.
13185 Fri Jan 19 13:30:15 1996 Stan Shebs <shebs@andros.cygnus.com>
13187 SCO OpenServer 5 changes from Robert Lipe <robertl@dgii.com>:
13188 * configure.in (i[345]86-*-sco3.2v5*): Use mh-sysv instead of
13189 mh-sco, since old workarounds no longer needed, and don't
13190 build ld, since libraries have weak symbols in COFF.
13192 Sun Jan 14 23:01:31 1996 Fred Fish <fnf@cygnus.com>
13194 * Makefile.in (CONFIGURE_TARGET_MODULES): Add missing ';'.
13196 Fri Jan 12 15:25:35 1996 Ian Lance Taylor <ian@cygnus.com>
13198 * configure.in: Make sure that ${CC} can be used to compile an
13201 Sat Jan 6 07:23:33 1996 Michael Meissner <meissner@wogglebug.tiac.net>
13203 * Makefile.in (all-gdb): Depend on $(GDB_TK).
13204 * configure (GDB_TK): Set GDB_TK to either "all-tcl all-tk" or
13205 nothing depending on whether gdbtk is being built.
13207 Wed Jan 3 17:54:41 1996 Doug Evans <dje@canuck.cygnus.com>
13209 * Makefile.in (newlib.tar.gz): Delete building of newlib's info files.
13211 Mon Jan 1 19:09:14 1996 Brendan Kehoe <brendan@rtl.cygnus.com>
13213 * configure.in (noconfigdirs): Put ld or gas in this early, if the
13214 user specifically used --with-gnu-ld=no or --with-gnu-as=no.
13216 Sat Dec 30 16:08:57 1995 Doug Evans <dje@canuck.cygnus.com>
13218 * config-ml.in: Add support for
13219 --disable-{softfloat,m68881,m68000,m68020} on m68*-*-*.
13220 Simplify setting of multidirs from --disable-foo.
13222 Fri Dec 29 07:56:11 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13224 * Makefile.in (EXTRA_GCC_FLAGS): If any of the make variables
13225 LANGUAGES, BOOT_CFLAGS, STMP_FIXPROTO, LIMITS_H_TEST,
13226 LIBGCC1_TEST, LIBGCC2_CFLAGS, LIBGCC2_INCLUDES, and ENQUIRE are
13227 non-empty, pass them on to the GCC make.
13228 (all-bootstrap): New rule that is like all-gcc, except it executes
13229 the GCC bootstrap rule instead of the GCC all rule.
13231 Wed Dec 27 15:51:48 1995 Doug Evans <dje@canuck.cygnus.com>
13233 * config-ml.in (ml_realsrcdir): New, to account for ${subdir}.
13235 Tue Dec 26 11:45:31 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13237 * config.guess (AViiON:dgux:*:*): Update from FSF to add pentium
13240 Fri Dec 15 10:01:27 1995 Stan Cox <coxs@dg-rtp.dg.com>
13242 * config.sub (i*86*) Change [345] to [3456]
13244 Wed Dec 20 17:41:40 1995 Brendan Kehoe <brendan@lisa.cygnus.com>
13246 * configure.in (noconfigdirs): Add gas or ld if --with-gnu-as=no or
13249 Wed Dec 20 15:15:35 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13251 * config-ml.in (rs6000*, powerpc*): Add switches to control which
13252 AIX multilibs get built.
13254 Mon Dec 18 17:55:46 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13256 * configure.in (i386-win32): Don't build expect if we're not
13257 building the tcl subdir.
13259 Mon Dec 18 11:47:19 1995 Stan Shebs <shebs@andros.cygnus.com>
13261 * Makefile.in: (configure-target-examples, all-target-examples):
13262 New targets, configure and build example programs.
13264 Fri Dec 15 16:13:03 1995 Stan Shebs <shebs@andros.cygnus.com>
13266 * mpw-configure: If an mpw-config.in generated a file mk.sed,
13267 use it as input to sedit the generated MPW makefile.
13268 * mpw-README: Add a suggestion about Gestalt.h.
13270 Wed Dec 13 16:43:51 1995 Ian Lance Taylor <ian@cygnus.com>
13272 * config.sub: Accept *-*-ieee*.
13274 Tue Dec 12 11:52:57 1995 Ian Lance Taylor <ian@cygnus.com>
13276 * Makefile.in (local-distclean): Remove $(TARGET_SUBDIR). From
13277 Ronald F. Guilmette <rfg@monkeys.com>.
13279 Mon Dec 11 15:31:58 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13281 * configure.in (host==powerpc-pe): Add many directories to noconfigdirs
13282 for powerpc-pe native.
13283 (target==i386-win32): add tcl, make to noconfigdirs if canadian cross.
13284 (target==powerpc-pe): duplicate i386-win32 entry.
13286 Sat Dec 9 14:58:28 1995 Jim Wilson <wilson@chestnut.cygnus.com>
13288 * configure.in (noconfigdirs): Exclude target-newlib for all versions
13289 of vxworks, not just vxworks5.1.
13291 Mon Dec 4 12:05:40 1995 Stan Shebs <shebs@andros.cygnus.com>
13293 * mpw-configure: Add support for exec-prefix.
13295 Mon Dec 4 10:22:50 1995 Jeffrey A. Law <law@rtl.cygnus.com>
13297 * config.guess: Recognize HP model 816 machines as having
13300 Mon Dec 4 12:38:15 1995 Ian Lance Taylor <ian@cygnus.com>
13302 * configure: Ignore new autoconf configure options.
13304 Thu Nov 30 16:57:33 1995 Per Bothner <bothner@wombat.gnu.ai.mit.edu>
13306 * config.guess: Recognize Pentium under SCO.
13307 From Robert Lipe <robertl@arnet.com>.
13309 Wed Nov 29 13:49:08 1995 J.T. Conklin <jtc@rtl.cygnus.com>
13311 * configure.in (noconfigdirs): Disable target-libio on v810-*-*.
13313 Wed Nov 29 12:12:01 1995 Ian Lance Taylor <ian@cygnus.com>
13315 * configure.in: Don't configure gas for alpha-dec-osf*.
13317 Tue Nov 28 17:16:48 1995 Ian Lance Taylor <ian@cygnus.com>
13319 * configure.in: Default to --with-stabs for some targets for which
13320 it makes sense: mips*-*-*, alpha*-*-osf*, i[345]86*-*-sysv4* and
13321 i[345]86*-*-unixware*.
13323 Mon Nov 27 13:44:15 1995 Ian Lance Taylor <ian@cygnus.com>
13325 * config-ml.in: Get list of multidirs using gcc --print-multi-lib
13326 rather than basing it on the target. Simplify handling of options
13327 controlling which directories to configure. Remove extraneous
13328 slash in multi-clean target.
13330 Fri Nov 24 17:29:29 1995 Doug Evans <dje@deneb.cygnus.com>
13332 * config-ml.in: Prefix more variables with ml_ so they don't collide
13335 Wed Nov 22 11:27:02 1995 Ian Lance Taylor <ian@cygnus.com>
13337 * configure: Don't turn -v into --v.
13339 Tue Nov 21 16:48:02 1995 Doug Evans <dje@deneb.cygnus.com>
13341 * configure.in (targargs): Fix typo.
13343 * Makefile.in (DEVO_SUPPORT): Add symlink-tree.
13345 Tue Nov 21 14:08:28 1995 Ian Lance Taylor <ian@cygnus.com>
13347 * configure.in: Strip --host and --target options from
13348 CONFIG_ARGUMENTS, and always configure for --host only. Add
13349 --with-cross-host option when building with a cross-compiler.
13350 * configure: Canonicalize the arguments put into config.status by
13351 always using `=' for an option with an argument. Pass a presumed
13352 --host or --target explicitly.
13354 Fri Nov 17 17:50:30 1995 Stan Shebs <shebs@andros.cygnus.com>
13356 * config.sub: Merge -macos*, -magic*, -pe*, and -win32 cases
13357 into general OS recognition case.
13359 Fri Nov 17 17:42:25 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13361 * configure.in (target_configdirs): add target-winsup only
13362 for win32 target systems.
13364 Thu Nov 16 14:04:47 1995 Ian Lance Taylor <ian@cygnus.com>
13366 * Makefile.in (all-target-libgloss): Depend upon
13367 configure-target-newlib, since when libgloss is built it looks to
13368 see if the newlib directory exists.
13370 Wed Nov 15 14:47:52 1995 Ken Raeburn <raeburn@cygnus.com>
13372 * Makefile.in (DEVO_SUPPORT): Use config-ml.in instead of
13375 Wed Nov 15 11:45:23 1995 Ian Lance Taylor <ian@cygnus.com>
13377 * configure: Handle LD and LD_FOR_TARGET when configuring a
13380 Tue Nov 14 14:56:11 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13382 * configure.in (target_libs): add target-winsup.
13383 (target==i386-win32): add patch diff flex make to $noconfigdirs.
13384 (target==ppcle-pe): remove ld from $noconfigdirs.
13386 Tue Nov 14 01:25:50 1995 Doug Evans <dje@canuck.cygnus.com>
13388 * Makefile.in (CONFIGURE_TARGET_MODULES): Pass --with-target-subdir.
13389 Preserve relative path names in $srcdir. Build symlink tree if
13390 configuring cross target dir and srcdir=. (= no VPATH support).
13391 (configure-target-libg++): Depend on configure-target-librx.
13392 * cfg-ml-com.in, cfg-ml-pos.in: Deleted.
13393 * config-ml.in: New file.
13394 * symlink-tree: New file.
13395 * configure: Ensure srcdir="." if that's what it is.
13397 Mon Nov 13 12:34:20 1995 Stan Shebs <shebs@andros.cygnus.com>
13399 * mpw-README: Clarify some phrasing, add notes about CodeWarrior
13400 includes and FLEX_SKELETON setting.
13401 * mpw-configure (--with-gnu-ld): New option, controls whether
13402 to use PPCLink or ld with PowerMac GCC.
13403 * mpw-build.in (all-grez, do-grez, install-grez): New targets.
13404 * mpw-config.in: Configure grez if targeting Mac.
13406 * config.sub: Accept pmac and pmac-mpw as names for PowerMacs,
13407 accept mpw and mac-mpw as names for m68k Macs, change macos7 to
13409 * configure.in: Configure grez resource compiler if targeting Mac.
13410 * Makefile.in (all-grez, install-grez): New targets.
13412 Wed Nov 8 17:33:51 1995 Jason Merrill <jason@yorick.cygnus.com>
13414 * configure: CXX defaults to gcc, not g++. If we find
13415 gcc in the path, set CC to gcc -O2.
13417 Tue Nov 7 15:45:17 1995 Ian Lance Taylor <ian@cygnus.com>
13419 * configure: Default ${build} correctly. Avoid picking up extra
13420 spaces when reading CC and CXX from Makefile. When doing a
13421 Canadian Cross, use plausible default values for numerous
13423 * configure.in: When doing a Canadian Cross, don't try to
13424 configure tools whose configure script can't handle it.
13426 Mon Nov 6 19:32:17 1995 Jim Wilson <wilson@chestnut.cygnus.com>
13428 * cfg-ml-com.in (sh-*-*): Add m2 and ml/m2 to multidirs.
13430 Sun Nov 5 00:15:41 1995 Per Bothner <bothner@kalessin.cygnus.com>
13432 * configure: Remove dubious bug reporting address.
13434 Fri Nov 3 08:17:54 1995 Per Bothner <bothner@kalessin.cygnus.com>
13436 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): If subdir has
13437 configure script, run that instead of this directory's configure.
13438 In either case, print a message that we're configuring the sub-dir.
13440 Thu Nov 2 23:23:36 1995 Per Bothner <bothner@kalessin.cygnus.com>
13442 * configure.in: Before checking for the existence of various files,
13443 use sed to filter out "target-".
13445 Thu Nov 2 13:24:56 1995 Ian Lance Taylor <ian@cygnus.com>
13447 * Makefile.in (DO_X): Split rule to decrease command line length
13448 for systems with small ARG_MAX values. From phdm@info.ucl.ac.be
13449 (Philippe De Muyter).
13451 Wed Nov 1 15:18:35 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13453 * Makefile.in (all-patch): depend on all-libiberty.
13455 Wed Nov 1 12:23:20 1995 Ian Lance Taylor <ian@cygnus.com>
13457 * configure.in: If the only directory in target_configdirs which
13458 actually exists is libiberty, then set target_configdirs to empty,
13459 to avoid trying to build a target libiberty in a gas or gdb
13462 Tue Oct 31 17:52:39 1995 J.T. Conklin <jtc@slave.cygnus.com>
13464 * configure.in (host_makefile_frag): Use m68k-sun-sunos* instead
13465 of m68k-sun-* when selecting mh-sun3 to avoid matching NetBSD/sun3
13468 Tue Oct 31 16:57:32 1995 Jim Wilson <wilson@chestnut.cygnus.com>
13470 * configure.in (copy_dirs): Use sys-include instead of include
13471 for --with-headers option.
13473 Tue Oct 31 10:29:36 1995 steve chamberlain <sac@slash.cygnus.com>
13475 * Makefile.in, configure.in: Make winsup builds work with
13478 Mon Oct 30 18:57:09 1995 Ian Lance Taylor <ian@cygnus.com>
13480 * configure.in: Build the linker on AIX.
13482 Mon Oct 30 12:27:16 1995 Per Bothner <bothner@kalessin.cygnus.com>
13484 * Makefile.in (CC_FOR_TARGET, CXX_FOR_TARGET): Add $(TARGET_SUBDIR)
13487 Mon Oct 30 12:45:25 1995 Doug Evans <dje@cygnus.com>
13489 * Makefile.in (all-gcc): Fix typo.
13491 Sat Oct 28 10:27:59 1995 Per Bothner <bothner@kalessin.cygnus.com>
13493 * Makefile.in ($(CHECK_TARGET_MODULES)): Fix typo.
13495 Fri Oct 27 23:14:12 1995 Per Bothner <bothner@kalessin.cygnus.com>
13497 * configure.in: Rename libFOO to target-libFOO, and xiberty
13498 to target-xiberty, to provide more flexibility.
13499 (target_subdir): Define. Create if cross.
13500 Set TARGET_SUBDIR in Makefile to ${target_subdir}.
13501 * Makefile.in: Rename all-libFOO -> all-target-libFOO, all-xiberty
13502 -> all-target-libiberty, configure-libFOO -> configure-target-libFOO,
13503 check-libFOO -> check-target-libFOO, etc.
13504 ($(DO_X)): Iterate over TARGET_CONFIGDIRS after SUBDIRS.
13505 ($(CONFIGURE_TARGET_MODULES), $(CHECK_TARGET_MODULES),
13506 $(ALL_TARGET_MODULES), $(INSTALL_TARGET_MODULES)): Update accordingly.
13507 (configure-target-XXX): Depend on $(ALL_GCC), not all-gcc, to
13508 allow ALL_GCC="" to only configure.
13509 (DEVO_SUPPORT): Add cfg-ml-com.in and cfg-ml-pos.in.
13510 (ETC_SUPPORT, ETC_SUPPORT_PFX): Merge; update 'taz' accordingly.
13511 (LIBGXX_SUPPORT_DIRS): Remove xiberty.
13513 Sat Oct 28 01:53:49 1995 Ken Raeburn <raeburn@cygnus.com>
13515 * Makefile.in (taz): Build "info" in etc explicitly.
13517 Fri Oct 27 09:32:30 1995 Stu Grossman (grossman@cygnus.com)
13519 * configure.in: Make sure that CC is undefined (as opposed to
13520 null) if toplevel/config/mh-{host} doesn't define it. Fixes a
13521 problem with autoconf trying to configure on a host without GCC.
13523 Thu Oct 26 22:35:01 1995 Stan Shebs <shebs@andros.cygnus.com>
13525 * mpw-configure: Set host alias from choice of host compiler,
13526 only use generic MPW Makefile sed if present, edit a file
13527 named "hacked_Makefile.in" instead of "Makefile.in" if present.
13528 * mpw-README: Add problem notes about CW6 and CW7.
13530 Thu Oct 26 05:45:10 1995 Ken Raeburn <raeburn@kr-pc.cygnus.com>
13532 * Makefile.in (taz): Use ";" instead of ";;".
13534 Wed Oct 25 15:18:24 1995 Per Bothner <bothner@kalessin.cygnus.com>
13536 * Makefile.in (taz): Grep for '^diststuff:' or '^info:' in
13537 sub-directory Makefiles, instead of using DISTSTUFFDIRS and
13539 (DISTSTUFFDIRS, DISTDOCDIRS): Removed - no longer used.
13540 (newlib.tar.gz): Don't pass DISTDOCDIRS to recursive make.
13542 Wed Oct 25 14:43:55 1995 Per Bothner <bothner@kalessin.cygnus.com>
13544 * Makefile.in (DISTDOCDIRS): Remove ld gprof bnutils gas libg++ gdb
13545 and gnats, because they are now subsumed by DISTSTUFFDIRS.
13546 Move bfd to DISTSTUFFDIRS.
13548 Tue Oct 24 18:19:09 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13550 * Makefile.in (X11_LIB): Removed.
13551 (X11_FLAGS_TO_PASS): pass only X11_EXTRA_CFLAGS and X11_EXTRA_LIBS.
13553 * configure.in (host_makefile_frag): mh-aix & mh-sun removed.
13555 Sun Oct 22 13:04:42 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13557 * cfg-ml-com.in (powerpc*): Shorten some of the multilib directory
13560 Fri Oct 20 18:02:10 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13562 * cfg-ml-com.in (powerpc*-eabi*): Add mcall-aixdesc varients.
13564 Thu Oct 19 10:40:57 1995 steve chamberlain <sac@slash.cygnus.com>
13566 * configure.in (i[345]86-*-win32): Always build newlib.
13567 Don't configure cvs, autoconf or texinfo.
13568 * Makefile.in (LD_FOR_TARGET): New.
13569 (BASE_FLAGS_TO_PASS, EXTRA_TARGET_FLAGS, CONFIGURE_TARGET_MODULES):
13570 Pass down LD_FOR_TARGET.
13572 Wed Oct 18 15:53:56 1995 steve chamberlain <sac@slash.cygnus.com>
13574 * winsup: New directory.
13575 * Makefile.in: Build winsup.
13576 * configure.in: Winsup is configured when target is win32.
13577 Can only build win32 target GDB when native.
13579 Mon Oct 16 09:42:31 1995 Jeffrey A Law (law@cygnus.com)
13581 * config.guess: Recognize HP model 819 machines as having
13582 a PA 1.1 processor.
13584 Mon Oct 16 10:49:43 1995 Ian Lance Taylor <ian@cygnus.com>
13586 * configure: Fix sed loop which substitutes for CC and CXX to
13587 avoid bug found in various sed implementations.
13589 Wed Oct 11 16:16:20 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13591 * cfg-ml-com.in (powerpc-*-eabisim): Delete separate rule for
13592 simulator. Use standard powerpc-*-eabi*.
13594 Mon Oct 9 17:21:56 1995 Ian Lance Taylor <ian@cygnus.com>
13596 * configure.in: Stop putting gas and binutils in noconfigdirs for
13597 powerpc-*-aix* and rs6000-*-*.
13599 Mon Oct 9 12:38:40 1995 Michael Meissner <meissner@cygnus.com>
13601 * cfg-ml-com.in (powerpc*-*-eabisim*): Add support for building
13602 -mcall-aixdesc libraries.
13604 Fri Oct 6 16:17:57 1995 Ken Raeburn <raeburn@cygnus.com>
13606 Mon Sep 25 22:49:32 1995 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
13608 * config.sub (arm | armel | armeb): Fix shell syntax.
13610 Fri Oct 6 14:40:28 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13612 * cfg-ml-com.in ({powerpc,rs6000}-ibm-aix*): Add multilibs for
13613 -msoft-float and -mcpu=common support.
13614 (powerpc*-*-eabisim*): Add support for building -mcall-aix
13617 Thu Oct 5 13:26:37 1995 Brendan Kehoe <brendan@lisa.cygnus.com>
13619 * configure.in: Allow configuration and build of emacs19 for the alpha.
13621 Wed Oct 4 22:05:36 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13623 * configure.in (CC): Get ^CC, not just any old CC, from
13624 ${host_makefile_frag}.
13626 Wed Oct 4 21:55:00 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13628 * configure.in (CC): Try to get CC from
13629 ${srcdir}/${host_makefile_frag}, not ${host_makefile_frag}.
13631 Wed Oct 4 21:44:12 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13633 * Makefile.in (TARGET_CONFIGDIRS): configure targetdirs
13634 only if it exists in $(srcdir).
13636 Wed Oct 4 11:52:31 1995 Ian Lance Taylor <ian@cygnus.com>
13638 * configure: If CC and CXX are not set in the environment, set
13639 them, based on either an existing Makefile or on searching for gcc
13640 in PATH. Substitute for CC and CXX in Makefile.
13641 * configure.in: Remove libm from target_libs. Separate
13642 target_configdirs from configdirs. If CC is not set in
13643 environment, try to get it from a host Makefile fragment. Rewrite
13644 changes of configdirs to use skipdirs instead. A few minor
13645 tweaks. Take directories out of target_configdirs as they are
13646 taken out of configdirs. Remove existing Makefile files from
13647 subdirectories. Substitute for TARGET_CONFIGDIRS and
13648 CONFIG_ARGUMENTS in Makefile.
13649 * Makefile.in (TARGET_CONFIGDIRS): New variable, automatically set
13651 (CONFIG_ARGUMENTS): Likewise.
13652 (CONFIGURE_TARGET_MODULES): New variable.
13653 ($(DO_X)): Loop over TARGET_CONFIGDIRS as well as SUBDIRS.
13654 ($(CONFIGURE_TARGET_MODULES)): New target.
13655 (configure-libg++, configure-libio): New targets.
13656 (all-libg++): Depend upon configure-libg++.
13657 (all-libio): Depend upon configure-libio.
13658 (configure-libgloss, all-libgloss): New targets.
13659 (configure-libstdc++): New target.
13660 (all-libstdc++): Depend upon configure-libstdc++.
13661 (configure-librx, all-librx): New targets.
13662 (configure-newlib): New target.
13663 (all-newlib): Depend upon configure-newlib
13664 (configure-xiberty): New target.
13665 (all-xiberty): Depend upon configure-xiberty.
13667 Sat Sep 30 04:32:59 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13669 * configure.in (host i[345]86-*-win32): Expand the
13670 noconfigdirs again.
13672 Thu Sep 28 21:18:49 1995 Stan Shebs <shebs@andros.cygnus.com>
13674 * mpw-configure: Fix sed command file name.
13676 Thu Sep 28 17:39:56 1995 steve chamberlain <sac@slash.cygnus.com>
13678 * configure.in (host i[345]86-*-win32): Reduce the
13679 noconfigdirs again.
13681 Wed Sep 27 12:24:00 1995 Ian Lance Taylor <ian@cygnus.com>
13683 * configure.in: Don't configure ld and gdb for powerpc*-*-winnt*
13684 or powerpc*-*-pe*, since they are not yet supported.
13686 Tue Sep 26 14:30:01 1995 Stan Shebs <shebs@andros.cygnus.com>
13688 Add PowerMac support and many other enhancements.
13689 * mpw-configure: New option --cc to select compiler to use,
13690 paste options set according to --cc into the generated
13691 Makefile, generate the Makefile by sed'ing the Unix Makefile.in
13692 if mpw-make.sed is present.
13693 * mpw-config.in: Don't test for gC1, test for mpw-touch,
13694 add forward includes for PowerPC include files.
13695 * mpw-build.in: Build using Makefile.PPC if present.
13696 (do-byacc, etc): Remove separate version resource builds.
13697 (do-gas): Build "stamps" before "all".
13698 (do-gcc): Build "stamps-h" and "stamps-c" before "all".
13699 * mpw-README: Update to reflect --cc option, PowerMac support,
13700 and recently-reported compatibility problems.
13702 Fri Sep 22 12:15:42 1995 Doug Evans <dje@deneb.cygnus.com>
13704 * cfg-ml-com.in (m68*-*-*): Only build multilibs for
13705 embedded m68k systems (-aout, -coff, -elf, -vxworks).
13706 (--with-multilib-top): Pass to recursive invocations.
13708 Tue Sep 19 13:51:05 1995 J.T. Conklin <jtc@blues.cygnus.com>
13710 * configure.in (noconfigdirs): Disable libg++ and libstdc++ on
13713 Mon Sep 18 23:08:26 1995 J.T. Conklin <jtc@rtl.cygnus.com>
13715 * configure.in (noconfigdirs): Disable bfd, binutils, gas, gcc,
13716 gdb, ld and opcodes on v810-*-*.
13718 Tue Sep 12 18:03:31 1995 Ian Lance Taylor <ian@cygnus.com>
13720 * Makefile.in (DO_X): Change do-realclean to do-maintainer-clean.
13721 (local-maintainer-clean): New target.
13722 (maintainer-clean): New target.
13723 (realclean): Just depend upon maintainer-clean.
13725 Fri Sep 8 17:11:14 1995 J.T. Conklin <jtc@rtl.cygnus.com>
13727 * configure.in (noconfigdirs): Disable gdb on m68k-*-netbsd*.
13729 Fri Sep 8 16:46:29 1995 Ian Lance Taylor <ian@cygnus.com>
13731 * configure.in: Build ld in mips*-*-bsd* case.
13733 Thu Sep 7 20:03:41 1995 Ken Raeburn <raeburn@cygnus.com>
13735 * config.sub: Accept -lites* OS. From Ian Dall.
13737 Fri Sep 1 08:06:58 1995 James G. Smith <jsmith@beauty.cygnus.com>
13739 * config.sub: recognise mips64vr4300 and mips64vr4300el as valid
13742 Wed Aug 30 21:06:50 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13744 * configure.in: treat i386-win32 canadian cross the same as
13745 i386-go32 canadian cross.
13747 Thu Aug 24 14:53:20 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13749 * cfg-ml-com.in (powerpc*-*-eabisim): Add support for PowerPC
13750 running under the simulator to build a reduced set of libraries.
13751 (powerpc-*-eabiaix): Add fine grained multilib support added to
13752 other powerpc targets yesterday.
13754 Wed Aug 23 09:41:56 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13756 * cfg-ml-com.in (powerpc*): Add support for -disable-biendian,
13757 -disable-softfloat, -disable-relocatable, -disable-aix, and
13758 -disable-sysv to control which multilib libraries get built.
13760 Thu Aug 17 16:03:41 1995 Ken Raeburn <raeburn@kr-laptop.cygnus.com>
13762 * configure: Add Makefile.tem to list of files to remove in trap
13765 Mon Aug 14 19:27:56 1995 Per Bothner <bothner@kalessin.cygnus.com>
13767 * config.guess (*Linux*): Add missing "exit"s.
13768 Also, need specific check for alpha-unknown-linux (uses COFF).
13770 Fri Aug 11 15:38:20 1995 Per Bothner <bothner@kalessin.cygnus.com>
13772 * config.guess: Merge with FSF:
13774 Wed Jun 28 17:57:27 1995 David Edelsohn <edelsohn@mhpcc.edu>
13775 * config.guess (AIX4): More robust release numbering discovery.
13777 Thu Jun 22 19:01:24 1995 Kenneth Stailey (kstailey@eagle.dol-esa.gov)
13778 * config.guess (i386-sequent-ptx): Properly get version number.
13780 Thu Jun 22 18:36:42 1995 Uwe Seimet (seimet@iris1.chemie.uni-kl.de)
13781 * config.guess (mips:*:4*:UMIPS): New case.
13783 Mon Aug 7 09:21:35 1995 Doug Evans <dje@canuck.cygnus.com>
13785 * configure.in (i386-go32 host): Fix typo (deja-gnu -> dejagnu).
13786 (i386-win32 host): Likewise. Don't build readline.
13788 Sat Aug 5 09:51:49 1995 Fred Fish <fnf@rtl.cygnus.com>
13790 * Makefile.in (GDBTK_SUPPORT_DIRS): Define and pass as part of
13791 SUPPORT_FILES to submakes.
13793 Fri Aug 4 13:04:36 1995 Fred Fish <fnf@cygnus.com>
13795 * Makefile.in (GDB_SUPPORT_DIRS): Add utils.
13796 (DEVO_SUPPORT): Add mpw-README, mpw-build.in, mpw-config.h and
13799 Wed Aug 2 16:32:40 1995 Ken Raeburn <raeburn@cygnus.com>
13801 * configure.in (appdirs): Use =, not ==, in test expression when
13802 trying to build the text to print in the warning message for
13805 Mon Jul 31 09:56:18 1995 steve chamberlain <sac@slash.cygnus.com>
13807 * cfg-ml-com.in (z8k-*-coff): Add 'std' multilib build.
13809 Fri Jul 28 00:16:31 1995 Jeffrey A. Law <law@rtl.cygnus.com>
13811 * config.guess: Recognize lynx-2.3.
13813 Thu Jul 27 15:47:59 1995 steve chamberlain <sac@slash.cygnus.com>
13815 * config.sub (z8ksim): Deleted
13816 (z8k-*-coff): New, this is the one true name of the target.
13818 Thu Jul 27 14:33:33 1995 Doug Evans <dje@canuck.cygnus.com>
13820 * cfg-ml-pos.in (dotdot): Work around SunOS sed bug.
13822 Thu Jul 27 13:31:05 1995 Fred Fish (fnf@cygnus.com)
13824 * config.guess (*:Linux:*:*): First try asking the linker what the
13825 default object file format is (elf, aout, or coff). Then if this
13826 fails, try previous methods.
13828 Thu Jul 27 11:28:17 1995 J.T. Conklin <jtc@rtl.cygnus.com>
13830 * configure.in: Don't build newlib for *-*-vxworks5.1.
13832 Thu Jul 27 11:18:47 1995 Brendan Kehoe <brendan@lisa.cygnus.com>
13834 * configure.in: Don't build newlib for a29k-*-vxworks5.1.
13835 * test-build.mk: Add setting of --with-headers for a29k-vxworks5.1.
13837 Tue Jul 25 21:25:39 1995 Doug Evans <dje@canuck.cygnus.com>
13839 * cfg-ml-pos.in (MULTITOP): Trim excess trailing "/.".
13841 Fri Jul 21 10:41:12 1995 Doug Evans <dje@canuck.cygnus.com>
13843 * cfg-ml-com.in: New file.
13844 * cfg-ml-pos.in: New file.
13846 Wed Jul 19 00:37:27 1995 Jeffrey A. Law <law@rtl.cygnus.com>
13848 * COPYING.NEWLIB: Add HP free copyright to list.
13850 Tue Jul 18 10:58:51 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13852 * config.sub: Recognize -eabi* for the system, not just -eabi.
13854 Mon Jul 3 13:44:51 1995 Steve Chamberlain <sac@slash.cygnus.com>
13856 * Makfile.in (DLLTOOL_FOR_TARGET): New name, pass it down.
13857 * config.sub, configure.in (win32): New target and host.
13859 Wed Jun 28 23:57:08 1995 Steve Chamberlain <sac@slash.cygnus.com>
13861 * configure.in: Add i386-pe configuration.
13863 Fri Jun 23 14:28:44 1995 Stan Shebs <shebs@andros.cygnus.com>
13865 * mpw-build.in (install): Install GDB after LD.
13867 Thu Jun 22 17:10:53 1995 Stan Shebs <shebs@andros.cygnus.com>
13869 * mpw-config.in (elf/mips.h): Always forward-include, needed
13872 Wed Jun 21 15:17:30 1995 Rob Savoye <rob@darkstar.cygnus.com>
13874 * testsuite: New directory for customer acceptance and whole tool
13877 Wed Jun 21 16:50:29 1995 Ken Raeburn <raeburn@cujo.cygnus.com>
13879 * configure: If per-host line isn't found, but AC_OUTPUT is found
13880 and a configure script exists, run it instead.
13882 Thu Jun 15 21:09:24 1995 Per Bothner <bothner@kalessin.cygnus.com>
13884 * config.guess: Update from FSF, for alpha-dec-winnt3.5 and Crays.
13886 Tue Jun 13 21:43:27 1995 Rob Savoye <rob@darkstar.cygnus.com>
13888 * configure: Set build_{cpu,vendor,os,alias} to host values when
13889 --build isn't specified.
13891 Mon Jun 5 18:26:36 1995 Jason Merrill <jason@phydeaux.cygnus.com>
13893 * Makefile.in (PICFLAG, PICFLAG_FOR_TARGET): New macros.
13894 (FLAGS_TO_PASS): Pass them.
13895 (EXTRA_TARGET_FLAGS): Ditto.
13897 Wed May 31 22:27:42 1995 Jim Wilson <wilson@chestnut.cygnus.com>
13899 * Makefile.in (all-libg++): Depend on all-libstdc++.
13901 Thu May 25 22:40:59 1995 J.T. Conklin <jtc@rtl.cygnus.com>
13903 * configure.in (noconfigdirs): Enable all packages for
13904 i386-unknown-netbsd.
13906 Sat May 20 13:22:31 1995 Angela Marie Thomas <angela@cirdan.cygnus.com>
13908 * configure.in (noconfigdirs): Don't configure tk for i386-go32
13909 hosted builds (DOS builds)
13911 Thu May 18 18:08:49 1995 Ken Raeburn <raeburn@kr-laptop.cygnus.com>
13913 Changes for ARM based on patches from Richard Earnshaw:
13914 * config.sub: Handle armeb and armel.
13915 * configure.in: Omit arm linker only for riscix.
13917 Thu May 11 17:23:26 1995 Per Bothner <bothner@kalessin.cygnus.com>
13919 * config.guess: Update from FSF.
13921 Tue May 9 15:52:05 1995 Michael Meissner <meissner@cygnus.com>
13923 * config.sub: Recognize powerpcle as the little endian varient of
13924 the PowerPC. Recgonize ppc as a PowerPC variant, and ppcle as a
13925 powerpcle variant. Convert pentium into i586, not i486. Add p5
13926 alias for i586. Map new x86 variants p6, k5, nexgen into i586
13929 Tue May 2 16:29:41 1995 Jeff Law (law@snake.cs.utah.edu)
13931 * configure.in (hppa*-*-lites*): Treat like hppa*-*-*elf*.
13933 Sun Apr 30 21:38:09 1995 Jeff Law (law@snake.cs.utah.edu)
13935 * config.sub: Accept -lites* as a basic system type.
13937 Thu Apr 27 11:33:29 1995 Michael Meissner (meissner@cygnus.com)
13939 * config.guess (*:Linux:*:*): Check for whether the pre-BFD linker is
13940 installed, and if so return linuxoldld as the system name.
13942 Wed Apr 26 10:59:02 1995 Jeff Law (law@snake.cs.utah.edu)
13944 * config.guess: Add hppa1.1-hp-lites support.
13946 Tue Apr 25 11:08:11 1995 Rob Savoye <rob@darkstar.cygnus.com>
13948 * configure.in: Don't build newlib for m68k-vxworks5.1.
13950 Wed Apr 19 17:02:43 1995 Jim Wilson <wilson@chestnut.cygnus.com>
13952 * configure.in (mips-sgi-irix6): Use mh-irix5.
13954 Fri Apr 14 15:21:17 1995 Doug Evans <dje@chestnut.cygnus.com>
13956 * Makefile.in (all-gcc): Depend on all-ld (for libgcc1-test).
13958 Wed Apr 12 16:06:01 1995 Jason Merrill <jason@phydeaux.cygnus.com>
13960 * test-build.mk: Enable building of shared libraries on IRIX 5 and
13961 OSF/1. Fix compiler flags.
13962 * build-all.mk: Support Linux and OSF/1 3.0. Fix compiler flags.
13964 Tue Apr 11 18:55:40 1995 Doug Evans <dje@canuck.cygnus.com>
13966 * configure.in: Recognize --with-newlib.
13967 (sparc-*-sunos4*): Build sim, dejagnu, expect, tcl if cross target.
13969 Mon Apr 10 14:38:20 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13971 * Makefile.in: move {all,check,install}-gdb from *_MODULES
13972 to *_X11_MODULES due to gdbtk needing X include files et al.
13974 Mon Apr 10 11:42:22 1995 Stan Shebs <shebs@andros.cygnus.com>
13976 Merge in support for Mac MPW as a host.
13977 (Old change descriptions retained for informational value.)
13979 * mpw-config.in: Add generic include forwards for cpu-specific
13980 include files in aout and elf directories.
13982 * mpw-configure: Added copyright.
13983 * mpw-config.in: Check for presence of required build tools.
13984 (target_libs): Add newlib.
13985 (target_tools): Add examples.
13986 (Read Me): Generate as "Read Me for MPW" instead.
13987 * mpw-build.in: Base sub-builds on all-foo instead of do-foo.
13988 (all-byacc, do-byacc, all-flex, do-flex, do-newlib): New actions.
13989 (do-gas, do-gcc, do-gdb, do-ld): Build Version.r first.
13991 * mpw-configure: Remove subdir-specific makefile hackery,
13992 delete mk.tmp after using it.
13994 * mpw-build.in (all): Display start and end times.
13996 * mpw-configure (host_canonical): Set.
13997 (target_cpu): Always add to makefiles.
13998 (ARCHDEFS, EMUL): Add to makefile only if nonempty.
13999 (TM_FILE, XM_FILE, NM_FILE): No longer add to makefile.
14000 (mpw-mh-mpw): Look for in srcdir and srcroot.
14001 Use sed instead of mpw-edit-prefix to edit prefix definitions.
14003 * mpw-build.in: (install-only): New target.
14005 * mpw-configure (host_alias, target_alias): Rename from hostalias
14006 and targetalias, add into generated Makefile.
14007 (mk.tmp): If present, add into generated Makefile.
14008 * mpw-build.in (all-gas): Build config.h first before gas proper.
14010 * mpw-configure (config.status): Write only if changed.
14011 * mpw-config.in (readline): Configure it (not built, just used for
14014 * mpw-config.in (elf/mips.h): Add a forward include.
14016 * mpw-config.in: Forward-include most .h files in include into
14018 (readline): Don't build.
14019 mpw-build.in (install): Install GDB.
14021 * mpw-configure (prefix, mpw_prefix): Handle it.
14022 * mpw-config.in (mmalloc, readline): Don't configure.
14023 * mpw-build.in (thisscript): Rename to ThisScript.
14024 Use mpw-build instead of BuildProgram everywhere.
14025 (mmalloc, readline): Don't build.
14026 * mpw-README: New file, basic documentation about the MPW port.
14028 * mpw-config.in: Use forward-include to create include files.
14030 * mpw-configure: Add more things to the top of each configured
14031 Makefile, including contents of config/mpw-mh-mpw.
14032 * mpw-config.in (extra-include): Create this directory and fill it
14033 with Posix-like include files when configuring.
14035 * config.sub (apple, mac, mpw): Add various aliases.
14037 * mpw-build.in: New file, top-level build script fragment for MPW.
14038 * mpw-configure: New file, configure script for MPW.
14039 * mpw-config.in: New file, config fragment for MPW.
14041 Fri Apr 7 19:33:16 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
14043 * configure.in (host_libs): Remove glob, since it is gone from the
14046 Fri Mar 31 11:36:17 1995 Jason Molenda (crash@phydeaux.cygnus.com)
14048 * Makefile.in: define empty GDB_NLM_DEPS var.
14050 * configure.in(target_makefile_frag): use config/mt-netware
14051 for netware targets.
14053 Thu Mar 30 13:51:43 1995 Ian Lance Taylor <ian@cygnus.com>
14055 * config.sub: Merge in recent FSF changes. Remove linux special
14058 Tue Mar 28 14:47:34 1995 Jason Molenda (crash@phydeaux.cygnus.com)
14060 Revert this change:
14062 Tue Mar 30 10:03:09 1993 Ian Lance Taylor (ian@cygnus.com)
14064 * build-all.mk: Use CC=cc -Xs on Solaris.
14066 Tue Mar 21 10:43:32 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
14068 * glob/*: Removed. Schauer's 24 Feb 1994 readline change made us
14070 * Makefile.in: Nuke all references to glob subdirectory.
14072 Thu Mar 16 13:35:30 1995 Jason Merrill <jason@phydeaux.cygnus.com>
14074 * configure.in: Fix --enable-shared logic in per-host.
14076 Mon Mar 13 12:33:15 1995 Ian Lance Taylor <ian@cygnus.com>
14078 * configure.in (*-hp-hpux[78]*): Use mh-hpux8.
14080 Mon Mar 6 10:21:58 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
14082 * configure.in (noconfigdirs): Don't build gas on AIX, for
14083 powerpc*-*-aix* as well as for rs6000*-*-aix*.
14085 Wed Mar 1 12:51:53 1995 Ian Lance Taylor <ian@cygnus.com>
14087 * configure: Fix --cache-file to work if the file argument is a
14090 Tue Feb 28 17:36:07 1995 Ian Lance Taylor <ian@cygnus.com>
14092 * configure: If the --cache-file is used, pass it down to
14093 configure in subdirectories.
14095 Mon Feb 27 12:52:46 1995 Kung Hsu <kung@mexican.cygnus.com>
14097 * config.sub: add vxworks29k configuration.
14099 Fri Feb 10 16:12:26 1995 Ken Raeburn <raeburn@cujo.cygnus.com>
14101 * Makefile.in (taz): Do "diststuff" part quietly.
14103 Sun Feb 5 14:16:35 1995 Doug Evans <dje@canuck.cygnus.com>
14105 * config.sub: Mini-merge with gcc/config.sub.
14107 Sat Feb 4 12:11:35 1995 Jim Wilson <wilson@chestnut.cygnus.com>
14109 * config.guess (IRIX): Sed - to _.
14111 Fri Feb 3 11:54:42 1995 J.T. Conklin <jtc@rtl.cygnus.com>
14113 * Makefile.in (source-vault, binary-vault): New targets.
14115 Thu Jan 26 13:00:11 1995 Michael Meissner <meissner@cygnus.com>
14117 * config.sub: Recognize -eabi as a basic system type.
14119 Thu Jan 12 13:13:23 1995 Jason Merrill <jason@phydeaux.cygnus.com>
14121 * configure.in (enable_shared stuff): Fix typo.
14123 Thu Jan 12 01:36:51 1995 deanm@medulla.LABS.TEK.COM (Dean Messing)
14125 * Makefile.in (BASE_FLAGS_TO_PASS): Fix typo in passing LIBCXXFLAGS*.
14127 Wed Jan 11 16:29:53 1995 Jason Merrill <jason@phydeaux.cygnus.com>
14129 * Makefile.in (LIBCXXFLAGS_FOR_TARGET): Add -fno-implicit-templates.
14131 Mon Jan 9 12:48:01 1995 Jim Kingdon <kingdon@lioth.cygnus.com>
14133 * configure.in (rs6000-*-*): Don't build gas.
14135 Wed Jan 4 23:53:49 1995 Ian Lance Taylor <ian@tweedledumb.cygnus.com>
14137 * Makefile.in: Use /x/x/ instead of /brokensed/brokensed/, to
14138 reduce command line length.
14139 (AS_FOR_TARGET): Check for as.new, not Makefile.
14140 (NM_FOR_TARGET): Check for nm.new, not Makefile.
14142 Wed Jan 4 13:02:39 1995 Per Bothner <bothner@kalessin.cygnus.com>
14144 * config.guess: Merge from FSF.
14146 Thu Dec 15 17:11:37 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
14148 * configure: Don't use $ when handling program_suffix.
14150 Mon Dec 12 12:09:37 1994 Stu Grossman (grossman@cygnus.com)
14152 * configure.in: Configure tk for hppa/hpux.
14154 Fri Dec 2 15:55:38 1994 Per Bothner <bothner@kalessin.cygnus.com>
14156 * Makefile.in (LIBGXX_SUPPORT_DIRS): Add libstdc++.
14158 Tue Nov 29 19:37:56 1994 Per Bothner <bothner@kalessin.cygnus.com>
14160 * Makefile.in: Move -fno-implicit-template from CXXFLAGS
14161 to LIBCXXFLAGS. Tests are better run without it.
14163 Wed Nov 23 10:29:25 1994 Brendan Kehoe (brendan@lisa.cygnus.com)
14165 * Makefile.in (all-ispell): Depend on all-emacs19 instead of all-emacs.
14167 Mon Nov 21 11:14:01 1994 J.T. Conklin <jtc@rtl.cygnus.com>
14169 * configure.in (*-*-netware*): Don't configure xiberty.
14171 Mon Nov 14 08:49:15 1994 Stu Grossman (grossman@cygnus.com)
14173 * configure.in: Remove tk from native_only list.
14175 Fri Nov 11 15:31:26 1994 Bill Cox (bill@rtl.cygnus.com)
14177 * build-all.mk: Add mips-ncd-elf target to sun4 targets
14178 for special NCD build.
14180 Mon Nov 7 20:58:17 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
14182 * Makefile.in (DEVO_SUPPORT): Remove configure.bat and
14183 makeall.bat, they're only useful for binutils snapshots.
14184 (binutils.tar.gz, gas+binutils.tar.gz): Add configure.bat and
14185 makeall.bat to specified SUPPORT_FILES.
14187 Mon Nov 7 17:25:18 1994 Bill Cox (bill@cirdan.cygnus.com)
14189 * build-all.mk: Add Ericsson targets to sun4 and solaris
14190 hosts. Add BNR's sun4 target to solaris host, so their
14191 build-from-source will be tested in-house first.
14193 Sat Nov 5 18:43:30 1994 Jason Merrill (jason@phydeaux.cygnus.com)
14195 * Makefile.in (LIBCFLAGS): New variable.
14196 (CFLAGS_FOR_TARGET): Ditto.
14197 (LIBCFLAGS_FOR_TARGET): Ditto.
14198 (LIBCXXFLAGS): Ditto.
14199 (CXXFLAGS_FOR_TARGET): Ditto.
14200 (LIBCXXFLAGS_FOR_TARGET): Ditto.
14201 (BASE_FLAGS_TO_PASS): Pass them.
14202 (EXTRA_TARGET_FLAGS): Ditto.
14204 * configure.in: Support --enable-shared.
14206 Sat Nov 5 15:44:00 1994 Per Bothner <bothner@kalessin.cygnus.com>
14208 * configure.in (target_libs): Include libstdc++ again.
14209 * config.guess: Update from FSF (for FreeBSD).
14211 Thu Nov 3 16:32:30 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
14213 * Makefile.in (DEVO_SUPPORT): Include configure.bat and
14215 (DISTDOCDIRS): Add `etc'.
14216 (ETC_SUPPORT_PFX): New variable.
14217 (taz): Include anything from etc starting with a word in
14220 Wed Oct 26 16:19:35 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
14222 * config.sub: Update for recent FSF changes. Remove obsolete
14223 h8300hds entry. Add -windows* and -osx as basic os. Minor
14226 Thu Oct 20 18:41:56 1994 Per Bothner <bothner@kalessin.cygnus.com>
14228 * configure.in (target_libs): Remove libstdc++ for libg++-2.6.1.
14230 * config.guess: Merge with FSF.
14231 * configure.in: Match on i?86-ncr-sysv4.3, not i?86-ncr-sysv43.
14233 Thu Oct 20 19:26:56 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
14235 * configure: Since the "trap 0" handler will override the exit
14236 status on many systems, only use it for "exit 1", and make it set
14237 a non-zero exit status; reset it before "exit 0". Also, check
14238 exit status of config.sub, and error out if it failed.
14240 Wed Oct 19 18:49:55 1994 Rob Savoye (rob@cygnus.com)
14242 * Makefile.in: (ALL_TARGET_MODULES,INSTALL_TARGET_MODULES) Build
14243 and install libgloss.
14245 Tue Oct 18 15:25:24 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
14247 * Makefile.in (all-binutils): Depend upon all-byacc.
14249 * configure.in: Don't build emacs on Irix 5.
14251 Mon Oct 17 16:22:12 1994 J.T. Conklin (jtc@phishhead.cygnus.com)
14253 * configure.in (*-*-netware*): Add libio.
14255 Thu Oct 13 15:51:20 1994 Jason Merrill (jason@phydeaux.cygnus.com)
14257 * Makefile.in (ALL_TARGET_MODULES): Add libstdc++.
14258 (CHECK_TARGET_MODULES): Ditto.
14259 (INSTALL_TARGET_MODULES): Ditto.
14260 (TARGET_LIBS): Ditto.
14261 (all-libstdc++): Note dependencies.
14263 Thu Oct 13 01:43:08 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
14265 * Makefile.in (BINUTILS_SUPPORT_DIRS): Add gas.
14267 Tue Oct 11 12:12:29 1994 Jason Merrill (jason@phydeaux.cygnus.com)
14269 * Makefile.in (CXXFLAGS): Use -fno-implicit-templates instead of
14270 -fexternal-templates.
14272 * configure.in (target_libs): Add libstdc++.
14273 (noconfigdirs): Add libstdc++ as appropriate.
14275 Thu Oct 6 18:00:54 1994 Per Bothner (bothner@kalessin.cygnus.com)
14277 * config.guess: Update from FSF.
14279 Tue Oct 4 12:05:42 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
14281 * configure: Use ${config_shell} when running ${configsub}.
14283 Mon Oct 3 14:28:34 1994 Doug Evans <dje@canuck.cygnus.com>
14285 * config.sub: No longer recognize h8300h.
14287 Mon Oct 3 12:40:54 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
14289 * config.sub: Remove extraneous differences between config.sub and
14292 Sat Oct 1 00:23:12 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
14294 * Makefile.in (DISTSTUFFDIRS): Add gas.
14296 Thu Sep 22 19:04:55 1994 Doug Evans (dje@canuck.cygnus.com)
14298 * COPYING.NEWLIB: New file.
14300 Mon Sep 19 18:25:40 1994 Per Bothner (bothner@kalessin.cygnus.com)
14302 * config.guess (HP-UX): Patch from Harlan Stenn
14303 <harlan@landmark.com> to also emit release level.
14305 Wed Sep 7 13:15:25 1994 Jim Wilson (wilson@sphagnum.cygnus.com)
14307 * config.guess (sun4*:SunOS:*:*): Change '-JL' to '_JL'.
14309 Tue Sep 6 23:23:18 1994 Per Bothner (bothner@kalessin.cygnus.com)
14311 * config.sub: Merge nextstep cleanup from FSF.
14313 Mon Sep 5 05:01:30 1994 Ken Raeburn (raeburn@kr-pc.cygnus.com)
14315 * configure.in (arm-*-*): Don't configure ld for this target.
14317 Thu Sep 1 09:35:00 1994 J.T. Conklin (jtc@phishhead.cygnus.com)
14319 * configure.in (*-*-netware): don't configure libg++, libio,
14322 Wed Aug 31 13:52:08 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14324 * configure.in (alpha-dec-osf*): Use osf*, not osf1*. Don't
14325 configure ld--it works, but it doesn't support shared libraries.
14327 Sun Aug 28 18:13:45 1994 Per Bothner (bothner@kalessin.cygnus.com)
14329 * config.guess (*-unknown-freebsd*): Get rid of possible
14330 trailing "(Release)" in version string.
14331 Patch from Paul Richards <paul@isl.cf.ac.uk>.
14333 Sat Aug 27 15:00:49 1994 Per Bothner (bothner@kalessin.cygnus.com)
14335 * config.guess: Fix i486-ncr-sysv43 -> i486-ncr-sysv4.3.
14336 Fix type: *-next-neststep -> *-next-nextstep.
14338 * config.guess: Merge from FSF:
14340 Fri Aug 26 18:45:25 1994 Philippe De Muyter (phdm@info.ucl.ac.be)
14342 * config.guess: Recognize powerpc-ibm-aix3.2.5.
14344 Wed Apr 20 06:36:32 1994 Philippe De Muyter (phdm@info.ucl.ac.be)
14346 * config.guess: Recognize UnixWare 1.1 (UNAME_SYSTEM is SYSTEM_V
14347 instead of UNIX_SV for UnixWare 1.0).
14349 Sat Aug 27 01:56:30 1994 Stu Grossman (grossman@cygnus.com)
14351 * Makefile.in (all-gdb): Add dependencies on all-gcc and all-ld
14352 to make gdb/nlm/* build after the compiler and linker.
14354 Fri Aug 26 14:30:05 1994 Per Bothner (bothner@kalessin.cygnus.com)
14356 * config.guess (netbsd, freebsd, linux): Accept any machine,
14358 (m68k-atari-sysv4): Relocate to match FSF version.
14360 * config.guess: More merges from the FSF:
14362 Add a space before function call or macro invocation.
14364 Tue May 10 16:53:55 1994 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
14366 * config.guess: Add trap cmd to remove dummy.c and dummy when
14369 Wed Apr 20 18:07:13 1994 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
14371 * config.guess (dummy.c): Redirect stderr for `hostinfo' command.
14372 (dummy): Redirect stderr from compilation of dummy.c.
14374 Sat Apr 9 14:59:28 1994 Christian Kranz (kranz@sent5.uni-duisburg.de)
14376 * config.guess: Distinguish between NeXTStep 2.1 and 3.x.
14378 Fri Aug 26 13:42:20 1994 Ken Raeburn (raeburn@kr-laptop.cygnus.com)
14380 * configure: Accept and ignore --cache*, for compatibility with
14383 Fri Aug 26 13:05:27 1994 Per Bothner (bothner@kalessin.cygnus.com)
14385 * config.guess: Merge from FSF:
14387 Thu Aug 25 20:28:51 1994 Richard Stallman <rms@mole.gnu.ai.mit.edu>
14389 * config.guess (Pyramid*:OSx*:*:*): New case.
14390 (PATH): Add /.attbin at end for finding uname.
14391 (dummy.c): Handle i860-alliant-bsd. Follow whitespace conventions.
14393 Wed Aug 17 18:21:02 1994 Tor Egge (tegge@pvv.unit.no)
14395 * config.guess (M88*:DolphinOS:*:*): New case.
14397 Thu Aug 11 17:00:13 1994 Stan Cox (coxs@dg-rtp.dg.com)
14399 * config.guess (AViiON:dgux:*:*): Use TARGET_BINARY_INTERFACE
14400 to select whether to use ELF or COFF.
14402 Sun Jul 24 16:20:53 1994 Richard Stallman <rms@mole.gnu.ai.mit.edu>
14404 * config.guess: Recognize i860-stardent-sysv and i860-unknown-sysv.
14406 Sun May 1 10:23:10 1994 Richard Stallman (rms@mole.gnu.ai.mit.edu)
14408 * config.guess: Guess the OS version for HPUX.
14410 Tue Mar 1 21:53:03 1994 Karl Heuer (kwzh@hal.gnu.ai.mit.edu)
14412 * config.guess (UNAME_VERSION): Recognize aix3.2.4 and aix3.2.5.
14414 Fri Aug 26 11:19:08 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14416 * configure.in: Recognize --with-headers, --with-libs, and
14418 * Makefile.in (all-xiberty): Depend upon all-ld.
14420 Wed Aug 24 12:36:50 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14422 * configure.in: Change i[34]86 to i[345]86.
14424 Mon Aug 22 10:58:33 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14426 * configure (version): A few more tweaks to help message.
14428 Fri Aug 19 12:40:25 1994 Per Bothner (bothner@kalessin.cygnus.com)
14430 * Makefile.in: Remove (for now) librx as a host library,
14431 now that we're building it for target.
14433 Fri Aug 19 10:49:17 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14435 * configure: Fix up help message; from karl@owl.hq.ileaf.com
14438 Tue Aug 16 16:11:08 1994 Per Bothner (bothner@kalessin.cygnus.com)
14440 * configure.in: Also configure librx.
14442 Mon Aug 15 16:51:45 1994 Per Bothner (bothner@kalessin.cygnus.com)
14444 * Makefile.in: Update various rules to reflect that librx
14445 is now needed for libg++.
14447 Fri Aug 12 18:07:21 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14449 * config.sub: Accept mips64orion and mips64orionel as a CPU name.
14451 Mon Aug 8 11:36:17 1994 Stan Shebs (shebs@andros.cygnus.com)
14453 * configure.in: Configure the examples directory.
14455 Thu Aug 4 16:12:36 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14457 * configure: Simplify Jun 2 1994 change.
14459 Wed Aug 3 04:58:16 1994 D. V. Henkel-Wallace (gumby@cygnus.com)
14461 * change CC to /usr/latest/bin/gcc for lynx host builds, since
14462 /bin/gcc isn't good enough to build gcc.
14464 Wed Jul 27 09:07:14 1994 Fred Fish (fnf@cygnus.com)
14466 * Makefile.in (GDB_SUPPORT_FILES): Remove
14467 (setup-dirs-gdb, gdb.tar.gz, make-gdb.tar.gz): Remove old rules.
14468 (gdb.tar.gz): Add new rule to use standard distribution building
14471 Mon Jul 25 11:10:06 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14473 * configure.in: Warn about use of /usr/ucb/cc on Solaris. From
14474 Bill Cox <bill@cygnus.com>.
14476 Sat Jul 23 12:19:46 1994 Per Bothner (bothner@kalessin.cygnus.com)
14478 * config.guess: Recognize ISC. Patch from kwzh@gnu.ai.mit.edu.
14480 Fri Jul 22 17:53:59 1994 Stu Grossman (grossman@cygnus.com)
14482 * configure: Search current dir first in .gdbinit.
14484 Fri Jul 22 11:28:30 1994 Per Bothner (bothner@kalessin.cygnus.com)
14486 * config.sub: Recognize freebsd (merged from gcc config.sub).
14488 Thu Jul 21 14:10:52 1994 Per Bothner (bothner@kalessin.cygnus.com)
14490 * config.sub: Refer to NeXT's operating system as nextstep.
14492 * config.sub (case $basic_machine): Re-order the cases, to match
14493 the order in the FSF version (which is mostly alphabethical).
14494 Merge in some additions and changes from the FSF.
14496 Sat Jul 16 12:03:08 1994 Stan Shebs (shebs@andros.cygnus.com)
14498 * config.guess: Recognize m68k-atari-sysv4 and m88k-harris-csux7.
14499 * config.sub: Recognize cxux7.
14500 * configure.in: Use mh-cxux for m88k-harris-cxux*.
14502 Mon Jul 11 14:37:39 1994 Per Bothner (bothner@kalessin.cygnus.com)
14504 * config.sub: Fix typo powerpc -> powerpc-*.
14506 Sat Jul 9 13:03:43 1994 Michael Tiemann (tiemann@blues.cygnus.com)
14508 * Makefile.in: `all-emacs19' depends on `all-byacc'.
14510 * Makefile.in: Add all-emacs19 and install-emacs19 rules (in
14511 parallel with all-emacs and install-emacs). Top-level command
14512 `make all-emacs19 CC=gcc' now behaves as `make all-emacs CC=gcc'.
14514 Thu Jun 30 16:53:42 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14516 * test-build.mk ($(host)-stamp-stage2-installed): Remove
14517 $(relbindir)/make before doing ``make install'', and use
14518 $(GNU_MAKE) while doing it. Avoids problem on SunOS with
14519 installing over running make binary.
14520 ($(host)-stamp-stage3-installed): Likewise.
14522 Tue Jun 28 13:43:25 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14524 * config.guess: Recognize Mach.
14526 Mon Jun 27 16:41:14 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14528 * configure: Check ${exec_prefixoption}, not ${exec_prefix}, to
14529 see whether --exec-prefix was used.
14531 Sun Jun 26 21:15:54 1994 Per Bothner (bothner@kalessin.cygnus.com)
14533 * README: Explicitly mention libg++/README. (Zoo's idea.)
14535 Tue Jun 21 12:45:55 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14537 * Makefile.in: Add all-librx target similar to all-libproc.
14539 Wed Jun 8 23:11:55 1994 Stu Grossman (grossman@cygnus.com)
14541 * config.guess: Rearrange tests for Alpha-OSF1 to properly deal
14542 with post 1.2 uname bogosity.
14544 Thu Jun 9 00:27:59 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14546 * configure: Remove temporary files on receipt of a signal.
14548 Tue Jun 7 12:06:24 1994 Ian Lance Taylor (ian@cygnus.com)
14550 * configure: If there is a package_makefile_frag, remove
14551 ${subdir}/Makefile.tem after copying it in.
14553 Mon Jun 6 21:35:02 1994 D. V. Henkel-Wallace (gumby@cygnus.com)
14555 * build_all.mk: support rs6000 lynx identifies itself as
14556 rs6000-lynx-lynxos2.2.2. Also, use /usr/cygnus/progressive/bin/gcc
14557 since /bin/gcc is too feeble to compile a modern gcc.
14559 Mon Jun 6 16:06:34 1994 Karen Christiansen (karen@cirdan.cygnus.com)
14561 * brought devo/test-build.mk update-to-date with progressive/
14562 test-build.mk. Add lynx targets and hppa flag info.
14564 Sat Jun 4 17:23:54 1994 Per Bothner (bothner@kalessin.cygnus.com)
14566 * configure.in: Use mh-ncrsvr43. Patch from
14567 Tom McConnell <tmcconne@sedona.intel.com>.
14569 Fri Jun 3 17:47:24 1994 Per Bothner (bothner@kalessin.cygnus.com)
14571 * config.guess (i386-unknown-bsdi): No longer need to
14572 check #if defined(__bsdi__) && defined(__i386__).
14574 Thu Jun 2 18:56:46 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14576 * configure: Set program_transform_nameoption correctly.
14578 Thu Jun 2 10:57:06 1994 Karen Christiansen (karen@cirdan.cygnus.com)
14580 * brought build-all.mk update-to-date with progressive build-all.mk,
14581 added new targets and hppa info.
14583 Thu Jun 2 00:12:44 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14585 * configure: If config.guess result is a prefix of the user
14586 specified target, assume a native build and use the user specified
14587 target as the host alias. Remove SunOS patch suffix removal hack.
14588 * configure.in: Remove SunOS patch suffix removal hack.
14590 * Makefile.in (CROSS_CHECK_MODULES): Remove check-flex, since it's
14591 in NATIVE_CHECK_MODULES.
14593 Wed Jun 1 10:49:41 1994 Bill Cox (bill@rtl.cygnus.com)
14595 * Makefile.in: Rename HOST_ONLY to NATIVE.
14596 * configure: Delete SunOs patch suffix from host_canonical
14597 and build_canonical variables that are prepended to Makefiles.
14598 * configure.in: Add comments for easier maintenance.
14600 Tue May 31 19:39:47 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14602 * Makefile.in: Add all-libproc target similar to all-gui.
14604 Tue May 31 17:16:33 1994 Tom Lord (lord@cygnus.com)
14606 * Makefile.in (CHECK_MODULES): split into
14607 HOST_ONLY_CHECK_MODULES and CROSS_CHECK_MODULES.
14609 Tue May 31 16:36:36 1994 Paul Eggert (eggert@twinsun.com)
14611 * config.guess (i386-unknown-bsdi): New system to guess.
14613 Wed May 25 16:47:10 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14615 * Makefile.in: Add all-gui target (but not yet build by "all").
14617 Thu May 26 08:53:19 1994 Bill Cox (bill@rtl.cygnus.com)
14619 * config.sub: Move deletion of patch suffix from here...
14620 * configure.in: To here, at Ian's suggestion. The top-
14621 level scripts might need to know of a patch level.
14623 Wed May 25 09:15:54 1994 Bill Cox (bill@rtl.cygnus.com)
14625 * config.sub: Strip off patch suffix so rtl is recognized
14626 as a sunos4.1.3 machine, even though it's been patched.
14628 Fri May 20 08:25:49 1994 Steve Chamberlain (sac@deneb.cygnus.com)
14630 * Makefile.in (INSTALL_LAST): Delete.
14631 (INSTALL_DOSREL): New.
14633 Thu May 19 17:12:12 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14635 * configure.in: Use ld for i[34]86-*-sysv4* and sparc-*-solaris2*.
14636 Don't set use_gnu_ld to no for *-*-sysv4; that only controls
14637 whether we pass down --with-gnu-ld anyhow.
14639 Thu May 19 09:29:12 1994 Steve Chamberlain (sac@cygnus.com)
14641 * Makefile.in (INSTALL_LAST): Change operation so it works
14642 on more flavors of make.
14643 * configure.in (go32): Don't build libg++ or libio.
14645 Fri May 13 13:28:34 1994 Steve Chamberlain (sac@cygnus.com)
14647 * Makefile.in (Move HOST_PREFIX_1 and friends up so
14648 they can be overriden by templates.
14650 Sat May 7 16:46:44 1994 Steve Chamberlain (sac@cygnus.com)
14652 * configure.in (target==go32): Don't build gdb.
14653 * dosrel: New directory.
14655 Fri May 6 14:19:25 1994 Steve Chamberlain (sac@cygnus.com)
14657 * configure.in (host==go32): Configure dosrel too.
14658 * Makefile.in (INTALL_TARGET): Call INSTALL_LAST last.
14659 (HOST_CC, HOST_PREFIX, HOST_PREFIX_1): Undefine, they should
14660 be set by incoming names or templates.
14661 (INSTALL_LAST): New rule.
14663 Thu May 5 17:35:05 1994 Stan Shebs (shebs@andros.cygnus.com)
14665 * config.sub (sparclitefrw, sparclitefrwcompat): Don't set the os.
14667 Thu May 5 20:06:45 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
14669 * configure.in (appdirs): New variable. Currently empty, but will
14670 be used in gas distribution. If nonempty, lists a set of
14671 directories at least one of which must get configured, or top
14672 level configuration is considered to have failed.
14673 (rs6000-*-lynxos*): Use new file name.
14675 Thu May 5 13:38:36 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14677 Eliminate XTRAFLAGS.
14678 * Makefile.in (CC_FOR_TARGET): If newlib exists, refer to the
14679 newlib include files using -idirafter, and also use -nostdinc.
14680 (CXX_FOR_TARGET): Likewise.
14681 (XTRAFLAGS): Removed.
14682 (BASE_FLAGS_TO_PASS): Remove XTRAFLAGS_FOR_TARGET.
14683 (EXTRA_HOST_FLAGS): Remove XTRAFLAGS.
14684 (EXTRA_TARGET_FLAGS, EXTRA_GCC_FLAGS): Likewise.
14685 ($(DO_X)): Don't pass down XTRAFLAGS.
14687 Thu May 5 00:16:36 1994 Ken Raeburn (raeburn@kr-pc.cygnus.com)
14689 * configure.in (mips*-dec-bsd*): New target; do build linker.
14690 (mips*-*-bsd*): New target; don't build linker.
14692 Wed May 4 20:10:10 1994 D. V. Henkel-Wallace (gumby@cygnus.com)
14694 * configure.in: support rs6000-*-lynxos* configuration.
14695 support sunos4 as a cross target.
14697 * config.sub: look for lynx*, not lynx since the OS version may
14698 legitimately be part of the name.
14700 Tue May 3 21:48:11 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
14702 * configure.in (i[34]86-*-sco*): Move to be with other i386
14704 (romp-*-*): New target. Skip various binary utilities.
14705 (vax-*-*): New target. Don't build newlib.
14706 (vax-*-vms): Renamed from *-*-vms. Don't build opcodes or newlib.
14708 Thu Apr 28 15:03:05 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14710 * configure.in: Only set host_makefile_frag if config
14713 Wed Apr 27 12:14:30 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14715 * install.sh: If $dstdir exists, don't check whether each
14718 Tue Apr 26 18:11:33 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14720 * test-build.mk (HOLES): Add sleep; used by rcs/src/conf.sh.
14722 Mon Apr 25 15:06:34 1994 Stan Shebs (shebs@andros.cygnus.com)
14724 * configure.in (*-*-lynxos*): Don't configure newlib for either
14725 native or cross Lynx.
14727 Sat Apr 16 11:58:16 1994 Doug Evans (dje@canuck.cygnus.com)
14729 * config.sub (sparc64-elf): Fix os.
14730 (z8k): Remove duplicate.
14732 Thu Apr 14 23:33:17 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14734 * Makefile.in (gcc-no-fixedincludes): Touch gcc/include/fixed, not
14735 gcc/stmp-fixproto, to try to prevent fixproto from being run.
14737 Wed Apr 13 15:14:52 1994 Bill Cox (bill@cygnus.com)
14739 * configure: Make file links cleanly even if Lynx fails on
14740 an NFS symlink (at least fail cleanly).
14742 Mon Apr 11 10:58:56 1994 Jim Wilson (wilson@sphagnum.cygnus.com)
14744 * test-build.mk (CC): For mips-sgi-irix4, change -XNh1500 to
14747 Sat Apr 9 15:10:45 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14749 * configure: Unknown options are fatal again.
14751 Fri Apr 8 12:01:41 1994 David J. Mackenzie (djm@cygnus.com)
14753 * configure: Ignore --x-includes and --x-libraries, for Autoconf
14756 Thu Apr 7 17:31:43 1994 Doug Evans (dje@canuck.cygnus.com)
14758 * build-all.mk: Add `clean' target.
14760 Wed Apr 6 20:44:56 1994 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
14762 * config.guess: Add SINIX support.
14763 * configure.in: Add mips-*-sysv4* support.
14765 Mon Apr 4 17:41:44 1994 Doug Evans (dje@canuck.cygnus.com)
14767 * build-all.mk: Document all useful targets.
14768 If canonhost is sparc-sun-solaris2.3, change it to sparc-sun-solaris2.
14769 If canonhost is mips-sgi-irix4.0.5H, change it to mips-sgi-irix4.
14771 Thu Mar 31 04:55:57 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14773 * configure: Support --silent, --quiet.
14775 Wed Mar 30 21:37:38 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14777 * configure: Support --disable-FEATURE.
14779 Tue Mar 29 19:15:05 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14781 * config.guess: Recognize NCR running SVR4.3.
14783 Mon Mar 28 14:55:15 1994 Per Bothner (bothner@kalessin.cygnus.com)
14785 * config.guess: Make BSDI generate i386-unknown-bsd386.
14786 Patch from Paul Eggert <eggert@twinsun.com>.
14788 Mon Mar 28 12:54:52 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14790 * configure.in (powerpc-*-aix*): Treat like rs6000-*-*.
14792 Sat Mar 26 11:25:48 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14794 * configure: Make unrecognized options give nonfatal warnings
14795 instead of fatal errors, and pass them to any subdirectory
14796 configures in case they recognize them.
14797 Make --x equivalent to --with-x.
14799 Fri Mar 25 21:52:10 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14801 * configure: Add --enable-* options. Clean up usage message and
14804 Thu Mar 24 09:12:53 1994 Doug Evans (dje@canuck.cygnus.com)
14806 * Makefile.in (NM_FOR_TARGET): Build tree version is now nm.new.
14808 Sun Mar 20 11:28:22 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
14810 * configure.in (hppa*-*-*): Enable binutils.
14812 Sat Mar 19 11:50:16 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14814 * config.sub: Recognize cisco.
14816 Fri Mar 18 16:42:32 1994 Jason Merrill (jason@deneb.cygnus.com)
14818 * Makefile.in (CXXFLAGS): Add -fexternal-templates.
14820 Tue Mar 15 11:25:55 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14822 * config.guess: about target *-hitachi-hiuxwe2, don't print more
14823 than one configuration name. Add comment.
14825 Sun Mar 6 23:13:38 1994 Hisashi MINAMINO (minamino@sra.co.jp)
14827 * config.guess: about target *-hitachi-hiuxwe2, fixed
14828 machine guessing order. [Hitachi's CPU_IS_HP_MC68K
14829 macro is incorrect.]
14831 Sun Mar 13 09:10:08 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14833 * Makefile.in (TAGS): Just build TAGS in each subdirectory, rather
14834 than the "make ls" stuff which used to be here.
14836 Fri Mar 11 12:52:39 1994 Per Bothner (bothner@kalessin.cygnus.com)
14838 * config.guess: Recognize i[34]86-unknown-freebsd.
14839 From Shawn M Carey <smcarey@rodan.syr.edu>.
14841 Thu Mar 3 14:24:21 1994 Per Bothner (bothner@kalessin.cygnus.com)
14843 * configure.in (noconfigdirs for alpha): Remove libg++ and libio.
14845 Wed Mar 2 13:28:48 1994 Jim Kingdon (kingdon@deneb.cygnus.com)
14847 * config.guess: Check for ptx.
14849 Mon Feb 28 16:46:50 1994 Kung Hsu (kung@mexican.cygnus.com)
14851 * config.sub: Add os9k checking.
14853 Thu Feb 24 07:09:04 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
14855 * config.guess: Handle OSF1 running on HPPA processors
14857 Fri Feb 18 14:14:00 1994 Ken Raeburn (raeburn@rtl.cygnus.com)
14859 * configure: If subdir configure fails, print out a message with
14860 subdirectory name, in case subdir's configure code didn't identify
14863 Fri Feb 18 12:50:15 1994 Doug Evans (dje@cygnus.com)
14865 * configure.in: Remove embedded newlines from configdirs.
14866 Avoid mismatches of substrings. Fix matching strings at end
14869 Fri Feb 11 15:33:33 1994 Stu Grossman (grossman at cygnus.com)
14871 * config.guess: Add Lynx/rs6000 config support.
14873 Tue Feb 8 13:41:09 1994 Ken Raeburn (raeburn@rtl.cygnus.com)
14875 * configure.in (alpha-dec-osf1*, alpha*-*-*): Build gas.
14877 Mon Feb 7 15:42:36 1994 Jeffrey A. Law (law@cygnus.com)
14879 * configure.in (hppa*-*-osf*): Treat this just like most other
14880 PA configurations (eg no binutils or ld).
14881 (hppa*-*-*elf*): These configurations have binutils and ld.
14883 Sun Feb 6 16:35:07 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
14885 * config.sub (hiux): Fix typo. From m-kasahr@sramhc.sra.co.JP.
14887 Sat Feb 5 01:00:33 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14889 * configure.in (rs6000-*-*): Build gas.
14891 Wed Feb 2 13:57:57 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
14893 * Makefile.in: Avoid bug in losing hpux sed.
14895 Wed Feb 2 14:53:05 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14897 * Makefile.in, test-build.mk: Remove MUNCH_NM; it was only needed
14898 for GDB and GDB has been fixed to not need it.
14900 Sun Jan 30 17:58:06 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
14902 * config.guess: Recognize vax hosts.
14904 Fri Jan 28 15:29:38 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
14906 * configure (while loop): Don't use "break 2" inside case
14907 statement -- the case statement isn't an enclosing loop.
14909 Mon Jan 24 18:40:06 1994 Per Bothner (bothner@kalessin.cygnus.com)
14911 * config.guess: Clean up NeXT support, to allow nextstep
14912 on Intel machines. Make OS be nextstep.
14914 Sun Jan 23 18:47:22 1994 Richard Kenner (kenner@vlsi1.ultra.nyu.edu)
14916 * config.guess: Add alternate forms for Convex.
14918 Thu Jan 20 16:13:41 1994 Stu Grossman (grossman at cygnus.com)
14920 * configure: Completely rewrite option processing. Take
14921 advantage of pattern-matching to avoid invoking test frequently.
14922 Also clean up host and target defaulting logic.
14924 Mon Jan 17 15:06:56 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
14926 * Makefile.in: Replace all occurrances of "rootme" with "r" and
14927 "$${rootme}" with "$$r", to increase the likelihood that the do-*
14928 commands (plus user environment) will fit SCO limits.
14930 Thu Jan 6 11:20:57 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14932 * configure.in: Don't issue warnings about directories which are
14933 not being configured if -norecursion is set. Correct test for
14934 --with-gnu-as and --with-gnu-ld to not get confused by substring
14937 * configure.in: Don't build gas for alpha-dec-osf1*.
14939 Tue Jan 4 17:10:19 1994 Stu Grossman (grossman at cygnus.com)
14941 * configure: Back out Per's change of 12/19/1993. It changes the
14942 behavior of configure in unexpected and confusing ways.
14944 Also, use different delim char when calculating
14945 program_transform_name so that the name can contain slashes.
14947 Sat Jan 1 13:45:31 1994 Rob Savoye (rob@darkstar.cygnus.com)
14949 * configure.in, config.sub: Add support for VSTa micro-kernel.
14951 Sat Dec 25 20:00:47 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
14953 * configure.in: Nuke hacks which were used to get a special
14954 version of GAS for HPPA configurations.
14956 Sun Dec 19 20:40:44 1993 Per Bothner (bothner@kalessin.cygnus.com)
14958 * configure: If only ${target_alias} is given, use that
14959 as the default for ${host_alias}.
14960 * configure: Add missing back-slashes before nested quotes.
14962 Wed Dec 15 18:07:18 1993 david d `zoo' zuhn (zoo@andros.cygnus.com)
14964 * Makefile.in (BASE_FLAGS_TO_PASS): add YACC=$(BISON)
14966 Tue Dec 14 21:25:33 1993 Per Bothner (bothner@cygnus.com)
14968 * config.guess: Recognize some Tektronix configurations.
14969 From Kaveh R. Ghazi <ghazi@noc.rutgers.edu>.
14971 Sat Dec 11 11:18:00 1993 Steve Chamberlain (sac@thepub.cygnus.com)
14973 * config.sub: Match any flavor of SH.
14975 Thu Dec 2 17:16:58 1993 Ken Raeburn (raeburn@cujo.cygnus.com)
14977 * configure.in: Don't try to configure newlib for Alpha.
14979 Thu Dec 2 14:35:54 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14981 * configure.in: Don't build ld for Irix 5. Don't build gas,
14982 libg++ or libio for any Alpha target.
14984 * configure.in (mips*-sgi-irix5*): New target; use mh-irix5.
14986 Wed Dec 1 17:00:33 1993 Jason Merrill (jason@deneb.cygnus.com)
14988 * Makefile.in (GZIPPROG): Renamed from GZIP, which gzip uses for
14989 default arguments -- so it tried to compress itself.
14991 Tue Nov 30 13:45:15 1993 david d `zoo' zuhn (zoo@andros.cygnus.com)
14993 * configure.in (notsupp): ensure that a space is always at the end
14994 of the configdirs list, since the grep checks for an explicit space
14996 Tue Nov 16 15:04:27 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
14998 * configure.in (target i386-sysv4.2): don't build ld, since static
14999 versions of many libraries are not available.
15001 Tue Nov 16 14:28:12 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15003 * config.guess: Recognize Apollos (using environment variables).
15004 * configure.in: Don't configure ld, binutils, or gprof for Apollo.
15006 Thu Nov 11 12:03:50 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15008 * config.guess: Recognize Sony news mips running newsos.
15010 Wed Nov 10 16:57:00 1993 Mark Eichin (eichin@cygnus.com)
15012 * Makefile.in (all-cygnus, build-cygnus): "fi else" needs to be
15013 "fi ; else" for bash.
15015 Tue Nov 9 15:54:01 1993 Mark Eichin (eichin@cygnus.com)
15017 * Makefile.in (BASE_FLAGS_TO_PASS): pass SHELL.
15019 Fri Nov 5 08:07:27 1993 D. V. Henkel-Wallace (gumby@blues.cygnus.com)
15021 * config.sub: accept unixware as an alias for svr4.2.
15022 Fix some inconsistancies with the gcc version.
15024 Fri Nov 5 15:14:12 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15026 * Makefile.in (DISTDOCDIRS): Add gdb.
15028 Fri Nov 5 11:59:42 1993 Per Bothner (bothner@kalessin.cygnus.com)
15030 * Makefile.in (DISTDOCDIRS): Add libg++ and libio.
15032 Fri Nov 5 10:35:05 1993 Ken Raeburn (raeburn@rover.cygnus.com)
15034 * Makefile.in (taz): Only build "info" in DISTDOCDIRS.
15035 (DISTDOCDIRS): Don't assume libg++ and gdb folks necessarily want
15038 Thu Nov 4 18:58:23 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15040 * config.sub: Accept hiux* as an OS name.
15042 * Makefile.in: Change RUNTEST_FLAGS back to RUNTESTFLAGS per
15043 etc/make-stds.texi. The underscore came from gcc, and dje now
15044 agrees that RUNTESTFLAGS is the correct name.
15046 Thu Nov 4 10:49:01 1993 Per Bothner (bothner@kalessin.cygnus.com)
15048 * install.sh: Remove 'set -e'. It makes any conditionals
15049 in the script useless.
15051 * config.guess: Automatically recognize arm-acorn-riscix
15052 Patch from Richard Earnshaw (rwe11@cl.cam.ac.uk).
15054 Thu Nov 04 08:08:04 1993 Jeffrey Wheat (cassidy@cygnus.com)
15056 * Makefile.in: Change RUNTESTFLAGS to RUNTEST_FLAGS
15058 Wed Nov 3 22:09:46 1993 Ken Raeburn (raeburn@rtl.cygnus.com)
15060 * Makefile.in (DISTDOCDIRS): New variable.
15061 (taz): Edit local Makefile.in sooner, instead of proto-toplev
15062 Makefile.in later. Build "info" and "dvi" in DISTDOCDIRS.
15064 Wed Nov 3 21:31:52 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15066 * configure.in (hppa target): check the source directory for the
15067 pagas sub-directory
15069 Wed Nov 3 11:12:22 1993 Doug Evans (dje@canuck.cygnus.com)
15071 * config.sub: Allow -aout* and -elf*.
15073 Wed Nov 3 11:08:33 1993 Ken Raeburn (raeburn@rtl.cygnus.com)
15075 * configure.in: Don't build ld on i386-solaris2, same as for
15078 Tue Nov 2 14:21:25 1993 Per Bothner (bothner@kalessin.cygnus.com)
15080 * Makefile.in (taz): Add texinfo/lgpl.texinfo (for libg++).
15082 Tue Nov 2 13:38:30 1993 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
15084 * configure.in: Configure gdb for alpha.
15086 Mon Nov 1 10:42:54 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15088 * Makefile.in (CXXFLAGS): Add -O.
15090 Wed Oct 27 10:45:06 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15092 * config.guess: added support for DG Aviion
15094 Tue Oct 26 14:37:37 1993 Ken Raeburn (raeburn@rover.cygnus.com)
15096 * configure.in: Produce warning message for subdirectories not
15097 configurable for this host/target combination. Don't try to
15098 configure gdb for vms.
15100 Mon Oct 25 11:22:15 1993 Ken Raeburn (raeburn@rover.cygnus.com)
15102 * Makefile.in (taz): Replace "byacc" with "bison -y" in the
15103 appropriate files before making "diststuff".
15104 (DISTBISONFILES): New var: list of files to be edited.
15105 (DISTSTUFFDIRS): Add binutils.
15107 Fri Oct 22 20:32:15 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15109 * config.sub: also handle mipsel and mips64el (for little endian mips)
15111 Fri Oct 22 07:59:20 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15113 * configure.in: Add * to end of all OS names.
15115 Thu Oct 21 11:38:28 1993 Stan Shebs (shebs@rtl.cygnus.com)
15117 * configure.in: Build newlib for LynxOS native.
15119 Wed Oct 20 09:56:12 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15121 * config.guess: Add support for delta 88k running SVR3.
15123 * configure.in: Add comment about HP compiler vs. emacs.
15125 Tue Oct 19 16:02:22 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15127 * configure.in: don't build ld on solaris2 (not a viable option
15128 due to bugs in getpwnam & getpwuid)
15130 Tue Oct 19 15:13:56 1993 Ken Raeburn (raeburn@rtl.cygnus.com)
15132 * configure.in: Accept alpha-dec-osf1*, not just -osf1, since
15133 config.guess will produce a full version number.
15135 Tue Oct 19 15:58:01 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
15137 * configure.in: Build linker and binutils for alpha-dec-osf1.
15139 Tue Oct 19 11:41:55 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15141 * Makefile.in: Remove -O from CXXFLAGS for consistency with CFLAGS,
15142 and gdb/testsuite/Makefile.in.
15144 Sat Oct 9 18:39:07 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15146 * configure.in: recognize mips*- instead of mips-
15148 Fri Oct 8 14:15:39 1993 Ken Raeburn (raeburn@cygnus.com)
15150 * config.sub: Accept linux*coff and linux*elf as operating
15153 Thu Oct 7 12:57:19 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
15155 * config.sub: Recognize mips64, and mips3 as an alias for it.
15157 Wed Oct 6 13:54:21 1993 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
15159 * configure.in: Remove alpha-dec-osf*, no longer necessary now that
15160 gdb knows how to handle OSF/1 shared libraries.
15162 Tue Oct 5 11:55:04 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15164 * configure.in: Recognize hppa*-*-hiux* (currently synonym for hpux).
15165 * config.guess: Recognize Hitachi's HIUX.
15166 * config.sub: Recognize h3050r* and hppahitachi.
15167 Remove redundant cases for hp9k[23]*.
15169 Mon Oct 4 16:15:09 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15171 * configure.in: default to '--with-gnu-as' and '--with-gnu-ld'
15172 if gas and ld are in the source tree and are in ${configdirs}.
15173 If ${use_gnu_as} or ${use_gnu_ld} are 'no', then don't set the
15174 --with options (but still pass them down on the command line,
15175 if they were explicitly specified).
15177 Fri Sep 24 19:11:13 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15179 * configure: substitute SHELL value in Makefile.in with
15182 Thu Sep 23 18:05:13 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
15184 * configure.in: Build gas, ld, and binutils for *-*-sysv4* and
15185 *-*-solaris2* targets.
15187 Sun Sep 19 17:01:41 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15189 * Makefile.in: define M4, and pass it down to sub-makes;
15190 all-autoconf now depends on all-m4
15192 Sat Sep 18 00:38:23 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15194 * Makefile.in ({AR,RANLIB}_FOR_TARGET): make contingent on
15195 presence of {ar,ranlib} instead of a configured directory
15197 Wed Sep 15 08:41:44 1993 Jim Kingdon (kingdon@cirdan.cygnus.com)
15199 * config.guess: Accept 34?? as well as 33?? for NCR.
15201 Mon Sep 13 12:28:43 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15203 * configure.in: grab mt-hppa for HPPA targets; use 'gas ' instead
15204 of 'gas' in sed commands, since 'gash' is now in the tree as well.
15206 Fri Sep 10 11:23:52 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15208 * configure: grab values for $(CC) and $(CXX) from the
15209 environment, so that someone can do "CC=gcc configure; make" and
15210 have it work right (matching the way that autoconf works now)
15212 * configure.in, Makefile.in: add support for gash, the tcl
15213 interface to Galaxy
15215 * config.guess: add NetBSD variants (hp300, x86)
15217 Thu Sep 9 16:48:52 1993 Jason Merrill (jason@deneb.cygnus.com)
15219 * install.sh: Support -d option (in the manner of SunOS 4 install,
15220 as it is more deterministic than that of GNU install)
15221 (chmodcmd): Set file to mode 755 by default (should also do default
15222 chgrp and chown, but I don't feel like dealing with that now)
15224 Tue Sep 7 11:59:39 1993 Doug Evans (dje@canuck.cygnus.com)
15226 * config.sub: Remove h8300hhms alias.
15228 Tue Aug 31 11:00:09 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15230 * configure.in: Match *-*-solaris2* not *-sun-solaris2*.
15232 Mon Aug 30 18:29:10 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15234 * Makefile.in (gcc-no-fixedincludes): touch stmp-fixproto as well
15237 Wed Aug 25 16:35:59 1993 K. Richard Pixley (rich@sendai.cygnus.com)
15239 * config.sub: recognize m88110-bug-coff.
15241 Tue Aug 24 10:23:24 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15243 * Makefile.in (all-libio): all dependencies on the toolchain used
15244 to build this (gcc, gas, ld, etc)
15246 Fri Aug 20 17:24:24 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15248 * config.guess: Deal with OSF/1 1.3 on alpha.
15250 Thu Aug 19 11:43:04 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15252 * install.sh: add some 'else true' clauses for portability
15254 * configure.in: don't build libio for h8[35]00-*-* targets
15256 Tue Aug 17 19:02:31 1993 Per Bothner (bothner@kalessin.cygnus.com)
15258 * Makefile.in: Add support for new libio.
15260 Sun Aug 15 20:48:55 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15262 * install.sh: If one command fails, don't try the rest. Don't try
15263 to remove $dsttmp (via trap) unless we have already created it.
15264 If $src doesn't exist, detect it and exit with an error.
15266 * config.guess: Recognize BSD on hp300.
15268 Wed Aug 11 18:35:13 1993 Per Bothner (bothner@kalessin.cygnus.com)
15270 * config.guess: Map (9000/[34]??:HP-UX:*:*) to m68k-hp-hpux.
15271 Bug report from "Hamish (H.I.) Macdonald" <hamish@bnr.ca>.
15273 Wed Aug 11 15:37:51 1993 Jason Merrill (jason@deneb.cygnus.com)
15275 * Makefile.in (all-send-pr): depends on all-prms
15277 Wed Aug 11 16:56:03 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15279 * config.guess: Fix typo (9000/8??:4.3bsd -> 9000/7??:4.3bsd).
15281 Fri Aug 6 14:45:02 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
15283 * config.guess: From michael@mercury.cs.mun.ca (Michael Rendell):
15284 Added test for mips-mips-riscos5.
15286 Thu Aug 5 15:45:08 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15288 * configure.in: use mh-hp300 for 68k HP hosts
15290 Mon Aug 2 11:56:53 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15292 * configure: add support for CONFIG_SHELL, so that you can use
15293 some alternate shell for evaluating configure scripts
15295 Sun Aug 1 11:36:27 1993 Fred Fish (fnf@deneb.cygnus.com)
15297 * Makefile.in (make-gdb.tar.gz): Sed bug reporting address
15298 in configure script to bug-gdb@prep.ai.mit.edu when building
15299 distribution archive.
15300 * Makefile.in (COMPRESS): Remove def.
15301 * Makefile.in (gdb.tar.gz, make-gdb.tar.gz): Renamed from
15302 gdb.tar.Z and make-gdb.tar.Z respectively.
15303 * Makefile.in (make-gdb.tar.gz): Now only build gzip'd archive.
15304 * Makefile.in (make-gdb.tar.gz): Minor changes to move closer
15305 to convergence with 'taz' target in Makefile.in.
15307 Fri Jul 30 12:34:57 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15309 * install.sh (dsttmp): use trap to ensure that tmp files go
15310 away on error conditions
15312 Wed Jul 28 11:57:36 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15314 * Makefile.in (BASE_FLAGS_TO_PASS): remove LOADLIBES
15316 Tue Jul 27 12:43:40 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15318 * Makefile.in (install-dirs): Deal with a prefix like /gnu;
15319 its parent is '/' not ''.
15321 * Makefile.in (DEVO_SUPPORT): Add comments about ChangeLog.
15323 Fri Jul 23 09:53:37 1993 Jason Merrill (jason@wahini.cygnus.com)
15325 * configure: if ${newsrcdir}/configure doesn't exist, don't assume
15326 that ${newsrcdir}/configure.in does.
15328 Tue Jul 20 11:28:50 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15330 * test-build.mk: support for CONFIG_SHELL
15332 Mon Jul 19 21:54:46 1993 Fred Fish (fnf@deneb.cygnus.com)
15334 * config.sub (netware): Add as a basic system type.
15336 Wed Jul 14 12:03:11 1993 K. Richard Pixley (rich@sendai.cygnus.com)
15338 * Makefile.in (Makefile): depend on configure.in. Also drop the
15339 $(srcdir)/ from the dependency on Makefile.in.
15341 Tue Jul 13 20:10:58 1993 Doug Evans (dje@canuck.cygnus.com)
15343 * config.sub: Recognize h8300hhms as h8300h-hitachi-hms.
15344 (h8300hhms is temporary until multi-libraries are implemented).
15345 * configure.in: Handle h8300h too.
15347 Sun Jul 11 17:35:27 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15349 * config.guess: Recognize dpx/2 as m68k-bull-sysv3.
15351 Thu Jul 8 18:26:12 1993 John Gilmore (gnu@cygnus.com)
15353 * configure: Remove extraneous output when guessing host type.
15354 * config.guess: Remove extraneous output when guessing using C
15355 compiler rather than uname, or when guessing fails.
15357 Wed Jul 7 17:58:14 1993 david d `zoo' zuhn (zoo at rtl.cygnus.com)
15359 * Makefile.in: remove all.cross and install.cross targets
15361 * configure: remove CROSS=-DCROSS_COMPILE and ALL=all.cross
15364 Tue Jul 6 10:39:44 1993 Steve Chamberlain (sac@phydeaux.cygnus.com)
15366 * configure.in (target sh): Build gprof.
15368 Thu Jul 1 16:52:56 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15370 * config.sub: change -solaris to -solaris2
15372 Thu Jul 1 15:46:16 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15374 * configure.in: Use config/mh-riscos for mips-*-sysv*.
15376 Wed Jun 30 09:31:58 1993 Ian Lance Taylor (ian@cygnus.com)
15378 * configure: Correct error message for missing Makefile.in to
15379 print correct directory.
15381 Tue Jun 29 13:52:16 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15383 * install.sh: kludge around 386BSD shell bug
15385 Tue Jun 29 13:06:49 1993 Per Bothner (bothner@rtl.cygnus.com)
15387 * config.guess: Recognize NeXT.
15388 * config.guess: Recognize i486-ncr-sysv4.
15389 * Makefile.in (taz): rm $(TOOL)-$$VER before linking.
15391 Tue Jun 29 12:50:57 1993 Ian Lance Taylor (ian@cygnus.com)
15393 * Makefile.in (MAKEINFOFLAGS): New variable.
15394 (FLAGS_TO_PASS): Pass MAKEINFO as MAKEINFO MAKEINFOFLAGS.
15395 * build-all.mk, test-build.mk: Pass down --no-split as
15396 MAKEINFOFLAGS when hosted on DOS. Compile DOS hosted without -g.
15398 Thu Jun 24 13:39:11 1993 Per Bothner (bothner@rtl.cygnus.com)
15400 * Makefile.in (DEVO_SUPPORT): Add COPYING COPYING.LIB install.sh.
15402 Wed Jun 23 12:59:21 1993 Per Bothner (bothner@rtl.cygnus.com)
15404 * Makefile.in (libg++.tar.z): New rule.
15405 * Makefile.in (taz): Replace 'configure -rm' by 'make distclean'.
15406 * Makefile.in (taz): Only do a single chmod.
15408 Fri Jun 18 12:03:10 1993 david d `zoo' zuhn (zoo at majipoor.cygnus.com)
15410 * install.sh: don't use dirname anymore (replaced with sed usage)
15412 Thu Jun 17 18:43:42 1993 Fred Fish (fnf@cygnus.com)
15414 * Makefile.in: Change extension for gzip'd files from '.z' to
15415 '.gz' per new FSF standard usage.
15417 Thu Jun 17 16:58:50 1993 david d `zoo' zuhn (zoo at majipoor.cygnus.com)
15419 * configure: put quotes around the final value of program_transform_name
15421 Tue Jun 15 16:48:51 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15423 * Makefile.in: new install.sh support; update install-info rules
15425 Wed Jun 9 12:31:34 1993 Ian Lance Taylor (ian@cygnus.com)
15427 * configure.in: Build diff for crosses, but not for go32 host.
15429 * configure.in: Build gprof only for native, and don't build it
15430 for mips-*-*, rs6000-*-*, or i[34]86-*-sco*.
15432 Mon Jun 7 13:12:11 1993 david d `zoo' zuhn (zoo at deneb.cygnus.com)
15434 * configure.in: don't build gas,ld,binutils on for *-*-sysv4
15436 Mon Jun 7 11:40:11 1993 Brendan Kehoe (brendan@lisa.cygnus.com)
15438 * configure.in (host_tools): Add prms.
15440 Fri Jun 4 13:30:42 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15442 * Makefile.in: install gcc, do installation of $(INSTALL_MODULES)
15443 with $(FLAGS_TO_PASS) on the command line
15445 * config.sub: Recognize lynx and lynxos
15447 Fri Jun 4 10:59:56 1993 Ian Lance Taylor (ian@cygnus.com)
15449 * config.sub: Accept -ecoff*, not just -ecoff.
15451 Thu Jun 3 17:38:54 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15453 * Makefile.in (taz): Use .gz suffix instead of .z.
15454 (binutils.tar.gz, gas+binutils.tar.gz, gas.tar.gz): Fixed target
15457 Thu Jun 3 00:27:06 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15459 * Makefile.in (vault-install): add an 'else true' (for Ultrix)
15461 Wed Jun 2 18:19:16 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15463 * Makefile.in (install-no-fixedincludes): install gcc last, so
15464 that rebuilds that might happen during 'make install' don't get
15465 bogus gcc include files
15467 Wed Jun 2 16:14:10 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15469 Change from Utah for HPPA support:
15470 * config.guess: Recognize hppa1.x-hp-bsd.
15472 Wed Jun 2 11:53:33 1993 Per Bothner (bothner@rtl.cygnus.com)
15474 * config.guess: Add support for Motorola Delta 68k, up to r3v7.
15475 Patch from pot@fly.cnuce.cnr.it (Francesco Potorti`).
15477 Tue Jun 1 17:48:42 1993 Rob Savoye (rob at darkstar.cygnus.com)
15479 * config.sub: Add support for rom68k and bug boot monitors.
15481 Mon May 31 09:36:37 1993 Jim Kingdon (kingdon@cygnus.com)
15483 * Makefile.in: Make all-opcodes depend on all-bfd.
15485 Thu May 27 08:05:31 1993 Ian Lance Taylor (ian@cygnus.com)
15487 * config.guess: Added special check for i[34]86-univel-sysv4*.
15489 Wed May 26 16:33:40 1993 Ian Lance Taylor (ian@cygnus.com)
15491 * config.guess: For i[34]86-unknown-sysv4 use UNAME_MACHINE for
15492 the processor rather than assuming i486.
15494 Wed May 26 09:40:18 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15496 * config.guess: Recognize SunOS6 as Solaris3.
15498 Tue May 25 23:03:11 1993 Per Bothner (bothner@cygnus.com)
15500 * config.guess: Fix typo. Avoid #elif (not in K&R 1).
15501 Recognize SunOS 5.* only (and not [6-9].*) as being Solaris2.
15503 Tue May 25 12:44:18 1993 Ian Lance Taylor (ian@cygnus.com)
15505 * build-all.mk (all-cross): New target for Canadian Cross.
15506 Added Q2 go32 targets.
15507 * test-build.mk: Configure go32 cross sparclite-aout and
15508 mips-idt-ecoff -with-gnu-ld. Moved build binary directory from
15509 PARTIAL_HOLE_DIRS to BUILD_HOLES_DIRS.
15511 Mon May 24 15:30:06 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15513 * configure.in: fix Alpha GDB typo; also, don't build DejaGnu for
15514 GO32 hosted toolchains
15516 Mon May 24 14:18:41 1993 Rob Savoye (rob at darkstar.cygnus.com)
15518 * configure: change so "-exec-prefix" gets passed down rather
15519 than "-exec_prefix" so autoconf generated Makefiles get the
15520 exec_prefix set right.
15522 Fri May 21 10:42:25 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15524 * config.guess: get the Solaris2 minor version number
15526 * Makefile.in: add standards.texi and make-stds.texi to ETC_SUPPORT
15528 Fri May 21 06:20:52 1993 Brendan Kehoe (brendan@lisa.cygnus.com)
15530 * config.guess: Recognize some Sequent platforms.
15532 Thu May 20 14:33:48 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15534 * Makefile.in: added the vault-install target
15536 * configure.in: actually use the Sun3 makefile fragment that's in
15537 config, also added the release dir to configdirs
15539 Thu May 20 14:19:18 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15541 * Makefile.in (taz): Fix modes on stuff in $(TOOL) dir also.
15543 Tue May 18 20:26:41 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15545 * configure.in: remove some program from Alpha targetted toolchains
15547 Tue May 18 15:23:19 1993 Ken Raeburn (raeburn@cygnus.com)
15549 * Makefile.in (DISTSTUFFDIRS): Renamed from PROTODIRS. Add ld and
15551 (taz): Run "make diststuff" in those directories instead of "make
15552 proto-dir". Look for "VERSION=" only at start of line in subdir
15553 Makefile. Use "gzip -9" for compression.
15554 (TEXINFO_SUPPORT, DIST_SUPPORT, BINUTILS_SUPPORT_DIRS): New vars.
15555 (binutils.tar.z): New target.
15557 Mon May 17 17:01:15 1993 Ken Raeburn (raeburn@deneb.cygnus.com)
15559 * Makefile.in (taz): Include gpl.texinfo.
15561 Fri May 14 06:48:38 1993 Ken Raeburn (raeburn@deneb.cygnus.com)
15563 * Makefile.in (setup-dirs): Merged into "taz" target.
15564 (taz): Only do `proto-dir' stuff if a directory is actually needed
15567 Wed May 12 13:09:44 1993 Ian Lance Taylor (ian@cygnus.com)
15569 * Makefile.in (MUNCH_NM): New variable, defined to be $(NM).
15570 (FLAGS_TO_PASS): Pass down MUNCH_NM.
15571 (HOST_CC, HOST_PREFIX, HOST_PREFIX_1): New variables.
15572 (EXTRA_GCC_FLAGS): Pass down HOST_* variables.
15573 (gcc-no-fixedincludes): Correct for current gcc Makefile.
15575 Tue May 11 10:14:25 1993 Fred Fish (fnf@cygnus.com)
15577 * Makefile.in (make-gdb.tar.Z): Add configure, config.guess,
15578 config.sub, and move-if-change to gdb testsuite distribution
15579 archive, so the testsuite can be extracted, configured, and
15580 run separately from the gdb distribution. Blow away the Chill
15581 tests that require a Chill compiled executable, since GNU Chill
15582 is not yet publically available.
15584 Mon May 10 17:22:26 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15586 * test-build.mk: set environment variables in a single command,
15587 instead of a list of assignments and exports
15589 * config.guess: recognize Alpha/OSF1 systems
15591 Mon May 10 14:55:51 1993 K. Richard Pixley (rich@rtl.cygnus.com)
15593 * configure: Change help message to prefer --options rather than
15596 Mon May 10 05:58:35 1993 Ken Raeburn (raeburn@kr-pc.cygnus.com)
15598 * config.sub: Convergent Tech. "miniframe" uses m68010, sez
15599 zippy@ecst.csuchico.edu.
15600 * config.guess: Recognize miniframe.
15602 Sun May 9 17:47:57 1993 Rob Savoye (rob at darkstar.cygnus.com)
15604 * Makefile.in: Use srcroot to find runtest rather than rootme.
15605 Pass RUNTESTFLAGS and EXPECT down in BASE_FLAGS_TO_PASS.
15607 Fri May 7 14:55:59 1993 Ian Lance Taylor (ian@cygnus.com)
15609 * test-build.mk: Extensive additions to support building on a
15610 machine other than the host.
15612 Wed May 5 08:35:04 1993 Ken Raeburn (raeburn@deneb.cygnus.com)
15614 * configure (tooldir): Fix for i386-aix again.
15616 Mon May 3 19:00:27 1993 Per Bothner (bothner@cygnus.com)
15618 * configure, Makefile.in: Change definition of $(tooldir)
15621 Fri Apr 30 15:55:21 1993 Fred Fish (fnf@cygnus.com)
15623 * config.guess: Recognize i[34]86/SVR4.
15625 Fri Apr 30 15:52:46 1993 Steve Chamberlain (sac@thepub.cygnus.com)
15627 * Makefile.in (all-gdb): gdb depends on sim.
15629 Thu Apr 29 23:30:48 1993 Fred Fish (fnf@cygnus.com)
15631 * Makefile.in (gdb.tar.Z): Make prototype gdb testsuite directory
15632 at the same time we make the prototype gdb directory.
15633 * Makefile.in (make-gdb.tar.Z): Make the testsuite distribution
15634 files at the same time as the gdb base release distribution.
15636 Thu Apr 29 12:50:37 1993 Ian Lance Taylor (ian@cygnus.com)
15638 * Makefile.in (check): Use individual check targets rather than
15640 (check-gcc): Added.
15642 Thu Apr 29 09:50:07 1993 Jim Kingdon (kingdon@cygnus.com)
15644 * config.sub: Use sysv3.2 not sysv32 for canonical OS
15645 for System V release 3.2.
15647 Thu Apr 29 10:33:22 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15649 * config.sub: Recognize hppaosf.
15650 * configure.in: Do configure ld/binutils/gas for it.
15652 Tue Apr 27 06:25:34 1993 Ken Raeburn (raeburn@kr-pc.cygnus.com)
15654 * configure (tooldir): Alter syntax used to set this, for systems
15655 where "\$" isn't handled right, like i386-aix.
15657 Thu Apr 22 08:17:35 1993 Ian Lance Taylor (ian@cygnus.com)
15659 * configure: Pass program-transform-name, not
15660 program_transform_name, to recursive configures.
15662 Thu Apr 22 02:58:21 1993 Ken Raeburn (raeburn@cygnus.com)
15664 * Makefile.in (gas+binutils.tar.z): New rule for building snapshots
15665 of gas+ld+binutils.
15667 Mon Apr 19 17:41:30 1993 Per Bothner (bothner@cygnus.com)
15669 * config.guess: Recognize AIX3.2 as distinct from 3.1.
15671 Sat Apr 17 17:19:50 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15673 * configure.in: rename m88k-motorola-m88kbcs to m88k-motorola-sysv
15675 Tue Apr 13 16:52:16 1993 Brendan Kehoe (brendan@lisa.cygnus.com)
15677 * Makefile.in (PRMS): Set back to all-prms.
15679 Sat Apr 10 12:04:07 1993 Ian Lance Taylor (ian@cygnus.com)
15681 * test-build.mk: Pass -with-gnu-as for known MIPS native and MIPS
15682 targets, rather than for MIPS hosts.
15684 Fri Apr 9 13:51:06 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15686 * configure.in: add comment for --with-x default values
15688 * config.guess: handle Motorola Delta88 box for SVR3 and SVR4.
15690 * Makefile.in: add check-* targets for each of the directories in
15691 the tree. Add a definition of RUNTEST that will use the one we
15692 just built, if it exists. Pass this down via FLAGS_TO_PASS.
15694 Thu Apr 8 09:21:30 1993 Ian Lance Taylor (ian@cygnus.com)
15696 * configure.in: Removed obsolete references to bfd_target and
15697 target_makefile_frag.
15699 * build-all.mk: Set assorted targets for Q2.
15700 * config.sub: Recognize z8k-sim and h8300-hms.
15701 * test-build.mk: Really don't pass host to configure.
15702 (HOLES): Added uname.
15704 Wed Apr 7 15:48:19 1993 Ian Lance Taylor (ian@cygnus.com)
15706 * configure: Handle an empty program-prefix, program-suffix or
15707 program-transform-name correctly.
15709 Tue Apr 6 13:48:41 1993 Ian Lance Taylor (ian@cygnus.com)
15711 * build-all.mk: -G 8 no longer required for MIPS targets.
15712 * test-build.mk: Don't pass host argument to configure; make it
15715 Tue Apr 6 10:36:53 1993 Fred Fish (fnf@cygnus.com)
15717 * Makefile.in (gdb.tar.Z): Fix for building gzip'd distribution.
15718 * Makefile.in (COMPRESS): New macro, like GZIP.
15720 Fri Apr 2 09:02:31 1993 Ian Lance Taylor (ian@cygnus.com)
15722 * test-build.mk: Use -with-gnu-as for mips-sgi-irix4 as well.
15724 * build-all.mk: Set GCC to gcc -O -G 8 for MIPS targets, since gcc
15725 with gas currently defaults to -G 0.
15727 Thu Apr 1 08:25:42 1993 Ian Lance Taylor (ian@cygnus.com)
15729 * Makefile.in (all-flex): flex depends on byacc.
15731 * build-all.mk: If host not specified, use config.guess. Pass TAG
15732 to test-build.mk as RELEASE_TAG.
15733 * test-build.mk (configargs): New variable containing arguments to
15734 pass to configure. Set to -with-gnu-as on mips-dec-ultrix.
15735 (FLAGS_TO_PASS): Pass down RELEASE_TAG.
15737 * config.guess: Use /bin/uname when checking -X argument on SCO,
15738 to avoid invoking GNU uname which doesn't understand -X.
15740 * test-build.mk: Don't use /usr/unsupported/bin/as on AIX.
15742 * configure.in: Build gas for mips-*-*.
15744 Wed Mar 31 21:20:58 1993 K. Richard Pixley (rich@rtl.cygnus.com)
15746 * Makefile.in (all.normal): insert missing backslash.
15748 Wed Mar 31 12:31:56 1993 Ian Lance Taylor (ian@cygnus.com)
15750 * build-all.mk: Bump -XNh value to 1500 to match gcc requirements.
15752 * Makefile.in: Complete overhaul to merge many almost identical
15755 Tue Mar 30 20:17:01 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15757 * Makefile.in (setup-dirs-gdb): Renamed from setup-dirs.
15758 (gdb.tar.Z): Adjusted.
15760 * Makefile.in (setup-dirs, taz): New targets; should be general
15761 enough to adapt for gdb sometime. Build only .z file.
15762 (gas.tar.z): New target.
15764 Tue Mar 30 10:03:09 1993 Ian Lance Taylor (ian@cygnus.com)
15766 * build-all.mk: Use CC=cc -Xs on Solaris.
15768 Thu Mar 25 15:14:30 1993 Fred Fish (fnf@cygnus.com)
15770 * Makefile.in: Incorporate changes suggested by wilson@cygnus.com
15771 for handling BISON for FSF releases.
15773 Thu Mar 25 06:19:48 1993 Ken Raeburn (raeburn@kr-pc.cygnus.com)
15775 * configure: Actually implement the change zoo just documented.
15777 Wed Mar 24 13:02:44 1993 david d `zoo' zuhn (zoo at poseidon.cygnus.com)
15779 * configure: when using config.guess, only set target_alias when
15780 it's not already been set (ie, on the command line)
15782 Mon Mar 22 23:07:39 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15784 * Makefile.in: add installcheck target, set PRMS to install-prms
15786 Sun Mar 21 16:46:12 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15788 * configure: add support for package_makefile_fragment, handle the
15789 case where a directory has a configure.in file but no Makefile.in
15790 more gracefully (with an actual understandable error message, even);
15791 add support for --without (and add this to the usage message); also
15792 explicitly add a --host=${host_alias} to the command line when
15793 config.guess is used
15795 Sun Mar 21 12:11:58 1993 Jim Wilson (wilson@sphagnum.cygnus.com)
15797 * configure: Must use both --host and --target in recursive calls.
15799 Thu Mar 18 12:31:35 1993 Ian Lance Taylor (ian@cygnus.com)
15801 * Makefile.in: Change deja-gnu to dejagnu.
15803 Mon Mar 15 15:44:35 1993 Ian Lance Taylor (ian@cygnus.com)
15805 * configure.in (h8300-*-*, h8500-*-*): Don't build libg++.
15807 Fri Mar 12 18:30:14 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15809 * configure.in: canonicalize all instances to *-*-solaris2*,
15810 also strip out a number of tools to not build for go32 host
15812 Wed Mar 10 12:08:27 1993 K. Richard Pixley (rich@rtl.cygnus.com)
15814 * config.guess: add GPL.
15816 * Makefile.in, config.guess, config.sub, configure: bump
15819 Wed Mar 10 07:12:48 1993 Ian Lance Taylor (ian@cygnus.com)
15821 * Makefile.in (do-info): Removed obsolete check for existence of
15824 * Makefile.in (MAKEOVERRIDES): Define to be empty.
15826 Wed Mar 10 03:11:56 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15828 * Makefile.in: a couple of 'else true' for decstation,
15831 * configure.in: configure tclX too; don't remove Tk on RS/6000 anymore
15833 Tue Mar 9 16:06:12 1993 K. Richard Pixley (rich@cygnus.com)
15835 * Makefile.in (setup-dirs): change invocation of make to $(MAKE).
15837 Mon Mar 8 14:52:11 1993 Ken Raeburn (raeburn@cambridge)
15839 * config.guess: Recognize i386-ibm-aix (PS/2).
15840 * configure.in: Use config/mh-aix386 file for it.
15842 Mon Mar 8 11:12:43 1993 Ian Lance Taylor (ian@cygnus.com)
15844 * Makefile.in (GCC_FOR_TARGET): Eliminated definition; use
15845 CC_FOR_TARGET instead.
15846 (BASE_FLAGS_TO_PASS): Pass GCC_FOR_TARGET=$(CC_FOR_TARGET).
15848 Wed Mar 3 16:00:28 1993 Steve Chamberlain (sac@ok.cygnus.com)
15850 * Makefile.in: Add sim to list of directories sent with gdb
15852 Wed Mar 3 11:42:39 1993 Ken Raeburn (raeburn@cygnus.com)
15854 * configure.in: Put back mips-dec-bsd* case.
15856 Tue Mar 2 21:15:58 1993 Fred Fish (fnf@cygnus.com)
15858 (Ultrix 2.2 support from Michael Rendell <michael@mercury.cs.mun.ca>)
15859 * configure.in (vax-*-ultrix2*): Add Ultrix 2.2 triplet.
15860 * config.guess: Change 'VAX*:ULTRIX:*:*' to 'VAX*:ULTRIX*:*:*'.
15862 Tue Mar 2 18:11:03 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15864 * configure.in: remove no-op mips-dec-bsd* in "case $target"
15866 * Makefile.in (dir.info): only run gen-info-dir if it exists,
15867 (install-info): install dir.info only if it exists,
15868 (all-expect, install-expect): pass along X11_FLAGS_TO_PASS
15870 Tue Mar 2 09:01:30 1993 Ken Raeburn (raeburn@cygnus.com)
15872 * configure.in: For vms target, skip bfd, ld, binutils. Do build
15873 gas for mips-dec-bsd.
15875 Tue Mar 2 08:35:24 1993 Ian Lance Taylor (ian@cygnus.com)
15877 * configure (makesrcdir): If ${srcdir} is relative and not ".",
15878 and ${subdir} is not ".", set makesrcdir based on ${invsubdir}.
15880 Tue Feb 23 14:18:28 1993 Mike Werner (mtw@poseidon.cygnus.com)
15882 * configure.in: Added "dejagnu" to hosttools list.
15884 Mon Feb 22 23:28:38 1993 Per Bothner (bothner@rtl.cygnus.com)
15886 * config.sub, configure.in, config.guess: Add support
15887 for Bosx, an AIX variant from Bull.
15888 Patches from F.Pierresteguy@frcl.bull.fr.
15890 Sun Feb 21 11:15:22 1993 Mike Werner (mtw@poseidon.cygnus.com)
15892 * devo/dejagnu: Initial creation of devo/dejagnu.
15893 Migrated dejagnu testcases and support files for testing software
15894 tools to reside as subdirectories, currently called "testsuite",
15895 within the directory of the software tool. Migrated all programs,
15896 support libraries, etc. beloging to dejagnu proper from
15897 devo/deja-gnu to devo/dejagnu. These files were moved "as is"
15898 with no modifications. The changes to these files which will
15899 allow them to configure, build, and execute properly will be made
15900 in a future update.
15902 Fri Feb 19 20:19:39 1993 Brendan Kehoe (brendan@lisa.cygnus.com)
15904 * Makefile.in: Change send_pr to send-pr.
15905 * configure.in: Likewise.
15906 * send_pr: Renamed directory to send-pr.
15908 Fri Feb 19 19:00:13 1993 Per Bothner (bothner@cygnus.com)
15910 * Makefile.in: Add some extra semi-colons (needed if SHELL=bash).
15912 Fri Feb 19 00:59:33 1993 John Gilmore (gnu@cygnus.com)
15914 * README: Update for gdb-4.8 release.
15915 * Makefile.in (gdb.tar.Z): Add texinfo/tex3patch. Build
15916 gdb-xxx.tar.z (gzip'd) file also.
15918 Thu Feb 18 09:16:17 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15920 * Makefile.in: make all-diff depend on all-libiberty
15922 Tue Feb 16 16:06:31 1993 K. Richard Pixley (rich@cygnus.com)
15924 * config.guess: add vax-ultrix in the spirit of mips-ultrix.
15926 Tue Feb 16 05:57:15 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15928 * configure.in, Makefile.in: add hello, tar, gzip, recode, indent
15930 Tue Feb 16 00:58:20 1993 John Gilmore (gnu@cygnus.com)
15932 * Makefile.in (DEVO_SUPPORT): Remove etc directory
15933 (ETC_SUPPORT): Only add the files GDB wants from etc/.
15934 (gdb.tar.Z): Use ETC_SUPPORT. Use byacc when building the file.
15936 Thu Feb 11 20:14:28 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15938 * Makefile.in: makeinfo binary is in a new location
15940 Tue Feb 9 12:42:27 1993 Ian Lance Taylor (ian@cygnus.com)
15942 * config.sub: Accept -ecoff as an OS.
15944 * Makefile.in: Various changes to eliminate a level of make
15945 recursion and reduce the required command line length.
15946 (BASE_FLAGS_TO_PASS): New variable holding flags passed to all
15948 (EXTRA_HOST_FLAGS, EXTRA_TARGET_FLAGS, EXTRA_GCC_FLAGS): New
15949 variables holding settings for specific sub-makes.
15950 (FLAGS_TO_PASS, TARGET_FLAGS_TO_PASS, GCC_FLAGS_TO_PASS): Rewrote
15951 in terms of BASE_FLAGS_TO_PASS.
15952 (TARGET_LIBS): New variable listing directories which use
15953 TARGET_FLAGS_TO_PASS.
15954 (subdir_do): Eliminated.
15955 (do-*): New set of targets to replace subdir_do.
15956 (various): All targets which used subdir_do now depend on do-*.
15957 (local-clean): Renamed from do_clean.
15958 (local-distclean): New target, dependency of distclean and
15960 (install-info): Don't create directories. Depend on dir.info
15961 rather than calling make recursively.
15962 (install-dir.info): Eliminated.
15963 (install-info-dirs): Create all info directories here.
15964 (dir.info): Depend upon do-install-info.
15966 * test-build.mk (HOLES): Added false.
15968 Sat Feb 6 14:05:09 1993 Per Bothner (bothner@rtl.cygnus.com)
15970 * config.guess: Recognize BSDI and BSDJ (Jolitz 386bsd).
15972 Thu Feb 4 20:49:18 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15974 * Makefile.in (info): remove dependency on all-texinfo. The
15975 problem was really in texinfo/C, not at this level.
15977 Thu Feb 4 13:38:41 1993 Ian Lance Taylor (ian@cygnus.com)
15979 * Makefile.in (info): Added dependency on all-texinfo (PR 2112).
15981 Thu Feb 4 01:50:53 1993 John Gilmore (gnu@cygnus.com)
15983 * Makefile.in (make-gdb.tar.Z): Change BISON to 'bison -y' for
15986 Wed Feb 3 17:22:16 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15988 * configure: Include srcdir in message about target of link not
15989 being found. Don't convert `-' to `_' in `with' options being
15992 Tue Feb 2 18:57:59 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15994 * configure.in: add uudecode to host_tools
15996 * Makefile.in: added {all,install}-uudecode targets, added them to
15997 the appropriate lists
15999 Tue Feb 2 11:45:53 1993 Ian Lance Taylor (ian@cygnus.com)
16001 * Makefile.in (all-gcc): Added dependency on all-gas.
16003 * configure.in (mips-*-*): Build ld and binutils.
16005 Mon Feb 1 12:35:41 1993 K. Richard Pixley (rich@rtl.cygnus.com)
16007 * configure: check return code from mkdir, print error message and
16010 Sat Jan 30 16:40:28 1993 John Gilmore (gnu@cygnus.com)
16012 * Makefile.in (make-gdb.tar.Z): New location for texinfo.tex.
16014 Thu Jan 28 15:09:59 1993 Ian Lance Taylor (ian@cygnus.com)
16016 * test-build.mk (HOLES): Added tar, cpio and uudecode.
16018 Wed Jan 27 16:50:32 1993 Jim Wilson (wilson@sphagnum.cygnus.com)
16020 * config.sub (h8500): Recognize this as a cpu type.
16022 Sat Jan 23 20:32:01 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16024 * configure: source directory missing is no longer a warning
16026 * configure.in: recognize irix[34]* instead of irix[34]
16028 * Makefile.in: define and pass down X11_LIB
16030 Sat Jan 23 13:49:40 1993 Per Bothner (bothner@cygnus.com)
16032 * guess-systype: Renamed to ...
16033 * config.guess: ... by popular request.
16034 * configure.in, Makefile.in: Update accordingly.
16036 Thu Jan 21 12:20:55 1993 Per Bothner (bothner@cygnus.com)
16038 * guess-systype: Patches from John Eaton <jwe@che.utexas.edu>:
16039 + Add Convex, Cray/Unicos, and Encore/Multimax support.
16040 + Execute ./dummy instead of assuming . is in PATH.
16042 Tue Jan 19 17:18:06 1993 Per Bothner (bothner@cygnus.com)
16044 * guess-systype: New shell script. Attempts to guess the
16045 canonical host name of the executing host.
16046 Only a few hosts are supported so far.
16047 * configure: Call guess-systype if no host is specified.
16049 Tue Jan 19 08:26:07 1993 Ian Lance Taylor (ian@cygnus.com)
16051 * Makefile.in (gcc-no-fixedincludes): Made to work with current
16055 Fri Jan 15 10:27:02 1993 Ian Lance Taylor (ian@cygnus.com)
16057 * Makefile.in (GCC_FLAGS_TO_PASS): New variable.
16058 (all-gcc, install-gcc, subdir_do): Use it.
16060 Wed Jan 13 17:06:45 1993 Jim Wilson (wilson@sphagnum.cygnus.com)
16062 * Makefile.in: Rename uninstalled gcc driver from gcc to xgcc.
16064 Wed Jan 6 20:29:16 1993 Mike Werner (mtw@rtl.cygnus.com)
16066 * Makefile.in: Removed explicit setting of SUBDIRS. SUBDIRS is now
16067 set exclusively by configure, using configure.in .
16069 Wed Jan 6 13:44:11 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16071 * test-build.mk: set $PATH for all builds
16073 * Makefile.in: pass TARGET_FLAGS_TO_PASS for xiberty and libm
16075 Wed Jan 6 11:02:10 1993 Fred Fish (fnf@cygnus.com)
16077 * Makefile.in (GCC_FOR_TARGET): Supply a default that matches
16078 the one used in gcc/Makefile.in, so that a null expansion doesn't
16079 override the one needed to build gcc with a native cc.
16082 Tue Jan 5 07:55:12 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
16084 * configure: Accept -with arguments.
16086 Sun Jan 3 15:15:09 1993 Steve Chamberlain (sac@thepub.cygnus.com)
16088 * Makefile.in: added h8300sim
16090 Tue Dec 29 15:06:00 1992 Ian Lance Taylor (ian@cygnus.com)
16092 * build-all.mk: If canonhost is i386-unknown-sco3.2v4, change it
16093 to i386-sco3.2v4. Set TARGETS and CFLAGS for i386-sco3.2v4.
16094 (all-cygnus, native, build-cygnus): Make
16095 $(canonhost)-stamp-3stage-done, not $(host)....
16096 * test-build.mk (stamp-3stage-compared): Use tail +10c for
16097 i386-sco3.2v4. Added else true to if command.
16099 Mon Dec 28 12:08:56 1992 Ken Raeburn (raeburn@cygnus.com)
16101 * config.sub: (from FSF) Sequent uses a BSD-like OS.
16103 Mon Dec 28 08:32:06 1992 Minh Tran-Le (mtranle@paris.intellicorp.com)
16105 * configure.in (i[34]86-*-isc*): added; uses mh-sysv.
16107 Thu Dec 24 17:26:24 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16109 * configure.in: don't remove binutils from Solaris builds
16111 Thu Dec 24 14:08:38 1992 david d`zoo' zuhn (zoo@cygnus.com)
16113 * Makefile.in: get rid of earlier definitions for *clean,
16114 also handle the recursive info rule better
16116 Thu Dec 24 12:40:21 1992 Per Bothner (bothner@rtl.cygnus.com)
16118 * Makefile.in (mostlyclean, distclean, realclean): Fix to
16119 do more-or-less the right thing.
16121 Wed Dec 16 10:25:31 1992 Ian Lance Taylor (ian@cygnus.com)
16123 * Makefile.in: Add lines defining CC and CXX, and use CXX rather
16124 than gcc in definitions of CXX_FOR_BUILD and CXX_FOR_TARGET.
16126 Tue Dec 15 00:34:32 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16128 * Makefile.in: change all $(host_cpu)-$(host_vendor)-$(host_os) to
16131 * configure.in: split the configdirs list into 4 categories (native
16132 v. cross, library v. tool) and handle the cross-only and native-
16133 only in more reasonable (and correct!) way.
16135 Mon Dec 14 17:04:22 1992 Stu Grossman (grossman at cygnus.com)
16137 * configure.in (hppa*-*-*): Don't remove bfd and gdb from
16138 configdirs anymore.
16140 Sun Dec 13 00:37:26 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16142 * Makefile.in: extensive cleanup:: removed all of the explicit
16143 clean-* targets, collapsed many wrappers around subdir_do into
16144 one, added additional targets to satisfy standards.texi, deleted
16145 some old targets, some changes for consistency
16147 Fri Dec 11 20:18:02 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16149 * configure.in: handle some programs as cross-only, and others as
16152 * test-build.mk: handle partial holes in a more generic manner
16154 * Makefile.in: m4 depends on libiberty
16156 Thu Dec 3 21:52:11 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16158 * configure.in: add m4, textutils, fileutils, sed, shellutils,
16159 time, wdiff, and find to configdirs
16161 * Makefile.in: all, clean, and install rules for the new programs
16162 added to configure.in
16164 Mon Nov 30 14:54:34 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16166 * configure.in: use mh-sun for all *-sun-* hosts
16168 Fri Nov 27 18:35:54 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16170 * Makefile.in: define flags for X11 include files and library file
16171 locations, pass them down to the programs that need this info
16173 * build-all.mk: added a 'native' target, to 3stage the native toolchain
16175 Sun Nov 22 18:59:13 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16177 * configure.in: start building libg++ for HP-UX targets
16179 Wed Nov 18 19:33:11 1992 John Gilmore (gnu@cygnus.com)
16181 * README: Update references to files moved into etc/.
16183 Sun Nov 15 09:36:08 1992 Fred Fish (fnf@cygnus.com)
16185 * config.sub (i386sol2, i486sol2): i[34]86-unknown-solaris2.
16186 * configure.in (i[34]86-*-solaris2*): Use config/mh-sysv4.
16188 Thu Nov 12 08:50:42 1992 Ian Lance Taylor (ian@cygnus.com)
16190 * configure: accept dash as well as underscore in long option
16191 names for FSF compatibility.
16193 Wed Nov 11 08:04:37 1992 Ian Lance Taylor (ian@cygnus.com)
16195 * config.sub: added -sco3.2v4 support from FSF.
16197 Sun Nov 8 21:14:30 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16199 * configure.in: expand the section that adds or removes
16200 directories from the list of programs to build, to handle native
16201 vs. cross in addition to host v. native
16203 Sat Nov 7 18:52:27 1992 Per Bothner (bothner@rtl.cygnus.com)
16205 * Makefile.in: Replace C++ in macro names with CXX.
16206 This is less likely to break ...
16208 Sat Nov 7 15:16:58 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16210 * test-build.mk: add -w to GNU_MAKE
16212 Fri Nov 6 23:10:37 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16214 * config.sub: remove 'sparc'-->'sparc-sun' default transformation,
16215 add 'sparc' to list of recognized cpus. This needed to make
16216 'sparc-aout' expand to 'sparc-unknown-aout' instead of 'sparc-sun-aout'.
16217 Delete some redundant ose68 variants. Recognize -wrs as an os,
16218 then changes that into $CPU-wrs-vxworks.
16220 * configure.in: remove most references to gdbtest, regularize
16221 target based program removal
16223 * test-build.mk: import from p3 tree (many fixes and changes)
16225 Fri Nov 6 20:59:00 1992 david d `zoo' zuhn (zoo@cygnus.com)
16227 * Makefile.in: added rules to handle tcl, tk, and expect
16229 * configure.in: handle those directories if they exist
16231 Thu Nov 5 14:35:41 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16233 * config.sub: removed bogus hppabsd and hppahpux names, since
16234 "hppa" is not a valid cpu (hppa1.1 or hppa1.0 are, though)
16236 Thu Oct 29 00:12:41 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16238 * Makefile.in: all-gcc now depends on all-binutils. all-libg++
16239 depends upon all-xiberty
16241 * Makefile.in: changes from p3, including:
16243 Thu Oct 8 15:00:17 1992 Ian Lance Taylor (ian@cygnus.com)
16245 * Makefile.in (XTRAFLAGS): include newlib directories if
16246 newlib/Makefile exists, rather than if host != target.
16248 Fri Sep 25 13:41:52 1992 Ian Lance Taylor (ian@cygnus.com)
16250 * Makefile.in: added -nostdinc to XTRAFLAGS if we are using gcc
16251 from the same source tree and not building a cross-compiler. This
16252 matters for the libg++ configuration if reconfiguring a tree that
16253 has already been installed.
16255 Thu Sep 10 10:35:51 1992 Ian Lance Taylor (ian@cygnus.com)
16257 * Makefile.in: added -I for newlib/targ-include to XTRAFLAGS, to
16258 pick up the machine and system specific header files.
16260 * Makefile.in: added AS_FOR_TARGET, passed down in
16261 TARGET_FLAGS_TO_PASS. Added CC_FOR_BUILD, which is intended to be
16262 the C compiler to use to create programs which are run in the
16263 build environment, set it to default to $(CC), and passed it down
16264 in FLAGS_TO_PASS and TARGET_FLAGS_TO_PASS.
16266 Mon Sep 7 22:34:42 1992 Ian Lance Taylor (ian@cirdan.cygnus.com)
16268 * Makefile.in: add $(host) = $(target) tests back to *_FOR_TARGET.
16269 We need them for unusual native builds, like systems without
16272 * configure: also define $(host_canonical) and
16273 $(target_canonical), which are the full, canonical names for the
16274 given host and target
16276 Sun Nov 1 16:38:17 1992 Per Bothner (bothner@cygnus.com)
16278 * Makefile.in: Added separate definitions for C++.
16280 Fri Oct 30 11:37:52 1992 Fred Fish (fnf@cygnus.com)
16282 * configure.in (configdirs): Add deja-gnu.
16284 Fri Oct 23 00:39:18 1992 John Gilmore (gnu@cygnus.com)
16286 * README: Update for configure.texi and gdb-4.7 release.
16288 Wed Oct 21 21:54:27 1992 John Gilmore (gnu@cygnus.com)
16290 * Makefile.in: Move "all" target to top of file.
16291 Previously, first target was ".PHONY" which caused BSD4.4 make
16292 to build .PHONY when make was run without arguments.
16294 Mon Oct 19 01:17:54 1992 John Gilmore (gnu@cygnus.com)
16296 * Makefile.in: Add COPYING.LIB to GDB releases, now that there's
16297 Library-copylefted code in libiberty.
16299 Tue Oct 13 01:22:32 1992 John Gilmore (gnu@cygnus.com)
16301 * config.sub: Replace m68kmote with plain old m68k.
16303 Fri Oct 9 03:14:24 1992 John Gilmore (gnu@cygnus.com)
16305 * Makefile.in: Remove space from blank line, avoid Make complaints.
16307 Thu Oct 8 18:41:45 1992 Ken Raeburn (raeburn@cygnus.com)
16309 * config.sub: Complain if no argument is given. Added support for
16310 386bsd as OS and target alias.
16312 Thu Oct 8 15:07:22 1992 Ian Lance Taylor (ian@cygnus.com)
16314 * Makefile.in (XTRAFLAGS): include newlib directories if
16315 newlib/Makefile exists, rather than if host != target.
16317 Mon Oct 5 03:00:09 1992 Mark Eichin (eichin at tweedledumber.cygnus.com)
16319 * config.sub: recognize sparclite-wrs-vxworks.
16321 * Makefile.in (install-xiberty): added *-xiberty make rules (from
16322 p3.) Added clean-xiberty to clean.
16324 Thu Oct 1 17:59:19 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16326 * configure.in: use *-*-* instead of nested cases for host and target
16328 Tue Sep 29 14:11:18 1992 Ian Lance Taylor (ian@cygnus.com)
16330 * Makefile.in: added -nostdinc to XTRAFLAGS if we are using gcc
16331 from the same source tree and not building a cross-compiler. This
16332 matters for the libg++ configuration if reconfiguring a tree that
16333 has already been installed.
16335 Sep 20 08:53:10 1992 Fred Fish (fnf@cygnus.com)
16337 * config.sub (i486v/i486v4): Merge in from FSF version.
16339 Fri Sep 18 00:32:00 1992 Mark Eichin (eichin@cygnus.com)
16341 * configure: only set PWD if it is already set.
16343 Thu Sep 17 23:05:53 1992 Mark Eichin (eichin@cygnus.com)
16345 * configure: just set PWD=`pwd` at the top, since Ultrix sh
16346 doesn't have unset and all success paths (and most error paths)
16347 out set it anyway. (Note: should change all uses of ${PWD=`pwd`}
16348 to just ${PWD} to avoid confusion.)
16350 Tue Sep 15 16:00:54 1992 Ian Lance Taylor (ian@cygnus.com)
16352 * configure: always set $(tooldir) to $(libdir)/$(target_alias),
16353 even for a native compilation.
16355 Tue Sep 15 02:22:56 1992 John Gilmore (gnu@cygnus.com)
16357 Changes to make the gdb.tar.Z rule work better.
16359 * Makefile.in (GDB_SUPPORT_DIRS): Add opcodes.
16360 (DEVO_SUPPORT): Add configure.texi.
16361 (bfd-ilrt.tar.Z): Remove ancient rule.
16363 Thu Sep 10 10:43:19 1992 Ian Lance Taylor (ian@cygnus.com)
16365 * Makefile.in: added -I for newlib/targ-include to XTRAFLAGS, to
16366 pick up the machine and system specific header files.
16368 * configure.in, config.sub: added new target m68010-adobe-scout,
16369 with alias of adobe68k. Changed configure.in to check for
16370 -scout before -sco* to avoid a false match.
16372 * Makefile.in: added AS_FOR_TARGET, passed down in
16373 TARGET_FLAGS_TO_PASS. Added CC_FOR_BUILD, which is intended to be
16374 the C compiler to use to create programs which are run in the
16375 build environment, set it to default to $(CC), and passed it down
16376 in FLAGS_TO_PASS and TARGET_FLAGS_TO_PASS.
16378 Wed Sep 9 12:21:42 1992 Ian Lance Taylor (ian@cygnus.com)
16380 * Makefile.in: added TARGET_FLAGS_TO_PASS, CC_FOR_TARGET,
16381 AR_FOR_TARGET, RANLIB_FOR_TARGET, NM_FOR_TARGET. Pass
16382 TARGET_FLAGS_TO_PASS, which defines CC, AR, RANLIB and NM as the
16383 FOR_TARGET variants, to newlib and libg++.
16385 Tue Sep 8 17:28:30 1992 Ken Raeburn (raeburn@cambridge.cygnus.com)
16387 * Makefile.in (all-gas, all-gdb): Require all-opcodes to be built
16390 Wed Sep 2 02:50:05 1992 John Gilmore (gnu@cygnus.com)
16392 * config.sub: Accept `elf' as an environment.
16394 Tue Sep 1 15:48:30 1992 Steve Chamberlain (sac@thepub.cygnus.com)
16396 * Makefile.in (all-opcodes): cd into the right directory
16398 Sun Aug 30 21:12:11 1992 Ian Lance Taylor (ian@cygnus.com)
16400 * configure: added -program_transform_name option, used as
16401 argument to sed when installing programs.
16402 configure.texi: added documentation for -program_prefix,
16403 -program_suffix and -program_transform_name.
16405 Thu Aug 27 21:59:44 1992 John Gilmore (gnu@cygnus.com)
16407 * config.sub: Accept i486 where i386 ok.
16409 Thu Aug 27 13:04:42 1992 Brendan Kehoe (brendan@rtl.cygnus.com)
16411 * config.sub: accept we32k
16413 Mon Aug 24 14:05:14 1992 Ian Lance Taylor (ian@cygnus.com)
16415 * config.sub, configure.in: accept OSE68000 and OSE68k.
16417 * Makefile.in: don't create all directories for ``make install'';
16418 let the subdirectories create the ones they need.
16420 Tue Aug 11 23:13:17 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16422 * COPYING: new file, GPL v2
16424 Tue Aug 4 01:12:43 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16426 * Makefile.in: use the new gen-info-dir, which needs a template
16427 argument (which also lives in texinfo)
16429 * configure.texi, standards.texi: fix INFO-DIR-ENTRY
16431 Mon Aug 3 00:34:17 1992 Fred Fish (fnf@cygnus.com)
16433 * config.sub (ncr3000): Change i386 to i486.
16435 Thu Jul 23 00:12:17 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16437 * Makefile.in: add install-rcs, install-grep to
16438 install-no-fixedincludes, removed install-bison and install-libgcc
16440 Tue Jul 21 01:01:50 1992 david d `zoo' zuhn (zoo@cygnus.com)
16442 * configure.in: grab the HPUX makefile fragment if on HPUX
16444 Mon Jul 20 11:02:09 1992 D. V. Henkel-Wallace (gumby@cygnus.com)
16446 * Makefile.in: eradicate bison spoor (ditto libgcc).
16447 configure.in: recognise m68{k,000}-ericsson-OSE.
16448 es1800 is alias for m68k-ericsson-OSE
16450 Sun Jul 19 17:49:02 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16452 * configure.in: rearrange the parts that remove programs from
16453 configdirs, based now on HOST==TARGET or by canonical triple.
16455 Fri Jul 17 22:52:49 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16457 * test-build.mk: recurse explicitly with -f test-build.mk when
16458 appropriate. predicate stage3 and comparison on the existence
16459 of gcc. That is, if gcc isn't around, we aren't three-staging.
16460 On very clean, also remove ...stamp-co. Build in-place before
16461 doing other builds.
16463 Thu Jul 16 18:33:09 1992 Steve Chamberlain (sac@thepub.cygnus.com)
16465 * Makefile.in, configure.in: add tgas
16467 Thu Jul 16 16:05:28 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16469 * Makefile.in: a number of changes merged in from progressive.
16471 * configure.in: add libm.
16473 * .cvsignore: ignore some stuff that comes from test-build.mk.
16475 Tue Jul 7 00:24:52 1992 Fred Fish (fnf@cygnus.com)
16477 * config.sub: Add es1800 (m68k-ericsson-es1800).
16479 Tue Jun 30 20:24:41 1992 D. V. Henkel-Wallace (gumby@cygnus.com)
16481 * configure: Add program_suffix (parallel to program_prefix)
16482 * Makefile.in: adjust directory-creating script for losing decstation
16484 Mon Jun 22 23:43:48 1992 Per Bothner (bothner@cygnus.com)
16486 * configure: Minor $subdir-related fixes.
16488 Mon Jun 22 18:30:26 1992 Steve Chamberlain (sac@thepub.cygnus.com)
16490 * configure: fix various problems with propogating
16491 makefile_target_frag in subdirs.
16492 * configure.in: config libgcc if its there
16494 Fri Jun 19 15:19:40 1992 Stu Grossman (grossman at cygnus.com)
16496 * config.sub: HPPA merge.
16498 Sun Jun 14 10:29:19 1992 John Gilmore (gnu at cygnus.com)
16500 * Makefile.in: Replace all-bison with all-byacc in all
16501 dependency lines for other tools (which now use byacc).
16503 Fri Jun 12 22:21:57 1992 John Gilmore (gnu at cygnus.com)
16505 * config.sub: Add sun4sol2 => sparc-sun-solaris2.
16507 Thu Jun 4 12:07:32 1992 Mark Eichin (eichin@cygnus.com)
16509 * Makefile.in: make gprof rules similar to byacc rules (instead of
16510 vestigal $(unsubdir) that didn't work...)
16512 Thu Jun 4 00:37:05 1992 Per Bothner (bothner@rtl.cygnus.com)
16514 * config.sub: Add support for Linux.
16515 * Makefile.in: Use $(FLAGS_TO_PASS) more consistently
16516 (at least for libg++).
16518 Tue Jun 02 20:03:00 1992 david d `zoo' zuhn (zoo@cygnus.com)
16520 * configure.texi: fix doc for the -nfp option to configure
16522 Tue Jun 2 17:20:52 1992 Michael Tiemann (tiemann@cygnus.com)
16524 * Makefile.in (all-binutils): ar needs flex, so depend on all-flex.
16526 Sun May 31 15:04:08 1992 Mark Eichin (eichin at cygnus.com)
16528 * config.sub: changed [^-]+ to [^-][^-]* so that it works under
16529 Sun sed. (BSD 4.3 sed doesn't handle [^-]+ either.)
16530 * configure.in: added solaris* host_makefile_frag hook.
16532 Sun May 31 01:10:34 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16534 * config.sub: changed recognition of m68000 so that various
16535 m68k types can be specified via m680[01234]0
16537 Sat May 30 21:01:06 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16539 * config.sub (basic_machine): fix sed so that '-foo' isn't
16540 completely substituted out while .+'-foo' loses the '-foo'
16542 Wed May 27 23:18:52 1992 Michael Tiemann (tiemann@rtl.cygnus.com)
16544 * config.sub ($os): Add -aout.
16546 Fri May 22 14:00:02 1992 Per Bothner (bothner@cygnus.com)
16548 * configure: If host_makefile_frag is absolute, don't
16549 prefix ${invsubdir} (relevant to libg++ auto-configure).
16551 Thu May 21 18:00:09 1992 Michael Tiemann (tiemann@rtl.cygnus.com)
16553 * Makefile.in (tooldir): Define it.
16554 (all-ld): Depend on all-flex.
16556 Sun May 10 21:45:59 1992 Per Bothner (bothner@rtl.cygnus.com)
16558 * Makefile.in (check): Fix libg++ special case.
16560 Fri May 8 08:31:41 1992 K. Richard Pixley (rich@cygnus.com)
16562 * configure: do not bury `pwd` into config.status, thus do fewer
16565 * configure: print the "Building in" message only when building in
16566 other than "." AND verbose.
16568 * configure: remove -s, rework -v to better accomodate guested
16571 * standards.texi: updated to 3 may, fixed librid <-> libdir typo.
16573 Fri May 1 18:00:50 1992 K. Richard Pixley (rich@cygnus.com)
16575 * Makefile.in: macroize flags passed on recursion. remove
16578 Thu Apr 30 08:56:20 1992 K. Richard Pixley (rich@cygnus.com)
16580 * configure: get makesrcdir right for subdirs deeper than 1.
16582 * Makefile.in: pass INSTALL, INSTALL_DATA, INSTALL_PROGRAM on
16585 Fri Apr 24 15:51:51 1992 K. Richard Pixley (rich@cygnus.com)
16587 * Makefile.in: don't print subdir_do or recursion lines.
16589 Fri Apr 24 15:22:04 1992 K. Richard Pixley (rich@cygnus.com)
16591 * standards.texi: added menu item.
16593 * Makefile.in: build and install standards.info.
16595 * standards.texi: new file.
16597 Wed Apr 22 18:06:55 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16599 * configure: test for and move config.status pieces from
16602 Wed Apr 22 14:38:34 1992 Fred Fish (fnf@cygnus.com)
16604 * configure: Test for existance of files before trying to mv
16605 them, to avoid numerous non-existance messages.
16607 Tue Apr 21 12:31:33 1992 K. Richard Pixley (rich@cygnus.com)
16609 * configure: correct final line of config.status.
16611 * configure: patch from eggert. Avoids a protection problem if
16612 the original Makefile.in is read only.
16614 * configure: use move-if-change from gcc to create config.status.
16615 Some makefiles depend on config.status to tell if a directory
16616 has been reconfigured for a different host. This change
16617 prevents those directories from remaking everything in the case
16618 where the reconfig was only intended to rebuild a Makefile.
16620 * configure: test for config.sub with "config.sub sun4" rather
16621 than "config.sub ${host_alias}". Otherwise we can't tell a bad
16622 host alias from a missing config.sub.
16624 Mon Apr 20 18:16:36 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16626 * Makefile.in: explicitly pass CFLAGS on recursion. no longer pass
16627 MINUS_G (this can be done with CFLAGS). Default CFLAGS to -g.
16629 Fri Apr 17 18:27:51 1992 Per Bothner (bothner@cygnus.com)
16631 * configure: mkdir ${subdir} as needed.
16633 Wed Apr 15 17:37:22 1992 K. Richard Pixley (rich@cygnus.com)
16635 * Makefile.in,configure.in: added autoconf.
16637 Wed Apr 15 17:27:34 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16639 * Makefile.in: no longer pass against on recursion.
16641 * Makefile.in: added .NOEXPORT: so that stray makefile_frag
16642 definitions are not inherited.
16644 * configure: correct makesrcdir when subdir is .
16646 Tue Apr 14 11:56:09 1992 Per Bothner (bothner@cygnus.com)
16648 * configure: Add support for 'subdirs' variable, which is
16649 like 'configdirs', except that configure doesn't re-invoke
16650 itself for subdirs, it just creates a Makefile for each subdir.
16651 * configure.texi: Document subdirs.
16653 Mon Apr 13 18:50:16 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16655 * configure.in: added flex to configdirs
16657 Mon Apr 13 18:43:55 1992 K. Richard Pixley (rich@cygnus.com)
16659 * Makefile.in: remove clean-stamps from clean.
16661 Sat Apr 11 03:52:03 1992 John Gilmore (gnu at cygnus.com)
16663 * configure.in: Add gdbtest to configdirs.
16665 Fri Apr 10 23:11:49 1992 Fred Fish (fnf@cygnus.com)
16667 * Makefile.in (MINUS_G): Add macro, default to -g, pass on
16668 to recursive makes.
16669 * configure.in: Recognize new ncr3000 config.
16671 Wed Apr 8 23:08:12 1992 K. Richard Pixley (rich@cygnus.com)
16673 * Makefile.in, configure.in: removed references to gdbm.
16675 Tue Apr 7 16:48:20 1992 Per Bothner (bothner@cygnus.com)
16677 * config.sub: Don't canonicalize os value
16678 newsos* to bsd (readline needs to check for newsos).
16679 (This fix was earlier made Jan 31, but got re-broken.)
16681 Mon Apr 6 14:34:08 1992 Stu Grossman (grossman at cygnus.com)
16683 * configure.in: sco is an os, not a vendor!
16685 * configure: Quote $( better. Keep various shells happy.
16687 Tue Mar 31 16:32:57 1992 K. Richard Pixley (rich@cygnus.com)
16689 * Makefile.in: eliminate stamp-files.
16691 Mon Mar 30 22:20:23 1992 K. Richard Pixley (rich@cygnus.com)
16693 * Makefile.in: add send_pr. remove "force" from .stmp-gprof rule.
16694 Supress echoing of all the "if [ -d ... $(MAKE)" lines.
16696 Wed Mar 25 15:20:04 1992 Stu Grossman (grossman@cygnus.com)
16698 * config.sub: fix iris/iris3.
16700 Wed Mar 25 10:34:19 1992 K. Richard Pixley (rich@cygnus.com)
16702 * configure: re-add -rm.
16704 Tue Mar 24 23:50:16 1992 K. Richard Pixley (rich@cygnus.com)
16706 * Maskefile.in: add .stmp-rcs to all.
16708 * configure.in: remove gas from rs6000 build, use aix host fragment.
16710 Mon Mar 23 19:43:35 1992 K. Richard Pixley (rich@cygnus.com)
16712 * configure: pass down site_option during recursion.
16714 Thu Mar 19 16:49:36 1992 Stu Grossman (grossman at cygnus.com)
16716 * Makefile.in (all.cross): Add .stmp-bfd .stmp-readline.
16718 Wed Mar 18 15:29:33 1992 Mike Stump (mrs@cygnus.com)
16720 * configure: Change exec_prefix so that it really defaults to prefix.
16722 Sat Mar 14 17:20:38 1992 Fred Fish (fnf@cygnus.com)
16724 * Makefile.in, configure.in: Add support for mmalloc library.
16726 Fri Mar 13 18:44:18 1992 K. Richard Pixley (rich@cygnus.com)
16728 * Makefile.in: add stmp dependencies for a few more things.
16730 Thu Mar 12 04:56:24 1992 K. Richard Pixley (rich@cygnus.com)
16732 * configure: adjusted error message on objdir/srcdir configure
16733 collision, per john's suggestion.
16735 * Makefile.in: add libiberty stmp to all and all.cross.
16737 Wed Mar 11 02:07:52 1992 K. Richard Pixley (rich@cygnus.com)
16739 * Makefile.in: remove force dependencies, add grep to all.
16741 Tue Mar 10 21:49:18 1992 K. Richard Pixley (rich@mars.cygnus.com)
16743 * Makefile.in: drop flex. make stamp files work.
16745 * configure: added test for conflicting configuration in srcdir,
16746 remove trailing slashes from srcdir. Otherwise emacs gdb mode
16747 gets cranky. use relative paths for configure and srcdir
16748 whenever possible. Send some error messages to stderr that were
16751 Tue Mar 10 18:01:55 1992 Per Bothner (bothner@cygnus.com)
16753 * Makefile.in: Fix libg++ rule to check for gcc directory
16754 before using gcc/gcc. Also pass XTRAFLAGS.
16756 Thu Mar 5 21:45:07 1992 K. Richard Pixley (rich@sendai)
16758 * Makefile.in: added stmp-files so that directories aren't polled
16759 when they are already built.
16761 * configure.texi: fixed a node pointer problem.
16763 Thu Mar 5 12:05:58 1992 Stu Grossman (grossman at cygnus.com)
16765 * config.sub configure.in gdb/configure.in
16766 gdb/mips-tdep.c gdb/mipsread.c gdb/procfs.c gdb/signame.h
16767 gdb/tm-irix3.h gdb/tm-mips.h gdb/xm-irix4.h gdb/config/mt-irix3
16768 gdb/config/mh-irix4 texinfo/configure.in: Port to SGI Irix-4.x.
16770 Wed Mar 4 02:57:46 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16772 * configure: -recurring becomes -silent. corrected help message
16775 * Makefile.in: mkdir $(exec_prefix) and $(tooldir).
16777 Tue Mar 3 14:51:21 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16779 * configure: when building Makefile for crosses, replace
16780 tooldir and program_prefix. default srcdir from location of
16781 config.sub. remove "for host in hosts" and "for target in
16784 Wed Feb 26 19:48:25 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16786 * Makefile.in: Do not pass bindir or mandir to cvs.
16788 Wed Feb 26 18:04:40 1992 K. Richard Pixley (rich@cygnus.com)
16790 * Makefile.in, configure.in: removed traces of namesubdir,
16791 -subdirs, $(subdir), $(unsubdir), some rcs triggers. Forced
16792 copyrights to '92, changed some from Cygnus to FSF.
16794 * configure.texi: remove most references to multiple hosts,
16795 multiple targets, subdirs, etc.
16797 * configure.man: removed rcsid. reference config.sub not
16800 * Makefile.in: mkdir $(infodir) on install-info.
16802 Wed Feb 19 15:41:13 1992 John Gilmore (gnu at cygnus.com)
16804 * configure.texi: Explain better about .gdbinit and about
16805 the environment that configure.in sections run in.
16807 Fri Feb 7 07:55:00 1992 John Gilmore (gnu at cygnus.com)
16809 * configure.in: Ultrix is only a decstation if it's a MIPS.
16811 Fri Jan 31 21:54:51 1992 John Gilmore (gnu at cygnus.com)
16813 * README: DOC.configure => cfg-paper.texi.
16815 Fri Jan 31 21:48:18 1992 Stu Grossman (grossman at cygnus.com)
16817 * config.sub (near case $os): Don't convert newsos* to bsd!
16819 Fri Jan 31 02:27:32 1992 John Gilmore (gnu at cygnus.com)
16821 * Makefile.in: Reinstall change from gdb-4.3 that reduces
16822 the number of copies of COPYING that go into the GDB tar file.
16824 Thu Jan 30 16:17:30 1992 Stu Grossman (grossman at cygnus.com)
16826 * bfd/configure.in, gdb/config/mh-i386sco,
16827 gdb/config/mt-i386v32, gdb/configure.in, readline/configure.in:
16828 Fix SCO configuration stuff.
16830 Tue Jan 28 23:51:07 1992 Per Bothner (bothner at cygnus.com)
16832 * Makefile.in: For libg++, make sure the -I pointing
16833 to the gcc directory goes *after* all the libg++-local -I flags.
16834 Also, move just-gcc dependency from just-libg++ to all-libg++.
16836 Tue Jan 28 12:56:24 1992 Stu Grossman (grossman at cygnus.com)
16838 * configure: Change -x to -f to keep Ultrix /bin/test happy.
16840 Sat Jan 18 17:45:11 1992 Stu Grossman (grossman at cygnus.com)
16842 * Makefile.in (make-gdb.tar.Z): Remove texinfo targets.
16844 Sat Jan 18 17:03:21 1992 Fred Fish (fnf at cygnus.com)
16846 * config.sub: Add stratus configuration frags. Also
16849 Sat Jan 18 15:35:29 1992 Stu Grossman (grossman at cygnus.com)
16851 * Makefile.in (DEV_SUPPORT): add configure.man.
16853 * config.sub(Decode manufacturer-specific): add -none*.
16855 Fri Jan 17 17:58:05 1992 Stu Grossman (grossman at cygnus.com)
16857 * Makefile.in: remove form feeds to make Sun's make happy.
16858 (DEVO_SUPPORT): DOC.configure => cfg-paper.texi.
16860 Sat Jan 4 16:11:44 1992 John Gilmore (gnu at cygnus.com)
16862 * Makefile.in (AR_FLAGS): Make quieter.
16864 Thu Jan 2 22:57:12 1992 John Gilmore (gnu at cygnus.com)
16866 * configure.in: Add libg++.
16867 * configure: When verbose, don't output the command line at each
16868 level; it will be unremarkably the same as the previous version,
16869 which will be the same as what the user typed.
16871 Fri Dec 27 16:26:47 1991 K. Richard Pixley (rich at cygnus.com)
16873 * configure.in, Makefile.in: fix clean-info, add flex. add
16876 * configure: be less sensitive to spaces in Makefile.in. Do not
16877 look for sources in "..". Doing so breaks subdirectories that
16878 might have their own configure. If a subdir has it's own
16879 configure script, use it.
16881 Thu Dec 26 16:30:26 1991 K. Richard Pixley (rich at cygnus.com)
16883 * cfg-paper.texi: some changes suggested by rms.
16885 Thu Dec 26 10:13:36 1991 Fred Fish (fnf at cygnus.com)
16887 * config.sub: Merge in some small additions from the FSF version,
16888 taken from the gcc distribution, to bring the Cygnus and FSF
16889 versions into closer sync.
16891 Fri Dec 20 11:34:18 1991 Fred Fish (fnf at cygnus.com)
16893 * configure.in: Changed svr4 references to sysv4.
16895 Thu Dec 19 15:54:29 1991 K. Richard Pixley (rich at cygnus.com)
16897 * configure: added -V for version number option.
16899 Wed Dec 18 15:39:34 1991 K. Richard Pixley (rich at cygnus.com)
16901 * DOC.configure, cfg-paper.texi: revised, updated, and texinfo'd.
16902 renamed from DOC.configure to cfg-paper.texi.
16904 Mon Dec 16 23:05:19 1991 K. Richard Pixley (rich at rtl.cygnus.com)
16906 * configure, config.subr, config.sub: config.subr is now
16909 Fri Dec 13 01:17:06 1991 K. Richard Pixley (rich at cygnus.com)
16911 * configure.texi: new file, in progress.
16913 * Makefile.in: build info file and install the man page for
16916 * configure.man: new file, first cut.
16918 * configure: find config.subr again now that configuration "none"
16919 has gone. removed all traces of the -ansi option. removed all
16920 traces of the -languages option.
16922 * config.subr: resync from rms.
16924 1991-12-11 K. Richard Pixley (rich at rtl.cygnus.com)
16926 * configure, config.sub, config.subr: merge config.sub into
16927 config.subr, call the result config.subr, remove config.sub, use
16930 * Makefile.in: revised install for dir.info.
16932 1991-12-10 K. Richard Pixley (rich at rtl.cygnus.com)
16934 * configure.in: add decstation host makefile frag.
16936 * Makefile.in: BISON now bison -y again. also install-gcc on
16937 install. clean-gdbm on clean. infodir belongs in datadir.
16938 Make directories for info install. Build dir.info here then
16941 1991-12-09 K. Richard Pixley (rich at rtl.cygnus.com)
16943 * Makefile.in: fix for bad directory tests.
16945 1991-12-07 K. Richard Pixley (rich at rtl.cygnus.com)
16947 * configure: \{1,2\} appears to be a sysv'ism. Use a different
16948 regexp. -srcdir relative was being handled incorrectly.
16950 * Makefile.in: unwrapped some for loops so that parallel makes
16951 work again and so one can focus one's attention on a particular
16954 1991-12-06 K. Richard Pixley (rich at rtl.cygnus.com)
16956 * configure: added PWD as a stand in for `pwd` (for speed). use
16957 elif wherever possible. make -srcdir work without -objdir.
16958 -objdir= commented out.
16960 1991-12-05 K. Richard Pixley (rich at rtl.cygnus.com)
16962 * configure: +options become --options. -subdirs commented out.
16963 added -host, -datadir. Renamed -destdir to -prefix. Comment in
16964 Makefile now at top of generated Makefile. Removed cvs log
16965 entries. added -srcdir. create .gdbinit only if there is one
16968 * Makefile.in: idestdir and ddestdir go away. Added copyrights
16969 and shift gpl to v2. Added ChangeLog if it didn't exist. docdir
16970 and mandir now keyed off datadir by default.
16972 1991-11-22 K. Richard Pixley (rich at rtl.cygnus.com)
16974 * Freshly created ChangeLog.
16981 version-control: never