]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - ChangeLog
gprofng: avoid using `fallthrough' attributes
[thirdparty/binutils-gdb.git] / ChangeLog
1 2022-03-15 Jose E. Marchesi <jose.marchesi@oracle.com>
2
3 * gprofng/src/gp-collect-app.cc (collect::check_args): Use
4 fallthrough comment instead of attribute.
5
6 2022-03-11 Vladimir Mezentsev <vladimir.mezentsev@oracle.com>
7
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.
14
15 2022-01-22 Nick Clifton <nickc@redhat.com>
16
17 * 2.38 release branch created.
18
19 2022-01-17 Nick Clifton <nickc@redhat.com>
20
21 Update config.[guess|sub] from upstream:
22
23 2022-01-09 Idan Horowitz <idan.horowitz@gmail.com>
24
25 config.guess: recognize SerenityOS
26 * config.guess (*:SerenityOS:*:*): Recognize.
27 (timestamp): Update.
28
29 2022-01-03 Bernhard Voelker <mail@bernhard-voelker.de>
30
31 Fix GPLv3 license headers to use a comma instead of semicolon
32 See: https://www.gnu.org/licenses/gpl-3.0.html#howto
33
34 Update license headers automatically using the following script:
35
36 $ git grep -l 'Foundation; either version 3' \
37 | xargs sed -i '/Foundation; either version 3/ s/n; e/n, e/'
38
39 * config.guess: Adjust via the above command.
40 (timestamp): Update.
41 * config.sub: Likewise.
42 * doc/config.guess.1: Regenerate.
43 * doc/config.sub.1: Likewise.
44
45 2022-01-01 Dmitry V. Levin <ldv@altlinux.org>
46
47 Update copyright years
48 * config.guess: Update copyright years.
49 * config.sub: Likewise.
50
51 2021-12-25 Dmitry V. Levin <ldv@altlinux.org>
52
53 config.sub: alias armh to armv7l
54 ALT uses armh as an alias for armv7l-alt-linux-gnueabihf since 2012.
55
56 * config.sub (armh-unknown|armh-alt): Set cpu, vendor, and basic_os.
57 (timestamp): Update.
58
59 2021-12-24 Dmitry V. Levin <ldv@altlinux.org>
60
61 config.sub: alias aarch64le to aarch64
62 Apparently, QNX reports aarch64 as aarch64le on little-endian machines.
63
64 * config.sub (aarch64le-*): Set cpu to aarch64.
65 (timestamp): Update.
66
67 2021-12-13 Dmitry V. Levin <ldv@altlinux.org>
68
69 config.sub: fix typo in timestamp
70 * config.sub: Fix timestamp.
71
72 2021-11-30 Andreas F. Borchert <github@andreas-borchert.de>
73
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.
77
78 See the following code at lines 434 to 445:
79
80 | SUN_ARCH=i386
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
88 | then
89 | SUN_ARCH=x86_64
90 | fi
91 | fi
92
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
100 default.
101
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.
105
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
109 platforms).
110
111 2021-10-27 Jordi Sanfeliu <jordi@fibranet.cat>
112
113 Recognize Fiwix
114 $ make check
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)
121
122 * config.guess (i*86:Fiwix:*:*): Recognize.
123 * config.sub (fiwix*): Likewise.
124
125 2021-10-18 Kinshuk Dua <kinshukdua@gmail.com>
126
127 config.sub: Fix typo in comment
128 Fixes: 5e531d391852a54e7fab2d8ff55625fca514b305
129
130 2021-08-14 Nick Bowler <nbowler@draconx.ca>
131
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:
137
138 % dash -c 'x=good; x=bad echo >/dev/null; echo $x'
139 good
140
141 % jsh -c 'x=good; x=bad echo >/dev/null; echo $x'
142 bad
143
144 The config.sub script contains a few commands of the form:
145
146 IFS=- read ...
147
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,
150 for example:
151
152 % jsh config.sub i386-linux-gnu
153 config.sub: test: unknown operator gnu
154
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
158
159 * config.sub: Save and restore IFS explicitly to avoid shell bugs.
160 * doc/config.sub.1: Regenerate.
161
162 2021-08-04 Jeremy Soller <jackpot51@gmail.com>
163
164 config.sub: add Linux Relibc Target
165 $ make check
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)
172
173 * config.sub (relibc*): Recognize.
174 * doc/config.sub.1: Regenerate.
175 * testsuite/config-sub.data (x86_64-linux-relibc): New test.
176
177 2021-07-06 Stephanos Ioannidis <root@stephanos.io>
178
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.
182
183 $ make check
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)
190
191 * config.sub (zephyr*): Recognize.
192 * doc/config.sub.1: Regenerate.
193 * testsuite/config-sub.data: Add testcases for *-zephyr.
194
195 2021-07-03 Ozkan Sezer <sezero@users.sourceforge.net>
196
197 config.sub: disable shellcheck SC2006 / SC2268 warnings
198 This is in line with the recent config.guess change in commit
199 12fcf67c9108f4c4b581eaa302088782f0ee40ea
200
201 * config.sub (shellcheck disable): Add SC2006,SC2268.
202
203 Suggested-by: Jacob Bachmeyer <jcb@gnu.org>
204
205 2021-07-03 Ozkan Sezer <sezero@users.sourceforge.net>
206
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
211 useful.
212
213 * config.sub: Consistently quote the argument of echo.
214 * doc/config.sub.1: Regenerate.
215
216 Suggested-by: Jacob Bachmeyer <jcb@gnu.org>
217
218 2021-07-02 Ozkan Sezer <sezero@users.sourceforge.net>
219
220 config.sub: replace POSIX $( ) with classic ` ` throughout
221 This is in line with the recent config.guess change in commit
222 d70c4fa934de164178054c3a60aaa0024ed07c91.
223
224 The patch was generated using patch-6.gawk script introduced in that
225 commit.
226
227 * config.sub: Revert POSIX command substitutions to classic form.
228
229 2021-06-04 Vineet Gupta <Vineet.Gupta1@synopsys.com>
230
231 Recognize arc32
232 This is the 32-bit variant of ARCv3 ISA (which is not compatible with the
233 32-bit ARCv2 ISA)
234
235 | make check
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)
242
243 * config.guess (arc32:Linux:*:*): Recognize.
244 * config.sub (arc32): Likewise.
245
246 2021-05-27 Jacob Bachmeyer <jcb@gnu.org>
247
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.
252
253 * patch-1.gawk: Remove.
254 * patch-3.gawk: Likewise.
255 * patch-6.gawk: Likewise.
256
257 2021-05-26 Jacob Bachmeyer <jcb@gnu.org>
258
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.
262
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.
266
267 * config.guess: Rewrite "if" for Pyramid systems to "case".
268
269 2021-05-26 Jacob Bachmeyer <jcb@gnu.org>
270
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.
276
277 This patch was generated using the included GNU Awk program.
278
279 * config.guess: Revert POSIX command substitutions to classic form.
280 * patch-6.gawk: Store the tool that produced the automated patch.
281
282 2021-05-26 Jacob Bachmeyer <jcb@gnu.org>
283
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.
287
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.
292
293 2021-05-26 Jacob Bachmeyer <jcb@gnu.org>
294
295 config.guess: automatic fixups after previous automated patch
296 This patch was generated using the following command:
297
298 sed -i config.guess \
299 -e '/="[^"]\+"\(-\|$\)/s/="\([^"([:space:])]\+\)"/=\1/' \
300 -e '/="[^"]\+"[[:alnum:]]/s/="\$\([^([:space:])]\+\)"/=${\1}/' \
301 -e \
302 '/\$(echo[^|]\+|/s/\([^[:space:]]\)[[:space:]]*|[[:space:]]*sed/\1 | sed/g'
303
304 * config.guess: Remove unneeded quotes in other variable assignments,
305 standardize spacing for "echo ... | sed" substitutions.
306
307 2021-05-26 Jacob Bachmeyer <jcb@gnu.org>
308
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.
312
313 This patch was generated using the included GNU Awk program.
314
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.
318
319 2021-05-25 Jacob Bachmeyer <jcb@gnu.org>
320
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
324 cases.
325
326 2021-05-25 Jacob Bachmeyer <jcb@gnu.org>
327
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.
331
332 This patch was generated using the included GNU Awk program.
333
334 * config.guess: Use GUESS variable to hold results of uname analysis.
335 * patch-1.gawk: Store the tool that produced the automated patch.
336
337 2021-05-25 Jacob Bachmeyer <jcb@gnu.org>
338
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.
342
343 * config.guess: Introduce GUESS variable to hold results of uname analysis.
344
345 2021-05-24 Dmitry V. Levin <ldv@altlinux.org>
346
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
352 or empty.
353
354 * config.guess (*:Plan9:*:*): Fix shellcheck warning SC2154.
355
356 2021-05-24 Dmitry V. Levin <ldv@altlinux.org>
357
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'.
363
364 The change is made automatically using the following command:
365 $ sed -E -i 's/(\<case )"(\$[^"]+)"( in\>)/\1\2\3/' config.guess
366
367 * config.guess: Simplify case commands by removing quotes around the
368 argument.
369
370 Suggested-by: Jacob Bachmeyer <jcb@gnu.org>
371
372 2021-05-24 Dmitry V. Levin <ldv@altlinux.org>
373
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
378 reset around.
379
380 * config.guess (alpha:OSF1:*:*): Reset exit trap earlier.
381 * doc/config.guess.1: Regenerate.
382
383 2021-10-29 Eli Zaretskii <eliz@gnu.org>
384
385 * gdb/doc/gdb.texinfo (Command Options): (Data): Document
386 '-memory-tag-violations'. Update the example.
387
388 2021-09-28 Andrew Burgess <andrew.burgess@embecosm.com>
389
390 * src-release.sh (GDB_SUPPPORT_DIRS): Add libbacktrace.
391
392 2021-09-27 Nick Alcock <nick.alcock@oracle.com>
393
394 PR libctf/27967
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
399 nm output.
400
401 2021-09-27 Nick Alcock <nick.alcock@oracle.com>
402
403 PR libctf/27967
404 * libtool.m4 (lt_cv_sys_global_symbol_pipe): Augment symcode for
405 Solaris 11.
406
407 2021-07-03 Nick Clifton <nickc@redhat.com>
408
409 * 2.37 release branch created.
410
411 2021-07-03 Nick Clifton <nickc@redhat.com>
412
413 * libiberty: Sync with gcc. Bring in:
414 2021-06-30 Gerald Pfeifer <gerald@pfeifer.com>
415
416 * make-temp-file.c (usrtmp): Remove.
417 (choose_tmpdir): Remove use of usrtmp.
418
419 2021-06-28 Indu Bhagat <indu.bhagat@oracle.com>
420
421 * simple-object.c (handle_lto_debug_sections): Copy over .BTF section.
422
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>
427
428 * simple-object.c (handle_lto_debug_sections): Copy over .ctf
429 sections.
430
431 2021-06-05 John David Anglin <danglin@gcc.gnu.org>
432
433 PR target/100734
434 * configure.ac: Use libiberty snprintf and vsnprintf on
435 hppa*-*-hpux*.
436 * configure: Regenerate.
437
438 2021-05-06 Tom Tromey <tom@tromey.com>
439
440 * hashtab.c (htab_eq_string): New function.
441
442 2021-05-04 Eric Botcazou <ebotcazou@adacore.com>
443
444 * configure.ac: Make test for variables more robust.
445 * configure: Regenerate.
446
447 2021-05-03 H.J. Lu <hjl.tools@gmail.com>
448
449 PR bootstrap/99703
450 * configure: Regenerated.
451
452 2021-04-21 Andreas Schwab <schwab@linux-m68k.org>
453
454 PR demangler/100177
455 * rust-demangle.c (demangle_const_char): Properly print the
456 character value.
457
458 2021-03-31 Patrick Palka <ppalka@redhat.com>
459
460 PR c++/88115
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
465 change.
466 <case DEMANGLE_COMPONENT_UNARY>: Likewise.
467 * testsuite/demangle-expected: Adjust __alignof__ tests.
468
469 2021-03-16 Nick Clifton <nickc@redhat.com>
470
471 * sha1.c (sha1_process_bytes): Use memmove in place of memcpy.
472
473 2021-02-20 Mike Frysinger <vapier@gentoo.org>
474
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.
483
484 2021-02-19 Ayush Mittal <ayush.m@samsung.com>
485
486 * argv.c (expandargv): free allocated buffer if read fails.
487
488 2021-02-01 Martin Sebor <msebor@redhat.com>
489
490 * dyn-string.c (dyn_string_insert_cstr): Use memcpy instead of strncpy
491 to avoid -Wstringop-truncation.
492
493 2021-05-29 Mike Frysinger <vapier@gentoo.org>
494
495 * configure.ac: Add gnulib to configdirs for sim.
496 * configure: Regenerate.
497
498 2021-05-24 Maciej W. Rozycki <macro@orcam.me.uk>
499
500 * MAINTAINERS: Update path to readline config.{sub,guess} files.
501
502 2021-05-24 Maciej W. Rozycki <macro@orcam.me.uk>
503
504 * config.guess: Import from upstream.
505 * config.sub: Likewise.
506
507 2021-05-18 Mike Frysinger <vapier@gentoo.org>
508
509 * Makefile.def: Add configure-sim dependency on all-gnulib.
510 * Makefile.in: Regenerated.
511
512 2021-05-04 Nick Clifton <nickc@redhat.com>
513
514 * configure.ac (AC_PROG_CC): Replace with AC_PROG_CC_C99.
515 * configure: Regenerate.
516
517 2021-03-18 Nick Alcock <nick.alcock@oracle.com>
518
519 PR libctf/27482
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.
525
526 2021-03-12 Mike Frysinger <vapier@gentoo.org>
527
528 * Makefile.def: Remove all-sim dependency on configure-gdb.
529 * Makefile.in: Regenerated.
530
531 2021-02-28 H.J. Lu <hongjiu.lu@intel.com>
532
533 PR binutils/26766
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.
538
539 2021-02-09 Alan Modra <amodra@gmail.com>
540
541 * configure.ac: Delete arm*-*-symbianelf* entry.
542 * configure: Regenerate.
543
544 2021-01-26 Nick Alcock <nick.alcock@oracle.com>
545
546 * Makefile.def: Add install-libctf dependency to install-ld.
547 * Makefile.in: Regenerated.
548
549 2021-01-12 Mike Frysinger <vapier@gentoo.org>
550
551 * src-release.sh (do_proto_toplev): Rewrite indentation.
552
553 2021-01-11 H.J. Lu <hongjiu.lu@intel.com>
554
555 PR binutils/26766
556 * configure.ac:
557 * configure: Regenerated.
558
559 2021-01-11 H.J. Lu <hongjiu.lu@intel.com>
560
561 PR ld/27173
562 * configure: Regenerated.
563 * libtool.m4 (_LT_CMD_OLD_ARCHIVE): Check if AR works with
564 --plugin and rc before enabling --plugin.
565
566 2021-01-09 H.J. Lu <hongjiu.lu@intel.com>
567
568 PR binutils/26766
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
581 the PGO build.
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.
587
588 2021-01-09 H.J. Lu <hongjiu.lu@intel.com>
589
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
595 RANLIB if possible.
596 * Makefile.in: Regenerated.
597 * configure: Likewise.
598
599 2021-01-09 Nick Clifton <nickc@redhat.com>
600
601 * 2.36 release branch crated.
602
603 2021-01-07 Samuel Thibault <samuel.thibault@gnu.org>
604
605 * libtool.m4: Match gnu* along with other GNU systems.
606
607 2021-01-07 Alan Modra <amodra@gmail.com>
608
609 * config.sub: Accept OS of eabi* and gnueabi*.
610
611 2021-01-05 Nick Alcock <nick.alcock@oracle.com>
612
613 * Makefile.def (libctf): No longer no_check. Checking depends on
614 all-ld.
615 * Makefile.in: Regenerated.
616
617 2021-01-05 Nick Clifton <nickc@redhat.com>
618
619 * libiberty: Sync with gcc. Bring in:
620 2021-01-04 Martin Liska <mliska@suse.cz>
621
622 * strverscmp.c: Convert to utf8 from iso8859.
623
624 2020-12-22 Jason Merrill <jason@redhat.com>
625
626 PR c++/67343
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.
634
635 2020-12-21 Jason Merrill <jason@redhat.com>
636
637 * cp-demangle.c (d_expression_1): Recognize qualified-id
638 on RHS of dt/pt.
639 * testsuite/demangle-expected: Add test.
640
641 2020-12-21 Jason Merrill <jason@redhat.com>
642
643 * cp-demangle.c (d_unqualified_name): Clear is_expression.
644 * testsuite/demangle-expected: Add tests.
645
646 2020-11-25 Matthew Malcomson <matthew.malcomson@arm.com>
647
648 * configure: Regenerate.
649 * configure.ac: Avoid using sanitizer.
650
651 2020-11-13 Eduard-Mihai Burtescu <eddyb@lyken.rs>
652
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.
678
679 2020-11-13 Seija Kijin <doremylover456@gmail.com>
680
681 * strstr.c (strstr): Make implementation ANSI/POSIX compliant.
682
683 2020-11-11 Patrick Palka <ppalka@redhat.com>
684
685 PR c++/88115
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__.
692
693 2020-11-09 Christophe Lyon <christophe.lyon@linaro.org>
694
695 * pex-win32.c (pex_win32_exec_child): Initialize orig_err.
696
697 2020-10-06 Martin Liska <mliska@suse.cz>
698
699 PR lto/97290
700 * simple-object-elf.c (simple_object_elf_copy_lto_debug_sections):
701 Use sh_link of a .symtab_shndx section.
702
703 2021-01-05 Alan Modra <amodra@gmail.com>
704
705 * config.guess: Import from upstream.
706 * config.sub: Likewise.
707
708 2020-12-16 Martin Liska <mliska@suse.cz>
709 Tom de Vries <tdevries@suse.de>
710
711 * gdb/debuginfod-support.c (struct user_data): Remove has_printed
712 field. Add meter field.
713 (progressfn): Print progress using meter.
714
715 2020-12-02 Enze Li <lienze2010@hotmail.com>
716
717 * .gitignore: Add gnu global outputs.
718
719 2020-12-02 Simon Marchi <simon.marchi@polymtl.ca>
720
721 * .gitignore: Sync with gcc.
722
723 2020-10-26 Andreas Rammhold <andreas@rammhold.de>
724
725 * src-release.sh: Use sha256sum instead of md5sum.
726
727 2020-10-14 Andrew Burgess <andrew.burgess@embecosm.com>
728
729 * Makefile.in: Rebuild.
730 * Makefile.def: Make distclean-gnulib depend on distclean-gdb and
731 distclean-gdbserver.
732
733 2020-07-24 Aaron Merey <amerey@redhat.com>
734
735 * configure: Rebuild.
736 * configure.ac: Remove AC_DEBUGINFOD.
737
738 2020-07-04 Nick Clifton <nickc@redhat.com>
739
740 Binutils 2.35 branch created.
741
742 2020-04-21 Stephen Casner <casner@acm.org>
743
744 PR 25830
745 * configure.ac (noconfigdirs): Exclude gdb & gprof for pdp11.
746 * configure: Rebuild.
747
748 2020-03-12 Tom Tromey <tom@tromey.com>
749
750 * Makefile.in: Rebuild.
751 * Makefile.def (gdbserver): Depend on gdbsupport.
752
753 2020-03-12 Tom Tromey <tom@tromey.com>
754
755 * Makefile.in: Rebuild.
756 * Makefile.def (gdbsupport): Don't depend on bfd.
757
758 2020-03-12 Tom Tromey <tom@tromey.com>
759
760 * Makefile.in: Rebuild.
761 * Makefile.def (gdbsupport): Depend on intl.
762
763 2020-02-17 Tom Tromey <tom@tromey.com>
764
765 * configure: Rebuild.
766 * configure.ac (configdirs): Add gnulib and gdbsupport when building
767 gdbserver.
768
769 2020-02-14 Tom Tromey <tom@tromey.com>
770
771 * Makefile.in: Rebuild.
772 * Makefile.def: Make gdbserver require gnulib and libiberty.
773
774 2020-02-07 Tom Tromey <tom@tromey.com>
775 Pedro Alves <palves@redhat.com>
776
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.
784
785 2020-01-28 Sergio Durigan Junior <sergiodj@redhat.com>
786
787 * src-release.sh (getver): Look for gdbsupport's
788 create-version.sh script at the current directory if tool is
789 "gdb".
790
791 2020-01-19 Simon Marchi <simon.marchi@polymtl.ca>
792
793 * remote-sim.c (gdbsim_target::wait): Return
794 sim_data->remote_sim_ptid instead of inferior_ptid.
795
796 2020-01-18 Nick Clifton <nickc@redhat.com>
797
798 Binutils 2.34 branch created.
799
800 2020-01-18 Nick Clifton <nickc@redhat.com>
801
802 Synchronize top level configure files with master version:
803
804 2020-01-01 Ben Elliston <bje@gnu.org>
805
806 * config.guess: Update copyright years.
807 * config.sub: Likewise.
808
809 2019-12-21 Ben Elliston <bje@gnu.org>
810
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
814 the bug report.
815
816 2019-12-21 Torbjörn Granlund <tg@gmplib.org>
817
818 * config.guess (alpha:Linux:*:*): Guard against missing
819 /proc/cpuinfo by redirecting standard error to /dev/null.
820
821 2019-09-12 Daniel Bittman <danielbittman1@gmail.com>
822
823 * config.guess (*:Twizzler:*:*): New.
824 * config.sub (-twizzler*): New.
825
826 2019-07-24 Ben Elliston <bje@gnu.org>
827
828 * config.guess (mips:OSF1:*.*): Whitespace cleanup.
829
830 2019-06-30 Ben Elliston <bje@gnu.org>
831
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.
834
835 2019-06-30 Ben Elliston <bje@gnu.org>
836
837 * config.sub: Recognise os108*.
838
839 2019-06-26 Ben Elliston <bje@gnu.org>
840
841 * config.sub (hp300): Set $os to hpux.
842
843 2019-06-26 Ben Elliston <bje@gnu.org>
844
845 * config.sub (vsta): Move into alphabetical order.
846
847 2019-06-10 Ben Elliston <bje@gnu.org>
848
849 * config.guess (*:OS108:*:*): Recognise new OS.
850
851 2019-05-28 Ben Elliston <bje@gnu.org>
852
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
857 uname -m.
858
859 2019-05-28 Ben Elliston <bje@gnu.org>
860
861 * config.guess (*:Darwin:*:*): Simplify UNAME_PROCESSOR.
862
863 2020-01-17 Simon Marchi <simon.marchi@efficios.com>
864
865 * Makefile.def: Add dependencies of all-gdbsupport on all-bfd.
866 * Makefile.in: Re-generate.
867
868 2020-01-14 Tom Tromey <tom@tromey.com>
869
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.
877
878 2020-01-09 Aaron Merey <amerey@redhat.com>
879
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.
884
885 2019-12-26 Christian Biesinger <cbiesinger@google.com>
886
887 * .gitignore: Add perf.data and perf.data.old.
888
889 2019-10-17 Sergio Durigan Junior <sergiodj@redhat.com>
890
891 * src-release.sh (GDB_SUPPORT_DIRS): Add libctf.
892
893 2019-10-17 Alan Modra <amodra@gmail.com>
894
895 PR 29
896 * src-release.sh (getver): Replace "head -1" with "head -n 1".
897
898 2019-07-30 Nick Alcock <nick.alcock@oracle.com>
899
900 * Makefile.def (host_modules): libctf is no longer no_install.
901 * Makefile.in: Regenerated.
902
903 2019-07-13 Nick Alcock <nick.alcock@oracle.com>
904
905 * Makefile.def (dependencies): all-ld depends on all-libctf.
906 * Makefile.in: Regenerated.
907
908 2019-09-09 Phil Blundell <pb@pbcl.net>
909
910 binutils 2.33 branch created
911
912 2019-08-19 Tom Tromey <tom@tromey.com>
913
914 * configure: Rebuild.
915 * configure.ac: Add --with-static-standard-libraries.
916
917 2019-08-09 Nick Clifton <nickc@redhat.com>
918
919 * libiberty: Sync with gcc. Bring in:
920 2019-08-08 Martin Liska <mliska@suse.cz>
921
922 PR bootstrap/91352
923 * lrealpath.c (is_valid_fd): New function.
924
925 2019-07-24 Martin Liska <mliska@suse.cz>
926
927 PR lto/91228
928 * simple-object-elf.c (simple_object_elf_copy_lto_debug_sections):
929 Find first '\0' starting from gnu_lto + 1.
930
931 2019-07-12 Ren Kimura <rkx1209dev@gmail.com>
932
933 * simple-object-elf.c (simple_object_elf_match): Check zero value shstrndx.
934 This fixes a Bug 90924.
935
936 2019-07-22 Martin Liska <mliska@suse.cz>
937
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'.
940
941 2019-07-18 Eduard-Mihai Burtescu <eddyb@lyken.rs>
942
943 * cplus-dem.c: Include rust-demangle.h.
944 * rust-demangle.c: Include rust-demangle.h.
945 * rust-demangle.h: New file.
946
947 2019-05-31 Michael Forney <mforney@mforney.org>
948
949 * cp-demangle.c: Don't define CP_DYNAMIC_ARRAYS if __STDC_NO_VLA__
950 is non-zero.
951
952 2019-04-30 Ben L <bobsayshilol@live.co.uk>
953
954 * d-demangle.c (dlang_parse_assocarray): Correctly handle error result.
955 * testsuite/d-demangle-expected: Add testcase.
956
957 * d-demangle.c (dlang_parse_tuple): Correctly handle error result.
958 * testsuite/d-demangle-expected: Add testcase.
959
960 * d-demangle.c (dlang_parse_structlit): Correctly handle error result.
961 * testsuite/d-demangle-expected: Add testcase.
962
963 * d-demangle.c (dlang_parse_arrayliteral): Correctly handle error result.
964 * testsuite/d-demangle-expected: Add testcase.
965
966 * d-demangle.c (dlang_parse_integer): Fix stack underflow.
967 * testsuite/d-demangle-expected: Add testcase.
968
969 * cp-demangle (d_print_comp_inner): Guard against a NULL 'typed_name'.
970 * testsuite/demangle-expected: Add testcase.
971
972 * cp-demangle.c (d_encoding): Guard against NULL return values from
973 d_right (dc).
974 * testsuite/demangle-expected: Add testcase.
975
976 2019-04-29 Ben L <bobsayshilol@live.co.uk>
977
978 * cp-demangle.c (d_expression_1): Don't peek ahead unless the current
979 char is valid.
980 * testsuite/demangle-expected: Add testcase.
981
982 2019-04-10 Nick Clifton <nickc@redhat.com>
983
984 PR 89394
985 * cp-demangle.c (cplus_demangle_fill_name): Reject negative
986 lengths.
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
993 reached.
994
995 2019-07-13 Joel Brobecker <brobecker@adacore.com>
996
997 * src-release (getver): If $tool/gdbsupport/create-version.sh
998 exists, use that to determine the version number.
999
1000 2019-06-21 Andreas Schwab <schwab@linux-m68k.org>
1001
1002 * src-release.sh (GDB_SUPPORT_DIRS): Add gnulib.
1003
1004 2019-06-14 Tom Tromey <tom@tromey.com>
1005
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.
1012
1013 2019-06-03 Nick Clifton <nickc@redhat.com>
1014
1015 Revert:
1016 2019-05-29 Nick Clifton <nickc@redhat.com>
1017
1018 * configure.ac (noconfigdirs): Add libctf if the target does not use
1019 the ELF file format.
1020 * configure: Regenerate.
1021
1022 2019-05-29 Nick Clifton <nickc@redhat.com>
1023
1024 * src-release.sh (do_proto_toplev): Add libctf to list of
1025 directories that can be disabled.
1026
1027 2019-05-29 Nick Clifton <nickc@redhat.com>
1028
1029 * configure.ac (noconfigdirs): Add libctf if the target does not use
1030 the ELF file format.
1031 * configure: Regenerate.
1032
1033 2019-05-28 Nick Alcock <nick.alcock@oracle.com>
1034
1035 * Makefile.def (dependencies): configure-libctf depends on all-bfd
1036 and all its deps.
1037 * Makefile.in: Regenerated.
1038
1039 2019-05-28 Nick Alcock <nick.alcock@oracle.com>
1040
1041 * MAINTAINERS: Add libctf.
1042
1043 2019-05-28 Nick Alcock <nick.alcock@oracle.com>
1044
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.
1051
1052 2019-05-23 Jose E. Marchesi <jose.marchesi@oracle.com>
1053
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.
1058
1059 2019-04-10 Nick Clifton <nickc@redhat.com>
1060
1061 * libiberty: Sync with gcc. Bring in:
1062 2019-04-10 Nick Clifton <nickc@redhat.com>
1063
1064 PR 89394
1065 * cp-demangle.c (cplus_demangle_fill_name): Reject negative
1066 lengths.
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
1073 reached.
1074
1075 2018-06-24 Nick Clifton <nickc@redhat.com>
1076
1077 2.32 branch created.
1078
1079 2019-01-14 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
1080
1081 Merge from GCC:
1082 PR target/88535
1083 * config.guess: Import upstream version 2019-01-03.
1084 * config.sub: Import upstream version 2019-01-01.
1085
1086 2019-01-10 Nick Clifton <nickc@redhat.com>
1087
1088 * libiberty: Sync with gcc. Bring in:
1089 2019-01-09 Sandra Loosemore <sandra@codesourcery.com>
1090
1091 PR other/16615
1092
1093 * cp-demangle.c: Mechanically replace "can not" with "cannot".
1094 * floatformat.c: Likewise.
1095 * strerror.c: Likewise.
1096
1097 2018-12-22 Jason Merrill <jason@redhat.com>
1098
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.
1106
1107 2019-01-03 Дилян Палаузов <dilyan.palauzov@aegee.org>
1108
1109 * configure.ac: Don't configure readline if --with-system-readline is
1110 used.
1111 * configure: Re-generate.
1112
1113 2018-10-31 Joseph Myers <joseph@codesourcery.com>
1114
1115 Merge from GCC:
1116 PR bootstrap/82856
1117 * multilib.am: New file. From automake.
1118
1119 2018-09-12 Sergio Durigan Junior <sergiodj@redhat.com>
1120
1121 * src-release.sh (GDB_SUPPORT_DIRS): Add "contrib".
1122
1123 2018-07-16 Nick Clifton <nickc@redhat.com>
1124
1125 * src-release.sh (DEVO_SUPPORT): Add test-driver and ar-lib.
1126
1127 2018-07-06 Sebastian Huber <sebastian.huber@embedded-brains.de>
1128
1129 * config.sub: Sync with upstream version 2018-07-03.
1130
1131 2018-07-05 Sebastian Huber <sebastian.huber@embedded-brains.de>
1132
1133 * config.guess: Sync with upstream version 2018-06-26.
1134 * config.sub: Sync with upstream version 2018-07-02.
1135
1136 2018-06-29 Alexandre Oliva <oliva@adacore.com>
1137
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
1145 gcc-bootstrap.
1146 * configure.in, Makefile.in: Rebuilt.
1147
1148 2018-06-24 Nick Clifton <nickc@redhat.com>
1149
1150 * configure: Regenerate.
1151
1152 2018-06-19 Simon Marchi <simon.marchi@ericsson.com>
1153
1154 * libtool.m4: Use AC_LANG_SOURCE.
1155 * configure.ac: Remove AC_PREREQ, use AC_LANG_SOURCE.
1156 * README-maintainer-mode: Update version requirements.
1157 * ar-lib: New file.
1158 * test-driver: New file.
1159 * configure: Re-generate.
1160
1161 2018-06-18 Eric Botcazou <ebotcazou@adacore.com>
1162
1163 * Makefile.def (fortran): Add check-target-libgomp-fortran.
1164 * Makefile.tpl (check-target-libgomp-fortran): New phony target.
1165 * Makefile.in: Regenerate.
1166
1167 * configure: Regenerate.
1168
1169 2018-06-18 Simon Marchi <simon.marchi@ericsson.com>
1170
1171 * configure.ac: Sync with GCC, remove MPX-related things.
1172
1173 2018-05-01 Nick Clifton <nickc@redhat.com>
1174
1175 * config.guess: Synchronize with config project master sources.
1176 * config.sub: Likewise.
1177
1178 2018-05-01 Francois H. Theron <francois.theron@netronome.com>
1179
1180 * configure.ac: Added "nfp" target.
1181 * configure: Regenerate.
1182
1183 2018-02-13 Maciej W. Rozycki <macro@mips.com>
1184
1185 * configure.ac <wasm32-*-*> (noconfigdirs): Add `ld'.
1186 * configure: Regenerate.
1187
1188 2018-01-30 Nick Clifton <nickc@redhat.com>
1189
1190 * src-release.sh (do_proto_toplev): Add patterns for more junk files
1191 to delete before creating the tarball.
1192
1193 2018-01-29 Nick Clifton <nickc@redhat.com>
1194
1195 * src-release.sh (do_proto_toplev): Strip patch remnant files from
1196 the sources before creating the tarball.
1197
1198 2018-01-13 Nick Clifton <nickc@redhat.com>
1199
1200 * src-release.sh: Update copyright notice. Change reference to devo
1201 to be a reference to root.
1202
1203 2018-01-10 Nick Clifton <nickc@redhat.com>
1204
1205 * config-ml.in: Sync with gcc sources.
1206 * config.guess: Likewise.
1207 * config.sub: Likewise.
1208 * configure.ac: Likewise.
1209 * configure: Regenerate.
1210
1211 2017-12-14 Nick Clifton <nickc@redhat.com>
1212
1213 * COPYING.LIBGLOSS: Update address of FSF in copyright notice.
1214
1215 2017-12-12 Stafford Horne <shorne@gmail.com>
1216
1217 * configure.ac: Remove logic adding gdb to noconfigsdirs for or1k.
1218 * configure: Regenerate.
1219
1220 2017-09-15 Nick Clifton <nickc@redhat.com>
1221
1222 * src-release.sh (LZIPPROG): New define. Provides the name of the
1223 lzip program.
1224 (do_lz): New function. Compresses a tarball using the lzip
1225 program.
1226 (do_compress): Add support for lzip compression.
1227 (usage): Mention -l option.
1228 (build_release): Support -l option to invoke lzip compression.
1229
1230 2017-09-15 Alan Modra <amodra@gmail.com>
1231
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.
1235
1236 2017-09-14 Matt Rice <ratmice@gmail.com>
1237
1238 * src-release.sh (do_proto_toplev): Enable gold during release process.
1239
1240 2017-04-13 Andrew Jenner <andrew@codesourcery.com>
1241
1242 * config.sub: Sync with master version in config project.
1243
1244 2017-04-03 Andrew Jenner <andrew@codesourcery.com>
1245
1246 * config.sub: Handle ia16 in $basic_machine.
1247
1248 bfd/
1249 * config.bfd: Handle ia16.
1250
1251 gas/
1252 * configure.tgt: Handle ia16.
1253
1254 ld/
1255 * configure.tgt: Handle ia16.
1256
1257 2017-03-22 Nick Clifton <nickc@redhat.com>
1258
1259 * config.sub: Sync with master version in config project.
1260 * config.guess: Likewise.
1261
1262 2017-01-23 Nick Clifton <nickc@redhat.com>
1263
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.
1270
1271 2016-12-21 Jakub Jelinek <jakub@redhat.com>
1272
1273 * configure.ac: Don't bootstrap libmpx unless --with-build-config
1274 includes bootstrap-mpx.
1275
1276 2016-12-01 Matthias Klose <doko@ubuntu.com>
1277
1278 * configure.ac: Don't use pkg-config to check for bdw-gc.
1279
1280 2016-11-30 Matthias Klose <doko@ubuntu.com>
1281
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.
1285
1286 2016-11-15 Matthias Klose <doko@ubuntu.com>
1287
1288 * config-ml.in: Remove references to GCJ.
1289 * configure.ac: Likewise.
1290
1291 2016-09-30 Jakub Jelinek <jakub@redhat.com>
1292
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.
1296
1297 2016-09-30 Andrew Haley <aph@redhat.com>
1298
1299 * Makefile.def: Remove libjava.
1300 * Makefile.tpl: Likewise.
1301 * configure.ac: Likewise.
1302
1303 2016-09-26 Anton Kolesov <Anton.Kolesov@synopsys.com>
1304
1305 * configure.ac: Disable "sim" directory for arc*-*-*.
1306
1307 2016-09-12 Maciej W. Rozycki <macro@imgtec.com>
1308
1309 * configure.ac: Check for the minimum in-tree MPFR version
1310 handled.
1311
1312 2016-12-31 Alan Modra <amodra@gmail.com>
1313
1314 * config.sub: Import from upstream.
1315
1316 2016-12-08 Alan Modra <amodra@gmail.com>
1317
1318 * configure: Regenerate.
1319
1320 2016-12-02 Josh Conner <joshconner@google.com>
1321
1322 * configure.ac: Add fuchsia to targets that use ELF.
1323 * configure: Regenerated.
1324
1325 2016-11-07 Doug Evans <dje@google.com>
1326
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.
1330
1331 2016-09-27 Simon Marchi <simon.marchi@polymtl.ca>
1332
1333 * .gitignore: Add archives and make stamps.
1334
1335 2016-07-20 Yan-Ting Lin <currygt52@gmail.com>
1336
1337 * configure.ac (nds32*-*-*): Remove entry to enable gdb.
1338 * configure: Regenerated.
1339
1340 2016-06-28 Walter Lee <walt@tilera.com>
1341
1342 * configure.ac (tilepro-*-*): Add gdb to noconfigdirs.
1343 * configure: Regenerate.
1344
1345 2016-05-28 Alan Modra <amodra@gmail.com>
1346
1347 * Makefile.tpl (configure): Depend on m4 files included.
1348 * Makefile.in: Regenerate.
1349
1350 2016-05-27 Nick Clifton <nickc@redhat.com>
1351
1352 * config.guess (Alpha OSF1): Fix typo introduced during the most
1353 recent synchronization update.
1354
1355 2016-05-23 Nick Clifton <nickc@redhat.com>
1356
1357 * Import these patches from the gcc mainline:
1358
1359 2016-05-16 Jakub Sejdak <jakub.sejdak@phoesys.com>
1360
1361 * config.guess: Import version 2016-04-02 (newest).
1362 * config.sub: Import version 2016-05-10 (newest).
1363
1364 2016-04-19 Nick Clifton <nickc@redhat.com>
1365
1366 * Import this patch from the GCC mainline:
1367
1368 2016-04-13 Segher Boessenkool <segher@kernel.crashing.org>
1369
1370 PR bootstrap/70173
1371 * Makefile.tpl (local-distclean): Delete the libcc1, gnattools,
1372 and gotools directories. Delete the stage_final file.
1373 * Makefile.in: Regenerate.
1374
1375 2016-03-17 Cary Coutant <ccoutant@gmail.com>
1376
1377 * configure.ac: Add mips and s390 to the gold target check.
1378 * configure: Regenerate.
1379
1380 2016-02-10 Nick Clifton <nickc@redhat.com>
1381
1382 Import these patches from the GCC mainline:
1383
1384 2016-01-12 Andris Pavenis <andris.pavenis@iki.fi>
1385
1386 * configure.ac: Enable LTO for DJGPP
1387 * configure: Regenerate
1388
1389 2016-01-24 Mikhail Maltsev <maltsevm@gmail.com>
1390
1391 PR bootstrap/69329
1392 * Makefile.tpl (BASE_FLAGS_TO_PASS): Add LSAN_OPTIONS.
1393 * Makefile.in: Regenerate.
1394
1395 2016-01-25 Aditya Kumar <aditya.k7@samsung.com>
1396 Sebastian Pop <s.pop@samsung.com>
1397
1398 * Makefile.in: Regenerate.
1399 * Makefile.tpl: Export ISLVER.
1400 * configure: Regenerate.
1401 * config/isl.m4: Detect isl-0.15.
1402
1403 2016-01-29 Sebastian Pop <s.pop@samsung.com>
1404
1405 * config/isl.m4: Add comments about isl-0.16.
1406 * configure: Regenerate.
1407
1408 2016-01-12 H.J. Lu <hongjiu.lu@intel.com>
1409
1410 Sync with GCC
1411 2015-11-26 David Edelsohn <dje.gcc@gmail.com>
1412
1413 * m4/libtool.m4 (export_symbols_cmds) [AIX]: Add global TLS "L"
1414 symbols.
1415
1416 2016-01-12 Bernd Edlinger <bernd.edlinger@hotmail.de>
1417
1418 PR bootstrap/69134
1419 * Makefile.def (mpfr): Disable assembler.
1420 * Makefile.in: Regenerate.
1421
1422 2016-01-11 Nick Clifton <nickc@redhat.com>
1423
1424 Import the following changes from the GCC mainline:
1425
1426 2015-11-13 Tsvetkova Alexandra <aleksandra.tsvetkova@intel.com>
1427
1428 * configure.ac: Enable libmpx by default.
1429 * configure: Regenerated.
1430
1431 2015-11-19 Martin Liska <mliska@suse.cz>
1432
1433 * .gitignore: Add .clang-format to ignored files.
1434 * Makefile.tpl: Add clang-format.
1435 * Makefile.in: Regenerate.
1436
1437 2015-12-01 Andreas Tobler <andreast@gcc.gnu.org>
1438
1439 PR libffi/65726
1440 * Makefile.def (lang_env_dependencies): Make libffi depend
1441 on cxx.
1442 * Makefile.in: Regenerate.
1443
1444 2015-12-02 Ian Lance Taylor <iant@google.com>
1445
1446 PR go/66147
1447 * Makefile.tpl (HOST_EXPORTS): Add XGCC_FLAGS_FOR_TARGET.
1448 * Makefile.in: Regenerate.
1449
1450 2015-12-17 Nathan Sidwell <nathan@acm.org>
1451
1452 * config/isl.m4 (ISL_CHECK_VERSION): Add gmp libs.
1453 * configure: Regenerate.
1454
1455 2015-12-17 Sebastian Pop <s.pop@samsung.com>
1456
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.
1463
1464 2016-01-01 Ben Elliston <bje@gnu.org>
1465
1466 * config.guess: Import version 2016-01-01.
1467 * config.sub: Likewise.
1468
1469 2015-11-20 Tristan Gingold <gingold@adacore.com>
1470
1471 * configure.ac: Add aarch64-*-darwin* and arm-*-darwin*.
1472 * configure: Regenerate.
1473
1474 2015-10-21 Nick Clifton <nickc@redhat.com>
1475
1476 PR gas/19109
1477 * configure.ac: Note the 'none' is an acceptable argument to
1478 --enable-compressed-debug-sections.
1479 * configure: Regenerate.
1480
1481 2015-10-20 H.J. Lu <hongjiu.lu@intel.com>
1482
1483 PR gas/19109
1484 * configure.ac: Add
1485 --enable-compressed-debug-sections={all,gas,gold,ld}.
1486 * configure: Regenerated.
1487
1488 2015-09-30 Nick Clifton <nickc@redhat.com>
1489
1490 Import the following patches from the GCC mainline:
1491
1492 2015-08-23 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
1493
1494 PR libfortran/54572
1495 * Makefile.def: Make libgfortran depend on libbacktrace.
1496 * Makefile.in: Regenerate.
1497
1498 2015-08-12 Tom de Vries <tom@codesourcery.com>
1499
1500 PR other/67092
1501 PR other/67098
1502 * configure.ac: Remove --with_host_libstdcxx support.
1503 * configure: Regenerate.
1504
1505 2015-08-10 Thomas Schwinge <thomas@codesourcery.com>
1506 Jakub Jelinek <jakub@redhat.com>
1507
1508 * configure.ac (noconfigdirs): Don't add "target-libgomp" for target
1509 nvptx*-*-*.
1510 * configure: Regenerate.
1511
1512 2015-08-07 H.J. Lu <hongjiu.lu@intel.com>
1513
1514 Sync with GCC
1515 2015-07-28 Ben Elliston <bje@gnu.org>
1516
1517 * config.sub, config.guess: Import from upstream.
1518
1519 2015-08-06 Yaakov Selkowitz <yselkowi@redhat.com>
1520
1521 * Makefile.def (libiconv): Define bootstrap=true.
1522 Mark pdf/html/info as missing.
1523 (configure-gcc): Depend on all-libiconv.
1524 (all-gcc): Ditto.
1525 (configure-libcpp): Ditto.
1526 (all-libcpp): Ditto.
1527 (configure-intl): Ditto.
1528 (all-intl): Ditto.
1529 * Makefile.in: Regenerate.
1530
1531 2015-07-27 H.J. Lu <hongjiu.lu@intel.com>
1532
1533 Sync with GCC
1534 2015-07-24 Michael Darling <darlingm@gmail.com>
1535
1536 PR other/66259
1537 * config-ml.in: Reflects renaming of configure.in to configure.ac
1538 * configure: Likewise
1539 * configure.ac: Likewise
1540
1541 2015-07-14 H.J. Lu <hongjiu.lu@intel.com>
1542
1543 * Makefile.in: Regenerated.
1544
1545 Sync with GCC
1546 2015-05-21 Jason Merrill <jason@redhat.com>
1547
1548 * Makefile.tpl: Update comments.
1549
1550 2015-04-22 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
1551
1552 * Makefile.tpl: Remove surplus whitespace throughout.
1553
1554 2015-03-25 Martin Liska <mliska@suse.cz>
1555 Yury Gribov <y.gribov@samsung.com>
1556
1557 * Makefile.tpl: Fix ln source location for vimrc file.
1558
1559 2015-07-14 H.J. Lu <hongjiu.lu@intel.com>
1560
1561 Sync with GCC
1562 2015-05-16 James Bowman <james.bowman@ftdichip.com>
1563
1564 * configure.ac: FT32 target added.
1565 * configure: Regenerate.
1566
1567 2015-07-14 H.J. Lu <hongjiu.lu@intel.com>
1568
1569 Sync with GCC
1570 2015-06-02 Jason Merrill <jason@redhat.com>
1571
1572 PR bootstrap/66319
1573 * configure.ac: Use -std=gnu++98.
1574
1575 2015-05-28 Mike Frysinger <vapier@gentoo.org>
1576
1577 * configure.ac (--vtable-verify): Use AS_HELP_STRING for help.
1578 * configure: Regenerate.
1579
1580 2015-05-11 Paulo Matos <paulo@matos-sorge.com>
1581
1582 * configure.ac: Fix typo.
1583 * configure: Regenerate.
1584
1585 2015-05-03 Matthias Klose <doko@ubuntu.com>
1586
1587 * configure.ac: Match $host configured with triplets.
1588 * configure: Regenerate.
1589
1590 2015-04-17 Jakub Jelinek <jakub@redhat.com>
1591
1592 PR bootstrap/62077
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
1596 experimental.
1597 * configure: Regenerated.
1598
1599 2015-03-27 Uros Bizjak <ubizjak@gmail.com>
1600
1601 Install back PR target/47230 fix (Revert the revert).
1602
1603 2015-06-30 H.J. Lu <hongjiu.lu@intel.com>
1604
1605 * configure.ac (ospace_frag): Enable for i?86*-*-elfiamcu
1606 target.
1607 * configure: Regenerate.
1608
1609 2015-05-13 John David Anglin <dave.anglin@bell.net>
1610
1611 * configure.ac: Disable configuration of GDB for HPUX targets.
1612 * configure: Regenerate.
1613
1614 2015-05-01 H.J. Lu <hongjiu.lu@intel.com>
1615
1616 PR ld/18355
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
1620 library. AC_SUBST.
1621 * Makefile.in: Regenerated.
1622
1623 2015-04-15 Mike Frysinger <vapier@gentoo.org>
1624 Hans-Peter Nilsson <hp@axis.com>
1625
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.
1631
1632 2015-04-14 Max Ostapenko <m.ostapenko@partner.samsung.com>
1633
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.
1638
1639 2015-04-01 H.J. Lu <hongjiu.lu@intel.com>
1640
1641 * configure.ac: Add --with-system-zlib.
1642 * configure: Regenerated.
1643
1644 2015-03-31 H.J. Lu <hongjiu.lu@intel.com>
1645
1646 * src-release.sh: Don't configure with --with-target-subdir=.
1647 --disable-multilib.
1648
1649 2015-03-31 H.J. Lu <hongjiu.lu@intel.com>
1650
1651 * src-release.sh (DEVO_SUPPORT): Replace src-release with
1652 src-release.sh.
1653
1654 2015-03-30 Ed Schouten <ed@nuxi.nl>
1655
1656 * config.sub: Update from upstream, to 2015-03-04 version.
1657 * config.guess: Likewise.
1658
1659 2015-03-30 H.J. Lu <hongjiu.lu@intel.com>
1660
1661 * Makefile.def (dependencies): Add all-zlib to all-bfd.
1662 * Makefile.in: Regenerated.
1663
1664 2015-03-28 H.J. Lu <hongjiu.lu@intel.com>
1665
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.
1672
1673 2015-03-17 H.J. Lu <hongjiu.lu@intel.com>
1674
1675 * configure.ac (target_configdirs): Exclude target-zlib if
1676 target-libjava isn't built.
1677 * configure: Regenerated.
1678
1679 2015-03-17 H.J. Lu <hongjiu.lu@intel.com>
1680
1681 Sync with GCC
1682 2014-06-13 Thomas Schwinge <thomas@codesourcery.com>
1683
1684 * config-ml.in: Robustify ac_configure_args parsing.
1685
1686 2015-03-16 H.J. Lu <hongjiu.lu@intel.com>
1687
1688 * Makefile.def: Updated from GCC trunk.
1689 * Makefile.tpl: Likewise.
1690 * configure.ac: Likewise.
1691 * Makefile.in: Regenerated.
1692 * configure: Likewise.
1693
1694 2015-01-28 James Bowman <james.bowman@ftdichip.com>
1695
1696 * configure.ac: Add FT32 support.
1697 * configure: Regenerate.
1698
1699 2015-01-12 Anthony Green <green@moxielogic.com>
1700
1701 * configure.ac: Don't disable gprof for moxie.
1702 * configure: Rebuild.
1703
1704 2015-01-03 Andrew Pinski <apinski@cavium.com>
1705
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.
1715
1716 2015-01-02 Hans-Peter Nilsson <hp@bitrange.com>
1717
1718 * config.sub: Update from upstream, to 2015-01-01 version.
1719 * config.guess: Ditto.
1720
1721 2014-12-06 Eric Botcazou <ebotcazou@adacore.com>
1722
1723 * config.sub: Update from upstream config repo.
1724
1725 2014-11-24 H.J. Lu <hongjiu.lu@intel.com>
1726
1727 * libtool.m4: Updated from GCC trunk.
1728
1729 2014-11-16 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1730
1731 * config.guess: Update from upstream config repo.
1732 * config.sub: Ditto.
1733
1734 2014-11-16 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1735
1736 * move-if-change: Update from upstream gnulib.
1737
1738 2014-11-16 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1739
1740 * compile: Sync with upstream Automake.
1741 * depcomp: Ditto.
1742 * install-sh: Ditto.
1743 * missing: Ditto.
1744 * mkinstalldirs: Ditto.
1745 * ylwrap: Ditto.
1746
1747 2014-10-15 Tristan Gingold <gingold@adacore.com>
1748
1749 * src-release.sh (do_proto_toplev): Configure with --target.
1750
1751 2014-10-03 Jing Yu <jingyu@google.com>
1752
1753 * configure.ac: Add aarch64 to list of targets that support gold.
1754 * configure: Regenerate.
1755
1756 2014-09-12 Andrew Bennett <andrew.bennett@imgtec.com>
1757
1758 * configure.ac: Add mips*-img-elf* target triple.
1759 * configure: Regenerate.
1760
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.
1764
1765 2014-09-05 Joel Brobecker <brobecker@adacore.com>
1766
1767 * configure: Regenerate.
1768
1769 2014-08-27 Will Newton <will.newton@linaro.org>
1770
1771 * src-release.sh: New file.
1772 * src-release: Remove file.
1773
1774 2014-07-27 Joel Sherrill <joel.sherrill@oarcorp.com>
1775
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.
1780
1781 2014-07-25 Samuel Bronson <naesten@gmail.com>
1782
1783 * .gitattributes: New file for use with git-merge-changelog.
1784
1785 2014-07-21 Joel Sherrill <joel.sherrill@oarcorp.com>
1786
1787 Disable gdb for or1k*-*-* until supported
1788 * configure.ac (or1k*-*-*): Disable gdb.
1789 * configure: Regenerated.
1790
1791 2014-05-14 Sandra Loosemore <sandra@codesourcery.com>
1792
1793 * configure.ac (target_makefile_frag): Set for nios2-*-elf*.
1794 * configure: Regenerated.
1795
1796 2014-03-26 Jakub Jelinek <jakub@redhat.com>
1797
1798 PR sanitizer/56781
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.
1804
1805 2014-03-21 Jakub Jelinek <jakub@redhat.com>
1806
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.
1814
1815 2014-03-07 Jakub Jelinek <jakub@redhat.com>
1816
1817 PR bootstrap/58572
1818 * Makefile.tpl (POSTSTAGE1_CXX_EXPORT): Use -isystem instead of
1819 -I for libstdc++-v3 includes if $(LEAN).
1820 * Makefile.in: Regenerated.
1821
1822 2014-02-24 Walter Lee <walt@tilera.com>
1823
1824 * configure.ac (tilepro-*-*) Change to tilepro*-*-*.
1825 (tilegx-*-*): Change to tilegx*-*-*.
1826 * configure: Regenerate.
1827
1828 2014-05-01 Richard Sandiford <rdsandiford@googlemail.com>
1829
1830 * config.sub, config.guess: Import from upstream.
1831
1832 2014-04-04 Eric Botcazou <ebotcazou@adacore.com>
1833
1834 PR bootstrap/60620
1835 * Makefile.def (dependencies): Make gnattools depend on libstdc++-v3.
1836 * Makefile.in: Regenerate.
1837
1838 2014-03-28 Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
1839
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.
1843
1844 2014-02-04 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
1845
1846 PR target/59788
1847 * ltmain.sh (opt_duplicate_compiler_generated_deps): Enable on
1848 *solaris2*.
1849
1850 2013-12-19 Keven Boell <keven.boell@intel.com>
1851
1852 * cp-namespace.c (cp_lookup_nested_symbol): Enable
1853 nested lookups for fortran modules.
1854 * dwarf2read.c (read_module): Add fortran module to
1855 the symbol table.
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.
1861
1862 2013-12-19 Keven Boell <keven.boell@intel.com>
1863
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.
1868
1869 2013-12-13 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
1870
1871 * configure.ac: Add user-friendly check for native x86_64-linux
1872 multilibs.
1873 * configure: Regenerate.
1874
1875 2013-11-23 Alan Modra <amodra@gmail.com>
1876
1877 * config.sub, config.guess: Import from upstream.
1878
1879 2013-11-07 Thomas Schwinge <thomas@codesourcery.com>
1880
1881 * Makefile.in: Regenerate.
1882
1883 * Makefile.tpl: Fix typo.
1884 * Makefile.in: Regenerate partially.
1885
1886 2013-11-04 Balaji V. Iyer <balaji.v.iyer@intel.com>
1887
1888 * configure.ac: Added libcilkrts to noconfig list when C++ is not
1889 supported.
1890 * configure: Regenerated.
1891
1892 2013-10-30 Jason Merrill <jason@redhat.com>
1893
1894 * Makefile.tpl (STAGE1_CONFIGURE_FLAGS): Pass
1895 --disable-build-format-warnings.
1896
1897 2013-10-29 Balaji V. Iyer <balaji.v.iyer@intel.com>
1898
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.
1905
1906 2013-10-26 Jeff Law <law@redhat.com>
1907
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.
1916
1917 2013-10-16 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1918
1919 * configure.ac: Update from GCC.
1920 * configure: Regenerate.
1921
1922 2013-10-15 Hans-Peter Nilsson <hp@axis.com>
1923
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.
1928
1929 2013-10-08 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1930
1931 * configure.ac: Update from GCC.
1932 * configure: Regenerate.
1933
1934 2013-10-01 Jeff Johnston <jjohnstn@redhat.com>
1935
1936 * COPYING.NEWLIB: Update with new copyright.
1937
1938 2013-09-21 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1939
1940 * configure.ac: Update from GCC.
1941 * configure: Regenerate.
1942
1943 2013-09-20 Alan Modra <amodra@gmail.com>
1944
1945 * libtool.m4 (_LT_ENABLE_LOCK <ld -m flags>): Remove non-canonical
1946 ppc host match. Support little-endian powerpc linux hosts.
1947
1948 2013-08-16 Joel Brobecker <brobecker@adacore.com>
1949
1950 * src-release (VER): When using $(TOOL)/common/create-version.sh,
1951 strip the "-cvs" suffix from the version number if present.
1952
1953 2013-08-12 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1954
1955 * configure.ac: Sync with GCC repo.
1956 * Makefile.def: Ditto.
1957 * configure: Regenerate.
1958 * Makefile.in: Ditto.
1959
1960 2013-07-22 Joel Brobecker <brobecker@adacore.com>
1961
1962 * src-release (VER): Use $(TOOL)/common/create-version.sh
1963 if it exists.
1964
1965 2013-06-22 Richard Sandiford <rdsandiford@googlemail.com>
1966
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.
1971
1972 2013-06-01 George Thomas <george.thomas@atmel.com>
1973
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
1976
1977 2013-05-06 Sandra Loosemore <sandra@codesourcery.com>
1978
1979 * COPYING.NEWLIB: Add Altera Corporation copyright.
1980
1981 2013-04-29 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1982
1983 * config.guess: Update from config repo.
1984 * config.sub: Ditto.
1985
1986 2013-04-22 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1987
1988 * Makefile.def: Sync with GCC.
1989 * Makefile.in: Regenerate.
1990
1991 2013-04-22 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1992
1993 * configure.ac: Sync with GCC.
1994 * configure: Regenerate.
1995
1996 2013-03-22 Mike Frysinger <vapier@gentoo.org>
1997
1998 * src-release (VER): Change bfd/configure.in sed to use the new
1999 `bfd/configure --version` output.
2000
2001 2013-02-15 Yufeng Zhang <yufeng.zhang@arm.com>
2002
2003 * configure.ac: Sync with GCC repo.
2004 * configure: Ditto.
2005
2006 2013-02-05 Ian Lance Taylor <iant@google.com>
2007
2008 PR go/55969
2009 * configure.ac: Disable libgo on some systems where it does not
2010 work.
2011 * configure: Rebuild.
2012
2013 2013-02-05 Alan Modra <amodra@gmail.com>
2014
2015 * configure: Regenerate after syncing config/.
2016
2017 2013-01-15 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2018
2019 * configure.ac: Sync with GCC repo.
2020 * configure: Ditto.
2021 * Makefile.def: Ditto.
2022 * Makefile.in: Ditto.
2023
2024 2013-01-11 Joel Brobecker <brobecker@adacore.com>
2025
2026 Sync with GCC, merge:
2027
2028 2013-01-09 Jason Merrill <jason@redhat.com>
2029
2030 * .gitignore: Import from gdb repository.
2031
2032 2013-01-11 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2033
2034 * config.sub: Update from config repo.
2035
2036 2013-01-11 Eric Botcazou <ebotcazou@adacore.com>
2037
2038 * Makefile.tpl (BOOT_ADAFLAGS): Remove -gnata.
2039 * Makefile.in: Regenerate.
2040
2041 2013-01-09 H.J. Lu <hongjiu.lu@intel.com>
2042
2043 * Makefile.def (configure-gcc): Depend on all-gmp.
2044 (all-gcc): Remove dependency on all-gmp.
2045 * Makefile.in: Regenerated.
2046
2047 2013-01-08 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2048
2049 * config.guess: Update from config repo.
2050 * config.sub: Ditto.
2051
2052 2013-01-07 Jeff Johnston <jjohnstn@redhat.com>
2053
2054 * COPYING.LIBGLOSS: Remove license for mips/lsi33k-stub.h which no longer
2055 exists and replace the new bfin license in its location.
2056
2057 2013-01-07 H.J. Lu <hongjiu.lu@intel.com>
2058
2059 PR gas/14899
2060 * Makefile.def (dependencies): Make all-binutils, all-gprof,
2061 all-ld and all-gold depend on all-gas.
2062 * Makefile.in: Regenerated.
2063
2064 2012-12-29 Ben Elliston <bje@gnu.org>
2065
2066 * config.guess: Update to 2012-12-29 version.
2067 * config.sub: Likewise.
2068
2069 2012-12-20 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2070
2071 * Makefile.def (install-target-libgo): Depend on
2072 install-target-libatomic. Merged from GCC repo.
2073 * Makefile.in: Regenerate.
2074
2075 2012-12-17 Jeff Johnston <jjohnstn@redhat.com>
2076
2077 * COPYING.LIBGLOSS: Add license for bfin libgloss.
2078
2079 2012-12-16 Thomas Schwinge <thomas@codesourcery.com>
2080
2081 * configure.ac (ENABLE_GOLD): Consider *-*-gnu* targets ELF.
2082 * configure: Regenerate.
2083
2084 2012-12-11 H.J. Lu <hongjiu.lu@intel.com>
2085
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.
2091
2092 2012-12-08 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2093
2094 * config.sub: Merge from config repo.
2095
2096 2012-11-30 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2097
2098 * configure.ac: Merge from GCC.
2099 * Makefile.tpl: Ditto.
2100 * Makefile.in: Ditto.
2101 * configure: Ditto.
2102
2103 2012-11-28 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2104
2105 * configure.ac (noconfigdirs): Merge from GCC.
2106 * configure: Regenerate.
2107
2108 2012-11-19 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2109
2110 * config.sub (arm): Merge from upstream: Handle armv[6-8] targets.
2111
2112 2012-11-14 Roland McGrath <mcgrathr@google.com>
2113
2114 * configure.ac (ENABLE_GOLD): Consider *-*-nacl* targets ELF.
2115 * configure: Regenerate.
2116
2117 2012-11-13 Richard Henderson <rth@redhat.com>
2118
2119 * configure.ac: Move libsanitizer logic to subdirectory.
2120 * configure: Regenerate.
2121
2122 2012-11-13 Dodji Seketeli <dodji@redhat.com>
2123
2124 * configure.ac: Enable libsanitizer just on x86 linux for now.
2125 * configure: Re-generate.
2126
2127 2012-11-13 David Edelsohn <dje.gcc@gmail.com>
2128
2129 * configure.ac: Merge libquadmath sections.
2130 * configure: Regenerate.
2131
2132 2012-11-12 Wei Mi <wmi@google.com>
2133
2134 * configure.ac: Add libsanitizer to target_libraries.
2135 * Makefile.def: Ditto.
2136 * configure: Regenerate.
2137 * Makefile.in: Regenerate.
2138
2139 2012-11-03 H.J. Lu <hongjiu.lu@intel.com>
2140
2141 * configure: Regenerated.
2142
2143 2012-11-03 Robert Mason <rbmj@verizon.net>
2144
2145 * configure.ac: add --disable-libstdcxx configure option
2146 and handle defaulted state only for VxWorks, ARM-wince-pe and AVR.
2147
2148 2012-10-24 Corinna Vinschen <corinna@vinschen.de>
2149
2150 * configure.ac (FLAGS_FOR_TARGET,target=cygwin): Fix for building
2151 against Mingw64 w32api.
2152 * configure: Regenerate.
2153
2154 2012-10-23 Eric Botcazou <ebotcazou@adacore.com>
2155
2156 PR bootstrap/54820
2157 * configure.ac (have_static_libs): Force 'no' for GCC version < 4.5.
2158 * configure: Regenerate.
2159
2160 2012-10-22 Eric Botcazou <ebotcazou@adacore.com>
2161
2162 PR bootstrap/54820
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.
2173
2174 2012-10-10 David Holsgrove <david.holsgrove@xilinx.com>
2175
2176 * config.guess, config.sub: Include updated version from
2177 config-patches. Adds microblaze little endian support.
2178
2179 2012-09-28 Ian Lance Taylor <iant@google.com>
2180
2181 * Makefile.def: Make all-target-libgo depend on
2182 all-target-libbacktrace.
2183 * Makefile.in: Rebuild.
2184
2185 2012-09-26 Ian Lance Taylor <iant@google.com>
2186
2187 * Makefile.def: Make all-gcc depend on all-libbacktrace.
2188 * Makefile.in: Rebuild.
2189
2190 2012-09-06 Diego Novillo <dnovillo@google.com>
2191
2192 * configure.ac: Bump minimum GMP version to 4.2.3.
2193 * configure: Re-generate.
2194
2195 2012-09-05 Georg-Johann Lay <avr@gjlay.de>
2196
2197 PR target/54461
2198 * configure.ac (noconfigdirs,target=avr-*-*): Add target-newlib,
2199 target-libgloss if not configured --with-avrlibc=no.
2200 * configure: Regenerate.
2201
2202 2012-09-04 Jason Merrill <jason@redhat.com>
2203
2204 * configure.ac: Fix --enable-languages=all.
2205
2206 2012-09-03 Richard Guenther <rguenther@suse.de>
2207
2208 PR bootstrap/54138
2209 * configure.ac: Re-organize ISL / CLOOG checks to allow
2210 disabling with either --without-isl or --without-cloog.
2211 * configure: Regenerated.
2212
2213 2012-09-03 Georg-Johann Lay <avr@gjlay.de>
2214
2215 * configure.ac (noconfigdirs,target=avr): Add target-libquadmath.
2216 * configure: Regenerate.
2217
2218 2012-09-21 Steve Ellcey <sellcey@mips.com>
2219
2220 * configure.ac: Add mips*-mti-elf* target.
2221 * configure: Regenerate.
2222
2223 2012-09-19 Ian Lance Taylor <iant@google.com>
2224
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.
2230
2231 2012-09-15 Jiong Wang <jiwang@tilera.com>
2232
2233 * configure.ac (ENABLE_GOLD): support tilegx*
2234 * configure: rebuild
2235
2236 2012-09-14 David Edelsohn <dje.gcc@gmail.com>
2237
2238 PR target/38607
2239 Merge upstream change.
2240 * libtool.m4 (_LT_COMPILER_PIC): Add -fPIC to GCC and GXX for AIX.
2241
2242 * configure.ac: Add target-libquadmath to noconfigdirs for AIX.
2243 Add libgomp*.o to compare_exclusions for AIX.
2244 * configure: Regenerate.
2245
2246 2012-08-26 H.J. Lu <hongjiu.lu@intel.com>
2247
2248 PR binutils/4970
2249 * Makefile.def (host_modules): Rmove lib_path=.libs from bfd
2250 and opcodes.
2251 * Makefile.in: Regenerated.
2252
2253 2012-08-14 Diego Novillo <dnovillo@google.com>
2254
2255 Merge from cxx-conversion branch.
2256
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.
2263
2264 2012-07-06 Richard Guenther <rguenther@suse.de>
2265
2266 * Makefile.def (cloog): Pass $(HOST_GMPINC) and $(HOST_ISLINC)
2267 as CPPFLAGS, pass path to built gmp as LDFLAGS, always use
2268 --with-gmp=system.
2269 * Makefile.in: Regenerated.
2270 * configure: Likewise.
2271
2272 2012-07-06 Richard Guenther <rguenther@suse.de>
2273
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.
2279
2280 2012-07-03 Richard Guenther <rguenther@suse.de>
2281
2282 * Makfile.def (isl): Remove not necessary extra_exports and
2283 extra_make_flags.
2284 (cloog): Use $$CPPFLAGS instead of ${CPPFLAGS}.
2285 * Makefile.in: Regenerated.
2286
2287 2012-07-03 Richard Guenther <rguenther@suse.de>
2288
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.
2294
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>
2299
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
2305 ClooG configury.
2306 * Makefile.in: Regenerated.
2307 * configure: Likewise.
2308
2309 2012-07-02 Richard Guenther <rguenther@suse.de>
2310
2311 Merge from graphite branch
2312 2011-07-21 Tobias Grosser <tobias@grosser.es>
2313
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.
2318
2319 2011-07-21 Tobias Grosser <tobias@grosser.es>
2320
2321 * configure: Regenerated.
2322 * configure.ac: Require cloog isl 0.17.0
2323
2324 2011-07-21 Tobias Grosser <tobias@grosser.es>
2325
2326 * configure: Regenerated.
2327 * config/cloog.m4: Do not define CLOOG_ORG
2328
2329 2012-06-29 Steven Bosscher <steven@gcc.gnu.org>
2330
2331 * configure.ac: Skip C if explicitly selected.
2332 * configure: Regenerate.
2333
2334 2012-06-28 Christophe Lyon <christophe.lyon@st.com>
2335
2336 * configure.ac (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Make sure
2337 they contain -O2.
2338 * configure: Regenerate.
2339
2340 2012-06-20 Jason Merrill <jason@redhat.com>
2341
2342 * Makefile.tpl (check-target-libgomp-c++): New.
2343 (check-target-libitm-c++): New.
2344 * Makefile.def (c++): Add them.
2345 * Makefile.in: Regenerate.
2346
2347 2012-05-16 Olivier Hainque <hainque@adacore.com>
2348
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.
2353
2354 2012-05-09 Nick Clifton <nickc@redhat.com>
2355 Paul Smith <psmith@gnu.org>
2356
2357 PR bootstrap/50461
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.
2362
2363 2012-05-07 Janne Blomqvist <jb@gcc.gnu.org>
2364
2365 * configure.ac: Bump minimum MPFR version to 2.4.0.
2366 * configure: Regenerated.
2367
2368 2012-05-01 Richard Henderson <rth@redhat.com>
2369
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.
2374
2375 2012-05-15 H.J. Lu <hongjiu.lu@intel.com>
2376
2377 Merge upstream change
2378 * libtool.m4 (_LT_ENABLE_LOCK): Support x32.
2379
2380 2011-11-21 Andreas Tobler <andreast@fgznet.ch>
2381
2382 * libtool.m4: Additional FreeBSD 10 fixes.
2383
2384 2012-06-28 Christophe Lyon <christophe.lyon@st.com>
2385
2386 * configure.ac (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Make sure
2387 they contain -O2.
2388 * configure: Regenerate.
2389
2390 2012-05-14 Catherine Moore <clm@codesourcery.com>
2391
2392 * NEWS: Mention PowerPC VLE port.
2393
2394 2012-05-11 Mike Frysinger <vapier@gentoo.org>
2395
2396 * MAINTAINERS (config/): Move to intl/ section.
2397 (compile; depcomp; install-sh; missing; ylwrap): Likewise.
2398
2399 2012-05-09 Nick Clifton <nickc@redhat.com>
2400 Paul Smith <psmith@gnu.org>
2401
2402 PR bootstrap/50461
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.
2407
2408 2012-05-02 Roland McGrath <mcgrathr@google.com>
2409
2410 * configure.ac (ENABLE_GOLD): Consider *-*-nacl* targets ELF.
2411 * configure: Regenerate.
2412
2413 2012-04-25 Joel Brobecker <brobecker@adacore.com>
2414
2415 * config.sub: Update to 2012-04-18 version from official repo.
2416
2417 2012-03-19 Tristan Gingold <gingold@adacore.com>
2418
2419 * configure.ac (ia64*-*-*vms*): Add support for ld.
2420 * configure: Regenerate.
2421
2422 2012-03-14 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2423
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.
2429
2430 2012-03-12 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2431
2432 * configure.ac (enable_libgomp): Remove *-*-osf*.
2433 (with_stabs): Remove alpha*-*-osf*.
2434 * configure: Regenerate.
2435
2436 2012-03-09 Jeff Johnston <jjohnstn@redhat.com>
2437
2438 * COPYING.NEWLIB: Modify DJ Delorie license to include
2439 modification rights in clause as permitted by DJ Delorie.
2440 * COPYING.LIBGLOSS: Ditto.
2441
2442 2012-03-09 Jeff Johnston <jjohnstn@redhat.com>
2443
2444 * COPYING.NEWLIB: Remove two unused licenses.
2445
2446 2012-03-05 Tristan Gingold <gingold@adacore.com>
2447
2448 * configure.ac: Enable gdb and readline for ia64*-*-*vms*.
2449 * configure: Regenerate.
2450
2451 2012-02-21 Joern Rennecke <joern.rennecke@embecosm.com>
2452
2453 * COPYING.NEWLIB: Add Adapteva notice.
2454 * COPYING.LIBGLOSS: Add Adapteva notice.
2455
2456 2011-12-18 Eric Botcazou <ebotcazou@adacore.com>
2457
2458 * configure: Regenerate.
2459
2460 2011-12-15 Jeff Johnston <jjohnstn@redhat.com>
2461
2462 * COPYING.LIBGLOSS: Add GPL with exception license.
2463
2464 2011-11-09 Roland McGrath <mcgrathr@google.com>
2465
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):
2473 Add READELF.
2474 * Makefile.in: Rebuild.
2475
2476 2011-11-08 Richard Henderson <rth@redhat.com>
2477
2478 * configure.ac: Test for libitm directory present first.
2479
2480 * configure.ac: Adjust srcdir for running libitm/configure.tgt.
2481
2482 * configure.ac: Test libitm/configure.tgt to disable libitm.
2483 * configure: Rebuild.
2484
2485 2011-11-02 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2486
2487 * Makefile.tpl (EXTRA_GCC_FLAGS): Remove LIBGCC2_CFLAGS,
2488 LIBGCC2_DEBUG_CFLAGS, LIBGCC2_INCLUDES.
2489 * Makefile.in: Regenerate.
2490
2491 2011-11-01 DJ Delorie <dj@redhat.com>
2492
2493 * configure.ac (rl78-*-*) New case.
2494 * configure: Regenerate.
2495
2496 2011-11-01 DJ Delorie <dj@redhat.com>
2497
2498 * config.sub: Update to version 2011-10-29 (added rl78)
2499
2500 2011-10-27 Nick Clifton <nickc@redhat.com>
2501
2502 * config.sub: Import these changes from the config project:
2503
2504 2011-10-08 Joern Rennecke <joern.rennecke@embecosm.com>
2505 Ben Elliston <bje@gnu.org>
2506
2507 * config.sub (epiphany): New.
2508
2509 2011-09-09 Linas Vepstas <linasvepstas@gmail.com>
2510 Ben Elliston <bje@gnu.org>
2511
2512 * config.sub (hexagon, hexagon-*): New.
2513
2514 2011-08-23 Roland McGrath <mcgrathr@google.com>
2515
2516 * config.sub: Rename 32eb to be32, 32el to le32, 64el to le64, and
2517 64eb to be64.
2518
2519 2011-08-16 Roland McGrath <mcgrathr@google.com>
2520
2521 * config.sub (32eb, 32el, 64eb, 64el): New (pseudo-)CPUs.
2522 (nacl): Grok as alias for 32el-unknown-nacl.
2523
2524 2011-08-19 Joel Brobecker <brobecker@adacore.com>
2525
2526 * src-release (GDB_SUPPORT_DIRS): Add 'cpu'.
2527
2528 2011-08-14 Yao Qi <yao@codesourcery.com>
2529
2530 Merge from gcc:
2531
2532 2011-08-14 Yao Qi <yao@codesourcery.com>
2533 * configure.ac (tic6x-*-*): Remove gdb from noconfigdirs.
2534 * configure: Regenerate.
2535
2536 2011-07-26 Ian Lance Taylor <iant@google.com>
2537
2538 Merge from gcc:
2539
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.
2544
2545 2011-07-20 David Edelsohn <dje.gcc@gmail.com>
2546 * Makefile.tpl (POSTSTAGE1_CONFIGURE_FLAGS): Add libsupc++ to
2547 link directories.
2548 * Makefile.in: Rebuild.
2549
2550 2011-07-20 Ian Lance Taylor <iant@google.com>
2551 PR bootstrap/49787
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.
2556
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.
2564
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.
2570
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.
2579
2580 2011-06-22 Hans-Peter Nilsson <hp@axis.com>
2581 PR regression/47836
2582 PR bootstrap/23656
2583 PR other/47733
2584 PR bootstrap/49247
2585 PR c/48825
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
2590 otherwise empty.
2591 * Makefile.def (target_modules): Don't add libiberty.
2592 (dependencies): Remove all traces of target-libiberty.
2593 * configure, Makefile.in: Regenerate.
2594
2595 2011-07-22 Jason Merrill <jason@redhat.com>
2596
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.
2601
2602 2011-07-18 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2603
2604 * configure: Regenerate.
2605
2606 2011-07-07 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2607
2608 PR target/39150
2609 * configure.ac (i[3456789]86-*-solaris2*): Also accept
2610 x86_64-*-solaris2.1[0-9]*.
2611 * configure: Regenerate.
2612
2613 2011-06-13 Walter Lee <walt@tilera.com>
2614
2615 * configure.ac (tilepro-*-*) New case.
2616 (tilegx-*-*): Likewise.
2617 * configure: Regenerate.
2618
2619 2011-06-06 Nick Clifton <nickc@redhat.com>
2620
2621 * config.sub: Sync from upstream.
2622
2623 2011-05-08 Doug Kwan <dougkwan@google.com>
2624
2625 Merge from gcc:
2626
2627 2011-05-08 Doug Kwan <dougkwan@google.com>
2628
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.
2634
2635 2011-05-05 Joseph Myers <joseph@codesourcery.com>
2636
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
2643 statement.
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.
2667
2668 2011-05-04 Joseph Myers <joseph@codesourcery.com>
2669
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.
2674
2675 2011-05-04 Joseph Myers <joseph@codesourcery.com>
2676
2677 * configure.ac: Separate libgloss_dir settings from general case
2678 over targets.
2679 * configure: Regenerate.
2680
2681 2011-04-28 Joseph Myers <joseph@codesourcery.com>
2682
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
2692 hppa*-*-hpux*.
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.
2703
2704 2011-04-28 Joseph Myers <joseph@codesourcery.com>
2705
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
2728 statement.
2729 * configure: Regenerate.
2730
2731 2011-04-28 Joseph Myers <joseph@codesourcery.com>
2732
2733 Merge from GCC:
2734
2735 2011-04-18 Jack Howarth <howarth@bromo.med.uc.edu>
2736
2737 PR lto/48086
2738 * configure.ac: Re-enable LTO on *-apple-darwin9*.
2739 * configure: Regenerate.
2740
2741 2011-04-28 Joseph Myers <joseph@codesourcery.com>
2742
2743 * configure.ac: Separate cases disabling Java and Java libraries
2744 from general case over targets.
2745 * configure: Regenerate.
2746
2747 2011-04-06 Joseph Myers <joseph@codesourcery.com>
2748
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.
2766
2767 2011-04-05 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
2768
2769 * config.sub: Sync from upstream.
2770
2771 2011-04-01 Joseph Myers <joseph@codesourcery.com>
2772
2773 * configure.ac (avr-*-*): Add comment about why libssp is disabled.
2774 (microblaze*): Don't disable libssp.
2775 * configure: Regenerate.
2776
2777 2011-04-01 Joseph Myers <joseph@codesourcery.com>
2778
2779 * configure.ac: Remove code setting CONFIG_SHELL, config_shell and
2780 moveifchange.
2781 * configure: Regenerate.
2782 * Makefile.tpl: Use @SHELL@ not @config_shell@.
2783 * Makefile.in: Regenerate.
2784
2785 2011-04-01 Joseph Myers <joseph@codesourcery.com>
2786
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.
2795
2796 2011-04-01 Joseph Myers <joseph@codesourcery.com>
2797
2798 * configure.ac: Separate cases disabling target-libssp,
2799 target-libiberty, target-libstdc++-v3 and Fortran from general
2800 case over targets.
2801 * configure: Regenerate.
2802
2803 2011-04-01 Joseph Myers <joseph@codesourcery.com>
2804
2805 * configure.ac (*-*-chorusos): Don't disable libgcj.
2806 (*-*-freebsd[[12]] | *-*-freebsd[[12]].* | *-*-freebsd*aout*):
2807 Remove case.
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
2813 configuration.
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
2818 to *.
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
2826 libgcj.
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
2836 case.
2837 (v810-*-*): Don't disable GCC libraries.
2838 (v850*-*-*, vax-*-vms, xtensa*-*-*): Remove cases.
2839 (ip2k-*-*): Don't disable GCC libraries.
2840 * configure: Regenerate.
2841
2842 2011-03-28 Joseph Myers <joseph@codesourcery.com>
2843
2844 * configure.ac (i[[3456789]]86-*-msdosdjgpp*): Don't disable
2845 libffi on host.
2846 (x86_64-*-mingw*, i[[3456789]]86-*-mingw32*): Don't disable newlib
2847 on host.
2848 (c54x*-*-* | tic54x-*-*): Don't disable newlib on host.
2849 * configure: Regenerate.
2850
2851 2011-03-26 John Marino <binutils@marino.st>
2852
2853 * configure.ac: Add support for *-*-dragonfly*
2854 * configure: Regenerate.
2855
2856 2011-03-25 Joseph Myers <joseph@codesourcery.com>
2857
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
2878 gnuserv on target.
2879 (powerpcle-*-solaris*): Don't disable make expect gnuserv on
2880 target.
2881 * configure: Regenerate.
2882
2883 2011-03-25 Joseph Myers <joseph@codesourcery.com>
2884
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
2889 setting.
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
2897 host.
2898 * configure: Regenerate.
2899
2900 2011-03-24 Paolo Bonzini <pbonzini@redhat.com>
2901
2902 * configure.ac: Remove references to mt-mep, mt-netware,
2903 mt-wince.
2904 * Makefile.def: Add all-utils soft dependencies.
2905 * Makefile.tpl: Remove GDB_NLM_DEPS.
2906 * configure: Regenerate.
2907 * Makefile.in: Regenerate.
2908
2909 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2910
2911 Sync from GCC:
2912
2913 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2914
2915 * configure.ac: Do not include mh-x86omitfp.
2916 * configure: Regenerate.
2917
2918 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2919
2920 * configure.ac: Remove empty cases.
2921 * configure: Regenerate.
2922
2923 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2924
2925 * Makefile.def: Add dependency from termcap to gdb.
2926 * Makefile.in: Regenerate.
2927
2928 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2929
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.
2935
2936 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2937
2938 * configure.ac: Remove all mentions of tentative_cc.
2939 * configure: Regenerate.
2940
2941 2011-03-16 Jack Howarth <howarth@bromo.med.uc.edu>
2942
2943 PR lto/48086
2944 * configure.ac: Re-enable LTO on *-apple-darwin9.
2945 * configure: Regenerate.
2946
2947 2011-03-24 Joseph Myers <joseph@codesourcery.com>
2948
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.
2961
2962 2011-03-24 Joseph Myers <joseph@codesourcery.com>
2963
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
2968 cases.
2969 * configure: Regenerate.
2970
2971 2011-03-24 Joseph Myers <joseph@codesourcery.com>
2972
2973 * config.sub: Update to version 2011-03-23.
2974
2975 2011-03-22 Joseph Myers <joseph@codesourcery.com>
2976
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.
2981
2982 2011-03-22 Joseph Myers <joseph@codesourcery.com>
2983
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.
2989
2990 2011-03-21 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2991
2992 PR bootstrap/48120:
2993 * configure.ac (pwllib): Use LIBS instead of LDFLAGS.
2994 Add -lstdc++ -lm to LIBS.
2995 * configure: Regenerate.
2996
2997 2011-03-18 David Edelsohn <dje.gcc@gmail.com>
2998
2999 * config.guess: Update to version 2011-02-02
3000 * config.sub: Update to version 2011-02-24
3001
3002 2011-03-03 Sebastian Pop <sebastian.pop@amd.com>
3003
3004 * configure.ac: Adjust test of with_ppl.
3005 * configure: Regenerated.
3006
3007 2011-03-02 Sebastian Pop <sebastian.pop@amd.com>
3008
3009 * configure.ac: Add -lpwl to ppllibs.
3010 * config/cloog.m4: Add -lisl to clooglibs.
3011 * configure: Regenerated.
3012
3013 2011-02-13 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3014
3015 Import from Libtool and gnulib:
3016
3017 2011-01-27 Gerald Pfeifer <gerald@pfeifer.com>
3018
3019 Prepare for supporting FreeBSD 10.
3020 * config.rpath: Remove handling of freebsd1* which soon would
3021 match FreeBSD 10.0.
3022
3023 2011-01-20 Gerald Pfeifer <gerald@pfeifer.com> (tiny change)
3024
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.
3029
3030 2011-02-12 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3031
3032 PR binutils/12283
3033 * MAINTAINERS (mkinstalldirs): Comes from Automake.
3034 (move-if-change): Comes from gnulib.
3035 * move-if-change: Import version from gnulib.
3036
3037 2011-02-12 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3038
3039 Sync from GCC:
3040
3041 2011-02-12 Alexandre Oliva <aoliva@redhat.com>
3042
3043 PR lto/47225
3044 * Makefile.def (lto-plugin): Double dash for enable-shared.
3045 (configure-gcc): Depend on all-lto-plugin.
3046 * Makefile.in: Rebuilt.
3047
3048 2011-02-11 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3049
3050 * configure.ac: Remove extra bracket.
3051 * configure: Regenerate.
3052
3053 2011-02-06 Kai Tietz <kai.tietz@onevision.com>
3054
3055 PR lto/47225
3056 * Makefile.def: Add dependency for install-gcc
3057 on install-lto-plugin.
3058 * Makfile.in: Regenerated
3059
3060 2011-01-25 Jakub Jelinek <jakub@redhat.com>
3061
3062 * configure.ac: If with_ppl is no, move setting with_cloog=no
3063 after CLOOG_REQUESTED check.
3064 * configure: Regenerated.
3065
3066 2011-01-25 Sebastian Pop <sebastian.pop@amd.com>
3067
3068 * configure.ac: Call AC_MSG_ERROR when PPL 0.11 is not present and
3069 CLooG has been requested.
3070 * configure: Regenerated.
3071
3072 2011-01-25 Sebastian Pop <sebastian.pop@amd.com>
3073
3074 * configure: Regenerated.
3075 * configure.ac: Check for version 0.11 (or later revision) of PPL.
3076
3077 2011-01-25 Tobias Grosser <grosser@fim.uni-passau.de>
3078
3079 * configure: Regenerated.
3080 * configure.ac: Use CLOOG_CHECK_VERSION(0,16,1).
3081
3082 2011-01-07 Jan Hubicka <jh@suse.cz>
3083
3084 PR lto/47225
3085 * Makefile.in: Regenerate.
3086 * Makefile.def (lto-plugin): Always pass enable-shared to the plugin
3087 configure.
3088
3089 2011-01-31 Alexandre Oliva <aoliva@redhat.com>
3090
3091 PR libgcj/44341
3092 * configure.ac: Discard --with-* flags for host when configuring
3093 target libraries for cross build.
3094 * configure: Rebuilt.
3095
3096 2011-01-21 Andreas Schwab <schwab@redhat.com>
3097
3098 Sync from GCC:
3099
3100 2011-01-21 Andreas Schwab <schwab@redhat.com>
3101
3102 * configure.ac: Use AS_HELP_STRING throughout.
3103 * configure: Regenerate.
3104
3105 2011-01-18 Jie Zhang <jie.zhang@analog.com>
3106
3107 * configure.ac (bfin-*-*): Remove gdb from noconfigdirs.
3108 * configure: Regenerate.
3109
3110 2010-12-10 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
3111
3112 * ltmain.sh (relink): Use absolute path when hardcoding with -L.
3113
3114 2011-01-13 Joel Brobecker <brobecker@adacore.com>
3115
3116 * configure.ac: Remove readline, mmalloc, and gdb from noconfigdirs
3117 for ia64-hpux.
3118 * configure: Regenerate.
3119
3120 2011-01-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3121
3122 Sync from GCC:
3123 2010-12-22 Hariharan Sandanagobalane <hariharan@picochip.com>
3124
3125 * configure.ac: (picochip): Disable libiberty.
3126 * configure: Regenerate.
3127
3128 2010-12-18 Jeff Johnston <jjohnstn@redhat.com>
3129
3130 * COPYING.LIBGLOSS: Remove the GPL for fr30 target.
3131
3132 2010-12-10 Ian Lance Taylor <iant@google.com>
3133
3134 PR bootstrap/46819
3135 * configure.ac: For --disable-libgcj clear libgcj_saved.
3136 * configure: Rebuild.
3137
3138 2010-12-10 Tobias Burnus <burnus@net-b.de>
3139
3140 PR fortran/46540
3141 * configure.ac: Add --disable-libquadmath and
3142 --disable-libquadmath-support.
3143 * configure: Regenerate.
3144
3145 2010-12-10 Tristan Gingold <gingold@adacore.com>
3146
3147 * src-release (ETC_SUPPORT): add gnu-oids.texi
3148
3149 2010-12-03 Hans-Peter Nilsson <hp@axis.com>
3150
3151 PR libffi/46792
3152 * configure.ac (cris-*-elf, crisv32-*-elf): Disable target-libffi.
3153 * configure: Regenerate.
3154
3155 2010-12-02 Ian Lance Taylor <iant@google.com>
3156
3157 * configure.ac: Always set default for poststage1_ldflags to
3158 -static-libstdc++ -static-libgcc.
3159
3160 2010-12-02 Jeff Johnston <jjohnstn@redhat.com>
3161
3162 * COPYING.NEWLIB: Add National Semiconductor notice.
3163
3164 2010-11-29 Andreas Schwab <schwab@redhat.com>
3165
3166 * configure.ac: Move comment to remove extra space in last argument
3167 of GCC_TARGET_TOOL.
3168
3169 2010-11-26 Alexandre Oliva <aoliva@redhat.com>
3170
3171 PR other/46026
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.
3178
3179 2010-11-23 H.J. Lu <hongjiu.lu@intel.com>
3180
3181 PR binutils/12258
3182 * configure.ac: Correct comments for --enable-gold/--enable-ld.
3183 Properly check default linker.
3184 * configure: Regnerated.
3185
3186 2010-11-23 Matthias Klose <doko@ubuntu.com>
3187
3188 * configure.ac: For --enable-gold, handle value `default' instead of
3189 `both*'. New configure option --{en,dis}able-ld.
3190 * configure: Regenerate.
3191
3192 2010-11-20 Ian Lance Taylor <iant@google.com>
3193
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.
3197
3198 2010-11-20 Paolo Bonzini <bonzini@gnu.org>
3199
3200 * configure: Regenerate.
3201
3202 2010-11-20 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3203
3204 PR other/46202
3205 * configure.ac: Fix just-built in-tree STRIP name to be
3206 binutils/strip-new.
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+]):
3215 New targets.
3216 * Makefile.in: Regenerate.
3217
3218 2010-11-19 Ian Lance Taylor <iant@google.com>
3219 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3220
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.
3238
3239 2010-11-19 Ian Lance Taylor <iant@google.com>
3240
3241 * config-ml.in: Add Go support: treat GOC and GOCFLAGS like other
3242 compiler/flag environment variables.
3243
3244 2010-11-18 Ian Lance Taylor <iant@google.com>
3245
3246 * configure.ac: Check for lang_requires_boot_languages in
3247 config-lang.in files.
3248 * configure: Rebuild.
3249
3250 2010-11-17 Mike Frysinger <vapier@gentoo.org>
3251
3252 * .gitignore: New file.
3253
3254 2010-11-16 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
3255 Tobias Burnus <burnus@net-b.de>
3256
3257 PR fortran/32049
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.
3263
3264 2010-11-15 Andreas Schwab <schwab@redhat.com>
3265
3266 * configure.ac: Fix spelling in option names.
3267 * configure: Regenerated.
3268
3269 2010-11-13 Georg-Johann Lay <georgjohann@web.de>
3270
3271 PR bootstrap/39622
3272 * configure.ac (FLAGS_FOR_TARGET): Add include-fixed path.
3273 * configure: Regenerated.
3274
3275 2010-11-12 Tobias Grosser <grosser@fim.uni-passau.de>
3276
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.
3281
3282 2010-11-12 Tobias Grosser <grosser@fim.uni-passau.de>
3283
3284 * config/cloog.m4: Use CLooG predefined macro to check for CLooG PPL.
3285 * configure: regenerate
3286
3287 2010-11-12 Tobias Grosser <grosser@fim.uni-passau.de>
3288
3289 * config/cloog.m4: Fix typo. verison -> version.
3290 * configure: Regenerate.
3291
3292 2010-11-12 Tobias Grosser <grosser@fim.uni-passau.de>
3293
3294 * config/cloog.m4: Pass ppl libraries to the CLooG version check.
3295 * configure: Regenerate.
3296
3297 2010-11-11 Andreas Simbuerger <simbuerg@fim.uni-passau.de>
3298
3299 * configure.ac: Support official CLooG.org versions.
3300 * configure: Regenerate.
3301 * config/cloog.m4: New.
3302
3303 2010-11-05 Michael Eager <eager@eagercon.com>
3304
3305 * COPYING.LIBGLOSS: Correct typo in microblaze.
3306 * COPYING.NEWLIB: Same.
3307
3308 2010-11-04 Iain Sandoe <iains@gcc.gnu.org>
3309
3310 * configure.ac (*-*-darwin*): Use mh-darwin for all Darwin variants.
3311 * configure: Regenerate.
3312
3313 2010-11-03 Ian Lance Taylor <iant@google.com>
3314 Dave Korn <dave.korn.cygwin@gmail.com>
3315
3316 PR lto/46273
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.
3320
3321 2010-11-02 Alan Modra <amodra@gmail.com>
3322
3323 PR binutils/12110
3324 * configure.ac: Error when source path contains spaces.
3325 * configure: Regenerate.
3326
3327 2010-10-20 Ian Lance Taylor <iant@google.com>
3328
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.
3333
3334 2010-10-08 Bernd Schmidt <bernds@codesourcery.com>
3335 Joseph Myers <joseph@codesourcery.com>
3336
3337 * COPYING.LIBGLOSS: Add National Semiconductor and CodeSourcery
3338 notices.
3339 * COPYING.NEWLIB: Add Texas Instruments notice.
3340
3341 2010-10-07 Dave Korn <dave.korn.cygwin@gmail.com>
3342
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.
3349
3350 2010-10-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3351
3352 PR bootstrap/45326
3353 PR bootstrap/45174
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.
3358
3359 2010-10-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3360
3361 Sync from GCC:
3362
3363 2010-09-30 Michael Eager <eager@eagercon.com>
3364
3365 * configure.ac (microblaze): Add target-libssp to noconfigdirs.
3366 * configure: Regenerate.
3367
3368 2010-09-21 Iain Sandoe <iains@gcc.gnu.org>
3369
3370 * configure.ac (enable-lto): Add Darwin to the list of supported lto
3371 targets and amend comment.
3372 * configure: Regenerate.
3373
3374 2010-09-03 Jack Howarth <howarth@bromo.med.uc.edu>
3375
3376 * configure.ac: Enable LTO by default on Darwin.
3377 * configure: Regenerate.
3378
3379 2010-07-23 Marc Glisse <marc.glisse@normalesup.org>
3380
3381 PR bootstrap/44455
3382 * configure.ac (extra_mpfr_configure_flags): Copy from
3383 extra_mpc_gmp_configure_flags.
3384 * configure: Re-generated.
3385
3386 2010-09-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3387
3388 Sync from GCC:
3389
3390 PR bootstrap/45796
3391 * Makefile.def (info-gcc, dvi-gcc, pdf-gcc, html-gcc):
3392 Depend on all-build-libiberty.
3393 * Makefile.in: Regenerate.
3394
3395 2010-09-27 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3396
3397 Sync from GCC:
3398
3399 PR bootstrap/44621
3400 * configure.ac: Fix unportable shell quoting.
3401 * configure: Regenerate.
3402
3403 2010-07-26 Naveen.H.S <naveen.S@kpitcummins.com>
3404
3405 * configure.ac: Support all v850 targets.
3406 * configure: Regenerate.
3407
3408 2010-07-17 Jack Howarth <howarth@bromo.med.uc.edu>
3409
3410 PR target/44862
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.
3415
3416 2010-06-10 Alexandre Oliva <aoliva@redhat.com>
3417
3418 * Makefile.def (configure-gcc): Depend on all-libelf.
3419 * Makefile.in: Rebuild.
3420
3421 2010-06-01 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3422
3423 * config.sub, config.guess: Update from upstream sources.
3424
3425 2010-06-01 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3426
3427 Sync from GCC:
3428
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.
3432
3433 2010-04-20 Eric Botcazou <ebotcazou@adacore.com>
3434 * configure.ac (BUILD_CONFIG): Redirect output to /dev/null.
3435 * configure: Regenerate.
3436
3437 2010-04-17 Ralf Cors<E9>pius <ralf.corsepius@rtems.org>
3438 * configure.ac (*-*-rtems*): Add target-libiberty to $skipdirs.
3439 * configure: Regenerate.
3440
3441 2010-04-16 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3442 * configure.ac: Check for elf_getshdrstrndx or elf_getshstrndx
3443 separately.
3444 * configure: Regenerate.
3445
3446 2010-04-13 Steve Ellcey <sje@cup.hp.com>
3447 * configure: Regenerate after change to elf.m4.
3448
3449 2010-04-02 Sebastian Pop <sebastian.pop@amd.com>
3450 * configure.ac: Add brackets around AC_TRY_COMPILE alternative.
3451 * configure: Regenerated.
3452
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.
3457
3458 2010-05-26 Dave Korn <dave.korn.cygwin@gmail.com>
3459
3460 Merge from gcc:
3461
3462 2010-05-18 Steven Bosscher <steven@gcc.gnu.org>
3463 * configure.ac (--enable-lto): All *-apple-darwin* now support LTO.
3464 * configure: Regenerate.
3465
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.
3470
3471 2010-04-27 Dave Korn <dave.korn.cygwin@gmail.com>
3472 PR lto/42776
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.
3478
3479 2010-04-27 Roland McGrath <roland@redhat.com>
3480 H.J. Lu <hongjiu.lu@intel.com>
3481
3482 * configure.ac (--enable-gold): Support both, both/gold and
3483 both/bfd to add gold to configdirs without removing ld.
3484 * configure: Regenerated.
3485
3486 * Makefile.def: Add install-gold dependency to install-ld.
3487 * Makefile.in: Regenerated.
3488
3489 2010-04-14 Tristan Gingold <gingold@adacore.com>
3490
3491 * configure.ac (alpha*-*-*vms*): Remove ld from noconfigdirs.
3492 * configure: Regenerate.
3493
3494 2010-04-08 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3495
3496 Merge from gcc:
3497 PR bootstrap/43615
3498 PR bootstrap/43328
3499 Revert:
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
3503 --enable_multilib.
3504 * configure: Regenerate.
3505
3506 2010-03-31 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3507
3508 PR bootstrap/43328
3509 * configure.ac: Do not pass --enable-multilib nor
3510 --disable-multilib in baseargs. Accept explicitly passed
3511 --enable_multilib.
3512 * configure: Regenerate.
3513
3514 2010-03-23 Joseph Myers <joseph@codesourcery.com>
3515
3516 * configure.ac (tic6x-*-*): New case.
3517 * configure: Regenerate.
3518
3519 2010-03-23 Joseph Myers <joseph@codesourcery.com>
3520
3521 Merge from gcc:
3522 2010-03-19 Jack Howarth <howarth@bromo.med.uc.edu>
3523 PR ada/42554
3524 * configure.ac: Only pass -c to ranlib for darwin9 and earlier.
3525 * configure: Regenerate.
3526
3527 2010-03-23 Joseph Myers <joseph@codesourcery.com>
3528
3529 * config.sub: Update to version 2010-03-22.
3530 * config.guess: Update to version 2009-12-30.
3531
3532 2010-03-14 Joseph Myers <joseph@codesourcery.com>
3533
3534 Merge from gcc:
3535 2010-01-11 Richard Guenther <rguenther@suse.de>
3536 PR lto/41569
3537 * Makefile.def (all-lto-plugin): Depend on all-gcc.
3538 * Makefile.in: Regenerated.
3539
3540 2010-03-01 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3541
3542 PR libstdc++/32499
3543 * configure.ac (RANLIB): Default to true.
3544 (STRIP): Likewise.
3545 (RANLIB_FOR_TARGET): Remove superfluous : argument.
3546 * configure: Regenerate.
3547
3548 2010-02-17 Nick Clifton <nickc@redhat.com>
3549
3550 PR 11238
3551 * Makefile.tpl (local-distclean): Also remove config.cache files in
3552 sub-directories as there may not be Makefiles present in the
3553 sub-directories.
3554 * Makefile.tpl: Use "-exec rm {}" rather than "-delete" to delete
3555 the config.cache files found by the find command.
3556
3557 * Makefile.in: Regenerate.
3558 * configure.ac: Revert previous delta.
3559 * configure: Regenerate.
3560
3561 2010-02-15 Nick Clifton <nickc@redhat.com>
3562
3563 PR 11238
3564 * configure.ac: Delete config.cache files in sub-directories when
3565 deleting Makefiles.
3566 * configure: Regenerate.
3567
3568 2010-02-15 Nick Clifton <nickc@redhat.com>
3569
3570 * configure.ac: Sync from gcc.
3571 * configure: Regenerate.
3572
3573 2010-01-31 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3574
3575 Sync from gcc:
3576 * configure.ac: Add "recommended" version checks for GMP/MPC.
3577 Update recommended GMP/MPFR/MPC versions.
3578 * configure: Regenerate.
3579
3580 2010-01-25 Joern Rennecke <amylaar@spamcop.net>
3581
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.
3586
3587 2010-01-23 Joern Rennecke <amylaar@spamcop.net>
3588
3589 gcc PR libstdc++/36101, gcc PR libstdc++/42813
3590 * configure.ac (bootstrap_target_libs): Include target-libgomp.
3591 * configure: Regenerate.
3592
3593 2010-01-22 Joern Rennecke <amylaar@spamcop.net>
3594
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.
3602
3603 2009-12-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3604
3605 * libtool.m4: Sync from git Libtool.
3606 * ltmain.sh: Likewise.
3607 * ltoptions.m4: Likewise.
3608 * ltversion.m4: Likewise.
3609 * lt~obsolete.m4: Likewise.
3610
3611 2010-01-07 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3612 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
3613
3614 PR bootstrap/42424
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.
3619
3620 * configure: Regenerate.
3621
3622 2010-01-07 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3623
3624 PR bootstrap/41818
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.
3628
3629 2009-12-18 Ben Elliston <bje@au.ibm.com>
3630
3631 * config.sub, config.guess: Update from upstream sources.
3632
3633 2009-12-17 Jeff Johnston <jjohnstn@redhat.com>
3634
3635 * COPYING.NEWLIB: Update copyright date.
3636 * COPYING.LIBGLOSS: Ditto.
3637
3638 2009-12-07 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3639
3640 PR middle-end/30447
3641 PR middle-end/30789
3642 PR other/40302
3643
3644 * configure.ac: Require MPC.
3645 * configure: Regenerate.
3646
3647 * configure.ac: Update minimum MPC version to 0.8.
3648 * configure: Regenerate.
3649
3650 2009-11-20 Paolo Bonzini <bonzini@gnu.org>
3651
3652 * config.guess: Sync with upstream and gcc.
3653 * config.sub: Sync with upstream and gcc.
3654
3655 2009-11-16 Alexandre Oliva <aoliva@redhat.com>
3656
3657 * Makefile.def: Restore host and target settings for gmp.
3658 * Makefile.in: Rebuild.
3659
3660 2009-11-16 Alexandre Oliva <aoliva@redhat.com>
3661
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
3669 in-tree building.
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
3675 extra_exports.
3676 (all-stage[+id+]-[+prefix+][+module+]): Likewise.
3677 (configure-[+prefix+][+module+], all-[+prefix+][+module+]): Add
3678 extra_exports.
3679 * Makefile.in: Rebuild.
3680
3681 2009-11-06 Ozkan Sezer <sezeroz@gmail.com>
3682
3683 * configure.ac (FLAGS_FOR_TARGET): Add -L and -isystem
3684 paths for *-w64-mingw* and x86_64-*mingw*.
3685 * configure: Regenerated.
3686
3687 2009-10-30 Kai Tietz <kai.tietz@onevision.com>
3688
3689 * configure.ac: Disable target-winsup & co for
3690 x86_64-*-mingw* and *-w64-mingw* targets.
3691 * configure: Regenerated.
3692
3693 2009-10-23 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3694
3695 * configure.ac (CLooG test): Use = with test.
3696 * configure: Regenerate.
3697
3698 2009-10-22 Richard Guenther <rguenther@suse.de>
3699
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.
3704
3705 2009-10-21 Richard Guenther <rguenther@suse.de>
3706
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.
3711
3712 2009-10-13 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3713
3714 * configure.ac: Add 'lto' to enable_languages, not
3715 new_enable_languages, and only if not already present.
3716 * configure: Regenerate.
3717
3718 2009-10-06 Ian Lance Taylor <iant@google.com>
3719
3720 * Makefile.def: check-gold depends upon all-gas.
3721 * Makefile.in: Rebuild.
3722
3723 2009-10-03 2009-02-05 Rafael Avila de Espindola <espindola@google.com>
3724
3725 * Makefile.def: all-lto-plugin depends on all-libiberty.
3726 set bootstrap=true for lto-plugin.
3727 Add lto-plugin.
3728 * Makefile.in: Regenerate.
3729 * configure.ac (host_libs): Add lto-plugin.
3730 * configure: Regenerate.
3731
3732 2009-10-03 Diego Novillo <dnovillo@google.com>
3733
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.
3744
3745 2009-10-03 Simon Baldwin <simonb@google.com>
3746
3747 * configure.ac: If --with-system-zlib, suppress local zlib and
3748 pass --with-system-zlib to subdir configure scripts.
3749 * configure: Regenerate.
3750
3751 2009-10-01 Loren J. Rittle <ljrittle@acm.org>
3752 Paolo Bonzini <bonzini@gnu.org>
3753
3754 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Use $$s rather than
3755 $(srcdir).
3756 * Makefile.in: Rebuilt.
3757
3758 2009-09-29 Paolo Bonzini <bonzini@gnu.org>
3759
3760 Sync from gcc:
3761 2009-09-26 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3762
3763 * configure.ac: Update minimum MPC version to 0.7.
3764 * configure: Regenerate.
3765
3766 2009-09-25 Nick Clifton <nickc@redhat.com>
3767
3768 * configure.ac: Pass any --cache-file=/dev/null option on to
3769 subconfigures.
3770 * configure: Regenerate.
3771
3772 2009-09-23 Nick Clifton <nickc@redhat.com>
3773
3774 * config.sub, config.guess: Update from upstream sources.
3775
3776 2009-09-22 Loren J. Rittle <ljrittle@acm.org>
3777
3778 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Remove stray $$r/.
3779 * Makefile.in: Rebuilt.
3780
3781 2009-09-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3782
3783 PR bootstrap/32272
3784 * configure.ac: Error out if $srcdir isn't '.' but contains
3785 host-${host_noncanonical}.
3786 * configure: Regenerate.
3787
3788 2009-09-21 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3789
3790 * configure.ac: If bootstrapping a combined tree with
3791 --enable-gold, require c++ in stage1_languages.
3792 * configure: Regenerate.
3793
3794 * configure.ac: Also add target_libs of stage1_languages to
3795 bootstrap_target_libs.
3796 * configure: Regenerate.
3797
3798 * configure.ac: Diagnose --enable-build-with-cxx bootstrap
3799 with --enable-languages not containing c++.
3800 * configure: Regenerate.
3801
3802 2009-09-16 Jie Zhang <jie.zhang@analog.com>
3803
3804 * configure.ac: Disable java and boehm-gc for bfin-*-*.
3805 * configure: Regenerate.
3806
3807 2009-09-08 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3808
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.
3814
3815 2009-09-04 Alexandre Oliva <aoliva@redhat.com>
3816
3817 * configure.ac (with-build-config): Document. Handle without.
3818 Handle missing argument.
3819 * configure: Rebuilt.
3820
3821 2009-09-03 Alexandre Oliva <aoliva@redhat.com>
3822
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.
3828
3829 2009-09-01 Alexandre Oliva <aoliva@redhat.com>
3830
3831 * Makefile.tpl (BUILD_CONFIG): Default to bootstrap-debug.
3832 * Makefile.in: Rebuilt.
3833
3834 2009-09-02 Paolo Bonzini <bonzini@gnu.org>
3835
3836 * Makefile.tpl (AWK): Fix typo.
3837 * Makefile.in: Regenerate.
3838
3839 2009-09-02 Paolo Bonzini <bonzini@gnu.org>
3840
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.
3847
3848 2009-09-01 Tristan Gingold <gingold@adacore.com>
3849
3850 * setup.com: Ported to Itanium VMS. Can also build using DCL scripts.
3851 Remove logical names.
3852
3853 2009-08-31 Dave Korn <dave.korn.cygwin@gmail.com>
3854
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.
3860
3861 2009-08-24 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3862
3863 * configure.ac (AC_PREREQ): Bump to 2.64.
3864
3865 2009-08-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3866
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.
3874
3875 * configure: Regenerate.
3876
3877 * compile: Sync from Automake 1.11.
3878 * depcomp: Likewise.
3879 * install-sh: Likewise.
3880 * missing: Likewise.
3881 * mkinstalldirs: Likewise.
3882 * ylwrap: Likewise.
3883
3884 2009-08-19 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3885
3886 * configure.ac: Call AC_DISABLE_OPTION_CHECKING.
3887 (baseargs): Add --disable-option-checking.
3888 * configure: Regenerate.
3889
3890 * Makefile.def (configure-target-libiberty): Depend on
3891 all-binutils and all-ld.
3892 (configure-target-newlib): Likewise.
3893 * Makefile.in: Regenerate.
3894
3895 2009-08-19 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3896
3897 Sync with GCC, merge:
3898
3899 2009-07-31 Christian Bruel <christian.bruel@st.com>
3900
3901 * configure.ac (sh*-*-elf): Don't add target-libgloss to noconfigdirs.
3902 * configure: Regenerate.
3903
3904 2009-07-06 Ian Lance Taylor <iant@google.com>
3905
3906 * configure.ac: Add missing comma in AC_ARG_WITH(boot-libs).
3907 * configure: Rebuild.
3908
3909 2009-06-26 Steve Ellcey <sje@cup.hp.com>
3910
3911 PR bootstrap/40338
3912 * configure.ac (comparestring): Create new variable.
3913 * Makefile.tpl (comparestring): Use to skip some comparisions.
3914 * configure: Regenerate.
3915 * Makefile.in: Regenerate.
3916
3917 2009-06-23 Ian Lance Taylor <iant@google.com>
3918
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.
3933
3934 2009-06-08 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3935
3936 * configure.ac: Detect MPC in default directory.
3937 * configure: Regenerate.
3938
3939 2009-06-02 Richard Sandiford <r.sandiford@uk.ibm.com>
3940
3941 * configure.ac (powerpc-*-aix*, rs6000-*-aix*): Add target-newlib
3942 to noconfdirs.
3943 * configure: Regenerate.
3944
3945 2009-05-29 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3946
3947 * Makefile.def: Add MPC support and dependencies.
3948 * configure.ac: Likewise. Reorganize GMP/MPFR checks.
3949
3950 * Makefile.in, configure: Regenerate.
3951
3952 2009-05-24 Nicolas Roche <roche@adacore.com>
3953
3954 * Makefile.tpl (compare-target): Skip ./ada/*tools directories.
3955 * Makefile.in: Regenerate.
3956
3957 2009-05-21 Dave Korn <dave.korn.cygwin@gmail.com>
3958
3959 * configure.ac (cygwin noconfigdirs): Remove libgcj.
3960 * configure: Regenerate.
3961
3962 2009-05-07 Dave Korn <dave.korn.cygwin@gmail.com>
3963
3964 * configure.ac ($with_ppl): Default to no if not supplied.
3965 ($with_cloog): Likewise.
3966 configure: Regenerate.
3967
3968 2009-04-24 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3969
3970 PR bootstrap/39739
3971 * configure.ac (extra_mpfr_configure_flags): Set and AC_SUBST.
3972 * Makefile.def (module=mpfr): Use extra_mpfr_configure_flags.
3973
3974 * configure, Makefile.in: Regenerate.
3975
3976 2009-04-14 Jakub Jelinek <jakub@redhat.com>
3977
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.
3984
3985 2009-04-09 Jack Howarth <howarth@bromo.med.uc.edu>
3986
3987 * configure.ac: Restore match for darwin9 or later. Use double
3988 brackets since regeneration eats one pair.
3989 * configure: Regenerate.
3990
3991 2009-08-18 Christopher Faylor <me+cygwin@cgf.cx>
3992
3993 * MAINTAINERS: Perform some obvious fixups.
3994
3995 2009-08-17 Ben Elliston <bje@au.ibm.com>
3996
3997 * config.sub, config.guess: Update from upstream sources.
3998
3999 2009-08-06 Michael Eager <eager@eagercon.com>
4000
4001 * configure.ac: Add Microblaze target.
4002 * configure: Regenerate.
4003
4004 2009-07-02 Tristan Gingold <gingold@adacore.com>
4005
4006 * configure.ac: Do not exclude gas for i386-*-darwin.
4007 Add a case for x86_64-*-darwin.
4008 * configure: Regenerate.
4009
4010 2009-06-26 Doug Evans <dje@sebabeach.org>
4011
4012 * Makefile.def (host_modules): Add cgen.
4013 * Makefile.in: Regenerate.
4014 * configure.ac (host_tools): Add cgen.
4015 * configure: Regenerate.
4016
4017 2009-06-17 Michael Eager <eager@eagercon.com>
4018
4019 * COPYING.LIBGLOSS: Add Xilinx license.
4020
4021 2009-06-15 Ryan Mansfield <rmansfield@qnx.com>
4022
4023 * configure.ac: Define is_elf for QNX Neutrino targets.
4024 * configure: Regenerate.
4025
4026 2009-06-03 Jerome Guitton <guitton@adacore.com>
4027 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4028
4029 * Makefile.tpl (all): Avoid a trailing backslash.
4030 * Makefile.in: Regenerate.
4031
4032 2009-06-03 Ben Elliston <bje@au.ibm.com>
4033
4034 * config.sub, config.guess: Update from upstream sources.
4035
4036 2009-06-02 Alexandre Oliva <aoliva@redhat.com>
4037
4038 * Makefile.tpl ([+compare-target+]): Compare all stage
4039 directories, rather than just gcc.
4040 * Makefile.in: Rebuilt.
4041
4042 2009-05-28 Doug Kwan <dougkwan@google.com>
4043
4044 * configure.ac: Support gold for target arm*-*-*.
4045 * configure: Regenerate.
4046
4047 2009-05-27 Alexandre Oliva <aoliva@redhat.com>
4048
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.
4052
4053 2009-05-25 Tristan Gingold <gingold@adacore.com>
4054
4055 * setup.com: Complete the file with configuration and build.
4056
4057 2009-05-18 Alexandre Oliva <aoliva@redhat.com>
4058
4059 PR other/40159
4060 * Makefile.tpl (all): Don't assume gcc-bootstrap and
4061 gcc-no-bootstrap are mutually exclusive.
4062 * Makefile.in: Rebuilt.
4063
4064 2009-05-18 Alexandre Oliva <aoliva@redhat.com>
4065
4066 PR other/40159
4067 * Makefile.tpl (all): Don't end with unconditional success.
4068 * Makefile.in: Rebuilt.
4069
4070 2009-05-12 Alexandre Oliva <aoliva@redhat.com>
4071
4072 PR target/37137
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
4080 GFORTRAN.
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,
4087 and GFORTRAN.
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
4102 TFLAGS.
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.
4110
4111 2009-04-25 Eric Botcazou <ebotcazou@adacore.com>
4112
4113 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Add GNATBIND.
4114 (POSTSTAGE1_FLAGS_TO_PASS): Pick up exported value for GNATBIND.
4115 * Makefile.in: Regenerate.
4116
4117 2009-04-24 Eli Zaretskii <eliz@gnu.org>
4118
4119 * config.guess (pc:*:*:*): Return i586-pc-msdosdjgpp, for
4120 consistency with config.sub. (Update from upstream sources.)
4121
4122 2009-04-21 Joseph Myers <joseph@codesourcery.com>
4123
4124 * texinfo/texinfo.tex: Update to version 2009-03-28.05.
4125
4126 2009-04-17 Ben Elliston <bje@au.ibm.com>
4127
4128 * config.sub, config.guess: Update from upstream sources.
4129
4130 2009-04-15 Anthony Green <green@moxielogic.com>
4131
4132 * configure.ac: Add moxie support.
4133 * configure: Rebuilt.
4134
4135 2009-04-09 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4136
4137 * configure.ac: Bump minimum GMP/MPFR versions to 4.2 and 2.3.1.
4138 * configure: Regenerate.
4139
4140 2009-04-09 H.J. Lu <hongjiu.lu@intel.com>
4141
4142 PR gas/10039
4143 * configure.ac: Require texinfo 4.7.
4144 * configure: Regenerated.
4145
4146 2009-04-09 Steve Ellcey <sje@cup.hp.com>
4147
4148 * Makefil.def (languages): New entries.
4149 * Makefile.tpl (check-gcc-*): New generic target.
4150 * Makefile.in: Regenerate.
4151
4152 2009-03-27 Eli Zaretskii <eliz@gnu.org>
4153
4154 * djunpack.bat: Use ".." quoting in Sed command, for the sake of
4155 Windows builds of Sed.
4156
4157 2009-03-18 Tom Tromey <tromey@redhat.com>
4158
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.
4164
4165 2009-03-16 Tristan Gingold <gingold@adacore.com>
4166
4167 * configure.ac: Treat gdb as supported on x86_64-darwin.
4168 * configure: Regenerate.
4169
4170 2009-03-16 Joseph Myers <joseph@codesourcery.com>
4171
4172 Merge from GCC:
4173
4174 2009-03-16 Joseph Myers <joseph@codesourcery.com>
4175
4176 * configure.ac (--with-host-libstdcxx): New option.
4177 * configure: Regenerate.
4178
4179 2009-01-29 Robert Millan <rmh@aybabtu.com>
4180
4181 * configure.ac: Recognize GNU/kOpenSolaris (*-*-kopensolaris*-gnu).
4182 * configure: Regenerate.
4183
4184 2009-01-12 Sebastian Pop <sebastian.pop@amd.com>
4185
4186 PR tree-optimization/38515
4187 * configure.ac (cloog-polylib): Removed.
4188 (with_ppl, with_cloog): Test for "no".
4189 * configure: Regenerated.
4190
4191 2009-03-01 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4192
4193 Backport from git Libtool:
4194
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
4200 GNU/kOpenSolaris.
4201
4202 2009-02-05 Andreas Schwab <schwab@suse.de>
4203
4204 * Makefile.tpl (stage_last): Define $r and $s before using
4205 $(RECURSE_FLAGS_TO_PASS).
4206 * Makefile.in: Regenerate
4207
4208 2009-01-21 Jeff Johnston <jjohnstn@redhat.com>
4209
4210 * COPYING.NEWLIB: Add ARM license.
4211
4212 2009-01-16 Alan Modra <amodra@bigpond.net.au>
4213
4214 * Makefile.def (configure-opcodes): Depend on configure-libiberty.
4215 (all-opcodes): Depend on all-libiberty.
4216 * Makefile.in: Regenerate.
4217
4218 2009-01-15 Douglas B Rupp <rupp@gnat.com>
4219
4220 * configure.ac (ia64*-*-*vms*): Add case with no gdb or ld support.
4221 * configure: Regenerate.
4222
4223 2008-12-18 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4224
4225 Backport link test fix from upstream Libtool:
4226
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.
4232
4233 2008-12-02 Ben Elliston <bje@au.ibm.com>
4234
4235 * config.sub, config.guess: Update from upstream sources.
4236
4237 2008-12-17 Jeff Johnston <jjohnstn@redhat.com>
4238
4239 * COPYING.NEWLIB: Updated.
4240 * COPYING.LIBGLOSS: Ditto.
4241
4242 2008-12-16 Paolo Bonzini <bonzini@gnu.org>
4243
4244 Sync with GCC:
4245
4246 2008-12-12 Sebastian Pop <sebastian.pop@amd.com>
4247
4248 * configure.ac (ppllibs): Add by default the lib flags.
4249 * configure: Regenerate.
4250
4251 2008-12-04 Jack Howarth <howarth@bromo.med.uc.edu>
4252
4253 * configure.ac: Add double brackets on darwin[912].
4254 * configure: Regenerate.
4255
4256 2008-12-02 Jack Howarth <howarth@bromo.med.uc.edu>
4257
4258 * configure.ac: Expand to darwin10 and later.
4259 * configure: Regenerate.
4260
4261 2008-12-02 Andreas Schwab <schwab@suse.de>
4262
4263 * Makefile.def: configure-target-boehm-gc depends on
4264 all-target-libstdc++-v3.
4265 * Makefile.in: Regenerate.
4266
4267 2008-12-02 Ben Elliston <bje@au.ibm.com>
4268
4269 * config.sub, config.guess: Update from upstream sources.
4270
4271 2008-11-27 Joseph Myers <joseph@codesourcery.com>
4272
4273 Merge from GCC:
4274
4275 2007-12-02 Matthias Klose <doko@ubuntu.com>
4276
4277 * config-ml.in: Remove 64bit configure tests.
4278
4279 2008-05-14 Rafael Espindola <espindola@google.com>
4280
4281 * config-ml.in: don't handle --enable-shared and --enable-static.
4282
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>
4290
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.
4299
4300 2008-09-03 Richard Guenther <rguenther@suse.de>
4301
4302 * configure.ac: Always pass -DCLOOG_PPL_BACKEND to the
4303 cloog test.
4304 * configure: Re-generate.
4305
4306 2008-09-03 Sebastian Pop <sebastian.pop@amd.com>
4307
4308 * configure.ac (--with-cloog-polylib): New.
4309 (--disable-cloog-version-check): New.
4310 (--disable-ppl-version-check): New.
4311 * configure: Re-generate.
4312
4313 2008-09-05 Richard Guenther <rguenther@suse.de>
4314
4315 * configure.ac: Initialize clooglibs to -lcloog.
4316 * configure: Re-generate.
4317
4318 2008-10-13 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4319
4320 * configure.ac (MPFR check): Bump minimum version to 2.3.0 and
4321 recommended version to 2.3.2.
4322
4323 * configure: Regenerate.
4324
4325 2008-10-31 Ben Elliston <bje@au.ibm.com>
4326
4327 * configure.ac (spu-*-*): Remove special case.
4328 * configure: Regenerate.
4329
4330 Complete comment text from GCC version of:
4331
4332 2008-08-31 Aaron W. LaFramboise <aaronavay62@aaronwl.com>
4333
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.
4339
4340 2008-11-27 Tristan Gingold <gingold@adacore.com>
4341
4342 * configure.ac: Build gdb for i?86-*-darwin*
4343 * configure: Regenerated.
4344
4345 2008-11-14 Daniel Jacobowitz <dan@codesourcery.com>
4346
4347 PR bootstrap/38014
4348 PR bootstrap/37923
4349
4350 Revert:
4351
4352 2008-10-24 Daniel Jacobowitz <dan@codesourcery.com>
4353
4354 * Makefile.tpl (HOST_EXPORTS): Correct CPPFLAGS typo.
4355 * Makefile.in: Regenerated.
4356
4357 2008-10-22 Daniel Jacobowitz <dan@codesourcery.com>
4358
4359 PR gdb/921
4360 PR gdb/1646
4361 PR gdb/2175
4362 PR gdb/2176
4363
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.
4374
4375 2008-10-29 Stefan Schulze Frielinghaus <xxschulz@de.ibm.com>
4376
4377 * configure.ac [spu-*-*]: Do not set skipdirs.
4378 * configure: Re-generate.
4379
4380 2008-10-24 Daniel Jacobowitz <dan@codesourcery.com>
4381
4382 * Makefile.tpl (HOST_EXPORTS): Correct CPPFLAGS typo.
4383 * Makefile.in: Regenerated.
4384
4385 2008-10-22 Daniel Jacobowitz <dan@codesourcery.com>
4386
4387 PR gdb/921
4388 PR gdb/1646
4389 PR gdb/2175
4390 PR gdb/2176
4391
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.
4402
4403 2008-09-29 Peter O'Gorman <pogma@thewrittenword.com>
4404
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.
4412
4413 2008-08-31 Aaron W. LaFramboise <aaronavay62@aaronwl.com>
4414
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.
4420
4421 2008-08-28 Tristan Gingold <gingold@adacore.com>
4422
4423 * configure.ac (powerpc-*-darwin*, i?86-*-darwin*,x86_64-*-darwin9):
4424 Enable bfd, binutils and opcodes.
4425 * configure: Regenerate.
4426
4427 2008-08-16 Nicolas Roche <roche@adacore.com>
4428
4429 * Makefile.tpl: Add BOOT_ADAFLAGS.
4430 * Makefile.in: Regenerate.
4431
4432 2008-08-16 Richard Sandiford <rdsandiford@googlemail.com>
4433
4434 * configure.ac (mips*-*-*linux*, mips*-*-gnu*): Use mt-mips-gnu.
4435 * configure: Regenerate.
4436
4437 2008-07-30 Paolo Bonzini <bonzini@gnu.org>
4438
4439 Sync with gcc:
4440 2008-07-30 Paolo Bonzini <bonzini@gnu.org>
4441
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.
4447
4448 2008-06-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4449
4450 * Makefile.tpl ($(srcdir)/configure): Update dependencies.
4451 * Makefile.in: Regenerate.
4452 * configure: Regenerate.
4453
4454 2008-06-18 Ian Lance Taylor <iant@google.com>
4455
4456 * src-release (BINUTILS_SUPPORT_DIRS): Remove mkdep and depcomp.
4457
4458 * src-release (BINUTILS_SUPPORT_DIRS): Add depcomp.
4459
4460 2008-06-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4461
4462 * configure: Regenerate.
4463
4464 2008-06-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4465
4466 * configure.ac: Set TOPLEVEL_CONFIGURE_ARGUMENTS early, when
4467 "$@" is still intact with both Autoconf 2.59 and 2.62.
4468 * configure: Regenerate.
4469
4470 2008-06-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4471
4472 * Makefile.tpl: Fix comment errors.
4473 * Makefile.in: Regenerate.
4474
4475 2008-06-13 Julian Brown <julian@codesourcery.com>
4476
4477 * configure.ac (arm*-*-linux-gnueabi): Don't disable building
4478 of libobjc for ARM EABI Linux.
4479 * configure: Regenerate.
4480
4481 2008-06-12 David S. Miller <davem@davemloft.net>
4482 David Edelsohn <edelsohn@gnu.org>
4483
4484 * configure.ac: Add powerpc*-*-* to gold supported targets.
4485 * configure: Regenerate.
4486
4487 2008-06-08 Joseph Myers <joseph@codesourcery.com>
4488
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.
4494
4495 2008-05-16 Daniel Jacobowitz <dan@codesourcery.com>
4496
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.
4501
4502 2008-05-11 Ian Lance Taylor <iant@google.com>
4503
4504 * src-release (BINUTILS_SUPPORT_DIRS): Add elfcpp and gold.
4505
4506 2008-04-18 Paolo Bonzini <bonzini@gnu.org>
4507
4508 Sync with gcc:
4509 2008-04-18 Paolo Bonzini <bonzini@gnu.org>
4510
4511 PR bootstrap/35457
4512 * configure.ac: Include override.m4.
4513 * configure: Regenerate.
4514
4515 2008-04-18 Paolo Bonzini <bonzini@gnu.org>
4516
4517 * Makefile.tpl (restrap): Call `make all' using double-colon rules.
4518 * Makefile.in: Regenerate.
4519
4520 2008-04-11 Eric B. Weddington <eweddington@cso.atmel.com>
4521
4522 * configure.ac: Do not build libssp for the AVR.
4523 * configure: Regenerate.
4524
4525 2008-04-18 Nick Clifton <nickc@redhat.com>
4526
4527 * MAINTAINERS: Replace reference to configure.in with reference to
4528 configure.ac.
4529
4530 2008-04-18 M R Swami Reddy <MR.Swami.Reddy@nsc.com>
4531
4532 * configure.ac (cr16-*-*): Add case for cr16 target and include gdb
4533 as nonconfigurable directories list.
4534 * configure: Regenerate.
4535
4536 2008-04-14 David S. Miller <davem@davemloft.net>
4537
4538 * configure.ac: Add sparc*-*-* to gold supported targets.
4539 * configure: Regenerate.
4540
4541 2008-04-14 Ben Elliston <bje@au.ibm.com>
4542
4543 * config.sub, config.guess: Update from upstream sources.
4544
4545 2008-04-12 Hans-Peter Nilsson <hp@axis.com>
4546
4547 * Makefile.tpl <gcc>: Error early unless at least GNU make 3.80.
4548 * Makefile.in: Regenerate.
4549
4550 2008-04-07 Ian Lance Taylor <iant@google.com>
4551
4552 * Makefile.def: check-gold depends upon all-binutils.
4553 * Makefile.in: Regenerate.
4554
4555 2008-04-04 Nick Clifton <nickc@redhat.com>
4556
4557 PR binutils/4334
4558 * configure.ac: Run ACX_CHECK_CYGWIN_CAT_WORKS for cygwin hosted
4559 builds.
4560 * configure: Regenerate.
4561
4562 2008-04-04 NightStrike <NightStrike@gmail.com>
4563
4564 PR other/35151
4565 * configure.ac: Combine rules for mingw32 and mingw64.
4566 * configure: Regenerate.
4567
4568 2008-03-27 Paolo Bonzini <bonzini@gnu.org>
4569
4570 * Makefile.tpl (PICFLAG, PICFLAG_FOR_TARGET): Remove.
4571 * Makefile.in: Regenerate.
4572
4573 2008-03-20 Ian Lance Taylor <iant@google.com>
4574
4575 * configure.ac: Add support for --enable-gold.
4576 * Makefile.def: Add gold as a directory like ld.
4577 * configure, Makefile.in: Regenerate.
4578
4579 2008-03-19 Andreas Krebbel <krebbel1@de.ibm.com>
4580
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.
4586
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
4601 masks added.
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.
4607
4608 2008-03-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4609
4610 * configure.ac: m4_include config/proginstall.m4.
4611 * configure: Regenerate.
4612
4613 2008-03-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4614
4615 Backport from upstream Libtool:
4616
4617 2007-10-12 Eric Blake <ebb9@byu.net>
4618
4619 Deal with Autoconf 2.62's semantic change in m4_append.
4620 * ltsugar.m4 (lt_append): Replace broken versions of
4621 m4_append.
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.
4626
4627 2008-03-13 David Edelsohn <edelsohn@gnu.org>
4628
4629 * config.rpath: Add AIX 6 support.
4630
4631 2008-03-13 Paolo Bonzini <bonzini@gnu.org>
4632
4633 * Makefile.def (stageprofile). Remove -fprofile-generate
4634 from stage_libcflags.
4635 * Makefile.in: Regenerate.
4636
4637 2008-03-13 Ben Elliston <bje@au.ibm.com>
4638
4639 * config.sub, config.guess: Update from upstream sources.
4640
4641 2008-03-06 Florian Krohm <fkrohm@us.ibm.com>
4642
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.
4648
4649 2008-02-20 Paolo Bonzini <bonzini@gnu.org>
4650
4651 PR bootstrap/32009
4652 PR bootstrap/32161
4653
4654 * configure.ac (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Compute here.
4655 * configure: Regenerate.
4656
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.
4672
4673 2008-02-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4674
4675 PR libgcj/33085
4676 * libtool.m4 (_LT_COMPILER_PIC) [ mingw, cygwin ] <GCJ>:
4677 Do not use -DDLL_EXPORT. Backport from upstream.
4678
4679 2008-02-14 Nick Clifton <nickc@redhat.com>
4680
4681 Import this patch from gcc:
4682 2008-01-24 David Edelsohn <edelsohn@gnu.org>
4683
4684 * libtool.m4: Backport AIX 6 support from ToT Libtool.
4685
4686 2008-02-02 Hans-Peter Nilsson <hp@axis.com>
4687
4688 * configure.ac: Enable fortran for cris-*-elf and crisv32-*-elf.
4689 * configure: Regenerate.
4690
4691 2008-01-31 Marc Gauthier <marc@tensilica.com>
4692
4693 * configure.ac (xtensa*-*-*): Recognize processor variants.
4694 * configure: Regenerate.
4695
4696 2008-01-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4697
4698 PR bootstrap/34922
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.
4703
4704 2008-01-23 Ben Elliston <bje@au.ibm.com>
4705
4706 * config.sub, config.guess: Update from upstream sources.
4707
4708 2008-01-08 Ben Elliston <bje@au.ibm.com>
4709
4710 * config.sub, config.guess: Update from upstream sources.
4711
4712 2007-12-19 Jeff Johnston <jjohnstn@redhat.com>
4713
4714 * COPYING.LIBGLOSS: Update default copyright.
4715
4716 2007-12-19 Jeff Johnston <jjohnstn@redhat.com>
4717
4718 * COPYING.NEWLIB: Update default copyright.
4719
4720 2007-12-17 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4721
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.
4725
4726 2007-12-13 Richard Sandiford <rsandifo@nildram.co.uk>
4727
4728 * Makefile.tpl (CFLAGS_FOR_TARGET): Add -g.
4729 (CXXFLAGS_FOR_TARGET): Add -O2 -g.
4730 * Makefile.in: Regenerate.
4731
4732 2007-12-10 Andreas Tobler <a.tobler@schweiz.org>
4733
4734 * configure.ac: Enable libjava for x86_64-*-darwin9.
4735 * configure: Regenerate.
4736
4737 2007-12-05 Ben Elliston <bje@au.ibm.com>
4738
4739 * config.sub, config.guess: Update from upstream sources.
4740
4741 2007-11-28 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4742
4743 * config-ml.in: Robustify against white space in absolute file
4744 names.
4745
4746 * config-ml.in (multi-clean): Substitute ${Makefile}.
4747 Remove superfluous ${Makefile} in list.
4748
4749 2007-10-23 Daniel Jacobowitz <dan@codesourcery.com>
4750
4751 * Makefile.def (dependencies): Make configure-gdb depend on
4752 all-intl.
4753 * Makefile.in: Regenerated.
4754
4755 2007-10-15 Patrick Mansfield <patmans@us.ibm.com>
4756
4757 * Makefile.def: To avoid problems running with parallel makes,
4758 build newlib before libgloss so that target specific header
4759 files are availble.
4760 * Makefile.in: Regenerate.
4761
4762 2007-10-11 Daniel Jacobowitz <dan@codesourcery.com>
4763
4764 * Makefile.def (dependencies): Add all-gdb -> all-libdecnumber.
4765 * Makefile.in: Regenerate.
4766
4767 2007-10-11 Daniel Jacobowitz <dan@codesourcery.com>
4768
4769 * src-release (GDB_SUPPORT_DIRS): Add libdecnumber.
4770 * libdecnumber: New directory, imported from GCC.
4771
4772 2007-10-08 Mike Frysinger <vapier@gentoo.org>
4773
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.
4779
4780 2007-10-01 Paolo Bonzini <bonzini@gnu.org>
4781
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.
4787 Subst them.
4788
4789 * configure: Regenerate.
4790 * Makefile.in: Regenerate.
4791
4792 2007-09-20 Richard Sandiford <rsandifo@nildram.co.uk>
4793
4794 * configure.ac (mipsisa*-*-elfoabi*): New stanza.
4795 * configure: Regenerate.
4796
4797 2007-09-19 Benjamin Kosnik <bkoz@redhat.com>
4798
4799 * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Move libgomp before
4800 libstdc++.
4801 * Makefile.def: Add libgomp config as a maybe dependency for libstdc++.
4802 * configure: Regenerate.
4803 * Makefile.in: Regenerate.
4804
4805 2007-09-17 Andreas Schwab <schwab@suse.de>
4806
4807 * configure.ac: Raise minimum makeinfo version to 4.6.
4808 * configure: Regenerate.
4809
4810 2007-09-15 Alan Modra <amodra@bigpond.net.au>
4811
4812 * configure.ac: Correct makeinfo version check.
4813 * configure: Regenerate.
4814
4815 2007-09-14 Richard Sandiford <richard@codesourcery.com>
4816
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.
4821
4822 2007-09-12 David Daney <ddaney@avtrex.com>
4823
4824 * configure.ac: Remove mips64*-*-linux* noconfigdirs section, thus
4825 enabling libgcj.
4826 * configure: Regenerate.
4827
4828 2007-09-12 Richard Guenther <rguenther@suse.de>
4829
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.
4834
4835 2007-09-11 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
4836
4837 PR target/33281
4838 * configure.ac: Use config/mh-mingw on mingw.
4839 * configure: Regenerate.
4840
4841 2007-09-10 Rask Ingemann Lambertsen <rask@sygehus.dk>
4842
4843 PR other/32154
4844 * configure.ac: For libgloss targets, point the linker to the linker
4845 script, startup code and simulator library.
4846 * configure: Regenerate.
4847
4848 2007-09-09 Andrew Haley <aph@redhat.com>
4849
4850 * configure.ac (noconfigdirs): Remove target-libffi and
4851 target-libjava.
4852
4853 2007-08-29 Nick Clifton <nickc@redhat.com>
4854
4855 * config.sub, config.guess: Update from upstream sources.
4856
4857 2007-08-21 Richard Guenther <rguenther@suse.de>
4858
4859 * configure.ac: Add types checking to stage1 checking flags.
4860 * configure: Regenerate.
4861
4862 2007-08-18 Paul Brook <paul@codesourcery.com>
4863 Joseph Myers <joseph@codesourcery.com>
4864
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.
4870
4871 2007-08-17 Richard Sandiford <richard@codesourcery.com>
4872 Nigel Stephens <nigel@mips.com>
4873
4874 * configure.ac (mips*-sde-elf*): New stanza. Use config/mt-sde
4875 as target_makefile_frag.
4876 * configure: Regenerate.
4877
4878 2007-08-16 Alexandre Oliva <aoliva@redhat.com>
4879
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.
4886
4887 2007-08-16 Alexandre Oliva <aoliva@redhat.com>
4888
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.
4895
4896 2007-08-13 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4897 Ben Elliston <bje@au.ibm.com>
4898
4899 * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS, baseargs): Pass
4900 --silent if $silent.
4901 * configure: Regenerate.
4902
4903 2007-08-12 Daniel Jacobowitz <dan@codesourcery.com>
4904
4905 * src-release (DEVO_SUPPORT): Add COPYING3 and COPYING3.LIB.
4906
4907 2007-07-17 Nick Clifton <nickc@redhat.com>
4908
4909 * COPYING3: New file. Contains version 3 of the GNU General
4910 Public License.
4911 * COPYING3.LIB: New file. Contains version 3 of the GNU
4912 Lesser General Public License.
4913
4914 2007-07-11 Bernd Schmidt <bernd.schmidt@analog.com>
4915
4916 * configure.ac: Fix my previous change to really match GCC.
4917 * configure: Regenerate.
4918
4919 2007-07-11 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4920
4921 * configure.ac: Rewrite 'configure --help' strings to look nicer.
4922 * configure: Regenerate.
4923
4924 2007-07-11 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4925
4926 * configure.ac: Add some missing m4 quotation.
4927 * configure: Regenerate.
4928
4929 2007-07-09 Kai Tietz <kai.tietz@onevision.com>
4930
4931 * Makefile.def: Add windmc tool to build.
4932 * Makefile.tpl: Likewise.
4933 * configure.ac: Likewise.
4934 * Makefile.in: Regenerate.
4935 * configure: Regenerate.
4936
4937 2007-07-05 H.J. Lu <hongjiu.lu@intel.com>
4938
4939 * lt~obsolete.m4: New. Import from 20070318 libtool.
4940
4941 2007-06-29 Bernd Schmidt <bernd.schmidt@analog.com>
4942
4943 * configure.ac: Don't add target-libmudflap to noconfigdirs for
4944 uclinux and linux-uclibc targets.
4945 * configure: Regenerate.
4946
4947 2007-06-28 DJ Delorie <dj@redhat.com>
4948
4949 * configure.ac (arm*-*-linux-gnueabi): Don't build libgloss if we're
4950 not building newlib.
4951 * configure: Regenerated.
4952
4953 2007-06-22 Daniel Jacobowitz <dan@codesourcery.com>
4954
4955 * src-release (DEVO_SUPPORT): Correct typos.
4956
4957 2007-06-18 Daniel Jacobowitz <dan@codesourcery.com>
4958
4959 * Makefile.def: Add dependency from configure-gdb to all-bfd.
4960 * Makefile.in: Regenerated.
4961
4962 2007-06-14 Paolo Bonzini <bonzini@gnu.org>
4963
4964 * Makefile.tpl (cleanstrap): Don't delete the toplevel Makefile.
4965 (distclean-stage[+id+]): Possibly delete stage_last.
4966 * Makefile.in: Regenerate.
4967
4968 2007-06-07 Ben Elliston <bje@au.ibm.com>
4969
4970 * config.sub, config.guess: Update from upstream sources.
4971
4972 2007-06-07 Ben Elliston <bje@au.ibm.com>
4973
4974 * Makefile.tpl: Fix spelling error.
4975 * Makefile.in: Regenerate.
4976
4977 2007-06-04 Paolo Bonzini <bonzini@gnu.org>
4978
4979 Sync with gcc:
4980 2007-05-30 Jakub Jelinek <jakub@redhat.com>
4981
4982 PR bootstrap/29382
4983 * configure.ac: Don't use -fkeep-inline-functions for GCC < 3.3.1.
4984 * configure: Rebuilt.
4985
4986 2007-06-01 Steve Ellcey <sje@cup.hp.com>
4987
4988 * libtool.m4 (LT_CMD_MAX_LEN): Try using getconf to set
4989 lt_cv_sys_max_cmd_len.
4990
4991 2007-05-31 Paolo Bonzini <bonzini@gnu.org>
4992
4993 * ltgcc.m4: Update from GCC.
4994
4995 2007-05-25 Andreas Tobler <a.tobler@schweiz.org>
4996
4997 * ltmain.sh: Fix Darwin verstring, remove ${wl}.
4998
4999 2007-05-24 Steve Ellcey <sje@cup.hp.com>
5000
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.
5006 * ltconfig: Remove.
5007 * ltcf-c.sh: Remove.
5008 * ltcf-cxx.sh: Remove.
5009 * ltcf-gcj.sh: Remove.
5010 * src-release: Update with new libtool file list.
5011
5012 2007-05-16 Paolo Bonzini <bonzini@gnu.org>
5013
5014 * Makefile.def (bootstrap_stage): Replace stage_make_flags with
5015 stage_cflags.
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.
5021
5022 2007-04-14 Steve Ellcey <sje@cup.hp.com>
5023
5024 * config-ml.in: Update from GCC.
5025
5026 2007-04-09 Daniel Jacobowitz <dan@codesourcery.com>
5027
5028 * src-release (do-proto-toplev): Process the support directories before
5029 the tool directory.
5030
5031 2007-03-21 Richard Sandiford <richard@codesourcery.com>
5032
5033 * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Fix m4 quoting
5034 of glob. Quote arguments with single quotes too.
5035 * configure: Regenerate.
5036
5037 2007-03-12 Brooks Moses <brooks.moses@codesourcery.com>
5038
5039 * Makefile.def (fixincludes): Remove unneeded "missing" lines.
5040 * Makefile.in: Regenerate
5041
5042 2007-03-07 Andreas Schwab <schwab@suse.de>
5043
5044 * configure: Regenerate.
5045
5046 2007-03-01 Brooks Moses <brooks.moses@codesourcery.com>
5047
5048 * configure.ac: Add "--with-pdfdir" configure option,
5049 which defines pdfdir variable.
5050 * Makefile.def (target=fixincludes): Add install-pdf to
5051 missing targets.
5052 (recursive_targets): Add install-pdf target.
5053 (flags_to_pass): Add pdfdir.
5054 * Makefile.tpl: Add pdfdir handling, add do-install-pdf
5055 target.
5056 * configure: Regenerate
5057 * Makefile.in: Regenerate
5058
5059 2007-02-28 Eric Christopher <echristo@apple.com>
5060
5061 Revert:
5062 2006-12-07 Mike Stump <mrs@apple.com>
5063
5064 * Makefile.def (dependencies): Add dependency for
5065 install-target-libssp and install-target-libgomp on
5066 install-gcc.
5067 * Makefile.in: Regenerate.
5068
5069 2007-02-27 Matt Kraai <kraai@ftbfs.org>
5070
5071 * configure: Regenerate.
5072 * configure.ac: Move statements after variable declarations.
5073
5074 2007-02-19 Joseph Myers <joseph@codesourcery.com>
5075
5076 * configure.ac: Adjust for loop syntax.
5077 * configure: Regenerate.
5078
5079 2007-02-18 Alexandre Oliva <aoliva@redhat.com>
5080
5081 * configure: Rebuilt.
5082
5083 2007-02-18 Alexandre Oliva <aoliva@redhat.com>
5084
5085 * configure.ac: Drop multiple occurrences of --enable-languages,
5086 and fix its quoting.
5087 * configure: Rebuilt.
5088
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>
5093
5094 * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Fix quoting.
5095 * configure: Regenerate.
5096
5097 2007-02-13 Daniel Jacobowitz <dan@codesourcery.com>
5098
5099 * configure.ac (target_libraries): Move libgcc before libiberty.
5100 * configure: Regenerated.
5101
5102 2007-02-13 Paolo Bonzini <bonzini@gnu.org>
5103
5104 * configure: Regenerate again?
5105
5106 2007-02-13 Paolo Bonzini <bonzini@gnu.org>
5107
5108 * configure: Reapply PR30748 fix which was lost in the previous commit.
5109
5110 2007-02-13 Daniel Jacobowitz <dan@codesourcery.com>
5111 Paolo Bonzini <bonzini@gnu.org>
5112
5113 PR bootstrap/30753
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.
5117
5118 2007-02-10 Paolo Bonzini <bonzini@gnu.org>
5119
5120 * configure: Regenerate.
5121
5122 2007-02-09 Daniel Jacobowitz <dan@codesourcery.com>
5123
5124 PR bootstrap/30748
5125 * configure.ac: Correct syntax for Solaris ksh.
5126 * configure: Regenerated.
5127
5128 2007-02-09 Paolo Bonzini <bonzini@gnu.org>
5129
5130 * Makefile.def: Sync with GCC.
5131 * Makefile.tpl: Sync with GCC.
5132 * Makefile.in: Regenerate.
5133 * configure: Regenerate.
5134
5135 2007-02-09 Daniel Jacobowitz <dan@codesourcery.com>
5136
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.
5145
5146 * Makefile.in: Regenerated.
5147 * configure: Regenerated with autoconf 2.59.
5148
5149 * src-release (DEVO_SUPPORT, do-proto-toplev): Expect configure.ac.
5150
5151 2007-02-08 Jeff Johnston <jjohnstn@redhat.com>
5152
5153 * COPYING.LIBGLOSS: Reformat default Red Hat
5154 license to fit within 80 columns.
5155 * COPYING.NEWLIB: Ditto.
5156
5157 2007-02-05 Dave Brolley <brolley@redhat.com>
5158
5159 * Contribute the following changes:
5160 2006-11-28 DJ Delorie <dj@redhat.com>
5161
5162 * configure.in: Fix typo for mep's target_makefile_frag.
5163 * configure: Regenerated.
5164
5165 2005-04-22 Richard Sandiford <rsandifo@redhat.com>
5166
5167 * configure.in (mep*): Add -mlibrary to FLAGS_FOR_TARGET.
5168 * configure: Regenerate.
5169
5170 2001-09-19 DJ Delorie <dj@redhat.com>
5171
5172 * configure.in (target_makefile_frag): use mt-mep
5173
5174 2001-06-12 Don Howard <dhoward@redhat.com>
5175
5176 * configure.in: Remove gdb from MeP skip list.
5177
5178 2001-04-05 DJ Delorie <dj@redhat.com>
5179
5180 * configure.in (noconfigdirs): Remove gcc from MeP skip list.
5181
5182 2001-03-20 Ben Elliston <bje@redhat.com>
5183
5184 * configure.in (noconfigdirs): Add gcc and gdb for MeP.
5185
5186 2001-03-19 Ben Elliston <bje@redhat.com>
5187
5188 * config.sub (mep, mep-*): Add.
5189
5190 2007-01-31 Andreas Schwab <schwab@suse.de>
5191
5192 * Makefile.tpl (LDFLAGS): Substitute it.
5193 * Makefile.in: Regenerate.
5194
5195 2007-01-11 Paolo Bonzini <bonzini@gnu.org>
5196
5197 * configure.in: Change == to = in test command.
5198 * configure: Regenerate.
5199
5200 2007-01-11 Paolo Bonzini <bonzini@gnu.org>
5201 Nick Clifton <nickc@redhat.com>
5202 Kaveh R. Ghazi <ghazi@caip.rutgets.edu>
5203
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.
5215
5216 2007-01-11 Matt Fago <fago@earthlink.net>
5217
5218 * configure.in: Try to link to functions only in mpfr 2.2.x
5219 to improve robustness of configure tests.
5220 * configure: Regenerate.
5221
5222 2007-01-08 Kai Tietz <kai.tietz@onevision.com>
5223
5224 * configure.in: Add support for an x86_64-mingw* target.
5225 * configure: Regenerate.
5226
5227 2007-01-05 Daniel Jacobowitz <dan@codesourcery.com>
5228
5229 * Makefile.tpl (all-target): Correct @if conditional for target
5230 modules.
5231 * configure.in: Omit libiberty if building only target libgcc.
5232 * configure, Makefile.in: Regenerated.
5233
5234 2007-01-04 Paolo Bonzini <bonzini@gnu.org>
5235
5236 * configure.in: Use DEV-PHASE to detect the default for --enable-werror.
5237 * configure: Regenerate.
5238
5239 2007-01-03 Daniel Jacobowitz <dan@codesourcery.com>
5240
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.
5249
5250 2006-12-29 Paolo Bonzini <bonzini@gnu.org>
5251
5252 Sync with gcc:
5253 2006-12-29 Paolo Bonzini <bonzini@gnu.org>
5254
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.
5259
5260 2006-12-29 Paolo Bonzini <bonzini@gnu.org>
5261
5262 * Makefile.tpl (GCC_STRAP_TARGETS, all-prebootstrap): Remove.
5263 * Makefile.in: Regenerate.
5264
5265 2006-12-29 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5266
5267 * configure.in: Warn that MPFR 2.2.0 is buggy.
5268 * configure: Regenerate.
5269
5270 2006-12-27 Ian Lance Taylor <iant@google.com>
5271
5272 * configure.in: When removing Makefiles to force a reconfigure, also
5273 remove prev-DIR*/Makefile.
5274 * configure: Regenerate.
5275
5276 2006-12-23 Kazu Hirata <kazu@codesourcery.com>
5277
5278 * config.bfd: Recognize fido.
5279
5280 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
5281
5282 Sync with gcc:
5283
5284 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
5285
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.
5290
5291 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
5292
5293 PR bootstrap/29544
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.
5302
5303 2006-12-03 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5304
5305 * configure.in: Update error message for missing GMP/MPFR.
5306
5307 * configure: Regenerate.
5308
5309 2006-12-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5310
5311 * configure.in: Update MPFR version in error message.
5312
5313 * configure: Regenerate.
5314
5315 2006-11-26 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5316
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.
5320
5321 * configure: Regenerate.
5322
5323 2006-12-12 Andreas Tobler <a.tobler@schweiz.org>
5324
5325 PR bootstrap/30134
5326 * configure.in: Correct x86 darwin support for libjava to powerpc
5327 and i?86 only.
5328 * configure: Regenerate.
5329
5330 2006-12-11 Alan Modra <amodra@bigpond.net.au>
5331
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.
5337
5338 2006-12-11 Ben Elliston <bje@au.ibm.com>
5339
5340 * config.sub, config.guess: Update from upstream sources.
5341
5342 2006-12-11 Ben Elliston <bje@au.ibm.com>
5343
5344 * configure.in: Sync with GCC (spu-*-*).
5345 * configure: Sync with GCC.
5346
5347 2006-12-07 Mike Stump <mrs@apple.com>
5348
5349 * Makefile.def (dependencies): Add dependency for
5350 install-target-libssp and install-target-libgomp on
5351 install-gcc.
5352 * Makefile.in: Regenerate.
5353
5354 2006-11-16 Paolo Bonzini <bonzini@gnu.org>
5355
5356 * Makefile.tpl (clean-target-libgcc): Test for gcc Makefile presence.
5357 (unstage): Test for stage_last presence.
5358
5359 PR bootstrap/29802
5360 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Add HOST_SUBDIR in STAGE_PREFIX.
5361 * Makefile.in: Regenerate.
5362
5363 2006-11-14 DJ Delorie <dj@redhat.com>
5364
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.
5369
5370 2006-11-08 Jie Zhang <jie.zhang@analog.com>
5371
5372 * configure.in: Remove target-libgloss from noconfigdirs for
5373 bfin-*-*.
5374 * configure: Regenerated.
5375
5376 2006-10-27 Jeff Johnston <jjohnstn@redhat.com>
5377
5378 * COPYING.NEWLIB: Add spu license.
5379 * COPYING.LIBGLOSS: Ditto.
5380
5381 2006-10-17 Brooks Moses <bmoses@stanford.edu>
5382
5383 * Makefile.def: Added pdf target handling.
5384 * Makefile.tpl: Added pdf target handling.
5385 * Makefile.in: Regenerated.
5386
5387 2006-10-11 Jeff Johnston <jjohnstn@redhat.com>
5388
5389 * COPYING.NEWLIB: Updated.
5390 * COPYING.LIBGLOSS: Ditto.
5391
5392 2006-09-27 Dave Brolley <brolley@redhat.com>
5393
5394 * configure.in (RUNTEST): Look for 'runtest' in the source tree by using
5395 $s instead of $r.
5396 * configure: Regenerated.
5397
5398 2006-09-26 Ben Elliston <bje@au.ibm.com>
5399
5400 * config.sub, config.guess: Update from upstream sources.
5401
5402 2006-09-20 Thiemo Seufer <ths@mips.com>
5403
5404 * configure.in: Remove redundant handling of mips*-dec-bsd*. Likewise
5405 for mipstx39-*-*. Disable libgloss for mips64*-*-linux*.
5406 * configure: Regenerate.
5407
5408 2006-08-30 Corinna Vinschen <corinna@vinschen.de>
5409
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.
5417
5418 2006-08-15 Thiemo Seufer <ths@mips.com>
5419 Nigel Stephens <nigel@mips.com>
5420 David Ung <davidu@mips.com>
5421
5422 * config.sub: Add support for sde as alias of mipsisa32-sde-elf.
5423
5424 2006-07-25 Paolo Bonzini <bonzini@gnu.org>
5425
5426 Sync from GCC:
5427 2006-07-04 Eric Botcazou <ebotcazou@libertysurf.fr>
5428
5429 PR bootstrap/18058
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.
5433
5434 2006-07-22 Daniel Jacobowitz <dan@codesourcery.com>
5435
5436 * configure.in: Allow mingw32 and cygwin targets to build cross-gdb.
5437 * configure: Regenerated.
5438
5439 2006-07-18 Paolo Bonzini <bonzini@gnu.org>
5440
5441 * Makefile.tpl (configure-stageN-MODULE): Pass --with-build-libsubdir
5442 for stages after the first.
5443
5444 2006-07-17 Jakub Jelinek <jakub@redhat.com>
5445
5446 * Makefile.def: Add dependencies for configure-opcodes
5447 on configure-intl and all-opcodes on all-intl.
5448 * Makefile.in: Regenerated.
5449
5450 2006-07-04 Peter O'Gorman <peter@pogma.com>
5451
5452 * ltconfig: chmod 644 before ranlib during install.
5453
5454 2006-07-03 Paolo Bonzini <bonzini@gnu.org>
5455
5456 * configure.in: Fix thinkos in previous check-in.
5457 * configure: Regenerate.
5458
5459 2006-07-03 Paolo Bonzini <bonzini@gnu.org>
5460
5461 Sync from gcc:
5462
5463 2007-07-03 Paolo Bonzini <bonzini@gnu.org>
5464
5465 PR other/27063
5466 * configure.in: Test subdir_requires and give an appropriate
5467 error message.
5468 * configure: Regenerate.
5469
5470 2006-06-16 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
5471
5472 PR target/27540
5473 * configure.in: Only enable libgomp on IRIX 6.
5474 * configure: Regenerate.
5475
5476 2006-06-20 David Ayers <d.ayers@inode.at>
5477
5478 PR bootstrap/28072
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.
5483
5484 2006-06-15 Mark Shinwell <shinwell@codesourcery.com>
5485
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.
5488
5489 2006-06-15 Paolo Bonzini <bonzini@gnu.org>
5490
5491 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Export CFLAGS and LDFLAGS
5492 too.
5493 * Makefile.in: Regenerate.
5494
5495 2006-06-13 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
5496
5497 Sync from gcc:
5498
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.
5502
5503 2006-06-13 David Ayers <d.ayers@inode.at>
5504
5505 Sync from gcc:
5506
5507 2006-06-12 David Ayers <d.ayers@inode.at>
5508
5509 PR bootstrap/27963
5510 PR target/19970
5511 * configure.in: Remove target-boehm-gc from noconfigdirs where
5512 ${libgcj} is specified.
5513 * configure: Regenerate.
5514
5515 2006-06-08 Jeff Johnston <jjohnstn@redhat.com>
5516
5517 Sync from gcc:
5518
5519 2005-01-12 David Edelsohn <edelsohn@gnu.org>
5520 Andreas Schwab <schwab@suse.de>
5521
5522 PR bootstrap/18033
5523 * config-ml.in: Eval option if surrounded by single quotes.
5524
5525 2006-06-07 Carlos O'Donell <carlos@codesourcery.com>
5526
5527 Sync from gcc:
5528
5529 2006-06-06 David Ayers <d.ayers@inode.at>
5530
5531 PR libobjc/13946
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}
5539 is specified.
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.
5543
5544 2006-06-05 Paolo Bonzini <bonzini@gnu.org>
5545
5546 PR 27674
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.
5552
5553 2006-05-20 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
5554 Andreas Tobler <a.tobler@schweiz.ch>
5555
5556 * configure.in: Enable libgcj for hppa*-hp-hpux11*.
5557 * configure: Rebuilt.
5558
5559 Revert
5560 2006-01-31 Richard Guenther <rguenther@suse.de>
5561 Paolo Bonzini <bonzini@gnu.org>
5562
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.
5568
5569 2006-06-05 Jeff Johnston <jjohnstn@redhat.com>
5570
5571 * config-ml.in: Alter CCASFLAGS to include special
5572 multilib options the same as is done for CFLAGS.
5573
5574 2006-05-31 Daniel Jacobowitz <dan@codesourcery.com>
5575
5576 * Makefile.def: Added dependencies from sim and gdb on intl, and
5577 added configure dependencies to everything with an all dependency
5578 on intl.
5579 * gettext.m4: Removed.
5580 * src-release (DEVO_SUPPORT): Don't mention gettext.m4.
5581 (GDB_SUPPORT_DIRS): Add intl.
5582 * Makefile.in: Regenerated.
5583
5584 2006-05-25 Daniel Jacobowitz <dan@codesourcery.com>
5585
5586 * src-release (DEVO_SUPPORT): Add config.rpath.
5587
5588 2006-05-25 Paolo Bonzini <bonzini@gnu.org>
5589
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.
5594
5595 2006-05-24 Mark Shinwell <shinwell@codesourcery.com>
5596
5597 * configure.in: Enable gprof for cross builds.
5598 * configure: Regenerate.
5599
5600 2006-05-17 Daniel Jacobowitz <dan@codesourcery.com>
5601
5602 * src-release (MAKEINFOFLAGS): Define.
5603 (do-proto-toplev): Pass MAKEINFOFLAGS to submakes.
5604
5605 2006-05-14 Ben Elliston <bje@au.ibm.com>
5606
5607 * config.sub, config.guess: Update from upstream sources.
5608
5609 2006-05-12 Ben Elliston <bje@au.ibm.com>
5610
5611 * config.sub, config.guess: Update from upstream sources.
5612
5613 2006-05-04 Steve Ellcey <sje@cup.hp.com>
5614
5615 * blt, iwidgets, mmalloc: Remove directories.
5616
5617 2006-05-01 DJ Delorie <dj@redhat.com>
5618
5619 * configure.in: Restore CFLAGS if GMP isn't present.
5620 * configure: Regenerate.
5621
5622 2006-04-18 DJ Delorie <dj@redhat.com>
5623
5624 * configure.in (m32c): Build libstdc++-v3. Pass flags to
5625 reference libgloss so that libssp can be built in a combined
5626 tree.
5627 * configure: Regenerate.
5628
5629 2006-04-10 Ben Elliston <bje@au.ibm.com>
5630
5631 * contrib: Remove directory.
5632
5633 2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
5634
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.
5641
5642 2006-03-31 Ben Elliston <bje@au.ibm.com>
5643
5644 PR binutils/1860
5645 * configure.in: Require makeinfo 4.4 or higher.
5646 * configure: Regenerate.
5647
5648 2006-03-14 Paolo Bonzini <bonzini@gnu.org>
5649
5650 * Makefile.in: Regenerate.
5651
5652 2006-03-14 Paolo Bonzini <bonzini@gnu.org>
5653
5654 Sync with gcc:
5655 2006-03-10 Aldy Hernandez <aldyh@redhat.com>
5656
5657 * configure.in: Handle --disable-<component> generically.
5658 * configure: Regenerate.
5659
5660 2006-02-21 Rafael Avila de Espindola <rafael.espindola@gmail.com>
5661
5662 * Makefile.tpl (BUILD_CONFIGDIRS): Remove.
5663 (TARGET_CONFIGDIRS): Remove.
5664 * configure.in: Remove AC_SUBST(target_configdirs).
5665 * Makefile.in, configure: Regenerated.
5666
5667
5668 2006-03-01 H.J. Lu <hongjiu.lu@intel.com>
5669
5670 PR libgcj/17311
5671 * ltmain.sh: Don't use "$finalize_rpath" for compile.
5672
5673 2006-02-20 Paolo Bonzini <bonzini@gnu.org>
5674
5675 PR bootstrap/25670
5676
5677 * Makefile.tpl ([+compare-target+]): Print explanation messages.
5678
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.
5684
5685 * Makefile.def (bootstrap stage 1): Pass LIBCFLAGS too.
5686 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Override LIBCFLAGS too.
5687
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.
5701
5702 * Makefile.in: Regenerate.
5703 * configure: Regenerate.
5704
5705 2006-02-14 Paolo Bonzini <bonzini@gnu.org>
5706
5707 Sync from gcc:
5708
5709 2006-01-31 Richard Guenther <rguenther@suse.de>
5710 Paolo Bonzini <bonzini@gnu.org>
5711
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.
5718
5719 2006-01-18 Richard Henderson <rth@redhat.com>
5720 Jakub Jelinek <jakub@redhat.com>
5721 Diego Novillo <dnovillo@redhat.com>
5722
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.
5728
5729 2006-02-14 Paolo Bonzini <bonzini@gnu.org>
5730 Andreas Schwab <schwab@suse.de>
5731
5732 * configure: Regenerate.
5733
5734 2006-01-16 Paolo Bonzini <bonzini@gnu.org>
5735
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.
5740
5741 2006-01-16 Nick Clifton <nickc@redhat.com>
5742
5743 * config.sub, config.guess: Sync from config repository.
5744
5745 2006-01-05 Alexandre Oliva <aoliva@redhat.com>
5746
5747 * Makefile.tpl (clean-stage[+id+]-[+prefix+][+module+]): Remove
5748 @ from continuation.
5749 * Makefile.in: Rebuilt.
5750
5751 2006-01-04 Paolo Bonzini <bonzini@gnu.org>
5752
5753 Sync from gcc:
5754
5755 2006-01-04 Paolo Bonzini <bonzini@gnu.org>
5756
5757 PR bootstrap/24252
5758
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.
5763
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.
5768
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.
5779
5780 * Makefile.in: Regenerate.
5781 * configure: Regenerate.
5782
5783 2006-01-02 Andreas Schwab <schwab@suse.de>
5784
5785 * configure.in: When reconfiguring remove Makefile in
5786 all stage directories.
5787 * configure: Regenerate.
5788
5789 2005-12-27 Leif Ekblad <leif@rdos.net>
5790
5791 * configure.in: Add support for RDOS target.
5792 * configure: Regenerate.
5793
5794 2005-12-27 Nick Clifton <nickc@redhat.com>
5795
5796 PR binutils/1990
5797 * libtool.m4: Synchronize with version in GCC sources.
5798
5799 2005-12-20 Paolo Bonzini <bonzini@gnu.org>
5800
5801 Revert Ada-related part of the previous change.
5802
5803 * Makefile.def (ADAFLAGS, BOOT_ADAFLAGS, ADAFLAGS_FOR_TARGET):
5804 Do not pass.
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.
5809
5810 2005-12-19 Paolo Bonzini <bonzini@gnu.org>
5811
5812 * configure.in: Select appropriate fragments for PowerPC/AIX.
5813 * configure: Regenerate.
5814
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.
5823
5824 2005-12-16 Jeff Johnston <jjohnstn@redhat.com>
5825
5826 * COPYING.NEWLIB: Update copyright year for default
5827 copyright.
5828
5829 2005-12-15 Paolo Bonzini <bonzini@gnu.org>
5830
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.
5834
5835 2005-12-14 Paolo Bonzini <bonzini@gnu.org>
5836
5837 * configure.in: Flip the top-level bootstrap switch.
5838 * configure: Regenerate.
5839
5840 Merge from gcc:
5841
5842 2005-12-14 Daniel Jacobowitz <dan@codesourcery.com>
5843
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.
5853 Correct @if/@endif.
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.
5859
5860 2005-12-12 Nathan Sidwell <nathan@codesourcery.com>
5861
5862 * config.sub: Replace ms1 arch with mt. Allow ms1 as alias.
5863 * configure.in: Replace ms1 arch with mt.
5864 * configure: Rebuilt.
5865
5866 2005-12-05 Paolo Bonzini <bonzini@gnu.org>
5867
5868 Sync with gcc:
5869
5870 2005-12-12 Nathan Sidwell <nathan@codesourcery.com>
5871
5872 * config.sub: Replace ms1 arch with mt. Allow ms1 as alias.
5873 * configure.in: Replace ms1 arch with mt.
5874 * configure: Rebuilt.
5875
5876 2005-12-05 Paolo Bonzini <bonzini@gnu.org>
5877
5878 Sync with gcc:
5879
5880 2005-12-05 Paolo Bonzini <bonzini@gnu.org>
5881
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.
5898
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.
5904
5905 2005-11-29 Ben Elliston <bje@au.ibm.com>
5906
5907 * Makefile.tpl (clean-target-libgcc): Invoke clean-target-libgcc
5908 from the gcc build directory.
5909 * Makefile.in: Regenerate.
5910
5911 2005-11-29 Ben Elliston <bje@au.ibm.com>
5912
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.
5918
5919 2005-11-21 Kean Johnston <jkj@sco.com>
5920
5921 * config.sub, config.guess: Sync from upstream sources.
5922
5923 2005-11-11 Daniel Jacobowitz <dan@codesourcery.com>
5924
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.
5930
5931 2005-10-22 Paolo Bonzini <bonzini@gnu.org>
5932
5933 PR bootstrap/24297
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.
5938
5939 2005-10-20 Eric Botcazou <ebotcazou@adacore.com>
5940
5941 PR bootstrap/18939
5942 * Makefile.def (gcc) <target>: Fix thinko.
5943 * Makefile.in: Regenerate.
5944
5945 2005-10-17 Bernd Schmidt <bernd.schmidt@analog.com>
5946
5947 * configure.in (bfin-*-*): Use test, not brackets, in if statement.
5948 * configure: Regenerate.
5949
5950 2005-10-09 Kazu Hirata <kazu@codesourcery.com>
5951
5952 * configure.in (arm-*-linux-gnueabi): Add to noconfigdirs
5953 target-libffi, target-qthreads, target-libjava, and
5954 targetlibobjc.
5955 * configure: Regenerate.
5956
5957 2005-10-06 Daniel Jacobowitz <dan@codesourcery.com>
5958
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.
5966
5967 2005-10-05 Paolo Bonzini <bonzini@gnu.org>
5968
5969 * Makefile.tpl (all) [gcc-no-bootstrap]: Make prebootstrap packages
5970 before other host packages.
5971
5972 2005-10-05 Paolo Bonzini <bonzini@gnu.org>
5973
5974 PR bootstrap/22340
5975
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.
5989
5990 * configure: Regenerate.
5991 * Makefile.in: Regenerate.
5992
5993 2005-10-04 James E Wilson <wilson@specifix.com>
5994
5995 * Makefile.def (lang_env_dependencies): Add libmudflap.
5996 * Makefile.in: Regenerate.
5997
5998 2005-10-03 Catherine Moore <clm@cm00re.com>
5999
6000 * configure.in (bfin-*-*): Support bfin.
6001 * configure: Regenerated.
6002
6003 2005-09-30 H.J. Lu <hongjiu.lu@intel.com>
6004
6005 * configure.in (*-*-darwin*): Build bfd, binutils and opcodes.
6006 * configure: Regenerated.
6007
6008 2005-09-28 Geoffrey Keating <geoffk@apple.com>
6009
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
6018 STRIP_FOR_TARGET.
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.
6023
6024 2005-09-19 David Edelsohn <edelsohn@gnu.org>
6025
6026 * configure.in (powerpc-*-aix*): Add target-libssp to noconfigdirs.
6027 (rs6000-*-aix*): Same.
6028 * configure: Regenerate.
6029
6030 2005-09-14 Francois-Xavier Coudert <coudert@clipper.ens.fr>
6031
6032 * configure.in: Recognize f95 in the --enable-languages option,
6033 and substitute it for fortran, issuing a warning.
6034 * configure: Regenerate.
6035
6036 2005-09-07 Ben Elliston <bje@au.ibm.com>
6037
6038 Import from Autoconf sources:
6039
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.
6043
6044 2005-08-30 Phil Edwards <phil@codesourcery.com>
6045
6046 * configure.in (*-*-vxworks*): Add target-libstdc++-v3 to noconfigdirs.
6047 * configure: Regenerated.
6048
6049 2005-08-20 Richard Earnshaw <richard.earnshaw@arm.com>
6050
6051 * Makefile.def (libssp): Add to lang_env_dependencies.
6052 * Makefile.in: Regenerate.
6053
6054 2005-08-17 Christian Groessler <chris@groessler.org>
6055
6056 * Makefile.tpl: (USUAL_CC_FOR_TARGET): Add missing trailing slash.
6057 * Makefile.in: Regenerate.
6058
6059 2005-08-12 Paolo Bonzini <bonzini@gnu.org>
6060
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.
6065
6066 2005-08-08 Paolo Bonzini <bonzini@gnu.org>
6067
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
6076 build directory.
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.
6086
6087 2005-07-27 Mark Mitchell <mark@codesourcery.com>
6088
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.
6092
6093 2005-07-26 Mark Mitchell <mark@codesourcery.com>
6094
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.
6101
6102 2005-07-24 Paolo Bonzini <bonzini@gnu.org>
6103
6104 * Makefile.tpl: Wrap install between unstage and stage
6105 * Makefile.in: Regenerate.
6106
6107 2005-07-16 Kelley Cook <kcook@gcc.gnu.org>
6108
6109 * all files: Update FSF address.
6110
6111 2005-07-14 Jim Blandy <jimb@redhat.com>
6112
6113 * configure.in: Add cases for Renesas m32c.
6114 * configure: Regenerated.
6115
6116 2005-07-14 Kelley Cook <kcook@gcc.gnu.org>
6117
6118 * COPYING, compile, config-ml.in, config.guess,
6119 config.sub, install-sh, missing, mkinstalldirs,
6120 symlink-tree, ylwrap: Sync from upstream sources.
6121
6122 2005-07-13 Eric Christopher <echristo@redhat.com>
6123
6124 * configure.in: Add toplevel noconfigdir support for tpf.
6125 * configure: Regenerate.
6126
6127 2005-07-11 Jakub Jelinek <jakub@redhat.com>
6128
6129 * Makefile.def (target_modules): Add libssp.
6130 * configure.in (target_libraries): Add target-libssp.
6131 * configure: Rebuilt.
6132 * Makefile.in: Rebuilt.
6133
6134 2005-07-11 Paolo Bonzini <bonzini@gnu.org>
6135
6136 PR ada/22340
6137
6138 * Makefile.def: Sync with gcc.
6139 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Fix pasto.
6140 * Makefile.in: Regenerate.
6141
6142 2005-07-07 Andreas Schwab <schwab@suse.de>
6143
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.
6147
6148 2005-07-07 Kazu Hirata <kazu@codesourcery.com>
6149
6150 * configure.in: Add --enable-libssp and --disable-libssp.
6151 * configure: Regenerate with autoconf-2.13.
6152
6153 2005-07-06 Geoffrey Keating <geoffk@apple.com>
6154
6155 * configure.in: Don't build sim or rda when targetting darwin.
6156 * configure: Regenerate.
6157
6158 2005-07-04 Ben Elliston <bje@gnu.org>
6159
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.
6167
6168 2005-06-30 Ben Elliston <bje@gnu.org>
6169
6170 * setup.com (mpw): Remove unused directive.
6171
6172 2005-06-22 Paolo Bonzini <bonzini@gnu.org>
6173
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.
6180
6181 2005-06-13 Zack Weinberg <zack@codesourcery.com>
6182
6183 * depcomp: Update from automake CVS. Add 'ia64hp' stanza.
6184 In 'cpp' stanza, support '#line' as well as '# '.
6185
6186 2005-06-07 Hans-Peter Nilsson <hp@axis.com>
6187
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.
6196
6197 2005-06-04 Tobias Schl"uter <tobias.schlueter@physik.uni-muenchen.de>
6198
6199 * configure.in: Fix typo in handling of --with-mpfr-dir.
6200 * configure: Regenerate.
6201
6202 2005-06-02 Jim Blandy <jimb@redhat.com>
6203
6204 * config.sub: Add cases for the Renesas m32c. (This patch has been
6205 accepted into the master sources.)
6206
6207 2005-06-02 Aldy Hernandez <aldyh@redhat.com>
6208 Michael Snyder <msnyder@redhat.com>
6209 Stan Cox <scox@redhat.com>
6210
6211 * configure.in: Set noconfigdirs for ms1.
6212
6213 * configure: Regenerate.
6214
6215 2005-05-25 Paolo Bonzini <bonzini@gnu.org>
6216
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.
6221
6222 2005-05-20 Paolo Bonzini <bonzini@gnu.org>
6223
6224 * Makefile.def (configure-gcc): Depend on binutils having been built.
6225 (all-gcc): No need to do it here.
6226 * Makefile.in: Regenerate.
6227
6228 2005-05-19 Paul Brook <paul@codesourcery.com>
6229
6230 * configure.in: Rewrite misleading error message when requested
6231 language cannot be built.
6232 * configure: Regenerate.
6233
6234 2005-05-15 Daniel Jacobowitz <dan@codesourcery.com>
6235
6236 * ylwrap: Import from Automake 1.9.5.
6237
6238 2005-05-04 Mike Stump <mrs@apple.com>
6239
6240 * configure.in: Always pass --target to target configures as
6241 otherwise rebuilds that do --recheck will fail.
6242 * configure: Rebuilt.
6243
6244 2005-05-04 Paolo Bonzini <bonzini@gnu.org>
6245
6246 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Rename from
6247 STAGE_HOST_EXPORTS.
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.
6252
6253 2005-04-29 Paolo Bonzini <bonzini@gnu.org>
6254
6255 Sync from gcc:
6256
6257 2005-04-22 Bernd Schmidt <bernd.schmidt@analog.com>
6258
6259 * config.sub: Update from master copy.
6260
6261 2005-04-19 Hans-Peter Nilsson <hp@axis.com>
6262
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.
6268
6269 2005-04-06 Paolo Bonzini <bonzini@gnu.org>
6270
6271 * Makefile.tpl (BUILD_CONFIGARGS): Include --with-build-subdir.
6272 (TARGET_CONFIGARGS): Include --with-target-subdir.
6273 (configure, all): New macros. Use them throughout.
6274
6275 2005-04-05 Paolo Bonzini <bonzini@gnu.org>
6276
6277 * Makefile.tpl: Sync with gcc.
6278 * Makefile.in: Regenerate.
6279
6280 2005-03-30 J"orn Rennecke <joern.rennecke@st.com>
6281
6282 * config/mh-mingw32: Delete.
6283 * configure.in: Don't use it.
6284 * configure: Regenerate.
6285
6286 2005-03-31 Paolo Bonzini <bonzini@gnu.org>
6287
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.
6298
6299 2005-03-25 Paolo Bonzini <bonzini@gnu.org>
6300
6301 * configure.in (RPATH_ENVVAR): Set to DYLD_LIBRARY_PATH on Darwin.
6302 * configure: Regenerate.
6303
6304 2005-03-21 Zack Weinberg <zack@codesourcery.com>
6305
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.
6315
6316 2005-03-16 Manfred Hollstein <manfred.h@gmx.net>
6317 Andrew Pinski <pinskia@physics.uc.edu>
6318
6319 * Makefile.tpl (check-[+module+]): Fix shell statement inside if ... fi.
6320 * Makefile.in: Regenerate.
6321
6322 2005-03-01 Alexandre Oliva <aoliva@redhat.com>
6323
6324 PR libgcj/20160
6325 * ltmain.sh: Avoid creating archives with components that have
6326 duplicate basenames.
6327
6328 2005-02-28 Andrew Pinski <pinskia@physics.uc.edu>
6329
6330 PR bootstrap/20250
6331 * Makefile.tpl (HOST target installs): Fix copy and pasto, use install
6332 instead of check.
6333 * Makefile.in: Regenerate.
6334
6335 2005-02-28 Paolo Bonzini <bonzini@gnu.org>
6336
6337 Sync from gcc.
6338
6339 2005-02-28 Paolo Bonzini <bonzini@gnu.org>
6340
6341 PR bootstrap/17383
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.
6355
6356 * Makefile.in: Regenerate.
6357 * configure: Regenerate.
6358
6359 Merged from libada-gnattools-branch:
6360 2004-11-28 Nathanael Nerode <neroden@gcc.gnu.org>
6361
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
6365 is disabled.
6366 * configure: Regenerate.
6367
6368 2005-02-23 Nick Clifton <nickc@redhat.com>
6369
6370 * configure: Regenerate.
6371
6372 2005-02-22 Paul Schlie <schlie@comcast.net>
6373
6374 * configure.in: Allow darwin targeted ports to build tk, itcl and
6375 libgui.
6376
6377 2005-02-21 Eric Botcazou <ebotcazou@libertysurf.fr>
6378
6379 PR libgcj/10353
6380 * configure.in (noconfigdirs) <sparc-*-solaris2.[0-6]>: Add libgcj.
6381 * configure: Regenerate.
6382
6383 2005-02-08 Andrew Cagney <cagney@gnu.org>
6384
6385 * MAINTAINERS: Delete reference to dejagnu/ and mmalloc/ from the
6386 gdb/ section. Update GDB's URL.
6387
6388 2005-01-31 Andrew Cagney <cagney@gnu.org>
6389
6390 * gettext.m4: Only set ENABLE_NLS when gettext is present.
6391
6392 2005-01-29 Hans-Peter Nilsson <hp@axis.com>
6393
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.
6398
6399 2005-01-27 Andrew Cagney <cagney@gnu.org>
6400
6401 * gettext.m4: Don't use NONE as a default for CATOBJEXT.
6402
6403 2005-01-24 Andrew Cagney <cagney@gnu.org>
6404
6405 * gettext.m4: Only fall back to ../intl/ when it's present.
6406
6407 2005-01-17 Kelley Cook <kcook@gcc.gnu.org>
6408
6409 * install-sh, config.sub: Import from upstream.
6410
6411 2005-01-17 Kelley Cook <kcook@gcc.gnu.org>
6412
6413 PR bootstrap/18222
6414 * Makefile.def: Pass CPPFLAGS_FOR_TARGET.
6415 * Makefile.tpl: Define target CPPFLAGS on CPPFLAGS_FOR_TARGET.
6416 * Makefile.in: Regenerate.
6417
6418 2005-01-03 Paolo Bonzini <bonzini@gnu.org>
6419
6420 Revert 2004-12-28 Makefile changes, a better fix will be
6421 applied to mainline and src after GCC 4.0 branches.
6422
6423 2004-12-28 Paolo Bonzini <bonzini@gnu.org>
6424
6425 PR bootstrap/17383
6426
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.
6434
6435 2004-12-25 David Edelsohn <edelsohn@gnu.org>
6436
6437 Revert 2004-12-08 Makefile changes.
6438
6439 2004-12-16 Andrew Stubbs <andrew.stubbs@st.com>
6440
6441 * configure.in (sh64-*-*): Reenable gprof.
6442 * configure: Regenerate.
6443
6444 2004-12-09 Jim Blandy <jimb@redhat.com>
6445
6446 * MAINTAINERS: List 'depcomp' as part of automake.
6447
6448 2004-12-08 David Edelsohn <edelsohn@gnu.org>
6449
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.
6454
6455 2004-12-07 Matt Kraai <kraai@ftbfs.org>
6456
6457 * Makefile.tpl: Generate normal dependencies if the LHS module is
6458 not bootstrapped.
6459 * Makefile.in: Regenerate.
6460
6461 2004-12-03 Richard Sandiford <rsandifo@redhat.com>
6462
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.
6466
6467 2004-12-03 Richard Sandiford <rsandifo@redhat.com>
6468
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.
6474
6475 2004-12-02 Eric Christopher <echristo@redhat.com>
6476
6477 * Makefile.tpl (clean-target-libgcc): Add stmp-dirs to list
6478 of things to remove.
6479 * Makefile.in: Regenerate.
6480
6481 2004-12-02 Richard Sandiford <rsandifo@redhat.com>
6482
6483 * configure.in: Clear gcc_version_trigger if the file doesn't exist.
6484 * configure: Regenerate.
6485
6486 2004-12-02 Richard Sandiford <rsandifo@redhat.com>
6487
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.
6491
6492 2004-11-26 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
6493
6494 * configure.in (hppa*-*-linux*): Don't add libgcj to noconfigdirs.
6495 (hppa*64*-*-*): Delete incorrect comment.
6496 * configure: Rebuilt.
6497
6498 2004-11-15 Kelley Cook <kcook@gcc.gnu.org>
6499
6500 * install-sh, compile: Import from automake.
6501
6502 2004-11-15 Kelley Cook <kcook@gcc.gnu.org>
6503
6504 * config.guess, config.sub: Import from savannnah.
6505
6506 2004-11-12 Mike Stump <mrs@apple.com>
6507
6508 * Makefile.def: Add html support.
6509 * Makefile.tpl: Likewise.
6510 * Makefile.in: Regenerate.
6511
6512 2004-11-11 Geoffrey Keating <geoffk@apple.com>
6513
6514 PR 18423
6515 * configure.in: Remove all instances of build-fixincludes from
6516 noconfigdirs.
6517 (build_configargs): Supply --target to subdirectories.
6518 * configure: Regenerate.
6519
6520 * Makefile.def: Make gcc install depend on fixincludes install.
6521 * Makefile.in: Regenerate.
6522
6523 2004-11-08 Hans-Peter Nilsson <hp@bitrange.com>
6524
6525 * configure.in (noconfigdirs) [mmix-*-*]: Disable
6526 target-libgfortran.
6527 * configure: Regenerate.
6528
6529 2004-11-07 David Edelsohn <edelsohn@gnu.org>
6530
6531 * config-ml.in: Pass FCFLAGS for multilibs, handle GFORTRAN
6532 like CC.
6533
6534 2004-11-05 Paolo Bonzini <bonzini@gnu.org>
6535
6536 * Makefile.def (host fixincludes): Specify missing targets.
6537 * Makefile.in: Regenerate.
6538
6539 2004-11-04 H.J. Lu <hongjiu.lu@intel.com>
6540
6541 PR other/17783
6542 * configure.in: Set up LD_LIBRARY_PATH by default for gcc.
6543 * configure: Regenerated.
6544
6545 2004-11-04 Daniel Jacobowitz <dan@debian.org>
6546
6547 * configure.in (arm-*-oabi*, thumb-*-oabi*): Remove.
6548 * configure: Regenerated.
6549
6550 2004-10-28 Eric B. Weddington <ericw@evcohs.com>
6551
6552 PR target/18151
6553 * configure.in (case ${target}): Do not build fixincludes for avr.
6554 * configure: Regenerated.
6555
6556 2004-10-26 Paolo Bonzini <bonzini@gnu.org>
6557
6558 * configure.in (case ${target}): Do not build fixincludes
6559 on platforms where it is not used.
6560 * configure: Regenerated.
6561
6562 2004-10-23 Daniel Jacobowitz <dan@debian.org>
6563
6564 * configure.in: Use an absolute path to install-sh.
6565 * configure: Regenerated.
6566
6567 2004-10-19 Andrew Cagney <cagney@gnu.org>
6568
6569 * src-release (do-djunpack, do-md5sum): Install the generated file
6570 directly into the proto-toplev/ directory.
6571
6572 2004-10-19 Andrew Cagney <cagney@gnu.org>
6573
6574 * src-release (GDB_SUPPORT_DIRS): Remove utils and intl.
6575
6576 2004-10-12 Kelley Cook <kcook@gcc.gnu.org>
6577
6578 * configure.in (*-*-cygwin*): Supress warning if newlib not present.
6579 * configure: Regenerate.
6580
6581 2004-10-06 Paolo Bonzini <bonzini@gnu.org>
6582
6583 Fix wrong conflict resolution in:
6584
6585 2004-08-16 Paolo Bonzini <bonzini@gnu.org>
6586
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.
6591
6592 2004-10-05 Ulrich Weigand <uweigand@de.ibm.com>
6593
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.
6599
6600 2004-09-30 Tomer Levi <Tomer.Levi@nsc.com>
6601
6602 * configure.in: Enable target-libgloss for crx-*-*.
6603 * configure: Regenerate.
6604
6605 2004-09-24 Michael Roth <mroth@nessie.de>
6606
6607 * configure.in (--without-headers): Add missing double quotes.
6608 * configure: Regenerate.
6609
6610 2004-09-24 Kelley Cook <kcook@gcc.gnu.org>
6611
6612 * ylwrap: Revert to previous version.
6613
6614 2004-09-23 H.J. Lu <hongjiu.lu@intel.com>
6615
6616 PR bootstrap/17369
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.
6622
6623 * configure.in (SET_GCC_LIB_PATH): Set and substitute.
6624 * configure: Regenerated.
6625
6626 2004-09-23 Kelley Cook <kcook@gcc.gnu.org>
6627
6628 * config.guess: New upstream version
6629 * compile, depcomp, install-sh, ylwrap: Likewise.
6630
6631 2004-09-19 Roger Sayle <roger@eyesopen.com>
6632
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.
6637
6638 2004-09-15 Andrew Pinski <pinskia@physics.uc.edu>
6639
6640 PR target/11572
6641 * configure.in (*-*-darwin*): Renable libobjc.
6642 * configure: Regenerate.
6643
6644 2004-09-09 Daniel Berlin <dberlin@dberlin.org>
6645
6646 * Makefile.def: Remove libbanshee.
6647 * Makefile.tpl: Ditto.
6648 * configure.in: Ditto.
6649 * Makefile.in: Regen.
6650 * configure: Ditto.
6651
6652 2004-09-07 Paolo Bonzini <bonzini@gnu.org>
6653
6654 * missing: Import latest version from master repository.
6655
6656 2004-09-04 Nick Clifton <nickc@redhat.com>
6657
6658 * config.sub: Import latest version from master repository.
6659 * config.guess: Likewise.
6660 This includes these changes:
6661
6662 2004-08-27 Hans-Peter Nilsson <hp@axis.com>
6663
6664 * config.sub: Handle crisv32, alias etraxfs.
6665 * config.guess (crisv32:Linux:*:*): Handle.
6666
6667 2004-08-13 Brad Smith <brad@comstyle.com>
6668
6669 * config.guess (*:OpenBSD:*:*): Remove defunct MIPS machines.
6670 (sgi:OpenBSD:*:*): Emit mips64, not mipseb.
6671
6672 2004-08-11 Paul Eggert <eggert@cs.ucla.edu>
6673
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
6682
6683 2004-07-19 Ben Elliston <bje@gnu.org>
6684
6685 * config.guess (S7501:*:4.0:3.0): Handle NCR System V UNIX machine.
6686
6687 2004-06-24 Ben Elliston <bje@gnu.org>
6688
6689 * config.guess: Update copyright years.
6690 * config.sub: Likewise.
6691
6692 2004-06-22 Robert Millan <robertmh@gnu.org>
6693
6694 * config.guess (*:FreeBSD:*:*): Remove check for glibc (unneeded
6695 since GNU/kFreeBSD systems match *:GNU/*:*:* instead).
6696
6697 2004-06-22 Stanley F. Quayle <stan@stanq.com>
6698
6699 * config.guess (*:*VMS:*:*): New entry. Replaces
6700 Alpha:OpenVMS:*. Recognize and advertise all VMS flavors as dec
6701 manufacturer.
6702
6703 2004-06-22 Ben Elliston <bje@gnu.org>
6704
6705 * config.guess: Cray fixes from Wendy Palm <wendyp@cray.com>.
6706 * config.sub: Likewise.
6707
6708 2004-06-22 Ben Elliston <bje@gnu.org>
6709
6710 Reported by Hans-Peter Nilsson <hp@bitrange.com>:
6711 * config.sub: Correctly handle mmix-knuth and mmix-knuth-mmixware.
6712
6713 2004-06-11 Ben Elliston <bje@gnu.org>
6714
6715 * config.guess (pegasos:OpenBSD:*:*): Remove.
6716
6717 2004-06-11 Ben Elliston <bje@gnu.org>
6718
6719 From Wouter Verhelst <wouter@grep.be>:
6720 * config.guess (M68*:*:R3V[5678]:*): Detect R3V8.
6721
6722 2004-06-11 Ben Elliston <bje@gnu.org>
6723
6724 * config.guess (luna88k:OpenBSD:*:*): New.
6725
6726 2004-03-12 Kazuhiro Inaoka <inaoka.kazuhiro@renesas.com>
6727
6728 * config.guess (m32r*:Linux:*:*): New case.
6729 * config.sub: Handle m32rle.
6730
6731 2004-03-12 Ben Elliston <bje@wasabisystems.com>
6732
6733 From Jens Petersen <petersen@redhat.com>:
6734 * config.sub: Handle sparcv8.
6735
6736 2004-03-03 Ben Elliston <bje@wasabisystems.com>
6737
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).
6742
6743 2004-02-23 Tal Agmon <Tal.Agmon@nsc.com>
6744
6745 * config.sub: Add support for National Semiconductor CRX target.
6746
6747 2004-09-03 Jan Beulich <jbeulich@novell.com>
6748
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.
6754
6755 2004-09-01 Paolo Bonzini <bonzini@gnu.org>
6756
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.
6766
6767 Sync from gcc (moving the Makefile.in change to Makefile.tpl):
6768
6769 2004-08-31 Robert Bowdidge <bowdidge@apple.com>
6770
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
6775 -mdynamic-no-pic
6776
6777 2004-08-31 Paolo Bonzini <bonzini@gnu.org>
6778
6779 * Makefile.tpl: Move BOOT_CFLAGS above host makefile fragment
6780 include.
6781 * configure.in: Fix indentation.
6782 * configure: Regenerate.
6783
6784 2004-08-31 Paolo Bonzini <bonzini@gnu.org>
6785
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.
6792
6793 2004-08-30 Paolo Bonzini <bonzini@gnu.org>
6794
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.
6803
6804 * configure.in: Only warn when bootstrapping but
6805 build != host or build != target. Support lean bootstraps.
6806 * configure: Regenerate.
6807
6808 Sync from gcc:
6809 2004-08-26 Phil Edwards <phil@codesourcery.com>
6810
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.
6814
6815 2004-08-25 Phil Edwards <phil@codesourcery.com>
6816
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.
6820
6821 2004-08-17 Paolo Bonzini <bonzini@gnu.org>
6822
6823 * Makefile.in: Regenerate.
6824 * configure: Regenerate.
6825
6826 * Makefile.def (bootstrap-stage): Rename extra_*_flags to
6827 stage_*_flags.
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.
6835
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
6840 with BUILD_SUBDIR.
6841 (BISON): Update for recent Bisons.
6842 (YACC): Fix typo.
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.
6851
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.
6857
6858 2004-08-17 Robert Millan <robertmh@gnu.org>
6859
6860 * configure.in: In noconfigdirs check, match GNU/k*BSD with GNU/Linux
6861 (instead of FreeBSD).
6862 * configure: Regenerate.
6863
6864 2004-08-12 Nathanael Nerode <neroden@gcc.gnu.org>
6865
6866 * Makefile.def, configure.in, src-release: Remove useless, bogus
6867 references to tix.
6868 * Makefile.in, configure: Regenerate.
6869
6870 * src-release: Stop distributing mmalloc with gdb (which doesn't
6871 use it).
6872 * Makefile.def: GDB doesn't depend on mmalloc anymore.
6873 * Makefile.in: Regenerate.
6874
6875 2004-08-09 Mark Mitchell <mark@codesourcery.com>
6876
6877 * configure.in (arm*-*-eabi*): New target.
6878 * configure: Regenerate.
6879
6880 2004-08-01 Robert Millan <robertmh@gnu.org>
6881
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.
6885
6886 2004-08-06 Paolo Bonzini <bonzini@gnu.org>
6887
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.
6896
6897 2004-08-03 Mark Mitchell <mark@codesourcery.com>
6898
6899 * configure.in (arm*-*-symbianelf*): Add ${libgcj} and
6900 target-libiberty to noconfigdirs.
6901
6902 2004-08-03 Paul Brook <paul@codesourcery.com>
6903
6904 * configure.in: Check for MPFR as well as GMP.
6905 * configure: Regenerate.
6906
6907 2004-08-03 Paolo Bonzini <bonzini@gnu.org>
6908
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.
6919
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.
6926
6927 2004-07-19 Robert Millan <robertmh@gnu.org>
6928
6929 Synced from gcc:
6930
6931 2004-04-26 Robert Millan <robertmh@gnu.org>
6932
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.
6939
6940 2004-07-12 Paolo Bonzini <bonzini@gnu.org>
6941
6942 * configure.in: Add noconfigdirs for crx-*-*.
6943 * configure: Regenerate.
6944
6945 2004-07-12 Paolo Bonzini <bonzini@gnu.org>
6946
6947 Synced from gcc:
6948
6949 2004-07-09 Loren J. Rittle <ljrittle@acm.org>
6950
6951 * configure.in: Build libmudflap by default on FreeBSD.
6952 * configure: Regenerated.
6953
6954 2004-07-09 Mark Mitchell <mark@codesourcery.com>
6955
6956 * configure.in: Do not build libmudflap by default on non-GNU/Linux
6957 systems.
6958 * configure: Regenerated.
6959
6960 2004-07-08 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
6961
6962 PR target/16344
6963 * Makefile.tpl (profiledbootstrap): Build runtime libraries with
6964 feedback based compiler.
6965 * Makefile.in: Rebuilt.
6966
6967 2004-07-05 Phil Edwards <phil@codesourcery.com>
6968
6969 * configure.in: Do not prepend $srcdir to /dev/null in
6970 makefile fragments.
6971 * configure: Regenerate.
6972
6973 2004-07-08 Alexandre Oliva <aoliva@redhat.com>
6974
6975 * Makefile.def (host_modules): Set bootstrap=true for flex.
6976 * Makefile.tpl (all-gcc): Depend on texinfo and flex.
6977 * Makefile.in: Rebuilt.
6978
6979 2004-07-01 Paolo Bonzini <bonzini@gnu.org>
6980
6981 * Makefile.def (build_modules): Add bison, byacc, flex,
6982 m4, texinfo.
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.
6992 (all-build): New.
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.
7002
7003 2004-06-22 Paolo Bonzini <bonzini@gnu.org>
7004
7005 * Makefile.tpl (HOST_EXPORTS): Fix pasto.
7006 * Makefile.in: Regenerate.
7007
7008 2004-06-22 Paolo Bonzini <bonzini@gnu.org>
7009
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.
7025
7026 2004-06-21 Christopher Faylor <cgf@alum.bu.edu>
7027
7028 * configure.in: Check for srcdir/winsup rather than build directory
7029 winsup.
7030 * configure: Regenerate.
7031
7032 2004-06-17 Corinna Vinschen <vinschen@redhat.com>
7033
7034 * configure.in: Don't build Cygwin native newlib if winsup
7035 directory is missing. Emit warning instead.
7036 * configure: Regenerate.
7037
7038 2004-06-09 Paolo Bonzini <bonzini@gnu.org>
7039
7040 * Makefile.tpl (touch-stage[+id+]): New.
7041 (restage[+prev+]): Depend on touch-stage[+id+].
7042
7043 * Makefile.tpl (RECURSE_FLAGS_TO_PASS): New.
7044 Use it throughout.
7045
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.
7060
7061 2004-06-03 Paolo Bonzini <bonzini@gnu.org>
7062
7063 * configure.in: Fix --enable-bootstrap breakage introduced in trees
7064 without gcc.
7065 * configure: Regenerate.
7066
7067 2004-06-01 Paolo Bonzini <bonzini@gnu.org>
7068
7069 * Makefile.tpl: Fix typo.
7070 * Makefile.in: Regenerate.
7071
7072 2004-06-01 Paolo Bonzini <bonzini@gnu.org>
7073
7074 * configure.in: Remove new- prefix from toplevel
7075 bootstrap targets.
7076 * configure: Regenerate.
7077
7078 2004-06-01 Paolo Bonzini <bonzini@gnu.org>
7079
7080 Merge this patch from the gcc tree:
7081
7082 2004-05-30 Andreas Jaeger <aj@suse.de>
7083 Jim Wilson <wilson@specifixinc.com>
7084
7085 * config-ml.in: Pass FFLAGS and ADAFLAGS for multilibs, handle F77
7086 like CC.
7087
7088 2004-06-01 Paolo Bonzini <bonzini@gnu.org>
7089
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.
7098
7099 * Makefile.def: Remove new- prefix from toplevel
7100 bootstrap targets.
7101 * Makefile.tpl: Likewise.
7102
7103 * Makefile.def: Add bootstrap_stage 4. Add bootstrap2
7104 target.
7105
7106 * Makefile.tpl (Toplevel bootstrap): Pass $(BASE_FLAGS_TO_PASS)
7107 $(RECURSE_FLAGS) to recursive invocation of make.
7108
7109 * Makefile.in: Regenerate.
7110 * configure: Regenerate.
7111
7112 2004-05-27 Daniel Jacobowitz <dan@debian.org>
7113
7114 * configure.in: Fix sed invocation for GFORTRAN_FOR_TARGET.
7115 * configure: Regenerate.
7116
7117 2004-05-25 Daniel Jacobowitz <drow@false.org>
7118
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
7122 targets.
7123 * Makefile.in: Regenerate.
7124
7125 2005-05-24 Paolo Bonzini <bonzini@gnu.org>
7126
7127 * configure.in: Test the ability to symlink directories.
7128 * configure: Regenerate.
7129
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
7143 targets.
7144
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.
7159
7160 2004-05-23 Paolo Bonzini <bonzini@gnu.org>
7161
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.
7167
7168 2004-05-17 Zack Weinberg <zack@codesourcery.com>
7169
7170 * Makefile.def, Makefile.tpl, configure.in: Remove all mention
7171 of libf2c.
7172 * configure, Makefile.in: Regenerate.
7173
7174 2004-05-13 Diego Novillo <dnovillo@redhat.com>
7175
7176 Merge from tree-ssa-20020619-branch.
7177
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.
7198
7199 2004-04-28 Paolo Bonzini <bonzini@gnu.org>
7200
7201 * config/acx.m4: Fix fastcompare support for new-bootstrap.
7202 * configure: Regenerate.
7203
7204 2004-04-27 Paolo Bonzini <bonzini@gnu.org>
7205
7206 Revert:
7207 2004-04-26 Paolo Bonzini <bonzini@gnu.org>
7208
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.
7213
7214 2004-04-26 Paolo Bonzini <bonzini@gnu.org>
7215
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.
7220
7221 2004-04-26 Paolo Bonzini <bonzini@gnu.org>
7222
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.
7227
7228 2004-04-26 Paolo Bonzini <bonzini@gnu.org>
7229
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.
7235
7236 2004-04-23 Paolo Bonzini <bonzini@gnu.org>
7237
7238 * Makefile.tpl (all-stage1-gcc, all-stage2-gcc, all-stage3-gcc):
7239 Always relocate gcc and prev-gcc to the original names, even
7240 if the build fails.
7241 (new-cleanstrap, new-restage1, new-restage2, new-restage3):
7242 New targets.
7243
7244 2004-04-19 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
7245
7246 * configure.in (mips*-*-irix5*): Enable ld.
7247 * configure: Regenerate.
7248
7249 2004-04-15 James E Wilson <wilson@specifixinc.com>
7250
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.
7255
7256 2004-04-09 Nathanael Nerode <neroden@gcc.gnu.org>
7257
7258 PR bootstrap/14871
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
7263 to do that.
7264 * Makefile.in: Regenerate.
7265 * configure: Regenerate.
7266
7267 2004-04-06 Nathanael Nerode <neroden@gcc.gnu.org>
7268
7269 PR bootstrap/14760
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
7273 only one space.
7274 * configure: Regenerate.
7275
7276 2004-04-06 David Edelsohn <edelsohn@gnu.org>
7277
7278 * configure.in (powerpc-*-aix*): Remove target-libada from noconfigdirs.
7279 (rs6000-*-aix*): Same.
7280 * configure: Regenerate.
7281
7282 2004-03-25 Stan Shebs <shebs@apple.com>
7283
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.
7289
7290 2004-03-24 Nathanael Nerode <neroden@gcc.gnu.org>
7291
7292 * Makefile.tpl (top level bootstrap support): Remove now-unneeded
7293 STRICT_WARN, WARN_CFLAGS flags passed down to make.
7294 * Makefile.in: Regenerate.
7295
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.
7302
7303 2004-03-23 Nathanael Nerode <neroden@gcc.gnu.org>
7304
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
7308 to make.
7309 * Makefile.in: Regenerate.
7310
7311 * Makefile.tpl (new-bootstrap): Fix typo.
7312 * Makefile.in: Regenerate.
7313
7314 2004-03-22 Nathanael Nerode <neroden@gcc.gnu.org>
7315
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.
7321
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
7325 of stage 1.
7326 * Makefile.in: Regenerate.
7327 * configure.in: Comma-separate stage 1 language list for top
7328 level bootstrap.
7329 * configure: Regenerate.
7330
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.
7335
7336 2004-03-17 Paolo Bonzini <bonzini@gnu.org>
7337
7338 * configure.in: Remove symbolic link section.
7339 * configure: Regenerate.
7340 * Makefile.tpl (links): Remove.
7341 * Makefile.in: Regenerate.
7342
7343 2004-03-15 Paolo Bonzini <bonzini@gnu.org>
7344 Nathanael Nerode <neroden@gcc.gnu.org>
7345
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.
7350
7351 2004-03-15 Nathanael Nerode <neroden@gcc.gnu.org>
7352
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.
7357
7358 2004-03-12 Eric Botcazou <ebotcazou@gcc.gnu.org>
7359 Paolo Bonzini <bonzini@gnu.org>
7360
7361 PR bootstrap/14522
7362 * configure.in: Cope with shells that do not support unquoted ^
7363 * configure: Regenerate.
7364
7365 2004-03-11 Eric Botcazou <ebotcazou@gcc.gnu.org>
7366 Paolo Bonzini <bonzini@gnu.org>
7367
7368 PR bootstrap/14522
7369 * configure.in: Cope with shell that do not support nesting
7370 quotes inside quoted backquote substitutions.
7371 * configure: Regenerate.
7372
7373 2004-03-10 Andrew Pinski <pinskia@physics.uc.edu>
7374
7375 PR bootstrap/14522
7376 * configure.in: Fix escaping of $.
7377 * configure: Regenerate.
7378
7379 2004-03-11 Nathanael Nerode <neroden@gcc.gnu.org>
7380
7381 * configure: Regenerate.
7382
7383 2004-03-08 Paolo Bonzini <bonzini@gnu.org>
7384
7385 PR ada/14131
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.
7391
7392 2004-03-01 Richard Sandiford <rsandifo@redhat.com>
7393
7394 * configure.in (mips64*-*-linux*): Override mips*-*-linux* case
7395 and disable libgcj.
7396 * configure: Regenerated.
7397
7398 2004-02-28 Nathanael Nerode <neroden@gcc.gnu.org>
7399
7400 PR bootstrap/7087
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).
7405
7406 2004-02-28 Andrew Cagney <cagney@redhat.com>
7407
7408 * src-release (CVS_NAMES): Define.
7409 (do-tar, do-tar): Prune $(CVS_NAMES).
7410
7411 2004-02-23 Andrew Cagney <cagney@redhat.com>
7412
7413 * texinfo/texinfo.tex: Update from version 2003-02-03.16 to
7414 2004-02-19.09.
7415
7416 2004-02-19 Nathanael Nerode <neroden@gcc.gnu.org>
7417
7418 PR bootstrap/11932
7419 * mkinstalldirs, install-sh: Import from automake CVS HEAD.
7420
7421 2004-02-19 Andrew Cagney <cagney@redhat.com>
7422
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.
7425
7426 2004-02-11 David Edelsohn <edelsohn@gnu.org>
7427
7428 * configure.in (powerpc-*-aix*): Add target-libada to noconfigdirs.
7429 (rs6000-*-aix*): Same.
7430 * configure: Regenerate.
7431
7432 2004-02-11 Kelley Cook <kcook@gcc.gnu.org>
7433
7434 * configure.in (host): Add in missing $noconfigdirs to defines.
7435 * configure: Regenerate.
7436
7437 2004-02-10 Arnaud Charlet <charlet@act-europe.fr>,
7438 Nathanael Nerode <neroden@gcc.gnu.org>
7439
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.
7445
7446 2004-02-05 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
7447
7448 * configure.in: Don't pass --with-stabs on IRIX 5 either.
7449 * configure: Regenerate.
7450
7451 2004-02-02 Jeff Johnston <jjohnstn@redhat.com>
7452
7453 * COPYING.NEWLIB: Update Red Hat license to 2004.
7454
7455 2004-01-23 DJ Delorie <dj@redhat.com>
7456
7457 * Makefile.def (target_modules) [libiberty]: Don't stage.
7458 * Makefile.in: Rebuilt.
7459
7460 2004-01-23 Jeff Johnston <jjohnstn@redhat.com>
7461
7462 * COPYING.NEWLIB: Update to include copyrights for new
7463 iconv code.
7464
7465 2004-01-15 Andrew Cagney <cagney@redhat.com>
7466
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.
7471
7472 2004-01-14 Loren J. Rittle <ljrittle@acm.org>
7473
7474 * Makefile.def (target_modules) [libtermcap, libiberty, zlib]: Stage.
7475 * Makefile.tpl (configure-target-[+module+]): Support stage.
7476 * Makefile.in: Rebuilt.
7477
7478 2003-01-14 Maciej W. Rozycki <macro@ds2.pg.gda.pl>
7479
7480 * gettext.m4: Quote names of macros to be defined by AC_DEFUN
7481 throughout.
7482
7483 2004-01-04 Nathanael Nerode <neroden@gcc.gnu.org>
7484
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.
7489
7490 * configure.in: Don't share a cache file for host dirs.
7491 * configure: Regenerate.
7492
7493 * config-ml.in: Don't mess with the cache file.
7494
7495 2004-01-03 Nathanael Nerode <neroden@gcc.gnu.org>
7496
7497 * Makefile.tpl: Make GCC use a separate config.cache.
7498 * Makefile.in: Regenerate.
7499
7500 PR bootstrap/11932, PR bootstrap/11933
7501 (I don't know if it will fix either of them, but it relates
7502 to them.)
7503 * configure.in: Don't use shared config.cache for target
7504 directories.
7505 * configure: Regenerate.
7506
7507 2003-12-31 Roger Sayle <roger@eyesopen.com>
7508
7509 * configure.in (ia64*-*-hpux*): Disable building java libraries.
7510 * configure: Regenerated.
7511
7512 2003-12-21 Bernardo Innocenti <bernie@develer.com>
7513
7514 * configure.in (*-*-uclinux): Exclude newlib, libgloss and rda.
7515 * configure: Regenerated.
7516
7517 2003-12-19 Nathanael Nerode <neroden@gcc.gnu.org>
7518
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.
7525
7526 2003-12-08 Thomas Fitzsimmons <fitzsim@redhat.com>
7527
7528 * configure.in (raw_libstdcxx_flags): Remove the leading space.
7529 * configure: Regenerate.
7530
7531 2003-11-27 Jeff Johnston <jjohnstn@redhat.com>
7532
7533 * COPYING.NEWLIB: Add license info for long long routines added to
7534 stdlib.
7535
7536 2003-11-14 Arnaud Charlet <charlet@act-europe.fr>
7537
7538 * Makefile.tpl (EXTRA_GCC_FLAGS): Pass BOOT_ADAFLAGS.
7539 * Makefile.in: Regenerate.
7540
7541 2003-10-20 Phil Edwards <phil@codesourcery.com>
7542
7543 * configure.in (*-*-vxworks): Add target-libiberty to noconfdirs.
7544 * configure: Regenerate.
7545
7546 2003-10-13 Nathanael Nerode <neroden@gcc.gnu.org>
7547
7548 * Makefile.tpl: Make GCC_FLAGS_TO_PASS a superset of
7549 HOST_FLAGS_TO_PASS.
7550 * Makefile.in: Regenerate.
7551
7552 2003-10-05 Mohan Embar <gnustuff@thisiscool.com>
7553
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
7558
7559 2003-10-03 H.J. Lu <hongjiu.lu@intel.com>
7560
7561 * ltconfig (sys_lib_search_path_spec): Fix a typo for HPUX.
7562
7563 2003-10-01 Phil Edwards <pme@gcc.gnu.org>
7564
7565 * config-ml.in: Use ac_configure_args directly instead of
7566 ml_arguments. Only set ml_norecursion if --no[-]recursion is
7567 actually seen.
7568
7569 2003-10-01 Eric Botcazou <ebotcazou@libertysurf.fr>
7570
7571 * config-ml.in: Propagate INSTALL variables.
7572
7573 2003-09-21 Daniel Jacobowitz <drow@mvista.com>
7574
7575 * configure.in: Pass a computed --program-transform-name
7576 to subconfigures.
7577 * configure: Regenerated.
7578
7579 2003-09-20 Nathanael Nerode <neroden@gcc.gnu.org>
7580
7581 * Makefile.tpl: Don't pass down obsolete ENQUIRE variable.
7582 * Makefile.in: Regenerate.
7583
7584 * Makefile.tpl: Don't pass (unused) DLLTOOL or WINDRES to gcc.
7585 * Makefile.in: Regenerate.
7586
7587 2003-09-17 Daniel Jacobowitz <drow@mvista.com>
7588
7589 * configure.in (TOPLEVEL_CONFIGURE_ARGUMENTS, baseargs): Fix
7590 quoting.
7591 * configure: Regenerated.
7592
7593 2003-09-12 Michael Chastain <mec@shout.net>
7594
7595 Fix PR gdb/857.
7596 * src-release (do-proto-topleve): Remove junk files
7597 intl/config.cache, intl/config.status,
7598 intl/config.h, intl/stamp-h.
7599
7600 2003-09-14 Andrew Cagney <cagney@redhat.com>
7601
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.
7605
7606 2003-09-04 DJ Delorie <dj@redhat.com>
7607
7608 * configure: Regenerate.
7609
7610 2003-09-04 Robert Millan <robertmh@gnu.org>
7611
7612 * configure.in: Match GNU/KFreeBSD with new kfreebsd*-gnu triplet.
7613
7614 2003-09-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
7615
7616 * configure.in: Ensure arguments to sed are properly spaced.
7617 * configure: Regenerate.
7618
7619 2003-08-28 Daniel Jacobowitz <drow@mvista.com>
7620
7621 Merge from gcc:
7622 2003-07-20 Phil Edwards <pme@gcc.gnu.org>
7623 * install-sh: Update to newer upstream versions (associated with
7624 aclocal 1.7).
7625 * missing: Likewise, plus $1Help2man -> $1 typo fix.
7626
7627 2003-08-27 Daniel Jacobowitz <drow@mvista.com>
7628
7629 * configure.in: Set RAW_CXX_FOR_TARGET if unset.
7630 * configure: Regenerated.
7631
7632 2003-08-23 Phil Edwards <pme@gcc.gnu.org>
7633
7634 * configure.in: Use newline instead of semicolon when assuming
7635 shell arguments in a for loop.
7636 * configure: Regenerated.
7637
7638 2003-08-20 Geoffrey Keating <geoffk@apple.com>
7639
7640 PR 8180
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.
7644
7645 * configure.in (TOPLEVEL_CONFIGURE_ARGUMENTS): Quote properly for
7646 make, shell, etc.
7647 (baseargs): Likewise.
7648 * configure: Regenerate.
7649
7650 2003-08-19 Geoffrey Keating <geoffk@apple.com>
7651
7652 * configure.in: Disable libgcj for darwin not on powerpc.
7653 * configure: Rebuild.
7654
7655 2003-08-15 Michael Chastain <mec@shout.net>
7656
7657 * src-release (do-proto-toplev): Remove junk files
7658 dejagnu/example/calc/config.status,
7659 dejagnu/example/calc/config.log.
7660
7661 2003-08-14 Alexandre Duret-Lutz <adl@gnu.org>
7662
7663 * config-ml.in, symlink-tree: Add license.
7664
7665 2003-08-01 Nathanael Nerode <neroden@gcc.gnu.org>
7666
7667 Merge from gcc:
7668
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.
7673
7674 2003-07-31 Geoffrey Keating <geoffk@apple.com>
7675 * Makefile.tpl (libsubdir): Use gcc instead of gcc-lib.
7676 * Makefile.in: Update.
7677
7678 2003-08-01 Andrew Cagney <cagney@redhat.com>
7679
7680 * configure.in (noconfigdirs): Do not add GDB when m32r-*-*.
7681 * configure: Ditto.
7682
7683 2003-07-30 Andreas Tobler <a.tobler@schweiz.ch>
7684
7685 * configure.in: Enable libgcj for darwin.
7686 * configure: Rebuild.
7687
7688 2003-07-29 Nathanael Nerode <neroden@gcc.gnu.org>
7689
7690 * mkinstalldirs: Import autoconf 2.57 / automake 1.7 version.
7691
7692 2003-07-27 Nathanael Nerode <neroden@gcc.gnu.org>
7693
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.
7699
7700 2003-07-22 Alexandre Oliva <aoliva@redhat.com>
7701
7702 * Makefile.tpl (all-make): Depend on intl.
7703 * Makefile.in: Rebuilt.
7704
7705 2003-07-16 Nathanael Nerode <neroden@gcc.gnu.org>
7706
7707 * config.if: Remove unused libc_interface determination.
7708
7709 2003-07-14 Nathanael Nerode <neroden@gcc.gnu.org>
7710
7711 * Makefile.in: Regenerate, correctly this time.
7712
7713 2003-07-13 Nathanael Nerode <neroden@gcc.gnu.org>
7714
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.
7720
7721 2003-07-10 Alexandre Oliva <aoliva@redhat.com>
7722
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.
7729
7730 2003-07-09 Bob Wilson <bob.wilson@acm.org>
7731
7732 * configure.in: Add ${libgcj} to noconfigdirs for xtensa-*-* targets.
7733 * configure: Regenerate.
7734
7735 2003-07-06 H.J. Lu <hongjiu.lu@intel.com>
7736
7737 * config-ml.in: Replace PWD with PWD_COMMAND.
7738 * Makefile.tpl: Likewise.
7739 * Makefile.in: Regenerated.
7740
7741 2003-06-27 Nathanael Nerode <neroden@gcc.gnu.org>
7742
7743 * configure.in: Clean up config-lang.in handling. Delete
7744 useless assignment to "subdirs".
7745 * configure: Regenerate.
7746
7747 2003-06-26 Nathanael Nerode <neroden@gcc.gnu.org>
7748
7749 * configure.in: Rename 'target_libs' to 'target_libraries'.
7750 Remove useless reference to 'target_libs'.
7751 * configure: Regenerate.
7752
7753 2003-06-23 Keith Seitz <kseitz@sources.redhat.com>
7754
7755 * Makefile.tpl: Add maybe-configure-itcl to configure-gdb.
7756 * Makefile.in: Regenerate.
7757
7758 2003-06-23 Nathanael Nerode <neroden@gcc.gnu.org>
7759
7760 * Makefile.def: Introduce flags_to_pass.
7761 * Makefile.tpl: Generate BASE_FLAGS_TO_PASS using it.
7762 * Makefile.in: Regenerate.
7763
7764 2003-06-23 Hans-Peter Nilsson <hp@bitrange.com>
7765
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.
7771
7772 2003-06-17 Benjamin Kosnik <bkoz@redhat.com>
7773
7774 * configure.in: Update testsuite_flags to new location.
7775 * configure. Regenerate.
7776
7777 2003-06-18 Nathanael Nerode <neroden@gcc.gnu.org>
7778
7779 * Makefile.tpl: Remove BUILD_CC stuff.
7780 * Makefile.in: Regenerate.
7781
7782 2003-06-14 H.J. Lu <hongjiu.lu@intel.com>
7783
7784 * config.guess: Update to 2003-06-12 version.
7785 * config.sub: Update to 2003-06-13 version.
7786
7787 2003-06-12 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
7788
7789 * MAINTAINERS: Add myself as MIPS co-maintainer.
7790
7791 2003-06-12 H.J. Lu <hongjiu.lu@intel.com>
7792
7793 * config.guess: Update to 2003-06-06 version.
7794 * config.sub: Update to 2003-06-06 version.
7795
7796 2003-06-11 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
7797
7798 * configure.in: Don't pass --with-stabs for mips*-sgi-irix6*o32.
7799 * configure. Regenerate.
7800
7801 2003-06-10 Nathanael Nerode <neroden@gcc.gnu.org>
7802
7803 * configure.in: Disable serial configure by default.
7804 * configure: Regenerate.
7805 * Makefile.tpl: Abolish .NOTPARALLEL.
7806 * Makefile.in: Regenerate.
7807
7808 * Makefile.tpl: Replace {build,host,target}_canonical by
7809 {build,host,target}.
7810 * Makefile.in: Regenerate.
7811
7812 * Makefile.tpl: Fix stupid pasto.
7813 * Makefile.in: Regenerate.
7814
7815 2003-06-09 Nathanael Nerode <neroden@gcc.gnu.org>
7816
7817 * Makefile.tpl: Remove bogus conditional.
7818 * Makefile.in: Regenerate.
7819
7820 2003-06-03 Nathanael Nerode <neroden@gcc.gnu.org>
7821
7822 * Makefile.tpl: Make 'recursive targets' using autogen rather
7823 than shell loop. Remove duplicate 'clean' targets and false
7824 comments.
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.
7831
7832 * Makefile.tpl: Rename [+target+] to [+make_target+].
7833 * Makefile.def: Rename 'target' to 'make_target'.
7834
7835 2003-05-30 Nick Clifton <nickc@redhat.com>
7836
7837 * README-maintainer-mode: Update URL for locating blessed config
7838 tools.
7839
7840 2003-05-29 Robert Millan <rmh@debian.org>
7841
7842 * ltconfig: Import this patch and modify for use with current
7843 version of ltconfig:
7844
7845 2003-05-21 Bruno Haible <bruno@clisp.org>
7846
7847 * libtool.m4 (AC_LIBTOOL_SYS_DYNAMIC_LINKER): Add support for
7848 GNU/FreeBSD.
7849
7850 2003-05-28 DJ Delorie <dj@redhat.com>
7851
7852 * Makefile.tpl: Make maybe-check-gcc .PHONY.
7853 * Makefile.in: Regenerate.
7854
7855 2003-05-28 Jeff Johnston <jjohnstn@redhat.com>
7856
7857 * COPYING.NEWLIB: Add license info for newlib/libc/sys/linux/stdlib.
7858
7859 2003-05-21 DJ Delorie <dj@redhat.com>
7860
7861 * Makefile.tpl (configure-target-libiberty): Depend only on gcc, not
7862 newlib or libgloss.
7863 * Makefile.in: Regenerate.
7864
7865 2003-05-21 DJ Delorie <dj@redhat.com>
7866
7867 * Makefile.tpl: Add missing empty maybe-check-gcc target.
7868 * Makefile.in: Regenerate.
7869
7870 2003-05-20 Maciej W. Rozycki <macro@ds2.pg.gda.pl>
7871
7872 * configure.in: Use curly braces in the definition of tooldir.
7873 * configure: Regenerate.
7874
7875 2003-05-19 Nathanael Nerode <neroden@gcc.gnu.org>
7876
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.
7882
7883 2003-05-14 Kelley Cook <kelleycook@wideopenwest.com>
7884
7885 * configure.in: Accept i[3456789]86 for machine type.
7886 * configure: Regenerate.
7887
7888 2003-05-18 Nathanael Nerode <neroden@gcc.gnu.org>
7889
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.
7895
7896 2003-05-16 Andreas Schwab <schwab@suse.de>
7897
7898 * Makefile.tpl (install-opcodes): Define.
7899 * Makefile.in: Rebuild.
7900
7901 2003-05-13 Andreas Jaeger <aj@suse.de>
7902
7903 * config.guess: Update to 2003-05-09 version.
7904 * config.sub: Update to 2003-05-09 version.
7905
7906 2003-05-13 Michael Eager <eager@mvista.com>
7907
7908 * configure.in: Correct sed script so that options in quotes are not
7909 deleted.
7910 * configure: Rebuild.
7911
7912 2003-05-12 Corinna Vinschen <corinna@vinschen.de>
7913
7914 * configure.in (FLAGS_FOR_TARGET): Remove $$s/newlib/libc/sys/cygwin
7915 and $$s/newlib/libc/sys/cygwin32 include paths.
7916 * configure: Ditto.
7917
7918 2003-05-05 H.J. Lu <hjl@gnu.org>
7919
7920 * config-ml.in: Restored from gcc repository.
7921
7922 2003-05-02 Chris Demetriou <cgd@broadcom.com>
7923
7924 * Makefile.tpl: Require "makeinfo" from texinfo 4.2 or later.
7925 * Makefile.in: Regenerate.
7926
7927 2003-04-27 Daniel Jacobowitz <drow@mvista.com>
7928
7929 * src-release (DEVO_SUPPORT): Add src-release, Makefile.tpl,
7930 and Makefile.def.
7931
7932 2003-04-27 Daniel Jacobowitz <drow@mvista.com>
7933
7934 * Makefile.tpl: Clean $(BUILD_SUBDIR).
7935 * Makefile.in: Regenerated.
7936
7937 2003-04-18 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
7938
7939 * Makefile.tpl (MAKEINFOFLAGS): Default to --split-size=5000000.
7940 * Makefile.in: Regenerate.
7941
7942 2003-04-18 Jakub Jelinek <jakub@redhat.com>
7943
7944 * configure.in (powerpc64*-*-linux*): Remove.
7945 * configure: Rebuilt.
7946
7947 2003-04-17 Phil Edwards <pme@gcc.gnu.org>
7948
7949 * Makefile.tpl (GCC_STRAP_TARGETS): New variable containing all the
7950 previous bootstrap targets, plus bubblestrap, quickstrap, cleanstrap,
7951 and restrap.
7952 * Makefile.in: Regenerate.
7953
7954 2003-04-16 Richard Earnshaw <rearnsha@arm.com>
7955
7956 * configure.in (arm-*-netbsdelf*): Enable building java libraries.
7957 * configure: Regenerated.
7958
7959 2003-04-11 Alexandre Oliva <aoliva@redhat.com>
7960
7961 * libtool.m4 (lt_cv_deplibs_check_method): Use pass_all on mips*.
7962 * */configure: Rebuilt.
7963
7964 2003-03-14 Nathanael Nerode <neroden@gcc.gnu.org>
7965
7966 * Makefile.tpl: Move .NOEXPORT, MAKEOVERRIDES back down.
7967 * Makefile.in: Regenerate.
7968
7969 2003-03-14 Michael Chastain <mec@shout.net>
7970
7971 * Makefile.in: Regenerate with correct Makefile.def.
7972
7973 2003-03-12 Nathanael Nerode <neroden@gcc.gnu.org>
7974
7975 * Makefile.tpl: Move .NOEXPORT, MAKEOVERRIDES up. Delete unused
7976 Make macro.
7977 * Makefile.in: Regenerate.
7978 * configure.in: Clean up gxx_include_dir logic.
7979 * configure: Regenerate.
7980
7981 2003-03-09 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
7982
7983 * configure.in (gxx_include_dir): Fix typo.
7984 * configure: Regenerated.
7985
7986 2003-03-06 Andrew Cagney <cagney@redhat.com>
7987
7988 * texinfo/texinfo.tex: Import version 2003-02-03.16.
7989
7990 2003-03-04 Daniel Jacobowitz <drow@mvista.com>
7991
7992 * configure.in: Include $(build_tooldir)/sys-include in
7993 FLAGS_FOR_TARGET.
7994 * configure: Regenerated.
7995
7996 2003-03-04 Nathanael Nerode <neroden@gcc.gnu.org>
7997
7998 * Makefile.tpl: Reindent.
7999 * Makefile.in: Regenerate.
8000 * configure.in: Reindent. Don't set unused variables.
8001 * configure: Regenerate.
8002
8003 * Makefile.tpl: Always pass down RANLIB.
8004 * Makefile.in: Regenerate.
8005
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
8010 noconfigdirs.
8011 * configure: Regenerate.
8012
8013 * configure.in: Replace ${libstdcxx_version} by its value.
8014 Remove reference to mh-dgux.
8015 * configure: Regenerate.
8016
8017 2003-02-28 Nathanael Nerode <neroden@gcc.gnu.org>
8018
8019 * Makefile.tpl: Rearrange.
8020 * Makefile.in: Regenerate.
8021
8022 2003-02-25 Nick Clifton <nickc@redhat.com>
8023
8024 * configure: Remove site-file supprot - it is obsolete.
8025
8026 2003-02-24 Uwe Stieber <uwe@wwws.de>
8027
8028 * configure.in: Add support for kaOS as cross build target system.
8029 * configure: Regenerated.
8030
8031 2003-02-20 Sean McNeil <sean@blue.mcneil.com>
8032
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.
8037
8038 2003-02-19 Alexandre Oliva <aoliva@redhat.com>
8039
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
8043 auto-detecting it.
8044
8045 2003-02-19 Alexandre Oliva <aoliva@redhat.com>
8046
8047 * ltcf-cxx.sh: Replace $linker_flags with $compiler_flags wherever
8048 it is used as argument to $CC.
8049 * ltcf-gcj.sh: Likewise.
8050
8051 2003-02-19 Alexandre Oliva <aoliva@redhat.com>
8052
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.
8058
8059 2003-02-19 Andrew Cagney <ac131313@redhat.com>
8060
8061 * configure: Regenerate using autoconf 2.13.
8062
8063 2003-02-19 Alan Modra <amodra@bigpond.net.au>
8064
8065 * config.guess: Import latest version.
8066 * config.sub: Import latest version.
8067
8068 2003-02-18 Jason Merrill <jason@redhat.com>
8069
8070 * Makefile.tpl (check-c++): Allow parallelism.
8071
8072 2003-02-17 Andrew Cagney <ac131313@redhat.com>
8073
8074 * configure: Regenerate using autoconf 000227.
8075
8076 2003-02-15 Geoffrey Keating <geoffk@apple.com>
8077
8078 * configure.in (*-*-darwin*): Rename from powerpc*-*-darwin*,
8079 don't configure target-libobjc.
8080 * configure: Regenerate.
8081
8082 2003-02-14 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
8083
8084 * Makefile.tpl (RANLIB): Define.
8085 * Makefile.in: Regenerate.
8086
8087 2003-02-06 Keith R Seitz <keiths@redhat.com>
8088
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.
8094
8095 2003-01-31 Frank Ch. Eigler <fche@redhat.com>
8096
8097 * Makefile.tpl (all-sid): Add libiberty/bfd/opcodes dependencies.
8098 * Makefile.in: Regenerated.
8099
8100 2003-01-30 Alexandre Oliva <aoliva@redhat.com>
8101
8102 * config.if: Copy from GCC.
8103
8104 2003-01-27 Phil Edwards <pme@gcc.gnu.org>
8105
8106 * configure.in: Revert 24Jan change.
8107 * configure: Regenerate.
8108
8109 2003-01-23 Nathanael Nerode <neroden@gcc.gnu.org>
8110
8111 * configure.in: Revert previous change.
8112 * configure: Regenerate.
8113
8114 2003-01-23 Nathanael Nerode <neroden@gcc.gnu.org>
8115
8116 * configure.in: Make rda native-only.
8117 * configure: Regenerate.
8118
8119 2003-01-19 Nathanael Nerode <neroden@gcc.gnu.org>
8120
8121 * configure.in: Add missing \.
8122 * configure: Rebuilt.
8123
8124 2003-01-17 Jakub Jelinek <jakub@redhat.com>
8125
8126 * configure.in (baseargs): Avoid using \| in sed regular
8127 expressions.
8128 * configure: Rebuilt.
8129
8130 2003-01-16 Jakub Jelinek <jakub@redhat.com>
8131
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.
8136
8137 2003-01-15 Alexandre Oliva <aoliva@redhat.com>
8138
8139 * configure.in (noconfigdirs): Don't skip gas on IRIX 6.
8140 * configure: Rebuilt.
8141
8142 2003-01-09 Nathanael Nerode <neroden@gcc.gnu.org>
8143
8144 * configure.in: Substitute TOPLEVEL_CONFIGURE_ARGUMENTS.
8145 * Makefile.tpl: Pass TOPLEVEL_CONFIGURE_ARGUMENTS to gcc.
8146 * Makefile.in: Regenerate.
8147 * configure: Regenerate.
8148
8149 2003-01-09 Christian Cornelssen <ccorn@cs.tu-berlin.de>
8150
8151 * Makefile.tpl (BASE_FLAGS_TO_PASS): Also pass DESTDIR.
8152 (install-info, dir.info): Prepend $(DESTDIR) to $(infodir).
8153 * Makefile.in: Regenerate.
8154
8155 2003-01-09 Alexandre Oliva <aoliva@redhat.com>
8156
8157 * configure.in: Remove Makefile in build, host and target modules
8158 unless configure was run with --no-recursion.
8159 * configure: Rebuilt.
8160
8161 2003-01-08 Chris Demetriou <cgd@broadcom.com>
8162
8163 * config.guess: Update to 2003-01-03 version.
8164 * config.sub: Update to 2003-01-03 version.
8165
8166 2003-01-07 Christopher Faylor <cgf@redhat.com>
8167
8168 * configure: Regenerate with proper autoconf 2.13.
8169
8170 2003-01-07 Christopher Faylor <cgf@redhat.com>
8171
8172 * configure.in: Add AC_PREREQ for consistency.
8173 * configure: Regenerate.
8174
8175 2003-01-06 Andrew Cagney <ac131313@redhat.com>
8176
8177 * configure.in (GDB_TK): Add tcl directories conditional on
8178 gdb/gdbtk directory being present.
8179 * configure: Regenerate.
8180
8181 2003-01-04 John David Anglin <dave.anglin@nrc.ca>
8182
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.
8186
8187 2003-01-01 Daniel Jacobowitz <drow@mvista.com>
8188
8189 * src-release (ETC_SUPPORT): Add fdl.texi and texi2pod.pl.
8190
8191 2002-12-31 Tom Tromey <tromey@redhat.com>
8192
8193 * Makefile.in: Rebuilt.
8194 * Makefile.def (target_modules) [libffi]: Allow installation.
8195
8196 2002-12-31 Andreas Schwab <schwab@suse.de>
8197
8198 * configure.in: Fix use of $program_transform_name.
8199 * configure: Regenerated.
8200
8201 2002-12-30 Daniel Jacobowitz <drow@mvista.com>
8202
8203 * configure.in (baseargs): Don't remove first configure argument.
8204 * configure: Regenerated.
8205
8206 2002-12-29 Alexandre Oliva <aoliva@redhat.com>
8207
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.
8223
8224 2002-12-28 Alexandre Oliva <aoliva@redhat.com>
8225
8226 * configure.in (host_configargs): Replace reference to
8227 no-longer-defined buildopts with --build=${build_alias}.
8228 * configure: Rebuilt.
8229
8230 2002-12-28 Alexandre Oliva <aoliva@redhat.com>
8231
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
8240 $(AUTOCONF).
8241 * Makefile.in: Rebuilt.
8242
8243 2002-12-28 Nathanael Nerode <neroden@gcc.gnu.org>
8244
8245 * Makefile.tpl: Fix dramatic bustage due to change in
8246 program_transform_name.
8247 * Makefile.in: Regenerate.
8248
8249 * configure.in: Remove unnecessary PATH setting.
8250 * configure: Regnerate.
8251
8252 * configure.in: Don't default to unprefixed tools unless
8253 the native tools will work.
8254 * configure: Regenerate.
8255
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.
8261
8262 2002-12-27 Nathanael Nerode <neroden@gcc.gnu.org>
8263
8264 * configure: Remove unneeded 'export's. Make CC_FOR_TARGET,
8265 CXX_FOR_TARGET, GCJ_FOR_TARGET substituted in configure.in only.
8266
8267 * ChangeLog: Move a couple of entries from here to winsup/cygwin,
8268 where they belong.
8269
8270 2002-12-24 Andreas Schwab <schwab@suse.de>
8271
8272 * Makefile.tpl (multilib.out): Fix missing space.
8273 * Makefile.in: Regenerate.
8274
8275 2002-12-23 Nathanael Nerode <neroden@gcc.gnu.org>
8276
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.
8281
8282 2002-12-21 Geoffrey Keating <geoffk@apple.com>
8283
8284 * configure.in (extra_ranlibflags_for_target): New variable.
8285 (*-*-darwin): Add -c to ranlib commands.
8286 * configure (tooldir): Handle extra_ranlibflags_for_target.
8287
8288 2002-12-20 Jeff Johnston <jjohnstn@redhat.com>
8289
8290 * COPYING.NEWLIB: Updated.
8291 * COPYING.LIBGLOSS: Ditto.
8292
8293 2002-12-19 Nathanael Nerode <neroden@gcc.gnu.org>
8294
8295 * Makefile.tpl: Revert HJL's change.
8296 * Makefile.in: Regenerated.
8297 * configure.in: Put build_prefix before $(BUILD_SUBDIR) here, and
8298 always.
8299
8300 2002-12-19 Andreas Schwab <schwab@suse.de>
8301
8302 * Makefile.tpl, configure.in: Substitute libstdcxx_incdir.
8303 * Makefile.in: Regenerate.
8304
8305 2002-12-18 H.J. Lu <hjl@gnu.org>
8306
8307 * Makefile.tpl: Add @build_prefix@ before $(BUILD_SUBDIR).
8308 * Makefile.in: Regenerated.
8309
8310 * configure.in (build_prefix): New. Substitute.
8311
8312 2002-12-18 Nathanael Nerode <neroden@gcc.gnu.org>
8313
8314 * Makefile.tpl: Don't let real targets depend on phony targets.
8315 * Makefile.in: Regenerate.
8316
8317 * Makefile.tpl (do-info): Depend on maybe-all-texinfo, not all-texinfo.
8318 * Makefile.in: Regenerate.
8319
8320 2002-12-16 Jason Merrill <jason@redhat.com>
8321
8322 * Makefile.tpl (all-gcc): Use 'make quickstrap' if there was a
8323 previous 'make bootstrap'.
8324 * Makefile.in: Regenerate.
8325
8326 2002-12-17 Hans-Peter Nilsson <hp@bitrange.com>
8327
8328 * configure.in (noconfigdirs) [mmix-*-*]: Disable libgloss and gdb.
8329
8330 2002-12-13 Jason Merrill <jason@redhat.com>
8331
8332 * Makefile.tpl (check-gcc-c++): Renamed from check-c++. Don't run
8333 library tests.
8334 (check-c++): Just depend on it and check-target-libstdc++-v3.
8335 * Makefile.in: Regenerate.
8336
8337 2002-12-13 Nathanael Nerode <neroden@gcc.gnu.org>
8338
8339 * configure.in, Makefile.tpl, Makefile.def: Remove tclX.
8340 * Makefile.in: Regenerate.
8341
8342 2002-12-12 Jeff Johnston <jjohnstn@redhat.com>
8343
8344 * COPYING.NEWLIB: Update list of alternate Regent of California
8345 licenses and discuss official revoking of advertising clause.
8346 * COPYING.LIBGLOSS: Ditto.
8347
8348 2002-12-12 Alexandre Oliva <aoliva@redhat.com>
8349
8350 * Makefile.tpl (configure-target-rda): Depend on $(ALL_GCC_C).
8351 * Makefile.in: Rebuilt.
8352
8353 2002-12-10 Nathanael Nerode <neroden@gcc.gnu.org>
8354
8355 * configure: Fix bug put in by gremlins.
8356
8357 * Makefile.tpl: Substitute more autoconfily.
8358 * configure: Substitute more autoconfily.
8359 * Makefile.in: Regenerate.
8360
8361 2002-12-08 Andrew Cagney <ac131313@redhat.com>
8362
8363 * Makefile.tpl (all-sim): Depend on maybe-configure-gdb.
8364 * Makefile.in (all-sim): Ditto.
8365
8366 2002-12-06 DJ Delorie <dj@redhat.com>
8367
8368 * Makefile.tpl: Change configure dependencies to not have real
8369 targets depend on phony targets.
8370
8371 2002-12-05 Nathanael Nerode <neroden@gcc.gnu.org>
8372
8373 * configure.in: Revert unintentional change.
8374
8375 * src-release: Configure host subdirs.
8376
8377 * Makefile.tpl: Change dependency for */multilib.out so that
8378 it works when gcc isn't in the tree.
8379
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.
8384
8385 2002-12-03 Nathanael Nerode <neroden@gcc.gnu.org>
8386
8387 * Makefile.tpl: Add targets for configuring host subdirs in Makefile,
8388 and corresponding dependencies.
8389 * Makefile.in: Regenerate.
8390
8391 * configure.in (host_tools): Order binutils, gas and ld for
8392 convenience in running the testsuites.
8393
8394 * Makefile.tpl: Introduce rules to serialize subconfigure runs.
8395 * Makefile.in: Regenerate.
8396 * configure.in: Introduce rules to serialize subconfigure runs.
8397
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.
8402
8403 2002-12-02 Nathanael Nerode <neroden@gcc.gnu.org>
8404
8405 * configure: Move gcc_version_trigger stuff from here...
8406 * configure.in: ...to here.
8407
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.
8411
8412 * Makefile.tpl: Remove 'vault' targets.
8413 * Makefile.tpl: Reorder and comment dependencies.
8414 * Makefile.in: Regenerate.
8415
8416 2002-11-28 Geoffrey Keating <geoffk@apple.com>
8417
8418 * configure.in: Move host-specific darwin noconfigdirs into
8419 the host-specific section.
8420
8421 2002-12-02 Nathanael Nerode <neroden@gcc.gnu.org>
8422
8423 * Makefile.tpl: Restore bkorb's style patch, accidentally lost
8424 during replay.
8425 * Makefile.in: Regenerate.
8426
8427 (finishing slow-motion replay)
8428 * configure: Remove skip-this-dir support.
8429 * Makefile.tpl: Remove skip-this-dir support.
8430
8431 * Makefile.tpl: Remove leftover support for non-autoconfiscated
8432 subdirectories.
8433 * Makefile.in: Regenerate.
8434
8435 * Makefile.tpl: Strip out useless setting of 'dir'.
8436 * Makefile.in: Regenerate.
8437
8438 2002-12-02 Nathanael Nerode <neroden@gcc.gnu.org>
8439
8440 (finishing slow-motion replay)
8441 * configure.in: Fix deeply stupid bug.
8442
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
8447 RAW_CXX_FOR_TARGET.
8448 * Makefile.in: Regenerate.
8449
8450 2002-12-02 Nathanael Nerode <neroden@gcc.gnu.org>
8451
8452 (finishing slow-motion replay)
8453 * Makefile.tpl: Remove unnecessary ifs.
8454 * Makefile.in: Regenerate.
8455
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.
8464
8465 2002-12-01 Nathanael Nerode <neroden@gcc.gnu.org>
8466
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.
8471
8472 * Makefile.tpl: Add all-gcc: all-build-libiberty dependency when
8473 build != host.
8474
8475 * Makefile.tpl: Add all-gcc: all-libiberty dependency.
8476
8477 * ltcf-c.sh, ltcf-gcj.sh, Makefile.tpl: Correct BUILD/HOST confusion.
8478
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.
8487
8488 * Makefile.in: Regenerate.
8489
8490 2002-12-01 Nathanael Nerode <neroden@gcc.gnu.org>
8491
8492 (Continuing slow-motion replay)
8493 * Makefile.def: Add list of recursive targets to autogenerate.
8494 Add build_modules.
8495 * Makefile.tpl: Autogenerate do-* targets. Autogenerate *-target-*
8496 targets. Autogenerate *-build-* targets.
8497 * Makefile.in: Regenerate.
8498
8499 2002-11-30 Nathanael Nerode <neroden@gcc.gnu.org>
8500
8501 (Continuing slow-motion replay)
8502 * configure: More autoconf-style substitutions.
8503 * Makefile.tpl: More autoconf-style substitutions.
8504 * Makefile.in: Regenerate.
8505
8506 2002-11-30 Nathanael Nerode <neroden@gcc.gnu.org>
8507
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.
8514
8515 2002-11-29 Nathanael Nerode <neroden@gcc.gnu.org>
8516
8517 (Continuing slow-motion replay)
8518 * configure.in (v810*): Remove special setting of tools.
8519
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.
8523
8524 2002-11-29 Nathanael Nerode <neroden@gcc.gnu.org>
8525
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.
8534
8535 2002-11-13 Bruce Korb <bkorb@gnu.org>
8536
8537 * Makefile.tpl: syntactic cleanup
8538
8539 2002-11-04 Kevin Buettner <kevinb@redhat.com>
8540
8541 * Makefile.def (host_modules): Add rda.
8542 * Makefile.in: Regenerate.
8543 * configure.in (target_tool): Add target-rda to list.
8544
8545 2002-10-25 Phil Edwards <pme@gcc.gnu.org>
8546
8547 * Makefile.tpl (bootstrap): Add bubblestrap, quickstrap, cleanstrap,
8548 and restrap targets to this rule.
8549 * Makefile.in: Regenerate.
8550
8551 2002-10-24 Hans-Peter Nilsson <hp@bitrange.com>
8552
8553 * configure.in (i[3456]86-*-linux*): Add check to disable
8554 ${libgcj} for glibc1.
8555
8556 2002-10-07 Svein E. Seldal <Svein.Seldal@solidas.com>
8557
8558 * configure.in: Add tic4x target.
8559
8560 2002-10-03 Nathanael Nerode <neroden@gcc.gnu.org>
8561
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.
8567
8568 2002-10-02 Nathanael Nerode <neroden@gcc.gnu.org>
8569
8570 * Makefile.tpl: Eliminate reference to all-gui, all-libproc.
8571 * Makefile.in: Regenerate.
8572
8573 * Makefile.def: Remove order dependency comments.
8574 * Makefile.tpl: Add explicit install-install dependencies.
8575 * Makefile.in: Regenerate.
8576
8577 * Makefile.tpl: Remove material now in src-release. (Finally!)
8578 * Makefile.in: Regenerate.
8579
8580 * configure: Restore my original patch by syncing with gcc version.
8581
8582 * Bring following over from gcc:
8583
8584 2002-09-30 Ulrich Weigand <uweigand@de.ibm.com>
8585
8586 * configure.in (s390*-*-linux*): Enable libgcj.
8587
8588 2002-10-02 Nathanael Nerode <neroden@gcc.gnu.org>
8589
8590 * Makefile.in: Regenerate. This really ought to fix things. :sigh:
8591
8592 2002-10-02 Alan Modra <amodra@bigpond.net.au>
8593
8594 * configure: Move stray lines back to where they belong.
8595
8596 2002-10-01 Nathanael Nerode <neroden@gcc.gnu.org>
8597
8598 * Makefile.tpl: Insert configure-target target, for src-release.
8599
8600 * configure: Finish reverting change which Andrew Cagney started
8601 reverting. Should fix bustage.
8602
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.
8606
8607 2002-09-30 Nick Clifton <nickc@redhat.com>
8608
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.
8612
8613 2002-09-29 Andrew Cagney <ac131313@redhat.com>
8614
8615 Revert below (note that src does not contain Makefile.tpl):
8616 * Makefile.tpl: Make subsituted variables more autoconfy.
8617 * Makefile.in: Regenerate.
8618
8619 2002-09-29 Nathanael Nerode <neroden@gcc.gnu.org>
8620
8621 * configure: Revert accidentally applied changes.
8622
8623 * Makefile.tpl: Make more autoconf-friendly.
8624 * Makefile.in: Regenerate.
8625 * configure: Make substitution more autoconf-like.
8626
8627 2002-09-28 Richard Earnshaw <rearnsha@arm.com>
8628
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.
8633
8634 2002-09-27 Geoffrey Keating <geoffk@apple.com>
8635
8636 * configure.in (powerpc-*-darwin*): Don't configure BFD, TK, or the
8637 things that depend on them.
8638
8639 2002-09-25 Nathanael Nerode <neroden@gcc.gnu.org>
8640
8641 * Makefile.tpl: Make subsituted variables more autoconfy.
8642 * Makefile.in: Regenerate.
8643 * configure: Make seds more autoconfy.
8644
8645 2002-09-25 Nathanael Nerode <neroden@gcc.gnu.org>
8646
8647 * Makefile.tpl: Rewrite substituted lines to look autoconfy.
8648 * Makefile.in: Regenerate.
8649 * configure.in: Rewrite sed statements to look autoconfy.
8650
8651 * Makefile.tpl: Autogenerate *-target-* lists, dependencies of
8652 all-target-foo on configure-target-foo.
8653 * Makefile.def: Ditto.
8654 * Makefile.in: Rebuild.
8655
8656 2002-09-22 Nathanael Nerode <neroden@gcc.gnu.org>
8657
8658 * Makefile.def: New file.
8659 * Makefile.tpl: New file.
8660 * Makefile.in: Generate from Makefile.tpl with 'autogen Makefile.def'.
8661
8662 * configure.in: Minor rearrangement. Simplify tests.
8663
8664 2002-09-23 Jason Thorpe <thorpej@wasabisystems.com>
8665
8666 * configure.in (with_headers): Skip copy if value is "yes".
8667 (with_libs): Likewise.
8668
8669 2002-09-20 Nathanael Nerode <neroden@gcc.gnu.org>
8670
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.
8675
8676 * configure.in: Rearrange.
8677
8678 2002-09-12 Nick Clifton <nickc@redhat.com>
8679
8680 * Import these changes from the config master repository:
8681
8682 2002-09-05 Svein E. Seldal <Svein.Seldal@solidas.com>
8683
8684 * config.sub: Add tic4x target.
8685
8686 2002-09-03 Ben Elliston <bje@redhat.com>
8687
8688 * config.guess: Detect NSR-D machines for nsr-tandem-nsk.
8689 Reported by <Duncan_Stodart@insession.com>.
8690
8691 2002-09-10 Jeff Johnston <jjohnstn@redhat.com>
8692
8693 * COPYING.NEWLIB: More updates.
8694
8695 2002-09-09 Jeff Johnston <jjohnstn@redhat.com>
8696
8697 * COPYING.NEWLIB: Update.
8698
8699 2002-08-23 Andrew Cagney <ac131313@redhat.com>
8700
8701 * texinfo/texinfo.tex: Import version 2002-06-04.06.
8702
8703 * config.guess: Import version 2002-08-23.
8704 * config.sub: Import version 2002-08-22.
8705
8706 2002-08-20 Alexandre Oliva <aoliva@redhat.com>
8707
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.
8711
8712 2002-08-06 Federico G. Schwindt <fgsch@olimpo.com.br>
8713
8714 * configure.in (hppa*-*-openbsd*): Treat like hppa*-*-*elf*.
8715
8716 2002-08-04 H.J. Lu (hjl@gnu.org)
8717
8718 * configure.in (mips*-*-linux*): Don't skip target-libffi.
8719
8720 2002-07-31 Alan Modra <amodra@bigpond.net.au>
8721
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.
8725
8726 2002-07-19 Chris Demetriou <cgd@broadcom.com>
8727
8728 * MAINTAINERS: Clarify on config.guess and config.sub, and add
8729 one instance of them which was missed to the list to update.
8730
8731 2002-07-16 Chris Demetriou <cgd@broadcom.com>
8732
8733 * config.guess: Update to 2002-07-09 version.
8734 * config.sub: Update to 2002-07-03 version.
8735
8736 2002-07-11 Nathanael Nerode <neroden@gcc.gnu.org>
8737
8738 * configure.in: Remove two redundant tests.
8739
8740 2002-07-11 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
8741
8742 * configure.in (mips*-*-irix6*o32): Enable stabs.
8743
8744 2002-07-08 Nathanael Nerode <neroden@gcc.gnu.org>
8745
8746 * configure.in: Don't build grez.
8747 * Makefile.in: Ditto.
8748
8749 * Makefile.in: Remove references to bsp, cygmon, libstub.
8750 * configure.in: Ditto.
8751
8752 * configure.in: Remove leftover reference to gdbtest.
8753
8754 2002-07-08 Phil Edwards <pme@gcc.gnu.org>
8755
8756 * configure.in (gxx_include_dir): Change to match versioned
8757 C++ headers if --enable-version-specific-runtime-libs is used.
8758
8759 2002-07-04 Steve Ellcey <sje@cup.hp.com>
8760
8761 * ltcf-cxx.sh (hpux*): Modify to support ia64-*-hpux*.
8762
8763 2002-07-03 Nathanael Nerode <neroden@gcc.gnu.org>
8764
8765 * configure.in: Make --without-x work.
8766
8767 2002-07-03 Nick Clifton <nickc@cambridge.redhat.com>
8768
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.
8772
8773 2002-07-02 Nathanael Nerode <neroden@gcc.gnu.org>
8774
8775 * configure.in: Rearrange target Makefile fragment collection.
8776
8777 * Makefile.in: Don't try to build gdbtest, tgas, ispell, inet, or
8778 cvs[src].
8779 * configure.in: Ditto.
8780
8781 2002-07-01 Nathanael Nerode <neroden@gcc.gnu.org>
8782
8783 * Makefile.in: Eliminate 'apache' targets.
8784 * configure.in: Eliminate 'apache' targets.
8785
8786 * configure.in: Eliminate redundant tests. Reorganize.
8787
8788 * Makefile.in: Eliminate last reference to LIBGCC1_TEST.
8789
8790 * config-ml.in: Eliminate references to Cygnus configure.
8791
8792 * Makefile.in: Eliminate references to building emacs.
8793
8794 2002-07-01 Denis Chertykov <denisc@overta.ru>
8795
8796 * configure.in: Add support for ip2k.
8797
8798 2002-06-24 Ben Elliston <bje@redhat.com>
8799
8800 * configure.in (host_tools): Remove cgen.
8801
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.
8806
8807 2002-06-22 Nathanael Nerode <neroden@twcny.rr.com>
8808
8809 * configure.in: Fix AIX configury bug.
8810
8811 2002-06-19 Nathanael Nerode <neroden@twcny.rr.com>
8812
8813 * configure.in: Replace ${topsrcdir} with ${srcdir}.
8814
8815 * configure.in: Move definition of libstdcxx_flags right above
8816 usage, rather than way earlier.
8817
8818 * configure.in: Pull definition of is_cross_compiler earlier.
8819
8820 * configure.in: Rearrange a little.
8821
8822 * configure.in: Remove references to librx.
8823 * Makefile.in: Remove references to librx.
8824
8825 2002-06-19 Nathanael Nerode <neroden@twcny.rr.com>
8826
8827 * configure.in: Eliminate ${gasdir} variable.
8828
8829 2002-06-18 Dave Brolley <brolley@redhat.com>
8830
8831 * configure.in: Add support for frv.
8832 * config.sub: Add support for frv.
8833
8834 2002-06-12 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
8835
8836 * Makefile.in (CFLAGS_FOR_TARGET): Add -O2.
8837
8838 2002-06-08 Jason Thorpe <thorpej@wasabisystems.com>
8839
8840 * configure.in (vax-*-netbsd*): Re-enable gas.
8841
8842 2002-05-31 Nathanael Nerode <neroden@twcny.rr.com>
8843
8844 * Makefile.in: Replace HOST_PREFIX, HOST_PREFIX_1 with BUILD_PREFIX,
8845 BUILD_PREFIX_1, to correct nomenclature.
8846 * configure: Likewise.
8847
8848 * Makefile.in: Eliminate version-specific references to tcl8.1, tk8.1.
8849 * configure.in: Eliminate version-specific references to tcl8.1, tk8.1.
8850
8851 2002-05-31 Olaf Hering <olh@suse.de>
8852
8853 * config-ml.in: Propogate DESTDIR also.
8854
8855 2002-05-29 Jason Thorpe <thorpej@wasabisystems.com>
8856
8857 * configure.in (vax-*-netbsd*): Don't build gas for this
8858 platform.
8859
8860 2002-05-28 Marek Michalkiewicz <marekm@amelek.gda.pl>
8861
8862 * configure.in (noconfigdirs): Don't compile libiberty, libstdcxx
8863 and libgcj for AVR.
8864
8865 2002-05-28 Nick Clifton <nickc@cambridge.redhat.com>
8866
8867 * config.sub: Add DLX target.
8868
8869 2002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
8870
8871 * config.guess: Update to 2002-05-22 version.
8872 * config.sub: Likewise.
8873
8874 2002-05-16 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
8875
8876 * Makefile.in: Allow for PWDCMD to override hardcoded pwd.
8877 * config-ml.in: Likewise.
8878 * configure: Likewise.
8879 * configure.in: Likewise.
8880
8881 2002-05-13 Nathanael Nerode <neroden@twcny.rr.com>
8882
8883 * configure.in: Simplify makefile fragment collection.
8884
8885 * configure.in: Remove code to build emacs.
8886
8887 * configure.in : Remove --srcdir argument from targargs and buildargs
8888 (it's always overridden in the Makefile anyway). Rearrange a bit.
8889
8890 * configure: Move some logic to configure.in.
8891 * configure.in: Move some logic from configure.
8892
8893 2002-05-07 Jeff Johnston <jjohnstn@redhat.com>
8894
8895 * COPYING.LIBGLOSS: New file.
8896
8897 2002-05-07 Federico G. Schwindt <fgsch@olimpo.com.br>
8898
8899 * Makefile.in: Honour DESTDIR.
8900
8901 2002-05-05 Alexandre Oliva <aoliva@redhat.com>
8902
8903 * configure.in (noconfigdirs): Don't disable libgcj on
8904 sparc64-*-solaris* and sparcv9-*-solaris*.
8905
8906 2002-05-03 Alexandre Oliva <aoliva@redhat.com>
8907
8908 * configure.in: Revert 2002-04-18's patch; fixed in libjava.
8909
8910 2002-05-03 Thomas Fitzsimmons <fitzsim@redhat.com>
8911
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*.
8915
8916 2002-05-01 Thomas Fitzsimmons <fitzsim@redhat.com>
8917
8918 * configure.in (noconfigdirs): Replace [ ] with test.
8919
8920 * configure.in (noconfigdirs): Do not add target-newlib if
8921 target == i[3456]86-*-linux*, and host == target.
8922
8923 2002-04-29 Mark Mitchell <mark@codesourcery.com>
8924
8925 * config.guess: Updated to 2002-04-26's version.
8926 * config.sub: Updated to 2002-04-26's version.
8927
8928 2002-04-29 Nathanael Nerode <neroden@doctormoo.dyndns.org>
8929
8930 * configure.in: delete reference to absent file
8931
8932 * configure.in: replace '[' with 'test'
8933
8934 * configure.in: Eliminate references to gash.
8935 * Makefile.in: Eliminate references to gash.
8936
8937 * configure.in: remove useless references to 'pic' makefile fragments.
8938
8939 * configure.in: (*-*-windows*) Finish removing.
8940
8941 * configure.in: Eliminate redundant test for libgui.
8942
8943 2002-04-26 Joel Sherrill <joel@OARcorp.com>
8944
8945 * configure.in (h8300*-*-rtems*): Disable libf2c and libgcj.
8946 (sparc-*-elf*, sparc64-*-elf*): Disable libgcj.
8947
8948 2002-04-19 Nathanael Nerode <neroden@twcny.rr.com>
8949
8950 * configure.in: remove references to dead files
8951
8952 2002-04-18 Tom Tromey <tromey@redhat.com>
8953
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.
8957
8958 2002-04-17 Nathanael Nerode <neroden@twcny.rr.com>
8959
8960 * configure.in: Move default CC setting out of config/mh-* fragments
8961 directly into here.
8962
8963 2002-04-17 Nathanael Nerode <neroden@twcny.rr.com>
8964
8965 * configure.in: don't even try to configure or make a subdirectory
8966 if there's no configure script for it.
8967
8968 2002-04-15 Mark Mitchell <mark@codesourcery.com>
8969
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
8976 CHILL_LIB.
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.
8986
8987 2002-04-15 DJ Delorie <dj@redhat.com>
8988
8989 * Makefile.in, configure.in, configure: Sync with gcc, entries
8990 follow...
8991
8992 2002-04-08 Tom Tromey <tromey@redhat.com>
8993
8994 * configure.in: Add FLAGS_FOR_TARGET to GCJ_FOR_TARGET.
8995 Fixes PR libgcj/6068.
8996
8997 2002-03-30 Krister Walfridsson <cato@df.lth.se>
8998
8999 * configure.in (i*86-*-netbsdelf*): Don't disable libgcj.
9000
9001 2002-03-27 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
9002
9003 * configure.in (alpha*-dec-osf*): Enable libgcj.
9004
9005 2002-03-24 Nick Clifton <nickc@cambridge.redhat.com>
9006
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.
9010
9011 2002-03-20 Anthony Green <green@redhat.com>
9012
9013 * configure.in: Enable libgcj for xscale-elf target.
9014
9015 2002-02-28 Alexandre Oliva <aoliva@redhat.com>
9016
9017 * configure.in (libstdcxx_flags): Don't add libstdc++-v3 flags for
9018 libjava.
9019 (CXX_FOR_TARGET): Explain why -shared-libgcc here.
9020
9021 2002-02-22 Alexandre Oliva <aoliva@redhat.com>
9022
9023 * configure.in (CXX_FOR_TARGET): Add -shared-libgcc for
9024 libstdc++-v3 and libjava.
9025
9026 2002-02-11 Adam Megacz <adam@xwt.org>
9027
9028 * gcc/Makefile.in: Removed libstdc++-v3 dependancy for libjava and
9029 boehm-gc
9030
9031 2002-02-09 Alexandre Oliva <aoliva@redhat.com>
9032
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-*-*.
9038
9039 2002-01-17 H.J. Lu <hjl@gnu.org>
9040
9041 * Makefile.in (all-fastjar): Also depend on all-libiberty.
9042 (all-target-fastjar): Also depend on all-target-libiberty.
9043
9044 Wed Dec 5 07:33:45 2001 Douglas B. Rupp <rupp@gnat.com>
9045
9046 * configure, configure.in: Use temp file for long sed commands.
9047
9048 2001-11-14 Hans-Peter Nilsson <hp@bitrange.com>
9049
9050 * configure.in (noconfigdirs) [h8300*-*-*, h8500-*-*]: Disable
9051 libf2c.
9052
9053 2001-11-03 Hans-Peter Nilsson <hp@bitrange.com>
9054
9055 * configure.in (noconfigdirs) [mmix-*-*]: Disable libgcj.
9056
9057 2001-10-11 Hans-Peter Nilsson <hp@axis.com>
9058
9059 * configure.in (noconfigdirs) [cris-*-*]: Disable libgcj.
9060
9061 2001-10-02 Joseph S. Myers <jsm28@cam.ac.uk>
9062
9063 * configure: Handle temporary files securely using mkdir.
9064
9065 2001-09-26 Will Cohen <wcohen@redhat.com>
9066
9067 * configure.in (*-*-linux*): Disable configuration of target-newlib
9068 and target-libgloss.
9069
9070 2001-09-26 Alexandre Oliva <aoliva@redhat.com>
9071
9072 * Makefile.in (EXTRA_TARGET_FLAGS): Pass RANLIB_FOR_TARGET for
9073 RANLIB.
9074
9075 2001-08-11 Graham Stott <grahams@redhat.com>
9076
9077 * Makefile.in (check-c++): Add missing semicolon.
9078
9079 2001-07-25 Andrew Haley <aph@cambridge.redhat.com>
9080
9081 * configure.in (sh-*-linux*): New.
9082
9083 2001-07-12 Stephane Carrez <Stephane.Carrez@worldnet.fr>
9084
9085 * configure.in (noconfigdirs): Don't compile libiberty, libstdcxx
9086 and libgcj on m68hc11/m68hc12.
9087
9088 2001-06-27 H.J. Lu (hjl@gnu.org)
9089
9090 * Makefile (CFLAGS_FOR_BUILD): New.
9091 (EXTRA_GCC_FLAGS): Add CFLAGS_FOR_BUILD.
9092
9093 2001-06-01 Hans-Peter Nilsson <hp@axis.com>
9094
9095 * configure.in (libstdcxx_flags): Do not try to execute
9096 libstdc++-v3/testsuite_flags until it exists.
9097
9098 2001-05-18 Benjamin Kosnik <bkoz@redhat.com>
9099
9100 * configure.in (libstdcxx_flags): Remove reference to libstdc++.INC.
9101
9102 2001-05-09 Jeffrey Oldham <oldham@codesourcery.com>
9103
9104 * ltcf-cxx.sh: Add -nostdlib to IRIX 6 archive_cmds.
9105
9106 Mon Apr 23 09:15:03 2001 Anthony Green <green@redhat.com>
9107
9108 * configure.in: Move *-chorusos target case to the proper switch.
9109 Disable libgcj.
9110
9111 2001-04-13 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
9112
9113 * Makefile.in (STAGE1_CFLAGS): Pass down.
9114
9115 2001-04-13 Alan Modra <amodra@one.net.au>
9116
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'.
9120
9121 2001-03-22 Colin Howell <chowell@redhat.com>
9122
9123 * Makefile.in (DO_X): Do not backslash single-quotes in
9124 backquotes (two places).
9125
9126 2001-03-18 Laurynas Biveinis <lauras@softhome.net>
9127
9128 * Makefile.in (DO_X): Quote nested quotes.
9129
9130 2001-03-15 Laurynas Biveinis <lauras@softhome.net>
9131
9132 * Makefile.in (DO_X): Use double quotes for quoting
9133 "RANLIB=$${RANLIB}".
9134
9135 2001-03-09 Nicola Pero <n.pero@mi.flashnet.it>
9136
9137 * configure.in: Only use `lang_requires' for languages athat are
9138 actually enabled.
9139
9140 2001-03-07 Tom Tromey <tromey@redhat.com>
9141
9142 * configure.in: Allow config-lang.in to set `lang_requires' to list
9143 of other required languages.
9144
9145 2001-03-06 Laurynas Biveinis <lauras@softhome.net>
9146
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.
9150
9151 2001-02-28 Benjamin Kosnik <bkoz@redhat.com>
9152 Alexandre Oliva <aoliva@redhat.com>
9153
9154 * Makefile.in (check-c++): Use tabs, not spaces.
9155
9156 2001-02-19 Benjamin Kosnik <bkoz@redhat.com>
9157
9158 * Makefile.in (check-c++): New rule.
9159
9160 * configure.in (target_libs): Remove libg++.
9161 (noconfigdirs): Remove libg++.
9162 (noconfigdirs): Same.
9163 (noconfigdirs): Same.
9164 (noconfigdirs): Same.
9165
9166 * config-ml.in: Remove libg++ references.
9167
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.
9175 (.PHONY): 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.
9183
9184 2001-02-15 Anthony Green <green@redhat.com>
9185
9186 * configure: Introduce GCJ_FOR_TARGET.
9187 * configure.in: Ditto.
9188 * Makefile.in: Ditto.
9189
9190 2001-02-08 Chandrakala Chavva <cchavva@redhat.com>
9191
9192 * configure.in: for *-chorusos, don't config target-newlib and
9193 target-libgloss.
9194
9195 2001-02-04 Mark Mitchell <mark@codesourcery.com>
9196
9197 Remove V2 C++ library.
9198 * configure.in: Remove --enable-libstdcxx_v3 support.
9199
9200 2001-01-27 Richard Henderson <rth@redhat.com>
9201
9202 * configure.in (target_makefile_frag) [alpha*-*]: Use mt-alphaieee.
9203
9204 2001-01-26 Tom Tromey <tromey@redhat.com>
9205
9206 * configure.in: Allow libgcj to be built on Sparc Solaris.
9207
9208 2001-01-23 Bryce McKinlay <bryce@albatross.co.nz>
9209
9210 * configure.in: Enable libgcj on several additional platforms.
9211
9212 2001-01-22 Bryce McKinlay <bryce@albatross.co.nz>
9213
9214 * configure.in: Enable libgcj for linux targets.
9215
9216 2001-01-09 Mike Stump <mrs@wrs.com>
9217
9218 * Makefile.in (CONFIGURE_TARGET_MODULES): Pass back configuration
9219 failures of subdirectories.
9220
9221 2001-01-02 Laurynas Biveinis <lauras@softhome.net>
9222
9223 * configure: handle DOS-style absolute paths.
9224
9225 2001-01-02 Laurynas Biveinis <lauras@softhome.net>
9226
9227 * configure.in: remove supported directories from $noconfigdirs for DJGPP.
9228
9229 2000-12-18 Benjamin Kosnik <bkoz@redhat.com>
9230
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.
9236
9237 2000-12-15 Andreas Jaeger <aj@suse.de>
9238
9239 * configure.in: Handle lang_dirs.
9240
9241 2000-12-13 Anthony Green <green@redhat.com>
9242
9243 * configure.in: Disable libgcj for any target not specifically
9244 listed. Disable libgcj for x86 and Alpha Linux until compatible
9245 with g++ abi.
9246
9247 2000-12-13 Mike Stump <mrs@wrs.com>
9248
9249 * Makefile.in (local-distclean): Also remove fastjar.
9250
9251 2000-12-10 Anthony Green <green@redhat.com>
9252
9253 * configure.in: Define libgcj. Disable libgcj target libraries for
9254 most targets.
9255
9256 2000-12-09 Alexandre Petit-Bianco <apbianco@cygnus.com>
9257
9258 * configure.in (target_libs): Revert 2000-12-08 patch.
9259 (noconfigdirs): Added target-libjava.
9260
9261 2000-12-09 Laurynas Biveinis <lauras@softhome.net>
9262
9263 * Makefile.in: handle DOS-style absolute paths.
9264
9265 2000-12-08 Alexandre Petit-Bianco <apbianco@cygnus.com>
9266
9267 * Makefile.in (TARGET_CONFIGDIRS): Wrong place. Removed note about
9268 libjava.
9269 * configure.in (target_libs): Removed `target-libjava'.
9270
9271 2000-12-08 Alexandre Petit-Bianco <apbianco@cygnus.com>
9272
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.
9280
9281 2000-12-07 Mike Stump <mrs@wrs.com>
9282
9283 * Makefile.in (local-distclean): Remove leftover built files.
9284
9285 2000-11-16 Fred Fish <fnf@be.com>
9286
9287 * configure.in (enable_libstdcxx_v3): Fix typo,
9288 libstd++ -> libstdc++.
9289
9290 2000-11-13 Joseph S. Myers <jsm28@cam.ac.uk>
9291
9292 * configure: Provide the original toplevel configure arguments
9293 (including $0) to subprocesses in the environment rather than
9294 through gcc/configargs.h.
9295
9296 2000-11-12 Mark Mitchell <mark@codesourcery.com>
9297
9298 * configure: Turn on libstdc++ V3 by default.
9299
9300 2000-10-16 Michael Meissner <meissner@redhat.com>
9301
9302 * configure (gcc/configargs.h): Only create if there is a build GCC
9303 directory created.
9304
9305 2000-10-05 Phil Edwards <pme@gcc.gnu.org>
9306
9307 * configure: Save configure arguments to gcc/configargs.h.
9308
9309 2000-10-04 Andris Pavenis <pavenis@latnet.lv>
9310
9311 * Makefile.in (bootstrap): avoid recursion if subdir missing
9312 (cross): ditto
9313 (do-proto-toplev): ditto
9314
9315 Wed Sep 13 11:11:29 2000 Jeffrey A Law (law@cygnus.com)
9316
9317 * configure.in: Do not build byacc for hppa64. Provide paths to the
9318 X11 libraries for hppa64.
9319
9320 2000-09-02 Anthony Green <green@cygnus.com>
9321
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.
9326
9327 2000-08-25 Alexandre Oliva <aoliva@redhat.com>
9328
9329 * configure.in (FLAGS_FOR_TARGET): Use $target_configdirs and
9330 $targargs to tell whether newlib is going to be built.
9331
9332 * configure.in [disable-libstdcxx-v3] (libstdcxx_flags): Search
9333 $$r/TARGET_SUBDIR/libio for _G_config.h.
9334
9335 2000-08-14 Zack Weinberg <zack@wolery.cumb.org>
9336
9337 * configure.in (libstdcxx_flags): Remove -isystem $$s/libio/stdio.
9338
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*.
9343
9344 2000-08-02 Manfred Hollstein <manfredh@redhat.com>
9345
9346 * configure.in: Re-enable all references to libg++ and librx.
9347
9348 2002-04-09 Loren James Rittle <rittle@labs.mot.com>
9349
9350 * configure.in: Add *-*-freebsd* configurations.
9351
9352 2002-04-07 Andrew Cagney <ac131313@redhat.com>
9353
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.
9363
9364 2002-04-07 Andrew Cagney <ac131313@redhat.com>
9365
9366 * MAINTAINERS: Update dejagnu/
9367
9368 2002-03-16 Alexandre Oliva <aoliva@redhat.com>
9369
9370 * ltmain.sh (relink_command): Fix typo in previous change.
9371
9372 2002-03-15 Alexandre Oliva <aoliva@redhat.com>
9373
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.
9377
9378 2002-03-12 Richard Henderson <rth@redhat.com>
9379
9380 * Makefile.in (NOTPARALLEL): New. Use it instead of explicit
9381 .NOTPARALLEL tag.
9382 (do-check): Rename from check.
9383 (check): Allow parallel check.
9384
9385 2002-03-11 Richard Henderson <rth@redhat.com>
9386
9387 * Makefile.in (.NOTPARALLEL): Add fake tag.
9388
9389 2002-03-07 H.J. Lu (hjl@gnu.org)
9390
9391 * configure.in: Enable gprof for mips*-*-linux*.
9392
9393 2002-02-28 Alexandre Oliva <aoliva@redhat.com>
9394
9395 * configure.in (libstdcxx_flags): Don't add libstdc++-v3 flags for
9396 libjava.
9397 (CXX_FOR_TARGET): Add -shared-libgcc for libstdc++-v3 and libjava.
9398
9399 2002-02-24 Andrew Cagney <ac131313@redhat.com>
9400
9401 * texinfo/texinfo.tex: Update to version 2002-02-14.08.
9402
9403 2002-02-23 Daniel Jacobowitz <drow@mvista.com>
9404
9405 * config.guess: Import from master sources, rev 1.232.
9406 * config.sub: Import from master sources, rev 1.246.
9407
9408 2002-02-23 Alexandre Oliva <aoliva@redhat.com>
9409
9410 * Makefile.in (MAKEINFO): Don't assume makeinfo will be built just
9411 because its Makefile is there; test for the executable instead.
9412
9413 2002-02-09 Alexandre Oliva <aoliva@redhat.com>
9414
9415 Contribute sh64-elf.
9416 2000-12-01 Alexandre Oliva <aoliva@redhat.com>
9417 * configure.in: Added sh64-*-*.
9418
9419 2002-02-04 Jeff Johnston <jjohnstn@redhat.com>
9420
9421 * COPYING.NEWLIB: Remove advertising clause from
9422 Berkeley and Red Hat licenses.
9423
9424 2002-02-01 Mo DeJong <supermo@bayarea.net>
9425
9426 * Makefile.in: Add all-tix to deps for all-snavigator
9427 so that tix is built when building snavigator.
9428
9429 2002-02-01 Ben Elliston <bje@redhat.com>
9430
9431 * config.guess: Import from master sources, rev 1.229.
9432 * config.sub: Import from master sources, rev 1.240.
9433
9434 2002-01-27 Daniel Jacobowitz <drow@mvista.com>
9435
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
9440 IA64.
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.
9444
9445 2002-01-26 Jason Thorpe <thorpej@wasabisystems.com>
9446
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.
9450
9451 2002-01-23 Nick Clifton <nickc@cambridge.redhat.com>
9452
9453 * configure.in: Import StrongARM and XScale target_configdirs from
9454 FSF GCC version.
9455
9456 2002-01-16 H.J. Lu (hjl@gnu.org)
9457
9458 * config.guess: Import from master sources, rev 1.225.
9459 * config.sub: Import from master sources, rev 1.238.
9460
9461 * MAINTAINERS: Updated notes on config.guess and config.sub.
9462
9463 2002-01-11 Steve Ellcey <sje@cup.hp.com>
9464
9465 * configure.in (ia64*-*-hpux*): New target for IA64 HP-UX,
9466 ld and gdb are not supported.
9467
9468 2002-01-07 Jeff Johnston <jjohnstn@redhat.com>
9469
9470 * Change reference to Cygnus Solutions to be Red Hat.
9471
9472 2002-01-07 Jeff Johnston <jjohnstn@redhat.com>
9473
9474 * COPYING.NEWLIB: Update generic copyright date.
9475
9476 2002-01-07 Mark Salter <msalter@redhat.com>
9477
9478 * configure.in: Remove target-bsp and target-cygmon from arm builds.
9479 Allow target-libgloss to be built for arm, strongarm, and xscale.
9480
9481 2002-01-03 Ben Elliston <bje@redhat.com>
9482
9483 * MAINTAINERS: Update URL for config.* scripts.
9484
9485 2001-12-18 Alan Modra <amodra@bigpond.net.au>
9486
9487 * config.sub: Import latest version.
9488 * config.guess: Likewise.
9489
9490 2001-12-13 Thomas Fitzsimmons <fitzsim@redhat.com>
9491
9492 * configure.in (FLAGS_FOR_TARGET): Remove -nostdinc and -isystem
9493 options for i[3456]86-pc-linux* native builds.
9494
9495 2001-12-05 Laurent Guerby <guerby@acm.org>
9496
9497 * MAINTAINERS: gcc adopts symlink-tree, refer more to
9498 libiberty.
9499
9500 Import this patch from gcc:
9501
9502 2000-12-09 Laurynas Biveinis <lauras@softhome.net>
9503
9504 * symlink-tree: handle DOS-style absolute paths.
9505
9506 2001-11-28 DJ Delorie <dj@redhat.com>
9507 Zack Weinberg <zack@codesourcery.com>
9508
9509 When build != host, create libiberty for the build machine.
9510
9511 * Makefile.in (TARGET_CONFIGARGS, BUILD_CONFIGARGS): Replace
9512 CONFIG_ARGUMENTS.
9513 (ALL_BUILD_MODULES_LIST, BUILD_CONFIGDIRS, BUILD_SUBDIR):
9514 New variables.
9515 (ALL_BUILD_MODULES, CONFIGURE_BUILD_MODULES): New variables
9516 and rules.
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.
9520
9521 * configure: Calculate and substitute proper value for
9522 ALL_BUILD_MODULES.
9523 * configure.in: Create the build subdirectory.
9524 Calculate and substitute TARGET_CONFIGARGS (formerly
9525 CONFIG_ARGUMENTS); also BUILD_SUBDIR and BUILD_CONFIGARGS (new).
9526
9527 2001-11-26 Geoffrey Keating <geoffk@redhat.com>
9528
9529 * config.sub: Update to version 1.232 on subversion.
9530
9531 2001-11-20 Nick Clifton <nickc@cambridge.redhat.com>
9532
9533 * Makefile.in (do-proto-toplev): Use msgfmt to generate .gmo
9534 files from .po files for a distribution.
9535
9536 2001-11-19 Hans-Peter Nilsson <hp@bitrange.com>
9537
9538 * COPYING.NEWLIB: Mention preserved notice in specific parts.
9539
9540 2001-11-13 Jeff Holcomb <jeffh@redhat.com>
9541
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.
9556
9557 2001-11-13 Jeff Holcomb <jeffh@redhat.com>
9558
9559 * Makefile.in (all-bison): Revert 2001-10-24.
9560 Don't depend on texinfo.
9561
9562 2001-11-12 Hans-Peter Nilsson <hp@bitrange.com>
9563
9564 * COPYING.NEWLIB: Add BSD-style license/copyright blurb for my work.
9565
9566 2001-11-08 Phil Edwards <pedwards@disaster.jaj.com>
9567
9568 * configure.in (--enable-languages): Be more permissive about
9569 syntax. Check for empty lists better. Warn about $LANGUAGES.
9570
9571 2001-11-06 Hans-Peter Nilsson <hp@bitrange.com>
9572
9573 * Makefile.in (MAKEINFO): Use "missing" for makeinfo older than 4.0.
9574
9575 2001-10-24 Jeff Holcomb <jeffh@redhat.com>
9576
9577 Makefile.in (all-bison): Don't depend on texinfo.
9578
9579 2001-10-03 Alan Modra <amodra@bigpond.net.au>
9580
9581 * gettext.m4: Test po/POTFILES.in exists before trying to read.
9582
9583 2001-09-29 Alexandre Oliva <aoliva@redhat.com>
9584
9585 * Makefile.in (configure-target-gperf): Depend on $(ALL_GCC_CXX).
9586
9587 2001-09-28 Hans-Peter Nilsson <hp@axis.com>
9588
9589 * config.sub, config.guess: Import latest from subversions.
9590
9591 2001-09-21 Alexandre Oliva <aoliva@redhat.com>
9592
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.
9599
9600 2001-09-19 Ben Elliston <bje@redhat.com>
9601
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.
9605
9606 2001-09-15 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
9607
9608 * config.sub: Reverted the earlier change, this version is not the
9609 master file.
9610
9611 2001-09-14 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
9612
9613 * config.sub: Change machine triplets from mipsel*-* to mips*el-*.
9614 Add support for mips64.
9615
9616 2001-09-03 Jeff Holcomb <jeffh@redhat.com>
9617
9618 * configure.in: Enable libstdc++-v3 for h8300 targets.
9619
9620 2001-08-30 Eric Christopher <echristo@redhat.com>
9621 Jason Eckhardt <jle@redhat.com>
9622
9623 * config.sub: Add support for mipsisa32.
9624
9625 2001-08-30 Eric Christopher <echristo@redhat.com>
9626
9627 * config.sub, config.guess: Import latest from subversions.
9628
9629 2001-08-20 Alan Modra <amodra@bigpond.net.au>
9630
9631 * config.sub, config.guess: Import latest from subversions.
9632
9633 2001-07-26 DJ Delorie <dj@redhat.com>
9634
9635 * MAINTAINERS: Clarify libiberty merge rules and procedures.
9636
9637 2001-06-19 Alan Modra <amodra@bigpond.net.au>
9638
9639 * Makefile.in: Revert 2001-06-17.
9640 (VER): If AM_INIT_AUTOMAKE uses BFD_VERSION, get version from bfd/.
9641
9642 2001-06-17 H.J. Lu <hjl@gnu.org>
9643
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.
9647
9648 Fri Jun 8 11:14:02 2001 Andrew Cagney <cagney@b1.cygnus.com>
9649
9650 * Makefile.in (VER): When present, extract the version number from
9651 the file version.in.
9652
9653 2001-06-08 Alexandre Oliva <aoliva@redhat.com>, Jeff Sturm <jsturm@one-point.com>
9654
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
9657 name to use.
9658
9659 2001-06-04 Mark Mitchell <mark@codesourcery.com>
9660
9661 * ltcf-c.sh (archive_cmds, archive_expsym_cmds) [solaris,
9662 with_gcc]: Use `gcc -shared' to build a shared library.
9663
9664 2001-06-04 John David Anglin <dave@hiauly1.hia.nrc.ca>
9665
9666 * ltcf-c.sh (archive_cmd) [hpux, with_gcc]: Use gcc to link shared
9667 archives.
9668
9669 2001-05-28 Simon Patarin <simon.patarin@inria.fr>
9670
9671 * ltcf-cxx.sh (osf3/osf4/osf5): Support creation of C++ shared
9672 libraries when using g++ with native linker.
9673
9674 2001-05-28 Alexandre Oliva <aoliva@redhat.com>
9675
9676 * ltconfig, ltmain.sh: Upgrade to libtool 1.4a 1.641.2.256.
9677
9678 2001-05-24 Tom Rix <trix@redhat.com>
9679
9680 * configure.in : enable ld for aix
9681
9682 2001-05-22 Alexandre Oliva <aoliva@redhat.com>
9683
9684 * ltcf-cxx.sh (allow_undefined_flag, no_undefined_flag)
9685 [aix4*|aix5*]: Prepend blank.
9686
9687 2001-05-20 Alexandre Oliva <aoliva@redhat.com>
9688
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.
9692
9693 2001-05-14 H.J. Lu <hjl@gnu.org>
9694
9695 * config.if (libc_interface): Set to -libc6.2- for cross
9696 compiling to Linux/glibc 2.2.
9697
9698 2001-05-03 Alexandre Oliva <aoliva@redhat.com>
9699
9700 * configure.in (noconfigdirs) [*-cygwin*, *-mingw*, *-beos]: Disable
9701 libgcj.
9702
9703 2001-04-26 Alexandre Oliva <aoliva@redhat.com>
9704
9705 * configure.in (noconfigdirs): Don't reset it from scratch in the
9706 target case; only append to it.
9707
9708 2001-04-26 Alexandre Oliva <aoliva@redhat.com>
9709
9710 * configure.in (noconfigdirs) [hppa*-*-*, mips*-*-irix6*,
9711 sparc-*-solaris2.8]: Disable ${libgcj}.
9712
9713 2001-04-25 Alexandre Oliva <aoliva@redhat.com>
9714
9715 * configure.in (libgcj_saved): Copy from $libgcj.
9716 (libgcj): Zero out if --enable-libgcj; add to noconfigdirs is
9717 --disable-libgcj.
9718
9719 2001-04-20 Alexandre Oliva <aoliva@redhat.com>
9720
9721 * ltconfig, ltmain.sh, ltcf-cxx.sh: Upgraded to libtool 1.4a
9722 1.641.2.228.
9723
9724 2001-04-12 Alexandre Oliva <aoliva@redhat.com>
9725
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.
9728
9729 2001-04-01 Alexandre Oliva <aoliva@redhat.com>
9730
9731 * Makefile.in (CXX_FOR_TARGET_FOR_RECURSIVE_MAKE, RECURSE_FLAGS):
9732 New macros.
9733 (bootstrap, cross): Use RECURSE_FLAGS.
9734 * configure.in: Subst CXX_FOR_TARGET_FOR_RECURSIVE_MAKE.
9735
9736 2001-03-27 Alexandre Oliva <aoliva@redhat.com>
9737
9738 * configure.in (CXX_FOR_TARGET): Use xgcc for libstdc++-v3.
9739
9740 2001-03-23 Nick Clifton <nickc@redhat.com>
9741
9742 * README-maintainer-mode: Add note about inability to use "make
9743 distclean" in maintainer mode.
9744
9745 2001-03-22 Alexandre Oliva <aoliva@redhat.com>
9746
9747 Re-installed:
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.
9753
9754 2001-03-22 Philip Blundell <philb@gnu.org>
9755
9756 * config.sub, config.guess: Import latest from subversions.
9757
9758 2001-03-22 Alexandre Oliva <aoliva@redhat.com>
9759
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.
9762
9763 2001-03-20 Michael Chastain <chastain@redhat.com>
9764
9765 * Makefile.in: all-m4 depends on all-texinfo.
9766
9767 2001-03-08 Alexandre Oliva <aoliva@redhat.com>
9768
9769 * Makefile.in (ALL_GCC, ALL_GCC_C, ALL_GCC_CXX): Set before use.
9770
9771 2001-02-22 Jeff Johnston <jjohnstn@redhat.com>
9772
9773 * COPYING.NEWLIB: Remove DJ Delorie's address because it is no
9774 longer valid.
9775
9776 2001-02-16 Nick Clifton <nickc@redhat.com>
9777
9778 * configure.in (noconfigdirs): Allow configuration of texinfo
9779 for Cygwin hosts.
9780
9781 2001-02-09 Martin Schwidefsky <schwidefsky@de.ibm.com>
9782
9783 * config.guess: Add linux target for S/390.
9784 * config.sub: Likewise.
9785 * configure.in: Likewise.
9786
9787 2001-02-06 Ben Elliston <bje@redhat.com>
9788
9789 * configure: Output host type to stdout, not stderr.
9790
9791 2001-02-04 Michael Sokolov <msokolov@ivan.Harhan.ORG>
9792
9793 * config.guess: Import from subversions.gnu.org (revision 1.181).
9794 * config.sub: Import from subversions.gnu.org (revision 1.199).
9795
9796 2001-01-30 Alan Modra <alan@linuxcare.com.au>
9797
9798 * config.guess: Handle hppa64-linux systems.
9799
9800 2001-01-27 Michael Sokolov <msokolov@ivan.Harhan.ORG>
9801
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
9804 instead.
9805
9806 2001-01-27 Michael Sokolov <msokolov@ivan.Harhan.ORG>, Alexandre Oliva <oliva@lsd.ic.unicamp.br>
9807
9808 * ltconfig: Shell portability fix for the tagname validity check.
9809
9810 2001-01-27 Michael Sokolov <msokolov@ivan.Harhan.ORG>
9811
9812 * ltcf-cxx.sh: Use parentheses around eval $ac_compile.
9813
9814 2001-01-27 Alexandre Oliva <aoliva@redhat.com>
9815
9816 * ltcf-c.sh (ld_shlibs) [aix5*]: Disable on unknown CPU types.
9817 * ltcf-cxx.sh, ltcf-gcj.sh: Likewise.
9818
9819 2001-01-24 Alexandre Oliva <aoliva@redhat.com>
9820
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
9823 yes.
9824
9825 2001-01-24 Alexandre Oliva <aoliva@redhat.com>
9826
9827 * ltcf-gcj.sh (lt_simple_link_test_code): Remove stray `(0)'.
9828 * libtool.m4 (_AC_LIBTOOL_GCJ): Pass $CPPFLAGS on.
9829
9830 2000-11-07 Philip Blundell <pb@futuretv.com>
9831
9832 * Makefile.in (ETC_SUPPORT): Also add configbuild.* and configdev.*.
9833
9834 2000-11-03 Philip Blundell <pb@futuretv.com>
9835
9836 * Makefile.in (ETC_SUPPORT): Add configure.texi and associated info
9837 files.
9838
9839 2001-01-15 Jeff Johnston <jjohnstn@redhat.com>
9840
9841 * COPYING.NEWLIB: Put into source repository.
9842
9843 2001-01-15 Ben Elliston <bje@redhat.com>
9844
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.
9849
9850 2001-01-07 Andreas Jaeger <aj@suse.de>
9851
9852 * config.sub, config.guess: Update from subversions.
9853
9854 2000-12-12 Alexandre Oliva <aoliva@redhat.com>
9855
9856 * configure.in: Disable language-specific target libraries for
9857 languages that aren't enabled.
9858
9859 2000-11-24 Nick Clifton <nickc@redhat.com>
9860
9861 * configure.in (xscale-elf): Add target.
9862 (xscale-coff): Add target.
9863 (c4x, c5x, tic54x): Move after ARM targets.
9864
9865 2000-11-23 Alexandre Oliva <aoliva@redhat.com>
9866
9867 * ltcf-gcj.sh: Added file, required by 2000-11-18 merge.
9868
9869 2000-11-20 Ian Lance Taylor <ian@zembu.com>
9870
9871 * ltcf-cxx.sh: Added file, required by 2000-11-18 merge.
9872
9873 2000-11-18 Alexandre Oliva <aoliva@redhat.com>
9874
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.
9880
9881 2000-11-18 Alexandre Oliva <aoliva@redhat.com>
9882
9883 * Makefile.in (HOST_LIB_PATH, TARGET_LIB_PATH): New macros.
9884 (REALLY_SET_LIB_PATH): Use them.
9885
9886 2000-11-06 Christopher Faylor <cgf@cygnus.com>
9887
9888 * config.sub: Add support for Sun Chorus
9889
9890 2000-11-02 Per Lundberg <plundis@chaosdev.org>
9891
9892 * config.sub: Add support for the *-storm-chaos OS.
9893
9894 2000-10-30 Stephane Carrez <stcarrez@worldnet.fr>
9895
9896 * configure.in (noconfigdirs): Don't compile some
9897 of the libraries for 68HC11 & 68hc12 targets.
9898
9899 2000-09-30 Alexandre Oliva <aoliva@redhat.com>
9900
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.
9904
9905 2000-09-25 Alexandre Oliva <aoliva@redhat.com>
9906
9907 * Makefile.in (DEVO_SUPPORT): Added gettext.m4, libtool.m4 and
9908 ltcf-c.sh.
9909
9910 2000-09-12 Philip Blundell <philb@gnu.org>
9911
9912 * config.sub, config.guess: Update from subversions.
9913
9914 2000-09-06 Alexandre Oliva <aoliva@redhat.com>
9915
9916 * Makefile.in (all-zlib): Added dummy target.
9917
9918 * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh: Updated from libtool
9919 multi-language branch.
9920
9921 2000-09-05 Alexandre Oliva <aoliva@redhat.com>
9922
9923 * Makefile.in (all-bootstrap): Added all-texinfo and all-zlib.
9924 (bootstrap*): Depend on all-bootstrap.
9925
9926 2000-09-02 Alexandre Oliva <aoliva@redhat.com>, DJ Delorie <dj@redhat.com>
9927
9928 * configure.in (FLAGS_FOR_TARGET): Use -nostdinc even for Canadian
9929 crosses, but add gcc/include to the header search path for them.
9930
9931 2000-08-31 Alexandre Oliva <aoliva@redhat.com>
9932
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.
9936
9937 2000-08-22 Alexandre Oliva <aoliva@redhat.com>
9938
9939 * config-ml.in (CC, CXX): Avoid trailing whitespace.
9940 (LD_LIBRARY_PATH, SHLIB_PATH): Adjust for multilibs and export to
9941 sub-configures.
9942
9943 2000-08-20 Doug Evans <dje@casey.transmeta.com>
9944
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.
9951
9952 2000-08-17 Alexandre Oliva <aoliva@redhat.com>
9953
9954 * config-ml.in (CC, CXX): Don't introduce a leading space.
9955
9956 2000-08-16 Alexandre Oliva <aoliva@redhat.com>
9957
9958 * configure.in (libstdcxx_flags): Use
9959 libstdc++-v3/src/libstdc++.INC.
9960
9961 2000-08-15 Alexandre Oliva <aoliva@redhat.com>
9962
9963 * configure.in (libstdcxx_flags): Use libstdc++-v3/src/INCLUDES.
9964
9965 2000-08-11 Jason Merrill <jason@redhat.com>
9966
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.
9971
9972 2000-08-07 DJ Delorie <dj@redhat.com>
9973
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
9977 default includes".
9978
9979 2000-08-03 Alexandre Oliva <aoliva@redhat.com>
9980
9981 * configure.in (libstdcxx_flags): Don't use `"'.
9982
9983 * config-ml.in: Adjust multilib search paths to the
9984 appropriate multilib tree.
9985
9986 2000-08-02 Alexandre Oliva <aoliva@redhat.com>
9987
9988 * configure.in (CHILL_FOR_TARGET, CXX_FOR_TARGET): Convert blanks to
9989 commas in $LANGUAGES.
9990
9991 2000-08-01 Alexandre Oliva <aoliva@redhat.com>
9992
9993 * configure.in (qCXX_FOR_TARGET): Use echo instead of expr.
9994
9995 2000-07-31 Alexandre Oliva <aoliva@redhat.com>
9996
9997 * configure.in (qCXX_FOR_TARGET): Quote `&' characters in
9998 CXX_FOR_TARGET for sed.
9999
10000 2000-07-30 Alexandre Oliva <aoliva@redhat.com>
10001
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.
10006
10007 2000-07-27 Alexandre Oliva <aoliva@redhat.com>
10008
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.
10015
10016 2000-07-24 Alexandre Oliva <aoliva@redhat.com>
10017
10018 * Makefile.in (configure-target-libf2c): Depend on $(ALL_GCC).
10019 (configure-target-libchill, configure-target-libobjc): Likewise.
10020
10021 * configure.in: Use the same cache file for all target libs.
10022 * config-ml.in: But different cache files per multilib variant.
10023
10024 2000-07-23 Michael Sokolov <msokolov@ivan.Harhan.ORG>
10025
10026 * configure (topsrcdir): Don't use dirname.
10027
10028 2000-07-20 Jason Merrill <jason@redhat.com>
10029
10030 * configure.in: Remove all references to libg++ and librx.
10031
10032 * configure, configure.in, Makefile.in: Unify gcc and binutils.
10033
10034 2000-07-20 Hans-Peter Nilsson <hp@axis.com>
10035
10036 * config.sub: Update to subversions version 2000-07-06.
10037
10038 2000-07-12 Andrew Haley <aph@cygnus.com>
10039
10040 * configure.in (host_makefile_frag): Use mh-ia64pic on IA-64 hosts.
10041 (target_makefile_frag): Use mt-ia64pic on IA-64 targets.
10042
10043 2000-07-07 Phil Edwards <pme@sourceware.cygnus.com>
10044
10045 * symlink-tree: Check number of arguments.
10046
10047 2000-06-06 Andrew Cagney <cagney@b1.cygnus.com>
10048
10049 * texinfo/texinfo.tex: Update to version 2000-05-28.15.
10050
10051 2000-07-05 Jim Wilson <wilson@cygnus.com>
10052
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.
10057
10058 2000-07-01 Koundinya K <kk@ddeorg.soft.net>
10059
10060 * ltconfig: Add support for mips-dde-sysv4.2MP
10061
10062 2000-06-28 Corinna Vinschen <vinschen@cygnus.com>
10063
10064 * ltconfig: Check for host_os beeing one of `cygwin', `mingw' or
10065 `os2'. Force ac_cv_exeext to be ".exe" in that case.
10066
10067 2000-06-19 Timothy Wall <twall@cygnus.com>
10068
10069 * configure.in (noconfigdirs): Set noconfigdirs for tic54x target.
10070 * config.sub: Add tic54x target.
10071
10072 2000-06-07 Phillip Thomas <pthomas@suse.de>
10073
10074 * README-maintainer-mode: New file: Contains notes on using
10075 --enable-maintainer-mode with binutils.
10076
10077 2000-05-29 Andrew Cagney <cagney@b1.cygnus.com>
10078
10079 * texinfo/texinfo.tex: Update. Version from makeinfo 4.0.
10080
10081 2000-05-30 Andrew Cagney <cagney@b1.cygnus.com>
10082
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
10085
10086 20000-05-21 H.J. Lu (hjl@gnu.org)
10087
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.
10094
10095 2000-05-18 Jeffrey A Law (law@cygnus.com)
10096
10097 * configure.in (hppa*64*-*-*): Do build ld for this configuration.
10098
10099 2000-05-17 Alexandre Oliva <aoliva@cygnus.com>
10100
10101 * Makefile.in (configure-target-libiberty): Depend on
10102 configure-target-newlib.
10103
10104 2000-05-16 Alexandre Oliva <aoliva@cygnus.com>
10105
10106 * configure.in, Makefile.in: Merge all libffi-related
10107 configury stuff from the libgcj tree.
10108
10109 2000-05-16 Andrew Cagney <cagney@b1.cygnus.com>
10110
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.
10113
10114 2000-05-16 Andrew Cagney <cagney@b1.cygnus.com>
10115
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.
10120
10121 2000-05-15 David Edelsohn <edelsohn@gnu.org>
10122
10123 * configure.in: Special case powerpc*-*-aix* target_makefile_frag.
10124
10125 2000-05-13 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
10126
10127 * ltmain.sh: Preserve in relink_command any environment
10128 variables that may affect the linker behavior.
10129
10130 2000-05-12 Jeffrey A Law (law@cygnus.com)
10131
10132 * config.sub (basic_machine): Recognize hppa64 as a valid cpu type.
10133
10134 2000-05-10 Jim Wilson <wilson@cygnus.com>
10135
10136 * configure.in (ia64*-*-elf*): Add gdb and friends to noconfigdirs.
10137
10138 2000-05-08 Eli Zaretskii <eliz@is.elta.co.il>
10139
10140 * djunpack.bat: Change the Sed script to replace @V@ in fnchange.lst
10141 with the version name.
10142
10143 2000-05-01 Benjamin Kosnik <bkoz@cygnus.com>
10144
10145 * config.if: Tweak.
10146
10147 2000-04-23 Eli Zaretskii <eliz@is.elta.co.il>
10148
10149 * djunpack.bat: New file.
10150
10151 2000-04-19 Andrew Cagney <cagney@b1.cygnus.com>
10152
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.
10157
10158 2000-04-16 Dave Pitts <dpitts@cozx.com>
10159
10160 * config.sub (case $basic_machine): Change default for "ibm-*"
10161 to "openedition".
10162
10163 2000-04-12 Andrew Cagney <cagney@b1.cygnus.com>
10164
10165 * Makefile.in (gdb-taz): New target. GDB specific archive.
10166 (do-md5sum): New target.
10167 (MD5PROG): Define.
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.
10176
10177 2000-04-07 Andrew Cagney <cagney@b1.cygnus.com>
10178
10179 * configure (warn_cflags): Delete.
10180
10181 2000-04-05 Benjamin Kosnik <bkoz@cygnus.com>
10182 Martin v. Loewis <martin@loewis.home.cs.tu-berlin.de>
10183
10184 * configure.in (enable_libstdcxx_v3): Add.
10185 (target_libs): Add bits here to switch between libstdc++-v2 and
10186 libstdc++-v3.
10187 * config.if: And this file too.
10188 * Makefile.in: Add libstdc++-v3 targets.
10189
10190 2000-04-05 Michael Meissner <meissner@redhat.com>
10191
10192 * config.sub (d30v): Add d30v as a basic machine type.
10193
10194 2000-03-29 Jason Merrill <jason@casey.cygnus.com>
10195
10196 * configure.in: -linux-gnu*, not -linux-gnu.
10197
10198 2000-03-03 Andrew Cagney <cagney@b1.cygnus.com>
10199
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.
10205
10206 2000-02-27 Andreas Jaeger <aj@suse.de>
10207
10208 * configure.in: Add entry for mips*-*-linux*, move catch all
10209 *-*-*linux* entry below this one.
10210
10211 2000-02-27 Ian Lance Taylor <ian@zembu.com>
10212
10213 * ltconfig, ltmain.sh: Update to libtool 1.3.4.
10214
10215 2000-02-24 Nick Clifton <nickc@cygnus.com>
10216
10217 * config.sub: Support an OS of "wince".
10218
10219 2000-02-24 Andrew Cagney <cagney@b1.cygnus.com>
10220
10221 * config.guess, config.sub: Updated to match config's 2000-02-15
10222 version.
10223
10224 2000-02-23 Linas Vepstas <linas@linas.org>
10225
10226 * config.sub: Add support for Linux/IBM 370.
10227 * configure.in: Likewise.
10228
10229 2000-02-22 Nick Clifton <nickc@cygnus.com>
10230
10231 * configure.in: Add mips-pe, sh-pe and arm-wince-pe targets.
10232
10233 2000-02-20 Christopher Faylor <cgf@cygnus.com>
10234
10235 * config.guess: Guess "cygwin" rather than "cygwin32".
10236
10237 2000-02-16 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10238
10239 * configure (gcc_version): When setting, narrow search to
10240 lines containing `version_string'.
10241
10242 2000-02-15 Denis Chertykov <denisc@overta.ru>
10243
10244 * config.sub: Add support for avr target.
10245
10246 2000-02-01 Hans-Peter Nilsson <hp@bitrange.com>
10247
10248 * config.sub: Add mmix-knuth-mmixware.
10249
10250 2000-01-27 Christopher Faylor <cgf@redhat.com>
10251
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.
10256
10257 2000-01-24 Mark Mitchell <mark@codesourcery.com>
10258
10259 * Makefile.in (CXX_FOR_TARGET): Use g++, not xgcc, to invoke
10260 the C++ compiler.
10261
10262 2000-01-12 Richard Henderson <rth@cygnus.com>
10263
10264 * configure.in: Don't build some bits for beos.
10265
10266 2000-01-12 Joel Sherrill (joel@OARcorp.com)
10267
10268 * Makefile.in (CC_FOR_TARGET): Use newlib libraries as well
10269 as include files.
10270
10271 2000-01-06 Geoff Keating <geoffk@cygnus.com>
10272
10273 * configure.in: Use mt-aix43 to handle *_TARGET defs,
10274 not mh-aix43.
10275
10276 1999-12-14 Richard Henderson <rth@cygnus.com>
10277
10278 * config.guess (alpha-osf, alpha-linux): Detect ev67.
10279 * config.sub: Accept alphaev[78], alphaev8.
10280
10281 1999-12-03 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
10282
10283 * config.guess, config.sub: Update from autoconf.
10284
10285 Tue Nov 23 00:57:41 1999 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
10286
10287 * config-ml.in (sparc*-*-*): Disable sparcv9 support if the
10288 necessary libraries are missing.
10289
10290 1999-10-25 Andreas Schwab <schwab@suse.de>
10291
10292 * configure: Fix quoting inside arguments of eval.
10293
10294 1999-10-21 Nick Clifton <nickc@cygnus.com>
10295
10296 * config-ml.in: Allow suppression of some ARM multilibs.
10297
10298 Tue Sep 7 23:33:57 1999 Linas Vepstas <linas@linas.org>
10299
10300 * config.guess: Add OS/390 match pattern.
10301 * config.sub: Add mvs, openedition targets.
10302 * configure.in (i370-ibm-opened*): New.
10303
10304 1999-09-04 Steve Chamberlain <sac@pobox.com>
10305
10306 * config.sub: Add support for configuring for pj.
10307
10308 1999-08-31 Nick Clifton <nickc@cygnus.com>
10309
10310 * config.sub (maybe_os): Add support for configuring for fr30.
10311
10312 1999-08-25 Nick Clifton <nickc@cygnus.com>
10313
10314 * configure.in: Do not configure or build ld for AIX
10315 platforms. ld is known to be broken on these platforms.
10316
10317 Wed Aug 25 01:12:25 1999 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
10318
10319 * config-ml.in: Pass compiler flag corresponding to multidirs to
10320 subdir configures.
10321
10322 1999-08-09 Ian Lance Taylor <ian@zembu.com>
10323
10324 * Makefile.in (LDFLAGS): Define.
10325
10326 1999-08-08 Mumit Khan <khan@xraylith.wisc.edu>
10327
10328 * configure.in (i[3456]-*-mingw32*): Don't put gprof in
10329 noconfigdirs.
10330 (*-*-cygwin*): Likewise.
10331
10332 1999-08-08 Ian Lance Taylor <ian@zembu.com>
10333
10334 * mkdep: New file.
10335 * Makefile.in (GAS_SUPPORT_DIRS): Add mkdep.
10336 (BINUTILS_SUPPORT_DIRS): Add mkdep.
10337
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.
10341
10342 Wed Aug 4 02:07:14 1999 Jeffrey A Law (law@cygnus.com)
10343
10344 * config.sub (vxworks case): Use os=-vxworks, not os=vxworks.
10345
10346 1999-07-30 Alan Modra <alan@spri.levels.unisa.edu.au>
10347
10348 * Makefile.in (check-target-libio): Remove all-target-libstdc++
10349 dependency as this causes "make check" to globally "make all"
10350
10351 Tue Jun 22 23:45:18 1999 Tom Tromey <tromey@cygnus.com>
10352
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.
10363
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.
10368
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.
10378
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.
10387
10388 1999-07-22 Ian Lance Taylor <ian@zembu.com>
10389
10390 * Makefile.in (binutils.tar.bz2): Don't pass makeall.bat and
10391 configure.bat in SUPPORT_FILES.
10392 (gas+binutils.tar.bz2): Likewise.
10393
10394 * makeall.bat: Remove; obsolete.
10395
10396 1999-07-21 Ian Lance Taylor <ian@zembu.com>
10397
10398 From Mark Elbrecht:
10399 * configure.bat: Remove; obsolete.
10400
10401 1999-07-11 Ian Lance Taylor <ian@zembu.com>
10402
10403 * configure: Add -W -Wall to the default CFLAGS when compiling with
10404 gcc.
10405
10406 Thu Jul 8 12:32:23 1999 John David Anglin <dave@hiauly1.hia.nrc.ca>
10407
10408 * configure.in: Build ld, binutils & gas for hppa*-*-linux-gnu*.
10409
10410 1999-06-30 Mark Mitchell <mark@codesourcery.com>
10411
10412 * configure.in: Build ld on IRIX6.
10413
10414 1999-06-12 Ian Lance Taylor <ian@zembu.com>
10415
10416 * Makefile.in: Change distribution targets to use bzip2 instead of
10417 gzip.
10418 (TEXINFO_SUPPORT): Set to just texinfo/texinfo.tex.
10419 (taz): Don't use texinfo/gpl.texinfo or texinfo/lgpl.texinfo.
10420
10421 1999-06-04 Nick Clifton <nickc@cygnus.com>
10422
10423 * config.sub: Add mcore target.
10424
10425 1999-05-30 Cort Dougan <cort@cs.nmt.edu>
10426
10427 * config.guess (ppc-*-linux-gnu): Also use ld emul elf32ppclinux.
10428
10429 1999-05-25 H.J. Lu (hjl@gnu.org)
10430
10431 * config.guess (dummy): Changed to $dummy.
10432
10433 1999-05-24 Nick Clifton <nickc@cygnus.com>
10434
10435 * config.sub: Tidied up case statements.
10436
10437 1999-05-22 Ben Elliston <bje@cygnus.com>
10438
10439 * config.guess: Handle NEC UX/4800. Contributed by Jiro Takabatake
10440 <jiro@din.or.jp>.
10441
10442 * config.guess: Merge with FSF version. Future changes will be
10443 more accurately recorded in this ChangeLog.
10444 * config.sub: Likewise.
10445
10446 1999-05-20 Stephen L Moshier <moshier@world.std.com>
10447
10448 * Makefile.in (GCC_FOR_TARGET): Add -I$(build_tooldir)/include.
10449
10450 1999-04-30 Tom Tromey <tromey@cygnus.com>
10451
10452 * ltmain.sh: [mode link] Always use CC given by ltconfig.
10453
10454 1999-04-23 Tom Tromey <tromey@cygnus.com>
10455
10456 * ltconfig, ltmain.sh: Update to libtool 1.2f.
10457
10458 1999-04-20 Drew Moseley <dmoseley@cygnus.com>
10459
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.
10463
10464 Tue Apr 13 22:50:54 1999 Donn Terry (donn@interix.com)
10465 Martin Heller (Ing.-Buero_Heller@t-online.de)
10466
10467 * config.guess (interix Alpha): Add.
10468
10469 1999-04-11 Richard Henderson <rth@cygnus.com>
10470
10471 * configure.in (i?86-*-beos*): Do config gperf; don't config
10472 gdb, newlib, or libgloss.
10473
10474 1999-04-11 Alexandre Oliva <oliva@dcc.unicamp.br>
10475
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
10478 from multidirs.
10479
10480 1999-04-10 Philipp Thomas (kthomas@gwdg.de)
10481
10482 * config.sub: Set basic_machine to i586 when target_alias = k6-*.
10483
10484 1999-04-08 Nick Clifton <nickc@cygnus.com>
10485
10486 * config.sub: Add support for mcore targets.
10487
10488 1999-04-07 Michael Meissner <meissner@cygnus.com>
10489
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.
10493
10494 1999-04-07 Drew Moseley <dmoseley@cygnus.com>
10495
10496 * Makefile.in (all-target-cygmon): Added all-target-bsp to the
10497 dependency list for all-target-cygmon.
10498
10499 1999-04-05 Doug Evans <devans@casey.cygnus.com>
10500
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.
10504
10505 1999-04-04 Ian Lance Taylor <ian@zembu.com>
10506
10507 * missing: Update to version from current automake.
10508
10509 Fri Apr 2 15:11:32 1999 H.J. Lu (hjl@gnu.org)
10510
10511 * configure (gxx_include_dir): Removed.
10512
10513 * configure.in (gxx_include_dir): Handle it.
10514 * Makefile.in: Likewise.
10515
10516 1999-03-29 Gavin Romig-Koch <gavin@cygnus.com>
10517
10518 * config.sub (mips64vr4111,mips64vr4111el) Add.
10519
10520 1999-03-21 Ben Elliston <bje@cygnus.com>
10521
10522 * config.guess: Correct typo for detecting ELF on FreeBSD.
10523
10524 Thu Mar 18 00:17:50 1999 Mark Elbrecht <snowball3@usa.net>
10525
10526 * configure.in (pc-msdosdjgpp): Set host_makefile_frag to
10527 config/mh-djgpp.
10528
10529 Thu Mar 11 18:37:23 1999 Drew Moseley <dmoseley@cygnus.com>
10530
10531 * Makefile.in (all-target-bsp): Added all-gcc all-binutils and
10532 all-target-newlib to dependency list for all-target-bsp.
10533
10534 Thu Mar 11 01:19:31 1999 Mumit Khan <khan@xraylith.wisc.edu>
10535
10536 * config.sub: Add i386-uwin support.
10537 * config.guess: Likewise.
10538
10539 Thu Mar 11 01:07:55 1999 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
10540
10541 * configure.in: cleanup, add mh-*pic handling for arm, special
10542 case powerpc*-*-aix*
10543
10544 Wed Mar 10 18:35:07 1999 Jeff Johnston <jjohnstn@cygnus.com>
10545
10546 * configure.in (noconfigdirs): Removed target-libgloss so libnosys.a
10547 can be built.
10548
10549 Wed Mar 10 17:39:09 1999 Drew Moseley <dmoseley@cygnus.com>
10550
10551 * configure.in: Added bsp support to arm-*-coff and arm-*-elf
10552 targets.
10553
10554 1999-03-02 Nick Clifton <nickc@cygnus.com>
10555
10556 * config.sub: Rename CYGNUS LOCAL to EGCS LOCAL
10557
10558 1999-02-28 Geoffrey Noer <noer@cygnus.com>
10559
10560 * config.sub: Check for "cygwin*" rather than "cygwin32*"
10561
10562 1999-02-24 Nick Clifton <nickc@cygnus.com>
10563
10564 * config.sub: Fix typo in arm recognition.
10565
10566 1999-02-24 Drew Moseley <dmoseley@cygnus.com>
10567
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.
10572
10573 1999-02-24 Stan Shebs <shebs@andros.cygnus.com>
10574
10575 * configure.in (*-*-windows*): Remove, no longer used.
10576
10577 1999-02-19 Ben Elliston <bje@cygnus.com>
10578
10579 * config.guess: Automatically recognise ELF on FreeBSD. From Niall
10580 Smart and improved by Andrew Cagney.
10581
10582 1999-02-18 Marc Espie <espie@cvs.openbsd.org>
10583
10584 * config.guess: Recognize openbsd-*-hppa.
10585
10586 1999-02-17 H.J. Lu (hjl@gnu.org)
10587
10588 * Makefile.in (REALLY_SET_LIB_PATH): Append $$$(RPATH_ENVVAR)
10589 only if it is not empty.
10590
10591 1999-02-17 Nick Clifton <nickc@cygnus.com>
10592
10593 Patch from: Scott Bambrough <scottb@corelcomputer.com>
10594
10595 * config.guess: Modified to recognize uname's armv* syntax.
10596
10597 * config.sub: Modified to recognize uname's armv* syntax.
10598
10599 1999-02-17 Mark Salter <msalter@cygnus.com>
10600
10601 * configure.in: Added target-bsp for sparclite.
10602
10603 1999-02-08 Richard Henderson <rth@cygnus.com>
10604
10605 * config.sub: Recognize alphapca5[67] and up to alphaev8.
10606
10607 1999-02-08 Nick Clifton <nickc@cygnus.com>
10608
10609 * configure.in: Add support for strongarm port.
10610 * config.sub: Add support for strongarm target.
10611
10612 1999-02-07 Mumit Khan <khan@xraylith.wisc.edu>
10613
10614 * configure.in (*-*-cygwin32*): Use config/mh-cygwin instead of
10615 the old name config/mh-cygwin32.
10616 Enable texinfo.
10617
10618 1999-02-04 Ian Lance Taylor <ian@cygnus.com>
10619
10620 * configure.in: Do build ld for ix86 Solaris.
10621
10622 1999-02-02 Jim Wilson <wilson@cygnus.com>
10623
10624 * Makefile.in (EXTRA_GCC_FLAGS): Set AR to $AR instead of
10625 $AR_FOR_TARGET. Likewise for RANLIB.
10626
10627 1999-02-02 Catherine Moore <clm@cygnus.com>
10628
10629 * config.sub (oabi): Recognize.
10630 * configure.in (arm-*-oabi): Handle.
10631
10632 1999-01-30 Robert Lipe (robertlipe@usa.net)
10633
10634 * config.guess: Improve detection of i686 on UnixWare 7.
10635
10636 1999-01-30 Mumit Khan <khan@xraylith.wisc.edu>
10637
10638 * config.guess: Add support for i386-pc-interix.
10639 * config.sub: Likewise.
10640 * configure.in: Likewise.
10641
10642 1999-01-18 Christopher Faylor <cgf@cygnus.com>
10643
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
10647 needed.
10648
10649 1998-12-30 Christopher Faylor <cgf@cygnus.com>
10650
10651 * configure.in: makefile stub for cygwin target is probably
10652 unnecessary. Remove it for now.
10653
10654 1998-12-30 Christopher Faylor <cgf@cygnus.com>
10655
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.
10660
10661 1998-12-23 Jeffrey A Law (law@cygnus.com)
10662
10663 * config.sub: Clean up handling of hppa2.0.
10664
10665 1998-12-22 Rodney Brown (rodneybrown@pmsc.com)
10666
10667 * config.guess: Use C code to identify more HP machines.
10668
10669 Thu Dec 17 01:22:30 1998 Jeffrey A Law (law@cygnus.com)
10670
10671 * config.sub: Handle hppa2.0.
10672
10673 Tue Dec 15 17:02:58 1998 Bob Manson <manson@charmed.cygnus.com>
10674
10675 * configure.in: Add cygmon for x86-coff and x86-elf. Configure
10676 cygmon for all sparclite targets, regardless of object format.
10677
10678 1998-12-15 Mark Salter <msalter@cygnus.com>
10679
10680 * configure.in: Added target-bsp for several target architectures.
10681
10682 * Makefile.in: Added rules for bsp.
10683
10684 Fri Dec 4 01:34:02 1998 Jeffrey A Law (law@cygnus.com)
10685
10686 * config.guess: Improve detection of hppa2.0 processors.
10687
10688 Fri Dec 4 01:33:05 1998 Niall Smart <nialls@euristix.ie>
10689
10690 * config.guess: Recognize FreeBSD using ELF automatically.
10691
10692 1998-11-26 Manfred Hollstein <manfred@s-direktnet.de>
10693
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.
10698
10699 Wed Nov 18 18:28:45 1998 Geoffrey Noer <noer@cygnus.com>
10700
10701 * ltconfig: import from libtool, after changing libtool to
10702 account for the cygwin name change.
10703
10704 Wed Nov 18 18:09:14 1998 Geoffrey Noer <noer@cygnus.com>
10705
10706 * Makefile.in: CC_FOR_TARGET and CXX_FOR_TARGET should also
10707 include newlib/libc/sys/cygwin and newlib/libc/sys/cygwin32.
10708
10709 Wed Nov 18 20:13:29 1998 Christopher Faylor <cgf@cygnus.com>
10710
10711 * configure.in: Add libtermcap to list of cygwin dependencies.
10712
10713 1998-11-17 Geoffrey Noer <noer@cygnus.com>
10714
10715 * Makefile.in: modify CC_FOR_TARGET and CXX_FOR_TARGET so that
10716 they include winsup/include when it's a cygwin target.
10717
10718 1998-11-12 Tom Tromey <tromey@cygnus.com>
10719
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.
10727
10728 1998-11-12 Geoffrey Noer <noer@cygnus.com>
10729
10730 * Makefile.in: lose "32" from comment about cygwin.
10731
10732 1998-11-05 Nick Clifton <nickc@cygnus.com>
10733
10734 * configure.in: Use -Os to build target libraries for the fr30.
10735
10736 1998-11-04 Dave Brolley <brolley@cygnus.com>
10737
10738 * config.sub: Add fr30.
10739
10740 1998-11-02 Geoffrey Noer <noer@cygnus.com>
10741
10742 * configure.in: drop "32" from config/mh-cygwin32. Check
10743 cygwin* instead of cygwin32*.
10744 * config.sub: Check cygwin* instead of cygwin32*.
10745
10746 1998-10-22 Robert Lipe <robertl@dgii.com>
10747
10748 * config.guess: Match any version of Unixware7.
10749
10750 1998-10-20 Syd Polk <spolk@cygnus.com>
10751
10752 * Makefile.in configure.in: Add the ability to use tcl8.1 and tk8.1
10753 if desired.
10754
10755 1998-10-18 Jeffrey A Law (law@cygnus.com)
10756
10757 * config.if (cxx_interface, libstdcxx_interface): Do not try to set
10758 these if the appropriate directories and files to not exist.
10759
10760 1998-10-14 Jeffrey A Law (law@cygnus.com)
10761
10762 * Makefile.in (DEVO_SUPPORT): Add config.if.
10763
10764 1998-10-13 Manfred Hollstein <manfred@s-direktnet.de>
10765
10766 * configure: Add pattern to replace "build_tooldir"'s
10767 definition in the generated Makefile with "tooldir"'s
10768 actual value.
10769
10770 Tue Oct 13 09:17:06 1998 Jeffrey A Law (law@cygnus.com)
10771
10772 * config.sub: Bring back lost sparcv9.
10773
10774 * Makefile.in (all-snvavigator): Remove all-flexlm dependency.
10775
10776 Mon Oct 12 12:09:44 1998 Jeffrey A Law (law@cygnus.com)
10777
10778 * Makefile.in (CHILL_FOR_TARGET): Mirror recent changes to
10779 CC_FOR_TARGET and friends.
10780
10781 Mon Oct 12 12:09:30 1998 Alexandre Oliva <oliva@dcc.unicamp.br>
10782
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.
10787
10788 Wed Sep 30 22:20:50 1998 Robert Lipe <robertl@dgii.com>
10789
10790 * config.sub: Add support for i[34567]86-pc-udk.
10791 * configure.in: Likewise.
10792
10793 Wed Sep 30 19:23:48 1998 Geoffrey Noer <noer@cygnus.com>
10794
10795 * Makefile.in: add bzip2 package building bits for user
10796 tools module
10797 * configure.in: ditto
10798
10799 Wed Sep 30 03:00:05 1998 Jeffrey A Law (law@cygnus.com)
10800
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.
10807
10808 1998-09-30 Manfred Hollstein <manfred@s-direktnet.de>
10809
10810 * configure.in (target_subdir): Remove duplicate line.
10811
10812 Tue Sep 29 22:45:41 1998 Felix Lee <flee@cygnus.com>
10813
10814 * Makefile.in (all-automake): fix dependencies.
10815
10816 Mon Sep 28 04:04:27 1998 Jeffrey A Law (law@cygnus.com)
10817
10818 * configure.in: Minor cleanups for building in the $(target_alias)
10819 subdir.
10820
10821 1998-09-22 Jim Wilson <wilson@cygnus.com>
10822
10823 * Makefile.in (bootstrap): Set r and s before make all. Use
10824 BASE_FLAGS_TO_PASS in make all.
10825 (cross): Likewise.
10826
10827 1998-09-20 Mark Mitchell <mark@markmitchell.com>
10828
10829 * Makefile.in (bootstrap): Pass TARGET_FLAGS_TO_PASS to `make all'.
10830
10831 Sun Sep 20 00:13:02 1998 Richard Henderson <rth@cygnus.com>
10832
10833 * config.sub: Fix typo in last change.
10834
10835 1998-09-19 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
10836
10837 * config.sub: Add support for C4x target.
10838 * configure.in: Likewise.
10839
10840 1998-09-13 David S. Miller <davem@pierdol.cobaltmicro.com>
10841
10842 * config.sub: Recognize sparcv9 just like sparc64.
10843
10844 Wed Sep 9 15:44:52 1998 Robert Lipe <robertl@dgii.com>
10845
10846 * config.guess: Match "Pent II" or "PentII" for OpenServer.
10847
10848 Tue Sep 8 01:18:39 1998 Jeffrey A Law (law@cygnus.com)
10849
10850 * config.guess: Correctly identify Pentium II sco boxes.
10851
10852 * config.guess: Fix "tr" code. From Weiwen Liu.
10853
10854 Sat Sep 5 13:56:52 1998 John Hughes <john@Calva.COM>
10855
10856 * configure.in: Do not assume x86-svr4 or x86-unixware can handle
10857 stabs.
10858
10859 Sat Sep 5 02:12:02 1998 Jeffrey A Law (law@cygnus.com)
10860
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.
10867
10868 Sun Aug 30 22:27:02 1998 Lutz Wohlrab <lutz.wohlrab@informatik.tu-chemnitz.de>
10869
10870 * config.guess: Avoid assumptions about "tr" behaves when
10871 LANG is set to something other than English.
10872
10873 Sun Aug 30 22:14:44 1998 H.J. Lu (hjl@gnu.org)
10874
10875 * configure (gxx_include_dir): Changed to
10876 '${prefix}/include/g++'-${libstdcxx_interface}.
10877
10878 * config.if: New to determine the interfaces.
10879
10880 Sun Aug 30 21:15:19 1998 Mark Klein (mklein@dis.com)
10881
10882 * config.guess: Detect and handle MPE/IX.
10883 * config.sub: Deal with MPE/IX.
10884
10885 Sat Aug 29 14:32:55 1998 David Edelsohn <edelsohn@mhpcc.edu>
10886
10887 * configure.in: Use mh-aix43.
10888
10889 1998-07-29 Manfred Hollstein <manfred@s-direktnet.de>
10890
10891 * configure: Fix --without/--disable cases for gxx-include-dir.
10892
10893 Fri Aug 28 12:28:26 1998 Per Bothner <bothner@cygnus.com>
10894
10895 * mdata-sh: Imported. Needed for automake support.
10896
10897 Thu Aug 13 12:49:29 1998 H.J. Lu <hjl@gnu.org>
10898
10899 * Makefile.in (taz): Try "chmod -R og=u ." before
10900 "chmod og=u `find . -print`".
10901
10902 Fri Jul 31 09:38:33 1998 Catherine Moore <clm@cygnus.com>
10903
10904 * configure.in: Add arm-elf and thumb-elf support.
10905
10906 Mon Jul 27 16:23:58 1998 Doug Evans <devans@canuck.cygnus.com>
10907
10908 * Makefile.in: Undo previous patch.
10909
10910 Fri Jul 24 19:55:24 1998 Doug Evans <devans@canuck.cygnus.com>
10911
10912 * Makefile.in (INSTALL_TARGET): Move EXTRA_TARGET_HOST_INSTALL_MODULES
10913 to here ...
10914 (install-no-fixedincludes): and here
10915 (INSTALL_MODULES): ... from here.
10916
10917 Fri Jul 24 17:01:42 1998 Ian Lance Taylor <ian@cygnus.com>
10918
10919 * config.sub: Merge with FSF.
10920
10921 * config.guess: Merge with FSF.
10922
10923 Fri Jul 24 08:43:36 1998 Doug Evans <devans@canuck.cygnus.com>
10924
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.
10933
10934 1998-07-23 Brendan Kehoe <brendan@cygnus.com>
10935
10936 * Makefile.in (all-target-libjava): Depend on all-gcc and
10937 all-target-newlib.
10938 (configure-target-libjava): Depend on $(ALL_GCC).
10939
10940 Sat Jul 18 14:32:43 CDT 1998 Robert Lipe <robertl@dgii.com>
10941
10942 * config.guess: (*-pc-sco3.2v5) Add detection for Pentium II.
10943 (*-pc-unixware7) Add detection for Pentium II, Pentium Pro.
10944
10945 Fri Jul 17 13:30:18 1998 Ian Lance Taylor <ian@cygnus.com>
10946
10947 * ylwrap: Change absolute path checks to check for DOS style path
10948 names.
10949
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).
10952
10953 * config-ml.in: Default to being verbose, to match Feb 18 change to
10954 configure.
10955
10956 Thu Jul 16 12:29:51 1998 Ian Lance Taylor <ian@cygnus.com>
10957
10958 Brought over from egcs:
10959
10960 Sat Jun 27 22:46:32 1998 Jeffrey A Law (law@cygnus.com)
10961
10962 * configure.in (target_subdir): Set to ${target_alias} instead
10963 of "libraries".
10964
10965 Mon Sep 1 16:45:44 1997 Jim Wilson <wilson@cygnus.com>
10966
10967 * configure.in (target_subdir): Set to libraries if enable_multilib.
10968
10969 Wed Jul 15 01:00:54 1998 Ian Lance Taylor <ian@cygnus.com>
10970
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 `.'.
10974
10975 Tue Jul 14 23:41:03 1998 Ian Lance Taylor <ian@cygnus.com>
10976
10977 * configure.in: Strip any --no option from CONFIG_ARGUMENTS, to
10978 avoid confusion with --no-recursion.
10979
10980 Tue Jul 14 15:37:41 1998 Geoffrey Noer <noer@cygnus.com>
10981
10982 * configure.in: Win32 hosts shouldn't use install -x
10983 * install-sh: remove -x option, and special .exe-handling
10984 hack.
10985
10986 Tue Jul 14 15:28:41 1998 Richard Henderson <rth@cygnus.com>
10987
10988 * config.guess: Recognize i586-pc-beos.
10989 * configure.in: Don't build some bits for beos.
10990
10991 Tue Jul 14 13:22:18 1998 Ian Lance Taylor <ian@cygnus.com>
10992
10993 * configure: If CC is set but CFLAGS is not, and CC is gcc, make
10994 CFLAGS default to -O2.
10995
10996 * ltmain.sh: Add some hacks to make SunOS --enable-shared work
10997 when using GNU ld.
10998
10999 Fri Jul 10 13:18:23 1998 Ian Lance Taylor <ian@cygnus.com>
11000
11001 * ltmain.sh: Correct install when using a different shell.
11002
11003 Tue Jul 7 15:24:38 1998 Ian Lance Taylor <ian@cygnus.com>
11004
11005 * ltconfig, ltmain.sh: Update to libtool 1.2b.
11006
11007 Thu Jul 2 13:57:36 1998 Klaus Kaempf <kkaempf@rmi.de>
11008
11009 * makefile.vms: Update to build binutils/makefile.vms. Add install
11010 target.
11011
11012 Wed Jul 1 16:45:21 1998 Ian Lance Taylor <ian@cygnus.com>
11013
11014 * ltconfig: Update to correct AIX handling.
11015
11016 Sat Jun 27 22:46:32 1998 Jeffrey A Law (law@cygnus.com)
11017
11018 * Makefile.in (BASE_FLAGS_TO_PASS): Add TARGET_SUBDIR.
11019
11020 * configure.in (target_subdir): Set to ${target_alias} instead
11021 of "libraries".
11022
11023 1998-06-26 Manfred Hollstein <manfred@s-direktnet.de>
11024
11025 * Makefile.in (BASE_FLAGS_TO_PASS): Add gcc_version_trigger.
11026 (Makefile): Depend on $(gcc_version_trigger).
11027
11028 * configure (gcc_version): Change default initializer to empty
11029 string.
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}.
11035
11036 1998-06-24 Manfred Hollstein <manfred@s-direktnet.de>
11037
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.
11043
11044 1998-06-24 Manfred Hollstein <manfred@s-direktnet.de>
11045
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.
11050
11051 Wed Jun 24 16:01:59 1998 John Metzler <jmetzler@cygnus.com>
11052
11053 * configure.in (noconfigdirs): Add configure pattern for mips tx39
11054 cygmon
11055
11056 Tue Jun 23 22:42:32 1998 Mark Alexander <marka@cygnus.com>
11057
11058 * configure.in: Add cygmon and libstub support for mn10200.
11059
11060 1998-06-19 Manfred Hollstein <manfred@s-direktnet.de>
11061
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
11067 and libsubdir.
11068
11069 Fri Jun 19 02:36:59 1998 Alexandre Oliva <oliva@dcc.unicamp.br>
11070
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.
11076
11077 Thu Jun 18 11:26:03 1998 Robert Lipe <robertl@dgii.com>
11078
11079 * config.guess: Detection of Pentium II for *-sco-3.2v5*.
11080
11081 Mon Jun 15 14:53:54 1998 Andrew Cagney <cagney@b1.cygnus.com>
11082
11083 * Makefile.in (grep): Grep no longer depends on libiberty.
11084
11085 Fri Jun 12 14:03:34 1998 Syd Polk <spolk@cygnus.com>
11086
11087 * Makefile.in: all-snavigator needs all-libgui.
11088
11089 Thu Jun 11 19:43:47 1998 Mark Alexander <marka@cygnus.com>
11090
11091 * configure.in: Add cygmon and libstub support for mn10300.
11092
11093 Wed Jun 10 11:19:47 1998 Ian Lance Taylor <ian@cygnus.com>
11094
11095 * missing: Update to version from automake 1.3.
11096
11097 * ltmain.sh: On installation, don't get confused if the same name
11098 appears more than once in the list of library names.
11099
11100 Wed Jun 3 14:51:42 1998 Ian Lance Taylor <ian@cygnus.com>
11101
11102 * config.sub: Accept m68060 and m5200 as CPU names.
11103
11104 Mon Jun 1 17:25:16 1998 Ian Lance Taylor <ian@cygnus.com>
11105
11106 * configure: Use && rather than using -a in test, because odd
11107 strings can confuse test.
11108 * configure.in: Likewise.
11109
11110 Thu May 28 19:31:13 1998 Ian Lance Taylor <ian@cygnus.com>
11111
11112 * ltconfig, ltmain.sh: Bring in Visual C++ support.
11113
11114 Sat May 23 23:44:13 1998 Alexandre Oliva <oliva@dcc.unicamp.br>
11115
11116 * Makefile.in (boostrap2-lean, bootstrap3-lean,
11117 bootstrap4-lean): New targets.
11118
11119 Mon May 11 23:55:56 1998 Jeffrey A Law (law@cygnus.com)
11120
11121 * mpw-* Delete. Not used.
11122
11123 Mon May 11 23:11:34 1998 Jeffrey A Law (law@cygnus.com)
11124
11125 * COPYING.LIB: Update FSF address.
11126
11127 Fri May 8 01:30:20 1998 Ian Lance Taylor <ian@cygnus.com>
11128
11129 * ltconfig, ltmain.sh: Update to libtool 1.2a.
11130
11131 * Makefile.in (GASB_SUPPORT_DIRS): Remove intl; already included via
11132 GAS_SUPPORT_DIRS.
11133
11134 Thu May 7 17:27:35 1998 Ian Lance Taylor <ian@cygnus.com>
11135
11136 * ltconfig, ltmain.sh: Avoid producing a version number if
11137 -version-info was not used.
11138
11139 Tue May 5 18:02:24 1998 Ian Lance Taylor <ian@cygnus.com>
11140
11141 * configure.in: Add --with-newlib to CONFIG_ARGUMENTS if we are
11142 building with newlib.
11143
11144 1998-04-30 Paul Eggert <eggert@twinsun.com>
11145
11146 * Makefile.in (EXTRA_GCC_FLAGS): Remove backslash at end;
11147 Solaris `make' causes it to continue to next definition.
11148
11149 Tue Apr 28 16:24:24 1998 Jason Molenda (crash@bugshack.cygnus.com)
11150
11151 * Makefile.in (install-gdbtk): Call this 'install-gdb' so that
11152 the right GUI libraries and files are installed along with GDB.
11153
11154 Tue Apr 28 18:11:24 1998 Ian Lance Taylor <ian@cygnus.com>
11155
11156 * configure.in: Change alpha to alpha* in several places.
11157
11158 Tue Apr 28 07:42:00 1998 Mark Alexander <marka@cygnus.com>
11159
11160 * config.sub: Recognize sparc86x.
11161
11162 Tue Apr 28 07:35:02 1998 Michael Meissner <meissner@cygnus.com>
11163
11164 * configure.in (--enable-target-optspace): Remove debug echo.
11165
11166 Thu Apr 23 21:31:16 1998 Jim Wilson <wilson@cygnus.com>
11167
11168 * configure: Set CXXFLAGS from CXXFLAGS, not CFLAGS.
11169
11170 Thu Apr 23 12:26:38 1998 Ian Lance Taylor <ian@cygnus.com>
11171
11172 * ltconfig: Update cygwin32 support.
11173
11174 * Makefile.in (GAS_SUPPORT_DIRS): Add intl.
11175 (BINUTILS_SUPPORT_DIRS, GASB_SUPPORT_DIRS): Likewise.
11176 (GDB_SUPPORT_DIRS): Likewise.
11177
11178 Wed Apr 22 12:30:10 1998 Michael Meissner <meissner@cygnus.com>
11179
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
11183 not used.
11184 * configure.in (target_cflags): Ditto for d30v.
11185
11186 Tue Apr 21 23:06:54 1998 Tom Tromey <tromey@cygnus.com>
11187
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.
11193
11194 1998-04-19 Brendan Kehoe <brendan@cygnus.com>
11195
11196 * configure.in (host_tools): Fix typo, lbtool -> libtool.
11197
11198 Fri Apr 17 16:20:42 1998 Ian Lance Taylor <ian@cygnus.com>
11199
11200 * Makefile.in (all-bfd): Depend upon all-libiberty.
11201
11202 * ltconfig, ltmain.sh: Bring in newer cygwin32 support.
11203
11204 Fri Apr 17 12:22:22 1998 Bob Manson <manson@charmed.cygnus.com>
11205
11206 * Makefile.in: Add libstub.
11207
11208 * configure.in: Ditto. Build libstub for targets that have cygmon
11209 support.
11210
11211 Tue Apr 14 18:01:55 1998 Ian Lance Taylor <ian@cygnus.com>
11212
11213 * configure.in: Don't set PICFLAG on ix86-cygwin32.
11214
11215 Tue Apr 14 12:24:45 1998 J. Kean Johnston <jkj@sco.com>
11216
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.
11219
11220 Tue Apr 14 11:33:51 1998 Krister Walfridsson <cato@df.lth.se>
11221
11222 * configure: Define DEFAULT_M4 by searching PATH.
11223 * Makfile.in: Use DEFAULT_M4.
11224
11225 Mon Apr 13 15:37:24 1998 Ian Lance Taylor <ian@cygnus.com>
11226
11227 * ltconfig: Add cygwin32 support.
11228
11229 * Makefile.in, configure.in: Add libtool as a native only directory
11230 to configure and build.
11231
11232 Sun Apr 12 20:58:46 1998 Jeffrey A Law (law@cygnus.com)
11233
11234 * Makefile.in (INSTALL_MODULES): Remove texinfo.
11235
11236 Wed Apr 8 13:18:56 1998 Philippe De Muyter <phdm@macqel.be>
11237
11238 * Makefile.in (EXTRA_GCC_FLAGS): XFOO lines shortened.
11239
11240 Thu Apr 2 14:48:44 1998 Geoffrey Noer <noer@cygnus.com>
11241
11242 * Makefile.in: add ash make rules
11243 * configure.in: add ash to native_only and host_tools lists
11244
11245 Thu Mar 26 12:53:20 1998 Tom Tromey <tromey@cygnus.com>
11246
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.
11252
11253 * configure.in (host_tools): Added gettext.
11254 (native_only): Likewise.
11255 (noconfigdirs) [various cases]: Likewise.
11256 (host_libs): Added intl.
11257
11258 Thu Mar 26 15:00:11 1998 Keith Seitz <keiths@onions.cygnus.com>
11259
11260 * configure: Do not disable building gdbtk for cygwin32 hosts.
11261
11262 Wed Mar 25 10:04:18 1998 Nick Clifton <nickc@cygnus.com>
11263
11264 * configure.in: Add thumb-coff target.
11265 * config.sub: Add thumb-coff target.
11266
11267 Wed Mar 25 11:49:12 1998 Jason Molenda (crash@bugshack.cygnus.com)
11268
11269 * Makefile.in: Revert yesterday's change.
11270 (all-target-winsup): all-target-librx stays out of here.
11271
11272 Tue Mar 24 16:58:29 1998 Jason Molenda (crash@bugshack.cygnus.com)
11273
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++.
11278
11279 Tue Mar 24 18:28:12 1998 Eric Mumpower <nocturne@cygnus.com>
11280
11281 * Makefile.in (BASE_FLAGS_TO_PASS): Pass $(lispdir) down to
11282 recursive makes
11283
11284 Tue Mar 24 11:37:45 1998 Ian Lance Taylor <ian@cygnus.com>
11285
11286 * Makefile.in (CC_FOR_TARGET): Use $(TARGET_SUBDIR) when passing -B
11287 for newlib directory.
11288 (CXX_FOR_TARGET): Likewise.
11289
11290 Mon Mar 23 11:30:21 1998 Jeffrey A Law (law@cygnus.com)
11291
11292 * ltconfig: Update after libtool/ltconfig.in change for
11293 hpux11.
11294
11295 Fri Mar 20 18:51:43 1998 Ian Lance Taylor <ian@cygnus.com>
11296
11297 * ltconfig, ltmain.sh: Update to libtool 1.2.
11298
11299 Fri Mar 20 09:32:14 1998 Manfred Hollstein <manfred@s-direktnet.de>
11300
11301 * Makefile.in (install-gcc): Don't specify LANGUAGES here.
11302 (install-gcc-cross): Instead, override LANGUAGES here.
11303
11304 1998-03-18 Dave Love <d.love@dl.ac.uk>
11305
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.
11308
11309 Wed Mar 18 09:24:59 1998 Nick Clifton <nickc@cygnus.com>
11310
11311 * configure.in: Add Thumb-pe target.
11312
11313 Tue Mar 17 16:59:00 1998 Syd Polk <spolk@cygnus.com>
11314
11315 * Makefile.in - changed sn targets to snavigator
11316 * configure.in - changed sn targets to snavigator
11317
11318 Tue Mar 17 10:33:28 1998 Manfred Hollstein <manfred@s-direktnet.de>
11319
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.
11323
11324 Tue Mar 17 10:22:37 1998 H.J. Lu (hjl@gnu.ai.mit.edu)
11325
11326 * configure: When making link, also check the current
11327 directory. The configure scripts may create one.
11328
11329 Fri Mar 6 01:02:03 1998 Richard Henderson <rth@cygnus.com>
11330
11331 * config.sub: Accept alphapca56 and alphaev6 properly.
11332
11333 Fri Mar 6 00:14:55 1998 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
11334
11335 * configure.in: Revert 3 Jan change for powerpc-linux-gnulibc1.
11336
11337 Mon Feb 23 15:09:18 1998 Bruno Haible <bruno@linuix.mathematik.uni-karlsruhe.de
11338
11339 * config.sub (sco5): Fix typo.
11340
11341 Mon Feb 23 14:46:06 1998 Ian Lance Taylor <ian@cygnus.com>
11342
11343 * Makefile.in (INSTALL_MODULES): Move install-tcl before
11344 install-itcl.
11345 (install-itcl): Remove dependency on install-tcl.
11346
11347 Mon Feb 23 09:53:28 1998 Mark Alexander <marka@cygnus.com>
11348
11349 * configure.in: Remove libgloss from noconfigdirs for MN10300.
11350
11351 Thu Feb 19 13:40:41 1998 Ian Lance Taylor <ian@cygnus.com>
11352
11353 * configure.in: Don't build libgui for a cygwin32 target when not on
11354 a cygwin32 host.
11355
11356 Wed Feb 18 12:29:00 1998 Jason Molenda (crash@bugshack.cygnus.com)
11357
11358 * configure (redirect): Set to null, so default behavior of
11359 configure is now --verbose.
11360
11361 1998-02-16 Dave Love <d.love@dl.ac.uk>
11362
11363 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): Run configure with
11364 CONFIG_SITE=/dev/null to forestall lossage with site configuration.
11365
11366 Mon Feb 16 12:23:53 1998 Manfred Hollstein <Manfred.Hollstein@ks.sel.alcatel.de>
11367
11368 * Makefile.in (BASE_FLAGS_TO_PASS, EXTRA_TARGET_FLAGS): Really add
11369 this change to sync Makefile.in with its ChangeLog entries.
11370
11371 Thu Feb 12 15:03:08 1998 H.J. Lu <hjl@gnu.org>
11372
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
11375 parallel builds.
11376
11377 Sat Feb 7 15:19:18 1998 Ian Lance Taylor <ian@cygnus.com>
11378
11379 * ltconfig, ltmain.sh: Update from libtool 1.0i.
11380
11381 Fri Feb 6 01:33:52 1998 Manfred Hollstein <manfred@s-direktnet.de>
11382
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.
11386
11387 * configure: Emit a definition for the new macro enable_shared
11388 into each Makefile.
11389
11390 Thu Feb 5 17:01:12 1998 Jason Molenda (crash@bugshack.cygnus.com)
11391
11392 * configure.in (host_tools, native_only): Add libtool.
11393
11394 Wed Feb 4 16:53:58 1998 Geoffrey Noer <noer@cygnus.com>
11395
11396 * configure.in: add target-gperf to noconfigdirs for Cygwin32.
11397 Fix typo in ming config comment.
11398
11399 Wed Feb 4 18:56:13 1998 Ian Lance Taylor <ian@cygnus.com>
11400
11401 * ltconfig, ltmain.sh: Update from libtool 1.0h.
11402
11403 Mon Feb 2 19:38:19 1998 Ian Lance Taylor <ian@cygnus.com>
11404
11405 * config.sub: Add tic30 cases, and map c30 to tic30.
11406
11407 Sun Feb 1 02:40:41 1998 Richard Henderson <rth@cygnus.com>
11408
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.
11415
11416 Fri Jan 30 17:18:32 1998 Geoffrey Noer <noer@cygnus.com>
11417
11418 * configure.in: Remove expect from noconfigdirs when target
11419 is cygwin32. OK to build expect and dejagnu with Canadian
11420 Cross.
11421
11422 Wed Jan 28 12:58:49 1998 Ian Lance Taylor <ian@cygnus.com>
11423
11424 * configure.in: Do build expect, dejagnu, and cvssrc for a cygwin32
11425 host.
11426
11427 * config.guess: Use ${UNAME_MACHINE} rather than i386 for cygwin32
11428 and mingw32.
11429
11430 Wed Jan 28 10:26:37 1998 Manfred Hollstein <manfred@s-direktnet.de>
11431
11432 * Makefile.in (BASE_FLAGS_TO_PASS): Remove passing $(local_prefix)
11433 here as it is not defined in the toplevel Makefile.
11434
11435 Tue Jan 27 23:25:06 1998 Manfred Hollstein <manfred@s-direktnet.de>
11436
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.
11441
11442 Tue Jan 27 23:15:55 1998 Lassi A. Tuura <lat@iki.fi>
11443
11444 * config.guess: More accurate determination of HP processor types.
11445 * config.sub: More accurate determination of HP processor types.
11446
11447 Sat Jan 24 01:59:45 1998 Manfred Hollstein <manfred@s-direktnet.de>
11448
11449 * configure (package_makefile_frag): Move inserting the
11450 ${package_makefile_frag} to where it should be according
11451 to the comment.
11452
11453 Fri Jan 23 00:29:28 1998 Philip Blundell <pb@nexus.co.uk>
11454
11455 * config.guess: Add support for Linux/ARM.
11456
11457 Thu Jan 22 15:14:01 1998 Fred Fish <fnf@cygnus.com>
11458
11459 * .cvsignore: Remove *-info and *-install since they match
11460 release-info and mpw-install, which we don't want to just ignore.
11461
11462 Thu Jan 22 01:38:33 1998 Richard Henderson <rth@cygnus.com>
11463
11464 * configure.in: Revert 3 Jan change for alpha-linux-gnulibc1.
11465
11466 Sat Jan 17 21:28:08 1998 Pieter Nagel <pnagel@epiuse.co.za>
11467
11468 * Makefile.in (FLAGS_TO_PASS): Pass down gcc_include_dir and
11469 local_prefix to sub-make invocations.
11470
11471 Sat Jan 17 21:04:59 1998 H.J. Lu (hjl@gnu.org)
11472
11473 * configure.in: Check makefile fragments in the source
11474 directory.
11475
11476 Fri Jan 16 00:41:37 1998 Alexandre Oliva <oliva@dcc.unicamp.br>
11477
11478 * configure.in: Check whether host and target makefile
11479 fragments exist before adding them to *_makefile_frag.
11480
11481 Wed Jan 14 23:39:10 1998 Bob Manson <manson@charmed.cygnus.com>
11482
11483 * configure.in (target_configdirs): Add cygmon for sparc64-elf.
11484
11485 Wed Jan 14 12:48:07 1998 Keith Seitz <keiths@pizza.cygnus.com>
11486
11487 * configure.in: Make sure we only replace RPATH_ENVVAR on
11488 lines which begin with RPATH_ENVVAR, i.e. add "^" to the
11489 regexp to sed.
11490
11491 * Makefile.in (BASE_FLAGS_TO_PASS): Pass RRPATH_ENVVAR down
11492 to sub-makes.
11493
11494 1998-01-13 Lee Iverson (leei@ai.sri.com)
11495
11496 * config-ml.in (multi-do): LDFLAGS must include multilib
11497 designator.
11498
11499 Tue Jan 13 01:13:24 1998 Robert Lipe (robertl@dgii.com)
11500
11501 * config.guess: Recognize i[3456]-i586-UnixWare7-sysv5.
11502
11503 Sun Jan 4 01:06:55 1998 Mumit Khan <khan@xraylith.wisc.edu>
11504
11505 * config.sub: Add mingw32 support.
11506 * configure.in: Likewise.
11507
11508 Sat Jan 3 12:11:05 1998 Franz Sirl <franz.sirl-kernel@lauterbach.com>
11509
11510 * configure.in: Finalize support for {alpha|powerpc}*-*-linux-gnulibc1
11511
11512 Sun Dec 28 11:28:58 1997 Jeffrey A Law (law@cygnus.com)
11513
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.
11517
11518 Wed Dec 24 22:46:55 1997 Jeffrey A Law (law@cygnus.com)
11519
11520 * config.guess: Sync with egcs. Picks up new alpha support,
11521 BeOS & some additional linux support.
11522
11523 Tue Dec 23 12:44:24 1997 Jeffrey A Law (law@cygnus.com)
11524
11525 * config.guess: HP 9000/803 is a PA1.1 machine.
11526
11527 Mon Dec 22 02:39:24 1997 Richard Henderson <rth@cygnus.com>
11528
11529 * configure.in: It's alpha*-...
11530
11531 Sun Dec 21 16:53:12 1997 H.J. Lu (hjl@gnu.ai.mit.edu)
11532
11533 * configure.in (host_makefile_frag, target_makefile_frag):
11534 Handle multiple config files.
11535 (alpha-*-linux*): Treat alpha-*-linux* as alpha-*-linux* and
11536 alpha-*-*.
11537
11538 Thu Dec 18 13:13:03 1997 Doug Evans <devans@canuck.cygnus.com>
11539
11540 * mkdep: New file.
11541
11542 Wed Dec 17 09:53:02 1997 Michael Meissner <meissner@cygnus.com>
11543
11544 * configure.in (d30v-*-*): Allow configuring of libide, vmake, etc.
11545
11546 Tue Dec 16 17:36:05 1997 Ian Lance Taylor <ian@cygnus.com>
11547
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.
11552
11553 Mon Dec 15 16:12:28 1997 Nick Clifton <nickc@cygnus.com>
11554
11555 * config-ml.in (multidirs): Add m32r to multilib list.
11556
11557 Fri Dec 12 10:43:31 1997 Brendan Kehoe <brendan@canuck.cygnus.com>
11558
11559 * Makefile.in (all-target-gperf): Change dependency to
11560 all-target-libstdc++.
11561
11562 Thu Dec 11 23:30:51 1997 Fred Fish <fnf@ninemoons.com>
11563
11564 * config.guess: Add BeOS support.
11565
11566 Wed Dec 10 15:10:38 1997 Ian Lance Taylor <ian@cygnus.com>
11567
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.
11577
11578 Wed Dec 3 07:55:59 1997 Jeffrey A Law (law@cygnus.com)
11579
11580 * configure (gxx_include_dir): Fix thinko.
11581
11582 Tue Dec 2 10:55:34 1997 Jeffrey A Law (law@cygnus.com)
11583
11584 * Makefile.in (INSTALL_TARGET_CROSS): Define.
11585 (install-cross, install-gcc-cross): New targets.
11586
11587 Tue Dec 2 10:08:31 1997 Nick Clifton <nickc@cygnus.com>
11588
11589 * configure.in (noconfigdirs): Add support for Thumb target.
11590
11591 * config.sub (maybe_os): Add support for Thumb target.
11592
11593 Sun Nov 30 16:12:27 1997 Bob Manson <manson@charmed.cygnus.com>
11594
11595 * Makefile.in: Add rules for cygmon.
11596
11597 * configure.in: Build cygmon for sparc-elf and sparclite-aout.
11598
11599 Thu Nov 27 01:31:30 1997 Jeffrey A Law (law@cygnus.com)
11600
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.
11604
11605 Wed Nov 26 11:53:33 1997 Keith Seitz <keiths@onions.cygnus.com>
11606
11607 * Makefile.in, configure, configure.in, ChangeLog: merge with foundry's
11608 11/18/97 build
11609
11610 Wed Nov 26 16:08:50 1997 Jeffrey A Law (law@cygnus.com)
11611
11612 * From Franz Sirl.
11613 * config.guess (powerpc*-*-linux): Handle glibc2 beta release
11614 found on RedHat Linux systems.
11615
11616 Fri Nov 21 09:51:01 1997 Jeffrey A Law (law@cygnus.com)
11617
11618 * config.guess (alpha stuff): Merge with FSF to avoid incorrect
11619 guesses.
11620
11621 Thu Nov 13 11:38:37 1997 Jeffrey A Law (law@cygnus.com)
11622
11623 * configure.in (i[3456]86-ncr-sysv4.3*): Tweak.
11624
11625 Mon Nov 10 15:23:21 1997 H.J. Lu <hjl@gnu.ai.mit.edu>
11626
11627 * ltmain.sh: If mkdir fails, check whether the directory was created
11628 anyhow by some other process.
11629
11630 Mon Nov 10 14:38:03 1997 Michael Meissner <meissner@cygnus.com>
11631
11632 * configure.in (d30v-*-*): Configure all directories.
11633
11634 Sun Nov 9 17:36:20 1997 Michael Meissner <meissner@cygnus.com>
11635
11636 * configure.in (d30v-*-*): Configure newlib, libiberty directories
11637 for the D30V.
11638
11639 Sat Nov 8 14:42:59 1997 Michael Meissner <meissner@cygnus.com>
11640
11641 * configure.in (d30v-*-*): Configure target-libgloss on the D30V.
11642
11643 Fri Nov 7 10:34:09 1997 Rob Savoye <rob@darkstar.cygnus.com>
11644
11645 * include/libiberty.h: Add extern "C" { so it can be used with C++
11646 progrms.
11647 * include/remote-sim.h: Add extern "C" { so it can be used with C++
11648 programs.
11649
11650 Thu Oct 30 11:09:29 1997 Michael Meissner <meissner@cygnus.com>
11651
11652 * configure.in (d30v-*-*): Configure GCC now.
11653
11654 Mon Oct 27 13:17:24 1997 Stan Shebs <shebs@andros.cygnus.com>
11655
11656 * configure.in: Remove a "second pass" of tweaking noconfigdirs,
11657 is no longer needed.
11658
11659 Mon Oct 27 12:03:53 1997 Jason Merrill <jason@yorick.cygnus.com>
11660
11661 * Makefile.in: check-target-libio depends on all-target-libstdc++.
11662
11663 Sun Oct 26 11:48:27 1997 Manfred Hollstein (manfred@s-direktnet.de)
11664
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.
11668
11669 Mon Oct 20 15:28:49 1997 Klaus K"ampf <kkaempf@progis.de>
11670
11671 * makefile.vms: Fix to work with DEC C.
11672
11673 Tue Oct 7 23:58:57 1997 Gavin Koch <gavin@cygnus.com>
11674
11675 * config.sub: Add mips-tx39-elf to marketing names.
11676
11677 Tue Oct 7 14:24:41 1997 Ian Lance Taylor <ian@cygnus.com>
11678
11679 * ltmain.sh: Handle symlinks in generated script.
11680
11681 Wed Oct 1 13:11:27 1997 Ian Lance Taylor <ian@cygnus.com>
11682
11683 * configure: Handle autoconf style directory options: --bindir,
11684 --datadir, --includedir, --infodir, --libdir, --libexecdir,
11685 --mandir, --oldincludedir, --sbindir, --sharedstatedir,
11686 --sysconfdir.
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.
11692
11693 Mon Sep 29 00:38:08 1997 Aaron Jackson <jackson@negril.msrce.howard.edu>
11694
11695 * Makefile.in (bootstrap-lean): New target.
11696
11697 Wed Sep 24 18:06:27 1997 Stu Grossman <grossman@babylon-5.cygnus.com>
11698
11699 * configure.in (d30v): Remove tcl, tk, expect, gdb, itcl, tix, db,
11700 sn, and gnuserv from noconfigdirs.
11701
11702 Wed Sep 24 15:18:32 1997 Ian Lance Taylor <ian@cygnus.com>
11703
11704 * ltmain.sh: Tweak shell pattern to avoid bug in NetBSD /bin/sh.
11705
11706 Thu Sep 18 23:58:27 1997 Jeffrey A Law (law@cygnus.com)
11707
11708 * Makefile.in (cross): New target.
11709
11710 Thu Sep 18 21:43:23 1997 Alexandre Oliva <oliva@dcc.unicamp.br>
11711 Jeff Law <law@cygnus.com>
11712
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.
11716
11717 Thu Sep 18 15:37:42 1997 Andrew Cagney <cagney@b1.cygnus.com>
11718
11719 * configure (tooldir): enable_gdbtk=YES for cygwin32, NO for
11720 windows. Consistent with gdb/configure.
11721
11722 1997-09-15 02:37 Ulrich Drepper <drepper@cygnus.com>
11723
11724 * configure.in: Name Linux target fragment.
11725
11726 * configure: Rewrite so that project Makefile fragment is inserted
11727 first and appears last in the resulting Makefile.
11728
11729 Tue Sep 16 09:55:07 1997 Andrew Cagney <cagney@b1.cygnus.com>
11730
11731 * Makefile.in (install-itcl): Install tcl first.
11732
11733 Fri Sep 12 16:19:20 1997 Geoffrey Noer <noer@cygnus.com>
11734
11735 * configure.in: remove bison from noconfigdirs for Cygwin32 host
11736
11737 Thu Sep 11 16:40:46 1997 H.J. Lu (hjl@gnu.ai.mit.edu)
11738
11739 * Makefile.in (local-distclean): Also remove mh-frag mt-frag.
11740
11741 * configure.in (skipdirs): Add target-librx for Linux.
11742 (alpha-*-linux*): Use config/mh-elfalphapic and config/mt-elfalphapic.
11743
11744 Wed Sep 10 21:29:54 1997 Jeffrey A Law (law@cygnus.com)
11745
11746 * Makefile.in (bootstrap): New target.
11747
11748 Wed Sep 10 15:19:22 1997 Jeffrey A Law (law@cygnus.com)
11749
11750 * config.sub: Accept 'amigados' for backward compatability.
11751
11752 Mon Sep 8 20:46:20 1997 Ian Lance Taylor <ian@cygnus.com>
11753
11754 * config.guess: Merge with FSF.
11755
11756 Sun Sep 7 23:18:32 1997 Fred Fish <fnf@ninemoons.com>
11757
11758 * config.sub: Change 'amigados' to 'amigaos' to match current usage.
11759
11760 Sun Sep 7 15:55:28 1997 Gavin Koch <gavin@cygnus.com>
11761
11762 * config.sub: Add "marketing-names" patch.
11763
11764 Fri Sep 5 16:11:28 1997 Joel Sherrill (joel@OARcorp.com)
11765
11766 * configure.in (*-*-rtems*): Do not build libgloss for rtems.
11767
11768 Fri Sep 5 12:27:17 1997 Jeffrey A Law (law@cygnus.com)
11769
11770 * config.sub: Handle v850-elf.
11771
11772 Wed Sep 3 22:01:58 1997 Fred Fish <fnf@ninemoons.com>
11773
11774 * .cvsignore (*-install): Remove.
11775
11776 Wed Sep 3 12:15:24 1997 Chris Provenzano <proven@cygnus.com>
11777
11778 * ltconfig: Set CONFIG_SHELL in libtool.
11779 * ltmain.sh: Use CONFIG_SHELL instead of /bin/sh
11780
11781 Mon Sep 1 16:45:44 1997 Jim Wilson <wilson@cygnus.com>
11782
11783 * configure.in (target_subdir): Set to libraries if enable_multilib.
11784
11785 Wed Aug 27 16:15:11 1997 Jim Wilson <wilson@cygnus.com>
11786
11787 * config.guess: Update from gcc directory.
11788
11789 Tue Aug 26 16:46:46 1997 Andrew Cagney <cagney@b1.cygnus.com>
11790
11791 * Makefile.in (all-sim): Depends on all-readline.
11792
11793 Wed Aug 20 19:57:37 1997 Jason Merrill <jason@yorick.cygnus.com>
11794
11795 * Makefile.in (BISON, YACC): Use $$s.
11796 (all-bison): Depend on all-texinfo.
11797
11798 Tue Aug 19 01:41:32 1997 Jason Merrill <jason@yorick.cygnus.com>
11799
11800 * Makefile.in (BISON): Add -L flag.
11801 (YACC): Likewise.
11802
11803 Mon Aug 18 11:30:50 1997 Nick Clifton <nickc@cygnus.com>
11804
11805 * configure.in (noconfigdirs): Add support for v850e target.
11806
11807 * config.sub (maybe_os): Add support for v850e target.
11808
11809 Mon Aug 18 11:30:50 1997 Nick Clifton <nickc@cygnus.com>
11810
11811 * configure.in (noconfigdirs): Add support for v850ea target.
11812
11813 * config.sub (maybe_os): Add support for v850ea target.
11814
11815 Mon Aug 18 09:24:06 1997 Gavin Koch <gavin@cygnus.com>
11816
11817 * config.sub: Add mipstx39. Delete r3900.
11818
11819 Mon Aug 18 17:20:10 1997 Jason Molenda (crash@godzilla.cygnus.co.jp)
11820
11821 * Makefile.in (all-autoconf): Depends on all-texinfo.
11822
11823 Fri Aug 15 23:09:26 1997 Michael Meissner <meissner@cygnus.com>
11824
11825 * config-ml.in ({powerpc,rs6000}*-*-*): Update to current AIX and
11826 eabi targets.
11827
11828 Thu Aug 14 14:42:17 1997 Ian Lance Taylor <ian@cygnus.com>
11829
11830 * configure: Get CFLAGS and CXXFLAGS from Makefile, if possible.
11831
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.
11835
11836 Tue Aug 12 20:09:48 1997 Jason Merrill <jason@yorick.cygnus.com>
11837
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.
11842
11843 Tue Aug 12 22:33:08 1997 Ian Lance Taylor <ian@cygnus.com>
11844
11845 * configure: If OSTYPE matches *win32*, try to find a good value for
11846 CONFIG_SHELL.
11847
11848 Sun Aug 10 14:41:11 1997 Ian Lance Taylor <ian@cygnus.com>
11849
11850 * Makefile.in (taz): Get the version number from AM_INIT_AUTOMAKE in
11851 configure.in if it is present.
11852
11853 Sat Aug 9 00:58:01 1997 Ian Lance Taylor <ian@cygnus.com>
11854
11855 * Makefile.in (LD_FOR_TARGET): Change ld.new to ld-new.
11856
11857 Fri Aug 8 16:30:13 1997 Doug Evans <dje@canuck.cygnus.com>
11858
11859 * config.sub: Recognize `arc' cpu.
11860 * configure.in: Likewise.
11861 * config-ml.in: Likewise.
11862
11863 Thu Aug 7 11:02:34 1997 Ian Lance Taylor <ian@cygnus.com>
11864
11865 * Makefile.in ($(INSTALL_X11_MODULES)): Depend upon installdirs.
11866
11867 Wed Aug 6 16:27:29 1997 Chris Provenzano <proven@cygnus.com>
11868
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.
11872
11873 Wed Aug 6 12:29:05 1997 Jason Merrill <jason@yorick.cygnus.com>
11874
11875 * Makefile.in (EXTRA_GCC_FLAGS): Fix for non-bash shells.
11876
11877 Wed Aug 6 00:42:35 1997 Ian Lance Taylor <ian@cygnus.com>
11878
11879 * Makefile.in (AS_FOR_TARGET): Change as.new to as-new.
11880
11881 Tue Aug 5 14:08:51 1997 Ian Lance Taylor <ian@cygnus.com>
11882
11883 * Makefile.in (NM_FOR_TARGET): Change nm.new to nm-new.
11884
11885 * ylwrap: If the program is a relative path, force it to be
11886 absolute.
11887
11888 Tue Aug 5 12:12:44 1997 Andrew Cagney <cagney@b1.cygnus.com>
11889
11890 * configure (tooldir): Set BISON to `bison -y' and not just bison.
11891
11892 Mon Aug 4 22:59:02 1997 Andrew Cagney <cagney@b1.cygnus.com>
11893
11894 * Makefile.in (CC_FOR_TARGET): When winsup/Makefile present,
11895 correctly specify the target build directory $(TARGET_SUBDIR)/winsup
11896 for libraries.
11897
11898 Mon Aug 4 12:40:24 1997 Jason Merrill <jason@yorick.cygnus.com>
11899
11900 * Makefile.in (EXTRA_GCC_FLAGS): Fix handling of macros with values
11901 separated by spaces.
11902
11903 Thu Jul 31 19:49:49 1997 Ian Lance Taylor <ian@cygnus.com>
11904
11905 * ylwrap: New file.
11906 * Makefile.in (DEVO_SUPPORT): Add ylwrap.
11907
11908 * ltmain.sh: Handle /bin/sh at start of install program.
11909
11910 * Makefile.in (DEVO_SUPPORT): Add ltconfig, ltmain.sh, and missing.
11911
11912 * ltconfig, ltmain.sh: New files, from libtool 1.0.
11913 * missing: New file, from automake 1.2.
11914
11915 Thu Jul 24 12:57:56 1997 Ian Lance Taylor <ian@cygnus.com>
11916
11917 * Makefile.in: Treat tix like tk, putting it in X11_MODULES. Add
11918 check-tk to CHECK_X11_MODULES.
11919
11920 Wed Jul 23 17:03:29 1997 Ian Lance Taylor <ian@cygnus.com>
11921
11922 * config.sub: Merge with FSF.
11923
11924 Tue Jul 22 19:08:29 1997 Ian Lance Taylor <ian@cygnus.com>
11925
11926 * config.guess: Merge with FSF.
11927
11928 Tue Jul 22 14:50:42 1997 Robert Hoehne <robert.hoehne@Mathematik.TU-Chemnitz.DE>
11929
11930 * configure: Treat msdosdjgpp like go32.
11931 * configure.in: Likewise. Don't remove gprof for go32.
11932
11933 * configure: Change Makefile.tem2 to Makefile.tm2.
11934
11935 Mon Jul 21 10:31:26 1997 Stephen Peters <speters@cygnus.com>
11936
11937 * configure.in (noconfigdirs): For alpha-dec-osf*, don't ignore grep.
11938
11939 Tue Jul 15 14:33:03 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
11940
11941 * install-sh (chmodcmd): Set to null if the DST directory already
11942 exists. Same as Nov 11th change.
11943
11944 Mon Jul 14 11:01:15 1997 Martin M. Hunt <hunt@cygnus.com>
11945
11946 * configure (GDB_TK): Needs itcl and tix.
11947
11948 Mon Jul 14 00:32:10 1997 Jason Merrill <jason@yorick.cygnus.com>
11949
11950 * config.guess: Update from FSF.
11951
11952 Fri Jul 11 11:57:11 1997 Martin M. Hunt <hunt@cygnus.com>
11953
11954 * Makefile.in (GDB_TK): Depend on itcl and tix.
11955
11956 Fri Jul 4 13:25:31 1997 Ian Lance Taylor <ian@cygnus.com>
11957
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
11963 to -x.
11964 * install-sh: Add support for -x option.
11965
11966 Mon Jun 30 15:51:30 1997 Ian Lance Taylor <ian@cygnus.com>
11967
11968 * configure.in, Makefile.in: Treat tix like itcl.
11969
11970 Thu Jun 26 13:59:19 1997 Ian Lance Taylor <ian@cygnus.com>
11971
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.
11982
11983 Wed Jun 25 15:01:26 1997 Felix Lee <flee@cygnus.com>
11984
11985 * configure.in: configure sim before gdb for win32-x-ppc
11986
11987 Wed Jun 25 12:18:54 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
11988
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
11993 all-target-libg++.
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.
12000
12001 Mon Jun 23 10:51:53 1997 Jeffrey A Law (law@cygnus.com)
12002
12003 * config.sub (mn10200): Recognize new basic machine.
12004
12005 Thu Jun 19 14:16:42 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
12006
12007 * configure.in: Don't set ENABLE_MULTILIB, so we'll be passing
12008 --enable-multilib down to subdirs; setting TARGET_SUBDIR was enough.
12009
12010 Tue Jun 17 15:31:20 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
12011
12012 * configure.in: If we're building mips-sgi-irix6* native, turn on
12013 ENABLE_MULTILIB and set TARGET_SUBDIR.
12014
12015 Tue Jun 17 12:20:59 1997 Tom Tromey <tromey@cygnus.com>
12016
12017 * Makefile.in (all-sn): Depend on all-grep.
12018
12019 Mon Jun 16 11:11:10 1997 Ian Lance Taylor <ian@cygnus.com>
12020
12021 * configure.in: Use mh-ppcpic and mt-ppcpic for powerpc*-* targets.
12022
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.
12026
12027 * Makefile.in (DISTBISONFILES): Remove.
12028 (taz): Don't futz with DISTBISONFILES. Change BISON to use
12029 $(DEFAULT_YACC).
12030
12031 * configure.in: Build itl, db, sn, etc., when building for native
12032 cygwin32.
12033
12034 * Makefile.in (LD): New variable.
12035 (EXTRA_HOST_FLAGS): Pass down LD.
12036 ($(DO_X)): Likewise.
12037
12038 Mon Jun 16 11:10:35 1997 Philip Blundell <Philip.Blundell@pobox.com>
12039
12040 * Makefile.in (INSTALL): Use $(SHELL) when executing install-sh.
12041
12042 Fri Jun 13 10:22:56 1997 Bob Manson <manson@charmed.cygnus.com>
12043
12044 * configure.in (targargs): Strip out any supplied --build argument
12045 before adding our own. Always add --build.
12046
12047 Thu Jun 12 21:12:28 1997 Bob Manson <manson@charmed.cygnus.com>
12048
12049 * configure.in (targargs): Pass --build if we're doing
12050 a cross-compile.
12051
12052 Fri Jun 6 21:38:40 1997 Rob Savoye <rob@chinadoll.cygnus.com>
12053
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
12057 absolute pathname.
12058
12059 Mon Jun 2 13:05:20 1997 Gavin Koch <gavin@cygnus.com>
12060
12061 * config.sub: Support for r3900.
12062
12063 Wed May 21 17:33:31 1997 Ian Lance Taylor <ian@cygnus.com>
12064
12065 * configure.in: Use install-sh, not install.sh.
12066
12067 Wed May 14 16:06:51 1997 Ian Lance Taylor <ian@cygnus.com>
12068
12069 * Makefile.in (taz): Improve check for BISON so it doesn't try to
12070 apply it twice.
12071
12072 Fri May 9 17:22:05 1997 Ian Lance Taylor <ian@cygnus.com>
12073
12074 * Makefile.in (INSTALL_MODULES): Put install-opcodes before
12075 install-binutils.
12076
12077 Thu May 8 17:29:50 1997 Ian Lance Taylor <ian@cygnus.com>
12078
12079 * Makefile.in: Add automake targets.
12080 * configure.in (host_tools): Add automake.
12081
12082 Tue May 6 15:49:52 1997 Ian Lance Taylor <ian@cygnus.com>
12083
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.
12087
12088 Thu May 1 10:11:43 1997 Geoffrey Noer <noer@cygnus.com>
12089
12090 * install-sh: try appending a .exe if source file doesn't
12091 exist
12092
12093 Wed Apr 30 12:05:36 1997 Jason Merrill <jason@yorick.cygnus.com>
12094
12095 * configure.in: Turn on multilib by default.
12096 (cross_only): Remove target-libiberty.
12097
12098 * Makefile.in (all-gcc): Don't depend on libiberty.
12099
12100 Mon Apr 28 18:39:45 1997 Michael Snyder <msnyder@cleaver.cygnus.com>
12101
12102 * config.guess: improve algorithm for recognizing Gnu Hurd x86.
12103
12104 Thu Apr 24 19:30:07 1997 Ian Lance Taylor <ian@cygnus.com>
12105
12106 * Makefile.in (DEVO_SUPPORT): Add mpw-install.
12107 (DISTBISONFILES): Add ld/Makefile.in
12108
12109 Tue Apr 22 17:17:28 1997 Geoffrey Noer <noer@pizza.cygnus.com>
12110
12111 * configure.in: if target is cygwin32 but host isn't cygwin32,
12112 don't configure gdb tcl tk expect, not just gdb.
12113
12114 Mon Apr 21 13:33:39 1997 Tom Tromey <tromey@cygnus.com>
12115
12116 * configure.in: Added gnuserv everywhere sn appears.
12117
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.
12123
12124 Thu Apr 17 13:57:06 1997 Per Fogelstrom <pefo@openbsd.org>
12125
12126 * config.guess: Fixes for MIPS OpenBSD systems.
12127
12128 Tue Apr 15 12:21:07 1997 Ian Lance Taylor <ian@cygnus.com>
12129
12130 * Makefile.in (INSTALL_XFORM): Remove.
12131 (BASE_FLAGS_TO_PASS): Remove INSTALL_XFORM.
12132
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.
12137
12138 Mon Apr 14 11:21:38 1997 Ian Lance Taylor <ian@cygnus.com>
12139
12140 * install-sh: Rename from install.sh.
12141 * Makefile.in (INSTALL): Change install.sh to install-sh.
12142 (DEVO_SUPPORT): Likewise.
12143
12144 * configure: Use ${config_shell} with ${moveifchange}. From Thomas
12145 Graichen <graichen@rzpd.de>.
12146
12147 Fri Apr 11 16:37:10 1997 Niklas Hallqvist <niklas@appli.se>
12148
12149 * config.guess: Recognize OpenBSD systems correctly.
12150
12151 Fri Apr 11 17:07:04 1997 Jason Molenda (crash@godzilla.cygnus.co.jp)
12152
12153 * README, Makefile.in (ETC_SUPPORT): Remove references to
12154 cfg-paper*, configure.{texi,man,info*}._
12155
12156 Sun Apr 6 18:47:57 1997 Andrew Cagney <cagney@kremvax.cygnus.com>
12157
12158 * Makefile.in (all.normal): Ensure that gcc is built after all
12159 the x11 - ie gdb - targets.
12160
12161 Tue Apr 1 16:28:50 1997 Klaus Kaempf <kkaempf@progis.de>
12162
12163 * makefile.vms: Don't run conf-a-gas.
12164
12165 Mon Mar 31 16:26:55 1997 Joel Sherrill <joel@oarcorp.com>
12166
12167 * configure.in (hppa1.1-*-rtems*): New target, like hppa-*-*elf*.
12168
12169 Sun Mar 30 12:38:27 1997 Fred Fish <fnf@cygnus.com>
12170
12171 * configure.in: Remove noconfigdirs case since gdb also
12172 configures and builds for tic80-coff.
12173
12174 Fri Mar 28 18:28:52 1997 Ian Lance Taylor <ian@cygnus.com>
12175
12176 * configure: Set cache_file to config.cache.
12177 * Makefile.in (local-distclean): Remove config.cache.
12178
12179 Wed Mar 26 18:49:39 1997 Ian Lance Taylor <ian@cygnus.com>
12180
12181 * COPYING: Update FSF address.
12182
12183 Wed Mar 26 10:38:25 1997 Michael Meissner <meissner@cygnus.com>
12184
12185 * configure.in (tic80-*-*): Remove G++ libraries and libgloss from
12186 noconfigdirs.
12187
12188 Mon Mar 24 15:02:39 1997 Ian Lance Taylor <ian@cygnus.com>
12189
12190 * Makefile.in (install-dirs): Don't crash if prefix, and hence
12191 MAKEDIRS, is empty.
12192
12193 Mon Mar 24 12:40:55 1997 Doug Evans <dje@canuck.cygnus.com>
12194
12195 * config.sub: Tweak mn10300 entry.
12196
12197 Fri Mar 21 15:35:27 1997 Michael Meissner <meissner@cygnus.com>
12198
12199 * configure.in (host_tools): Put sim before gdb, so gdb's
12200 configure.tgt can determine if the simulator was configured.
12201
12202 Sun Mar 16 16:07:08 1997 Fred Fish <fnf@cygnus.com>
12203
12204 * config.sub: Move BeOS $os case to be with other Cygnus
12205 local cases.
12206
12207 Sun Mar 16 01:34:55 1997 Martin Hunt <hunt@cygnus.com>
12208
12209 * config.sub: Remove misplaced comment that broke Linux.
12210
12211 Sat Mar 15 22:50:15 1997 Fred Fish <fnf@cygnus.com>
12212
12213 * config.sub: Add BeOS support.
12214
12215 Mon Mar 10 13:30:11 1997 Tom Tromey <tromey@cygnus.com>
12216
12217 * Makefile.in (CHECK_X11_MODULES): Don't run check-tk.
12218
12219 Wed Mar 5 12:09:29 1997 Martin <hunt@cygnus.com>
12220
12221 * configure.in (noconfigdirs): Remove tcl and tk from
12222 noconfigdirs for cygwin32 builds.
12223
12224 Fri Feb 28 18:20:15 1997 Fred Fish <fnf@cygnus.com>
12225
12226 * configure.in (tic80-*-*): Remove ld from noconfigdirs.
12227
12228 Thu Feb 27 14:57:26 1997 Ken Raeburn <raeburn@cygnus.com>
12229
12230 * Makefile.in (GAS_SUPPORT_DIRS, BINUTILS_SUPPORT_DIRS): Remove
12231 make-all.com, use makefile.vms instead.
12232
12233 Tue Feb 25 18:46:14 1997 Stan Shebs <shebs@andros.cygnus.com>
12234
12235 * config.sub: Accept -lnews*.
12236
12237 Tue Feb 25 13:19:14 1997 Andrew Cagney <cagney@kremvax.tpgi.com.au>
12238
12239 * configure.in (noconfigdirs): Disable target-newlib,
12240 target-examples and target-libiberty for d30v.
12241
12242 Fri Feb 21 17:56:25 1997 Martin M. Hunt <hunt@pizza.cygnus.com>
12243
12244 * configure.in (noconfigdirs): Enable ld for d30v.
12245
12246 Fri Feb 21 20:58:51 1997 Michael Meissner <meissner@cygnus.com>
12247
12248 * configure.in (tic80-*-*): Build compiler.
12249
12250 Sun Feb 16 15:41:09 1997 Andrew Cagney <cagney@critters.cygnus.com>
12251
12252 * configure.in (d30v-*): Remove sim directory from list of
12253 unsupported d30v directories
12254
12255 Tue Feb 18 17:32:42 1997 Martin M. Hunt <hunt@pizza.cygnus.com>
12256
12257 * config.sub, configure.in: Add d30v target cpu.
12258
12259 Thu Feb 13 22:04:44 1997 Klaus Kaempf <kkaempf@progis.de>
12260
12261 * makefile.vms: New file.
12262 * make-all.com: Remove.
12263
12264 Wed Feb 12 12:54:18 1997 Jim Wilson <wilson@cygnus.com>
12265
12266 * Makefile.in (EXTRA_GCC_FLAGS): Add LIBGCC2_DEBUG_CFLAGS.
12267
12268 Sat Feb 8 20:36:49 1997 Michael Meissner <meissner@cygnus.com>
12269
12270 * Makefile.in (all-itcl): The rule is all-itcl, not all-tcl.
12271
12272 Tue Feb 4 11:39:29 1997 Tom Tromey <tromey@cygnus.com>
12273
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.
12278
12279 Mon Feb 3 13:29:36 1997 Ian Lance Taylor <ian@cygnus.com>
12280
12281 * config.guess: Merge with latest FSF sources.
12282
12283 Tue Jan 28 09:20:37 1997 Tom Tromey <tromey@cygnus.com>
12284
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.
12289
12290 Thu Jan 23 01:44:27 1997 Geoffrey Noer <noer@cygnus.com>
12291
12292 * configure.in: build gdb for mn10200
12293
12294 Fri Jan 17 15:32:15 1997 Doug Evans <dje@canuck.cygnus.com>
12295
12296 * Makefile.in (all-target-winsup): Depend on all-target-libio.
12297
12298 Mon Jan 13 22:46:54 1997 Michael Meissner <meissner@tiktok.cygnus.com>
12299
12300 * configure.in (tic80-*-*): Turn off most targets right now.
12301
12302 Fri Jan 3 16:04:03 1997 Ian Lance Taylor <ian@cygnus.com>
12303
12304 * Makefile.in (MAKEINFO): Check for the existence of the Makefile,
12305 rather than the makeinfo program.
12306 (do-info): Depend upon all-texinfo.
12307
12308 Tue Dec 31 16:00:31 1996 Ian Lance Taylor <ian@cygnus.com>
12309
12310 * configure.in: Remove uses of config/mh-linux.
12311
12312 * config.sub, config.guess: Merge with latest FSF sources.
12313
12314 Fri Dec 27 23:04:33 1996 Fred Fish <fnf@cygnus.com>
12315
12316 * config.sub (case $basic_machine): Add tic80 entries.
12317
12318 Fri Dec 27 12:07:59 1996 Ian Lance Taylor <ian@cygnus.com>
12319
12320 * config.sub, config.guess: Merge with latest FSF sources.
12321
12322 Wed Dec 18 22:46:39 1996 Stan Shebs <shebs@andros.cygnus.com>
12323
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.
12328
12329 Wed Dec 18 13:11:46 1996 Jim Wilson <wilson@cygnus.com>
12330
12331 * configure.in (mips*-sgi-irix6*): Remove binutils from noconfigdirs.
12332
12333 Wed Dec 18 10:29:31 1996 Jeffrey A Law (law@cygnus.com)
12334
12335 * configure.in: Do build gcc and the target libraries for
12336 the mn10200.
12337
12338 Wed Dec 4 16:53:05 1996 Geoffrey Noer <noer@cygnus.com>
12339
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.
12343
12344 Tue Dec 3 23:26:50 1996 Jason Merrill <jason@yorick.cygnus.com>
12345
12346 * configure.in: Don't use --with-stabs on IRIX 6.
12347
12348 Tue Dec 3 09:05:25 1996 Doug Evans <dje@canuck.cygnus.com>
12349
12350 * configure.in (m32r): Build gdb, libg++ now.
12351
12352 Sun Dec 1 00:18:59 1996 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
12353
12354 * configure.in (mips*-sgi-irix6*): Remove gdb and related
12355 directories from noconfigdirs.
12356
12357 Tue Nov 26 11:45:33 1996 Kim Knuttila <krk@cygnus.com>
12358
12359 * config.sub (basic_machine): added mips16 configuration
12360
12361 Sat Nov 23 19:26:22 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12362
12363 * config.sub: Handle d10v-unknown.
12364
12365 Sat Nov 23 10:23:01 1996 Gavin Koch <gavin@cygnus.com>
12366
12367 * config.sub: Handle v850-unknown.
12368
12369 Thu Nov 21 16:19:44 1996 Geoffrey Noer <noer@cygnus.com>
12370
12371 * Makefile.in: add findutils
12372 * configure.in: add findutils to list of host_tools
12373
12374 Wed Nov 20 10:09:01 1996 Jeffrey A Law (law@cygnus.com)
12375
12376 * config.sub: Handle mn10200 and mn10300.
12377
12378 Tue Nov 19 16:35:14 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12379
12380 * configure.in (d10v-*): Do not build librx.
12381
12382 Mon Nov 18 13:28:41 1996 Jeffrey A Law (law@cygnus.com)
12383
12384 * configure.in (mn10300): Build everything except gdb & libgloss.
12385
12386 Wed Nov 13 14:59:46 1996 Per Bothner <bothner@deneb.cygnus.com>
12387
12388 * config.guess: Patch for Dansk Data Elektronik servers,
12389 from Niels Skou Olsen <nso@dde.dk>.
12390
12391 For ncr, use /bin/uname rather than uname, since GNU uname does not
12392 support -p. Suggested by Mark Mitchell <mmitchell@usa.net>.
12393
12394 Patch for MIPS R4000 running System V,
12395 from Eric S. Raymond <esr@snark.thyrsus.com>.
12396
12397 Fix thinko for nextstep.
12398
12399 Patch for OSF1 in i?86, from Dan Murphy <dlm@osf.org> via Harlan Stenn.
12400
12401 Sat Jun 24 18:58:17 1995 Morten Welinder <terra+@cs.cmu.edu>
12402 * config.guess: Guess mips-dec-mach_bsd4.3.
12403
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
12406 release numbers.
12407 * config.guess (mips-mips-riscos*): Emit just enough of the
12408 release number.
12409
12410 Tue Oct 8 10:37:22 1996 Frank Vance <fvance@waii.com>
12411 * config.guess (sparc-auspex-sunos*): Added.
12412 (f300-fujitsu-*): Added.
12413
12414 Wed Sep 25 22:00:35 1996 Jeff Woolsey <woolsey@jlw.com>
12415 * config.guess: Recognize a Tadpole as a sparc.
12416
12417 Wed Nov 13 00:53:09 1996 David J. MacKenzie <djm@churchy.gnu.ai.mit.edu>
12418
12419 * config.guess: Don't assume that NextStep version is either 2 or
12420 3. NextStep 4 (aka OpenStep 4) has come out now.
12421
12422 Mon Nov 11 23:52:03 1996 David J. MacKenzie <djm@churchy.gnu.ai.mit.edu>
12423
12424 * config.guess: Support Cray T90 that reports itself as "CRAY TS".
12425 From Rik Faith <faith@cs.unc.edu>.
12426
12427 Fri Nov 8 11:34:58 1996 David J. MacKenzie <djm@geech.gnu.ai.mit.edu>
12428
12429 * config.sub: Contributions from bug-gnu-utils to:
12430 Support plain "hppa" (no version given) architecture, reported by
12431 OpenStep.
12432 OpenBSD like NetBSD.
12433 LynxOs is not a hardware supplier.
12434
12435 * config.guess: Contributions from bug-gnu-utils to add support for:
12436 OpenBSD like NetBSD.
12437 Stratus systems.
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.
12442
12443 Mon Nov 11 10:09:08 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
12444
12445 * install.sh (chmodcmd): Set to null if the DST directory already
12446 exists.
12447
12448 Mon Nov 11 10:43:41 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12449
12450 * configure.in (powerpc*-{eabi,elf,linux,rtem,sysv,solaris}*): Do
12451 not use mt-ppc target Makefile fragment any more.
12452
12453 Sun Nov 3 19:17:07 1996 Stu Grossman (grossman@critters.cygnus.com)
12454
12455 * configure.in (*-*-windows): Exclude everything but those dirs
12456 needed to build windows.
12457
12458 Tue Oct 29 16:41:31 1996 Doug Evans <dje@canuck.cygnus.com>
12459
12460 * Makefile.in (all-target-winsup): Depend on all-target-librx.
12461
12462 Mon Oct 28 17:32:46 1996 Stu Grossman (grossman@critters.cygnus.com)
12463
12464 * configure.in: Exclude mmalloc from i386-windows.
12465
12466 Thu Oct 24 09:22:46 1996 Stu Grossman (grossman@critters.cygnus.com)
12467
12468 * Undo my previous change.
12469
12470 Thu Oct 24 12:12:04 1996 Ian Lance Taylor <ian@cygnus.com>
12471
12472 * Makefile.in (EXTRA_GCC_FLAGS): Pass down GCC_FOR_TARGET
12473 unconditionally.
12474 (MAKEOVERRIDES): Define (revert this part of October 18 change).
12475
12476 Thu Oct 24 09:02:07 1996 Stu Grossman (grossman@critters.cygnus.com)
12477
12478 * Makefile.in (FLAGS_TO_PASS): Add $(HOST_FLAGS) to allow the
12479 host to add it's own flags.
12480
12481 Tue Oct 22 15:20:26 1996 Ian Lance Taylor <ian@cygnus.com>
12482
12483 * configure: Handle GCC_FOR_TARGET like CC_FOR_TARGET.
12484
12485 Fri Oct 18 13:37:13 1996 Ian Lance Taylor <ian@cygnus.com>
12486
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.
12494
12495 Thu Oct 17 10:27:56 1996 Doug Evans <dje@canuck.cygnus.com>
12496
12497 * configure.in (m32r): Fix spelling of libg++ libs.
12498
12499 Thu Oct 10 10:37:17 1996 Stan Shebs <shebs@andros.cygnus.com>
12500
12501 * config.sub (-apple*): Remove, now redundant.
12502
12503 Thu Oct 10 12:30:54 1996 Ian Lance Taylor <ian@cygnus.com>
12504
12505 * configure: Don't get confused by CPU-VENDOR-linux-gnu.
12506
12507 * configure: Rework yesterday's sed script patch.
12508
12509 * config.sub: Merge with FSF.
12510
12511 Wed Oct 9 17:24:59 1996 Per Bothner <bothner@deneb.cygnus.com>
12512
12513 * config.guess: Merge from FSF.
12514
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.
12518
12519 Mon Jul 15 23:51:11 1996 Karl Heuer <kwzh@gnu.ai.mit.edu>
12520 * config.guess: Avoid non-portable tr syntax.
12521
12522 Wed Oct 9 06:06:46 1996 Jeffrey A Law (law@cygnus.com)
12523
12524 * test-build.mk (HOLES): Add "xargs" for gdb.
12525
12526 * configure: Avoid hpux10.20 sed bug.
12527
12528 Tue Oct 8 08:32:48 1996 Stu Grossman (grossman@critters.cygnus.com)
12529
12530 * configure.in: Add support for windows host
12531 (that is a build done under the Microsoft build environment).
12532
12533 Tue Oct 8 10:39:08 1996 Ian Lance Taylor <ian@cygnus.com>
12534
12535 * Makefile.in: Replace all uses of srcroot with s, to shrink
12536 command line lengths.
12537
12538 Patches from Geoffrey Noer <noer@cygnus.com>:
12539 * configure.in: If configuring for newlib, pass --with-newlib to
12540 subdirectories.
12541 * Makefile.in (CC_FOR_TARGET): If winsup/Makefile exists, pass a
12542 -Bnewlib/ and -Lwinsup to gcc.
12543 (CXX_FOR_TARGET): Likewise.
12544
12545 Mon Oct 7 10:59:35 1996 Ian Lance Taylor <ian@cygnus.com>
12546
12547 * Makefile.in (ETC_SUPPORT): Add configure.
12548
12549 Fri Oct 4 12:22:58 1996 Angela Marie Thomas (angela@cygnus.com)
12550
12551 * configure.in: Use config/mh-dgux386 for i[345]86-dg-dgux
12552 host configuration file.
12553
12554 Thu Oct 3 09:28:25 1996 Jeffrey A Law (law@cygnus.com)
12555
12556 * configure.in: Break mn10x00 support into separate
12557 mn10200 and mn10300 configurations.
12558 * config.sub: Likewise.
12559
12560 Wed Oct 2 22:27:52 1996 Jeffrey A Law (law@cygnus.com)
12561
12562 * configure.in: Add lots of stuff to noconfigdirs for
12563 the mn10x00 targets.
12564
12565 * config.sub, configure.in: Add mn10x00 support.
12566
12567 Wed Oct 2 15:52:36 1996 Klaus Kaempf <kkaempf@progis.de>
12568
12569 * make-all.com: Call conf-a-gas, not config-a-gas.
12570
12571 Tue Oct 1 01:28:41 1996 James G. Smith <jsmith@cygnus.co.uk>
12572
12573 * configure.in (noconfigdirs): Don't build libgloss for arm-coff
12574 targets.
12575
12576 Mon Sep 30 14:24:01 1996 Stan Shebs <shebs@andros.cygnus.com>
12577
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
12582 copying to objdir.
12583 * mpw-build.in: Don't always depend on byacc and flex.
12584 (install-only-top): New action.
12585
12586 Fri Sep 27 17:39:44 1996 Stu Grossman (grossman@critters.cygnus.com)
12587
12588 * configure.in: You can now configure GDB for the v850.
12589
12590 Tue Sep 24 19:05:12 1996 Stan Shebs <shebs@andros.cygnus.com>
12591
12592 * configure.in (noconfigdirs): Don't configure any C++ dirs
12593 if targeting D10V.
12594
12595 Tue Sep 17 12:15:31 1996 Ian Lance Taylor <ian@cygnus.com>
12596
12597 * config.sub: Recognize mips64vr5000.
12598
12599 Mon Sep 16 17:00:52 1996 Ian Lance Taylor <ian@cygnus.com>
12600
12601 * configure.in: Use a single line for host_tools and native_only.
12602
12603 Mon Sep 9 12:21:30 1996 Doug Evans <dje@canuck.cygnus.com>
12604
12605 * config.sub, configure.in: Add entries for m32r.
12606
12607 Thu Sep 5 13:52:47 1996 Tom Tromey <tromey@creche.cygnus.com>
12608
12609 * Makefile.in (inet-install): Don't run install-gzip.
12610
12611 Wed Sep 4 17:26:13 1996 Stu Grossman (grossman@critters.cygnus.com)
12612
12613 * configure.in: Don't config lots of things for *-*-windows*.
12614
12615 Sat Aug 31 11:45:57 1996 Stan Shebs <shebs@andros.cygnus.com>
12616
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.
12620
12621 Thu Aug 29 16:44:58 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12622
12623 * configure.in (i[345]86): Recognize i686 for pentium pro.
12624 (i[3456]86-*-dgux*): Use config/mh-sysv for the host configuration
12625 file.
12626
12627 * config.guess (i[345]86): Ditto.
12628
12629 Mon Aug 26 18:34:42 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
12630
12631 * configure.in (noconfigdirs): Removed gdb for D10V.
12632
12633 Thu Aug 22 17:13:52 1996 Jeffrey A Law (law@cygnus.com)
12634
12635 * configure.in: Remove ld, target-libio, target-libg++, and
12636 target-libstdc++ from noconfigdirs.
12637
12638 Wed Aug 21 18:56:38 1996 Fred Fish <fnf@cygnus.com>
12639
12640 * configure: Fix three locations where shell scripts were
12641 being run directly rather than with config_shell.
12642
12643 Tue Aug 20 13:08:47 1996 J.T. Conklin <jtc@hippo.cygnus.com>
12644
12645 * configure.in (v850-*-*): Set up initial $noconfigdirs.
12646 * config.sub (basic_machine): Recognize v850.
12647
12648 Thu Aug 15 12:19:33 1996 Stan Shebs <shebs@andros.cygnus.com>
12649
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.
12654
12655 Mon Aug 12 13:15:13 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12656
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.
12660
12661 * Makefile.in (CONFIGURE_TARGET_MODULES): If target compiler does
12662 not support --print-multi-lib, don't abort.
12663
12664 Thu Aug 8 12:18:59 1996 Klaus Kaempf <kkaempf@progis.de>
12665
12666 * make-all.com: Run config-a-gas.
12667 * setup.com: Don't copy subdirectory files around.
12668
12669 Tue Jul 30 17:49:31 1996 Brendan Kehoe <brendan@cygnus.com>
12670
12671 * configure.in (*-*-ose): Remove exclusion of libgloss for this
12672 target, it now compiles correctly.
12673
12674 Sat Jul 27 15:10:43 1996 Stan Shebs <shebs@andros.cygnus.com>
12675
12676 * mpw-config.in: Generate Mac include for elf/dwarf2.h.
12677
12678 Tue Jul 23 10:47:04 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
12679
12680 * configure.in (d10v-*-*): Remove ld from $noconfigdirs.
12681
12682 Mon Jul 22 13:28:51 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
12683
12684 * configure.in (native_only): Add prms.
12685
12686 Mon Jul 22 12:27:58 1996 Ian Lance Taylor <ian@cygnus.com>
12687
12688 * Makefile.in (GAS_SUPPORT_DIRS): Add make-all.com and setup.com.
12689 (BINUTILS_SUPPORT_DIRS): Likewise.
12690
12691 Thu Jul 18 12:55:40 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12692
12693 * configure.in (d10v-*-*): Don't configure ld or gdb until the
12694 d10v support is added.
12695
12696 Wed Jul 17 14:33:09 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
12697
12698 * configure.in (d10v-*-*): New target.
12699
12700 Mon Jul 15 11:53:00 1996 Jeffrey A Law (law@cygnus.com)
12701
12702 * config.guess (HP 9000/811): Recognize this as a PA1.1
12703 machine.
12704
12705 Fri Jul 12 23:21:17 1996 Ken Raeburn <raeburn@cygnus.com>
12706
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.
12709 (taz): Use it.
12710
12711 Fri Jul 12 12:08:04 1996 Stan Shebs <shebs@andros.cygnus.com>
12712
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.
12716
12717 Fri Jul 12 09:52:52 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12718
12719 * Makefile.in (CONFIGURE_TARGET_MODULES): Set r environment
12720 variable that CC_FOR_TARGET needs.
12721
12722 Thu Jul 11 10:09:45 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12723
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.
12729
12730 Wed Jul 10 18:56:59 1996 Doug Evans <dje@canuck.cygnus.com>
12731
12732 * Makefile.in (ALL_MODULES,CROSS_CHECK_MODULES,INSTALL_MODULES,
12733 CLEAN_MODULES): Add bash.
12734 (all-bash): New target.
12735
12736 Mon Jul 8 17:33:14 1996 Jim Wilson <wilson@cygnus.com>
12737
12738 * configure.in (mips-sgi-irix6*): Use mh-irix6 instead of mh-irix5.
12739
12740 Mon Jul 1 13:31:35 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12741
12742 * config.sub (basic_machine): Recognize d10v as a valid processor.
12743
12744 Fri Jun 28 12:14:35 1996 Stan Shebs <shebs@andros.cygnus.com>
12745
12746 * mpw-configure: Add support for --bindir.
12747 * mpw-build.in: Use a GCC-specific build script for GCC actions.
12748
12749 Wed Jun 26 17:20:12 1996 Geoffrey Noer <noer@cygnus.com>
12750
12751 * configure.in: add bash, time, gawk to list of hosttools and things
12752 to only build for native toolchains
12753
12754 Tue Jun 25 23:09:03 1996 Jason Molenda (crash@godzilla.cygnus.co.jp)
12755
12756 * Makefile.in (docdir): Remove.
12757
12758 Tue Jun 25 19:00:08 1996 Jason Molenda (crash@godzilla.cygnus.co.jp)
12759
12760 * Makefile.in (datadir): Set to $(prefix)/share.
12761
12762 Mon Jun 24 23:26:07 1996 Geoffrey Noer <noer@cygnus.com>
12763
12764 * configure.in: build diff and patch for cygwin32-hosted
12765 toolchains.
12766
12767 Mon Jun 24 15:01:12 1996 Joel Sherrill <joel@merlin.gcs.redstone.army.mil>
12768
12769 * config.sub: Accept -rtems*.
12770
12771 Sun Jun 23 22:41:54 1996 Geoffrey Noer <noer@cygnus.com>
12772
12773 * configure.in: enable dosrel for cygwin32-hosted builds,
12774 remove diff from the list of things not buildable
12775 via Canadian Cross
12776
12777 Sat Jun 22 11:39:01 1996 Jason Merrill <jason@yorick.cygnus.com>
12778
12779 * Makefile.in (TARGET_SUBDIR): Move comment to previous line so we
12780 don't get ". ".
12781
12782 Fri Jun 21 17:24:48 1996 Jim Wilson <wilson@cygnus.com>
12783
12784 * configure.in (mips*-sgi-irix6*): Set noconfigdirs appropriately.
12785
12786 Thu Jun 20 16:57:40 1996 Ken Raeburn <raeburn@cygnus.com>
12787
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
12790 subdirectory.
12791
12792 Thu Jun 20 12:20:33 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12793
12794 * config.guess (*:Linux:*:*): Add support for PowerPC Linux.
12795
12796 Tue Jun 18 14:24:12 1996 Klaus Kaempf (kkaempf@progis.de)
12797
12798 * config.sub: Recognize -openvms.
12799 * configure.in (alpha*-*-*vms*): Set noconfigdirs.
12800 * make-all.com, setup.com: New files.
12801
12802 Mon Jun 17 16:34:46 1996 Jason Merrill <jason@yorick.cygnus.com>
12803
12804 * Makefile.in (taz): tex3patch moved to texinfo/util.
12805
12806 Sat Jun 15 17:13:25 1996 Geoffrey Noer <noer@cygnus.com>
12807
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
12811
12812 Fri Jun 7 18:16:52 1996 Harlan Stenn <harlan@pfcs.com>
12813
12814 * config.guess (i?86-ncr-sysv*): Emit minor release numbers.
12815 Recognize the NCR 4850 machine and NCR Pentium-based platforms.
12816
12817 Wed Jun 5 00:09:17 1996 Per Bothner <bothner@wombat.gnu.ai.mit.edu>
12818
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>.
12822
12823 Fri Jun 7 14:24:49 1996 Tom Tromey <tromey@creche.cygnus.com>
12824
12825 * configure.in: Added copyright notice.
12826 * move-if-change: Added copyright notice.
12827
12828 Thu Jun 6 16:27:05 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12829
12830 * configure.in (powerpcle-*-solaris*): Until we get shared
12831 libraries working, don't build gdb, sim, make, tcl, tk, or
12832 expect.
12833
12834 Tue Jun 4 20:41:45 1996 Per Bothner <bothner@deneb.cygnus.com>
12835
12836 * config.guess: Merge with FSF:
12837
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.
12840
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.
12843
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.
12849
12850 Tue Jun 4 11:07:25 1996 Tom Tromey <tromey@csk3.cygnus.com>
12851
12852 * Makefile.in (MAKEDIRS): Removed $(tooldir).
12853
12854 Tue May 28 12:30:50 1996 Stan Shebs <shebs@andros.cygnus.com>
12855
12856 * mpw-README: Document GCCIncludes.
12857
12858 Sun May 26 15:16:27 1996 Fred Fish <fnf@cygnus.com>
12859
12860 * configure.in (alpha-*-linux*): Set enable_shared to yes.
12861
12862 Tue May 21 15:41:39 1996 Stan Shebs <shebs@andros.cygnus.com>
12863
12864 * mpw-configure: Handle --enable-FOO and --disable-FOO.
12865
12866 Mon May 20 10:12:29 1996 Geoffrey Noer <noer@cygnus.com>
12867
12868 * configure.in (*-*-cygwin32): Configure make.
12869
12870 Tue May 7 14:19:42 1996 Tom Tromey <tromey@snuffle.cygnus.com>
12871
12872 * Makefile.in (inet-install): Quote value of INSTALL_MODULES.
12873
12874 Fri May 3 08:57:17 1996 Tom Tromey <tromey@lisa.cygnus.com>
12875
12876 * Makefile.in (all-inet): Depend on all-perl.
12877
12878 * Makefile.in (inet-install): New target.
12879
12880 * Makefile.in (all-inet): Depend on all-tcl.
12881 (all-inet): Depend on all-send-pr.
12882
12883 Tue Apr 30 13:55:51 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12884
12885 * configure.in (powerpcle-*-solaris*): Turn off tk and tcl
12886 temporarily.
12887
12888 Thu Apr 25 11:48:20 1996 Ian Lance Taylor <ian@cygnus.com>
12889
12890 * configure.in: Don't configure --with-gnu-ld on AIX.
12891
12892 Thu Apr 25 06:33:36 1996 Michael Meissner <meissner@wogglebug.tiac.net>
12893
12894 * configure.in (powerpcle-*-solaris*): Turn off gdb temporarily.
12895
12896 Tue Apr 23 09:07:39 1996 Tom Tromey <tromey@creche.cygnus.com>
12897
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.
12903
12904 * configure.in (host_tools): Added inet.
12905 (native_only): Added inet.
12906 (noconfigdirs): Added inet.
12907
12908 Fri Apr 19 15:35:29 1996 Ian Lance Taylor <ian@cygnus.com>
12909
12910 * configure.in: Don't configure libgloss if we are not configuring
12911 newlib.
12912
12913 Wed Apr 17 19:30:01 1996 Rob Savoye <rob@chinadoll.cygnus.com>
12914
12915 * configure.in: Don't configure libgloss for unsupported
12916 architectures.
12917
12918 Tue Apr 16 11:17:05 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12919
12920 * Makefile.in (CLEAN_MODULES): Add clean-apache.
12921
12922 Mon Apr 15 15:09:05 1996 Tom Tromey <tromey@creche.cygnus.com>
12923
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.
12928
12929 * configure.in: Added apache everywhere perl is seen.
12930
12931 Mon Apr 15 14:59:13 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12932
12933 * Makefile.in: Add support for clean-{module} and
12934 clean-target-{module} rules.
12935
12936 Wed Apr 10 21:37:41 PDT 1996 Marilyn E. Sander <msander@cygnus.com>
12937
12938 * configure.in (*-*-ose) do not build libgloss.
12939
12940 Mon Apr 8 16:16:20 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12941
12942 * config.guess (prep*:SunOS:5.*:*): Turn into
12943 powerpele-unknown-solaris2.
12944
12945 Mon Apr 8 14:45:41 1996 Ian Lance Taylor <ian@cygnus.com>
12946
12947 * configure.in: Permit --enable-shared to specify a list of
12948 directories.
12949
12950 Fri Apr 5 08:17:57 1996 Jason Molenda (crash@phydeaux.cygnus.com)
12951
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.
12954
12955 Fri Apr 5 03:16:13 1996 Jason Molenda (crash@phydeaux.cygnus.com)
12956
12957 * Makefile.in (BASE_FLAGS_TO_PASS): pass down $(MAKE).
12958
12959 Thu Mar 28 14:11:11 1996 Tom Tromey <tromey@creche.cygnus.com>
12960
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.
12969
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
12973 done.
12974
12975 Tue Mar 26 21:18:50 1996 Andrew Cagney <cagney@kremvax.highland.com.au>
12976
12977 * configure (--enable-*): Handle quoted option lists such as
12978 --enable-sim-cflags='-g0 -O' better.
12979
12980 Thu Mar 21 11:53:08 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12981
12982 * Makefile.in ({,inst}all-target): New rule so we can make and
12983 install all of the target directories easily.
12984
12985 Wed Mar 20 18:10:57 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
12986
12987 * configure.in: Add missing global flag in sed substitution when
12988 deleting `target-' from ${configdirs}.
12989
12990 Thu Mar 14 19:15:06 1996 Ian Lance Taylor <ian@cygnus.com>
12991
12992 * Makefile.in (DO_X): Don't get confused if CC contains `=' in an
12993 option.
12994
12995 * configure.in (mips*-nec-sysvr4*): Use a host_makefile_frag of
12996 config/mh-necv4.
12997
12998 * install.sh: Correct misspelling of transformbasename.
12999
13000 * config.guess: Recognize mips-*-sysv*.
13001
13002 Mon Mar 11 15:36:42 1996 Dawn Perchik <dawn@critters.cygnus.com>
13003
13004 * config.sub: Recognize mon960.
13005
13006 Sun Mar 10 13:18:38 1996 Ian Lance Taylor <ian@cygnus.com>
13007
13008 * configure: Restore Canadian Cross handling of BISON and LEX,
13009 removed in Feb 20 change.
13010
13011 Fri Mar 8 20:07:09 1996 Per Bothner <bothner@kalessin.cygnus.com>
13012
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.
13016
13017 Fri Mar 8 17:51:35 1996 Ian Lance Taylor <ian@cygnus.com>
13018
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.
13022
13023 Tue Mar 5 08:21:44 1996 J.T. Conklin <jtc@rtl.cygnus.com>
13024
13025 * configure.in (m68k-*-netbsd*): Build everything now.
13026
13027 Wed Feb 28 12:25:46 1996 Jason Merrill <jason@yorick.cygnus.com>
13028
13029 * Makefile.in (taz): Fix quoting.
13030
13031 Tue Feb 27 11:33:57 1996 Doug Evans <dje@charmed.cygnus.com>
13032
13033 * configure.in (sparclet-*-*): Build everything now.
13034
13035 Tue Feb 27 14:31:51 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
13036
13037 * configure.in (m68k-*-linux*): New host.
13038
13039 Mon Feb 26 14:32:44 1996 Ian Lance Taylor <ian@cygnus.com>
13040
13041 * configure: Check for bison before byacc.
13042
13043 Tue Feb 20 23:12:35 1996 Stu Grossman (grossman@critters.cygnus.com)
13044
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.
13049
13050 Mon Feb 19 11:45:30 1996 Ian Lance Taylor <ian@cygnus.com>
13051
13052 * Makefile.in: Make everything which depends upon all-bfd also
13053 depend upon all-opcodes, in case --with-commonbfdlib is used.
13054
13055 Thu Feb 15 19:50:50 1996 Michael Meissner <meissner@tiktok.cygnus.com>
13056
13057 * configure.in (host *-*-cygwin32): Don't build gdb if we are
13058 building NT native compilers on Unix.
13059
13060 Thu Feb 15 17:42:25 1996 Ian Lance Taylor <ian@cygnus.com>
13061
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.
13066
13067 Wed Feb 14 16:57:40 1996 Ian Lance Taylor <ian@cygnus.com>
13068
13069 * config.sub: Merge with FSF.
13070
13071 Tue Feb 13 14:27:48 1996 Ian Lance Taylor <ian@cygnus.com>
13072
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.
13076
13077 Mon Feb 12 15:28:49 1996 Doug Evans <dje@charmed.cygnus.com>
13078
13079 * config.sub, configure.in: Recognize sparclet cpu.
13080
13081 Mon Feb 12 15:33:59 1996 Christian Bauernfeind <chrisbfd@theorie3.physik.uni-erlangen.de>
13082
13083 * config.guess: Support m68k-cbm-sysv4.
13084
13085 Sat Feb 10 12:06:42 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
13086
13087 * config.guess (*:Linux:*:*): Guess m68k-unknown-linux and
13088 m68k-unknown-linuxaout from linker help string. Put quotes around
13089 $ld_help_string.
13090
13091 Thu Dec 7 09:03:24 1995 Tom Horsley <Tom.Horsley@mail.hcsc.com>
13092
13093 * config.guess (powerpc-harris-powerunix): Add guess for port
13094 to new target.
13095
13096 Thu Feb 8 15:37:52 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
13097
13098 * config.guess (UNAME_VERSION): Recognize X4.x as an OSF version.
13099
13100 Mon Feb 5 16:36:51 1996 Ian Lance Taylor <ian@cygnus.com>
13101
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.
13116
13117 Sun Feb 4 16:51:11 1996 Steve Chamberlain <sac@slash.cygnus.com>
13118
13119 * config.guess (*:CYGWIN*): New
13120
13121 Sat Feb 3 10:42:35 1996 Michael Meissner <meissner@tiktok.cygnus.com>
13122
13123 * Makefile.in (all-target-winsup): All all-target-libiberty.
13124
13125 Fri Feb 2 17:58:56 1996 Michael Meissner <meissner@tiktok.cygnus.com>
13126
13127 * configure.in (noconfigdirs): Add missing # in front of comment.
13128
13129 Thu Feb 1 14:38:13 1996 Geoffrey Noer <noer@cygnus.com>
13130
13131 * configure.in: add second pass to things added to noconfigdirs
13132 so *-gm-magic can exclude libgloss properly.
13133
13134 Thu Feb 1 11:10:16 1996 Stan Shebs <shebs@andros.cygnus.com>
13135
13136 * mpw-configure (extralibs_name, rez_name): Set correctly
13137 for MWC68K compiler.
13138
13139 * mpw-README: Add more info on the necessary build tools.
13140
13141 Thu Feb 1 10:22:38 1996 Steve Chamberlain <sac@slash.cygnus.com>
13142
13143 * configure.in, config.sub: Recognize cygwin32.
13144
13145 Wed Jan 31 14:17:10 1996 Richard Henderson <rth@tamu.edu>
13146
13147 * config.guess, config.sub: Recognize A/UX.
13148
13149 Wed Jan 31 13:52:14 1996 Ian Lance Taylor <ian@cygnus.com>
13150
13151 * config.sub: Merge with gcc/config.sub.
13152
13153 Thu Jan 25 11:01:10 1996 Raymond Jou <rjou@mexican.cygnus.com>
13154
13155 * mpw-build.in (do-binutils): Add build of stamps.
13156
13157 Thu Jan 25 17:05:26 1996 James G. Smith <jsmith@cygnus.co.uk>
13158
13159 * config.sub: Add recognition for mips64vr4100*-* targets.
13160
13161 Wed Jan 24 12:47:55 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
13162
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.
13169
13170 Wed Jan 24 20:32:30 1996 Torbjorn Granlund <tege@noisy.matematik.su.se>
13171
13172 * configure: Pass --nfp to recursive configures.
13173
13174 Mon Jan 22 10:41:56 1996 Steve Chamberlain <sac@slash.cygnus.com>
13175
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.
13182 (DO_X): Ditto.
13183 * configure: Add DLLTOOL.
13184
13185 Fri Jan 19 13:30:15 1996 Stan Shebs <shebs@andros.cygnus.com>
13186
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.
13191
13192 Sun Jan 14 23:01:31 1996 Fred Fish <fnf@cygnus.com>
13193
13194 * Makefile.in (CONFIGURE_TARGET_MODULES): Add missing ';'.
13195
13196 Fri Jan 12 15:25:35 1996 Ian Lance Taylor <ian@cygnus.com>
13197
13198 * configure.in: Make sure that ${CC} can be used to compile an
13199 executable.
13200
13201 Sat Jan 6 07:23:33 1996 Michael Meissner <meissner@wogglebug.tiac.net>
13202
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.
13206
13207 Wed Jan 3 17:54:41 1996 Doug Evans <dje@canuck.cygnus.com>
13208
13209 * Makefile.in (newlib.tar.gz): Delete building of newlib's info files.
13210
13211 Mon Jan 1 19:09:14 1996 Brendan Kehoe <brendan@rtl.cygnus.com>
13212
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.
13215
13216 Sat Dec 30 16:08:57 1995 Doug Evans <dje@canuck.cygnus.com>
13217
13218 * config-ml.in: Add support for
13219 --disable-{softfloat,m68881,m68000,m68020} on m68*-*-*.
13220 Simplify setting of multidirs from --disable-foo.
13221
13222 Fri Dec 29 07:56:11 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13223
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.
13230
13231 Wed Dec 27 15:51:48 1995 Doug Evans <dje@canuck.cygnus.com>
13232
13233 * config-ml.in (ml_realsrcdir): New, to account for ${subdir}.
13234
13235 Tue Dec 26 11:45:31 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13236
13237 * config.guess (AViiON:dgux:*:*): Update from FSF to add pentium
13238 DG/UX support.
13239
13240 Fri Dec 15 10:01:27 1995 Stan Cox <coxs@dg-rtp.dg.com>
13241
13242 * config.sub (i*86*) Change [345] to [3456]
13243
13244 Wed Dec 20 17:41:40 1995 Brendan Kehoe <brendan@lisa.cygnus.com>
13245
13246 * configure.in (noconfigdirs): Add gas or ld if --with-gnu-as=no or
13247 --with-gnu-ld=no.
13248
13249 Wed Dec 20 15:15:35 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13250
13251 * config-ml.in (rs6000*, powerpc*): Add switches to control which
13252 AIX multilibs get built.
13253
13254 Mon Dec 18 17:55:46 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13255
13256 * configure.in (i386-win32): Don't build expect if we're not
13257 building the tcl subdir.
13258
13259 Mon Dec 18 11:47:19 1995 Stan Shebs <shebs@andros.cygnus.com>
13260
13261 * Makefile.in: (configure-target-examples, all-target-examples):
13262 New targets, configure and build example programs.
13263
13264 Fri Dec 15 16:13:03 1995 Stan Shebs <shebs@andros.cygnus.com>
13265
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.
13269
13270 Wed Dec 13 16:43:51 1995 Ian Lance Taylor <ian@cygnus.com>
13271
13272 * config.sub: Accept *-*-ieee*.
13273
13274 Tue Dec 12 11:52:57 1995 Ian Lance Taylor <ian@cygnus.com>
13275
13276 * Makefile.in (local-distclean): Remove $(TARGET_SUBDIR). From
13277 Ronald F. Guilmette <rfg@monkeys.com>.
13278
13279 Mon Dec 11 15:31:58 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13280
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.
13285
13286 Sat Dec 9 14:58:28 1995 Jim Wilson <wilson@chestnut.cygnus.com>
13287
13288 * configure.in (noconfigdirs): Exclude target-newlib for all versions
13289 of vxworks, not just vxworks5.1.
13290
13291 Mon Dec 4 12:05:40 1995 Stan Shebs <shebs@andros.cygnus.com>
13292
13293 * mpw-configure: Add support for exec-prefix.
13294
13295 Mon Dec 4 10:22:50 1995 Jeffrey A. Law <law@rtl.cygnus.com>
13296
13297 * config.guess: Recognize HP model 816 machines as having
13298 a PA1.1 processor.
13299
13300 Mon Dec 4 12:38:15 1995 Ian Lance Taylor <ian@cygnus.com>
13301
13302 * configure: Ignore new autoconf configure options.
13303
13304 Thu Nov 30 16:57:33 1995 Per Bothner <bothner@wombat.gnu.ai.mit.edu>
13305
13306 * config.guess: Recognize Pentium under SCO.
13307 From Robert Lipe <robertl@arnet.com>.
13308
13309 Wed Nov 29 13:49:08 1995 J.T. Conklin <jtc@rtl.cygnus.com>
13310
13311 * configure.in (noconfigdirs): Disable target-libio on v810-*-*.
13312
13313 Wed Nov 29 12:12:01 1995 Ian Lance Taylor <ian@cygnus.com>
13314
13315 * configure.in: Don't configure gas for alpha-dec-osf*.
13316
13317 Tue Nov 28 17:16:48 1995 Ian Lance Taylor <ian@cygnus.com>
13318
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*.
13322
13323 Mon Nov 27 13:44:15 1995 Ian Lance Taylor <ian@cygnus.com>
13324
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.
13329
13330 Fri Nov 24 17:29:29 1995 Doug Evans <dje@deneb.cygnus.com>
13331
13332 * config-ml.in: Prefix more variables with ml_ so they don't collide
13333 with configure's.
13334
13335 Wed Nov 22 11:27:02 1995 Ian Lance Taylor <ian@cygnus.com>
13336
13337 * configure: Don't turn -v into --v.
13338
13339 Tue Nov 21 16:48:02 1995 Doug Evans <dje@deneb.cygnus.com>
13340
13341 * configure.in (targargs): Fix typo.
13342
13343 * Makefile.in (DEVO_SUPPORT): Add symlink-tree.
13344
13345 Tue Nov 21 14:08:28 1995 Ian Lance Taylor <ian@cygnus.com>
13346
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.
13353
13354 Fri Nov 17 17:50:30 1995 Stan Shebs <shebs@andros.cygnus.com>
13355
13356 * config.sub: Merge -macos*, -magic*, -pe*, and -win32 cases
13357 into general OS recognition case.
13358
13359 Fri Nov 17 17:42:25 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13360
13361 * configure.in (target_configdirs): add target-winsup only
13362 for win32 target systems.
13363
13364 Thu Nov 16 14:04:47 1995 Ian Lance Taylor <ian@cygnus.com>
13365
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.
13369
13370 Wed Nov 15 14:47:52 1995 Ken Raeburn <raeburn@cygnus.com>
13371
13372 * Makefile.in (DEVO_SUPPORT): Use config-ml.in instead of
13373 cfg-ml-*.in.
13374
13375 Wed Nov 15 11:45:23 1995 Ian Lance Taylor <ian@cygnus.com>
13376
13377 * configure: Handle LD and LD_FOR_TARGET when configuring a
13378 Canadian Cross.
13379
13380 Tue Nov 14 14:56:11 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13381
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.
13385
13386 Tue Nov 14 01:25:50 1995 Doug Evans <dje@canuck.cygnus.com>
13387
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.
13396
13397 Mon Nov 13 12:34:20 1995 Stan Shebs <shebs@andros.cygnus.com>
13398
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.
13405
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
13408 just macos.
13409 * configure.in: Configure grez resource compiler if targeting Mac.
13410 * Makefile.in (all-grez, install-grez): New targets.
13411
13412 Wed Nov 8 17:33:51 1995 Jason Merrill <jason@yorick.cygnus.com>
13413
13414 * configure: CXX defaults to gcc, not g++. If we find
13415 gcc in the path, set CC to gcc -O2.
13416
13417 Tue Nov 7 15:45:17 1995 Ian Lance Taylor <ian@cygnus.com>
13418
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
13422 variables.
13423 * configure.in: When doing a Canadian Cross, don't try to
13424 configure tools whose configure script can't handle it.
13425
13426 Mon Nov 6 19:32:17 1995 Jim Wilson <wilson@chestnut.cygnus.com>
13427
13428 * cfg-ml-com.in (sh-*-*): Add m2 and ml/m2 to multidirs.
13429
13430 Sun Nov 5 00:15:41 1995 Per Bothner <bothner@kalessin.cygnus.com>
13431
13432 * configure: Remove dubious bug reporting address.
13433
13434 Fri Nov 3 08:17:54 1995 Per Bothner <bothner@kalessin.cygnus.com>
13435
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.
13439
13440 Thu Nov 2 23:23:36 1995 Per Bothner <bothner@kalessin.cygnus.com>
13441
13442 * configure.in: Before checking for the existence of various files,
13443 use sed to filter out "target-".
13444
13445 Thu Nov 2 13:24:56 1995 Ian Lance Taylor <ian@cygnus.com>
13446
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).
13450
13451 Wed Nov 1 15:18:35 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13452
13453 * Makefile.in (all-patch): depend on all-libiberty.
13454
13455 Wed Nov 1 12:23:20 1995 Ian Lance Taylor <ian@cygnus.com>
13456
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
13460 distribution.
13461
13462 Tue Oct 31 17:52:39 1995 J.T. Conklin <jtc@slave.cygnus.com>
13463
13464 * configure.in (host_makefile_frag): Use m68k-sun-sunos* instead
13465 of m68k-sun-* when selecting mh-sun3 to avoid matching NetBSD/sun3
13466 systems.
13467
13468 Tue Oct 31 16:57:32 1995 Jim Wilson <wilson@chestnut.cygnus.com>
13469
13470 * configure.in (copy_dirs): Use sys-include instead of include
13471 for --with-headers option.
13472
13473 Tue Oct 31 10:29:36 1995 steve chamberlain <sac@slash.cygnus.com>
13474
13475 * Makefile.in, configure.in: Make winsup builds work with
13476 new scheme.
13477
13478 Mon Oct 30 18:57:09 1995 Ian Lance Taylor <ian@cygnus.com>
13479
13480 * configure.in: Build the linker on AIX.
13481
13482 Mon Oct 30 12:27:16 1995 Per Bothner <bothner@kalessin.cygnus.com>
13483
13484 * Makefile.in (CC_FOR_TARGET, CXX_FOR_TARGET): Add $(TARGET_SUBDIR)
13485 where needed.
13486
13487 Mon Oct 30 12:45:25 1995 Doug Evans <dje@cygnus.com>
13488
13489 * Makefile.in (all-gcc): Fix typo.
13490
13491 Sat Oct 28 10:27:59 1995 Per Bothner <bothner@kalessin.cygnus.com>
13492
13493 * Makefile.in ($(CHECK_TARGET_MODULES)): Fix typo.
13494
13495 Fri Oct 27 23:14:12 1995 Per Bothner <bothner@kalessin.cygnus.com>
13496
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.
13512
13513 Sat Oct 28 01:53:49 1995 Ken Raeburn <raeburn@cygnus.com>
13514
13515 * Makefile.in (taz): Build "info" in etc explicitly.
13516
13517 Fri Oct 27 09:32:30 1995 Stu Grossman (grossman@cygnus.com)
13518
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.
13522
13523 Thu Oct 26 22:35:01 1995 Stan Shebs <shebs@andros.cygnus.com>
13524
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.
13529
13530 Thu Oct 26 05:45:10 1995 Ken Raeburn <raeburn@kr-pc.cygnus.com>
13531
13532 * Makefile.in (taz): Use ";" instead of ";;".
13533
13534 Wed Oct 25 15:18:24 1995 Per Bothner <bothner@kalessin.cygnus.com>
13535
13536 * Makefile.in (taz): Grep for '^diststuff:' or '^info:' in
13537 sub-directory Makefiles, instead of using DISTSTUFFDIRS and
13538 DISTDOCDIRS.
13539 (DISTSTUFFDIRS, DISTDOCDIRS): Removed - no longer used.
13540 (newlib.tar.gz): Don't pass DISTDOCDIRS to recursive make.
13541
13542 Wed Oct 25 14:43:55 1995 Per Bothner <bothner@kalessin.cygnus.com>
13543
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.
13547
13548 Tue Oct 24 18:19:09 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13549
13550 * Makefile.in (X11_LIB): Removed.
13551 (X11_FLAGS_TO_PASS): pass only X11_EXTRA_CFLAGS and X11_EXTRA_LIBS.
13552
13553 * configure.in (host_makefile_frag): mh-aix & mh-sun removed.
13554
13555 Sun Oct 22 13:04:42 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13556
13557 * cfg-ml-com.in (powerpc*): Shorten some of the multilib directory
13558 names.
13559
13560 Fri Oct 20 18:02:10 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13561
13562 * cfg-ml-com.in (powerpc*-eabi*): Add mcall-aixdesc varients.
13563
13564 Thu Oct 19 10:40:57 1995 steve chamberlain <sac@slash.cygnus.com>
13565
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.
13571
13572 Wed Oct 18 15:53:56 1995 steve chamberlain <sac@slash.cygnus.com>
13573
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.
13578
13579 Mon Oct 16 09:42:31 1995 Jeffrey A Law (law@cygnus.com)
13580
13581 * config.guess: Recognize HP model 819 machines as having
13582 a PA 1.1 processor.
13583
13584 Mon Oct 16 10:49:43 1995 Ian Lance Taylor <ian@cygnus.com>
13585
13586 * configure: Fix sed loop which substitutes for CC and CXX to
13587 avoid bug found in various sed implementations.
13588
13589 Wed Oct 11 16:16:20 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13590
13591 * cfg-ml-com.in (powerpc-*-eabisim): Delete separate rule for
13592 simulator. Use standard powerpc-*-eabi*.
13593
13594 Mon Oct 9 17:21:56 1995 Ian Lance Taylor <ian@cygnus.com>
13595
13596 * configure.in: Stop putting gas and binutils in noconfigdirs for
13597 powerpc-*-aix* and rs6000-*-*.
13598
13599 Mon Oct 9 12:38:40 1995 Michael Meissner <meissner@cygnus.com>
13600
13601 * cfg-ml-com.in (powerpc*-*-eabisim*): Add support for building
13602 -mcall-aixdesc libraries.
13603
13604 Fri Oct 6 16:17:57 1995 Ken Raeburn <raeburn@cygnus.com>
13605
13606 Mon Sep 25 22:49:32 1995 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
13607
13608 * config.sub (arm | armel | armeb): Fix shell syntax.
13609
13610 Fri Oct 6 14:40:28 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13611
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
13615 libraries.
13616
13617 Thu Oct 5 13:26:37 1995 Brendan Kehoe <brendan@lisa.cygnus.com>
13618
13619 * configure.in: Allow configuration and build of emacs19 for the alpha.
13620
13621 Wed Oct 4 22:05:36 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13622
13623 * configure.in (CC): Get ^CC, not just any old CC, from
13624 ${host_makefile_frag}.
13625
13626 Wed Oct 4 21:55:00 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13627
13628 * configure.in (CC): Try to get CC from
13629 ${srcdir}/${host_makefile_frag}, not ${host_makefile_frag}.
13630
13631 Wed Oct 4 21:44:12 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13632
13633 * Makefile.in (TARGET_CONFIGDIRS): configure targetdirs
13634 only if it exists in $(srcdir).
13635
13636 Wed Oct 4 11:52:31 1995 Ian Lance Taylor <ian@cygnus.com>
13637
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
13650 by configure.in.
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.
13666
13667 Sat Sep 30 04:32:59 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13668
13669 * configure.in (host i[345]86-*-win32): Expand the
13670 noconfigdirs again.
13671
13672 Thu Sep 28 21:18:49 1995 Stan Shebs <shebs@andros.cygnus.com>
13673
13674 * mpw-configure: Fix sed command file name.
13675
13676 Thu Sep 28 17:39:56 1995 steve chamberlain <sac@slash.cygnus.com>
13677
13678 * configure.in (host i[345]86-*-win32): Reduce the
13679 noconfigdirs again.
13680
13681 Wed Sep 27 12:24:00 1995 Ian Lance Taylor <ian@cygnus.com>
13682
13683 * configure.in: Don't configure ld and gdb for powerpc*-*-winnt*
13684 or powerpc*-*-pe*, since they are not yet supported.
13685
13686 Tue Sep 26 14:30:01 1995 Stan Shebs <shebs@andros.cygnus.com>
13687
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.
13701
13702 Fri Sep 22 12:15:42 1995 Doug Evans <dje@deneb.cygnus.com>
13703
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.
13707
13708 Tue Sep 19 13:51:05 1995 J.T. Conklin <jtc@blues.cygnus.com>
13709
13710 * configure.in (noconfigdirs): Disable libg++ and libstdc++ on
13711 v810-*-*.
13712
13713 Mon Sep 18 23:08:26 1995 J.T. Conklin <jtc@rtl.cygnus.com>
13714
13715 * configure.in (noconfigdirs): Disable bfd, binutils, gas, gcc,
13716 gdb, ld and opcodes on v810-*-*.
13717
13718 Tue Sep 12 18:03:31 1995 Ian Lance Taylor <ian@cygnus.com>
13719
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.
13724
13725 Fri Sep 8 17:11:14 1995 J.T. Conklin <jtc@rtl.cygnus.com>
13726
13727 * configure.in (noconfigdirs): Disable gdb on m68k-*-netbsd*.
13728
13729 Fri Sep 8 16:46:29 1995 Ian Lance Taylor <ian@cygnus.com>
13730
13731 * configure.in: Build ld in mips*-*-bsd* case.
13732
13733 Thu Sep 7 20:03:41 1995 Ken Raeburn <raeburn@cygnus.com>
13734
13735 * config.sub: Accept -lites* OS. From Ian Dall.
13736
13737 Fri Sep 1 08:06:58 1995 James G. Smith <jsmith@beauty.cygnus.com>
13738
13739 * config.sub: recognise mips64vr4300 and mips64vr4300el as valid
13740 targets.
13741
13742 Wed Aug 30 21:06:50 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13743
13744 * configure.in: treat i386-win32 canadian cross the same as
13745 i386-go32 canadian cross.
13746
13747 Thu Aug 24 14:53:20 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13748
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.
13753
13754 Wed Aug 23 09:41:56 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13755
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.
13759
13760 Thu Aug 17 16:03:41 1995 Ken Raeburn <raeburn@kr-laptop.cygnus.com>
13761
13762 * configure: Add Makefile.tem to list of files to remove in trap
13763 handler.
13764
13765 Mon Aug 14 19:27:56 1995 Per Bothner <bothner@kalessin.cygnus.com>
13766
13767 * config.guess (*Linux*): Add missing "exit"s.
13768 Also, need specific check for alpha-unknown-linux (uses COFF).
13769
13770 Fri Aug 11 15:38:20 1995 Per Bothner <bothner@kalessin.cygnus.com>
13771
13772 * config.guess: Merge with FSF:
13773
13774 Wed Jun 28 17:57:27 1995 David Edelsohn <edelsohn@mhpcc.edu>
13775 * config.guess (AIX4): More robust release numbering discovery.
13776
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.
13779
13780 Thu Jun 22 18:36:42 1995 Uwe Seimet (seimet@iris1.chemie.uni-kl.de)
13781 * config.guess (mips:*:4*:UMIPS): New case.
13782
13783 Mon Aug 7 09:21:35 1995 Doug Evans <dje@canuck.cygnus.com>
13784
13785 * configure.in (i386-go32 host): Fix typo (deja-gnu -> dejagnu).
13786 (i386-win32 host): Likewise. Don't build readline.
13787
13788 Sat Aug 5 09:51:49 1995 Fred Fish <fnf@rtl.cygnus.com>
13789
13790 * Makefile.in (GDBTK_SUPPORT_DIRS): Define and pass as part of
13791 SUPPORT_FILES to submakes.
13792
13793 Fri Aug 4 13:04:36 1995 Fred Fish <fnf@cygnus.com>
13794
13795 * Makefile.in (GDB_SUPPORT_DIRS): Add utils.
13796 (DEVO_SUPPORT): Add mpw-README, mpw-build.in, mpw-config.h and
13797 mpw-configure.
13798
13799 Wed Aug 2 16:32:40 1995 Ken Raeburn <raeburn@cygnus.com>
13800
13801 * configure.in (appdirs): Use =, not ==, in test expression when
13802 trying to build the text to print in the warning message for
13803 Solaris users.
13804
13805 Mon Jul 31 09:56:18 1995 steve chamberlain <sac@slash.cygnus.com>
13806
13807 * cfg-ml-com.in (z8k-*-coff): Add 'std' multilib build.
13808
13809 Fri Jul 28 00:16:31 1995 Jeffrey A. Law <law@rtl.cygnus.com>
13810
13811 * config.guess: Recognize lynx-2.3.
13812
13813 Thu Jul 27 15:47:59 1995 steve chamberlain <sac@slash.cygnus.com>
13814
13815 * config.sub (z8ksim): Deleted
13816 (z8k-*-coff): New, this is the one true name of the target.
13817
13818 Thu Jul 27 14:33:33 1995 Doug Evans <dje@canuck.cygnus.com>
13819
13820 * cfg-ml-pos.in (dotdot): Work around SunOS sed bug.
13821
13822 Thu Jul 27 13:31:05 1995 Fred Fish (fnf@cygnus.com)
13823
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.
13827
13828 Thu Jul 27 11:28:17 1995 J.T. Conklin <jtc@rtl.cygnus.com>
13829
13830 * configure.in: Don't build newlib for *-*-vxworks5.1.
13831
13832 Thu Jul 27 11:18:47 1995 Brendan Kehoe <brendan@lisa.cygnus.com>
13833
13834 * configure.in: Don't build newlib for a29k-*-vxworks5.1.
13835 * test-build.mk: Add setting of --with-headers for a29k-vxworks5.1.
13836
13837 Tue Jul 25 21:25:39 1995 Doug Evans <dje@canuck.cygnus.com>
13838
13839 * cfg-ml-pos.in (MULTITOP): Trim excess trailing "/.".
13840
13841 Fri Jul 21 10:41:12 1995 Doug Evans <dje@canuck.cygnus.com>
13842
13843 * cfg-ml-com.in: New file.
13844 * cfg-ml-pos.in: New file.
13845
13846 Wed Jul 19 00:37:27 1995 Jeffrey A. Law <law@rtl.cygnus.com>
13847
13848 * COPYING.NEWLIB: Add HP free copyright to list.
13849
13850 Tue Jul 18 10:58:51 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13851
13852 * config.sub: Recognize -eabi* for the system, not just -eabi.
13853
13854 Mon Jul 3 13:44:51 1995 Steve Chamberlain <sac@slash.cygnus.com>
13855
13856 * Makfile.in (DLLTOOL_FOR_TARGET): New name, pass it down.
13857 * config.sub, configure.in (win32): New target and host.
13858
13859 Wed Jun 28 23:57:08 1995 Steve Chamberlain <sac@slash.cygnus.com>
13860
13861 * configure.in: Add i386-pe configuration.
13862
13863 Fri Jun 23 14:28:44 1995 Stan Shebs <shebs@andros.cygnus.com>
13864
13865 * mpw-build.in (install): Install GDB after LD.
13866
13867 Thu Jun 22 17:10:53 1995 Stan Shebs <shebs@andros.cygnus.com>
13868
13869 * mpw-config.in (elf/mips.h): Always forward-include, needed
13870 for GDB to build.
13871
13872 Wed Jun 21 15:17:30 1995 Rob Savoye <rob@darkstar.cygnus.com>
13873
13874 * testsuite: New directory for customer acceptance and whole tool
13875 chain tests.
13876
13877 Wed Jun 21 16:50:29 1995 Ken Raeburn <raeburn@cujo.cygnus.com>
13878
13879 * configure: If per-host line isn't found, but AC_OUTPUT is found
13880 and a configure script exists, run it instead.
13881
13882 Thu Jun 15 21:09:24 1995 Per Bothner <bothner@kalessin.cygnus.com>
13883
13884 * config.guess: Update from FSF, for alpha-dec-winnt3.5 and Crays.
13885
13886 Tue Jun 13 21:43:27 1995 Rob Savoye <rob@darkstar.cygnus.com>
13887
13888 * configure: Set build_{cpu,vendor,os,alias} to host values when
13889 --build isn't specified.
13890
13891 Mon Jun 5 18:26:36 1995 Jason Merrill <jason@phydeaux.cygnus.com>
13892
13893 * Makefile.in (PICFLAG, PICFLAG_FOR_TARGET): New macros.
13894 (FLAGS_TO_PASS): Pass them.
13895 (EXTRA_TARGET_FLAGS): Ditto.
13896
13897 Wed May 31 22:27:42 1995 Jim Wilson <wilson@chestnut.cygnus.com>
13898
13899 * Makefile.in (all-libg++): Depend on all-libstdc++.
13900
13901 Thu May 25 22:40:59 1995 J.T. Conklin <jtc@rtl.cygnus.com>
13902
13903 * configure.in (noconfigdirs): Enable all packages for
13904 i386-unknown-netbsd.
13905
13906 Sat May 20 13:22:31 1995 Angela Marie Thomas <angela@cirdan.cygnus.com>
13907
13908 * configure.in (noconfigdirs): Don't configure tk for i386-go32
13909 hosted builds (DOS builds)
13910
13911 Thu May 18 18:08:49 1995 Ken Raeburn <raeburn@kr-laptop.cygnus.com>
13912
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.
13916
13917 Thu May 11 17:23:26 1995 Per Bothner <bothner@kalessin.cygnus.com>
13918
13919 * config.guess: Update from FSF.
13920
13921 Tue May 9 15:52:05 1995 Michael Meissner <meissner@cygnus.com>
13922
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
13927 temporarily.
13928
13929 Tue May 2 16:29:41 1995 Jeff Law (law@snake.cs.utah.edu)
13930
13931 * configure.in (hppa*-*-lites*): Treat like hppa*-*-*elf*.
13932
13933 Sun Apr 30 21:38:09 1995 Jeff Law (law@snake.cs.utah.edu)
13934
13935 * config.sub: Accept -lites* as a basic system type.
13936
13937 Thu Apr 27 11:33:29 1995 Michael Meissner (meissner@cygnus.com)
13938
13939 * config.guess (*:Linux:*:*): Check for whether the pre-BFD linker is
13940 installed, and if so return linuxoldld as the system name.
13941
13942 Wed Apr 26 10:59:02 1995 Jeff Law (law@snake.cs.utah.edu)
13943
13944 * config.guess: Add hppa1.1-hp-lites support.
13945
13946 Tue Apr 25 11:08:11 1995 Rob Savoye <rob@darkstar.cygnus.com>
13947
13948 * configure.in: Don't build newlib for m68k-vxworks5.1.
13949
13950 Wed Apr 19 17:02:43 1995 Jim Wilson <wilson@chestnut.cygnus.com>
13951
13952 * configure.in (mips-sgi-irix6): Use mh-irix5.
13953
13954 Fri Apr 14 15:21:17 1995 Doug Evans <dje@chestnut.cygnus.com>
13955
13956 * Makefile.in (all-gcc): Depend on all-ld (for libgcc1-test).
13957
13958 Wed Apr 12 16:06:01 1995 Jason Merrill <jason@phydeaux.cygnus.com>
13959
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.
13963
13964 Tue Apr 11 18:55:40 1995 Doug Evans <dje@canuck.cygnus.com>
13965
13966 * configure.in: Recognize --with-newlib.
13967 (sparc-*-sunos4*): Build sim, dejagnu, expect, tcl if cross target.
13968
13969 Mon Apr 10 14:38:20 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13970
13971 * Makefile.in: move {all,check,install}-gdb from *_MODULES
13972 to *_X11_MODULES due to gdbtk needing X include files et al.
13973
13974 Mon Apr 10 11:42:22 1995 Stan Shebs <shebs@andros.cygnus.com>
13975
13976 Merge in support for Mac MPW as a host.
13977 (Old change descriptions retained for informational value.)
13978
13979 * mpw-config.in: Add generic include forwards for cpu-specific
13980 include files in aout and elf directories.
13981
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.
13990
13991 * mpw-configure: Remove subdir-specific makefile hackery,
13992 delete mk.tmp after using it.
13993
13994 * mpw-build.in (all): Display start and end times.
13995
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.
14002
14003 * mpw-build.in: (install-only): New target.
14004
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.
14009
14010 * mpw-configure (config.status): Write only if changed.
14011 * mpw-config.in (readline): Configure it (not built, just used for
14012 definitions).
14013
14014 * mpw-config.in (elf/mips.h): Add a forward include.
14015
14016 * mpw-config.in: Forward-include most .h files in include into
14017 extra-include.
14018 (readline): Don't build.
14019 mpw-build.in (install): Install GDB.
14020
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.
14027
14028 * mpw-config.in: Use forward-include to create include files.
14029
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.
14034
14035 * config.sub (apple, mac, mpw): Add various aliases.
14036
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.
14040
14041 Fri Apr 7 19:33:16 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
14042
14043 * configure.in (host_libs): Remove glob, since it is gone from the
14044 sources.
14045
14046 Fri Mar 31 11:36:17 1995 Jason Molenda (crash@phydeaux.cygnus.com)
14047
14048 * Makefile.in: define empty GDB_NLM_DEPS var.
14049
14050 * configure.in(target_makefile_frag): use config/mt-netware
14051 for netware targets.
14052
14053 Thu Mar 30 13:51:43 1995 Ian Lance Taylor <ian@cygnus.com>
14054
14055 * config.sub: Merge in recent FSF changes. Remove linux special
14056 cases.
14057
14058 Tue Mar 28 14:47:34 1995 Jason Molenda (crash@phydeaux.cygnus.com)
14059
14060 Revert this change:
14061
14062 Tue Mar 30 10:03:09 1993 Ian Lance Taylor (ian@cygnus.com)
14063
14064 * build-all.mk: Use CC=cc -Xs on Solaris.
14065
14066 Tue Mar 21 10:43:32 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
14067
14068 * glob/*: Removed. Schauer's 24 Feb 1994 readline change made us
14069 stop using it.
14070 * Makefile.in: Nuke all references to glob subdirectory.
14071
14072 Thu Mar 16 13:35:30 1995 Jason Merrill <jason@phydeaux.cygnus.com>
14073
14074 * configure.in: Fix --enable-shared logic in per-host.
14075
14076 Mon Mar 13 12:33:15 1995 Ian Lance Taylor <ian@cygnus.com>
14077
14078 * configure.in (*-hp-hpux[78]*): Use mh-hpux8.
14079
14080 Mon Mar 6 10:21:58 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
14081
14082 * configure.in (noconfigdirs): Don't build gas on AIX, for
14083 powerpc*-*-aix* as well as for rs6000*-*-aix*.
14084
14085 Wed Mar 1 12:51:53 1995 Ian Lance Taylor <ian@cygnus.com>
14086
14087 * configure: Fix --cache-file to work if the file argument is a
14088 relative path.
14089
14090 Tue Feb 28 17:36:07 1995 Ian Lance Taylor <ian@cygnus.com>
14091
14092 * configure: If the --cache-file is used, pass it down to
14093 configure in subdirectories.
14094
14095 Mon Feb 27 12:52:46 1995 Kung Hsu <kung@mexican.cygnus.com>
14096
14097 * config.sub: add vxworks29k configuration.
14098
14099 Fri Feb 10 16:12:26 1995 Ken Raeburn <raeburn@cujo.cygnus.com>
14100
14101 * Makefile.in (taz): Do "diststuff" part quietly.
14102
14103 Sun Feb 5 14:16:35 1995 Doug Evans <dje@canuck.cygnus.com>
14104
14105 * config.sub: Mini-merge with gcc/config.sub.
14106
14107 Sat Feb 4 12:11:35 1995 Jim Wilson <wilson@chestnut.cygnus.com>
14108
14109 * config.guess (IRIX): Sed - to _.
14110
14111 Fri Feb 3 11:54:42 1995 J.T. Conklin <jtc@rtl.cygnus.com>
14112
14113 * Makefile.in (source-vault, binary-vault): New targets.
14114
14115 Thu Jan 26 13:00:11 1995 Michael Meissner <meissner@cygnus.com>
14116
14117 * config.sub: Recognize -eabi as a basic system type.
14118
14119 Thu Jan 12 13:13:23 1995 Jason Merrill <jason@phydeaux.cygnus.com>
14120
14121 * configure.in (enable_shared stuff): Fix typo.
14122
14123 Thu Jan 12 01:36:51 1995 deanm@medulla.LABS.TEK.COM (Dean Messing)
14124
14125 * Makefile.in (BASE_FLAGS_TO_PASS): Fix typo in passing LIBCXXFLAGS*.
14126
14127 Wed Jan 11 16:29:53 1995 Jason Merrill <jason@phydeaux.cygnus.com>
14128
14129 * Makefile.in (LIBCXXFLAGS_FOR_TARGET): Add -fno-implicit-templates.
14130
14131 Mon Jan 9 12:48:01 1995 Jim Kingdon <kingdon@lioth.cygnus.com>
14132
14133 * configure.in (rs6000-*-*): Don't build gas.
14134
14135 Wed Jan 4 23:53:49 1995 Ian Lance Taylor <ian@tweedledumb.cygnus.com>
14136
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.
14141
14142 Wed Jan 4 13:02:39 1995 Per Bothner <bothner@kalessin.cygnus.com>
14143
14144 * config.guess: Merge from FSF.
14145
14146 Thu Dec 15 17:11:37 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
14147
14148 * configure: Don't use $ when handling program_suffix.
14149
14150 Mon Dec 12 12:09:37 1994 Stu Grossman (grossman@cygnus.com)
14151
14152 * configure.in: Configure tk for hppa/hpux.
14153
14154 Fri Dec 2 15:55:38 1994 Per Bothner <bothner@kalessin.cygnus.com>
14155
14156 * Makefile.in (LIBGXX_SUPPORT_DIRS): Add libstdc++.
14157
14158 Tue Nov 29 19:37:56 1994 Per Bothner <bothner@kalessin.cygnus.com>
14159
14160 * Makefile.in: Move -fno-implicit-template from CXXFLAGS
14161 to LIBCXXFLAGS. Tests are better run without it.
14162
14163 Wed Nov 23 10:29:25 1994 Brendan Kehoe (brendan@lisa.cygnus.com)
14164
14165 * Makefile.in (all-ispell): Depend on all-emacs19 instead of all-emacs.
14166
14167 Mon Nov 21 11:14:01 1994 J.T. Conklin <jtc@rtl.cygnus.com>
14168
14169 * configure.in (*-*-netware*): Don't configure xiberty.
14170
14171 Mon Nov 14 08:49:15 1994 Stu Grossman (grossman@cygnus.com)
14172
14173 * configure.in: Remove tk from native_only list.
14174
14175 Fri Nov 11 15:31:26 1994 Bill Cox (bill@rtl.cygnus.com)
14176
14177 * build-all.mk: Add mips-ncd-elf target to sun4 targets
14178 for special NCD build.
14179
14180 Mon Nov 7 20:58:17 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
14181
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.
14186
14187 Mon Nov 7 17:25:18 1994 Bill Cox (bill@cirdan.cygnus.com)
14188
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.
14192
14193 Sat Nov 5 18:43:30 1994 Jason Merrill (jason@phydeaux.cygnus.com)
14194
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.
14203
14204 * configure.in: Support --enable-shared.
14205
14206 Sat Nov 5 15:44:00 1994 Per Bothner <bothner@kalessin.cygnus.com>
14207
14208 * configure.in (target_libs): Include libstdc++ again.
14209 * config.guess: Update from FSF (for FreeBSD).
14210
14211 Thu Nov 3 16:32:30 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
14212
14213 * Makefile.in (DEVO_SUPPORT): Include configure.bat and
14214 makeall.bat.
14215 (DISTDOCDIRS): Add `etc'.
14216 (ETC_SUPPORT_PFX): New variable.
14217 (taz): Include anything from etc starting with a word in
14218 ETC_SUPPORT_PFX.
14219
14220 Wed Oct 26 16:19:35 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
14221
14222 * config.sub: Update for recent FSF changes. Remove obsolete
14223 h8300hds entry. Add -windows* and -osx as basic os. Minor
14224 spacing changes.
14225
14226 Thu Oct 20 18:41:56 1994 Per Bothner <bothner@kalessin.cygnus.com>
14227
14228 * configure.in (target_libs): Remove libstdc++ for libg++-2.6.1.
14229
14230 * config.guess: Merge with FSF.
14231 * configure.in: Match on i?86-ncr-sysv4.3, not i?86-ncr-sysv43.
14232
14233 Thu Oct 20 19:26:56 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
14234
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.
14239
14240 Wed Oct 19 18:49:55 1994 Rob Savoye (rob@cygnus.com)
14241
14242 * Makefile.in: (ALL_TARGET_MODULES,INSTALL_TARGET_MODULES) Build
14243 and install libgloss.
14244
14245 Tue Oct 18 15:25:24 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
14246
14247 * Makefile.in (all-binutils): Depend upon all-byacc.
14248
14249 * configure.in: Don't build emacs on Irix 5.
14250
14251 Mon Oct 17 16:22:12 1994 J.T. Conklin (jtc@phishhead.cygnus.com)
14252
14253 * configure.in (*-*-netware*): Add libio.
14254
14255 Thu Oct 13 15:51:20 1994 Jason Merrill (jason@phydeaux.cygnus.com)
14256
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.
14262
14263 Thu Oct 13 01:43:08 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
14264
14265 * Makefile.in (BINUTILS_SUPPORT_DIRS): Add gas.
14266
14267 Tue Oct 11 12:12:29 1994 Jason Merrill (jason@phydeaux.cygnus.com)
14268
14269 * Makefile.in (CXXFLAGS): Use -fno-implicit-templates instead of
14270 -fexternal-templates.
14271
14272 * configure.in (target_libs): Add libstdc++.
14273 (noconfigdirs): Add libstdc++ as appropriate.
14274
14275 Thu Oct 6 18:00:54 1994 Per Bothner (bothner@kalessin.cygnus.com)
14276
14277 * config.guess: Update from FSF.
14278
14279 Tue Oct 4 12:05:42 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
14280
14281 * configure: Use ${config_shell} when running ${configsub}.
14282
14283 Mon Oct 3 14:28:34 1994 Doug Evans <dje@canuck.cygnus.com>
14284
14285 * config.sub: No longer recognize h8300h.
14286
14287 Mon Oct 3 12:40:54 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
14288
14289 * config.sub: Remove extraneous differences between config.sub and
14290 gcc/config.sub.
14291
14292 Sat Oct 1 00:23:12 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
14293
14294 * Makefile.in (DISTSTUFFDIRS): Add gas.
14295
14296 Thu Sep 22 19:04:55 1994 Doug Evans (dje@canuck.cygnus.com)
14297
14298 * COPYING.NEWLIB: New file.
14299
14300 Mon Sep 19 18:25:40 1994 Per Bothner (bothner@kalessin.cygnus.com)
14301
14302 * config.guess (HP-UX): Patch from Harlan Stenn
14303 <harlan@landmark.com> to also emit release level.
14304
14305 Wed Sep 7 13:15:25 1994 Jim Wilson (wilson@sphagnum.cygnus.com)
14306
14307 * config.guess (sun4*:SunOS:*:*): Change '-JL' to '_JL'.
14308
14309 Tue Sep 6 23:23:18 1994 Per Bothner (bothner@kalessin.cygnus.com)
14310
14311 * config.sub: Merge nextstep cleanup from FSF.
14312
14313 Mon Sep 5 05:01:30 1994 Ken Raeburn (raeburn@kr-pc.cygnus.com)
14314
14315 * configure.in (arm-*-*): Don't configure ld for this target.
14316
14317 Thu Sep 1 09:35:00 1994 J.T. Conklin (jtc@phishhead.cygnus.com)
14318
14319 * configure.in (*-*-netware): don't configure libg++, libio,
14320 librx, or newlib.
14321
14322 Wed Aug 31 13:52:08 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14323
14324 * configure.in (alpha-dec-osf*): Use osf*, not osf1*. Don't
14325 configure ld--it works, but it doesn't support shared libraries.
14326
14327 Sun Aug 28 18:13:45 1994 Per Bothner (bothner@kalessin.cygnus.com)
14328
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>.
14332
14333 Sat Aug 27 15:00:49 1994 Per Bothner (bothner@kalessin.cygnus.com)
14334
14335 * config.guess: Fix i486-ncr-sysv43 -> i486-ncr-sysv4.3.
14336 Fix type: *-next-neststep -> *-next-nextstep.
14337
14338 * config.guess: Merge from FSF:
14339
14340 Fri Aug 26 18:45:25 1994 Philippe De Muyter (phdm@info.ucl.ac.be)
14341
14342 * config.guess: Recognize powerpc-ibm-aix3.2.5.
14343
14344 Wed Apr 20 06:36:32 1994 Philippe De Muyter (phdm@info.ucl.ac.be)
14345
14346 * config.guess: Recognize UnixWare 1.1 (UNAME_SYSTEM is SYSTEM_V
14347 instead of UNIX_SV for UnixWare 1.0).
14348
14349 Sat Aug 27 01:56:30 1994 Stu Grossman (grossman@cygnus.com)
14350
14351 * Makefile.in (all-gdb): Add dependencies on all-gcc and all-ld
14352 to make gdb/nlm/* build after the compiler and linker.
14353
14354 Fri Aug 26 14:30:05 1994 Per Bothner (bothner@kalessin.cygnus.com)
14355
14356 * config.guess (netbsd, freebsd, linux): Accept any machine,
14357 not just i[34]86.
14358 (m68k-atari-sysv4): Relocate to match FSF version.
14359
14360 * config.guess: More merges from the FSF:
14361
14362 Add a space before function call or macro invocation.
14363
14364 Tue May 10 16:53:55 1994 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
14365
14366 * config.guess: Add trap cmd to remove dummy.c and dummy when
14367 interrupted.
14368
14369 Wed Apr 20 18:07:13 1994 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
14370
14371 * config.guess (dummy.c): Redirect stderr for `hostinfo' command.
14372 (dummy): Redirect stderr from compilation of dummy.c.
14373
14374 Sat Apr 9 14:59:28 1994 Christian Kranz (kranz@sent5.uni-duisburg.de)
14375
14376 * config.guess: Distinguish between NeXTStep 2.1 and 3.x.
14377
14378 Fri Aug 26 13:42:20 1994 Ken Raeburn (raeburn@kr-laptop.cygnus.com)
14379
14380 * configure: Accept and ignore --cache*, for compatibility with
14381 new autoconf.
14382
14383 Fri Aug 26 13:05:27 1994 Per Bothner (bothner@kalessin.cygnus.com)
14384
14385 * config.guess: Merge from FSF:
14386
14387 Thu Aug 25 20:28:51 1994 Richard Stallman <rms@mole.gnu.ai.mit.edu>
14388
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.
14392
14393 Wed Aug 17 18:21:02 1994 Tor Egge (tegge@pvv.unit.no)
14394
14395 * config.guess (M88*:DolphinOS:*:*): New case.
14396
14397 Thu Aug 11 17:00:13 1994 Stan Cox (coxs@dg-rtp.dg.com)
14398
14399 * config.guess (AViiON:dgux:*:*): Use TARGET_BINARY_INTERFACE
14400 to select whether to use ELF or COFF.
14401
14402 Sun Jul 24 16:20:53 1994 Richard Stallman <rms@mole.gnu.ai.mit.edu>
14403
14404 * config.guess: Recognize i860-stardent-sysv and i860-unknown-sysv.
14405
14406 Sun May 1 10:23:10 1994 Richard Stallman (rms@mole.gnu.ai.mit.edu)
14407
14408 * config.guess: Guess the OS version for HPUX.
14409
14410 Tue Mar 1 21:53:03 1994 Karl Heuer (kwzh@hal.gnu.ai.mit.edu)
14411
14412 * config.guess (UNAME_VERSION): Recognize aix3.2.4 and aix3.2.5.
14413
14414 Fri Aug 26 11:19:08 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14415
14416 * configure.in: Recognize --with-headers, --with-libs, and
14417 --without-newlib.
14418 * Makefile.in (all-xiberty): Depend upon all-ld.
14419
14420 Wed Aug 24 12:36:50 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14421
14422 * configure.in: Change i[34]86 to i[345]86.
14423
14424 Mon Aug 22 10:58:33 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14425
14426 * configure (version): A few more tweaks to help message.
14427
14428 Fri Aug 19 12:40:25 1994 Per Bothner (bothner@kalessin.cygnus.com)
14429
14430 * Makefile.in: Remove (for now) librx as a host library,
14431 now that we're building it for target.
14432
14433 Fri Aug 19 10:49:17 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14434
14435 * configure: Fix up help message; from karl@owl.hq.ileaf.com
14436 (Karl Berry).
14437
14438 Tue Aug 16 16:11:08 1994 Per Bothner (bothner@kalessin.cygnus.com)
14439
14440 * configure.in: Also configure librx.
14441
14442 Mon Aug 15 16:51:45 1994 Per Bothner (bothner@kalessin.cygnus.com)
14443
14444 * Makefile.in: Update various rules to reflect that librx
14445 is now needed for libg++.
14446
14447 Fri Aug 12 18:07:21 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14448
14449 * config.sub: Accept mips64orion and mips64orionel as a CPU name.
14450
14451 Mon Aug 8 11:36:17 1994 Stan Shebs (shebs@andros.cygnus.com)
14452
14453 * configure.in: Configure the examples directory.
14454
14455 Thu Aug 4 16:12:36 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14456
14457 * configure: Simplify Jun 2 1994 change.
14458
14459 Wed Aug 3 04:58:16 1994 D. V. Henkel-Wallace (gumby@cygnus.com)
14460
14461 * change CC to /usr/latest/bin/gcc for lynx host builds, since
14462 /bin/gcc isn't good enough to build gcc.
14463
14464 Wed Jul 27 09:07:14 1994 Fred Fish (fnf@cygnus.com)
14465
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
14469 mechanism.
14470
14471 Mon Jul 25 11:10:06 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14472
14473 * configure.in: Warn about use of /usr/ucb/cc on Solaris. From
14474 Bill Cox <bill@cygnus.com>.
14475
14476 Sat Jul 23 12:19:46 1994 Per Bothner (bothner@kalessin.cygnus.com)
14477
14478 * config.guess: Recognize ISC. Patch from kwzh@gnu.ai.mit.edu.
14479
14480 Fri Jul 22 17:53:59 1994 Stu Grossman (grossman@cygnus.com)
14481
14482 * configure: Search current dir first in .gdbinit.
14483
14484 Fri Jul 22 11:28:30 1994 Per Bothner (bothner@kalessin.cygnus.com)
14485
14486 * config.sub: Recognize freebsd (merged from gcc config.sub).
14487
14488 Thu Jul 21 14:10:52 1994 Per Bothner (bothner@kalessin.cygnus.com)
14489
14490 * config.sub: Refer to NeXT's operating system as nextstep.
14491
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.
14495
14496 Sat Jul 16 12:03:08 1994 Stan Shebs (shebs@andros.cygnus.com)
14497
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*.
14501
14502 Mon Jul 11 14:37:39 1994 Per Bothner (bothner@kalessin.cygnus.com)
14503
14504 * config.sub: Fix typo powerpc -> powerpc-*.
14505
14506 Sat Jul 9 13:03:43 1994 Michael Tiemann (tiemann@blues.cygnus.com)
14507
14508 * Makefile.in: `all-emacs19' depends on `all-byacc'.
14509
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'.
14513
14514 Thu Jun 30 16:53:42 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14515
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.
14521
14522 Tue Jun 28 13:43:25 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14523
14524 * config.guess: Recognize Mach.
14525
14526 Mon Jun 27 16:41:14 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14527
14528 * configure: Check ${exec_prefixoption}, not ${exec_prefix}, to
14529 see whether --exec-prefix was used.
14530
14531 Sun Jun 26 21:15:54 1994 Per Bothner (bothner@kalessin.cygnus.com)
14532
14533 * README: Explicitly mention libg++/README. (Zoo's idea.)
14534
14535 Tue Jun 21 12:45:55 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14536
14537 * Makefile.in: Add all-librx target similar to all-libproc.
14538
14539 Wed Jun 8 23:11:55 1994 Stu Grossman (grossman@cygnus.com)
14540
14541 * config.guess: Rearrange tests for Alpha-OSF1 to properly deal
14542 with post 1.2 uname bogosity.
14543
14544 Thu Jun 9 00:27:59 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14545
14546 * configure: Remove temporary files on receipt of a signal.
14547
14548 Tue Jun 7 12:06:24 1994 Ian Lance Taylor (ian@cygnus.com)
14549
14550 * configure: If there is a package_makefile_frag, remove
14551 ${subdir}/Makefile.tem after copying it in.
14552
14553 Mon Jun 6 21:35:02 1994 D. V. Henkel-Wallace (gumby@cygnus.com)
14554
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.
14558
14559 Mon Jun 6 16:06:34 1994 Karen Christiansen (karen@cirdan.cygnus.com)
14560
14561 * brought devo/test-build.mk update-to-date with progressive/
14562 test-build.mk. Add lynx targets and hppa flag info.
14563
14564 Sat Jun 4 17:23:54 1994 Per Bothner (bothner@kalessin.cygnus.com)
14565
14566 * configure.in: Use mh-ncrsvr43. Patch from
14567 Tom McConnell <tmcconne@sedona.intel.com>.
14568
14569 Fri Jun 3 17:47:24 1994 Per Bothner (bothner@kalessin.cygnus.com)
14570
14571 * config.guess (i386-unknown-bsdi): No longer need to
14572 check #if defined(__bsdi__) && defined(__i386__).
14573
14574 Thu Jun 2 18:56:46 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14575
14576 * configure: Set program_transform_nameoption correctly.
14577
14578 Thu Jun 2 10:57:06 1994 Karen Christiansen (karen@cirdan.cygnus.com)
14579
14580 * brought build-all.mk update-to-date with progressive build-all.mk,
14581 added new targets and hppa info.
14582
14583 Thu Jun 2 00:12:44 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14584
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.
14589
14590 * Makefile.in (CROSS_CHECK_MODULES): Remove check-flex, since it's
14591 in NATIVE_CHECK_MODULES.
14592
14593 Wed Jun 1 10:49:41 1994 Bill Cox (bill@rtl.cygnus.com)
14594
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.
14599
14600 Tue May 31 19:39:47 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14601
14602 * Makefile.in: Add all-libproc target similar to all-gui.
14603
14604 Tue May 31 17:16:33 1994 Tom Lord (lord@cygnus.com)
14605
14606 * Makefile.in (CHECK_MODULES): split into
14607 HOST_ONLY_CHECK_MODULES and CROSS_CHECK_MODULES.
14608
14609 Tue May 31 16:36:36 1994 Paul Eggert (eggert@twinsun.com)
14610
14611 * config.guess (i386-unknown-bsdi): New system to guess.
14612
14613 Wed May 25 16:47:10 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14614
14615 * Makefile.in: Add all-gui target (but not yet build by "all").
14616
14617 Thu May 26 08:53:19 1994 Bill Cox (bill@rtl.cygnus.com)
14618
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.
14622
14623 Wed May 25 09:15:54 1994 Bill Cox (bill@rtl.cygnus.com)
14624
14625 * config.sub: Strip off patch suffix so rtl is recognized
14626 as a sunos4.1.3 machine, even though it's been patched.
14627
14628 Fri May 20 08:25:49 1994 Steve Chamberlain (sac@deneb.cygnus.com)
14629
14630 * Makefile.in (INSTALL_LAST): Delete.
14631 (INSTALL_DOSREL): New.
14632
14633 Thu May 19 17:12:12 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14634
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.
14638
14639 Thu May 19 09:29:12 1994 Steve Chamberlain (sac@cygnus.com)
14640
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.
14644
14645 Fri May 13 13:28:34 1994 Steve Chamberlain (sac@cygnus.com)
14646
14647 * Makefile.in (Move HOST_PREFIX_1 and friends up so
14648 they can be overriden by templates.
14649
14650 Sat May 7 16:46:44 1994 Steve Chamberlain (sac@cygnus.com)
14651
14652 * configure.in (target==go32): Don't build gdb.
14653 * dosrel: New directory.
14654
14655 Fri May 6 14:19:25 1994 Steve Chamberlain (sac@cygnus.com)
14656
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.
14662
14663 Thu May 5 17:35:05 1994 Stan Shebs (shebs@andros.cygnus.com)
14664
14665 * config.sub (sparclitefrw, sparclitefrwcompat): Don't set the os.
14666
14667 Thu May 5 20:06:45 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
14668
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.
14674
14675 Thu May 5 13:38:36 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14676
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.
14686
14687 Thu May 5 00:16:36 1994 Ken Raeburn (raeburn@kr-pc.cygnus.com)
14688
14689 * configure.in (mips*-dec-bsd*): New target; do build linker.
14690 (mips*-*-bsd*): New target; don't build linker.
14691
14692 Wed May 4 20:10:10 1994 D. V. Henkel-Wallace (gumby@cygnus.com)
14693
14694 * configure.in: support rs6000-*-lynxos* configuration.
14695 support sunos4 as a cross target.
14696
14697 * config.sub: look for lynx*, not lynx since the OS version may
14698 legitimately be part of the name.
14699
14700 Tue May 3 21:48:11 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
14701
14702 * configure.in (i[34]86-*-sco*): Move to be with other i386
14703 targets.
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.
14707
14708 Thu Apr 28 15:03:05 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14709
14710 * configure.in: Only set host_makefile_frag if config
14711 directory exists.
14712
14713 Wed Apr 27 12:14:30 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14714
14715 * install.sh: If $dstdir exists, don't check whether each
14716 component does.
14717
14718 Tue Apr 26 18:11:33 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14719
14720 * test-build.mk (HOLES): Add sleep; used by rcs/src/conf.sh.
14721
14722 Mon Apr 25 15:06:34 1994 Stan Shebs (shebs@andros.cygnus.com)
14723
14724 * configure.in (*-*-lynxos*): Don't configure newlib for either
14725 native or cross Lynx.
14726
14727 Sat Apr 16 11:58:16 1994 Doug Evans (dje@canuck.cygnus.com)
14728
14729 * config.sub (sparc64-elf): Fix os.
14730 (z8k): Remove duplicate.
14731
14732 Thu Apr 14 23:33:17 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14733
14734 * Makefile.in (gcc-no-fixedincludes): Touch gcc/include/fixed, not
14735 gcc/stmp-fixproto, to try to prevent fixproto from being run.
14736
14737 Wed Apr 13 15:14:52 1994 Bill Cox (bill@cygnus.com)
14738
14739 * configure: Make file links cleanly even if Lynx fails on
14740 an NFS symlink (at least fail cleanly).
14741
14742 Mon Apr 11 10:58:56 1994 Jim Wilson (wilson@sphagnum.cygnus.com)
14743
14744 * test-build.mk (CC): For mips-sgi-irix4, change -XNh1500 to
14745 -XNh2000.
14746
14747 Sat Apr 9 15:10:45 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14748
14749 * configure: Unknown options are fatal again.
14750
14751 Fri Apr 8 12:01:41 1994 David J. Mackenzie (djm@cygnus.com)
14752
14753 * configure: Ignore --x-includes and --x-libraries, for Autoconf
14754 compatibility.
14755
14756 Thu Apr 7 17:31:43 1994 Doug Evans (dje@canuck.cygnus.com)
14757
14758 * build-all.mk: Add `clean' target.
14759
14760 Wed Apr 6 20:44:56 1994 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
14761
14762 * config.guess: Add SINIX support.
14763 * configure.in: Add mips-*-sysv4* support.
14764
14765 Mon Apr 4 17:41:44 1994 Doug Evans (dje@canuck.cygnus.com)
14766
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.
14770
14771 Thu Mar 31 04:55:57 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14772
14773 * configure: Support --silent, --quiet.
14774
14775 Wed Mar 30 21:37:38 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14776
14777 * configure: Support --disable-FEATURE.
14778
14779 Tue Mar 29 19:15:05 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14780
14781 * config.guess: Recognize NCR running SVR4.3.
14782
14783 Mon Mar 28 14:55:15 1994 Per Bothner (bothner@kalessin.cygnus.com)
14784
14785 * config.guess: Make BSDI generate i386-unknown-bsd386.
14786 Patch from Paul Eggert <eggert@twinsun.com>.
14787
14788 Mon Mar 28 12:54:52 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14789
14790 * configure.in (powerpc-*-aix*): Treat like rs6000-*-*.
14791
14792 Sat Mar 26 11:25:48 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14793
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.
14798
14799 Fri Mar 25 21:52:10 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14800
14801 * configure: Add --enable-* options. Clean up usage message and
14802 some comments.
14803
14804 Thu Mar 24 09:12:53 1994 Doug Evans (dje@canuck.cygnus.com)
14805
14806 * Makefile.in (NM_FOR_TARGET): Build tree version is now nm.new.
14807
14808 Sun Mar 20 11:28:22 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
14809
14810 * configure.in (hppa*-*-*): Enable binutils.
14811
14812 Sat Mar 19 11:50:16 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14813
14814 * config.sub: Recognize cisco.
14815
14816 Fri Mar 18 16:42:32 1994 Jason Merrill (jason@deneb.cygnus.com)
14817
14818 * Makefile.in (CXXFLAGS): Add -fexternal-templates.
14819
14820 Tue Mar 15 11:25:55 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14821
14822 * config.guess: about target *-hitachi-hiuxwe2, don't print more
14823 than one configuration name. Add comment.
14824
14825 Sun Mar 6 23:13:38 1994 Hisashi MINAMINO (minamino@sra.co.jp)
14826
14827 * config.guess: about target *-hitachi-hiuxwe2, fixed
14828 machine guessing order. [Hitachi's CPU_IS_HP_MC68K
14829 macro is incorrect.]
14830
14831 Sun Mar 13 09:10:08 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14832
14833 * Makefile.in (TAGS): Just build TAGS in each subdirectory, rather
14834 than the "make ls" stuff which used to be here.
14835
14836 Fri Mar 11 12:52:39 1994 Per Bothner (bothner@kalessin.cygnus.com)
14837
14838 * config.guess: Recognize i[34]86-unknown-freebsd.
14839 From Shawn M Carey <smcarey@rodan.syr.edu>.
14840
14841 Thu Mar 3 14:24:21 1994 Per Bothner (bothner@kalessin.cygnus.com)
14842
14843 * configure.in (noconfigdirs for alpha): Remove libg++ and libio.
14844
14845 Wed Mar 2 13:28:48 1994 Jim Kingdon (kingdon@deneb.cygnus.com)
14846
14847 * config.guess: Check for ptx.
14848
14849 Mon Feb 28 16:46:50 1994 Kung Hsu (kung@mexican.cygnus.com)
14850
14851 * config.sub: Add os9k checking.
14852
14853 Thu Feb 24 07:09:04 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
14854
14855 * config.guess: Handle OSF1 running on HPPA processors
14856
14857 Fri Feb 18 14:14:00 1994 Ken Raeburn (raeburn@rtl.cygnus.com)
14858
14859 * configure: If subdir configure fails, print out a message with
14860 subdirectory name, in case subdir's configure code didn't identify
14861 itself.
14862
14863 Fri Feb 18 12:50:15 1994 Doug Evans (dje@cygnus.com)
14864
14865 * configure.in: Remove embedded newlines from configdirs.
14866 Avoid mismatches of substrings. Fix matching strings at end
14867 of configdirs.
14868
14869 Fri Feb 11 15:33:33 1994 Stu Grossman (grossman at cygnus.com)
14870
14871 * config.guess: Add Lynx/rs6000 config support.
14872
14873 Tue Feb 8 13:41:09 1994 Ken Raeburn (raeburn@rtl.cygnus.com)
14874
14875 * configure.in (alpha-dec-osf1*, alpha*-*-*): Build gas.
14876
14877 Mon Feb 7 15:42:36 1994 Jeffrey A. Law (law@cygnus.com)
14878
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.
14882
14883 Sun Feb 6 16:35:07 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
14884
14885 * config.sub (hiux): Fix typo. From m-kasahr@sramhc.sra.co.JP.
14886
14887 Sat Feb 5 01:00:33 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14888
14889 * configure.in (rs6000-*-*): Build gas.
14890
14891 Wed Feb 2 13:57:57 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
14892
14893 * Makefile.in: Avoid bug in losing hpux sed.
14894
14895 Wed Feb 2 14:53:05 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14896
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.
14899
14900 Sun Jan 30 17:58:06 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
14901
14902 * config.guess: Recognize vax hosts.
14903
14904 Fri Jan 28 15:29:38 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
14905
14906 * configure (while loop): Don't use "break 2" inside case
14907 statement -- the case statement isn't an enclosing loop.
14908
14909 Mon Jan 24 18:40:06 1994 Per Bothner (bothner@kalessin.cygnus.com)
14910
14911 * config.guess: Clean up NeXT support, to allow nextstep
14912 on Intel machines. Make OS be nextstep.
14913
14914 Sun Jan 23 18:47:22 1994 Richard Kenner (kenner@vlsi1.ultra.nyu.edu)
14915
14916 * config.guess: Add alternate forms for Convex.
14917
14918 Thu Jan 20 16:13:41 1994 Stu Grossman (grossman at cygnus.com)
14919
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.
14923
14924 Mon Jan 17 15:06:56 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
14925
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.
14929
14930 Thu Jan 6 11:20:57 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14931
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
14935 matches.
14936
14937 * configure.in: Don't build gas for alpha-dec-osf1*.
14938
14939 Tue Jan 4 17:10:19 1994 Stu Grossman (grossman at cygnus.com)
14940
14941 * configure: Back out Per's change of 12/19/1993. It changes the
14942 behavior of configure in unexpected and confusing ways.
14943
14944 Also, use different delim char when calculating
14945 program_transform_name so that the name can contain slashes.
14946
14947 Sat Jan 1 13:45:31 1994 Rob Savoye (rob@darkstar.cygnus.com)
14948
14949 * configure.in, config.sub: Add support for VSTa micro-kernel.
14950
14951 Sat Dec 25 20:00:47 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
14952
14953 * configure.in: Nuke hacks which were used to get a special
14954 version of GAS for HPPA configurations.
14955
14956 Sun Dec 19 20:40:44 1993 Per Bothner (bothner@kalessin.cygnus.com)
14957
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.
14961
14962 Wed Dec 15 18:07:18 1993 david d `zoo' zuhn (zoo@andros.cygnus.com)
14963
14964 * Makefile.in (BASE_FLAGS_TO_PASS): add YACC=$(BISON)
14965
14966 Tue Dec 14 21:25:33 1993 Per Bothner (bothner@cygnus.com)
14967
14968 * config.guess: Recognize some Tektronix configurations.
14969 From Kaveh R. Ghazi <ghazi@noc.rutgers.edu>.
14970
14971 Sat Dec 11 11:18:00 1993 Steve Chamberlain (sac@thepub.cygnus.com)
14972
14973 * config.sub: Match any flavor of SH.
14974
14975 Thu Dec 2 17:16:58 1993 Ken Raeburn (raeburn@cujo.cygnus.com)
14976
14977 * configure.in: Don't try to configure newlib for Alpha.
14978
14979 Thu Dec 2 14:35:54 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14980
14981 * configure.in: Don't build ld for Irix 5. Don't build gas,
14982 libg++ or libio for any Alpha target.
14983
14984 * configure.in (mips*-sgi-irix5*): New target; use mh-irix5.
14985
14986 Wed Dec 1 17:00:33 1993 Jason Merrill (jason@deneb.cygnus.com)
14987
14988 * Makefile.in (GZIPPROG): Renamed from GZIP, which gzip uses for
14989 default arguments -- so it tried to compress itself.
14990
14991 Tue Nov 30 13:45:15 1993 david d `zoo' zuhn (zoo@andros.cygnus.com)
14992
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
14995
14996 Tue Nov 16 15:04:27 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
14997
14998 * configure.in (target i386-sysv4.2): don't build ld, since static
14999 versions of many libraries are not available.
15000
15001 Tue Nov 16 14:28:12 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15002
15003 * config.guess: Recognize Apollos (using environment variables).
15004 * configure.in: Don't configure ld, binutils, or gprof for Apollo.
15005
15006 Thu Nov 11 12:03:50 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15007
15008 * config.guess: Recognize Sony news mips running newsos.
15009
15010 Wed Nov 10 16:57:00 1993 Mark Eichin (eichin@cygnus.com)
15011
15012 * Makefile.in (all-cygnus, build-cygnus): "fi else" needs to be
15013 "fi ; else" for bash.
15014
15015 Tue Nov 9 15:54:01 1993 Mark Eichin (eichin@cygnus.com)
15016
15017 * Makefile.in (BASE_FLAGS_TO_PASS): pass SHELL.
15018
15019 Fri Nov 5 08:07:27 1993 D. V. Henkel-Wallace (gumby@blues.cygnus.com)
15020
15021 * config.sub: accept unixware as an alias for svr4.2.
15022 Fix some inconsistancies with the gcc version.
15023
15024 Fri Nov 5 15:14:12 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15025
15026 * Makefile.in (DISTDOCDIRS): Add gdb.
15027
15028 Fri Nov 5 11:59:42 1993 Per Bothner (bothner@kalessin.cygnus.com)
15029
15030 * Makefile.in (DISTDOCDIRS): Add libg++ and libio.
15031
15032 Fri Nov 5 10:35:05 1993 Ken Raeburn (raeburn@rover.cygnus.com)
15033
15034 * Makefile.in (taz): Only build "info" in DISTDOCDIRS.
15035 (DISTDOCDIRS): Don't assume libg++ and gdb folks necessarily want
15036 this now.
15037
15038 Thu Nov 4 18:58:23 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15039
15040 * config.sub: Accept hiux* as an OS name.
15041
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.
15045
15046 Thu Nov 4 10:49:01 1993 Per Bothner (bothner@kalessin.cygnus.com)
15047
15048 * install.sh: Remove 'set -e'. It makes any conditionals
15049 in the script useless.
15050
15051 * config.guess: Automatically recognize arm-acorn-riscix
15052 Patch from Richard Earnshaw (rwe11@cl.cam.ac.uk).
15053
15054 Thu Nov 04 08:08:04 1993 Jeffrey Wheat (cassidy@cygnus.com)
15055
15056 * Makefile.in: Change RUNTESTFLAGS to RUNTEST_FLAGS
15057
15058 Wed Nov 3 22:09:46 1993 Ken Raeburn (raeburn@rtl.cygnus.com)
15059
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.
15063
15064 Wed Nov 3 21:31:52 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15065
15066 * configure.in (hppa target): check the source directory for the
15067 pagas sub-directory
15068
15069 Wed Nov 3 11:12:22 1993 Doug Evans (dje@canuck.cygnus.com)
15070
15071 * config.sub: Allow -aout* and -elf*.
15072
15073 Wed Nov 3 11:08:33 1993 Ken Raeburn (raeburn@rtl.cygnus.com)
15074
15075 * configure.in: Don't build ld on i386-solaris2, same as for
15076 sparc-solaris2.
15077
15078 Tue Nov 2 14:21:25 1993 Per Bothner (bothner@kalessin.cygnus.com)
15079
15080 * Makefile.in (taz): Add texinfo/lgpl.texinfo (for libg++).
15081
15082 Tue Nov 2 13:38:30 1993 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
15083
15084 * configure.in: Configure gdb for alpha.
15085
15086 Mon Nov 1 10:42:54 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15087
15088 * Makefile.in (CXXFLAGS): Add -O.
15089
15090 Wed Oct 27 10:45:06 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15091
15092 * config.guess: added support for DG Aviion
15093
15094 Tue Oct 26 14:37:37 1993 Ken Raeburn (raeburn@rover.cygnus.com)
15095
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.
15099
15100 Mon Oct 25 11:22:15 1993 Ken Raeburn (raeburn@rover.cygnus.com)
15101
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.
15106
15107 Fri Oct 22 20:32:15 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15108
15109 * config.sub: also handle mipsel and mips64el (for little endian mips)
15110
15111 Fri Oct 22 07:59:20 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15112
15113 * configure.in: Add * to end of all OS names.
15114
15115 Thu Oct 21 11:38:28 1993 Stan Shebs (shebs@rtl.cygnus.com)
15116
15117 * configure.in: Build newlib for LynxOS native.
15118
15119 Wed Oct 20 09:56:12 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15120
15121 * config.guess: Add support for delta 88k running SVR3.
15122
15123 * configure.in: Add comment about HP compiler vs. emacs.
15124
15125 Tue Oct 19 16:02:22 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15126
15127 * configure.in: don't build ld on solaris2 (not a viable option
15128 due to bugs in getpwnam & getpwuid)
15129
15130 Tue Oct 19 15:13:56 1993 Ken Raeburn (raeburn@rtl.cygnus.com)
15131
15132 * configure.in: Accept alpha-dec-osf1*, not just -osf1, since
15133 config.guess will produce a full version number.
15134
15135 Tue Oct 19 15:58:01 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
15136
15137 * configure.in: Build linker and binutils for alpha-dec-osf1.
15138
15139 Tue Oct 19 11:41:55 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15140
15141 * Makefile.in: Remove -O from CXXFLAGS for consistency with CFLAGS,
15142 and gdb/testsuite/Makefile.in.
15143
15144 Sat Oct 9 18:39:07 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15145
15146 * configure.in: recognize mips*- instead of mips-
15147
15148 Fri Oct 8 14:15:39 1993 Ken Raeburn (raeburn@cygnus.com)
15149
15150 * config.sub: Accept linux*coff and linux*elf as operating
15151 systems.
15152
15153 Thu Oct 7 12:57:19 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
15154
15155 * config.sub: Recognize mips64, and mips3 as an alias for it.
15156
15157 Wed Oct 6 13:54:21 1993 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
15158
15159 * configure.in: Remove alpha-dec-osf*, no longer necessary now that
15160 gdb knows how to handle OSF/1 shared libraries.
15161
15162 Tue Oct 5 11:55:04 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15163
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]*.
15168
15169 Mon Oct 4 16:15:09 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15170
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).
15176
15177 Fri Sep 24 19:11:13 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15178
15179 * configure: substitute SHELL value in Makefile.in with
15180 ${CONFIG_SHELL}
15181
15182 Thu Sep 23 18:05:13 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
15183
15184 * configure.in: Build gas, ld, and binutils for *-*-sysv4* and
15185 *-*-solaris2* targets.
15186
15187 Sun Sep 19 17:01:41 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15188
15189 * Makefile.in: define M4, and pass it down to sub-makes;
15190 all-autoconf now depends on all-m4
15191
15192 Sat Sep 18 00:38:23 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15193
15194 * Makefile.in ({AR,RANLIB}_FOR_TARGET): make contingent on
15195 presence of {ar,ranlib} instead of a configured directory
15196
15197 Wed Sep 15 08:41:44 1993 Jim Kingdon (kingdon@cirdan.cygnus.com)
15198
15199 * config.guess: Accept 34?? as well as 33?? for NCR.
15200
15201 Mon Sep 13 12:28:43 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15202
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.
15205
15206 Fri Sep 10 11:23:52 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15207
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)
15211
15212 * configure.in, Makefile.in: add support for gash, the tcl
15213 interface to Galaxy
15214
15215 * config.guess: add NetBSD variants (hp300, x86)
15216
15217 Thu Sep 9 16:48:52 1993 Jason Merrill (jason@deneb.cygnus.com)
15218
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)
15223
15224 Tue Sep 7 11:59:39 1993 Doug Evans (dje@canuck.cygnus.com)
15225
15226 * config.sub: Remove h8300hhms alias.
15227
15228 Tue Aug 31 11:00:09 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15229
15230 * configure.in: Match *-*-solaris2* not *-sun-solaris2*.
15231
15232 Mon Aug 30 18:29:10 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15233
15234 * Makefile.in (gcc-no-fixedincludes): touch stmp-fixproto as well
15235 as stmp-fixinc
15236
15237 Wed Aug 25 16:35:59 1993 K. Richard Pixley (rich@sendai.cygnus.com)
15238
15239 * config.sub: recognize m88110-bug-coff.
15240
15241 Tue Aug 24 10:23:24 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15242
15243 * Makefile.in (all-libio): all dependencies on the toolchain used
15244 to build this (gcc, gas, ld, etc)
15245
15246 Fri Aug 20 17:24:24 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15247
15248 * config.guess: Deal with OSF/1 1.3 on alpha.
15249
15250 Thu Aug 19 11:43:04 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15251
15252 * install.sh: add some 'else true' clauses for portability
15253
15254 * configure.in: don't build libio for h8[35]00-*-* targets
15255
15256 Tue Aug 17 19:02:31 1993 Per Bothner (bothner@kalessin.cygnus.com)
15257
15258 * Makefile.in: Add support for new libio.
15259
15260 Sun Aug 15 20:48:55 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15261
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.
15265
15266 * config.guess: Recognize BSD on hp300.
15267
15268 Wed Aug 11 18:35:13 1993 Per Bothner (bothner@kalessin.cygnus.com)
15269
15270 * config.guess: Map (9000/[34]??:HP-UX:*:*) to m68k-hp-hpux.
15271 Bug report from "Hamish (H.I.) Macdonald" <hamish@bnr.ca>.
15272
15273 Wed Aug 11 15:37:51 1993 Jason Merrill (jason@deneb.cygnus.com)
15274
15275 * Makefile.in (all-send-pr): depends on all-prms
15276
15277 Wed Aug 11 16:56:03 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15278
15279 * config.guess: Fix typo (9000/8??:4.3bsd -> 9000/7??:4.3bsd).
15280
15281 Fri Aug 6 14:45:02 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
15282
15283 * config.guess: From michael@mercury.cs.mun.ca (Michael Rendell):
15284 Added test for mips-mips-riscos5.
15285
15286 Thu Aug 5 15:45:08 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15287
15288 * configure.in: use mh-hp300 for 68k HP hosts
15289
15290 Mon Aug 2 11:56:53 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15291
15292 * configure: add support for CONFIG_SHELL, so that you can use
15293 some alternate shell for evaluating configure scripts
15294
15295 Sun Aug 1 11:36:27 1993 Fred Fish (fnf@deneb.cygnus.com)
15296
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.
15306
15307 Fri Jul 30 12:34:57 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15308
15309 * install.sh (dsttmp): use trap to ensure that tmp files go
15310 away on error conditions
15311
15312 Wed Jul 28 11:57:36 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15313
15314 * Makefile.in (BASE_FLAGS_TO_PASS): remove LOADLIBES
15315
15316 Tue Jul 27 12:43:40 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15317
15318 * Makefile.in (install-dirs): Deal with a prefix like /gnu;
15319 its parent is '/' not ''.
15320
15321 * Makefile.in (DEVO_SUPPORT): Add comments about ChangeLog.
15322
15323 Fri Jul 23 09:53:37 1993 Jason Merrill (jason@wahini.cygnus.com)
15324
15325 * configure: if ${newsrcdir}/configure doesn't exist, don't assume
15326 that ${newsrcdir}/configure.in does.
15327
15328 Tue Jul 20 11:28:50 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15329
15330 * test-build.mk: support for CONFIG_SHELL
15331
15332 Mon Jul 19 21:54:46 1993 Fred Fish (fnf@deneb.cygnus.com)
15333
15334 * config.sub (netware): Add as a basic system type.
15335
15336 Wed Jul 14 12:03:11 1993 K. Richard Pixley (rich@sendai.cygnus.com)
15337
15338 * Makefile.in (Makefile): depend on configure.in. Also drop the
15339 $(srcdir)/ from the dependency on Makefile.in.
15340
15341 Tue Jul 13 20:10:58 1993 Doug Evans (dje@canuck.cygnus.com)
15342
15343 * config.sub: Recognize h8300hhms as h8300h-hitachi-hms.
15344 (h8300hhms is temporary until multi-libraries are implemented).
15345 * configure.in: Handle h8300h too.
15346
15347 Sun Jul 11 17:35:27 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15348
15349 * config.guess: Recognize dpx/2 as m68k-bull-sysv3.
15350
15351 Thu Jul 8 18:26:12 1993 John Gilmore (gnu@cygnus.com)
15352
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.
15356
15357 Wed Jul 7 17:58:14 1993 david d `zoo' zuhn (zoo at rtl.cygnus.com)
15358
15359 * Makefile.in: remove all.cross and install.cross targets
15360
15361 * configure: remove CROSS=-DCROSS_COMPILE and ALL=all.cross
15362 definitions
15363
15364 Tue Jul 6 10:39:44 1993 Steve Chamberlain (sac@phydeaux.cygnus.com)
15365
15366 * configure.in (target sh): Build gprof.
15367
15368 Thu Jul 1 16:52:56 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15369
15370 * config.sub: change -solaris to -solaris2
15371
15372 Thu Jul 1 15:46:16 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15373
15374 * configure.in: Use config/mh-riscos for mips-*-sysv*.
15375
15376 Wed Jun 30 09:31:58 1993 Ian Lance Taylor (ian@cygnus.com)
15377
15378 * configure: Correct error message for missing Makefile.in to
15379 print correct directory.
15380
15381 Tue Jun 29 13:52:16 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15382
15383 * install.sh: kludge around 386BSD shell bug
15384
15385 Tue Jun 29 13:06:49 1993 Per Bothner (bothner@rtl.cygnus.com)
15386
15387 * config.guess: Recognize NeXT.
15388 * config.guess: Recognize i486-ncr-sysv4.
15389 * Makefile.in (taz): rm $(TOOL)-$$VER before linking.
15390
15391 Tue Jun 29 12:50:57 1993 Ian Lance Taylor (ian@cygnus.com)
15392
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.
15397
15398 Thu Jun 24 13:39:11 1993 Per Bothner (bothner@rtl.cygnus.com)
15399
15400 * Makefile.in (DEVO_SUPPORT): Add COPYING COPYING.LIB install.sh.
15401
15402 Wed Jun 23 12:59:21 1993 Per Bothner (bothner@rtl.cygnus.com)
15403
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.
15407
15408 Fri Jun 18 12:03:10 1993 david d `zoo' zuhn (zoo at majipoor.cygnus.com)
15409
15410 * install.sh: don't use dirname anymore (replaced with sed usage)
15411
15412 Thu Jun 17 18:43:42 1993 Fred Fish (fnf@cygnus.com)
15413
15414 * Makefile.in: Change extension for gzip'd files from '.z' to
15415 '.gz' per new FSF standard usage.
15416
15417 Thu Jun 17 16:58:50 1993 david d `zoo' zuhn (zoo at majipoor.cygnus.com)
15418
15419 * configure: put quotes around the final value of program_transform_name
15420
15421 Tue Jun 15 16:48:51 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15422
15423 * Makefile.in: new install.sh support; update install-info rules
15424
15425 Wed Jun 9 12:31:34 1993 Ian Lance Taylor (ian@cygnus.com)
15426
15427 * configure.in: Build diff for crosses, but not for go32 host.
15428
15429 * configure.in: Build gprof only for native, and don't build it
15430 for mips-*-*, rs6000-*-*, or i[34]86-*-sco*.
15431
15432 Mon Jun 7 13:12:11 1993 david d `zoo' zuhn (zoo at deneb.cygnus.com)
15433
15434 * configure.in: don't build gas,ld,binutils on for *-*-sysv4
15435
15436 Mon Jun 7 11:40:11 1993 Brendan Kehoe (brendan@lisa.cygnus.com)
15437
15438 * configure.in (host_tools): Add prms.
15439
15440 Fri Jun 4 13:30:42 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15441
15442 * Makefile.in: install gcc, do installation of $(INSTALL_MODULES)
15443 with $(FLAGS_TO_PASS) on the command line
15444
15445 * config.sub: Recognize lynx and lynxos
15446
15447 Fri Jun 4 10:59:56 1993 Ian Lance Taylor (ian@cygnus.com)
15448
15449 * config.sub: Accept -ecoff*, not just -ecoff.
15450
15451 Thu Jun 3 17:38:54 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15452
15453 * Makefile.in (taz): Use .gz suffix instead of .z.
15454 (binutils.tar.gz, gas+binutils.tar.gz, gas.tar.gz): Fixed target
15455 names.
15456
15457 Thu Jun 3 00:27:06 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15458
15459 * Makefile.in (vault-install): add an 'else true' (for Ultrix)
15460
15461 Wed Jun 2 18:19:16 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15462
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
15466
15467 Wed Jun 2 16:14:10 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15468
15469 Change from Utah for HPPA support:
15470 * config.guess: Recognize hppa1.x-hp-bsd.
15471
15472 Wed Jun 2 11:53:33 1993 Per Bothner (bothner@rtl.cygnus.com)
15473
15474 * config.guess: Add support for Motorola Delta 68k, up to r3v7.
15475 Patch from pot@fly.cnuce.cnr.it (Francesco Potorti`).
15476
15477 Tue Jun 1 17:48:42 1993 Rob Savoye (rob at darkstar.cygnus.com)
15478
15479 * config.sub: Add support for rom68k and bug boot monitors.
15480
15481 Mon May 31 09:36:37 1993 Jim Kingdon (kingdon@cygnus.com)
15482
15483 * Makefile.in: Make all-opcodes depend on all-bfd.
15484
15485 Thu May 27 08:05:31 1993 Ian Lance Taylor (ian@cygnus.com)
15486
15487 * config.guess: Added special check for i[34]86-univel-sysv4*.
15488
15489 Wed May 26 16:33:40 1993 Ian Lance Taylor (ian@cygnus.com)
15490
15491 * config.guess: For i[34]86-unknown-sysv4 use UNAME_MACHINE for
15492 the processor rather than assuming i486.
15493
15494 Wed May 26 09:40:18 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15495
15496 * config.guess: Recognize SunOS6 as Solaris3.
15497
15498 Tue May 25 23:03:11 1993 Per Bothner (bothner@cygnus.com)
15499
15500 * config.guess: Fix typo. Avoid #elif (not in K&R 1).
15501 Recognize SunOS 5.* only (and not [6-9].*) as being Solaris2.
15502
15503 Tue May 25 12:44:18 1993 Ian Lance Taylor (ian@cygnus.com)
15504
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.
15510
15511 Mon May 24 15:30:06 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15512
15513 * configure.in: fix Alpha GDB typo; also, don't build DejaGnu for
15514 GO32 hosted toolchains
15515
15516 Mon May 24 14:18:41 1993 Rob Savoye (rob at darkstar.cygnus.com)
15517
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.
15521
15522 Fri May 21 10:42:25 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15523
15524 * config.guess: get the Solaris2 minor version number
15525
15526 * Makefile.in: add standards.texi and make-stds.texi to ETC_SUPPORT
15527
15528 Fri May 21 06:20:52 1993 Brendan Kehoe (brendan@lisa.cygnus.com)
15529
15530 * config.guess: Recognize some Sequent platforms.
15531
15532 Thu May 20 14:33:48 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15533
15534 * Makefile.in: added the vault-install target
15535
15536 * configure.in: actually use the Sun3 makefile fragment that's in
15537 config, also added the release dir to configdirs
15538
15539 Thu May 20 14:19:18 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15540
15541 * Makefile.in (taz): Fix modes on stuff in $(TOOL) dir also.
15542
15543 Tue May 18 20:26:41 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15544
15545 * configure.in: remove some program from Alpha targetted toolchains
15546
15547 Tue May 18 15:23:19 1993 Ken Raeburn (raeburn@cygnus.com)
15548
15549 * Makefile.in (DISTSTUFFDIRS): Renamed from PROTODIRS. Add ld and
15550 gprof.
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.
15556
15557 Mon May 17 17:01:15 1993 Ken Raeburn (raeburn@deneb.cygnus.com)
15558
15559 * Makefile.in (taz): Include gpl.texinfo.
15560
15561 Fri May 14 06:48:38 1993 Ken Raeburn (raeburn@deneb.cygnus.com)
15562
15563 * Makefile.in (setup-dirs): Merged into "taz" target.
15564 (taz): Only do `proto-dir' stuff if a directory is actually needed
15565 for this target.
15566
15567 Wed May 12 13:09:44 1993 Ian Lance Taylor (ian@cygnus.com)
15568
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.
15574
15575 Tue May 11 10:14:25 1993 Fred Fish (fnf@cygnus.com)
15576
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.
15583
15584 Mon May 10 17:22:26 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15585
15586 * test-build.mk: set environment variables in a single command,
15587 instead of a list of assignments and exports
15588
15589 * config.guess: recognize Alpha/OSF1 systems
15590
15591 Mon May 10 14:55:51 1993 K. Richard Pixley (rich@rtl.cygnus.com)
15592
15593 * configure: Change help message to prefer --options rather than
15594 -options.
15595
15596 Mon May 10 05:58:35 1993 Ken Raeburn (raeburn@kr-pc.cygnus.com)
15597
15598 * config.sub: Convergent Tech. "miniframe" uses m68010, sez
15599 zippy@ecst.csuchico.edu.
15600 * config.guess: Recognize miniframe.
15601
15602 Sun May 9 17:47:57 1993 Rob Savoye (rob at darkstar.cygnus.com)
15603
15604 * Makefile.in: Use srcroot to find runtest rather than rootme.
15605 Pass RUNTESTFLAGS and EXPECT down in BASE_FLAGS_TO_PASS.
15606
15607 Fri May 7 14:55:59 1993 Ian Lance Taylor (ian@cygnus.com)
15608
15609 * test-build.mk: Extensive additions to support building on a
15610 machine other than the host.
15611
15612 Wed May 5 08:35:04 1993 Ken Raeburn (raeburn@deneb.cygnus.com)
15613
15614 * configure (tooldir): Fix for i386-aix again.
15615
15616 Mon May 3 19:00:27 1993 Per Bothner (bothner@cygnus.com)
15617
15618 * configure, Makefile.in: Change definition of $(tooldir)
15619 to match the FSF.
15620
15621 Fri Apr 30 15:55:21 1993 Fred Fish (fnf@cygnus.com)
15622
15623 * config.guess: Recognize i[34]86/SVR4.
15624
15625 Fri Apr 30 15:52:46 1993 Steve Chamberlain (sac@thepub.cygnus.com)
15626
15627 * Makefile.in (all-gdb): gdb depends on sim.
15628
15629 Thu Apr 29 23:30:48 1993 Fred Fish (fnf@cygnus.com)
15630
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.
15635
15636 Thu Apr 29 12:50:37 1993 Ian Lance Taylor (ian@cygnus.com)
15637
15638 * Makefile.in (check): Use individual check targets rather than
15639 DO_X rule.
15640 (check-gcc): Added.
15641
15642 Thu Apr 29 09:50:07 1993 Jim Kingdon (kingdon@cygnus.com)
15643
15644 * config.sub: Use sysv3.2 not sysv32 for canonical OS
15645 for System V release 3.2.
15646
15647 Thu Apr 29 10:33:22 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15648
15649 * config.sub: Recognize hppaosf.
15650 * configure.in: Do configure ld/binutils/gas for it.
15651
15652 Tue Apr 27 06:25:34 1993 Ken Raeburn (raeburn@kr-pc.cygnus.com)
15653
15654 * configure (tooldir): Alter syntax used to set this, for systems
15655 where "\$" isn't handled right, like i386-aix.
15656
15657 Thu Apr 22 08:17:35 1993 Ian Lance Taylor (ian@cygnus.com)
15658
15659 * configure: Pass program-transform-name, not
15660 program_transform_name, to recursive configures.
15661
15662 Thu Apr 22 02:58:21 1993 Ken Raeburn (raeburn@cygnus.com)
15663
15664 * Makefile.in (gas+binutils.tar.z): New rule for building snapshots
15665 of gas+ld+binutils.
15666
15667 Mon Apr 19 17:41:30 1993 Per Bothner (bothner@cygnus.com)
15668
15669 * config.guess: Recognize AIX3.2 as distinct from 3.1.
15670
15671 Sat Apr 17 17:19:50 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15672
15673 * configure.in: rename m88k-motorola-m88kbcs to m88k-motorola-sysv
15674
15675 Tue Apr 13 16:52:16 1993 Brendan Kehoe (brendan@lisa.cygnus.com)
15676
15677 * Makefile.in (PRMS): Set back to all-prms.
15678
15679 Sat Apr 10 12:04:07 1993 Ian Lance Taylor (ian@cygnus.com)
15680
15681 * test-build.mk: Pass -with-gnu-as for known MIPS native and MIPS
15682 targets, rather than for MIPS hosts.
15683
15684 Fri Apr 9 13:51:06 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15685
15686 * configure.in: add comment for --with-x default values
15687
15688 * config.guess: handle Motorola Delta88 box for SVR3 and SVR4.
15689
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.
15693
15694 Thu Apr 8 09:21:30 1993 Ian Lance Taylor (ian@cygnus.com)
15695
15696 * configure.in: Removed obsolete references to bfd_target and
15697 target_makefile_frag.
15698
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.
15703
15704 Wed Apr 7 15:48:19 1993 Ian Lance Taylor (ian@cygnus.com)
15705
15706 * configure: Handle an empty program-prefix, program-suffix or
15707 program-transform-name correctly.
15708
15709 Tue Apr 6 13:48:41 1993 Ian Lance Taylor (ian@cygnus.com)
15710
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
15713 guess.
15714
15715 Tue Apr 6 10:36:53 1993 Fred Fish (fnf@cygnus.com)
15716
15717 * Makefile.in (gdb.tar.Z): Fix for building gzip'd distribution.
15718 * Makefile.in (COMPRESS): New macro, like GZIP.
15719
15720 Fri Apr 2 09:02:31 1993 Ian Lance Taylor (ian@cygnus.com)
15721
15722 * test-build.mk: Use -with-gnu-as for mips-sgi-irix4 as well.
15723
15724 * build-all.mk: Set GCC to gcc -O -G 8 for MIPS targets, since gcc
15725 with gas currently defaults to -G 0.
15726
15727 Thu Apr 1 08:25:42 1993 Ian Lance Taylor (ian@cygnus.com)
15728
15729 * Makefile.in (all-flex): flex depends on byacc.
15730
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.
15736
15737 * config.guess: Use /bin/uname when checking -X argument on SCO,
15738 to avoid invoking GNU uname which doesn't understand -X.
15739
15740 * test-build.mk: Don't use /usr/unsupported/bin/as on AIX.
15741
15742 * configure.in: Build gas for mips-*-*.
15743
15744 Wed Mar 31 21:20:58 1993 K. Richard Pixley (rich@rtl.cygnus.com)
15745
15746 * Makefile.in (all.normal): insert missing backslash.
15747
15748 Wed Mar 31 12:31:56 1993 Ian Lance Taylor (ian@cygnus.com)
15749
15750 * build-all.mk: Bump -XNh value to 1500 to match gcc requirements.
15751
15752 * Makefile.in: Complete overhaul to merge many almost identical
15753 targets.
15754
15755 Tue Mar 30 20:17:01 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15756
15757 * Makefile.in (setup-dirs-gdb): Renamed from setup-dirs.
15758 (gdb.tar.Z): Adjusted.
15759
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.
15763
15764 Tue Mar 30 10:03:09 1993 Ian Lance Taylor (ian@cygnus.com)
15765
15766 * build-all.mk: Use CC=cc -Xs on Solaris.
15767
15768 Thu Mar 25 15:14:30 1993 Fred Fish (fnf@cygnus.com)
15769
15770 * Makefile.in: Incorporate changes suggested by wilson@cygnus.com
15771 for handling BISON for FSF releases.
15772
15773 Thu Mar 25 06:19:48 1993 Ken Raeburn (raeburn@kr-pc.cygnus.com)
15774
15775 * configure: Actually implement the change zoo just documented.
15776
15777 Wed Mar 24 13:02:44 1993 david d `zoo' zuhn (zoo at poseidon.cygnus.com)
15778
15779 * configure: when using config.guess, only set target_alias when
15780 it's not already been set (ie, on the command line)
15781
15782 Mon Mar 22 23:07:39 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15783
15784 * Makefile.in: add installcheck target, set PRMS to install-prms
15785
15786 Sun Mar 21 16:46:12 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15787
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
15794
15795 Sun Mar 21 12:11:58 1993 Jim Wilson (wilson@sphagnum.cygnus.com)
15796
15797 * configure: Must use both --host and --target in recursive calls.
15798
15799 Thu Mar 18 12:31:35 1993 Ian Lance Taylor (ian@cygnus.com)
15800
15801 * Makefile.in: Change deja-gnu to dejagnu.
15802
15803 Mon Mar 15 15:44:35 1993 Ian Lance Taylor (ian@cygnus.com)
15804
15805 * configure.in (h8300-*-*, h8500-*-*): Don't build libg++.
15806
15807 Fri Mar 12 18:30:14 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15808
15809 * configure.in: canonicalize all instances to *-*-solaris2*,
15810 also strip out a number of tools to not build for go32 host
15811
15812 Wed Mar 10 12:08:27 1993 K. Richard Pixley (rich@rtl.cygnus.com)
15813
15814 * config.guess: add GPL.
15815
15816 * Makefile.in, config.guess, config.sub, configure: bump
15817 copyrights to 93.
15818
15819 Wed Mar 10 07:12:48 1993 Ian Lance Taylor (ian@cygnus.com)
15820
15821 * Makefile.in (do-info): Removed obsolete check for existence of
15822 localenv file.
15823
15824 * Makefile.in (MAKEOVERRIDES): Define to be empty.
15825
15826 Wed Mar 10 03:11:56 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15827
15828 * Makefile.in: a couple of 'else true' for decstation,
15829 support for TclX
15830
15831 * configure.in: configure tclX too; don't remove Tk on RS/6000 anymore
15832
15833 Tue Mar 9 16:06:12 1993 K. Richard Pixley (rich@cygnus.com)
15834
15835 * Makefile.in (setup-dirs): change invocation of make to $(MAKE).
15836
15837 Mon Mar 8 14:52:11 1993 Ken Raeburn (raeburn@cambridge)
15838
15839 * config.guess: Recognize i386-ibm-aix (PS/2).
15840 * configure.in: Use config/mh-aix386 file for it.
15841
15842 Mon Mar 8 11:12:43 1993 Ian Lance Taylor (ian@cygnus.com)
15843
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).
15847
15848 Wed Mar 3 16:00:28 1993 Steve Chamberlain (sac@ok.cygnus.com)
15849
15850 * Makefile.in: Add sim to list of directories sent with gdb
15851
15852 Wed Mar 3 11:42:39 1993 Ken Raeburn (raeburn@cygnus.com)
15853
15854 * configure.in: Put back mips-dec-bsd* case.
15855
15856 Tue Mar 2 21:15:58 1993 Fred Fish (fnf@cygnus.com)
15857
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*:*:*'.
15861
15862 Tue Mar 2 18:11:03 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15863
15864 * configure.in: remove no-op mips-dec-bsd* in "case $target"
15865
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
15869
15870 Tue Mar 2 09:01:30 1993 Ken Raeburn (raeburn@cygnus.com)
15871
15872 * configure.in: For vms target, skip bfd, ld, binutils. Do build
15873 gas for mips-dec-bsd.
15874
15875 Tue Mar 2 08:35:24 1993 Ian Lance Taylor (ian@cygnus.com)
15876
15877 * configure (makesrcdir): If ${srcdir} is relative and not ".",
15878 and ${subdir} is not ".", set makesrcdir based on ${invsubdir}.
15879
15880 Tue Feb 23 14:18:28 1993 Mike Werner (mtw@poseidon.cygnus.com)
15881
15882 * configure.in: Added "dejagnu" to hosttools list.
15883
15884 Mon Feb 22 23:28:38 1993 Per Bothner (bothner@rtl.cygnus.com)
15885
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.
15889
15890 Sun Feb 21 11:15:22 1993 Mike Werner (mtw@poseidon.cygnus.com)
15891
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.
15901
15902 Fri Feb 19 20:19:39 1993 Brendan Kehoe (brendan@lisa.cygnus.com)
15903
15904 * Makefile.in: Change send_pr to send-pr.
15905 * configure.in: Likewise.
15906 * send_pr: Renamed directory to send-pr.
15907
15908 Fri Feb 19 19:00:13 1993 Per Bothner (bothner@cygnus.com)
15909
15910 * Makefile.in: Add some extra semi-colons (needed if SHELL=bash).
15911
15912 Fri Feb 19 00:59:33 1993 John Gilmore (gnu@cygnus.com)
15913
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.
15917
15918 Thu Feb 18 09:16:17 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15919
15920 * Makefile.in: make all-diff depend on all-libiberty
15921
15922 Tue Feb 16 16:06:31 1993 K. Richard Pixley (rich@cygnus.com)
15923
15924 * config.guess: add vax-ultrix in the spirit of mips-ultrix.
15925
15926 Tue Feb 16 05:57:15 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15927
15928 * configure.in, Makefile.in: add hello, tar, gzip, recode, indent
15929
15930 Tue Feb 16 00:58:20 1993 John Gilmore (gnu@cygnus.com)
15931
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.
15935
15936 Thu Feb 11 20:14:28 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15937
15938 * Makefile.in: makeinfo binary is in a new location
15939
15940 Tue Feb 9 12:42:27 1993 Ian Lance Taylor (ian@cygnus.com)
15941
15942 * config.sub: Accept -ecoff as an OS.
15943
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
15947 sub-makes.
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
15959 realclean.
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.
15965
15966 * test-build.mk (HOLES): Added false.
15967
15968 Sat Feb 6 14:05:09 1993 Per Bothner (bothner@rtl.cygnus.com)
15969
15970 * config.guess: Recognize BSDI and BSDJ (Jolitz 386bsd).
15971
15972 Thu Feb 4 20:49:18 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15973
15974 * Makefile.in (info): remove dependency on all-texinfo. The
15975 problem was really in texinfo/C, not at this level.
15976
15977 Thu Feb 4 13:38:41 1993 Ian Lance Taylor (ian@cygnus.com)
15978
15979 * Makefile.in (info): Added dependency on all-texinfo (PR 2112).
15980
15981 Thu Feb 4 01:50:53 1993 John Gilmore (gnu@cygnus.com)
15982
15983 * Makefile.in (make-gdb.tar.Z): Change BISON to 'bison -y' for
15984 GDB releases.
15985
15986 Wed Feb 3 17:22:16 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15987
15988 * configure: Include srcdir in message about target of link not
15989 being found. Don't convert `-' to `_' in `with' options being
15990 passed to subdirs.
15991
15992 Tue Feb 2 18:57:59 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15993
15994 * configure.in: add uudecode to host_tools
15995
15996 * Makefile.in: added {all,install}-uudecode targets, added them to
15997 the appropriate lists
15998
15999 Tue Feb 2 11:45:53 1993 Ian Lance Taylor (ian@cygnus.com)
16000
16001 * Makefile.in (all-gcc): Added dependency on all-gas.
16002
16003 * configure.in (mips-*-*): Build ld and binutils.
16004
16005 Mon Feb 1 12:35:41 1993 K. Richard Pixley (rich@rtl.cygnus.com)
16006
16007 * configure: check return code from mkdir, print error message and
16008 exit on failure.
16009
16010 Sat Jan 30 16:40:28 1993 John Gilmore (gnu@cygnus.com)
16011
16012 * Makefile.in (make-gdb.tar.Z): New location for texinfo.tex.
16013
16014 Thu Jan 28 15:09:59 1993 Ian Lance Taylor (ian@cygnus.com)
16015
16016 * test-build.mk (HOLES): Added tar, cpio and uudecode.
16017
16018 Wed Jan 27 16:50:32 1993 Jim Wilson (wilson@sphagnum.cygnus.com)
16019
16020 * config.sub (h8500): Recognize this as a cpu type.
16021
16022 Sat Jan 23 20:32:01 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16023
16024 * configure: source directory missing is no longer a warning
16025
16026 * configure.in: recognize irix[34]* instead of irix[34]
16027
16028 * Makefile.in: define and pass down X11_LIB
16029
16030 Sat Jan 23 13:49:40 1993 Per Bothner (bothner@cygnus.com)
16031
16032 * guess-systype: Renamed to ...
16033 * config.guess: ... by popular request.
16034 * configure.in, Makefile.in: Update accordingly.
16035
16036 Thu Jan 21 12:20:55 1993 Per Bothner (bothner@cygnus.com)
16037
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.
16041
16042 Tue Jan 19 17:18:06 1993 Per Bothner (bothner@cygnus.com)
16043
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.
16048
16049 Tue Jan 19 08:26:07 1993 Ian Lance Taylor (ian@cygnus.com)
16050
16051 * Makefile.in (gcc-no-fixedincludes): Made to work with current
16052 gcc Makefile.
16053
16054
16055 Fri Jan 15 10:27:02 1993 Ian Lance Taylor (ian@cygnus.com)
16056
16057 * Makefile.in (GCC_FLAGS_TO_PASS): New variable.
16058 (all-gcc, install-gcc, subdir_do): Use it.
16059
16060 Wed Jan 13 17:06:45 1993 Jim Wilson (wilson@sphagnum.cygnus.com)
16061
16062 * Makefile.in: Rename uninstalled gcc driver from gcc to xgcc.
16063
16064 Wed Jan 6 20:29:16 1993 Mike Werner (mtw@rtl.cygnus.com)
16065
16066 * Makefile.in: Removed explicit setting of SUBDIRS. SUBDIRS is now
16067 set exclusively by configure, using configure.in .
16068
16069 Wed Jan 6 13:44:11 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16070
16071 * test-build.mk: set $PATH for all builds
16072
16073 * Makefile.in: pass TARGET_FLAGS_TO_PASS for xiberty and libm
16074
16075 Wed Jan 6 11:02:10 1993 Fred Fish (fnf@cygnus.com)
16076
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.
16080
16081
16082 Tue Jan 5 07:55:12 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
16083
16084 * configure: Accept -with arguments.
16085
16086 Sun Jan 3 15:15:09 1993 Steve Chamberlain (sac@thepub.cygnus.com)
16087
16088 * Makefile.in: added h8300sim
16089
16090 Tue Dec 29 15:06:00 1992 Ian Lance Taylor (ian@cygnus.com)
16091
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.
16098
16099 Mon Dec 28 12:08:56 1992 Ken Raeburn (raeburn@cygnus.com)
16100
16101 * config.sub: (from FSF) Sequent uses a BSD-like OS.
16102
16103 Mon Dec 28 08:32:06 1992 Minh Tran-Le (mtranle@paris.intellicorp.com)
16104
16105 * configure.in (i[34]86-*-isc*): added; uses mh-sysv.
16106
16107 Thu Dec 24 17:26:24 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16108
16109 * configure.in: don't remove binutils from Solaris builds
16110
16111 Thu Dec 24 14:08:38 1992 david d`zoo' zuhn (zoo@cygnus.com)
16112
16113 * Makefile.in: get rid of earlier definitions for *clean,
16114 also handle the recursive info rule better
16115
16116 Thu Dec 24 12:40:21 1992 Per Bothner (bothner@rtl.cygnus.com)
16117
16118 * Makefile.in (mostlyclean, distclean, realclean): Fix to
16119 do more-or-less the right thing.
16120
16121 Wed Dec 16 10:25:31 1992 Ian Lance Taylor (ian@cygnus.com)
16122
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.
16125
16126 Tue Dec 15 00:34:32 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16127
16128 * Makefile.in: change all $(host_cpu)-$(host_vendor)-$(host_os) to
16129 $(host_canonical).
16130
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.
16134
16135 Mon Dec 14 17:04:22 1992 Stu Grossman (grossman at cygnus.com)
16136
16137 * configure.in (hppa*-*-*): Don't remove bfd and gdb from
16138 configdirs anymore.
16139
16140 Sun Dec 13 00:37:26 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16141
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
16146
16147 Fri Dec 11 20:18:02 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16148
16149 * configure.in: handle some programs as cross-only, and others as
16150 native only
16151
16152 * test-build.mk: handle partial holes in a more generic manner
16153
16154 * Makefile.in: m4 depends on libiberty
16155
16156 Thu Dec 3 21:52:11 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16157
16158 * configure.in: add m4, textutils, fileutils, sed, shellutils,
16159 time, wdiff, and find to configdirs
16160
16161 * Makefile.in: all, clean, and install rules for the new programs
16162 added to configure.in
16163
16164 Mon Nov 30 14:54:34 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16165
16166 * configure.in: use mh-sun for all *-sun-* hosts
16167
16168 Fri Nov 27 18:35:54 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16169
16170 * Makefile.in: define flags for X11 include files and library file
16171 locations, pass them down to the programs that need this info
16172
16173 * build-all.mk: added a 'native' target, to 3stage the native toolchain
16174
16175 Sun Nov 22 18:59:13 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16176
16177 * configure.in: start building libg++ for HP-UX targets
16178
16179 Wed Nov 18 19:33:11 1992 John Gilmore (gnu@cygnus.com)
16180
16181 * README: Update references to files moved into etc/.
16182
16183 Sun Nov 15 09:36:08 1992 Fred Fish (fnf@cygnus.com)
16184
16185 * config.sub (i386sol2, i486sol2): i[34]86-unknown-solaris2.
16186 * configure.in (i[34]86-*-solaris2*): Use config/mh-sysv4.
16187
16188 Thu Nov 12 08:50:42 1992 Ian Lance Taylor (ian@cygnus.com)
16189
16190 * configure: accept dash as well as underscore in long option
16191 names for FSF compatibility.
16192
16193 Wed Nov 11 08:04:37 1992 Ian Lance Taylor (ian@cygnus.com)
16194
16195 * config.sub: added -sco3.2v4 support from FSF.
16196
16197 Sun Nov 8 21:14:30 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16198
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
16202
16203 Sat Nov 7 18:52:27 1992 Per Bothner (bothner@rtl.cygnus.com)
16204
16205 * Makefile.in: Replace C++ in macro names with CXX.
16206 This is less likely to break ...
16207
16208 Sat Nov 7 15:16:58 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16209
16210 * test-build.mk: add -w to GNU_MAKE
16211
16212 Fri Nov 6 23:10:37 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16213
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.
16219
16220 * configure.in: remove most references to gdbtest, regularize
16221 target based program removal
16222
16223 * test-build.mk: import from p3 tree (many fixes and changes)
16224
16225 Fri Nov 6 20:59:00 1992 david d `zoo' zuhn (zoo@cygnus.com)
16226
16227 * Makefile.in: added rules to handle tcl, tk, and expect
16228
16229 * configure.in: handle those directories if they exist
16230
16231 Thu Nov 5 14:35:41 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16232
16233 * config.sub: removed bogus hppabsd and hppahpux names, since
16234 "hppa" is not a valid cpu (hppa1.1 or hppa1.0 are, though)
16235
16236 Thu Oct 29 00:12:41 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16237
16238 * Makefile.in: all-gcc now depends on all-binutils. all-libg++
16239 depends upon all-xiberty
16240
16241 * Makefile.in: changes from p3, including:
16242
16243 Thu Oct 8 15:00:17 1992 Ian Lance Taylor (ian@cygnus.com)
16244
16245 * Makefile.in (XTRAFLAGS): include newlib directories if
16246 newlib/Makefile exists, rather than if host != target.
16247
16248 Fri Sep 25 13:41:52 1992 Ian Lance Taylor (ian@cygnus.com)
16249
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.
16254
16255 Thu Sep 10 10:35:51 1992 Ian Lance Taylor (ian@cygnus.com)
16256
16257 * Makefile.in: added -I for newlib/targ-include to XTRAFLAGS, to
16258 pick up the machine and system specific header files.
16259
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.
16265
16266 Mon Sep 7 22:34:42 1992 Ian Lance Taylor (ian@cirdan.cygnus.com)
16267
16268 * Makefile.in: add $(host) = $(target) tests back to *_FOR_TARGET.
16269 We need them for unusual native builds, like systems without
16270 ranlib.
16271
16272 * configure: also define $(host_canonical) and
16273 $(target_canonical), which are the full, canonical names for the
16274 given host and target
16275
16276 Sun Nov 1 16:38:17 1992 Per Bothner (bothner@cygnus.com)
16277
16278 * Makefile.in: Added separate definitions for C++.
16279
16280 Fri Oct 30 11:37:52 1992 Fred Fish (fnf@cygnus.com)
16281
16282 * configure.in (configdirs): Add deja-gnu.
16283
16284 Fri Oct 23 00:39:18 1992 John Gilmore (gnu@cygnus.com)
16285
16286 * README: Update for configure.texi and gdb-4.7 release.
16287
16288 Wed Oct 21 21:54:27 1992 John Gilmore (gnu@cygnus.com)
16289
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.
16293
16294 Mon Oct 19 01:17:54 1992 John Gilmore (gnu@cygnus.com)
16295
16296 * Makefile.in: Add COPYING.LIB to GDB releases, now that there's
16297 Library-copylefted code in libiberty.
16298
16299 Tue Oct 13 01:22:32 1992 John Gilmore (gnu@cygnus.com)
16300
16301 * config.sub: Replace m68kmote with plain old m68k.
16302
16303 Fri Oct 9 03:14:24 1992 John Gilmore (gnu@cygnus.com)
16304
16305 * Makefile.in: Remove space from blank line, avoid Make complaints.
16306
16307 Thu Oct 8 18:41:45 1992 Ken Raeburn (raeburn@cygnus.com)
16308
16309 * config.sub: Complain if no argument is given. Added support for
16310 386bsd as OS and target alias.
16311
16312 Thu Oct 8 15:07:22 1992 Ian Lance Taylor (ian@cygnus.com)
16313
16314 * Makefile.in (XTRAFLAGS): include newlib directories if
16315 newlib/Makefile exists, rather than if host != target.
16316
16317 Mon Oct 5 03:00:09 1992 Mark Eichin (eichin at tweedledumber.cygnus.com)
16318
16319 * config.sub: recognize sparclite-wrs-vxworks.
16320
16321 * Makefile.in (install-xiberty): added *-xiberty make rules (from
16322 p3.) Added clean-xiberty to clean.
16323
16324 Thu Oct 1 17:59:19 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16325
16326 * configure.in: use *-*-* instead of nested cases for host and target
16327
16328 Tue Sep 29 14:11:18 1992 Ian Lance Taylor (ian@cygnus.com)
16329
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.
16334
16335 Sep 20 08:53:10 1992 Fred Fish (fnf@cygnus.com)
16336
16337 * config.sub (i486v/i486v4): Merge in from FSF version.
16338
16339 Fri Sep 18 00:32:00 1992 Mark Eichin (eichin@cygnus.com)
16340
16341 * configure: only set PWD if it is already set.
16342
16343 Thu Sep 17 23:05:53 1992 Mark Eichin (eichin@cygnus.com)
16344
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.)
16349
16350 Tue Sep 15 16:00:54 1992 Ian Lance Taylor (ian@cygnus.com)
16351
16352 * configure: always set $(tooldir) to $(libdir)/$(target_alias),
16353 even for a native compilation.
16354
16355 Tue Sep 15 02:22:56 1992 John Gilmore (gnu@cygnus.com)
16356
16357 Changes to make the gdb.tar.Z rule work better.
16358
16359 * Makefile.in (GDB_SUPPORT_DIRS): Add opcodes.
16360 (DEVO_SUPPORT): Add configure.texi.
16361 (bfd-ilrt.tar.Z): Remove ancient rule.
16362
16363 Thu Sep 10 10:43:19 1992 Ian Lance Taylor (ian@cygnus.com)
16364
16365 * Makefile.in: added -I for newlib/targ-include to XTRAFLAGS, to
16366 pick up the machine and system specific header files.
16367
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.
16371
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.
16377
16378 Wed Sep 9 12:21:42 1992 Ian Lance Taylor (ian@cygnus.com)
16379
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++.
16384
16385 Tue Sep 8 17:28:30 1992 Ken Raeburn (raeburn@cambridge.cygnus.com)
16386
16387 * Makefile.in (all-gas, all-gdb): Require all-opcodes to be built
16388 first.
16389
16390 Wed Sep 2 02:50:05 1992 John Gilmore (gnu@cygnus.com)
16391
16392 * config.sub: Accept `elf' as an environment.
16393
16394 Tue Sep 1 15:48:30 1992 Steve Chamberlain (sac@thepub.cygnus.com)
16395
16396 * Makefile.in (all-opcodes): cd into the right directory
16397
16398 Sun Aug 30 21:12:11 1992 Ian Lance Taylor (ian@cygnus.com)
16399
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.
16404
16405 Thu Aug 27 21:59:44 1992 John Gilmore (gnu@cygnus.com)
16406
16407 * config.sub: Accept i486 where i386 ok.
16408
16409 Thu Aug 27 13:04:42 1992 Brendan Kehoe (brendan@rtl.cygnus.com)
16410
16411 * config.sub: accept we32k
16412
16413 Mon Aug 24 14:05:14 1992 Ian Lance Taylor (ian@cygnus.com)
16414
16415 * config.sub, configure.in: accept OSE68000 and OSE68k.
16416
16417 * Makefile.in: don't create all directories for ``make install'';
16418 let the subdirectories create the ones they need.
16419
16420 Tue Aug 11 23:13:17 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16421
16422 * COPYING: new file, GPL v2
16423
16424 Tue Aug 4 01:12:43 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16425
16426 * Makefile.in: use the new gen-info-dir, which needs a template
16427 argument (which also lives in texinfo)
16428
16429 * configure.texi, standards.texi: fix INFO-DIR-ENTRY
16430
16431 Mon Aug 3 00:34:17 1992 Fred Fish (fnf@cygnus.com)
16432
16433 * config.sub (ncr3000): Change i386 to i486.
16434
16435 Thu Jul 23 00:12:17 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16436
16437 * Makefile.in: add install-rcs, install-grep to
16438 install-no-fixedincludes, removed install-bison and install-libgcc
16439
16440 Tue Jul 21 01:01:50 1992 david d `zoo' zuhn (zoo@cygnus.com)
16441
16442 * configure.in: grab the HPUX makefile fragment if on HPUX
16443
16444 Mon Jul 20 11:02:09 1992 D. V. Henkel-Wallace (gumby@cygnus.com)
16445
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
16449
16450 Sun Jul 19 17:49:02 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16451
16452 * configure.in: rearrange the parts that remove programs from
16453 configdirs, based now on HOST==TARGET or by canonical triple.
16454
16455 Fri Jul 17 22:52:49 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16456
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.
16462
16463 Thu Jul 16 18:33:09 1992 Steve Chamberlain (sac@thepub.cygnus.com)
16464
16465 * Makefile.in, configure.in: add tgas
16466
16467 Thu Jul 16 16:05:28 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16468
16469 * Makefile.in: a number of changes merged in from progressive.
16470
16471 * configure.in: add libm.
16472
16473 * .cvsignore: ignore some stuff that comes from test-build.mk.
16474
16475 Tue Jul 7 00:24:52 1992 Fred Fish (fnf@cygnus.com)
16476
16477 * config.sub: Add es1800 (m68k-ericsson-es1800).
16478
16479 Tue Jun 30 20:24:41 1992 D. V. Henkel-Wallace (gumby@cygnus.com)
16480
16481 * configure: Add program_suffix (parallel to program_prefix)
16482 * Makefile.in: adjust directory-creating script for losing decstation
16483
16484 Mon Jun 22 23:43:48 1992 Per Bothner (bothner@cygnus.com)
16485
16486 * configure: Minor $subdir-related fixes.
16487
16488 Mon Jun 22 18:30:26 1992 Steve Chamberlain (sac@thepub.cygnus.com)
16489
16490 * configure: fix various problems with propogating
16491 makefile_target_frag in subdirs.
16492 * configure.in: config libgcc if its there
16493
16494 Fri Jun 19 15:19:40 1992 Stu Grossman (grossman at cygnus.com)
16495
16496 * config.sub: HPPA merge.
16497
16498 Sun Jun 14 10:29:19 1992 John Gilmore (gnu at cygnus.com)
16499
16500 * Makefile.in: Replace all-bison with all-byacc in all
16501 dependency lines for other tools (which now use byacc).
16502
16503 Fri Jun 12 22:21:57 1992 John Gilmore (gnu at cygnus.com)
16504
16505 * config.sub: Add sun4sol2 => sparc-sun-solaris2.
16506
16507 Thu Jun 4 12:07:32 1992 Mark Eichin (eichin@cygnus.com)
16508
16509 * Makefile.in: make gprof rules similar to byacc rules (instead of
16510 vestigal $(unsubdir) that didn't work...)
16511
16512 Thu Jun 4 00:37:05 1992 Per Bothner (bothner@rtl.cygnus.com)
16513
16514 * config.sub: Add support for Linux.
16515 * Makefile.in: Use $(FLAGS_TO_PASS) more consistently
16516 (at least for libg++).
16517
16518 Tue Jun 02 20:03:00 1992 david d `zoo' zuhn (zoo@cygnus.com)
16519
16520 * configure.texi: fix doc for the -nfp option to configure
16521
16522 Tue Jun 2 17:20:52 1992 Michael Tiemann (tiemann@cygnus.com)
16523
16524 * Makefile.in (all-binutils): ar needs flex, so depend on all-flex.
16525
16526 Sun May 31 15:04:08 1992 Mark Eichin (eichin at cygnus.com)
16527
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.
16531
16532 Sun May 31 01:10:34 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16533
16534 * config.sub: changed recognition of m68000 so that various
16535 m68k types can be specified via m680[01234]0
16536
16537 Sat May 30 21:01:06 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16538
16539 * config.sub (basic_machine): fix sed so that '-foo' isn't
16540 completely substituted out while .+'-foo' loses the '-foo'
16541
16542 Wed May 27 23:18:52 1992 Michael Tiemann (tiemann@rtl.cygnus.com)
16543
16544 * config.sub ($os): Add -aout.
16545
16546 Fri May 22 14:00:02 1992 Per Bothner (bothner@cygnus.com)
16547
16548 * configure: If host_makefile_frag is absolute, don't
16549 prefix ${invsubdir} (relevant to libg++ auto-configure).
16550
16551 Thu May 21 18:00:09 1992 Michael Tiemann (tiemann@rtl.cygnus.com)
16552
16553 * Makefile.in (tooldir): Define it.
16554 (all-ld): Depend on all-flex.
16555
16556 Sun May 10 21:45:59 1992 Per Bothner (bothner@rtl.cygnus.com)
16557
16558 * Makefile.in (check): Fix libg++ special case.
16559
16560 Fri May 8 08:31:41 1992 K. Richard Pixley (rich@cygnus.com)
16561
16562 * configure: do not bury `pwd` into config.status, thus do fewer
16563 pwd's.
16564
16565 * configure: print the "Building in" message only when building in
16566 other than "." AND verbose.
16567
16568 * configure: remove -s, rework -v to better accomodate guested
16569 configures.
16570
16571 * standards.texi: updated to 3 may, fixed librid <-> libdir typo.
16572
16573 Fri May 1 18:00:50 1992 K. Richard Pixley (rich@cygnus.com)
16574
16575 * Makefile.in: macroize flags passed on recursion. remove
16576 fileutils.
16577
16578 Thu Apr 30 08:56:20 1992 K. Richard Pixley (rich@cygnus.com)
16579
16580 * configure: get makesrcdir right for subdirs deeper than 1.
16581
16582 * Makefile.in: pass INSTALL, INSTALL_DATA, INSTALL_PROGRAM on
16583 install.
16584
16585 Fri Apr 24 15:51:51 1992 K. Richard Pixley (rich@cygnus.com)
16586
16587 * Makefile.in: don't print subdir_do or recursion lines.
16588
16589 Fri Apr 24 15:22:04 1992 K. Richard Pixley (rich@cygnus.com)
16590
16591 * standards.texi: added menu item.
16592
16593 * Makefile.in: build and install standards.info.
16594
16595 * standards.texi: new file.
16596
16597 Wed Apr 22 18:06:55 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16598
16599 * configure: test for and move config.status pieces from
16600 ${subdir}/.
16601
16602 Wed Apr 22 14:38:34 1992 Fred Fish (fnf@cygnus.com)
16603
16604 * configure: Test for existance of files before trying to mv
16605 them, to avoid numerous non-existance messages.
16606
16607 Tue Apr 21 12:31:33 1992 K. Richard Pixley (rich@cygnus.com)
16608
16609 * configure: correct final line of config.status.
16610
16611 * configure: patch from eggert. Avoids a protection problem if
16612 the original Makefile.in is read only.
16613
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.
16619
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.
16623
16624 Mon Apr 20 18:16:36 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16625
16626 * Makefile.in: explicitly pass CFLAGS on recursion. no longer pass
16627 MINUS_G (this can be done with CFLAGS). Default CFLAGS to -g.
16628
16629 Fri Apr 17 18:27:51 1992 Per Bothner (bothner@cygnus.com)
16630
16631 * configure: mkdir ${subdir} as needed.
16632
16633 Wed Apr 15 17:37:22 1992 K. Richard Pixley (rich@cygnus.com)
16634
16635 * Makefile.in,configure.in: added autoconf.
16636
16637 Wed Apr 15 17:27:34 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16638
16639 * Makefile.in: no longer pass against on recursion.
16640
16641 * Makefile.in: added .NOEXPORT: so that stray makefile_frag
16642 definitions are not inherited.
16643
16644 * configure: correct makesrcdir when subdir is .
16645
16646 Tue Apr 14 11:56:09 1992 Per Bothner (bothner@cygnus.com)
16647
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.
16652
16653 Mon Apr 13 18:50:16 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16654
16655 * configure.in: added flex to configdirs
16656
16657 Mon Apr 13 18:43:55 1992 K. Richard Pixley (rich@cygnus.com)
16658
16659 * Makefile.in: remove clean-stamps from clean.
16660
16661 Sat Apr 11 03:52:03 1992 John Gilmore (gnu at cygnus.com)
16662
16663 * configure.in: Add gdbtest to configdirs.
16664
16665 Fri Apr 10 23:11:49 1992 Fred Fish (fnf@cygnus.com)
16666
16667 * Makefile.in (MINUS_G): Add macro, default to -g, pass on
16668 to recursive makes.
16669 * configure.in: Recognize new ncr3000 config.
16670
16671 Wed Apr 8 23:08:12 1992 K. Richard Pixley (rich@cygnus.com)
16672
16673 * Makefile.in, configure.in: removed references to gdbm.
16674
16675 Tue Apr 7 16:48:20 1992 Per Bothner (bothner@cygnus.com)
16676
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.)
16680
16681 Mon Apr 6 14:34:08 1992 Stu Grossman (grossman at cygnus.com)
16682
16683 * configure.in: sco is an os, not a vendor!
16684
16685 * configure: Quote $( better. Keep various shells happy.
16686
16687 Tue Mar 31 16:32:57 1992 K. Richard Pixley (rich@cygnus.com)
16688
16689 * Makefile.in: eliminate stamp-files.
16690
16691 Mon Mar 30 22:20:23 1992 K. Richard Pixley (rich@cygnus.com)
16692
16693 * Makefile.in: add send_pr. remove "force" from .stmp-gprof rule.
16694 Supress echoing of all the "if [ -d ... $(MAKE)" lines.
16695
16696 Wed Mar 25 15:20:04 1992 Stu Grossman (grossman@cygnus.com)
16697
16698 * config.sub: fix iris/iris3.
16699
16700 Wed Mar 25 10:34:19 1992 K. Richard Pixley (rich@cygnus.com)
16701
16702 * configure: re-add -rm.
16703
16704 Tue Mar 24 23:50:16 1992 K. Richard Pixley (rich@cygnus.com)
16705
16706 * Maskefile.in: add .stmp-rcs to all.
16707
16708 * configure.in: remove gas from rs6000 build, use aix host fragment.
16709
16710 Mon Mar 23 19:43:35 1992 K. Richard Pixley (rich@cygnus.com)
16711
16712 * configure: pass down site_option during recursion.
16713
16714 Thu Mar 19 16:49:36 1992 Stu Grossman (grossman at cygnus.com)
16715
16716 * Makefile.in (all.cross): Add .stmp-bfd .stmp-readline.
16717
16718 Wed Mar 18 15:29:33 1992 Mike Stump (mrs@cygnus.com)
16719
16720 * configure: Change exec_prefix so that it really defaults to prefix.
16721
16722 Sat Mar 14 17:20:38 1992 Fred Fish (fnf@cygnus.com)
16723
16724 * Makefile.in, configure.in: Add support for mmalloc library.
16725
16726 Fri Mar 13 18:44:18 1992 K. Richard Pixley (rich@cygnus.com)
16727
16728 * Makefile.in: add stmp dependencies for a few more things.
16729
16730 Thu Mar 12 04:56:24 1992 K. Richard Pixley (rich@cygnus.com)
16731
16732 * configure: adjusted error message on objdir/srcdir configure
16733 collision, per john's suggestion.
16734
16735 * Makefile.in: add libiberty stmp to all and all.cross.
16736
16737 Wed Mar 11 02:07:52 1992 K. Richard Pixley (rich@cygnus.com)
16738
16739 * Makefile.in: remove force dependencies, add grep to all.
16740
16741 Tue Mar 10 21:49:18 1992 K. Richard Pixley (rich@mars.cygnus.com)
16742
16743 * Makefile.in: drop flex. make stamp files work.
16744
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
16749 going to stdout.
16750
16751 Tue Mar 10 18:01:55 1992 Per Bothner (bothner@cygnus.com)
16752
16753 * Makefile.in: Fix libg++ rule to check for gcc directory
16754 before using gcc/gcc. Also pass XTRAFLAGS.
16755
16756 Thu Mar 5 21:45:07 1992 K. Richard Pixley (rich@sendai)
16757
16758 * Makefile.in: added stmp-files so that directories aren't polled
16759 when they are already built.
16760
16761 * configure.texi: fixed a node pointer problem.
16762
16763 Thu Mar 5 12:05:58 1992 Stu Grossman (grossman at cygnus.com)
16764
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.
16769
16770 Wed Mar 4 02:57:46 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16771
16772 * configure: -recurring becomes -silent. corrected help message
16773 for -site= option.
16774
16775 * Makefile.in: mkdir $(exec_prefix) and $(tooldir).
16776
16777 Tue Mar 3 14:51:21 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16778
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
16782 targets" loops.
16783
16784 Wed Feb 26 19:48:25 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16785
16786 * Makefile.in: Do not pass bindir or mandir to cvs.
16787
16788 Wed Feb 26 18:04:40 1992 K. Richard Pixley (rich@cygnus.com)
16789
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.
16793
16794 * configure.texi: remove most references to multiple hosts,
16795 multiple targets, subdirs, etc.
16796
16797 * configure.man: removed rcsid. reference config.sub not
16798 config.subr.
16799
16800 * Makefile.in: mkdir $(infodir) on install-info.
16801
16802 Wed Feb 19 15:41:13 1992 John Gilmore (gnu at cygnus.com)
16803
16804 * configure.texi: Explain better about .gdbinit and about
16805 the environment that configure.in sections run in.
16806
16807 Fri Feb 7 07:55:00 1992 John Gilmore (gnu at cygnus.com)
16808
16809 * configure.in: Ultrix is only a decstation if it's a MIPS.
16810
16811 Fri Jan 31 21:54:51 1992 John Gilmore (gnu at cygnus.com)
16812
16813 * README: DOC.configure => cfg-paper.texi.
16814
16815 Fri Jan 31 21:48:18 1992 Stu Grossman (grossman at cygnus.com)
16816
16817 * config.sub (near case $os): Don't convert newsos* to bsd!
16818
16819 Fri Jan 31 02:27:32 1992 John Gilmore (gnu at cygnus.com)
16820
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.
16823
16824 Thu Jan 30 16:17:30 1992 Stu Grossman (grossman at cygnus.com)
16825
16826 * bfd/configure.in, gdb/config/mh-i386sco,
16827 gdb/config/mt-i386v32, gdb/configure.in, readline/configure.in:
16828 Fix SCO configuration stuff.
16829
16830 Tue Jan 28 23:51:07 1992 Per Bothner (bothner at cygnus.com)
16831
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++.
16835
16836 Tue Jan 28 12:56:24 1992 Stu Grossman (grossman at cygnus.com)
16837
16838 * configure: Change -x to -f to keep Ultrix /bin/test happy.
16839
16840 Sat Jan 18 17:45:11 1992 Stu Grossman (grossman at cygnus.com)
16841
16842 * Makefile.in (make-gdb.tar.Z): Remove texinfo targets.
16843
16844 Sat Jan 18 17:03:21 1992 Fred Fish (fnf at cygnus.com)
16845
16846 * config.sub: Add stratus configuration frags. Also
16847 submitted to FSF.
16848
16849 Sat Jan 18 15:35:29 1992 Stu Grossman (grossman at cygnus.com)
16850
16851 * Makefile.in (DEV_SUPPORT): add configure.man.
16852
16853 * config.sub(Decode manufacturer-specific): add -none*.
16854
16855 Fri Jan 17 17:58:05 1992 Stu Grossman (grossman at cygnus.com)
16856
16857 * Makefile.in: remove form feeds to make Sun's make happy.
16858 (DEVO_SUPPORT): DOC.configure => cfg-paper.texi.
16859
16860 Sat Jan 4 16:11:44 1992 John Gilmore (gnu at cygnus.com)
16861
16862 * Makefile.in (AR_FLAGS): Make quieter.
16863
16864 Thu Jan 2 22:57:12 1992 John Gilmore (gnu at cygnus.com)
16865
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.
16870
16871 Fri Dec 27 16:26:47 1991 K. Richard Pixley (rich at cygnus.com)
16872
16873 * configure.in, Makefile.in: fix clean-info, add flex. add
16874 fileutils.
16875
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.
16880
16881 Thu Dec 26 16:30:26 1991 K. Richard Pixley (rich at cygnus.com)
16882
16883 * cfg-paper.texi: some changes suggested by rms.
16884
16885 Thu Dec 26 10:13:36 1991 Fred Fish (fnf at cygnus.com)
16886
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.
16890
16891 Fri Dec 20 11:34:18 1991 Fred Fish (fnf at cygnus.com)
16892
16893 * configure.in: Changed svr4 references to sysv4.
16894
16895 Thu Dec 19 15:54:29 1991 K. Richard Pixley (rich at cygnus.com)
16896
16897 * configure: added -V for version number option.
16898
16899 Wed Dec 18 15:39:34 1991 K. Richard Pixley (rich at cygnus.com)
16900
16901 * DOC.configure, cfg-paper.texi: revised, updated, and texinfo'd.
16902 renamed from DOC.configure to cfg-paper.texi.
16903
16904 Mon Dec 16 23:05:19 1991 K. Richard Pixley (rich at rtl.cygnus.com)
16905
16906 * configure, config.subr, config.sub: config.subr is now
16907 config.sub again.
16908
16909 Fri Dec 13 01:17:06 1991 K. Richard Pixley (rich at cygnus.com)
16910
16911 * configure.texi: new file, in progress.
16912
16913 * Makefile.in: build info file and install the man page for
16914 configure.
16915
16916 * configure.man: new file, first cut.
16917
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.
16921
16922 * config.subr: resync from rms.
16923
16924 1991-12-11 K. Richard Pixley (rich at rtl.cygnus.com)
16925
16926 * configure, config.sub, config.subr: merge config.sub into
16927 config.subr, call the result config.subr, remove config.sub, use
16928 config.subr.
16929
16930 * Makefile.in: revised install for dir.info.
16931
16932 1991-12-10 K. Richard Pixley (rich at rtl.cygnus.com)
16933
16934 * configure.in: add decstation host makefile frag.
16935
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
16939 install it.
16940
16941 1991-12-09 K. Richard Pixley (rich at rtl.cygnus.com)
16942
16943 * Makefile.in: fix for bad directory tests.
16944
16945 1991-12-07 K. Richard Pixley (rich at rtl.cygnus.com)
16946
16947 * configure: \{1,2\} appears to be a sysv'ism. Use a different
16948 regexp. -srcdir relative was being handled incorrectly.
16949
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
16952 package.
16953
16954 1991-12-06 K. Richard Pixley (rich at rtl.cygnus.com)
16955
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.
16959
16960 1991-12-05 K. Richard Pixley (rich at rtl.cygnus.com)
16961
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
16966 in ${srcdir}.
16967
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.
16971
16972 1991-11-22 K. Richard Pixley (rich at rtl.cygnus.com)
16973
16974 * Freshly created ChangeLog.
16975
16976 \f
16977 Local Variables:
16978 mode: change-log
16979 left-margin: 8
16980 fill-column: 76
16981 version-control: never
16982 End: