Synchronize libbierty sources with gcc.
[binutils-gdb.git] / ChangeLog
1 2022-07-04 Nick Clifton <nickc@redhat.com>
2
3 * libiberty: Synchronize with GCC. Bring in:
4 2022-07-01 Nick Clifton <nickc@redhat.com>
5
6 PR demangler/105039
7 * rust-demangle.c (demangle_const): Add recursion limit.
8
9 2022-06-26 Simon Marchi <simon.marchi@efficios.com>
10
11 * configure.ac: Add AC_CONFIG_MACRO_DIRS call.
12 * configure: Re-generate.
13
14 2022-04-12 Nick Clifton <nickc@redhat.com>
15
16 * zlib: Rebase to the 1.2.12 release.
17
18 2022-04-08 Simon Marchi <simon.marchi@efficios.com>
19
20 * configure.ac: Add AC_SUBST(PKG_CONFIG_PATH).
21 * configure: Re-generate.
22 * Makefile.tpl (HOST_EXPORTS): Pass PKG_CONFIG_PATH.
23 (PKG_CONFIG_PATH): New.
24 * Makefile.in: Re-generate.
25
26 2022-03-15 Jose E. Marchesi <jose.marchesi@oracle.com>
27
28 * gprofng/src/gp-collect-app.cc (collect::check_args): Use
29 fallthrough comment instead of attribute.
30
31 2022-03-11 Vladimir Mezentsev <vladimir.mezentsev@oracle.com>
32
33 * Makefile.def: Add gprofng module.
34 * configure.ac: Add --enable-gprofng option.
35 * src-release.sh: Add gprofng.
36 * Makefile.in: Regenerate.
37 * configure: Regenerate.
38 * gprofng: New directory.
39
40 2022-01-22 Nick Clifton <nickc@redhat.com>
41
42 * 2.38 release branch created.
43
44 2022-01-17 Nick Clifton <nickc@redhat.com>
45
46 Update config.[guess|sub] from upstream:
47
48 2022-01-09 Idan Horowitz <idan.horowitz@gmail.com>
49
50 config.guess: recognize SerenityOS
51 * config.guess (*:SerenityOS:*:*): Recognize.
52 (timestamp): Update.
53
54 2022-01-03 Bernhard Voelker <mail@bernhard-voelker.de>
55
56 Fix GPLv3 license headers to use a comma instead of semicolon
57 See: https://www.gnu.org/licenses/gpl-3.0.html#howto
58
59 Update license headers automatically using the following script:
60
61 $ git grep -l 'Foundation; either version 3' \
62 | xargs sed -i '/Foundation; either version 3/ s/n; e/n, e/'
63
64 * config.guess: Adjust via the above command.
65 (timestamp): Update.
66 * config.sub: Likewise.
67 * doc/config.guess.1: Regenerate.
68 * doc/config.sub.1: Likewise.
69
70 2022-01-01 Dmitry V. Levin <ldv@altlinux.org>
71
72 Update copyright years
73 * config.guess: Update copyright years.
74 * config.sub: Likewise.
75
76 2021-12-25 Dmitry V. Levin <ldv@altlinux.org>
77
78 config.sub: alias armh to armv7l
79 ALT uses armh as an alias for armv7l-alt-linux-gnueabihf since 2012.
80
81 * config.sub (armh-unknown|armh-alt): Set cpu, vendor, and basic_os.
82 (timestamp): Update.
83
84 2021-12-24 Dmitry V. Levin <ldv@altlinux.org>
85
86 config.sub: alias aarch64le to aarch64
87 Apparently, QNX reports aarch64 as aarch64le on little-endian machines.
88
89 * config.sub (aarch64le-*): Set cpu to aarch64.
90 (timestamp): Update.
91
92 2021-12-13 Dmitry V. Levin <ldv@altlinux.org>
93
94 config.sub: fix typo in timestamp
95 * config.sub: Fix timestamp.
96
97 2021-11-30 Andreas F. Borchert <github@andreas-borchert.de>
98
99 config.guess: x86_64-pc-solaris2.11 is not properly recognized
100 config.guess guesses Solaris 11 to run on a 32-bit platform
101 despite Solaris 11 no longer supporting any 32-bit platform.
102
103 See the following code at lines 434 to 445:
104
105 | SUN_ARCH=i386
106 | # If there is a compiler, see if it is configured for 64-bit objects.
107 | # Note that the Sun cc does not turn __LP64__ into 1 like gcc does.
108 | # This test works for both compilers.
109 | if test "$CC_FOR_BUILD" != no_compiler_found; then
110 | if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \
111 | (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \
112 | grep IS_64BIT_ARCH >/dev/null
113 | then
114 | SUN_ARCH=x86_64
115 | fi
116 | fi
117
118 If "cc" is installed, i.e. the Oracle Studio compiler, this one is
119 chosen for $CC_FOR_BUILD. This compiler, the gcc provided by Oracle
120 and also gcc bootstrapped from sources on that platform with a default
121 configuration will by default generate 32-bit binaries -- even on
122 a 64-bit platform. And __amd64 will not be defined for compilations
123 targeting a 32-bit platform. This is different from the corresponding
124 behaviour on GNU/Linux systems where the local platform is targeted by
125 default.
126
127 Thus, as long as you do not add "-m64" or if you have a custom-built
128 gcc which defaults to 64 bit, you will get 32-bit binaries on Solaris
129 despite living on a 64-bit platform.
130
131 * config.guess (i86pc:SunOS:5.*:* || i86xen:SunOS:5.*:*): Adapt the
132 test by adding the "-m64" flag. This will work properly for Solaris
133 10 as well (the last Solaris release that supported x86 32-bit
134 platforms).
135
136 2021-10-27 Jordi Sanfeliu <jordi@fibranet.cat>
137
138 Recognize Fiwix
139 $ make check
140 cd testsuite && bash config-guess.sh && rm uname
141 PASS: config.guess checks (137 tests)
142 cd testsuite && bash config-sub.sh
143 PASS: config.sub checks (882 tests)
144 PASS: config.sub idempotency checks (819 tests)
145 PASS: config.sub canonicalise each config.guess testcase (137 tests)
146
147 * config.guess (i*86:Fiwix:*:*): Recognize.
148 * config.sub (fiwix*): Likewise.
149
150 2021-10-18 Kinshuk Dua <kinshukdua@gmail.com>
151
152 config.sub: Fix typo in comment
153 Fixes: 5e531d391852a54e7fab2d8ff55625fca514b305
154
155 2021-08-14 Nick Bowler <nbowler@draconx.ca>
156
157 config.sub: work around command assignment bug in some shells
158 When combining variable assignments with a shell command, some older
159 shells (notably heirloom-sh and presumably also Solaris 10 /bin/sh)
160 have a bug which causes the assignment to alter the current execution
161 environment whenever the command is a shell built-in. For example:
162
163 % dash -c 'x=good; x=bad echo >/dev/null; echo $x'
164 good
165
166 % jsh -c 'x=good; x=bad echo >/dev/null; echo $x'
167 bad
168
169 The config.sub script contains a few commands of the form:
170
171 IFS=- read ...
172
173 which triggers this bug, causing the IFS assignment to persist for the
174 remainder of the script. This can cause misbehaviour in certain cases,
175 for example:
176
177 % jsh config.sub i386-linux-gnu
178 config.sub: test: unknown operator gnu
179
180 % jsh config.sub i386-gnu/linux
181 sed: can't read s|gnu/linux|gnu|: No such file or directory
182 Invalid configuration `i386-gnu/linux': OS `' not recognized
183
184 * config.sub: Save and restore IFS explicitly to avoid shell bugs.
185 * doc/config.sub.1: Regenerate.
186
187 2021-08-04 Jeremy Soller <jackpot51@gmail.com>
188
189 config.sub: add Linux Relibc Target
190 $ make check
191 cd testsuite && bash config-guess.sh && rm uname
192 PASS: config.guess checks (136 tests)
193 cd testsuite && bash config-sub.sh
194 PASS: config.sub checks (881 tests)
195 PASS: config.sub idempotency checks (818 tests)
196 PASS: config.sub canonicalise each config.guess testcase (136 tests)
197
198 * config.sub (relibc*): Recognize.
199 * doc/config.sub.1: Regenerate.
200 * testsuite/config-sub.data (x86_64-linux-relibc): New test.
201
202 2021-07-06 Stephanos Ioannidis <root@stephanos.io>
203
204 config.sub: add Zephyr RTOS support
205 This adds the Zephyr RTOS targets in preparation for implementing the
206 Zephyr RTOS-specific toolchain support.
207
208 $ make check
209 cd testsuite && bash config-guess.sh && rm uname
210 PASS: config.guess checks (136 tests)
211 cd testsuite && bash config-sub.sh
212 PASS: config.sub checks (880 tests)
213 PASS: config.sub idempotency checks (817 tests)
214 PASS: config.sub canonicalise each config.guess testcase (136 tests)
215
216 * config.sub (zephyr*): Recognize.
217 * doc/config.sub.1: Regenerate.
218 * testsuite/config-sub.data: Add testcases for *-zephyr.
219
220 2021-07-03 Ozkan Sezer <sezero@users.sourceforge.net>
221
222 config.sub: disable shellcheck SC2006 / SC2268 warnings
223 This is in line with the recent config.guess change in commit
224 12fcf67c9108f4c4b581eaa302088782f0ee40ea
225
226 * config.sub (shellcheck disable): Add SC2006,SC2268.
227
228 Suggested-by: Jacob Bachmeyer <jcb@gnu.org>
229
230 2021-07-03 Ozkan Sezer <sezero@users.sourceforge.net>
231
232 config.sub: normalize the quoting in the `echo FOO | sed ...`
233 Some cases quote the argument to echo and some do not. At runtime
234 it probably does not matter because the substituted values will never
235 contain whitespace, but quoting them all would make shellcheck more
236 useful.
237
238 * config.sub: Consistently quote the argument of echo.
239 * doc/config.sub.1: Regenerate.
240
241 Suggested-by: Jacob Bachmeyer <jcb@gnu.org>
242
243 2021-07-02 Ozkan Sezer <sezero@users.sourceforge.net>
244
245 config.sub: replace POSIX $( ) with classic ` ` throughout
246 This is in line with the recent config.guess change in commit
247 d70c4fa934de164178054c3a60aaa0024ed07c91.
248
249 The patch was generated using patch-6.gawk script introduced in that
250 commit.
251
252 * config.sub: Revert POSIX command substitutions to classic form.
253
254 2021-06-04 Vineet Gupta <Vineet.Gupta1@synopsys.com>
255
256 Recognize arc32
257 This is the 32-bit variant of ARCv3 ISA (which is not compatible with the
258 32-bit ARCv2 ISA)
259
260 | make check
261 | cd testsuite && bash config-guess.sh && rm uname
262 | PASS: config.guess checks (136 tests)
263 | cd testsuite && bash config-sub.sh
264 | PASS: config.sub checks (864 tests)
265 | PASS: config.sub idempotency checks (801 tests)
266 | PASS: config.sub canonicalise each config.guess testcase (136 tests)
267
268 * config.guess (arc32:Linux:*:*): Recognize.
269 * config.sub (arc32): Likewise.
270
271 2021-05-27 Jacob Bachmeyer <jcb@gnu.org>
272
273 Remove automatic patch generators
274 These tools have served their purposes and need not be kept outside of
275 the repository history any longer. This patch as a diff also collects
276 the contents of the various tools in one convenient place.
277
278 * patch-1.gawk: Remove.
279 * patch-3.gawk: Likewise.
280 * patch-6.gawk: Likewise.
281
282 2021-05-26 Jacob Bachmeyer <jcb@gnu.org>
283
284 config.guess: manual fixups after previous automatic patch
285 The tool could not handle command substitutions that span lines, but
286 fortunately there were only two such substitutions in the script.
287
288 The test for which universe is active on Pyramid is rewritten into a
289 case block because it was the only use of a command substitution as an
290 argument to the test command, which would require quoting.
291
292 * config.guess: Rewrite "if" for Pyramid systems to "case".
293
294 2021-05-26 Jacob Bachmeyer <jcb@gnu.org>
295
296 config.guess: replace POSIX $( ) with classic ` ` throughout
297 The previous replacement of backticks with POSIX command substitutions
298 was ill-considered and illogical: this script recognizes many archaic
299 machine types that probably never had POSIX shells, therefore it needs
300 to be able to run successfully under pre-POSIX shells.
301
302 This patch was generated using the included GNU Awk program.
303
304 * config.guess: Revert POSIX command substitutions to classic form.
305 * patch-6.gawk: Store the tool that produced the automated patch.
306
307 2021-05-26 Jacob Bachmeyer <jcb@gnu.org>
308
309 config.guess: manual fixup after previous automated patches
310 This patch provides the special handling for the GNU system. As these
311 were two small and unique edits, they were not included in the scripts.
312
313 This patch also cleans up other minor issues that must be addressed
314 before reverting to classic command substitutions and updates
315 "shellcheck" directives to account for changes in this script and the
316 change in "shellcheck" towards reporting individual portability issues.
317
318 2021-05-26 Jacob Bachmeyer <jcb@gnu.org>
319
320 config.guess: automatic fixups after previous automated patch
321 This patch was generated using the following command:
322
323 sed -i config.guess \
324 -e '/="[^"]\+"\(-\|$\)/s/="\([^"([:space:])]\+\)"/=\1/' \
325 -e '/="[^"]\+"[[:alnum:]]/s/="\$\([^([:space:])]\+\)"/=${\1}/' \
326 -e \
327 '/\$(echo[^|]\+|/s/\([^[:space:]]\)[[:space:]]*|[[:space:]]*sed/\1 | sed/g'
328
329 * config.guess: Remove unneeded quotes in other variable assignments,
330 standardize spacing for "echo ... | sed" substitutions.
331
332 2021-05-26 Jacob Bachmeyer <jcb@gnu.org>
333
334 config.guess: remove unneeded quotes and factor command substitutions
335 This is further cleanup and simplifies some constructs that can confuse
336 Emacs' syntax highlighting while generally reducing required quoting.
337
338 This patch was generated using the included GNU Awk program.
339
340 * config.guess: Remove unneeded variable quotes and factor out command
341 substitutions when setting GUESS.
342 * patch-3.gawk: Store the tool that produced the automated patch.
343
344 2021-05-25 Jacob Bachmeyer <jcb@gnu.org>
345
346 config.guess: manual fixups after previous automatic patch
347 * config.guess: Adjust a few "leftover" cases that the tool could not
348 easily recognize and fixes comment indentation in a few other special
349 cases.
350
351 2021-05-25 Jacob Bachmeyer <jcb@gnu.org>
352
353 config.guess: use intermediate variable with uname results
354 This will allow quoting to be significantly simplified in another
355 pass through the file.
356
357 This patch was generated using the included GNU Awk program.
358
359 * config.guess: Use GUESS variable to hold results of uname analysis.
360 * patch-1.gawk: Store the tool that produced the automated patch.
361
362 2021-05-25 Jacob Bachmeyer <jcb@gnu.org>
363
364 config.guess: introduce intermediate variable with uname results
365 This will allow quoting to be significantly simplified in another
366 pass through the file.
367
368 * config.guess: Introduce GUESS variable to hold results of uname analysis.
369
370 2021-05-24 Dmitry V. Levin <ldv@altlinux.org>
371
372 config.guess: fix shellcheck warning SC2154
373 While, according to Plan 9 documentation, the environment variable
374 $cputype is set to the name of the kernel's CPU's architecture,
375 shellcheck warns that cputype is referenced but not assigned.
376 Be on the safe side and do not use cputype if it is not defined
377 or empty.
378
379 * config.guess (*:Plan9:*:*): Fix shellcheck warning SC2154.
380
381 2021-05-24 Dmitry V. Levin <ldv@altlinux.org>
382
383 config.guess: remove redundant quotes in case commands
384 According to the GNU Autoconf Portable Shell Programming manual,
385 the Bourne shell does not systematically split variables and back-quoted
386 expressions, in particular on the right-hand side of assignments and in
387 the argument of 'case'.
388
389 The change is made automatically using the following command:
390 $ sed -E -i 's/(\<case )"(\$[^"]+)"( in\>)/\1\2\3/' config.guess
391
392 * config.guess: Simplify case commands by removing quotes around the
393 argument.
394
395 Suggested-by: Jacob Bachmeyer <jcb@gnu.org>
396
397 2021-05-24 Dmitry V. Levin <ldv@altlinux.org>
398
399 config.guess: simplify exit status workaround on alphaev67-dec-osf5.1
400 Commit 29865ea8a5622cdd80b7a69a0afa78004b4cd311 introduced an exit trap
401 reset before exiting to avoid a spurious non-zero exit status on
402 alphaev67-dec-osf5.1. Simplify that code a bit by moving the exit trap
403 reset around.
404
405 * config.guess (alpha:OSF1:*:*): Reset exit trap earlier.
406 * doc/config.guess.1: Regenerate.
407
408 2021-10-29 Eli Zaretskii <eliz@gnu.org>
409
410 * gdb/doc/gdb.texinfo (Command Options): (Data): Document
411 '-memory-tag-violations'. Update the example.
412
413 2021-09-28 Andrew Burgess <andrew.burgess@embecosm.com>
414
415 * src-release.sh (GDB_SUPPPORT_DIRS): Add libbacktrace.
416
417 2021-09-27 Nick Alcock <nick.alcock@oracle.com>
418
419 PR libctf/27967
420 * libtool.m4 (LT_PATH_NM): Try BSDization flags with a user-provided
421 NM, if there is one. Run nm on itself, not on /dev/null, to avoid
422 errors from nms that refuse to work on non-regular files. Remove
423 other workarounds for this problem. Strip out blank lines from the
424 nm output.
425
426 2021-09-27 Nick Alcock <nick.alcock@oracle.com>
427
428 PR libctf/27967
429 * libtool.m4 (lt_cv_sys_global_symbol_pipe): Augment symcode for
430 Solaris 11.
431
432 2021-07-03 Nick Clifton <nickc@redhat.com>
433
434 * 2.37 release branch created.
435
436 2021-07-03 Nick Clifton <nickc@redhat.com>
437
438 * libiberty: Sync with gcc. Bring in:
439 2021-06-30 Gerald Pfeifer <gerald@pfeifer.com>
440
441 * make-temp-file.c (usrtmp): Remove.
442 (choose_tmpdir): Remove use of usrtmp.
443
444 2021-06-28 Indu Bhagat <indu.bhagat@oracle.com>
445
446 * simple-object.c (handle_lto_debug_sections): Copy over .BTF section.
447
448 2021-06-28 Indu Bhagat <indu.bhagat@oracle.com>
449 David Faust <david.faust@oracle.com>
450 Jose E. Marchesi <jose.marchesi@oracle.com>
451 Weimin Pan <weimin.pan@oracle.com>
452
453 * simple-object.c (handle_lto_debug_sections): Copy over .ctf
454 sections.
455
456 2021-06-05 John David Anglin <danglin@gcc.gnu.org>
457
458 PR target/100734
459 * configure.ac: Use libiberty snprintf and vsnprintf on
460 hppa*-*-hpux*.
461 * configure: Regenerate.
462
463 2021-05-06 Tom Tromey <tom@tromey.com>
464
465 * hashtab.c (htab_eq_string): New function.
466
467 2021-05-04 Eric Botcazou <ebotcazou@adacore.com>
468
469 * configure.ac: Make test for variables more robust.
470 * configure: Regenerate.
471
472 2021-05-03 H.J. Lu <hjl.tools@gmail.com>
473
474 PR bootstrap/99703
475 * configure: Regenerated.
476
477 2021-04-21 Andreas Schwab <schwab@linux-m68k.org>
478
479 PR demangler/100177
480 * rust-demangle.c (demangle_const_char): Properly print the
481 character value.
482
483 2021-03-31 Patrick Palka <ppalka@redhat.com>
484
485 PR c++/88115
486 * cp-demangle.c (d_dump, d_make_comp, d_expression_1)
487 (d_count_templates_scopes): Handle DEMANGLE_COMPONENT_VENDOR_EXPR.
488 (d_print_comp_inner): Likewise.
489 <case DEMANGLE_COMPONENT_EXTENDED_OPERATOR>: Revert r11-4926
490 change.
491 <case DEMANGLE_COMPONENT_UNARY>: Likewise.
492 * testsuite/demangle-expected: Adjust __alignof__ tests.
493
494 2021-03-16 Nick Clifton <nickc@redhat.com>
495
496 * sha1.c (sha1_process_bytes): Use memmove in place of memcpy.
497
498 2021-02-20 Mike Frysinger <vapier@gentoo.org>
499
500 * Makefile.in (ACLOCAL, ACLOCAL_AMFLAGS, $(srcdir)/aclocal.m4): Define.
501 (configure_deps): Rename to ...
502 (aclocal_deps): ... this. Replace aclocal.m4 with acinclude.m4.
503 ($(srcdir)/configure): Replace $(configure_deps) with
504 $(srcdir)/aclocal.m4.
505 * aclocal.m4: Move libiberty macros to acinclude.m4, then regenerate.
506 * acinclude.m4: New file.
507 * configure: Regenerate.
508
509 2021-02-19 Ayush Mittal <ayush.m@samsung.com>
510
511 * argv.c (expandargv): free allocated buffer if read fails.
512
513 2021-02-01 Martin Sebor <msebor@redhat.com>
514
515 * dyn-string.c (dyn_string_insert_cstr): Use memcpy instead of strncpy
516 to avoid -Wstringop-truncation.
517
518 2021-05-29 Mike Frysinger <vapier@gentoo.org>
519
520 * configure.ac: Add gnulib to configdirs for sim.
521 * configure: Regenerate.
522
523 2021-05-24 Maciej W. Rozycki <macro@orcam.me.uk>
524
525 * MAINTAINERS: Update path to readline config.{sub,guess} files.
526
527 2021-05-24 Maciej W. Rozycki <macro@orcam.me.uk>
528
529 * config.guess: Import from upstream.
530 * config.sub: Likewise.
531
532 2021-05-18 Mike Frysinger <vapier@gentoo.org>
533
534 * Makefile.def: Add configure-sim dependency on all-gnulib.
535 * Makefile.in: Regenerated.
536
537 2021-05-04 Nick Clifton <nickc@redhat.com>
538
539 * configure.ac (AC_PROG_CC): Replace with AC_PROG_CC_C99.
540 * configure: Regenerate.
541
542 2021-03-18 Nick Alcock <nick.alcock@oracle.com>
543
544 PR libctf/27482
545 * Makefile.def: Add install-bfd dependencies for install-libctf and
546 install-ld, and install-strip-bfd dependencies for
547 install-strip-libctf and install-strip-ld; move the install-ld
548 dependency on install-libctf to join it.
549 * Makefile.in: Regenerated.
550
551 2021-03-12 Mike Frysinger <vapier@gentoo.org>
552
553 * Makefile.def: Remove all-sim dependency on configure-gdb.
554 * Makefile.in: Regenerated.
555
556 2021-02-28 H.J. Lu <hongjiu.lu@intel.com>
557
558 PR binutils/26766
559 * Makefile.tpl (PGO_BUILD_TRAINING_FLAGS_TO_PASS): Add
560 PGO_BUILD_TRAINING=yes.
561 (PGO_BUILD_TRAINING_MFLAGS): New.
562 (all): Pass $(PGO_BUILD_TRAINING_MFLAGS) to the PGO build.
563
564 2021-02-09 Alan Modra <amodra@gmail.com>
565
566 * configure.ac: Delete arm*-*-symbianelf* entry.
567 * configure: Regenerate.
568
569 2021-01-26 Nick Alcock <nick.alcock@oracle.com>
570
571 * Makefile.def: Add install-libctf dependency to install-ld.
572 * Makefile.in: Regenerated.
573
574 2021-01-12 Mike Frysinger <vapier@gentoo.org>
575
576 * src-release.sh (do_proto_toplev): Rewrite indentation.
577
578 2021-01-11 H.J. Lu <hongjiu.lu@intel.com>
579
580 PR binutils/26766
581 * configure.ac:
582 * configure: Regenerated.
583
584 2021-01-11 H.J. Lu <hongjiu.lu@intel.com>
585
586 PR ld/27173
587 * configure: Regenerated.
588 * libtool.m4 (_LT_CMD_OLD_ARCHIVE): Check if AR works with
589 --plugin and rc before enabling --plugin.
590
591 2021-01-09 H.J. Lu <hongjiu.lu@intel.com>
592
593 PR binutils/26766
594 * Makefile.tpl (BUILD_CFLAGS): New.
595 (CFLAGS): Append $(BUILD_CFLAGS).
596 (CXXFLAGS): Likewise.
597 (PGO_BUILD_GEN_FLAGS_TO_PASS): New.
598 (PGO_BUILD_TRAINING_CFLAGS): Likewise.
599 (PGO_BUILD_TRAINING_CXXFLAGS): Likewise.
600 (PGO_BUILD_TRAINING_FLAGS_TO_PASS): Likewise.
601 (PGO_BUILD_TRAINING_MFLAGS): Likewise.
602 (PGO_BUILD_USE_FLAGS_TO_PASS): Likewise.
603 (PGO-TRAINING-TARGETS): Likewise.
604 (PGO_BUILD_TRAINING): Likewise.
605 (all): Add '+' to the command line for recursive make. Support
606 the PGO build.
607 * configure.ac: Add --enable-pgo-build[=lto].
608 AC_SUBST PGO_BUILD_GEN_CFLAGS, PGO_BUILD_USE_CFLAGS and
609 PGO_BUILD_LTO_CFLAGS. Enable the PGO build in Makefile.
610 * Makefile.in: Regenerated.
611 * configure: Likewise.
612
613 2021-01-09 H.J. Lu <hongjiu.lu@intel.com>
614
615 * Makefile.tpl (AR): Add @AR_PLUGIN_OPTION@
616 (RANLIB): Add @RANLIB_PLUGIN_OPTION@.
617 * configure.ac: Include config/gcc-plugin.m4.
618 AC_SUBST AR_PLUGIN_OPTION and RANLIB_PLUGIN_OPTION.
619 * libtool.m4 (_LT_CMD_OLD_ARCHIVE): Pass --plugin to AR and
620 RANLIB if possible.
621 * Makefile.in: Regenerated.
622 * configure: Likewise.
623
624 2021-01-09 Nick Clifton <nickc@redhat.com>
625
626 * 2.36 release branch crated.
627
628 2021-01-07 Samuel Thibault <samuel.thibault@gnu.org>
629
630 * libtool.m4: Match gnu* along with other GNU systems.
631
632 2021-01-07 Alan Modra <amodra@gmail.com>
633
634 * config.sub: Accept OS of eabi* and gnueabi*.
635
636 2021-01-05 Nick Alcock <nick.alcock@oracle.com>
637
638 * Makefile.def (libctf): No longer no_check. Checking depends on
639 all-ld.
640 * Makefile.in: Regenerated.
641
642 2021-01-05 Nick Clifton <nickc@redhat.com>
643
644 * libiberty: Sync with gcc. Bring in:
645 2021-01-04 Martin Liska <mliska@suse.cz>
646
647 * strverscmp.c: Convert to utf8 from iso8859.
648
649 2020-12-22 Jason Merrill <jason@redhat.com>
650
651 PR c++/67343
652 * cp-demangle.h (struct d_info): Add unresolved_name_state.
653 * cp-demangle.c (d_prefix): Add subst parm.
654 (d_nested_name): Pass it.
655 (d_unresolved_name): Split out from...
656 (d_expression_1): ...here.
657 (d_demangle_callback): Maybe retry with old sr mangling.
658 * testsuite/demangle-expected: Add test.
659
660 2020-12-21 Jason Merrill <jason@redhat.com>
661
662 * cp-demangle.c (d_expression_1): Recognize qualified-id
663 on RHS of dt/pt.
664 * testsuite/demangle-expected: Add test.
665
666 2020-12-21 Jason Merrill <jason@redhat.com>
667
668 * cp-demangle.c (d_unqualified_name): Clear is_expression.
669 * testsuite/demangle-expected: Add tests.
670
671 2020-11-25 Matthew Malcomson <matthew.malcomson@arm.com>
672
673 * configure: Regenerate.
674 * configure.ac: Avoid using sanitizer.
675
676 2020-11-13 Eduard-Mihai Burtescu <eddyb@lyken.rs>
677
678 * rust-demangle.c (struct rust_demangler): Add
679 skipping_printing and bound_lifetime_depth fields.
680 (eat): Add (v0-only).
681 (parse_integer_62): Add (v0-only).
682 (parse_opt_integer_62): Add (v0-only).
683 (parse_disambiguator): Add (v0-only).
684 (struct rust_mangled_ident): Add punycode{,_len} fields.
685 (parse_ident): Support v0 identifiers.
686 (print_str): Respect skipping_printing.
687 (print_uint64): Add (v0-only).
688 (print_uint64_hex): Add (v0-only).
689 (print_ident): Respect skipping_printing,
690 Support v0 identifiers.
691 (print_lifetime_from_index): Add (v0-only).
692 (demangle_binder): Add (v0-only).
693 (demangle_path): Add (v0-only).
694 (demangle_generic_arg): Add (v0-only).
695 (demangle_type): Add (v0-only).
696 (demangle_path_maybe_open_generics): Add (v0-only).
697 (demangle_dyn_trait): Add (v0-only).
698 (demangle_const): Add (v0-only).
699 (demangle_const_uint): Add (v0-only).
700 (basic_type): Add (v0-only).
701 (rust_demangle_callback): Support v0 symbols.
702 * testsuite/rust-demangle-expected: Add v0 testcases.
703
704 2020-11-13 Seija Kijin <doremylover456@gmail.com>
705
706 * strstr.c (strstr): Make implementation ANSI/POSIX compliant.
707
708 2020-11-11 Patrick Palka <ppalka@redhat.com>
709
710 PR c++/88115
711 * cp-demangle.c (d_print_comp_inner)
712 <case DEMANGLE_COMPONENT_EXTENDED_OPERATOR>: Don't print the
713 "operator " prefix for __alignof__.
714 <case DEMANGLE_COMPONENT_UNARY>: Always print parens around the
715 operand of __alignof__.
716 * testsuite/demangle-expected: Test demangling for __alignof__.
717
718 2020-11-09 Christophe Lyon <christophe.lyon@linaro.org>
719
720 * pex-win32.c (pex_win32_exec_child): Initialize orig_err.
721
722 2020-10-06 Martin Liska <mliska@suse.cz>
723
724 PR lto/97290
725 * simple-object-elf.c (simple_object_elf_copy_lto_debug_sections):
726 Use sh_link of a .symtab_shndx section.
727
728 2021-01-05 Alan Modra <amodra@gmail.com>
729
730 * config.guess: Import from upstream.
731 * config.sub: Likewise.
732
733 2020-12-16 Martin Liska <mliska@suse.cz>
734 Tom de Vries <tdevries@suse.de>
735
736 * gdb/debuginfod-support.c (struct user_data): Remove has_printed
737 field. Add meter field.
738 (progressfn): Print progress using meter.
739
740 2020-12-02 Enze Li <lienze2010@hotmail.com>
741
742 * .gitignore: Add gnu global outputs.
743
744 2020-12-02 Simon Marchi <simon.marchi@polymtl.ca>
745
746 * .gitignore: Sync with gcc.
747
748 2020-10-26 Andreas Rammhold <andreas@rammhold.de>
749
750 * src-release.sh: Use sha256sum instead of md5sum.
751
752 2020-10-14 Andrew Burgess <andrew.burgess@embecosm.com>
753
754 * Makefile.in: Rebuild.
755 * Makefile.def: Make distclean-gnulib depend on distclean-gdb and
756 distclean-gdbserver.
757
758 2020-07-24 Aaron Merey <amerey@redhat.com>
759
760 * configure: Rebuild.
761 * configure.ac: Remove AC_DEBUGINFOD.
762
763 2020-07-04 Nick Clifton <nickc@redhat.com>
764
765 Binutils 2.35 branch created.
766
767 2020-04-21 Stephen Casner <casner@acm.org>
768
769 PR 25830
770 * configure.ac (noconfigdirs): Exclude gdb & gprof for pdp11.
771 * configure: Rebuild.
772
773 2020-03-12 Tom Tromey <tom@tromey.com>
774
775 * Makefile.in: Rebuild.
776 * Makefile.def (gdbserver): Depend on gdbsupport.
777
778 2020-03-12 Tom Tromey <tom@tromey.com>
779
780 * Makefile.in: Rebuild.
781 * Makefile.def (gdbsupport): Don't depend on bfd.
782
783 2020-03-12 Tom Tromey <tom@tromey.com>
784
785 * Makefile.in: Rebuild.
786 * Makefile.def (gdbsupport): Depend on intl.
787
788 2020-02-17 Tom Tromey <tom@tromey.com>
789
790 * configure: Rebuild.
791 * configure.ac (configdirs): Add gnulib and gdbsupport when building
792 gdbserver.
793
794 2020-02-14 Tom Tromey <tom@tromey.com>
795
796 * Makefile.in: Rebuild.
797 * Makefile.def: Make gdbserver require gnulib and libiberty.
798
799 2020-02-07 Tom Tromey <tom@tromey.com>
800 Pedro Alves <palves@redhat.com>
801
802 * src-release.sh (GDB_SUPPORT_DIRS): Add gdbserver.
803 * gdbserver: New directory, moved from gdb/gdbserver.
804 * configure.ac (host_tools): Add gdbserver.
805 Only build gdbserver on certain systems.
806 * Makefile.in, configure: Rebuild.
807 * Makefile.def (host_modules, dependencies): Add gdbserver.
808 * MAINTAINERS: Add gdbserver.
809
810 2020-01-28 Sergio Durigan Junior <sergiodj@redhat.com>
811
812 * src-release.sh (getver): Look for gdbsupport's
813 create-version.sh script at the current directory if tool is
814 "gdb".
815
816 2020-01-19 Simon Marchi <simon.marchi@polymtl.ca>
817
818 * remote-sim.c (gdbsim_target::wait): Return
819 sim_data->remote_sim_ptid instead of inferior_ptid.
820
821 2020-01-18 Nick Clifton <nickc@redhat.com>
822
823 Binutils 2.34 branch created.
824
825 2020-01-18 Nick Clifton <nickc@redhat.com>
826
827 Synchronize top level configure files with master version:
828
829 2020-01-01 Ben Elliston <bje@gnu.org>
830
831 * config.guess: Update copyright years.
832 * config.sub: Likewise.
833
834 2019-12-21 Ben Elliston <bje@gnu.org>
835
836 * config.guess (set_cc_for_build): Prevent multiple calls by
837 checking if $tmp is already set. We can't check CC_FOR_BUILD as
838 the user may set it externally. Thanks to Torbjörn Granlund for
839 the bug report.
840
841 2019-12-21 Torbjörn Granlund <tg@gmplib.org>
842
843 * config.guess (alpha:Linux:*:*): Guard against missing
844 /proc/cpuinfo by redirecting standard error to /dev/null.
845
846 2019-09-12 Daniel Bittman <danielbittman1@gmail.com>
847
848 * config.guess (*:Twizzler:*:*): New.
849 * config.sub (-twizzler*): New.
850
851 2019-07-24 Ben Elliston <bje@gnu.org>
852
853 * config.guess (mips:OSF1:*.*): Whitespace cleanup.
854
855 2019-06-30 Ben Elliston <bje@gnu.org>
856
857 * config.sub (case $os): Match nsk* and powerunix. Don't later
858 match nsk* and set os=nsk which removes the OS version number.
859
860 2019-06-30 Ben Elliston <bje@gnu.org>
861
862 * config.sub: Recognise os108*.
863
864 2019-06-26 Ben Elliston <bje@gnu.org>
865
866 * config.sub (hp300): Set $os to hpux.
867
868 2019-06-26 Ben Elliston <bje@gnu.org>
869
870 * config.sub (vsta): Move into alphabetical order.
871
872 2019-06-10 Ben Elliston <bje@gnu.org>
873
874 * config.guess (*:OS108:*:*): Recognise new OS.
875
876 2019-05-28 Ben Elliston <bje@gnu.org>
877
878 * config.guess (*:Darwin:*:*): Run xcode-select to determine if a
879 system compiler is installed. If not, do not run set_cc_for_build,
880 as the default cc will open a dialog box asking to install
881 Xcode. If no C compiler is available, guess based on uname -p and
882 uname -m.
883
884 2019-05-28 Ben Elliston <bje@gnu.org>
885
886 * config.guess (*:Darwin:*:*): Simplify UNAME_PROCESSOR.
887
888 2020-01-17 Simon Marchi <simon.marchi@efficios.com>
889
890 * Makefile.def: Add dependencies of all-gdbsupport on all-bfd.
891 * Makefile.in: Re-generate.
892
893 2020-01-14 Tom Tromey <tom@tromey.com>
894
895 * src-release.sh (GDB_SUPPORT_DIRS): Add gdbsupport.
896 * MAINTAINERS: Add gdbsupport.
897 * configure: Rebuild.
898 * configure.ac (configdirs): Add gdbsupport.
899 * gdbsupport: New directory, move from gdb/gdbsupport.
900 * Makefile.def (host_modules, dependencies): Add gnulib.
901 * Makefile.in: Rebuild.
902
903 2020-01-09 Aaron Merey <amerey@redhat.com>
904
905 * config/debuginfod.m4: New file. Add macro AC_DEBUGINFOD. Adds
906 new configure option --with-debuginfod.
907 * configure: Regenerate.
908 * configure.ac: Call AC_DEBUGINFOD.
909
910 2019-12-26 Christian Biesinger <cbiesinger@google.com>
911
912 * .gitignore: Add perf.data and perf.data.old.
913
914 2019-10-17 Sergio Durigan Junior <sergiodj@redhat.com>
915
916 * src-release.sh (GDB_SUPPORT_DIRS): Add libctf.
917
918 2019-10-17 Alan Modra <amodra@gmail.com>
919
920 PR 29
921 * src-release.sh (getver): Replace "head -1" with "head -n 1".
922
923 2019-07-30 Nick Alcock <nick.alcock@oracle.com>
924
925 * Makefile.def (host_modules): libctf is no longer no_install.
926 * Makefile.in: Regenerated.
927
928 2019-07-13 Nick Alcock <nick.alcock@oracle.com>
929
930 * Makefile.def (dependencies): all-ld depends on all-libctf.
931 * Makefile.in: Regenerated.
932
933 2019-09-09 Phil Blundell <pb@pbcl.net>
934
935 binutils 2.33 branch created
936
937 2019-08-19 Tom Tromey <tom@tromey.com>
938
939 * configure: Rebuild.
940 * configure.ac: Add --with-static-standard-libraries.
941
942 2019-08-09 Nick Clifton <nickc@redhat.com>
943
944 * libiberty: Sync with gcc. Bring in:
945 2019-08-08 Martin Liska <mliska@suse.cz>
946
947 PR bootstrap/91352
948 * lrealpath.c (is_valid_fd): New function.
949
950 2019-07-24 Martin Liska <mliska@suse.cz>
951
952 PR lto/91228
953 * simple-object-elf.c (simple_object_elf_copy_lto_debug_sections):
954 Find first '\0' starting from gnu_lto + 1.
955
956 2019-07-12 Ren Kimura <rkx1209dev@gmail.com>
957
958 * simple-object-elf.c (simple_object_elf_match): Check zero value shstrndx.
959 This fixes a Bug 90924.
960
961 2019-07-22 Martin Liska <mliska@suse.cz>
962
963 * simple-object-elf.c (simple_object_elf_copy_lto_debug_sections):
964 Do not search for gnu_lto_v1, but search for first '\0'.
965
966 2019-07-18 Eduard-Mihai Burtescu <eddyb@lyken.rs>
967
968 * cplus-dem.c: Include rust-demangle.h.
969 * rust-demangle.c: Include rust-demangle.h.
970 * rust-demangle.h: New file.
971
972 2019-05-31 Michael Forney <mforney@mforney.org>
973
974 * cp-demangle.c: Don't define CP_DYNAMIC_ARRAYS if __STDC_NO_VLA__
975 is non-zero.
976
977 2019-04-30 Ben L <bobsayshilol@live.co.uk>
978
979 * d-demangle.c (dlang_parse_assocarray): Correctly handle error result.
980 * testsuite/d-demangle-expected: Add testcase.
981
982 * d-demangle.c (dlang_parse_tuple): Correctly handle error result.
983 * testsuite/d-demangle-expected: Add testcase.
984
985 * d-demangle.c (dlang_parse_structlit): Correctly handle error result.
986 * testsuite/d-demangle-expected: Add testcase.
987
988 * d-demangle.c (dlang_parse_arrayliteral): Correctly handle error result.
989 * testsuite/d-demangle-expected: Add testcase.
990
991 * d-demangle.c (dlang_parse_integer): Fix stack underflow.
992 * testsuite/d-demangle-expected: Add testcase.
993
994 * cp-demangle (d_print_comp_inner): Guard against a NULL 'typed_name'.
995 * testsuite/demangle-expected: Add testcase.
996
997 * cp-demangle.c (d_encoding): Guard against NULL return values from
998 d_right (dc).
999 * testsuite/demangle-expected: Add testcase.
1000
1001 2019-04-29 Ben L <bobsayshilol@live.co.uk>
1002
1003 * cp-demangle.c (d_expression_1): Don't peek ahead unless the current
1004 char is valid.
1005 * testsuite/demangle-expected: Add testcase.
1006
1007 2019-04-10 Nick Clifton <nickc@redhat.com>
1008
1009 PR 89394
1010 * cp-demangle.c (cplus_demangle_fill_name): Reject negative
1011 lengths.
1012 (d_count_templates_scopes): Replace num_templates and num_scopes
1013 parameters with a struct d_print_info pointer parameter. Adjust
1014 body of the function accordingly. Add recursion counter and check
1015 that the recursion limit is not reached.
1016 (d_print_init): Pass dpi parameter to d_count_templates_scopes.
1017 Reset recursion counter afterwards, unless the recursion limit was
1018 reached.
1019
1020 2019-07-13 Joel Brobecker <brobecker@adacore.com>
1021
1022 * src-release (getver): If $tool/gdbsupport/create-version.sh
1023 exists, use that to determine the version number.
1024
1025 2019-06-21 Andreas Schwab <schwab@linux-m68k.org>
1026
1027 * src-release.sh (GDB_SUPPORT_DIRS): Add gnulib.
1028
1029 2019-06-14 Tom Tromey <tom@tromey.com>
1030
1031 * MAINTAINERS: Add gnulib.
1032 * gnulib: New directory, move from gdb/gnulib.
1033 * configure.ac (host_libs): Add gnulib.
1034 * configure: Rebuild.
1035 * Makefile.def (host_modules, dependencies): Add gnulib.
1036 * Makefile.in: Rebuild.
1037
1038 2019-06-03 Nick Clifton <nickc@redhat.com>
1039
1040 Revert:
1041 2019-05-29 Nick Clifton <nickc@redhat.com>
1042
1043 * configure.ac (noconfigdirs): Add libctf if the target does not use
1044 the ELF file format.
1045 * configure: Regenerate.
1046
1047 2019-05-29 Nick Clifton <nickc@redhat.com>
1048
1049 * src-release.sh (do_proto_toplev): Add libctf to list of
1050 directories that can be disabled.
1051
1052 2019-05-29 Nick Clifton <nickc@redhat.com>
1053
1054 * configure.ac (noconfigdirs): Add libctf if the target does not use
1055 the ELF file format.
1056 * configure: Regenerate.
1057
1058 2019-05-28 Nick Alcock <nick.alcock@oracle.com>
1059
1060 * Makefile.def (dependencies): configure-libctf depends on all-bfd
1061 and all its deps.
1062 * Makefile.in: Regenerated.
1063
1064 2019-05-28 Nick Alcock <nick.alcock@oracle.com>
1065
1066 * MAINTAINERS: Add libctf.
1067
1068 2019-05-28 Nick Alcock <nick.alcock@oracle.com>
1069
1070 * Makefile.def (host_modules): Add libctf.
1071 * Makefile.def (dependencies): Likewise.
1072 libctf depends on zlib, libiberty, and bfd.
1073 * Makefile.in: Regenerated.
1074 * configure.ac (host_libs): Add libctf.
1075 * configure: Regenerated.
1076
1077 2019-05-23 Jose E. Marchesi <jose.marchesi@oracle.com>
1078
1079 * config.guess: Synchronize with config project master sources.
1080 * config.sub: Likewise.
1081 * readline/support/config.guess: Likewise.
1082 * readline/support/config.sub: Likewise.
1083
1084 2019-04-10 Nick Clifton <nickc@redhat.com>
1085
1086 * libiberty: Sync with gcc. Bring in:
1087 2019-04-10 Nick Clifton <nickc@redhat.com>
1088
1089 PR 89394
1090 * cp-demangle.c (cplus_demangle_fill_name): Reject negative
1091 lengths.
1092 (d_count_templates_scopes): Replace num_templates and num_scopes
1093 parameters with a struct d_print_info pointer parameter. Adjust
1094 body of the function accordingly. Add recursion counter and check
1095 that the recursion limit is not reached.
1096 (d_print_init): Pass dpi parameter to d_count_templates_scopes.
1097 Reset recursion counter afterwards, unless the recursion limit was
1098 reached.
1099
1100 2018-06-24 Nick Clifton <nickc@redhat.com>
1101
1102 2.32 branch created.
1103
1104 2019-01-14 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
1105
1106 Merge from GCC:
1107 PR target/88535
1108 * config.guess: Import upstream version 2019-01-03.
1109 * config.sub: Import upstream version 2019-01-01.
1110
1111 2019-01-10 Nick Clifton <nickc@redhat.com>
1112
1113 * libiberty: Sync with gcc. Bring in:
1114 2019-01-09 Sandra Loosemore <sandra@codesourcery.com>
1115
1116 PR other/16615
1117
1118 * cp-demangle.c: Mechanically replace "can not" with "cannot".
1119 * floatformat.c: Likewise.
1120 * strerror.c: Likewise.
1121
1122 2018-12-22 Jason Merrill <jason@redhat.com>
1123
1124 Remove support for demangling GCC 2.x era mangling schemes.
1125 * cplus-dem.c: Remove cplus_mangle_opname, cplus_demangle_opname,
1126 internal_cplus_demangle, and all subroutines.
1127 (libiberty_demanglers): Remove entries for ancient GNU (pre-3.0),
1128 Lucid, ARM, HP, and EDG demangling styles.
1129 (cplus_demangle): Remove 'work' variable. Don't call
1130 internal_cplus_demangle.
1131
1132 2019-01-03 Дилян Палаузов <dilyan.palauzov@aegee.org>
1133
1134 * configure.ac: Don't configure readline if --with-system-readline is
1135 used.
1136 * configure: Re-generate.
1137
1138 2018-10-31 Joseph Myers <joseph@codesourcery.com>
1139
1140 Merge from GCC:
1141 PR bootstrap/82856
1142 * multilib.am: New file. From automake.
1143
1144 2018-09-12 Sergio Durigan Junior <sergiodj@redhat.com>
1145
1146 * src-release.sh (GDB_SUPPORT_DIRS): Add "contrib".
1147
1148 2018-07-16 Nick Clifton <nickc@redhat.com>
1149
1150 * src-release.sh (DEVO_SUPPORT): Add test-driver and ar-lib.
1151
1152 2018-07-06 Sebastian Huber <sebastian.huber@embedded-brains.de>
1153
1154 * config.sub: Sync with upstream version 2018-07-03.
1155
1156 2018-07-05 Sebastian Huber <sebastian.huber@embedded-brains.de>
1157
1158 * config.guess: Sync with upstream version 2018-06-26.
1159 * config.sub: Sync with upstream version 2018-07-02.
1160
1161 2018-06-29 Alexandre Oliva <oliva@adacore.com>
1162
1163 * configure.ac: Introduce support for @unless/@endunless.
1164 * Makefile.tpl (dep-kind): Rewrite with cond; return
1165 postbootstrap in some cases.
1166 (make-postboot-dep, postboot-targets): New.
1167 (dependencies): Do not output postbootstrap dependencies at
1168 first. Output non-target ones changed for configure to depend
1169 on stage_last @if gcc-bootstrap, and the original deps @unless
1170 gcc-bootstrap.
1171 * configure.in, Makefile.in: Rebuilt.
1172
1173 2018-06-24 Nick Clifton <nickc@redhat.com>
1174
1175 * configure: Regenerate.
1176
1177 2018-06-19 Simon Marchi <simon.marchi@ericsson.com>
1178
1179 * libtool.m4: Use AC_LANG_SOURCE.
1180 * configure.ac: Remove AC_PREREQ, use AC_LANG_SOURCE.
1181 * README-maintainer-mode: Update version requirements.
1182 * ar-lib: New file.
1183 * test-driver: New file.
1184 * configure: Re-generate.
1185
1186 2018-06-18 Eric Botcazou <ebotcazou@adacore.com>
1187
1188 * Makefile.def (fortran): Add check-target-libgomp-fortran.
1189 * Makefile.tpl (check-target-libgomp-fortran): New phony target.
1190 * Makefile.in: Regenerate.
1191
1192 * configure: Regenerate.
1193
1194 2018-06-18 Simon Marchi <simon.marchi@ericsson.com>
1195
1196 * configure.ac: Sync with GCC, remove MPX-related things.
1197
1198 2018-05-01 Nick Clifton <nickc@redhat.com>
1199
1200 * config.guess: Synchronize with config project master sources.
1201 * config.sub: Likewise.
1202
1203 2018-05-01 Francois H. Theron <francois.theron@netronome.com>
1204
1205 * configure.ac: Added "nfp" target.
1206 * configure: Regenerate.
1207
1208 2018-02-13 Maciej W. Rozycki <macro@mips.com>
1209
1210 * configure.ac <wasm32-*-*> (noconfigdirs): Add `ld'.
1211 * configure: Regenerate.
1212
1213 2018-01-30 Nick Clifton <nickc@redhat.com>
1214
1215 * src-release.sh (do_proto_toplev): Add patterns for more junk files
1216 to delete before creating the tarball.
1217
1218 2018-01-29 Nick Clifton <nickc@redhat.com>
1219
1220 * src-release.sh (do_proto_toplev): Strip patch remnant files from
1221 the sources before creating the tarball.
1222
1223 2018-01-13 Nick Clifton <nickc@redhat.com>
1224
1225 * src-release.sh: Update copyright notice. Change reference to devo
1226 to be a reference to root.
1227
1228 2018-01-10 Nick Clifton <nickc@redhat.com>
1229
1230 * config-ml.in: Sync with gcc sources.
1231 * config.guess: Likewise.
1232 * config.sub: Likewise.
1233 * configure.ac: Likewise.
1234 * configure: Regenerate.
1235
1236 2017-12-14 Nick Clifton <nickc@redhat.com>
1237
1238 * COPYING.LIBGLOSS: Update address of FSF in copyright notice.
1239
1240 2017-12-12 Stafford Horne <shorne@gmail.com>
1241
1242 * configure.ac: Remove logic adding gdb to noconfigsdirs for or1k.
1243 * configure: Regenerate.
1244
1245 2017-09-15 Nick Clifton <nickc@redhat.com>
1246
1247 * src-release.sh (LZIPPROG): New define. Provides the name of the
1248 lzip program.
1249 (do_lz): New function. Compresses a tarball using the lzip
1250 program.
1251 (do_compress): Add support for lzip compression.
1252 (usage): Mention -l option.
1253 (build_release): Support -l option to invoke lzip compression.
1254
1255 2017-09-15 Alan Modra <amodra@gmail.com>
1256
1257 * src-release.sh (do_proto_toplev): Revert last patch. Enable or
1258 disable binutils, gas, gdb, gold, gprof, ld, libdecnumber, readline,
1259 and sim depending on $tool and $support_files. Echo configure line.
1260
1261 2017-09-14 Matt Rice <ratmice@gmail.com>
1262
1263 * src-release.sh (do_proto_toplev): Enable gold during release process.
1264
1265 2017-04-13 Andrew Jenner <andrew@codesourcery.com>
1266
1267 * config.sub: Sync with master version in config project.
1268
1269 2017-04-03 Andrew Jenner <andrew@codesourcery.com>
1270
1271 * config.sub: Handle ia16 in $basic_machine.
1272
1273 bfd/
1274 * config.bfd: Handle ia16.
1275
1276 gas/
1277 * configure.tgt: Handle ia16.
1278
1279 ld/
1280 * configure.tgt: Handle ia16.
1281
1282 2017-03-22 Nick Clifton <nickc@redhat.com>
1283
1284 * config.sub: Sync with master version in config project.
1285 * config.guess: Likewise.
1286
1287 2017-01-23 Nick Clifton <nickc@redhat.com>
1288
1289 * configure.ac: Update year in copyright notice.
1290 Sync from FSF GCC mainline, bringing in the following patches.
1291 * Makefile.def: Likewise.
1292 * Makefile.tpl: Likewise.
1293 * configure: Regenerate.
1294 * Makefile.in: Regenerate.
1295
1296 2016-12-21 Jakub Jelinek <jakub@redhat.com>
1297
1298 * configure.ac: Don't bootstrap libmpx unless --with-build-config
1299 includes bootstrap-mpx.
1300
1301 2016-12-01 Matthias Klose <doko@ubuntu.com>
1302
1303 * configure.ac: Don't use pkg-config to check for bdw-gc.
1304
1305 2016-11-30 Matthias Klose <doko@ubuntu.com>
1306
1307 * Makefile.def: Remove reference to boehm-gc target module.
1308 * configure.ac: Include pkg.m4, check for --with-target-bdw-gc
1309 options and for the bdw-gc pkg-config module.
1310
1311 2016-11-15 Matthias Klose <doko@ubuntu.com>
1312
1313 * config-ml.in: Remove references to GCJ.
1314 * configure.ac: Likewise.
1315
1316 2016-09-30 Jakub Jelinek <jakub@redhat.com>
1317
1318 * configure.ac: Add target-libffi to target_libraries.
1319 Readd libgcj target disablings, modified to only target-libffi.
1320 Readd target addition of go to unsupported languages.
1321
1322 2016-09-30 Andrew Haley <aph@redhat.com>
1323
1324 * Makefile.def: Remove libjava.
1325 * Makefile.tpl: Likewise.
1326 * configure.ac: Likewise.
1327
1328 2016-09-26 Anton Kolesov <Anton.Kolesov@synopsys.com>
1329
1330 * configure.ac: Disable "sim" directory for arc*-*-*.
1331
1332 2016-09-12 Maciej W. Rozycki <macro@imgtec.com>
1333
1334 * configure.ac: Check for the minimum in-tree MPFR version
1335 handled.
1336
1337 2016-12-31 Alan Modra <amodra@gmail.com>
1338
1339 * config.sub: Import from upstream.
1340
1341 2016-12-08 Alan Modra <amodra@gmail.com>
1342
1343 * configure: Regenerate.
1344
1345 2016-12-02 Josh Conner <joshconner@google.com>
1346
1347 * configure.ac: Add fuchsia to targets that use ELF.
1348 * configure: Regenerated.
1349
1350 2016-11-07 Doug Evans <dje@google.com>
1351
1352 * config.sub: Sync with upstream version 2016-11-03.
1353 git://git.sv.gnu.org/config.git
1354 * config.guess: Sync with upstream version 2016-10-02.
1355
1356 2016-09-27 Simon Marchi <simon.marchi@polymtl.ca>
1357
1358 * .gitignore: Add archives and make stamps.
1359
1360 2016-07-20 Yan-Ting Lin <currygt52@gmail.com>
1361
1362 * configure.ac (nds32*-*-*): Remove entry to enable gdb.
1363 * configure: Regenerated.
1364
1365 2016-06-28 Walter Lee <walt@tilera.com>
1366
1367 * configure.ac (tilepro-*-*): Add gdb to noconfigdirs.
1368 * configure: Regenerate.
1369
1370 2016-05-28 Alan Modra <amodra@gmail.com>
1371
1372 * Makefile.tpl (configure): Depend on m4 files included.
1373 * Makefile.in: Regenerate.
1374
1375 2016-05-27 Nick Clifton <nickc@redhat.com>
1376
1377 * config.guess (Alpha OSF1): Fix typo introduced during the most
1378 recent synchronization update.
1379
1380 2016-05-23 Nick Clifton <nickc@redhat.com>
1381
1382 * Import these patches from the gcc mainline:
1383
1384 2016-05-16 Jakub Sejdak <jakub.sejdak@phoesys.com>
1385
1386 * config.guess: Import version 2016-04-02 (newest).
1387 * config.sub: Import version 2016-05-10 (newest).
1388
1389 2016-04-19 Nick Clifton <nickc@redhat.com>
1390
1391 * Import this patch from the GCC mainline:
1392
1393 2016-04-13 Segher Boessenkool <segher@kernel.crashing.org>
1394
1395 PR bootstrap/70173
1396 * Makefile.tpl (local-distclean): Delete the libcc1, gnattools,
1397 and gotools directories. Delete the stage_final file.
1398 * Makefile.in: Regenerate.
1399
1400 2016-03-17 Cary Coutant <ccoutant@gmail.com>
1401
1402 * configure.ac: Add mips and s390 to the gold target check.
1403 * configure: Regenerate.
1404
1405 2016-02-10 Nick Clifton <nickc@redhat.com>
1406
1407 Import these patches from the GCC mainline:
1408
1409 2016-01-12 Andris Pavenis <andris.pavenis@iki.fi>
1410
1411 * configure.ac: Enable LTO for DJGPP
1412 * configure: Regenerate
1413
1414 2016-01-24 Mikhail Maltsev <maltsevm@gmail.com>
1415
1416 PR bootstrap/69329
1417 * Makefile.tpl (BASE_FLAGS_TO_PASS): Add LSAN_OPTIONS.
1418 * Makefile.in: Regenerate.
1419
1420 2016-01-25 Aditya Kumar <aditya.k7@samsung.com>
1421 Sebastian Pop <s.pop@samsung.com>
1422
1423 * Makefile.in: Regenerate.
1424 * Makefile.tpl: Export ISLVER.
1425 * configure: Regenerate.
1426 * config/isl.m4: Detect isl-0.15.
1427
1428 2016-01-29 Sebastian Pop <s.pop@samsung.com>
1429
1430 * config/isl.m4: Add comments about isl-0.16.
1431 * configure: Regenerate.
1432
1433 2016-01-12 H.J. Lu <hongjiu.lu@intel.com>
1434
1435 Sync with GCC
1436 2015-11-26 David Edelsohn <dje.gcc@gmail.com>
1437
1438 * m4/libtool.m4 (export_symbols_cmds) [AIX]: Add global TLS "L"
1439 symbols.
1440
1441 2016-01-12 Bernd Edlinger <bernd.edlinger@hotmail.de>
1442
1443 PR bootstrap/69134
1444 * Makefile.def (mpfr): Disable assembler.
1445 * Makefile.in: Regenerate.
1446
1447 2016-01-11 Nick Clifton <nickc@redhat.com>
1448
1449 Import the following changes from the GCC mainline:
1450
1451 2015-11-13 Tsvetkova Alexandra <aleksandra.tsvetkova@intel.com>
1452
1453 * configure.ac: Enable libmpx by default.
1454 * configure: Regenerated.
1455
1456 2015-11-19 Martin Liska <mliska@suse.cz>
1457
1458 * .gitignore: Add .clang-format to ignored files.
1459 * Makefile.tpl: Add clang-format.
1460 * Makefile.in: Regenerate.
1461
1462 2015-12-01 Andreas Tobler <andreast@gcc.gnu.org>
1463
1464 PR libffi/65726
1465 * Makefile.def (lang_env_dependencies): Make libffi depend
1466 on cxx.
1467 * Makefile.in: Regenerate.
1468
1469 2015-12-02 Ian Lance Taylor <iant@google.com>
1470
1471 PR go/66147
1472 * Makefile.tpl (HOST_EXPORTS): Add XGCC_FLAGS_FOR_TARGET.
1473 * Makefile.in: Regenerate.
1474
1475 2015-12-17 Nathan Sidwell <nathan@acm.org>
1476
1477 * config/isl.m4 (ISL_CHECK_VERSION): Add gmp libs.
1478 * configure: Regenerate.
1479
1480 2015-12-17 Sebastian Pop <s.pop@samsung.com>
1481
1482 * Makefile.in: Replace ISL with isl.
1483 * Makefile.tpl: Same.
1484 * config/isl.m4: Same.
1485 * configure.ac: Same.
1486 * contrib/download_prerequisites: Same.
1487 * configure: Regenerate.
1488
1489 2016-01-01 Ben Elliston <bje@gnu.org>
1490
1491 * config.guess: Import version 2016-01-01.
1492 * config.sub: Likewise.
1493
1494 2015-11-20 Tristan Gingold <gingold@adacore.com>
1495
1496 * configure.ac: Add aarch64-*-darwin* and arm-*-darwin*.
1497 * configure: Regenerate.
1498
1499 2015-10-21 Nick Clifton <nickc@redhat.com>
1500
1501 PR gas/19109
1502 * configure.ac: Note the 'none' is an acceptable argument to
1503 --enable-compressed-debug-sections.
1504 * configure: Regenerate.
1505
1506 2015-10-20 H.J. Lu <hongjiu.lu@intel.com>
1507
1508 PR gas/19109
1509 * configure.ac: Add
1510 --enable-compressed-debug-sections={all,gas,gold,ld}.
1511 * configure: Regenerated.
1512
1513 2015-09-30 Nick Clifton <nickc@redhat.com>
1514
1515 Import the following patches from the GCC mainline:
1516
1517 2015-08-23 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
1518
1519 PR libfortran/54572
1520 * Makefile.def: Make libgfortran depend on libbacktrace.
1521 * Makefile.in: Regenerate.
1522
1523 2015-08-12 Tom de Vries <tom@codesourcery.com>
1524
1525 PR other/67092
1526 PR other/67098
1527 * configure.ac: Remove --with_host_libstdcxx support.
1528 * configure: Regenerate.
1529
1530 2015-08-10 Thomas Schwinge <thomas@codesourcery.com>
1531 Jakub Jelinek <jakub@redhat.com>
1532
1533 * configure.ac (noconfigdirs): Don't add "target-libgomp" for target
1534 nvptx*-*-*.
1535 * configure: Regenerate.
1536
1537 2015-08-07 H.J. Lu <hongjiu.lu@intel.com>
1538
1539 Sync with GCC
1540 2015-07-28 Ben Elliston <bje@gnu.org>
1541
1542 * config.sub, config.guess: Import from upstream.
1543
1544 2015-08-06 Yaakov Selkowitz <yselkowi@redhat.com>
1545
1546 * Makefile.def (libiconv): Define bootstrap=true.
1547 Mark pdf/html/info as missing.
1548 (configure-gcc): Depend on all-libiconv.
1549 (all-gcc): Ditto.
1550 (configure-libcpp): Ditto.
1551 (all-libcpp): Ditto.
1552 (configure-intl): Ditto.
1553 (all-intl): Ditto.
1554 * Makefile.in: Regenerate.
1555
1556 2015-07-27 H.J. Lu <hongjiu.lu@intel.com>
1557
1558 Sync with GCC
1559 2015-07-24 Michael Darling <darlingm@gmail.com>
1560
1561 PR other/66259
1562 * config-ml.in: Reflects renaming of configure.in to configure.ac
1563 * configure: Likewise
1564 * configure.ac: Likewise
1565
1566 2015-07-14 H.J. Lu <hongjiu.lu@intel.com>
1567
1568 * Makefile.in: Regenerated.
1569
1570 Sync with GCC
1571 2015-05-21 Jason Merrill <jason@redhat.com>
1572
1573 * Makefile.tpl: Update comments.
1574
1575 2015-04-22 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
1576
1577 * Makefile.tpl: Remove surplus whitespace throughout.
1578
1579 2015-03-25 Martin Liska <mliska@suse.cz>
1580 Yury Gribov <y.gribov@samsung.com>
1581
1582 * Makefile.tpl: Fix ln source location for vimrc file.
1583
1584 2015-07-14 H.J. Lu <hongjiu.lu@intel.com>
1585
1586 Sync with GCC
1587 2015-05-16 James Bowman <james.bowman@ftdichip.com>
1588
1589 * configure.ac: FT32 target added.
1590 * configure: Regenerate.
1591
1592 2015-07-14 H.J. Lu <hongjiu.lu@intel.com>
1593
1594 Sync with GCC
1595 2015-06-02 Jason Merrill <jason@redhat.com>
1596
1597 PR bootstrap/66319
1598 * configure.ac: Use -std=gnu++98.
1599
1600 2015-05-28 Mike Frysinger <vapier@gentoo.org>
1601
1602 * configure.ac (--vtable-verify): Use AS_HELP_STRING for help.
1603 * configure: Regenerate.
1604
1605 2015-05-11 Paulo Matos <paulo@matos-sorge.com>
1606
1607 * configure.ac: Fix typo.
1608 * configure: Regenerate.
1609
1610 2015-05-03 Matthias Klose <doko@ubuntu.com>
1611
1612 * configure.ac: Match $host configured with triplets.
1613 * configure: Regenerate.
1614
1615 2015-04-17 Jakub Jelinek <jakub@redhat.com>
1616
1617 PR bootstrap/62077
1618 * configure.ac (--enable-stage1-checking): Default to
1619 release,misc,gimple,rtlflag,tree,types if --disable-checking
1620 or --enable-checking is not specified and DEV-PHASE is not
1621 experimental.
1622 * configure: Regenerated.
1623
1624 2015-03-27 Uros Bizjak <ubizjak@gmail.com>
1625
1626 Install back PR target/47230 fix (Revert the revert).
1627
1628 2015-06-30 H.J. Lu <hongjiu.lu@intel.com>
1629
1630 * configure.ac (ospace_frag): Enable for i?86*-*-elfiamcu
1631 target.
1632 * configure: Regenerate.
1633
1634 2015-05-13 John David Anglin <dave.anglin@bell.net>
1635
1636 * configure.ac: Disable configuration of GDB for HPUX targets.
1637 * configure: Regenerate.
1638
1639 2015-05-01 H.J. Lu <hongjiu.lu@intel.com>
1640
1641 PR ld/18355
1642 * Makefile.def: Add extra_configure_flags to host zlib.
1643 * configure.ac (extra_host_zlib_configure_flags): New. Set
1644 to --enable-host-shared When bfd is to be built as shared
1645 library. AC_SUBST.
1646 * Makefile.in: Regenerated.
1647
1648 2015-04-15 Mike Frysinger <vapier@gentoo.org>
1649 Hans-Peter Nilsson <hp@axis.com>
1650
1651 Adjust src-release.sh for sim using the gdb create-version.sh.
1652 * src-release.sh (tar_compress): If there's a fifth parameter,
1653 use that in the getver call instead of $tool.
1654 (sim_release): Pass gdb as fifth parameter to tar_compress.
1655 (SIM_SUPPORT_DIRS): Add gdb/common/create-version.sh.
1656
1657 2015-04-14 Max Ostapenko <m.ostapenko@partner.samsung.com>
1658
1659 * Makefile.tpl (EXTRA_HOST_EXPORTS): New variables.
1660 (EXTRA_BOOTSTRAP_FLAGS): Likewise.
1661 (check-[+module+]): Add EXTRA_HOST_EXPORTS and EXTRA_BOOTSTRAP_FLAGS.
1662 * Makefile.in: Regenerate.
1663
1664 2015-04-01 H.J. Lu <hongjiu.lu@intel.com>
1665
1666 * configure.ac: Add --with-system-zlib.
1667 * configure: Regenerated.
1668
1669 2015-03-31 H.J. Lu <hongjiu.lu@intel.com>
1670
1671 * src-release.sh: Don't configure with --with-target-subdir=.
1672 --disable-multilib.
1673
1674 2015-03-31 H.J. Lu <hongjiu.lu@intel.com>
1675
1676 * src-release.sh (DEVO_SUPPORT): Replace src-release with
1677 src-release.sh.
1678
1679 2015-03-30 Ed Schouten <ed@nuxi.nl>
1680
1681 * config.sub: Update from upstream, to 2015-03-04 version.
1682 * config.guess: Likewise.
1683
1684 2015-03-30 H.J. Lu <hongjiu.lu@intel.com>
1685
1686 * Makefile.def (dependencies): Add all-zlib to all-bfd.
1687 * Makefile.in: Regenerated.
1688
1689 2015-03-28 H.J. Lu <hongjiu.lu@intel.com>
1690
1691 * src-release.sh (do_proto_toplev): Configure with --target
1692 --with-target-subdir and --disable-multilib.
1693 (BINUTILS_SUPPORT_DIRS): Add zlib.
1694 (GAS_SUPPORT_DIRS): Likewise.
1695 (GDB_SUPPORT_DIRS): Likewise.
1696 (SIM_SUPPORT_DIRS): Likewise.
1697
1698 2015-03-17 H.J. Lu <hongjiu.lu@intel.com>
1699
1700 * configure.ac (target_configdirs): Exclude target-zlib if
1701 target-libjava isn't built.
1702 * configure: Regenerated.
1703
1704 2015-03-17 H.J. Lu <hongjiu.lu@intel.com>
1705
1706 Sync with GCC
1707 2014-06-13 Thomas Schwinge <thomas@codesourcery.com>
1708
1709 * config-ml.in: Robustify ac_configure_args parsing.
1710
1711 2015-03-16 H.J. Lu <hongjiu.lu@intel.com>
1712
1713 * Makefile.def: Updated from GCC trunk.
1714 * Makefile.tpl: Likewise.
1715 * configure.ac: Likewise.
1716 * Makefile.in: Regenerated.
1717 * configure: Likewise.
1718
1719 2015-01-28 James Bowman <james.bowman@ftdichip.com>
1720
1721 * configure.ac: Add FT32 support.
1722 * configure: Regenerate.
1723
1724 2015-01-12 Anthony Green <green@moxielogic.com>
1725
1726 * configure.ac: Don't disable gprof for moxie.
1727 * configure: Rebuild.
1728
1729 2015-01-03 Andrew Pinski <apinski@cavium.com>
1730
1731 * Makefile.def (flags_to_pass): Pass OBJCOPY_FOR_TARGET also.
1732 * Makefile.tpl (HOST_EXPORTS): Add OBJCOPY_FOR_TARGET.
1733 (BASE_TARGET_EXPORTS): Add OBJCOPY.
1734 (OBJCOPY_FOR_TARGET): New variable.
1735 (EXTRA_TARGET_FLAGS): Add OBJCOPY.
1736 * Makefile.in: Regenerate.
1737 * configure.ac: Check for already installed target objcopy.
1738 Also GCC_TARGET_TOOL on objcopy.
1739 * configure: Regenerate.
1740
1741 2015-01-02 Hans-Peter Nilsson <hp@bitrange.com>
1742
1743 * config.sub: Update from upstream, to 2015-01-01 version.
1744 * config.guess: Ditto.
1745
1746 2014-12-06 Eric Botcazou <ebotcazou@adacore.com>
1747
1748 * config.sub: Update from upstream config repo.
1749
1750 2014-11-24 H.J. Lu <hongjiu.lu@intel.com>
1751
1752 * libtool.m4: Updated from GCC trunk.
1753
1754 2014-11-16 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1755
1756 * config.guess: Update from upstream config repo.
1757 * config.sub: Ditto.
1758
1759 2014-11-16 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1760
1761 * move-if-change: Update from upstream gnulib.
1762
1763 2014-11-16 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1764
1765 * compile: Sync with upstream Automake.
1766 * depcomp: Ditto.
1767 * install-sh: Ditto.
1768 * missing: Ditto.
1769 * mkinstalldirs: Ditto.
1770 * ylwrap: Ditto.
1771
1772 2014-10-15 Tristan Gingold <gingold@adacore.com>
1773
1774 * src-release.sh (do_proto_toplev): Configure with --target.
1775
1776 2014-10-03 Jing Yu <jingyu@google.com>
1777
1778 * configure.ac: Add aarch64 to list of targets that support gold.
1779 * configure: Regenerate.
1780
1781 2014-09-12 Andrew Bennett <andrew.bennett@imgtec.com>
1782
1783 * configure.ac: Add mips*-img-elf* target triple.
1784 * configure: Regenerate.
1785
1786 2014-09-06 Kuan-Lin Chen <kuanlinchentw@gmail.com>
1787 * configure: Disable gdb for nds32*-*-* until supported.
1788 * configure.ac: Disable gdb for nds32*-*-* until supported.
1789
1790 2014-09-05 Joel Brobecker <brobecker@adacore.com>
1791
1792 * configure: Regenerate.
1793
1794 2014-08-27 Will Newton <will.newton@linaro.org>
1795
1796 * src-release.sh: New file.
1797 * src-release: Remove file.
1798
1799 2014-07-27 Joel Sherrill <joel.sherrill@oarcorp.com>
1800
1801 GDB not supported for or1k*-*-rtems*
1802 * configure.ac (or1k*-*-rtems*): gdb not supported. The ordering
1803 of the stanzas results in this not being caught by or1k*-*-* later.
1804 * configure. Regenerated.
1805
1806 2014-07-25 Samuel Bronson <naesten@gmail.com>
1807
1808 * .gitattributes: New file for use with git-merge-changelog.
1809
1810 2014-07-21 Joel Sherrill <joel.sherrill@oarcorp.com>
1811
1812 Disable gdb for or1k*-*-* until supported
1813 * configure.ac (or1k*-*-*): Disable gdb.
1814 * configure: Regenerated.
1815
1816 2014-05-14 Sandra Loosemore <sandra@codesourcery.com>
1817
1818 * configure.ac (target_makefile_frag): Set for nios2-*-elf*.
1819 * configure: Regenerated.
1820
1821 2014-03-26 Jakub Jelinek <jakub@redhat.com>
1822
1823 PR sanitizer/56781
1824 * Makefile.def: Set bootstrap=true; for host fixincludes.
1825 * configure.ac: Don't bootstrap host fixincludes unless
1826 --with-build-config=bootstrap-{a,ub}san.
1827 * Makefile.in: Regenerated.
1828 * configure: Regenerated.
1829
1830 2014-03-21 Jakub Jelinek <jakub@redhat.com>
1831
1832 * configure.ac: Move BUILD_CONFIG set up earlier. Add
1833 --enable-vtable-verify option parsing. Don't add
1834 target-libsanitizer to bootstrap_target_libs unless
1835 --with-build-config=bootstrap-asan or
1836 --with-build-config=bootstrap-ubsan. Don't add target-libvtv
1837 to bootstrap_target_libs unless --enable-vtable-verify.
1838 * configure: Regenerated.
1839
1840 2014-03-07 Jakub Jelinek <jakub@redhat.com>
1841
1842 PR bootstrap/58572
1843 * Makefile.tpl (POSTSTAGE1_CXX_EXPORT): Use -isystem instead of
1844 -I for libstdc++-v3 includes if $(LEAN).
1845 * Makefile.in: Regenerated.
1846
1847 2014-02-24 Walter Lee <walt@tilera.com>
1848
1849 * configure.ac (tilepro-*-*) Change to tilepro*-*-*.
1850 (tilegx-*-*): Change to tilegx*-*-*.
1851 * configure: Regenerate.
1852
1853 2014-05-01 Richard Sandiford <rdsandiford@googlemail.com>
1854
1855 * config.sub, config.guess: Import from upstream.
1856
1857 2014-04-04 Eric Botcazou <ebotcazou@adacore.com>
1858
1859 PR bootstrap/60620
1860 * Makefile.def (dependencies): Make gnattools depend on libstdc++-v3.
1861 * Makefile.in: Regenerate.
1862
1863 2014-03-28 Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
1864
1865 * Makefile.def (dependencies): Make all-ld depend on all-binutils
1866 for WINDRES_FOR_TARGET in default-manifest.o rule.
1867 * Makefile.in: Regenerate.
1868
1869 2014-02-04 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
1870
1871 PR target/59788
1872 * ltmain.sh (opt_duplicate_compiler_generated_deps): Enable on
1873 *solaris2*.
1874
1875 2013-12-19 Keven Boell <keven.boell@intel.com>
1876
1877 * cp-namespace.c (cp_lookup_nested_symbol): Enable
1878 nested lookups for fortran modules.
1879 * dwarf2read.c (read_module): Add fortran module to
1880 the symbol table.
1881 (add_partial_symbol, add_partial_module): Add fortran
1882 module to the partial symbol table.
1883 (new_symbol_full): Create full symbol for fortran module.
1884 * f-exp.y (yylex): Add new module domain to be parsed.
1885 * symtab.h: New domain for fortran modules.
1886
1887 2013-12-19 Keven Boell <keven.boell@intel.com>
1888
1889 * f-exp.y (yylex): Add domain array to enable lookup
1890 in multiple domains. Loop over lookup domains and try
1891 to find requested symbol. Add STRUCT_DOMAIN to lookup
1892 domains to be able to query for user defined types.
1893
1894 2013-12-13 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
1895
1896 * configure.ac: Add user-friendly check for native x86_64-linux
1897 multilibs.
1898 * configure: Regenerate.
1899
1900 2013-11-23 Alan Modra <amodra@gmail.com>
1901
1902 * config.sub, config.guess: Import from upstream.
1903
1904 2013-11-07 Thomas Schwinge <thomas@codesourcery.com>
1905
1906 * Makefile.in: Regenerate.
1907
1908 * Makefile.tpl: Fix typo.
1909 * Makefile.in: Regenerate partially.
1910
1911 2013-11-04 Balaji V. Iyer <balaji.v.iyer@intel.com>
1912
1913 * configure.ac: Added libcilkrts to noconfig list when C++ is not
1914 supported.
1915 * configure: Regenerated.
1916
1917 2013-10-30 Jason Merrill <jason@redhat.com>
1918
1919 * Makefile.tpl (STAGE1_CONFIGURE_FLAGS): Pass
1920 --disable-build-format-warnings.
1921
1922 2013-10-29 Balaji V. Iyer <balaji.v.iyer@intel.com>
1923
1924 * Makefile.def: Add libcilkrts to target_modules. Make libcilkrts
1925 depend on libstdc++ and libgcc.
1926 * configure: Regenerate.
1927 * configure.ac: Added libcilkrts to target binaries. Also, restrict
1928 libcilkrts for POSIX and i*86, and x86_64 architectures.
1929 * Makefile.in: Added libcilkrts related fields to support building it.
1930
1931 2013-10-26 Jeff Law <law@redhat.com>
1932
1933 * Makefile.def (target_modules): Remove libmudflap
1934 (languages): Remove check-target-libmudflap).
1935 * Makefile.in: Rebuilt.
1936 * Makefile.tpl (check-target-libmudflap-c++): Remove.
1937 * configure.ac (target_libraries): Remove target-libmudflap.
1938 Remove checks which disabled libmudflap on some systems.
1939 * configure: Rebuilt.
1940 * libmudflap: Directory removed.
1941
1942 2013-10-16 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1943
1944 * configure.ac: Update from GCC.
1945 * configure: Regenerate.
1946
1947 2013-10-15 Hans-Peter Nilsson <hp@axis.com>
1948
1949 * src-release (do-proto-toplevel): Support subdir-path-prefixed
1950 files in SUPPORT_FILES.
1951 (SIM_SUPPORT_DIRS): New variable.
1952 (sim.tar.bz2): New rule.
1953
1954 2013-10-08 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1955
1956 * configure.ac: Update from GCC.
1957 * configure: Regenerate.
1958
1959 2013-10-01 Jeff Johnston <jjohnstn@redhat.com>
1960
1961 * COPYING.NEWLIB: Update with new copyright.
1962
1963 2013-09-21 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1964
1965 * configure.ac: Update from GCC.
1966 * configure: Regenerate.
1967
1968 2013-09-20 Alan Modra <amodra@gmail.com>
1969
1970 * libtool.m4 (_LT_ENABLE_LOCK <ld -m flags>): Remove non-canonical
1971 ppc host match. Support little-endian powerpc linux hosts.
1972
1973 2013-08-16 Joel Brobecker <brobecker@adacore.com>
1974
1975 * src-release (VER): When using $(TOOL)/common/create-version.sh,
1976 strip the "-cvs" suffix from the version number if present.
1977
1978 2013-08-12 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1979
1980 * configure.ac: Sync with GCC repo.
1981 * Makefile.def: Ditto.
1982 * configure: Regenerate.
1983 * Makefile.in: Ditto.
1984
1985 2013-07-22 Joel Brobecker <brobecker@adacore.com>
1986
1987 * src-release (VER): Use $(TOOL)/common/create-version.sh
1988 if it exists.
1989
1990 2013-06-22 Richard Sandiford <rdsandiford@googlemail.com>
1991
1992 * configure.ac (mips*-*-bsd*, mips*-*-ultrix*, mips*-*-osf*)
1993 (mips*-*-ecoff*, mips*-*-pe*, mips*-*-irix* [v4 and earlier])
1994 (mips*-*-lnews*, mips*-*-riscos*): Add gas and ld to noconfigdirs.
1995 * configure: Regenerate.
1996
1997 2013-06-01 George Thomas <george.thomas@atmel.com>
1998
1999 * include/opcode/avr.h: Rename AVR_ISA_XCH to AVR_ISA_RMW. Remove
2000 from AVR_ISA_XMEGA and add new AVR_ISA_XMEGAU
2001
2002 2013-05-06 Sandra Loosemore <sandra@codesourcery.com>
2003
2004 * COPYING.NEWLIB: Add Altera Corporation copyright.
2005
2006 2013-04-29 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2007
2008 * config.guess: Update from config repo.
2009 * config.sub: Ditto.
2010
2011 2013-04-22 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2012
2013 * Makefile.def: Sync with GCC.
2014 * Makefile.in: Regenerate.
2015
2016 2013-04-22 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2017
2018 * configure.ac: Sync with GCC.
2019 * configure: Regenerate.
2020
2021 2013-03-22 Mike Frysinger <vapier@gentoo.org>
2022
2023 * src-release (VER): Change bfd/configure.in sed to use the new
2024 `bfd/configure --version` output.
2025
2026 2013-02-15 Yufeng Zhang <yufeng.zhang@arm.com>
2027
2028 * configure.ac: Sync with GCC repo.
2029 * configure: Ditto.
2030
2031 2013-02-05 Ian Lance Taylor <iant@google.com>
2032
2033 PR go/55969
2034 * configure.ac: Disable libgo on some systems where it does not
2035 work.
2036 * configure: Rebuild.
2037
2038 2013-02-05 Alan Modra <amodra@gmail.com>
2039
2040 * configure: Regenerate after syncing config/.
2041
2042 2013-01-15 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2043
2044 * configure.ac: Sync with GCC repo.
2045 * configure: Ditto.
2046 * Makefile.def: Ditto.
2047 * Makefile.in: Ditto.
2048
2049 2013-01-11 Joel Brobecker <brobecker@adacore.com>
2050
2051 Sync with GCC, merge:
2052
2053 2013-01-09 Jason Merrill <jason@redhat.com>
2054
2055 * .gitignore: Import from gdb repository.
2056
2057 2013-01-11 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2058
2059 * config.sub: Update from config repo.
2060
2061 2013-01-11 Eric Botcazou <ebotcazou@adacore.com>
2062
2063 * Makefile.tpl (BOOT_ADAFLAGS): Remove -gnata.
2064 * Makefile.in: Regenerate.
2065
2066 2013-01-09 H.J. Lu <hongjiu.lu@intel.com>
2067
2068 * Makefile.def (configure-gcc): Depend on all-gmp.
2069 (all-gcc): Remove dependency on all-gmp.
2070 * Makefile.in: Regenerated.
2071
2072 2013-01-08 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2073
2074 * config.guess: Update from config repo.
2075 * config.sub: Ditto.
2076
2077 2013-01-07 Jeff Johnston <jjohnstn@redhat.com>
2078
2079 * COPYING.LIBGLOSS: Remove license for mips/lsi33k-stub.h which no longer
2080 exists and replace the new bfin license in its location.
2081
2082 2013-01-07 H.J. Lu <hongjiu.lu@intel.com>
2083
2084 PR gas/14899
2085 * Makefile.def (dependencies): Make all-binutils, all-gprof,
2086 all-ld and all-gold depend on all-gas.
2087 * Makefile.in: Regenerated.
2088
2089 2012-12-29 Ben Elliston <bje@gnu.org>
2090
2091 * config.guess: Update to 2012-12-29 version.
2092 * config.sub: Likewise.
2093
2094 2012-12-20 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2095
2096 * Makefile.def (install-target-libgo): Depend on
2097 install-target-libatomic. Merged from GCC repo.
2098 * Makefile.in: Regenerate.
2099
2100 2012-12-17 Jeff Johnston <jjohnstn@redhat.com>
2101
2102 * COPYING.LIBGLOSS: Add license for bfin libgloss.
2103
2104 2012-12-16 Thomas Schwinge <thomas@codesourcery.com>
2105
2106 * configure.ac (ENABLE_GOLD): Consider *-*-gnu* targets ELF.
2107 * configure: Regenerate.
2108
2109 2012-12-11 H.J. Lu <hongjiu.lu@intel.com>
2110
2111 * Makefile.def (target_modules): Add bootstrap=true and
2112 raw_cxx=true to libsanitizer.
2113 * configure.ac (bootstrap_target_libs): Add libsanitizer.
2114 * Makefile.in: Regenerated.
2115 * configure: Likewise.
2116
2117 2012-12-08 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2118
2119 * config.sub: Merge from config repo.
2120
2121 2012-11-30 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2122
2123 * configure.ac: Merge from GCC.
2124 * Makefile.tpl: Ditto.
2125 * Makefile.in: Ditto.
2126 * configure: Ditto.
2127
2128 2012-11-28 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2129
2130 * configure.ac (noconfigdirs): Merge from GCC.
2131 * configure: Regenerate.
2132
2133 2012-11-19 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2134
2135 * config.sub (arm): Merge from upstream: Handle armv[6-8] targets.
2136
2137 2012-11-14 Roland McGrath <mcgrathr@google.com>
2138
2139 * configure.ac (ENABLE_GOLD): Consider *-*-nacl* targets ELF.
2140 * configure: Regenerate.
2141
2142 2012-11-13 Richard Henderson <rth@redhat.com>
2143
2144 * configure.ac: Move libsanitizer logic to subdirectory.
2145 * configure: Regenerate.
2146
2147 2012-11-13 Dodji Seketeli <dodji@redhat.com>
2148
2149 * configure.ac: Enable libsanitizer just on x86 linux for now.
2150 * configure: Re-generate.
2151
2152 2012-11-13 David Edelsohn <dje.gcc@gmail.com>
2153
2154 * configure.ac: Merge libquadmath sections.
2155 * configure: Regenerate.
2156
2157 2012-11-12 Wei Mi <wmi@google.com>
2158
2159 * configure.ac: Add libsanitizer to target_libraries.
2160 * Makefile.def: Ditto.
2161 * configure: Regenerate.
2162 * Makefile.in: Regenerate.
2163
2164 2012-11-03 H.J. Lu <hongjiu.lu@intel.com>
2165
2166 * configure: Regenerated.
2167
2168 2012-11-03 Robert Mason <rbmj@verizon.net>
2169
2170 * configure.ac: add --disable-libstdcxx configure option
2171 and handle defaulted state only for VxWorks, ARM-wince-pe and AVR.
2172
2173 2012-10-24 Corinna Vinschen <corinna@vinschen.de>
2174
2175 * configure.ac (FLAGS_FOR_TARGET,target=cygwin): Fix for building
2176 against Mingw64 w32api.
2177 * configure: Regenerate.
2178
2179 2012-10-23 Eric Botcazou <ebotcazou@adacore.com>
2180
2181 PR bootstrap/54820
2182 * configure.ac (have_static_libs): Force 'no' for GCC version < 4.5.
2183 * configure: Regenerate.
2184
2185 2012-10-22 Eric Botcazou <ebotcazou@adacore.com>
2186
2187 PR bootstrap/54820
2188 * Makefile.tpl (STAGE1_FLAGS_TO_PASS): New variable.
2189 (all-[+prefix+][+module+]): Pass stage1_args to sub-makes.
2190 (all-stage[+id+]-[+prefix+][+module+]): Likewise, if prev is false.
2191 (clean-stage[+id+]-[+prefix+][+module+]): Likewise, if prev is false.
2192 (host_modules): Set stage1_args to STAGE1_FLAGS_TO_PASS.
2193 * Makefile.in: Regenerate.
2194 * configure.ac (have_static_libs): New variable and associated check.
2195 (stage1-ldflags): Move to after stage1_libs and set to -static-libstdc++
2196 -static-libgcc if stage1_libs is empty and have_static_libs is yes.
2197 * configure: Regenerate.
2198
2199 2012-10-10 David Holsgrove <david.holsgrove@xilinx.com>
2200
2201 * config.guess, config.sub: Include updated version from
2202 config-patches. Adds microblaze little endian support.
2203
2204 2012-09-28 Ian Lance Taylor <iant@google.com>
2205
2206 * Makefile.def: Make all-target-libgo depend on
2207 all-target-libbacktrace.
2208 * Makefile.in: Rebuild.
2209
2210 2012-09-26 Ian Lance Taylor <iant@google.com>
2211
2212 * Makefile.def: Make all-gcc depend on all-libbacktrace.
2213 * Makefile.in: Rebuild.
2214
2215 2012-09-06 Diego Novillo <dnovillo@google.com>
2216
2217 * configure.ac: Bump minimum GMP version to 4.2.3.
2218 * configure: Re-generate.
2219
2220 2012-09-05 Georg-Johann Lay <avr@gjlay.de>
2221
2222 PR target/54461
2223 * configure.ac (noconfigdirs,target=avr-*-*): Add target-newlib,
2224 target-libgloss if not configured --with-avrlibc=no.
2225 * configure: Regenerate.
2226
2227 2012-09-04 Jason Merrill <jason@redhat.com>
2228
2229 * configure.ac: Fix --enable-languages=all.
2230
2231 2012-09-03 Richard Guenther <rguenther@suse.de>
2232
2233 PR bootstrap/54138
2234 * configure.ac: Re-organize ISL / CLOOG checks to allow
2235 disabling with either --without-isl or --without-cloog.
2236 * configure: Regenerated.
2237
2238 2012-09-03 Georg-Johann Lay <avr@gjlay.de>
2239
2240 * configure.ac (noconfigdirs,target=avr): Add target-libquadmath.
2241 * configure: Regenerate.
2242
2243 2012-09-21 Steve Ellcey <sellcey@mips.com>
2244
2245 * configure.ac: Add mips*-mti-elf* target.
2246 * configure: Regenerate.
2247
2248 2012-09-19 Ian Lance Taylor <iant@google.com>
2249
2250 * configure.ac (host_libs): Add libbacktrace.
2251 (target_libraries): Add libbacktrace.
2252 * Makefile.def (host_modules): Add libbacktrace.
2253 (target_modules): Likewise.
2254 * configure, Makefile.in: Rebuild.
2255
2256 2012-09-15 Jiong Wang <jiwang@tilera.com>
2257
2258 * configure.ac (ENABLE_GOLD): support tilegx*
2259 * configure: rebuild
2260
2261 2012-09-14 David Edelsohn <dje.gcc@gmail.com>
2262
2263 PR target/38607
2264 Merge upstream change.
2265 * libtool.m4 (_LT_COMPILER_PIC): Add -fPIC to GCC and GXX for AIX.
2266
2267 * configure.ac: Add target-libquadmath to noconfigdirs for AIX.
2268 Add libgomp*.o to compare_exclusions for AIX.
2269 * configure: Regenerate.
2270
2271 2012-08-26 H.J. Lu <hongjiu.lu@intel.com>
2272
2273 PR binutils/4970
2274 * Makefile.def (host_modules): Rmove lib_path=.libs from bfd
2275 and opcodes.
2276 * Makefile.in: Regenerated.
2277
2278 2012-08-14 Diego Novillo <dnovillo@google.com>
2279
2280 Merge from cxx-conversion branch.
2281
2282 * Makefile.tpl (STAGE[+id+]_CXXFLAGS): Remove
2283 POSTSTAGE1_CONFIGURE_FLAGS.
2284 * Makefile.in: Regenerate.
2285 * configure.ac (ENABLE_BUILD_WITH_CXX): Remove. Update all users.
2286 Force C++ when bootstrapping.
2287 * configure: Regenerate.
2288
2289 2012-07-06 Richard Guenther <rguenther@suse.de>
2290
2291 * Makefile.def (cloog): Pass $(HOST_GMPINC) and $(HOST_ISLINC)
2292 as CPPFLAGS, pass path to built gmp as LDFLAGS, always use
2293 --with-gmp=system.
2294 * Makefile.in: Regenerated.
2295 * configure: Likewise.
2296
2297 2012-07-06 Richard Guenther <rguenther@suse.de>
2298
2299 * configure.ac (extra_isl_gmp_configure_flags): Initialize and subst.
2300 * Makefile.def (isl): Use extra_isl_gmp_configure_flags and
2301 supply V=1 as extra_make_flags.
2302 * configure: Regenerated.
2303 * Makefile.in: Likewise.
2304
2305 2012-07-03 Richard Guenther <rguenther@suse.de>
2306
2307 * Makfile.def (isl): Remove not necessary extra_exports and
2308 extra_make_flags.
2309 (cloog): Use $$CPPFLAGS instead of ${CPPFLAGS}.
2310 * Makefile.in: Regenerated.
2311
2312 2012-07-03 Richard Guenther <rguenther@suse.de>
2313
2314 * Makefile.def (cloog): Add V=1 to extra_make_flags.
2315 * configure.ac: If either the ISL or the CLooG check failed
2316 do not try to build in-tree versions.
2317 * Makefile.in: Regenerated.
2318 * configure: Regenerated.
2319
2320 2012-07-02 Richard Guenther <rguenther@suse.de>
2321 Michael Matz <matz@suse.de>
2322 Tobias Grosser <tobias@grosser.es>
2323 Sebastian Pop <sebpop@gmail.com>
2324
2325 * Makefile.def: Add ISL host module, remove PPL host module.
2326 Adjust ClooG host module to use the proper ISL.
2327 * Makefile.tpl: Pass ISL include flags instead of PPL ones.
2328 * configure.ac: Include config/isl.m4. Add ISL host library,
2329 remove PPL. Remove PPL configury, add ISL configury, adjust
2330 ClooG configury.
2331 * Makefile.in: Regenerated.
2332 * configure: Likewise.
2333
2334 2012-07-02 Richard Guenther <rguenther@suse.de>
2335
2336 Merge from graphite branch
2337 2011-07-21 Tobias Grosser <tobias@grosser.es>
2338
2339 * configure: Regenerated.
2340 * config/cloog.m4: Remove support for CLooG-ppl and CLooG-parma,
2341 both cloog.org and legacy versions. The only supported version will
2342 be CLooG with the isl backend.
2343
2344 2011-07-21 Tobias Grosser <tobias@grosser.es>
2345
2346 * configure: Regenerated.
2347 * configure.ac: Require cloog isl 0.17.0
2348
2349 2011-07-21 Tobias Grosser <tobias@grosser.es>
2350
2351 * configure: Regenerated.
2352 * config/cloog.m4: Do not define CLOOG_ORG
2353
2354 2012-06-29 Steven Bosscher <steven@gcc.gnu.org>
2355
2356 * configure.ac: Skip C if explicitly selected.
2357 * configure: Regenerate.
2358
2359 2012-06-28 Christophe Lyon <christophe.lyon@st.com>
2360
2361 * configure.ac (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Make sure
2362 they contain -O2.
2363 * configure: Regenerate.
2364
2365 2012-06-20 Jason Merrill <jason@redhat.com>
2366
2367 * Makefile.tpl (check-target-libgomp-c++): New.
2368 (check-target-libitm-c++): New.
2369 * Makefile.def (c++): Add them.
2370 * Makefile.in: Regenerate.
2371
2372 2012-05-16 Olivier Hainque <hainque@adacore.com>
2373
2374 * Makefile.tpl (gcc-no-fixedincludes): Rename into ...
2375 (gcc-install-no-fixedincludes): Now forwarder to local target in gcc/
2376 (install-no-fixedincludes): Adjust accordingly.
2377 * Makefile.in: Regenerate.
2378
2379 2012-05-09 Nick Clifton <nickc@redhat.com>
2380 Paul Smith <psmith@gnu.org>
2381
2382 PR bootstrap/50461
2383 * configure.ac (mpfr-dir): When using in-tree MPFR sources
2384 allow for the fact that from release v3.1.0 of MPFR the source
2385 files were moved into a src sub-directory.
2386 * configure: Regenerate.
2387
2388 2012-05-07 Janne Blomqvist <jb@gcc.gnu.org>
2389
2390 * configure.ac: Bump minimum MPFR version to 2.4.0.
2391 * configure: Regenerated.
2392
2393 2012-05-01 Richard Henderson <rth@redhat.com>
2394
2395 * Makefile.def (libatomic): New target_module.
2396 * configure.ac (target_libraries): Add libatomic.
2397 (noconfigdirs): Check if libatomic is supported.
2398 * Makefile.in, configure: Rebuild.
2399
2400 2012-05-15 H.J. Lu <hongjiu.lu@intel.com>
2401
2402 Merge upstream change
2403 * libtool.m4 (_LT_ENABLE_LOCK): Support x32.
2404
2405 2011-11-21 Andreas Tobler <andreast@fgznet.ch>
2406
2407 * libtool.m4: Additional FreeBSD 10 fixes.
2408
2409 2012-06-28 Christophe Lyon <christophe.lyon@st.com>
2410
2411 * configure.ac (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Make sure
2412 they contain -O2.
2413 * configure: Regenerate.
2414
2415 2012-05-14 Catherine Moore <clm@codesourcery.com>
2416
2417 * NEWS: Mention PowerPC VLE port.
2418
2419 2012-05-11 Mike Frysinger <vapier@gentoo.org>
2420
2421 * MAINTAINERS (config/): Move to intl/ section.
2422 (compile; depcomp; install-sh; missing; ylwrap): Likewise.
2423
2424 2012-05-09 Nick Clifton <nickc@redhat.com>
2425 Paul Smith <psmith@gnu.org>
2426
2427 PR bootstrap/50461
2428 * configure.ac (mpfr-dir): When using in-tree MPFR sources
2429 allow for the fact that from release v3.1.0 of MPFR the source
2430 files were moved into a src sub-directory.
2431 * configure: Regenerate.
2432
2433 2012-05-02 Roland McGrath <mcgrathr@google.com>
2434
2435 * configure.ac (ENABLE_GOLD): Consider *-*-nacl* targets ELF.
2436 * configure: Regenerate.
2437
2438 2012-04-25 Joel Brobecker <brobecker@adacore.com>
2439
2440 * config.sub: Update to 2012-04-18 version from official repo.
2441
2442 2012-03-19 Tristan Gingold <gingold@adacore.com>
2443
2444 * configure.ac (ia64*-*-*vms*): Add support for ld.
2445 * configure: Regenerate.
2446
2447 2012-03-14 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2448
2449 * configure.ac (enable_libgomp): Remove *-*-irix6*.
2450 (unsupported_languages): Remove mips-sgi-irix6.*.
2451 (noconfigdirs): Don't add ${libgcj} for mips*-*-irix6*.
2452 (with_stabs): Remove.
2453 * configure: Regenerate.
2454
2455 2012-03-12 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2456
2457 * configure.ac (enable_libgomp): Remove *-*-osf*.
2458 (with_stabs): Remove alpha*-*-osf*.
2459 * configure: Regenerate.
2460
2461 2012-03-09 Jeff Johnston <jjohnstn@redhat.com>
2462
2463 * COPYING.NEWLIB: Modify DJ Delorie license to include
2464 modification rights in clause as permitted by DJ Delorie.
2465 * COPYING.LIBGLOSS: Ditto.
2466
2467 2012-03-09 Jeff Johnston <jjohnstn@redhat.com>
2468
2469 * COPYING.NEWLIB: Remove two unused licenses.
2470
2471 2012-03-05 Tristan Gingold <gingold@adacore.com>
2472
2473 * configure.ac: Enable gdb and readline for ia64*-*-*vms*.
2474 * configure: Regenerate.
2475
2476 2012-02-21 Joern Rennecke <joern.rennecke@embecosm.com>
2477
2478 * COPYING.NEWLIB: Add Adapteva notice.
2479 * COPYING.LIBGLOSS: Add Adapteva notice.
2480
2481 2011-12-18 Eric Botcazou <ebotcazou@adacore.com>
2482
2483 * configure: Regenerate.
2484
2485 2011-12-15 Jeff Johnston <jjohnstn@redhat.com>
2486
2487 * COPYING.LIBGLOSS: Add GPL with exception license.
2488
2489 2011-11-09 Roland McGrath <mcgrathr@google.com>
2490
2491 * configure.ac: Add tool checks for READELF and READELF_FOR_TARGET.
2492 * configure: Rebuild.
2493 * Makefile.def (flags_to_pass): Add READELF_FOR_TARGET.
2494 * Makefile.tpl (READELF, READELF_FOR_TARGET): New variables.
2495 (HOST_EXPORTS): Add READELF, READELF_FOR_TARGET.
2496 (BASE_FLAGS_TO_PASS): Add READELF_FOR_TARGET.
2497 (BASE_TARGET_EXPORTS, EXTRA_HOST_FLAGS, EXTRA_TARGET_FLAGS):
2498 Add READELF.
2499 * Makefile.in: Rebuild.
2500
2501 2011-11-08 Richard Henderson <rth@redhat.com>
2502
2503 * configure.ac: Test for libitm directory present first.
2504
2505 * configure.ac: Adjust srcdir for running libitm/configure.tgt.
2506
2507 * configure.ac: Test libitm/configure.tgt to disable libitm.
2508 * configure: Rebuild.
2509
2510 2011-11-02 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2511
2512 * Makefile.tpl (EXTRA_GCC_FLAGS): Remove LIBGCC2_CFLAGS,
2513 LIBGCC2_DEBUG_CFLAGS, LIBGCC2_INCLUDES.
2514 * Makefile.in: Regenerate.
2515
2516 2011-11-01 DJ Delorie <dj@redhat.com>
2517
2518 * configure.ac (rl78-*-*) New case.
2519 * configure: Regenerate.
2520
2521 2011-11-01 DJ Delorie <dj@redhat.com>
2522
2523 * config.sub: Update to version 2011-10-29 (added rl78)
2524
2525 2011-10-27 Nick Clifton <nickc@redhat.com>
2526
2527 * config.sub: Import these changes from the config project:
2528
2529 2011-10-08 Joern Rennecke <joern.rennecke@embecosm.com>
2530 Ben Elliston <bje@gnu.org>
2531
2532 * config.sub (epiphany): New.
2533
2534 2011-09-09 Linas Vepstas <linasvepstas@gmail.com>
2535 Ben Elliston <bje@gnu.org>
2536
2537 * config.sub (hexagon, hexagon-*): New.
2538
2539 2011-08-23 Roland McGrath <mcgrathr@google.com>
2540
2541 * config.sub: Rename 32eb to be32, 32el to le32, 64el to le64, and
2542 64eb to be64.
2543
2544 2011-08-16 Roland McGrath <mcgrathr@google.com>
2545
2546 * config.sub (32eb, 32el, 64eb, 64el): New (pseudo-)CPUs.
2547 (nacl): Grok as alias for 32el-unknown-nacl.
2548
2549 2011-08-19 Joel Brobecker <brobecker@adacore.com>
2550
2551 * src-release (GDB_SUPPORT_DIRS): Add 'cpu'.
2552
2553 2011-08-14 Yao Qi <yao@codesourcery.com>
2554
2555 Merge from gcc:
2556
2557 2011-08-14 Yao Qi <yao@codesourcery.com>
2558 * configure.ac (tic6x-*-*): Remove gdb from noconfigdirs.
2559 * configure: Regenerate.
2560
2561 2011-07-26 Ian Lance Taylor <iant@google.com>
2562
2563 Merge from gcc:
2564
2565 2011-07-26 Ian Lance Taylor <iant@google.com>
2566 * configure.ac: Set have_compiler based on whether gcc directory
2567 exists, rather than on whether gcc is in configdirs.
2568 * configure: Rebuild.
2569
2570 2011-07-20 David Edelsohn <dje.gcc@gmail.com>
2571 * Makefile.tpl (POSTSTAGE1_CONFIGURE_FLAGS): Add libsupc++ to
2572 link directories.
2573 * Makefile.in: Rebuild.
2574
2575 2011-07-20 Ian Lance Taylor <iant@google.com>
2576 PR bootstrap/49787
2577 * configure.ac: Move --enable-bootstrap handling earlier in file.
2578 If --enable-bootstrap and either --enable-build-with-cxx or
2579 --enable-build-poststage1-with-cxx, enable C++ automatically.
2580 * configure: Rebuild.
2581
2582 2011-07-19 Ian Lance Taylor <iant@google.com>
2583 * configure.ac: Add --enable-build-poststage1-with-cxx. If set,
2584 make C++ a boot_language. Set and substitute
2585 POSTSTAGE1_CONFIGURE_FLAGS.
2586 * Makefile.tpl (POSTSTAGE1_CONFIGURE_FLAGS): New variable.
2587 (STAGE[+id+]_CONFIGURE_FLAGS): Add $(POSTSTAGE1_CONFIGURE_FLAGS).
2588 * configure, Makefile.in: Rebuild.
2589
2590 2011-07-16 Jason Merrill <jason@redhat.com>
2591 * Makefile.def (language=c++): Add check-c++0x and
2592 check-target-libmudflap-c++.
2593 * Makefile.tpl (check-target-libmudflap-c++): New.
2594 * Makefile.in: Regenerate.
2595
2596 2011-07-16 Matthias Klose <doko@ubuntu.com>
2597 * Makefile.tpl (EXTRA_CONFIGARGS_LIBJAVA): Define.
2598 * Makefile.def (target_modules/libjava): Pass
2599 $(EXTRA_CONFIGARGS_LIBJAVA).
2600 * configure.ac: Pass --disable-static in EXTRA_CONFIGARGS_LIBJAVA,
2601 if not configured with --enable-static-libjava.
2602 * Makefile.in: Regenerate.
2603 * configure: Likewise.
2604
2605 2011-06-22 Hans-Peter Nilsson <hp@axis.com>
2606 PR regression/47836
2607 PR bootstrap/23656
2608 PR other/47733
2609 PR bootstrap/49247
2610 PR c/48825
2611 * configure.ac (target_libraries): Remove target-libiberty.
2612 Remove case-statement setting skipdirs=target-libiberty for
2613 multiple targets. Remove checking target_configdirs and
2614 removing target-libiberty but keeping target-libgcc if
2615 otherwise empty.
2616 * Makefile.def (target_modules): Don't add libiberty.
2617 (dependencies): Remove all traces of target-libiberty.
2618 * configure, Makefile.in: Regenerate.
2619
2620 2011-07-22 Jason Merrill <jason@redhat.com>
2621
2622 * Makefile.def (language=c++): Add check-c++0x and
2623 check-target-libmudflap-c++.
2624 * Makefile.tpl (check-target-libmudflap-c++): New.
2625 * Makefile.in: Regenerate.
2626
2627 2011-07-18 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2628
2629 * configure: Regenerate.
2630
2631 2011-07-07 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2632
2633 PR target/39150
2634 * configure.ac (i[3456789]86-*-solaris2*): Also accept
2635 x86_64-*-solaris2.1[0-9]*.
2636 * configure: Regenerate.
2637
2638 2011-06-13 Walter Lee <walt@tilera.com>
2639
2640 * configure.ac (tilepro-*-*) New case.
2641 (tilegx-*-*): Likewise.
2642 * configure: Regenerate.
2643
2644 2011-06-06 Nick Clifton <nickc@redhat.com>
2645
2646 * config.sub: Sync from upstream.
2647
2648 2011-05-08 Doug Kwan <dougkwan@google.com>
2649
2650 Merge from gcc:
2651
2652 2011-05-08 Doug Kwan <dougkwan@google.com>
2653
2654 * configure.ac: Propagate LDFLAGS_FOR_TARGET.
2655 * configure: Regenerated.
2656 * Makefile.tpl (LDFLAGS_FOR_TARGET): Use LDFLAGS_FOR_TARGET
2657 value from configure.
2658 * Makefile.in: Regenerated.
2659
2660 2011-05-05 Joseph Myers <joseph@codesourcery.com>
2661
2662 * configure.ac (alpha*-dec-osf*, i[[3456789]]86-*-rdos*,
2663 sh*-*-pe|mips*-*-pe|arm-wince-pe, sparc-*-sunos4*, *-*-aix*,
2664 *-*-beos*, *-*-chorusos, *-*-dragonfly*, *-*-freebsd*, *-*-linux*
2665 | *-*-gnu* | *-*-k*bsd*-gnu | *-*-kopensolaris*-gnu, *-*-lynxos*,
2666 *-*-mingw*, *-*-netbsd*, *-*-netware*, *-*-tpf*, *-*-uclinux*,
2667 *-*-vxworks*): Disable newlib and libgloss in separate case
2668 statement.
2669 (i[[3456789]]86-*-linux*): Move logic allowing newlib to be built
2670 to separate case statement.
2671 (*-*-chorusos, *-*-dragonfly*, *-*-freebsd*, *-*-netbsd*,
2672 *-*-netware*, *-*-tpf*, *-*-uclinux*, *-*-vxworks*,
2673 alpha*-dec-osf*, alpha*-*-linux*, am33_2.0-*-linux*, sh-*-linux*,
2674 sh*-*-pe|mips*-*-pe|*arm-wince-pe, arm-*-coff, arm-*-elf* |
2675 arm*-*-eabi*, arm*-*-linux-gnueabi, arm*-*-symbianelf*, avr-*-*,
2676 bfin-*-*, cris-*-* | crisv32-*-*, frv-*-*, i[[3456789]]86-*-coff |
2677 i[[3456789]]86-*-elf, i[[3456789]]86-w64-mingw*,
2678 i[[3456789]]86-*-mingw*, x86_64-*-mingw*,
2679 i[[3456789]]86-*-interix*, i[[3456789]]86-*-beos*,
2680 i[[3456789]]86-*-rdos*, m32r-*-*,
2681 m68hc11-*-*|m6811-*-*|m68hc12-*-*|m6812-*-*, m68k-*-elf*, m68*-*-*
2682 | fido-*-*, powerpc-*-aix*, powerpc-*-beos*, powerpc-*-eabi,
2683 powerpc-*-eabi* | powerpcle-*-eabi* | powerpc-*-rtems*,
2684 rs6000-*-lynxos*, rs6000-*-aix*, mips*-*-linux*, sparclet-*-aout*
2685 | sparc86x-*-*, sparc-*-elf*, sparc64-*-elf*, sparclite-*-*,
2686 sparc-*-sunos4*, sparc-*-solaris* | sparc64-*-solaris* |
2687 sparcv9-*-solaris*, *-*-linux* | *-*-gnu* | *-*-k*bsd*-gnu |
2688 *-*-kopensolaris*-gnu, *-*-lynxos*, *-*-*): Don't disable newlib
2689 and libgloss in main case over targets. Remove most empty cases
2690 in main case over targets.
2691 * configure: Regenerate.
2692
2693 2011-05-04 Joseph Myers <joseph@codesourcery.com>
2694
2695 * configure.ac: Remove code setting special library locations for
2696 hppa*64*-*-hpux11*. Remove code setting compiler for
2697 sparc-sun-solaris2*.
2698 * configure: Regenerate.
2699
2700 2011-05-04 Joseph Myers <joseph@codesourcery.com>
2701
2702 * configure.ac: Separate libgloss_dir settings from general case
2703 over targets.
2704 * configure: Regenerate.
2705
2706 2011-04-28 Joseph Myers <joseph@codesourcery.com>
2707
2708 * configure.ac (*-*-dragonfly*, *-*-freebsd*, *-*-netbsd*,
2709 alpha*-dec-osf*, alpha*-*-linux*, alpha*-*-*, sh-*-linux*,
2710 arm-*-elf* | arm*-*-eabi*, arm*-*-linux-gnueabi, frv-*-*): Remove
2711 cases in libgcj-disabling case statement.
2712 (hppa*64*-*-linux*): Set unsupported_languages instead of
2713 disabling target-zlib.
2714 (hppa*64*-*-*): Restrict case in libgcj-disabling case statement
2715 to hppa*64*-*-hpux*.
2716 (hppa*-*-*): Restrict case in libgcj-disabling case statement to
2717 hppa*-*-hpux*.
2718 (ia64*-*-elf*, ia64*-**-hpux*, i[[3456789]]86-*-elf,
2719 i[[3456789]]86-*-linux*, *-*-cygwin*, i[[3456789]]86-*-interix*,
2720 i[[3456789]]86-*-solaris2*, m32r-*-*, m68k-*-elf*, m68*-*-* |
2721 fido-*-*, powerpc-*-eabi, powerpc-*-eabi* | powerpcle-*-eabi* |
2722 powerpc-*-rtems*, mips*-*-linux*, mips*-*-*, sh-*-* | sh64-*-*,
2723 sparc-*-elf*, sparc64-*-elf*, sparc-*-solaris* |
2724 sparc64-*-solaris* | sparcv9-*-solaris*, *-*-linux* | *-*-gnu* |
2725 *-*-k*bsd*-gnu | *-*-kopensolaris*-gnu, *-*-*): Remove cases in
2726 libgcj-disabling case statement.
2727 * configure: Regenerate.
2728
2729 2011-04-28 Joseph Myers <joseph@codesourcery.com>
2730
2731 * configure.ac: Disable Java for targets not supporting libffi.
2732 (*-*-chorusos, *-*-kaos*, am33_2.0-*-linux*, sh*-*-pe|mips*-*-pe):
2733 Remove cases in Java-disabling statement.
2734 (*arm-wince-pe): Change to arm-wince-pe.
2735 (arc-*-*, arm-*-coff, arm-*-pe*, arm-*-riscix*, avr-*-*): Remove
2736 cases in Java-disabling statement.
2737 (bfin-*-*): Don't disable Java again.
2738 (c4x-*-* | tic4x-*-*, tic54x-*-*, cr16-*-*, d10v-*-*, d30v-*-*,
2739 fr30-*-elf*, moxie-*-*, h8300*-*-*, h8500-*-*, hppa1.1-*-osf* |
2740 hppa1.1-*-bsd*, hppa*-*-*elf* | hppa*-*-lites* | hppa*-*-openbsd*,
2741 hppa*-*-pro*, i960-*-*, i[[3456789]]86-*-coff,
2742 i[[3456789]]86-*-pe, i[[3456789]]86-*-sco3.2v5*,
2743 i[[3456789]]86-*-sco*, i[[3456789]]86-*-sysv4*,
2744 i[[3456789]]86-*-beos*, i[[3456789]]86-*-rdos*,
2745 m68hc11-*-*|m6811-*-*|m68hc12-*-*|m6812-*-*): Remove cases in
2746 Java-disabling statement.
2747 (mmix-*-*): Don't disable Java again.
2748 (mt-*-*, powerpc*-*-winnt* | powerpc*-*-pe*, powerpcle-*-solaris*,
2749 powerpc-*-beos*, rs6000-*-lynxos*, rs6000-*-*, m68k-apollo-*,
2750 microblaze*, mips*-sde-elf*, mips*-*-irix5*, mips*-*-bsd*,
2751 sparclet-*-aout* | sparc86x-*-*, sparclite-*-*, sparc-*-sunos4*,
2752 tic6x-*-*, v810-*-*, vax-*-*): Remove cases in Java-disabling
2753 statement.
2754 * configure: Regenerate.
2755
2756 2011-04-28 Joseph Myers <joseph@codesourcery.com>
2757
2758 Merge from GCC:
2759
2760 2011-04-18 Jack Howarth <howarth@bromo.med.uc.edu>
2761
2762 PR lto/48086
2763 * configure.ac: Re-enable LTO on *-apple-darwin9*.
2764 * configure: Regenerate.
2765
2766 2011-04-28 Joseph Myers <joseph@codesourcery.com>
2767
2768 * configure.ac: Separate cases disabling Java and Java libraries
2769 from general case over targets.
2770 * configure: Regenerate.
2771
2772 2011-04-06 Joseph Myers <joseph@codesourcery.com>
2773
2774 * configure.ac (build_tools): Remove build-byacc.
2775 (host_libs): Remove mmalloc.
2776 (host_tools): Remove byacc make patch prms send-pr ash bash bzip2
2777 autoconf automake libtool diff rcs fileutils shellutils time
2778 textutils wdiff find uudecode hello tar gzip indent recode release
2779 sed perl gawk findutils gettext zip.
2780 (libgcj): Remove target-qthreads.
2781 (target_tools): Remove target-examples target-gperf.
2782 (YACC): Don't handle building byacc.
2783 * configure: Regenerate.
2784 * Makefile.def (ash, autoconf, automake, bash, byacc, bzip2, diff,
2785 dosutils, examples, fileutils, find, findutils, gawk, gettext,
2786 gnuserv, gperf, gzip, hello, indent, libtool, make, mmalloc,
2787 patch, perl, prms, qthreads, rcs, recode, release, sed, send-pr,
2788 shellutils, tar, textutils, time, uudecode, wdiff, zip): Don't
2789 handle building components.
2790 * Makefile.in: Regenerate.
2791
2792 2011-04-05 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
2793
2794 * config.sub: Sync from upstream.
2795
2796 2011-04-01 Joseph Myers <joseph@codesourcery.com>
2797
2798 * configure.ac (avr-*-*): Add comment about why libssp is disabled.
2799 (microblaze*): Don't disable libssp.
2800 * configure: Regenerate.
2801
2802 2011-04-01 Joseph Myers <joseph@codesourcery.com>
2803
2804 * configure.ac: Remove code setting CONFIG_SHELL, config_shell and
2805 moveifchange.
2806 * configure: Regenerate.
2807 * Makefile.tpl: Use @SHELL@ not @config_shell@.
2808 * Makefile.in: Regenerate.
2809
2810 2011-04-01 Joseph Myers <joseph@codesourcery.com>
2811
2812 * configure.ac (*-*-sysv4*): Don't enable libgomp.
2813 (alpha*-*-*vms*, i[[34567]]86-*-sco3.2v5*, mn10300-*-*,
2814 powerpc-*-chorusos*, powerpc*-*-eabi*, powerpc*-*-sysv*,
2815 powerpc*-*-kaos*, s390x-ibm-tpf*, sparc64-*-elf*, v850*-*-*,
2816 xtensa*-*-elf*, *-*-beos*, *-*-elf*, *-*-netware*, *-*-rtems*,
2817 *-*-sysv[[45]]*, *-*-vxworks*, *-wrs-windiss): Remove
2818 md_exec_prefix cases.
2819 * configure: Regenerate.
2820
2821 2011-04-01 Joseph Myers <joseph@codesourcery.com>
2822
2823 * configure.ac: Separate cases disabling target-libssp,
2824 target-libiberty, target-libstdc++-v3 and Fortran from general
2825 case over targets.
2826 * configure: Regenerate.
2827
2828 2011-04-01 Joseph Myers <joseph@codesourcery.com>
2829
2830 * configure.ac (*-*-chorusos): Don't disable libgcj.
2831 (*-*-freebsd[[12]] | *-*-freebsd[[12]].* | *-*-freebsd*aout*):
2832 Remove case.
2833 (*-*-kaos*): Don't disable GCC libraries, zlib or fastjar.
2834 (arm-*-coff): Don't disable libgcj.
2835 (arm*-*-linux-gnueabi): Remove useless assignment.
2836 (arm-*-riscix*): Don't disable libgcj.
2837 (bfin-*-*): Don't enable target-bsp and target-cygmon depending on
2838 configuration.
2839 (c4x-*-* | tic4x-*-*): Don't disable GCC libraries.
2840 (c54x*-*-*): Remove case.
2841 (tic54x-*-*): Don't disable GCC or GCC libraries.
2842 (cris-*-* | crisv32-*-*): Don't handle *-*-aout. Change *-*-elf
2843 to *.
2844 (d10v-*-*): Don't disable GCC libraries.
2845 (d30v-*-*): Don't disable libgcj.
2846 (h8500-*-*): Don't disable GCC libraries.
2847 (i960-*-*): Don't disable libgcj.
2848 (i[[3456789]]86-*-linux*): Don't handle *-*-*libc1*.
2849 (i[[3456789]]86-*-sco3.2v5*, i[[3456789]]86-*-sco*,
2850 i[[3456789]]86-*-sysv4*, i[[3456789]]86-*-beos*): Don't disable
2851 libgcj.
2852 (m68k-*-coff*): Remove case.
2853 (mmix-*-*): Don't disable libgloss on host.
2854 (mn10200-*-*, mn10300-*-*): Remove cases.
2855 (powerpc*-*-winnt* | powerpc*-*-pe*, powerpcle-*-solaris*,
2856 powerpc-*-beos*, m68k-apollo-*, mips*-*-irix5*, mips*-*-bsd*):
2857 Don't disable libgcj.
2858 (romp-*-*): Remove case.
2859 (sparclite-*-*, sparc-*-sunos4*): Don't disable libgcj.
2860 (sparc-*-solaris2.[[0-6]] | sparc-*-solaris2.[[0-6]].*): Remove
2861 case.
2862 (v810-*-*): Don't disable GCC libraries.
2863 (v850*-*-*, vax-*-vms, xtensa*-*-*): Remove cases.
2864 (ip2k-*-*): Don't disable GCC libraries.
2865 * configure: Regenerate.
2866
2867 2011-03-28 Joseph Myers <joseph@codesourcery.com>
2868
2869 * configure.ac (i[[3456789]]86-*-msdosdjgpp*): Don't disable
2870 libffi on host.
2871 (x86_64-*-mingw*, i[[3456789]]86-*-mingw32*): Don't disable newlib
2872 on host.
2873 (c54x*-*-* | tic54x-*-*): Don't disable newlib on host.
2874 * configure: Regenerate.
2875
2876 2011-03-26 John Marino <binutils@marino.st>
2877
2878 * configure.ac: Add support for *-*-dragonfly*
2879 * configure: Regenerate.
2880
2881 2011-03-25 Joseph Myers <joseph@codesourcery.com>
2882
2883 * configure.ac (native_only): Remove.
2884 (i[[3456789]]86-*-msdosdjgpp*): Don't disable expect dejagnu
2885 send-pr uudecode guile gnuserv on host.
2886 (x86_64-*-mingw*): Don't disable expect dejagnu autoconf automake
2887 send-pr rcs guile perl texinfo libtool on host.
2888 (i[[3456789]]86-*-mingw32*): Don't disable expect dejagnu autoconf
2889 automake send-pr rcs guile perl texinfo libtool on host.
2890 (*-*-cygwin*, *-*-netbsd*): Remove host cases.
2891 (*-*-kaos*): Don't disable target-examples target-gperf on target.
2892 (alpha*-dec-osf*): Don't disable fileutils on target.
2893 (sh*-*-pe|mips*-*-pe|*arm-wince-pe): Don't disable target-examples
2894 texinfo send-pr expect dejagnu on target.
2895 (arm-*-elf* | arm*-*-eabi*, arm*-*-linux-gnueabi): Don't disable
2896 target-qthreads on target.
2897 (hppa*-hp-hpux11*, hppa*-*-*): Don't disable shellutils on target.
2898 (ia64*-*-elf*, ia64*-*-*vms*): Don't disable mmalloc on target.
2899 (i[[3456789]]86-w64-mingw*, i[[3456789]]86-*-mingw*,
2900 x86_64-*-mingw*): Don't disable expect on target.
2901 (*-*-cygwin*): Don't disable target-gperf on target.
2902 (powerpc*-*-winnt* | powerpc*-*-pe*): Don't disable make expect
2903 gnuserv on target.
2904 (powerpcle-*-solaris*): Don't disable make expect gnuserv on
2905 target.
2906 * configure: Regenerate.
2907
2908 2011-03-25 Joseph Myers <joseph@codesourcery.com>
2909
2910 * configure.ac (target_tools): Remove target-groff.
2911 (native_only): Remove target-groff.
2912 (hppa*64*-*-*): Don't disable byacc.
2913 (i[[3456789]]86-*-mingw32*): Remove commented-out noconfigdirs
2914 setting.
2915 (*-*-kaos*): Don't skip target-librx and target-groff.
2916 (*-*-netware*): Don't skip target-libmudflap.
2917 (*-*-tpf*): Don't skip target-libmudflap.
2918 (sh*-*-pe|mips*-*-pe|*arm-wince-pe): Don't condition configured
2919 directories on the host.
2920 (ia64*-*-*vms*): Don't skip tix.
2921 (sh-*-* | sh64-*-*): Don't condition skipped directories on the
2922 host.
2923 * configure: Regenerate.
2924
2925 2011-03-24 Paolo Bonzini <pbonzini@redhat.com>
2926
2927 * configure.ac: Remove references to mt-mep, mt-netware,
2928 mt-wince.
2929 * Makefile.def: Add all-utils soft dependencies.
2930 * Makefile.tpl: Remove GDB_NLM_DEPS.
2931 * configure: Regenerate.
2932 * Makefile.in: Regenerate.
2933
2934 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2935
2936 Sync from GCC:
2937
2938 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2939
2940 * configure.ac: Do not include mh-x86omitfp.
2941 * configure: Regenerate.
2942
2943 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2944
2945 * configure.ac: Remove empty cases.
2946 * configure: Regenerate.
2947
2948 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2949
2950 * Makefile.def: Add dependency from termcap to gdb.
2951 * Makefile.in: Regenerate.
2952
2953 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2954
2955 * configure.ac: Remove all mentions of mh-sysv4 and mh-solaris.
2956 * configure: Regenerate.
2957 * Makefile.def: Remove all mentions of X11_FLAGS_TO_PASS.
2958 * Makefile.tpl: Likewise.
2959 * Makefile.in: Regenerate.
2960
2961 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2962
2963 * configure.ac: Remove all mentions of tentative_cc.
2964 * configure: Regenerate.
2965
2966 2011-03-16 Jack Howarth <howarth@bromo.med.uc.edu>
2967
2968 PR lto/48086
2969 * configure.ac: Re-enable LTO on *-apple-darwin9.
2970 * configure: Regenerate.
2971
2972 2011-03-24 Joseph Myers <joseph@codesourcery.com>
2973
2974 * configure.ac (i[[3456789]]86-*-vsta, i[[3456789]]86-*-go32*,
2975 i[[3456789]]86-*-beos*, powerpc-*-beos*, m68k-hp-hpux*,
2976 m68k-apollo-sysv*, m68k-apollo-bsd*, m88k-dg-dgux*,
2977 m88k-harris-cxux*, m88k-motorola-sysv*, mips*-dec-ultrix*,
2978 mips*-nec-sysv4*, mips*-sgi-irix4*, mips*-*-sysv4*, mips*-*-sysv*,
2979 i370-ibm-opened*, i[[3456789]]86-*-sysv5*, i[[3456789]]86-*-dgux*,
2980 i[[3456789]]86-ncr-sysv4.3*, i[[3456789]]86-ncr-sysv4*,
2981 i[[3456789]]86-*-sco3.2v5*, i[[3456789]]86-*-sco*,
2982 i[[3456789]]86-*-udk*, vax-*-ultrix2*, m68k-sun-sunos*,
2983 hppa*-*-hiux*, *-*-hiux*, rs6000-*-lynxos*, *-*-sysv4*,
2984 *-*-rhapsody*): Remove host cases.
2985 * configure: Regenerate.
2986
2987 2011-03-24 Joseph Myers <joseph@codesourcery.com>
2988
2989 * configure.ac (ppc*-*-pe): Remove host case.
2990 (strongarm-*-coff | xscale-*-coff, strongarm-*-elf* |
2991 xscale-*-elf*, thumb-*-coff, thumb-*-elf, thumb-*-pe, ep9312-*-elf
2992 | ep9312-*-coff, parisc*64*-*-linux*, ppc*-*-pe): Remove target
2993 cases.
2994 * configure: Regenerate.
2995
2996 2011-03-24 Joseph Myers <joseph@codesourcery.com>
2997
2998 * config.sub: Update to version 2011-03-23.
2999
3000 2011-03-22 Joseph Myers <joseph@codesourcery.com>
3001
3002 * configure.ac (arm-semi-aof, crx-*-*, parisc*-*-linux*,
3003 i370-*-opened*, i[[3456789]]86-moss-msdos | i[[3456789]]86-*-moss*
3004 | i[[3456789]]86-*-uwin*, mcore-*-pe*): Remove empty cases.
3005 * configure: Regenerate.
3006
3007 2011-03-22 Joseph Myers <joseph@codesourcery.com>
3008
3009 * config-ml.in: Don't handle arc-*-elf*.
3010 * configure.ac (arc-*-*, crx-*-*, i[[3456789]]86-*-pe,
3011 m68hc11-*-*|m6811-*-*|m68hc12-*-*|m6812-*-*, mcore-*-pe*): Don't
3012 handle GCC libraries.
3013 * configure: Regenerate.
3014
3015 2011-03-21 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3016
3017 PR bootstrap/48120:
3018 * configure.ac (pwllib): Use LIBS instead of LDFLAGS.
3019 Add -lstdc++ -lm to LIBS.
3020 * configure: Regenerate.
3021
3022 2011-03-18 David Edelsohn <dje.gcc@gmail.com>
3023
3024 * config.guess: Update to version 2011-02-02
3025 * config.sub: Update to version 2011-02-24
3026
3027 2011-03-03 Sebastian Pop <sebastian.pop@amd.com>
3028
3029 * configure.ac: Adjust test of with_ppl.
3030 * configure: Regenerated.
3031
3032 2011-03-02 Sebastian Pop <sebastian.pop@amd.com>
3033
3034 * configure.ac: Add -lpwl to ppllibs.
3035 * config/cloog.m4: Add -lisl to clooglibs.
3036 * configure: Regenerated.
3037
3038 2011-02-13 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3039
3040 Import from Libtool and gnulib:
3041
3042 2011-01-27 Gerald Pfeifer <gerald@pfeifer.com>
3043
3044 Prepare for supporting FreeBSD 10.
3045 * config.rpath: Remove handling of freebsd1* which soon would
3046 match FreeBSD 10.0.
3047
3048 2011-01-20 Gerald Pfeifer <gerald@pfeifer.com> (tiny change)
3049
3050 Remove support for FreeBSD 1.x.
3051 * libtool.m4 (_LT_LINKER_SHLIBS)
3052 (_LT_SYS_DYNAMIC_LINKER): Remove handling of freebsd1* which
3053 soon would incorrectly match FreeBSD 10.0.
3054
3055 2011-02-12 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3056
3057 PR binutils/12283
3058 * MAINTAINERS (mkinstalldirs): Comes from Automake.
3059 (move-if-change): Comes from gnulib.
3060 * move-if-change: Import version from gnulib.
3061
3062 2011-02-12 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3063
3064 Sync from GCC:
3065
3066 2011-02-12 Alexandre Oliva <aoliva@redhat.com>
3067
3068 PR lto/47225
3069 * Makefile.def (lto-plugin): Double dash for enable-shared.
3070 (configure-gcc): Depend on all-lto-plugin.
3071 * Makefile.in: Rebuilt.
3072
3073 2011-02-11 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3074
3075 * configure.ac: Remove extra bracket.
3076 * configure: Regenerate.
3077
3078 2011-02-06 Kai Tietz <kai.tietz@onevision.com>
3079
3080 PR lto/47225
3081 * Makefile.def: Add dependency for install-gcc
3082 on install-lto-plugin.
3083 * Makfile.in: Regenerated
3084
3085 2011-01-25 Jakub Jelinek <jakub@redhat.com>
3086
3087 * configure.ac: If with_ppl is no, move setting with_cloog=no
3088 after CLOOG_REQUESTED check.
3089 * configure: Regenerated.
3090
3091 2011-01-25 Sebastian Pop <sebastian.pop@amd.com>
3092
3093 * configure.ac: Call AC_MSG_ERROR when PPL 0.11 is not present and
3094 CLooG has been requested.
3095 * configure: Regenerated.
3096
3097 2011-01-25 Sebastian Pop <sebastian.pop@amd.com>
3098
3099 * configure: Regenerated.
3100 * configure.ac: Check for version 0.11 (or later revision) of PPL.
3101
3102 2011-01-25 Tobias Grosser <grosser@fim.uni-passau.de>
3103
3104 * configure: Regenerated.
3105 * configure.ac: Use CLOOG_CHECK_VERSION(0,16,1).
3106
3107 2011-01-07 Jan Hubicka <jh@suse.cz>
3108
3109 PR lto/47225
3110 * Makefile.in: Regenerate.
3111 * Makefile.def (lto-plugin): Always pass enable-shared to the plugin
3112 configure.
3113
3114 2011-01-31 Alexandre Oliva <aoliva@redhat.com>
3115
3116 PR libgcj/44341
3117 * configure.ac: Discard --with-* flags for host when configuring
3118 target libraries for cross build.
3119 * configure: Rebuilt.
3120
3121 2011-01-21 Andreas Schwab <schwab@redhat.com>
3122
3123 Sync from GCC:
3124
3125 2011-01-21 Andreas Schwab <schwab@redhat.com>
3126
3127 * configure.ac: Use AS_HELP_STRING throughout.
3128 * configure: Regenerate.
3129
3130 2011-01-18 Jie Zhang <jie.zhang@analog.com>
3131
3132 * configure.ac (bfin-*-*): Remove gdb from noconfigdirs.
3133 * configure: Regenerate.
3134
3135 2010-12-10 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
3136
3137 * ltmain.sh (relink): Use absolute path when hardcoding with -L.
3138
3139 2011-01-13 Joel Brobecker <brobecker@adacore.com>
3140
3141 * configure.ac: Remove readline, mmalloc, and gdb from noconfigdirs
3142 for ia64-hpux.
3143 * configure: Regenerate.
3144
3145 2011-01-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3146
3147 Sync from GCC:
3148 2010-12-22 Hariharan Sandanagobalane <hariharan@picochip.com>
3149
3150 * configure.ac: (picochip): Disable libiberty.
3151 * configure: Regenerate.
3152
3153 2010-12-18 Jeff Johnston <jjohnstn@redhat.com>
3154
3155 * COPYING.LIBGLOSS: Remove the GPL for fr30 target.
3156
3157 2010-12-10 Ian Lance Taylor <iant@google.com>
3158
3159 PR bootstrap/46819
3160 * configure.ac: For --disable-libgcj clear libgcj_saved.
3161 * configure: Rebuild.
3162
3163 2010-12-10 Tobias Burnus <burnus@net-b.de>
3164
3165 PR fortran/46540
3166 * configure.ac: Add --disable-libquadmath and
3167 --disable-libquadmath-support.
3168 * configure: Regenerate.
3169
3170 2010-12-10 Tristan Gingold <gingold@adacore.com>
3171
3172 * src-release (ETC_SUPPORT): add gnu-oids.texi
3173
3174 2010-12-03 Hans-Peter Nilsson <hp@axis.com>
3175
3176 PR libffi/46792
3177 * configure.ac (cris-*-elf, crisv32-*-elf): Disable target-libffi.
3178 * configure: Regenerate.
3179
3180 2010-12-02 Ian Lance Taylor <iant@google.com>
3181
3182 * configure.ac: Always set default for poststage1_ldflags to
3183 -static-libstdc++ -static-libgcc.
3184
3185 2010-12-02 Jeff Johnston <jjohnstn@redhat.com>
3186
3187 * COPYING.NEWLIB: Add National Semiconductor notice.
3188
3189 2010-11-29 Andreas Schwab <schwab@redhat.com>
3190
3191 * configure.ac: Move comment to remove extra space in last argument
3192 of GCC_TARGET_TOOL.
3193
3194 2010-11-26 Alexandre Oliva <aoliva@redhat.com>
3195
3196 PR other/46026
3197 * configure.ac (CXX_FOR_TARGET): Add -funconfigured-libstdc++-v3.
3198 * Makefile.def (CXX_FOR_TARGET): Removed from flags_to_pass.
3199 * Makefile.tpl (CXX_FOR_TARGET_FLAG_TO_PASS): New.
3200 (BASE_FLAGS_TO_PASS): Use it.
3201 * configure: Rebuilt.
3202 * Makefile.in: Rebuilt.
3203
3204 2010-11-23 H.J. Lu <hongjiu.lu@intel.com>
3205
3206 PR binutils/12258
3207 * configure.ac: Correct comments for --enable-gold/--enable-ld.
3208 Properly check default linker.
3209 * configure: Regnerated.
3210
3211 2010-11-23 Matthias Klose <doko@ubuntu.com>
3212
3213 * configure.ac: For --enable-gold, handle value `default' instead of
3214 `both*'. New configure option --{en,dis}able-ld.
3215 * configure: Regenerate.
3216
3217 2010-11-20 Ian Lance Taylor <iant@google.com>
3218
3219 * configure.ac: Only disable a language library if no language needs
3220 it. Don't let --disable-libgcj uncondtionally disable libffi.
3221 * configure: Rebuild.
3222
3223 2010-11-20 Paolo Bonzini <bonzini@gnu.org>
3224
3225 * configure: Regenerate.
3226
3227 2010-11-20 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3228
3229 PR other/46202
3230 * configure.ac: Fix just-built in-tree STRIP name to be
3231 binutils/strip-new.
3232 * configure: Regenerate.
3233 * Makefile.def (install-strip-gcc, install-strip-binutils)
3234 (install-strip-opcodes, install-strip-ld, install-strip-itcl)
3235 (install-strip-sid): Mirror dependencies on non-strip variants
3236 of these targets on the respective -strip prerequisites.
3237 * Makefile.tpl (install-strip, install-strip-host)
3238 (install-strip-target): New targets.
3239 (install-strip-[+module+], install-strip-target-[+module+]):
3240 New targets.
3241 * Makefile.in: Regenerate.
3242
3243 2010-11-19 Ian Lance Taylor <iant@google.com>
3244 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3245
3246 * configure.ac: Add target-libgo to target_libraries. Set
3247 and substitute GOC_FOR_BUILD and GOC_FOR_TARGET.
3248 * Makefile.tpl (BUILD_EXPORTS): Add GOC and GOCFLAGS.
3249 (HOST_EXPORTS): Add GOC.
3250 (BASE_TARGET_EXPORTS): Add GOC.
3251 (GOC_FOR_BUILD, GOCFLAGS, GOC_FOR_TARGET): New variables.
3252 (GOCFLAGS_FOR_TARGET): New variable.
3253 (EXTRA_HOST_FLAGS): Add GOC.
3254 (EXTRA_TARGET_FLAGS): Add GOC and GOCFLAGS.
3255 * Makefile.def (target_modules): Add libgo.
3256 (flags_to_pass): Add GOC_FOR_TARGET and GOCFLAGS_FOR_TARGET.
3257 (dependencies): Add dependency from configure-target-libgo to
3258 configure-target-libffi and all-target-libstdc++-v3. Add
3259 dependencies from all-target-libgo to all-target-libffi.
3260 (languages): Add go.
3261 * configure: Rebuild.
3262 * Makefile.in: Rebuild.
3263
3264 2010-11-19 Ian Lance Taylor <iant@google.com>
3265
3266 * config-ml.in: Add Go support: treat GOC and GOCFLAGS like other
3267 compiler/flag environment variables.
3268
3269 2010-11-18 Ian Lance Taylor <iant@google.com>
3270
3271 * configure.ac: Check for lang_requires_boot_languages in
3272 config-lang.in files.
3273 * configure: Rebuild.
3274
3275 2010-11-17 Mike Frysinger <vapier@gentoo.org>
3276
3277 * .gitignore: New file.
3278
3279 2010-11-16 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
3280 Tobias Burnus <burnus@net-b.de>
3281
3282 PR fortran/32049
3283 * Makefile.def: Add libquadmath; build it with language=fortran.
3284 * configure.ac: Add libquadmath.
3285 * Makefile.tpl: Handle multiple libs in check-[+language+].
3286 * Makefile.in: Regenerate.
3287 * configure: Regenerate.
3288
3289 2010-11-15 Andreas Schwab <schwab@redhat.com>
3290
3291 * configure.ac: Fix spelling in option names.
3292 * configure: Regenerated.
3293
3294 2010-11-13 Georg-Johann Lay <georgjohann@web.de>
3295
3296 PR bootstrap/39622
3297 * configure.ac (FLAGS_FOR_TARGET): Add include-fixed path.
3298 * configure: Regenerated.
3299
3300 2010-11-12 Tobias Grosser <grosser@fim.uni-passau.de>
3301
3302 * config/cloog.m4: Add -enable-cloog-backend=(isl|ppl|ppl-legacy) to
3303 define the cloog backend to use. Furthermore, only pass the ppllibs to
3304 the configure checks, if necessary.
3305 * configure: Regenerate.
3306
3307 2010-11-12 Tobias Grosser <grosser@fim.uni-passau.de>
3308
3309 * config/cloog.m4: Use CLooG predefined macro to check for CLooG PPL.
3310 * configure: regenerate
3311
3312 2010-11-12 Tobias Grosser <grosser@fim.uni-passau.de>
3313
3314 * config/cloog.m4: Fix typo. verison -> version.
3315 * configure: Regenerate.
3316
3317 2010-11-12 Tobias Grosser <grosser@fim.uni-passau.de>
3318
3319 * config/cloog.m4: Pass ppl libraries to the CLooG version check.
3320 * configure: Regenerate.
3321
3322 2010-11-11 Andreas Simbuerger <simbuerg@fim.uni-passau.de>
3323
3324 * configure.ac: Support official CLooG.org versions.
3325 * configure: Regenerate.
3326 * config/cloog.m4: New.
3327
3328 2010-11-05 Michael Eager <eager@eagercon.com>
3329
3330 * COPYING.LIBGLOSS: Correct typo in microblaze.
3331 * COPYING.NEWLIB: Same.
3332
3333 2010-11-04 Iain Sandoe <iains@gcc.gnu.org>
3334
3335 * configure.ac (*-*-darwin*): Use mh-darwin for all Darwin variants.
3336 * configure: Regenerate.
3337
3338 2010-11-03 Ian Lance Taylor <iant@google.com>
3339 Dave Korn <dave.korn.cygwin@gmail.com>
3340
3341 PR lto/46273
3342 * configure.ac: Remove libelf tests. Build lto-plugin on ELF always
3343 and on other supported platforms whenever LTO is enabled.
3344 * configure: Rebuild.
3345
3346 2010-11-02 Alan Modra <amodra@gmail.com>
3347
3348 PR binutils/12110
3349 * configure.ac: Error when source path contains spaces.
3350 * configure: Regenerate.
3351
3352 2010-10-20 Ian Lance Taylor <iant@google.com>
3353
3354 * Makefile.def (target_modules): Set lib_path to src/.libs for
3355 libstdc++-v3 module.
3356 * Makefile.tpl: Fix typo in TARGET_LIB_PATH comment.
3357 * Makefile.in: Rebuild.
3358
3359 2010-10-08 Bernd Schmidt <bernds@codesourcery.com>
3360 Joseph Myers <joseph@codesourcery.com>
3361
3362 * COPYING.LIBGLOSS: Add National Semiconductor and CodeSourcery
3363 notices.
3364 * COPYING.NEWLIB: Add Texas Instruments notice.
3365
3366 2010-10-07 Dave Korn <dave.korn.cygwin@gmail.com>
3367
3368 * configure.ac (build_lto_plugin): New shell variable.
3369 (--enable-lto): Turn on by default for all non-ELF platforms that
3370 have had LTO support added so far. Set build_lto_plugin appropriately
3371 for both ELF and non-ELF.
3372 (configdirs): Add lto-plugin or not based on build_lto_plugin.
3373 * configure: Regenerate.
3374
3375 2010-10-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3376
3377 PR bootstrap/45326
3378 PR bootstrap/45174
3379 * configure.ac: Honor initial values of $build_configargs,
3380 $host_configargs, $target_configargs. Mark the precious, so
3381 environment settings get recorded.
3382 * configure: Regenerate.
3383
3384 2010-10-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3385
3386 Sync from GCC:
3387
3388 2010-09-30 Michael Eager <eager@eagercon.com>
3389
3390 * configure.ac (microblaze): Add target-libssp to noconfigdirs.
3391 * configure: Regenerate.
3392
3393 2010-09-21 Iain Sandoe <iains@gcc.gnu.org>
3394
3395 * configure.ac (enable-lto): Add Darwin to the list of supported lto
3396 targets and amend comment.
3397 * configure: Regenerate.
3398
3399 2010-09-03 Jack Howarth <howarth@bromo.med.uc.edu>
3400
3401 * configure.ac: Enable LTO by default on Darwin.
3402 * configure: Regenerate.
3403
3404 2010-07-23 Marc Glisse <marc.glisse@normalesup.org>
3405
3406 PR bootstrap/44455
3407 * configure.ac (extra_mpfr_configure_flags): Copy from
3408 extra_mpc_gmp_configure_flags.
3409 * configure: Re-generated.
3410
3411 2010-09-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3412
3413 Sync from GCC:
3414
3415 PR bootstrap/45796
3416 * Makefile.def (info-gcc, dvi-gcc, pdf-gcc, html-gcc):
3417 Depend on all-build-libiberty.
3418 * Makefile.in: Regenerate.
3419
3420 2010-09-27 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3421
3422 Sync from GCC:
3423
3424 PR bootstrap/44621
3425 * configure.ac: Fix unportable shell quoting.
3426 * configure: Regenerate.
3427
3428 2010-07-26 Naveen.H.S <naveen.S@kpitcummins.com>
3429
3430 * configure.ac: Support all v850 targets.
3431 * configure: Regenerate.
3432
3433 2010-07-17 Jack Howarth <howarth@bromo.med.uc.edu>
3434
3435 PR target/44862
3436 * Makefile.tpl (POSTSTAGE1_CXX_EXPORT):
3437 Provide -B option to allow for link spec %s substitutions for
3438 libstdc++.a on darwin.
3439 * Makefile.in: Regenerate.
3440
3441 2010-06-10 Alexandre Oliva <aoliva@redhat.com>
3442
3443 * Makefile.def (configure-gcc): Depend on all-libelf.
3444 * Makefile.in: Rebuild.
3445
3446 2010-06-01 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3447
3448 * config.sub, config.guess: Update from upstream sources.
3449
3450 2010-06-01 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3451
3452 Sync from GCC:
3453
3454 2010-05-05 Sebastian Pop <sebastian.pop@amd.com>
3455 * configure.ac: Allow all the versions greater than 0.10 of PPL.
3456 * configure: Regenerated.
3457
3458 2010-04-20 Eric Botcazou <ebotcazou@adacore.com>
3459 * configure.ac (BUILD_CONFIG): Redirect output to /dev/null.
3460 * configure: Regenerate.
3461
3462 2010-04-17 Ralf Cors<E9>pius <ralf.corsepius@rtems.org>
3463 * configure.ac (*-*-rtems*): Add target-libiberty to $skipdirs.
3464 * configure: Regenerate.
3465
3466 2010-04-16 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3467 * configure.ac: Check for elf_getshdrstrndx or elf_getshstrndx
3468 separately.
3469 * configure: Regenerate.
3470
3471 2010-04-13 Steve Ellcey <sje@cup.hp.com>
3472 * configure: Regenerate after change to elf.m4.
3473
3474 2010-04-02 Sebastian Pop <sebastian.pop@amd.com>
3475 * configure.ac: Add brackets around AC_TRY_COMPILE alternative.
3476 * configure: Regenerated.
3477
3478 2010-04-02 Sebastian Pop <sebastian.pop@amd.com>
3479 * configure.ac: Print "buggy but acceptable" when CLooG
3480 revision is less than 9.
3481 * configure: Regenerated.
3482
3483 2010-05-26 Dave Korn <dave.korn.cygwin@gmail.com>
3484
3485 Merge from gcc:
3486
3487 2010-05-18 Steven Bosscher <steven@gcc.gnu.org>
3488 * configure.ac (--enable-lto): All *-apple-darwin* now support LTO.
3489 * configure: Regenerate.
3490
3491 2010-05-07 Steven Bosscher <steven@gcc.gnu.org>
3492 * configure.ac (--enable-lto): Add x86_64-apple-darwin* as
3493 a platform that supports LTO.
3494 * configure: Regenerate.
3495
3496 2010-04-27 Dave Korn <dave.korn.cygwin@gmail.com>
3497 PR lto/42776
3498 * configure.ac (--enable-lto): Refactor handling so libelf tests
3499 are only performed inside then-clause of ACX_ELF_TARGET_IFELSE,
3500 and allow LTO to be explicitly enabled on non-ELF platforms that
3501 are known to support it inside else-clause.
3502 * configure: Regenerate.
3503
3504 2010-04-27 Roland McGrath <roland@redhat.com>
3505 H.J. Lu <hongjiu.lu@intel.com>
3506
3507 * configure.ac (--enable-gold): Support both, both/gold and
3508 both/bfd to add gold to configdirs without removing ld.
3509 * configure: Regenerated.
3510
3511 * Makefile.def: Add install-gold dependency to install-ld.
3512 * Makefile.in: Regenerated.
3513
3514 2010-04-14 Tristan Gingold <gingold@adacore.com>
3515
3516 * configure.ac (alpha*-*-*vms*): Remove ld from noconfigdirs.
3517 * configure: Regenerate.
3518
3519 2010-04-08 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3520
3521 Merge from gcc:
3522 PR bootstrap/43615
3523 PR bootstrap/43328
3524 Revert:
3525 2010-03-31 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3526 * configure.ac: Do not pass --enable-multilib nor
3527 --disable-multilib in baseargs. Accept explicitly passed
3528 --enable_multilib.
3529 * configure: Regenerate.
3530
3531 2010-03-31 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3532
3533 PR bootstrap/43328
3534 * configure.ac: Do not pass --enable-multilib nor
3535 --disable-multilib in baseargs. Accept explicitly passed
3536 --enable_multilib.
3537 * configure: Regenerate.
3538
3539 2010-03-23 Joseph Myers <joseph@codesourcery.com>
3540
3541 * configure.ac (tic6x-*-*): New case.
3542 * configure: Regenerate.
3543
3544 2010-03-23 Joseph Myers <joseph@codesourcery.com>
3545
3546 Merge from gcc:
3547 2010-03-19 Jack Howarth <howarth@bromo.med.uc.edu>
3548 PR ada/42554
3549 * configure.ac: Only pass -c to ranlib for darwin9 and earlier.
3550 * configure: Regenerate.
3551
3552 2010-03-23 Joseph Myers <joseph@codesourcery.com>
3553
3554 * config.sub: Update to version 2010-03-22.
3555 * config.guess: Update to version 2009-12-30.
3556
3557 2010-03-14 Joseph Myers <joseph@codesourcery.com>
3558
3559 Merge from gcc:
3560 2010-01-11 Richard Guenther <rguenther@suse.de>
3561 PR lto/41569
3562 * Makefile.def (all-lto-plugin): Depend on all-gcc.
3563 * Makefile.in: Regenerated.
3564
3565 2010-03-01 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3566
3567 PR libstdc++/32499
3568 * configure.ac (RANLIB): Default to true.
3569 (STRIP): Likewise.
3570 (RANLIB_FOR_TARGET): Remove superfluous : argument.
3571 * configure: Regenerate.
3572
3573 2010-02-17 Nick Clifton <nickc@redhat.com>
3574
3575 PR 11238
3576 * Makefile.tpl (local-distclean): Also remove config.cache files in
3577 sub-directories as there may not be Makefiles present in the
3578 sub-directories.
3579 * Makefile.tpl: Use "-exec rm {}" rather than "-delete" to delete
3580 the config.cache files found by the find command.
3581
3582 * Makefile.in: Regenerate.
3583 * configure.ac: Revert previous delta.
3584 * configure: Regenerate.
3585
3586 2010-02-15 Nick Clifton <nickc@redhat.com>
3587
3588 PR 11238
3589 * configure.ac: Delete config.cache files in sub-directories when
3590 deleting Makefiles.
3591 * configure: Regenerate.
3592
3593 2010-02-15 Nick Clifton <nickc@redhat.com>
3594
3595 * configure.ac: Sync from gcc.
3596 * configure: Regenerate.
3597
3598 2010-01-31 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3599
3600 Sync from gcc:
3601 * configure.ac: Add "recommended" version checks for GMP/MPC.
3602 Update recommended GMP/MPFR/MPC versions.
3603 * configure: Regenerate.
3604
3605 2010-01-25 Joern Rennecke <amylaar@spamcop.net>
3606
3607 gcc PR libstdc++/36101, gcc PR libstdc++/42813
3608 * configure.ac (bootstrap_target_libs): Make inclusion of
3609 target-libgomp conditional on libgomb being in target_configdirs.
3610 * configure: Regenerate.
3611
3612 2010-01-23 Joern Rennecke <amylaar@spamcop.net>
3613
3614 gcc PR libstdc++/36101, gcc PR libstdc++/42813
3615 * configure.ac (bootstrap_target_libs): Include target-libgomp.
3616 * configure: Regenerate.
3617
3618 2010-01-22 Joern Rennecke <amylaar@spamcop.net>
3619
3620 gcc PR libstdc++/36101, gcc PR libstdc++/42813
3621 * configure.ac (target_configdirs): Substitute.
3622 * Makefile.def: Bootstrap target module libgomp.
3623 Add dependency of all-target-libstdc++-v3 on configure-target-libgomp.
3624 * Makefile.tpl (TARGET_CONFIGDIRS): New makefile variable.
3625 (BASE_TARGET_EXPORTS): Export TARGET_CONFIGDIRS.
3626 * configure, Makefile.in: Regenerate.
3627
3628 2009-12-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3629
3630 * libtool.m4: Sync from git Libtool.
3631 * ltmain.sh: Likewise.
3632 * ltoptions.m4: Likewise.
3633 * ltversion.m4: Likewise.
3634 * lt~obsolete.m4: Likewise.
3635
3636 2010-01-07 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3637 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
3638
3639 PR bootstrap/42424
3640 * configure.ac: Include libtool m4 files.
3641 (_LT_CHECK_OBJDIR): Call it.
3642 (extra_mpc_mpfr_configure_flags, extra_mpc_gmp_configure_flags,
3643 gmplibs, ppllibs, clooglibs): Use $lt_cv_objdir.
3644
3645 * configure: Regenerate.
3646
3647 2010-01-07 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3648
3649 PR bootstrap/41818
3650 * Makefile.tpl (BASE_TARGET_EXPORTS): Only add TARGET_LIB_PATH
3651 to $(RPATH_ENVVAR) if bootstrapping. Fix typo in comment.
3652 * Makefile.in: Regenerate.
3653
3654 2009-12-18 Ben Elliston <bje@au.ibm.com>
3655
3656 * config.sub, config.guess: Update from upstream sources.
3657
3658 2009-12-17 Jeff Johnston <jjohnstn@redhat.com>
3659
3660 * COPYING.NEWLIB: Update copyright date.
3661 * COPYING.LIBGLOSS: Ditto.
3662
3663 2009-12-07 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3664
3665 PR middle-end/30447
3666 PR middle-end/30789
3667 PR other/40302
3668
3669 * configure.ac: Require MPC.
3670 * configure: Regenerate.
3671
3672 * configure.ac: Update minimum MPC version to 0.8.
3673 * configure: Regenerate.
3674
3675 2009-11-20 Paolo Bonzini <bonzini@gnu.org>
3676
3677 * config.guess: Sync with upstream and gcc.
3678 * config.sub: Sync with upstream and gcc.
3679
3680 2009-11-16 Alexandre Oliva <aoliva@redhat.com>
3681
3682 * Makefile.def: Restore host and target settings for gmp.
3683 * Makefile.in: Rebuild.
3684
3685 2009-11-16 Alexandre Oliva <aoliva@redhat.com>
3686
3687 * configure.ac: Add libelf to host_libs. Enable in-tree configury
3688 of ppl and cloog. Fix in-tree configury of libelf, skip tests.
3689 Fix portability of test of C++ as bootstrap language. Add
3690 ppl/src/ppl-config.o to the bootstrap compare exclusion list.
3691 * configure: Rebuild.
3692 * Makefile.def: Drop host and target settings from gmp, mpfr, ppl,
3693 and cloog. Fix in-tree ppl configuration. Introduce libelf
3694 in-tree building.
3695 * Makefile.tpl (POSTSTAGE1_CXX_EXPORT): New.
3696 (POSTSTAGE1_HOST_EXPORTS): Use it.
3697 (STAGE[+id+]_CXXFLAGS): New.
3698 (BASE_FLAGS_TO_PASS): Pass it down.
3699 (configure-stage[+id+]-[+prefix+][+module+]): Use it. Add
3700 extra_exports.
3701 (all-stage[+id+]-[+prefix+][+module+]): Likewise.
3702 (configure-[+prefix+][+module+], all-[+prefix+][+module+]): Add
3703 extra_exports.
3704 * Makefile.in: Rebuild.
3705
3706 2009-11-06 Ozkan Sezer <sezeroz@gmail.com>
3707
3708 * configure.ac (FLAGS_FOR_TARGET): Add -L and -isystem
3709 paths for *-w64-mingw* and x86_64-*mingw*.
3710 * configure: Regenerated.
3711
3712 2009-10-30 Kai Tietz <kai.tietz@onevision.com>
3713
3714 * configure.ac: Disable target-winsup & co for
3715 x86_64-*-mingw* and *-w64-mingw* targets.
3716 * configure: Regenerated.
3717
3718 2009-10-23 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3719
3720 * configure.ac (CLooG test): Use = with test.
3721 * configure: Regenerate.
3722
3723 2009-10-22 Richard Guenther <rguenther@suse.de>
3724
3725 * configure.ac: Do not set LIBS for ppl/cloog checks. Disable
3726 cloog if the ppl version check failed. Move flags saving
3727 before setting in libelf check.
3728 * configure: Regenerate.
3729
3730 2009-10-21 Richard Guenther <rguenther@suse.de>
3731
3732 * configure.ac: Adjust the ppl and cloog configure to work as
3733 documented. Disable cloog if ppl was disabled. Omit the version
3734 checks if they were disabled.
3735 * configure: Re-generate.
3736
3737 2009-10-13 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3738
3739 * configure.ac: Add 'lto' to enable_languages, not
3740 new_enable_languages, and only if not already present.
3741 * configure: Regenerate.
3742
3743 2009-10-06 Ian Lance Taylor <iant@google.com>
3744
3745 * Makefile.def: check-gold depends upon all-gas.
3746 * Makefile.in: Rebuild.
3747
3748 2009-10-03 2009-02-05 Rafael Avila de Espindola <espindola@google.com>
3749
3750 * Makefile.def: all-lto-plugin depends on all-libiberty.
3751 set bootstrap=true for lto-plugin.
3752 Add lto-plugin.
3753 * Makefile.in: Regenerate.
3754 * configure.ac (host_libs): Add lto-plugin.
3755 * configure: Regenerate.
3756
3757 2009-10-03 Diego Novillo <dnovillo@google.com>
3758
3759 * Makefile.tpl (HOST_EXPORTS): Add LIBELFLIBS and LIBELFINC.
3760 (HOST_LIBELFLIBS): Define.
3761 (HOST_LIBELFINC): Define.
3762 * Makefile.in: Regenerate.
3763 * configure.ac: Add --enable-lto.
3764 Add --with-libelf, --with-libelf-include and --with-libelf-lib.
3765 If --enable-lto is used, add 'lto' to new_enable_languages.
3766 If --enable-lto is used and gold is enabled, add
3767 lto-plugin to configdirs.
3768 * configure: Regenerate.
3769
3770 2009-10-03 Simon Baldwin <simonb@google.com>
3771
3772 * configure.ac: If --with-system-zlib, suppress local zlib and
3773 pass --with-system-zlib to subdir configure scripts.
3774 * configure: Regenerate.
3775
3776 2009-10-01 Loren J. Rittle <ljrittle@acm.org>
3777 Paolo Bonzini <bonzini@gnu.org>
3778
3779 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Use $$s rather than
3780 $(srcdir).
3781 * Makefile.in: Rebuilt.
3782
3783 2009-09-29 Paolo Bonzini <bonzini@gnu.org>
3784
3785 Sync from gcc:
3786 2009-09-26 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3787
3788 * configure.ac: Update minimum MPC version to 0.7.
3789 * configure: Regenerate.
3790
3791 2009-09-25 Nick Clifton <nickc@redhat.com>
3792
3793 * configure.ac: Pass any --cache-file=/dev/null option on to
3794 subconfigures.
3795 * configure: Regenerate.
3796
3797 2009-09-23 Nick Clifton <nickc@redhat.com>
3798
3799 * config.sub, config.guess: Update from upstream sources.
3800
3801 2009-09-22 Loren J. Rittle <ljrittle@acm.org>
3802
3803 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Remove stray $$r/.
3804 * Makefile.in: Rebuilt.
3805
3806 2009-09-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3807
3808 PR bootstrap/32272
3809 * configure.ac: Error out if $srcdir isn't '.' but contains
3810 host-${host_noncanonical}.
3811 * configure: Regenerate.
3812
3813 2009-09-21 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3814
3815 * configure.ac: If bootstrapping a combined tree with
3816 --enable-gold, require c++ in stage1_languages.
3817 * configure: Regenerate.
3818
3819 * configure.ac: Also add target_libs of stage1_languages to
3820 bootstrap_target_libs.
3821 * configure: Regenerate.
3822
3823 * configure.ac: Diagnose --enable-build-with-cxx bootstrap
3824 with --enable-languages not containing c++.
3825 * configure: Regenerate.
3826
3827 2009-09-16 Jie Zhang <jie.zhang@analog.com>
3828
3829 * configure.ac: Disable java and boehm-gc for bfin-*-*.
3830 * configure: Regenerate.
3831
3832 2009-09-08 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3833
3834 * configure.ac: Do not use $extrasub for replacing @if/@endif
3835 parts in Makefile; instead, use additional arguments to
3836 AC_CONFIG_COMMANDS to do the replacement manually, with several
3837 sed invocations, to avoid HP-UX sed command limits.
3838 * configure: Regenerate.
3839
3840 2009-09-04 Alexandre Oliva <aoliva@redhat.com>
3841
3842 * configure.ac (with-build-config): Document. Handle without.
3843 Handle missing argument.
3844 * configure: Rebuilt.
3845
3846 2009-09-03 Alexandre Oliva <aoliva@redhat.com>
3847
3848 * configure.ac (--with-build-config): New. Set BUILD_CONFIG.
3849 Default to bootstrap-debug only if compare-debug works.
3850 * configure: Rebuilt.
3851 * Makefile.tpl: Make BUILD_CONFIG configure-configurable.
3852 * Makefile.in: Rebuilt.
3853
3854 2009-09-01 Alexandre Oliva <aoliva@redhat.com>
3855
3856 * Makefile.tpl (BUILD_CONFIG): Default to bootstrap-debug.
3857 * Makefile.in: Rebuilt.
3858
3859 2009-09-02 Paolo Bonzini <bonzini@gnu.org>
3860
3861 * Makefile.tpl (AWK): Fix typo.
3862 * Makefile.in: Regenerate.
3863
3864 2009-09-02 Paolo Bonzini <bonzini@gnu.org>
3865
3866 * configure.ac: Detect awk and sed.
3867 * Makefile.def (flags_to_pass): Add AWK and SED.
3868 * Makefile.tpl (AWK, SED): New.
3869 (BASE_FLAGS_TO_PASS): Add AWK and SED.
3870 * configure: Regenerate.
3871 * Makefile.in: Regenerate.
3872
3873 2009-09-01 Tristan Gingold <gingold@adacore.com>
3874
3875 * setup.com: Ported to Itanium VMS. Can also build using DCL scripts.
3876 Remove logical names.
3877
3878 2009-08-31 Dave Korn <dave.korn.cygwin@gmail.com>
3879
3880 * ltmain.sh (func_normal_abspath): New function.
3881 (func_relative_path): Likewise.
3882 (func_mode_help): Document new -bindir option for link mode.
3883 (func_mode_link): Add new -bindir option, and use it to place
3884 output DLL if specified.
3885
3886 2009-08-24 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3887
3888 * configure.ac (AC_PREREQ): Bump to 2.64.
3889
3890 2009-08-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3891
3892 * README-maintainer-mode: Point directly to upstream locations
3893 for autoconf, automake, libtool, gettext, instead of copies on
3894 sources.redhat.com. Document required versions.
3895 * configure.ac: Do not substitute datarootdir, htmldir,
3896 pdfdir, docdir. Do not process --with-datarootdir,
3897 --with-htmldir, --with-pdfdir, --with-docdir.
3898 * configure: Regenerate.
3899
3900 * configure: Regenerate.
3901
3902 * compile: Sync from Automake 1.11.
3903 * depcomp: Likewise.
3904 * install-sh: Likewise.
3905 * missing: Likewise.
3906 * mkinstalldirs: Likewise.
3907 * ylwrap: Likewise.
3908
3909 2009-08-19 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3910
3911 * configure.ac: Call AC_DISABLE_OPTION_CHECKING.
3912 (baseargs): Add --disable-option-checking.
3913 * configure: Regenerate.
3914
3915 * Makefile.def (configure-target-libiberty): Depend on
3916 all-binutils and all-ld.
3917 (configure-target-newlib): Likewise.
3918 * Makefile.in: Regenerate.
3919
3920 2009-08-19 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3921
3922 Sync with GCC, merge:
3923
3924 2009-07-31 Christian Bruel <christian.bruel@st.com>
3925
3926 * configure.ac (sh*-*-elf): Don't add target-libgloss to noconfigdirs.
3927 * configure: Regenerate.
3928
3929 2009-07-06 Ian Lance Taylor <iant@google.com>
3930
3931 * configure.ac: Add missing comma in AC_ARG_WITH(boot-libs).
3932 * configure: Rebuild.
3933
3934 2009-06-26 Steve Ellcey <sje@cup.hp.com>
3935
3936 PR bootstrap/40338
3937 * configure.ac (comparestring): Create new variable.
3938 * Makefile.tpl (comparestring): Use to skip some comparisions.
3939 * configure: Regenerate.
3940 * Makefile.in: Regenerate.
3941
3942 2009-06-23 Ian Lance Taylor <iant@google.com>
3943
3944 * configure.ac: Add --enable-build-with-cxx. When set, add c++ to
3945 boot_languages. Only bootstrap target libraries listed in
3946 target_libs for some boot language. Add --with-stage1-ldflags,
3947 --with-stage1-libs, --with-boot-ldflags, --with-boot-libs. Remove
3948 with_host_libstdcxx from ppllibs. Only add -fkeep-inline-functions
3949 if not building with C++.
3950 * Makefile.def: For target_module libstdc++-v3, set bootstrap=true.
3951 * Makefile.tpl (STAGE1_LDFLAGS, STAGE1_LIBS): New variables.
3952 (POSTSTAGE1_LDFLAGS, POSTSTAGE1_LIBS): New variables.
3953 (HOST_EXPORTS): Add STAGE1_LDFLAGS to LDFLAGS. Export HOST_LIBS.
3954 (POSTSTAGE1_HOST_EXPORTS): Set CXX and CXX_FOR_BUILD. Add
3955 POSTSTAGE1_LDFLAGS to LDFLAGS. Export HOST_LIBS.
3956 (POSTSTAGE1_FLAGS_TO_PASS): Likewise.
3957 * configure, Makefile.in: Rebuild.
3958
3959 2009-06-08 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3960
3961 * configure.ac: Detect MPC in default directory.
3962 * configure: Regenerate.
3963
3964 2009-06-02 Richard Sandiford <r.sandiford@uk.ibm.com>
3965
3966 * configure.ac (powerpc-*-aix*, rs6000-*-aix*): Add target-newlib
3967 to noconfdirs.
3968 * configure: Regenerate.
3969
3970 2009-05-29 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3971
3972 * Makefile.def: Add MPC support and dependencies.
3973 * configure.ac: Likewise. Reorganize GMP/MPFR checks.
3974
3975 * Makefile.in, configure: Regenerate.
3976
3977 2009-05-24 Nicolas Roche <roche@adacore.com>
3978
3979 * Makefile.tpl (compare-target): Skip ./ada/*tools directories.
3980 * Makefile.in: Regenerate.
3981
3982 2009-05-21 Dave Korn <dave.korn.cygwin@gmail.com>
3983
3984 * configure.ac (cygwin noconfigdirs): Remove libgcj.
3985 * configure: Regenerate.
3986
3987 2009-05-07 Dave Korn <dave.korn.cygwin@gmail.com>
3988
3989 * configure.ac ($with_ppl): Default to no if not supplied.
3990 ($with_cloog): Likewise.
3991 configure: Regenerate.
3992
3993 2009-04-24 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3994
3995 PR bootstrap/39739
3996 * configure.ac (extra_mpfr_configure_flags): Set and AC_SUBST.
3997 * Makefile.def (module=mpfr): Use extra_mpfr_configure_flags.
3998
3999 * configure, Makefile.in: Regenerate.
4000
4001 2009-04-14 Jakub Jelinek <jakub@redhat.com>
4002
4003 * configure.ac: Change copyright header to refer to version
4004 3 of the GNU General Public License and to point readers at the
4005 COPYING3 file and the FSF's license web page.
4006 * Makefile.def: Likewise.
4007 * Makefile.tpl: Likewise.
4008 * Makefile.in: Regenerate.
4009
4010 2009-04-09 Jack Howarth <howarth@bromo.med.uc.edu>
4011
4012 * configure.ac: Restore match for darwin9 or later. Use double
4013 brackets since regeneration eats one pair.
4014 * configure: Regenerate.
4015
4016 2009-08-18 Christopher Faylor <me+cygwin@cgf.cx>
4017
4018 * MAINTAINERS: Perform some obvious fixups.
4019
4020 2009-08-17 Ben Elliston <bje@au.ibm.com>
4021
4022 * config.sub, config.guess: Update from upstream sources.
4023
4024 2009-08-06 Michael Eager <eager@eagercon.com>
4025
4026 * configure.ac: Add Microblaze target.
4027 * configure: Regenerate.
4028
4029 2009-07-02 Tristan Gingold <gingold@adacore.com>
4030
4031 * configure.ac: Do not exclude gas for i386-*-darwin.
4032 Add a case for x86_64-*-darwin.
4033 * configure: Regenerate.
4034
4035 2009-06-26 Doug Evans <dje@sebabeach.org>
4036
4037 * Makefile.def (host_modules): Add cgen.
4038 * Makefile.in: Regenerate.
4039 * configure.ac (host_tools): Add cgen.
4040 * configure: Regenerate.
4041
4042 2009-06-17 Michael Eager <eager@eagercon.com>
4043
4044 * COPYING.LIBGLOSS: Add Xilinx license.
4045
4046 2009-06-15 Ryan Mansfield <rmansfield@qnx.com>
4047
4048 * configure.ac: Define is_elf for QNX Neutrino targets.
4049 * configure: Regenerate.
4050
4051 2009-06-03 Jerome Guitton <guitton@adacore.com>
4052 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4053
4054 * Makefile.tpl (all): Avoid a trailing backslash.
4055 * Makefile.in: Regenerate.
4056
4057 2009-06-03 Ben Elliston <bje@au.ibm.com>
4058
4059 * config.sub, config.guess: Update from upstream sources.
4060
4061 2009-06-02 Alexandre Oliva <aoliva@redhat.com>
4062
4063 * Makefile.tpl ([+compare-target+]): Compare all stage
4064 directories, rather than just gcc.
4065 * Makefile.in: Rebuilt.
4066
4067 2009-05-28 Doug Kwan <dougkwan@google.com>
4068
4069 * configure.ac: Support gold for target arm*-*-*.
4070 * configure: Regenerate.
4071
4072 2009-05-27 Alexandre Oliva <aoliva@redhat.com>
4073
4074 * Makefile.tpl (all): Avoid harmless warning in make all when
4075 gcc-bootstrap is enabled but stage_last does not exist.
4076 * Makefile.in: Rebuilt.
4077
4078 2009-05-25 Tristan Gingold <gingold@adacore.com>
4079
4080 * setup.com: Complete the file with configuration and build.
4081
4082 2009-05-18 Alexandre Oliva <aoliva@redhat.com>
4083
4084 PR other/40159
4085 * Makefile.tpl (all): Don't assume gcc-bootstrap and
4086 gcc-no-bootstrap are mutually exclusive.
4087 * Makefile.in: Rebuilt.
4088
4089 2009-05-18 Alexandre Oliva <aoliva@redhat.com>
4090
4091 PR other/40159
4092 * Makefile.tpl (all): Don't end with unconditional success.
4093 * Makefile.in: Rebuilt.
4094
4095 2009-05-12 Alexandre Oliva <aoliva@redhat.com>
4096
4097 PR target/37137
4098 * Makefile.def (flags_to_pass): Remove redundant and incomplete
4099 STAGE1_CFLAGS, STAGE2_CFLAGS, STAGE3_CFLAGS, and STAGE4_CFLAGS.
4100 Add FLAGS_FOR_TARGET and BUILD_CONFIG.
4101 (bootstrap_stage): Remove bootstrap-debug custom stages. Turn
4102 stage_configureflags, stage_cflags and stage_libcflags into
4103 explicit Makefile macros.
4104 * Makefile.tpl (HOST_EXPORTS, EXTRA_HOST_FLAGS): Pass GCJ and
4105 GFORTRAN.
4106 (POSTSTAGE1_HOST_EXPORTS): Add XGCC_FLAGS_FOR_TARGET and TFLAGS to
4107 CC. Set CC_FOR_BUILD from CC.
4108 (BASE_TARGET_EXPORTS, RAW_CXX_TARGET_EXPORTS,
4109 NORMAL_TARGET_EXPORTS): Move SYSROOT_CFLAGS_FOR_TARGET and
4110 DEBUG_PREFIX_CFLAGS_FOR_TARGET from CFLAGS and CXXFLAGS to
4111 XGCC_FLAGS_FOR_TARGET. Add it along with TFLAGS to CC, CXX, GCJ,
4112 and GFORTRAN.
4113 (TFLAGS, STAGE_CFLAGS, STAGE_TFLAGS, STAGE_CONFIGURE_FLAGS): New.
4114 (_LIBCFLAGS): Renamed to _TFLAGS.
4115 (do-compare-debug, do-compare3-debug): Drop.
4116 (CC, GCC_FOR_TARGET, CXX_FOR_TARGET, RAW_CXX_FOR_TARGET,
4117 GCJ_FOR_TARGET, GFORTRAN_FOR_TARGET): Remove FLAGS_FOR_TARGET.
4118 (FLAGS_FOR_TARGET, SYSROOT_CFLAGS_FOR_TARGET,
4119 DEBUG_PREFIX_CFLAGS_FOR_TARGET): Move down.
4120 (XGCC_FLAGS_FOR_TARGET): New.
4121 (BASE_FLAGS_TO_PASS): Pass STAGEid_CFLAGS, STAGEid_TFLAGS and TFLAGS.
4122 (EXTRA_HOST_FLAGS): Pass GCJ and GFORTRAN.
4123 (POSTSTAGE1_FLAGS_TO_PASS): Move SYSROOT_CFLAGS_FOR_TARGET and
4124 DEBUG_PREFIX_CFLAGS_FOR_TARGET from CFLAGS, CXXFLAGS, LIBCFLAGS,
4125 LIBCXXFLAGS to XGCC_FLAGS_FOR_TARGET. Add it along with TFLAGS
4126 to CC, CXX, GCJ, and GFORTRAN. Pass XGCC_FLAGS_FOR_TARGET and
4127 TFLAGS.
4128 (BUILD_CONFIG): Include if requested.
4129 (all): Set TFLAGS on bootstrap.
4130 (configure-stageid-prefixmodule): Pass TFLAGS, adjust FLAGS.
4131 (all-stageid-prefixmodule): Likewise.
4132 (do-clean, distclean-stageid): Set TFLAGS.
4133 (restrap): Fix whitespace.
4134 * Makefile.in: Rebuilt.
4135
4136 2009-04-25 Eric Botcazou <ebotcazou@adacore.com>
4137
4138 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Add GNATBIND.
4139 (POSTSTAGE1_FLAGS_TO_PASS): Pick up exported value for GNATBIND.
4140 * Makefile.in: Regenerate.
4141
4142 2009-04-24 Eli Zaretskii <eliz@gnu.org>
4143
4144 * config.guess (pc:*:*:*): Return i586-pc-msdosdjgpp, for
4145 consistency with config.sub. (Update from upstream sources.)
4146
4147 2009-04-21 Joseph Myers <joseph@codesourcery.com>
4148
4149 * texinfo/texinfo.tex: Update to version 2009-03-28.05.
4150
4151 2009-04-17 Ben Elliston <bje@au.ibm.com>
4152
4153 * config.sub, config.guess: Update from upstream sources.
4154
4155 2009-04-15 Anthony Green <green@moxielogic.com>
4156
4157 * configure.ac: Add moxie support.
4158 * configure: Rebuilt.
4159
4160 2009-04-09 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4161
4162 * configure.ac: Bump minimum GMP/MPFR versions to 4.2 and 2.3.1.
4163 * configure: Regenerate.
4164
4165 2009-04-09 H.J. Lu <hongjiu.lu@intel.com>
4166
4167 PR gas/10039
4168 * configure.ac: Require texinfo 4.7.
4169 * configure: Regenerated.
4170
4171 2009-04-09 Steve Ellcey <sje@cup.hp.com>
4172
4173 * Makefil.def (languages): New entries.
4174 * Makefile.tpl (check-gcc-*): New generic target.
4175 * Makefile.in: Regenerate.
4176
4177 2009-03-27 Eli Zaretskii <eliz@gnu.org>
4178
4179 * djunpack.bat: Use ".." quoting in Sed command, for the sake of
4180 Windows builds of Sed.
4181
4182 2009-03-18 Tom Tromey <tromey@redhat.com>
4183
4184 * configure: Rebuild.
4185 * configure.ac (host_libs): Add libiconv.
4186 * Makefile.in: Rebuild.
4187 * Makefile.def (host_modules): Add libiconv.
4188 (configure-gdb, all-gdb): Depend on libiconv.
4189
4190 2009-03-16 Tristan Gingold <gingold@adacore.com>
4191
4192 * configure.ac: Treat gdb as supported on x86_64-darwin.
4193 * configure: Regenerate.
4194
4195 2009-03-16 Joseph Myers <joseph@codesourcery.com>
4196
4197 Merge from GCC:
4198
4199 2009-03-16 Joseph Myers <joseph@codesourcery.com>
4200
4201 * configure.ac (--with-host-libstdcxx): New option.
4202 * configure: Regenerate.
4203
4204 2009-01-29 Robert Millan <rmh@aybabtu.com>
4205
4206 * configure.ac: Recognize GNU/kOpenSolaris (*-*-kopensolaris*-gnu).
4207 * configure: Regenerate.
4208
4209 2009-01-12 Sebastian Pop <sebastian.pop@amd.com>
4210
4211 PR tree-optimization/38515
4212 * configure.ac (cloog-polylib): Removed.
4213 (with_ppl, with_cloog): Test for "no".
4214 * configure: Regenerated.
4215
4216 2009-03-01 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4217
4218 Backport from git Libtool:
4219
4220 2009-01-19 Robert Millan <rmh@aybabtu.com>
4221 Support GNU/kOpenSolaris.
4222 * libltdl/m4/libtool.m4 (_LT_SYS_DYNAMIC_LINKER)
4223 (_LT_CHECK_MAGIC_METHOD, _LT_COMPILER_PIC, _LT_LINKER_SHLIBS)
4224 (_LT_LANG_CXX_CONFIG) [kopensolaris*-gnu]: Recognize
4225 GNU/kOpenSolaris.
4226
4227 2009-02-05 Andreas Schwab <schwab@suse.de>
4228
4229 * Makefile.tpl (stage_last): Define $r and $s before using
4230 $(RECURSE_FLAGS_TO_PASS).
4231 * Makefile.in: Regenerate
4232
4233 2009-01-21 Jeff Johnston <jjohnstn@redhat.com>
4234
4235 * COPYING.NEWLIB: Add ARM license.
4236
4237 2009-01-16 Alan Modra <amodra@bigpond.net.au>
4238
4239 * Makefile.def (configure-opcodes): Depend on configure-libiberty.
4240 (all-opcodes): Depend on all-libiberty.
4241 * Makefile.in: Regenerate.
4242
4243 2009-01-15 Douglas B Rupp <rupp@gnat.com>
4244
4245 * configure.ac (ia64*-*-*vms*): Add case with no gdb or ld support.
4246 * configure: Regenerate.
4247
4248 2008-12-18 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4249
4250 Backport link test fix from upstream Libtool:
4251
4252 * libltdl.m4 (_LT_SYS_DYNAMIC_LINKER, _LT_LINKER_SHLIBS):
4253 Add cache variables to tests that require the linker to work.
4254 For shlibpath_overrides_runpath, this also changes the semantics
4255 to let the result from the C compiler take precedence.
4256 compiler take precedence.
4257
4258 2008-12-02 Ben Elliston <bje@au.ibm.com>
4259
4260 * config.sub, config.guess: Update from upstream sources.
4261
4262 2008-12-17 Jeff Johnston <jjohnstn@redhat.com>
4263
4264 * COPYING.NEWLIB: Updated.
4265 * COPYING.LIBGLOSS: Ditto.
4266
4267 2008-12-16 Paolo Bonzini <bonzini@gnu.org>
4268
4269 Sync with GCC:
4270
4271 2008-12-12 Sebastian Pop <sebastian.pop@amd.com>
4272
4273 * configure.ac (ppllibs): Add by default the lib flags.
4274 * configure: Regenerate.
4275
4276 2008-12-04 Jack Howarth <howarth@bromo.med.uc.edu>
4277
4278 * configure.ac: Add double brackets on darwin[912].
4279 * configure: Regenerate.
4280
4281 2008-12-02 Jack Howarth <howarth@bromo.med.uc.edu>
4282
4283 * configure.ac: Expand to darwin10 and later.
4284 * configure: Regenerate.
4285
4286 2008-12-02 Andreas Schwab <schwab@suse.de>
4287
4288 * Makefile.def: configure-target-boehm-gc depends on
4289 all-target-libstdc++-v3.
4290 * Makefile.in: Regenerate.
4291
4292 2008-12-02 Ben Elliston <bje@au.ibm.com>
4293
4294 * config.sub, config.guess: Update from upstream sources.
4295
4296 2008-11-27 Joseph Myers <joseph@codesourcery.com>
4297
4298 Merge from GCC:
4299
4300 2007-12-02 Matthias Klose <doko@ubuntu.com>
4301
4302 * config-ml.in: Remove 64bit configure tests.
4303
4304 2008-05-14 Rafael Espindola <espindola@google.com>
4305
4306 * config-ml.in: don't handle --enable-shared and --enable-static.
4307
4308 2008-09-02 Sebastian Pop <sebastian.pop@amd.com>
4309 Tobias Grosser <grosser@fim.uni-passau.de>
4310 Jan Sjodin <jan.sjodin@amd.com>
4311 Harsha Jagasia <harsha.jagasia@amd.com>
4312 Dwarakanath Rajagopal <dwarak.rajagopal@amd.com>
4313 Konrad Trifunovic <konrad.trifunovic@inria.fr>
4314 Adrien Eliche <aeliche@isty.uvsq.fr>
4315
4316 Merge from graphite branch.
4317 * configure: Regenerate.
4318 * Makefile.in: Regenerate.
4319 * configure.ac (host_libs): Add ppl and cloog.
4320 Add checks for PPL and CLooG.
4321 * Makefile.def (ppl, cloog): Added modules and dependences.
4322 * Makefile.tpl (PPLLIBS, PPLINC, CLOOGLIBS, CLOOGINC): New.
4323 (HOST_PPLLIBS, HOST_PPLINC, HOST_CLOOGLIBS, HOST_CLOOGINC): New.
4324
4325 2008-09-03 Richard Guenther <rguenther@suse.de>
4326
4327 * configure.ac: Always pass -DCLOOG_PPL_BACKEND to the
4328 cloog test.
4329 * configure: Re-generate.
4330
4331 2008-09-03 Sebastian Pop <sebastian.pop@amd.com>
4332
4333 * configure.ac (--with-cloog-polylib): New.
4334 (--disable-cloog-version-check): New.
4335 (--disable-ppl-version-check): New.
4336 * configure: Re-generate.
4337
4338 2008-09-05 Richard Guenther <rguenther@suse.de>
4339
4340 * configure.ac: Initialize clooglibs to -lcloog.
4341 * configure: Re-generate.
4342
4343 2008-10-13 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4344
4345 * configure.ac (MPFR check): Bump minimum version to 2.3.0 and
4346 recommended version to 2.3.2.
4347
4348 * configure: Regenerate.
4349
4350 2008-10-31 Ben Elliston <bje@au.ibm.com>
4351
4352 * configure.ac (spu-*-*): Remove special case.
4353 * configure: Regenerate.
4354
4355 Complete comment text from GCC version of:
4356
4357 2008-08-31 Aaron W. LaFramboise <aaronavay62@aaronwl.com>
4358
4359 * configure.ac (RPATH_ENVVAR): Use PATH on Windows.
4360 (GCC_SHLIB_SUBDIR): New.
4361 * Makefile.tpl (HOST_LIB_PATH_gcc): Use GCC_SHLIB_SUBDIR.
4362 * configure: Regenerate.
4363 * Makefile.in: Regenerate.
4364
4365 2008-11-27 Tristan Gingold <gingold@adacore.com>
4366
4367 * configure.ac: Build gdb for i?86-*-darwin*
4368 * configure: Regenerated.
4369
4370 2008-11-14 Daniel Jacobowitz <dan@codesourcery.com>
4371
4372 PR bootstrap/38014
4373 PR bootstrap/37923
4374
4375 Revert:
4376
4377 2008-10-24 Daniel Jacobowitz <dan@codesourcery.com>
4378
4379 * Makefile.tpl (HOST_EXPORTS): Correct CPPFLAGS typo.
4380 * Makefile.in: Regenerated.
4381
4382 2008-10-22 Daniel Jacobowitz <dan@codesourcery.com>
4383
4384 PR gdb/921
4385 PR gdb/1646
4386 PR gdb/2175
4387 PR gdb/2176
4388
4389 * Makefile.def (flags_to_pass): Add CPPFLAGS_FOR_BUILD and CPPFLAGS.
4390 * Makefile.tpl (BUILD_EXPORTS): Set CPPFLAGS.
4391 (EXTRA_BUILD_FLAGS): Correct typo. Pass CPPFLAGS.
4392 (HOST_EXPORTS): Pass CPPFLAGS.
4393 (CPPFLAGS_FOR_BUILD, CPPFLAGS, CPPFLAGS_FOR_TARGET): Define.
4394 (LDFLAGS_FOR_TARGET): Initialize from configure script.
4395 (EXTRA_TARGET_FLAGS): Set CPPFLAGS.
4396 * Makefile.in, configure: Regenerated.
4397 * configure.ac: Set CPPFLAGS_FOR_TARGET, LDFLAGS_FOR_TARGET,
4398 and CPPFLAGS_FOR_BUILD.
4399
4400 2008-10-29 Stefan Schulze Frielinghaus <xxschulz@de.ibm.com>
4401
4402 * configure.ac [spu-*-*]: Do not set skipdirs.
4403 * configure: Re-generate.
4404
4405 2008-10-24 Daniel Jacobowitz <dan@codesourcery.com>
4406
4407 * Makefile.tpl (HOST_EXPORTS): Correct CPPFLAGS typo.
4408 * Makefile.in: Regenerated.
4409
4410 2008-10-22 Daniel Jacobowitz <dan@codesourcery.com>
4411
4412 PR gdb/921
4413 PR gdb/1646
4414 PR gdb/2175
4415 PR gdb/2176
4416
4417 * Makefile.def (flags_to_pass): Add CPPFLAGS_FOR_BUILD and CPPFLAGS.
4418 * Makefile.tpl (BUILD_EXPORTS): Set CPPFLAGS.
4419 (EXTRA_BUILD_FLAGS): Correct typo. Pass CPPFLAGS.
4420 (HOST_EXPORTS): Pass CPPFLAGS.
4421 (CPPFLAGS_FOR_BUILD, CPPFLAGS, CPPFLAGS_FOR_TARGET): Define.
4422 (LDFLAGS_FOR_TARGET): Initialize from configure script.
4423 (EXTRA_TARGET_FLAGS): Set CPPFLAGS.
4424 * Makefile.in, configure: Regenerated.
4425 * configure.ac: Set CPPFLAGS_FOR_TARGET, LDFLAGS_FOR_TARGET,
4426 and CPPFLAGS_FOR_BUILD.
4427
4428 2008-09-29 Peter O'Gorman <pogma@thewrittenword.com>
4429
4430 * libtool.m4: Update to libtool 2.2.6.
4431 * lt~obsolete.m4: Update to libtool 2.2.6.
4432 * ltmain.sh: Update to libtool 2.2.6.
4433 * ltsugar.m4: Update to libtool 2.2.6.
4434 * ltversion.m4: Update to libtool 2.2.6.
4435 * ltoptions.m4: Update to libtool 2.2.6.
4436 * ltgcc.m4: Update to match changes from libtool 2.2.6.
4437
4438 2008-08-31 Aaron W. LaFramboise <aaronavay62@aaronwl.com>
4439
4440 * configure.ac (RPATH_ENVVAR): Use PATH on Windows.
4441 (GCC_SHLIB_SUBDIR): New.
4442 * Makefile.tpl (HOST_LIB_PATH_gcc): Use GCC_SHLIB_SUBDIR.
4443 * configure: Regenerate.
4444 * Makefile.in: Regenerate.
4445
4446 2008-08-28 Tristan Gingold <gingold@adacore.com>
4447
4448 * configure.ac (powerpc-*-darwin*, i?86-*-darwin*,x86_64-*-darwin9):
4449 Enable bfd, binutils and opcodes.
4450 * configure: Regenerate.
4451
4452 2008-08-16 Nicolas Roche <roche@adacore.com>
4453
4454 * Makefile.tpl: Add BOOT_ADAFLAGS.
4455 * Makefile.in: Regenerate.
4456
4457 2008-08-16 Richard Sandiford <rdsandiford@googlemail.com>
4458
4459 * configure.ac (mips*-*-*linux*, mips*-*-gnu*): Use mt-mips-gnu.
4460 * configure: Regenerate.
4461
4462 2008-07-30 Paolo Bonzini <bonzini@gnu.org>
4463
4464 Sync with gcc:
4465 2008-07-30 Paolo Bonzini <bonzini@gnu.org>
4466
4467 * configure.ac: Add makefile fragments for hpux.
4468 * Makefile.def (flags_to_pass): Add ADA_CFLAGS.
4469 * Makefile.tpl (HOST_EXPORTS): Pass ADA_CFLAGS.
4470 * configure: Regenerate.
4471 * Makefile.in: Regenerate.
4472
4473 2008-06-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4474
4475 * Makefile.tpl ($(srcdir)/configure): Update dependencies.
4476 * Makefile.in: Regenerate.
4477 * configure: Regenerate.
4478
4479 2008-06-18 Ian Lance Taylor <iant@google.com>
4480
4481 * src-release (BINUTILS_SUPPORT_DIRS): Remove mkdep and depcomp.
4482
4483 * src-release (BINUTILS_SUPPORT_DIRS): Add depcomp.
4484
4485 2008-06-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4486
4487 * configure: Regenerate.
4488
4489 2008-06-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4490
4491 * configure.ac: Set TOPLEVEL_CONFIGURE_ARGUMENTS early, when
4492 "$@" is still intact with both Autoconf 2.59 and 2.62.
4493 * configure: Regenerate.
4494
4495 2008-06-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4496
4497 * Makefile.tpl: Fix comment errors.
4498 * Makefile.in: Regenerate.
4499
4500 2008-06-13 Julian Brown <julian@codesourcery.com>
4501
4502 * configure.ac (arm*-*-linux-gnueabi): Don't disable building
4503 of libobjc for ARM EABI Linux.
4504 * configure: Regenerate.
4505
4506 2008-06-12 David S. Miller <davem@davemloft.net>
4507 David Edelsohn <edelsohn@gnu.org>
4508
4509 * configure.ac: Add powerpc*-*-* to gold supported targets.
4510 * configure: Regenerate.
4511
4512 2008-06-08 Joseph Myers <joseph@codesourcery.com>
4513
4514 PR tree-optimization/36218
4515 * Makefile.def (flags_to_pass): Add LDFLAGS_FOR_BUILD.
4516 * Makefile.tpl (EXTRA_BUILD_FLAGS): Define.
4517 (all prefix="build-"): Pass them to build-system sub-makes.
4518 * Makefile.in: Regenerate.
4519
4520 2008-05-16 Daniel Jacobowitz <dan@codesourcery.com>
4521
4522 * src-release (DEVO_SUPPORT): Add ChangeLog, MAINTAINERS,
4523 README-maintainer-mode, lt~obsolete.m4, ltgcc.m4, depcomp,
4524 mkdep, and compile. Update comments.
4525 (ETC_SUPPORT): Add ChangeLog and update comments.
4526
4527 2008-05-11 Ian Lance Taylor <iant@google.com>
4528
4529 * src-release (BINUTILS_SUPPORT_DIRS): Add elfcpp and gold.
4530
4531 2008-04-18 Paolo Bonzini <bonzini@gnu.org>
4532
4533 Sync with gcc:
4534 2008-04-18 Paolo Bonzini <bonzini@gnu.org>
4535
4536 PR bootstrap/35457
4537 * configure.ac: Include override.m4.
4538 * configure: Regenerate.
4539
4540 2008-04-18 Paolo Bonzini <bonzini@gnu.org>
4541
4542 * Makefile.tpl (restrap): Call `make all' using double-colon rules.
4543 * Makefile.in: Regenerate.
4544
4545 2008-04-11 Eric B. Weddington <eweddington@cso.atmel.com>
4546
4547 * configure.ac: Do not build libssp for the AVR.
4548 * configure: Regenerate.
4549
4550 2008-04-18 Nick Clifton <nickc@redhat.com>
4551
4552 * MAINTAINERS: Replace reference to configure.in with reference to
4553 configure.ac.
4554
4555 2008-04-18 M R Swami Reddy <MR.Swami.Reddy@nsc.com>
4556
4557 * configure.ac (cr16-*-*): Add case for cr16 target and include gdb
4558 as nonconfigurable directories list.
4559 * configure: Regenerate.
4560
4561 2008-04-14 David S. Miller <davem@davemloft.net>
4562
4563 * configure.ac: Add sparc*-*-* to gold supported targets.
4564 * configure: Regenerate.
4565
4566 2008-04-14 Ben Elliston <bje@au.ibm.com>
4567
4568 * config.sub, config.guess: Update from upstream sources.
4569
4570 2008-04-12 Hans-Peter Nilsson <hp@axis.com>
4571
4572 * Makefile.tpl <gcc>: Error early unless at least GNU make 3.80.
4573 * Makefile.in: Regenerate.
4574
4575 2008-04-07 Ian Lance Taylor <iant@google.com>
4576
4577 * Makefile.def: check-gold depends upon all-binutils.
4578 * Makefile.in: Regenerate.
4579
4580 2008-04-04 Nick Clifton <nickc@redhat.com>
4581
4582 PR binutils/4334
4583 * configure.ac: Run ACX_CHECK_CYGWIN_CAT_WORKS for cygwin hosted
4584 builds.
4585 * configure: Regenerate.
4586
4587 2008-04-04 NightStrike <NightStrike@gmail.com>
4588
4589 PR other/35151
4590 * configure.ac: Combine rules for mingw32 and mingw64.
4591 * configure: Regenerate.
4592
4593 2008-03-27 Paolo Bonzini <bonzini@gnu.org>
4594
4595 * Makefile.tpl (PICFLAG, PICFLAG_FOR_TARGET): Remove.
4596 * Makefile.in: Regenerate.
4597
4598 2008-03-20 Ian Lance Taylor <iant@google.com>
4599
4600 * configure.ac: Add support for --enable-gold.
4601 * Makefile.def: Add gold as a directory like ld.
4602 * configure, Makefile.in: Regenerate.
4603
4604 2008-03-19 Andreas Krebbel <krebbel1@de.ibm.com>
4605
4606 * opcodes/s390-mkopc.c (s390_opcode_cpu_val): S390_OPCODE_Z10 added.
4607 (s390_cond_extensions): Reduced extensions to the compare related.
4608 (main): z10 cpu type option added.
4609 (expandConditionalJump): Renamed to ...
4610 (insertExpandedMnemonic): ... this.
4611
4612 * opcodes/s390-opc.c: Re-group the operand format makros.
4613 (INSTR_RIE_RRPU, INSTR_RIE_RRP0, INSTR_RIE_RUPI,
4614 INSTR_RIE_R0PI, INSTR_RIE_RUPU, INSTR_RIE_R0PU, INSTR_RIE_R0IU,
4615 INSTR_RIE_R0I0, INSTR_RIE_R0UU, INSTR_RIE_R0U0,
4616 INSTR_RIE_RRUUU, INSTR_RIS_RURDI, INSTR_RIS_R0RDI, INSTR_RIS_RURDU,
4617 INSTR_RIS_R0RDU, INSTR_RRF_U0RR, INSTR_RRF_00RR, INSTR_RRS_RRRDU,
4618 INSTR_RRS_RRRD0, INSTR_RXY_URRD, INSTR_SIY_IRD, INSTR_SIL_RDI,
4619 INSTR_SIL_RDU): New instruction formats added.
4620 (MASK_RIE_RRPU, MASK_RIE_RRP0, MASK_RIE_RUPI, MASK_RIE_R0PI,
4621 MASK_RIE_RUPU, MASK_RIE_R0PU, MASK_RIE_R0IU, MASK_RIE_R0I0,
4622 MASK_RIE_R0UU, MASK_RIE_R0U0, MASK_RIE_RRUUU, MASK_RIS_RURDI,
4623 MASK_RIS_R0RDI, MASK_RIS_RURDU, MASK_RIS_R0RDU, MASK_RRF_U0RR,
4624 MASK_RRF_00RR, MASK_RRS_RRRDU, MASK_RRS_RRRD0, MASK_RXY_URRD,
4625 MASK_SIY_IRD, MASK_SIL_RDI, MASK_SIL_RDU): New instruction format
4626 masks added.
4627 (s390_opformats): New formats added "ris", "rrs", "sil".
4628 * opcodes/s390-opc.txt: Add the conditional jumps with the
4629 extensions removed from automatic expansion in s390-mkopc.c manually.
4630 (asi - trtre): Add new System z10 EC instructions.
4631 * include/opcode/s390.h (s390_opcode_cpu_val): S390_OPCODE_Z10 added.
4632
4633 2008-03-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4634
4635 * configure.ac: m4_include config/proginstall.m4.
4636 * configure: Regenerate.
4637
4638 2008-03-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4639
4640 Backport from upstream Libtool:
4641
4642 2007-10-12 Eric Blake <ebb9@byu.net>
4643
4644 Deal with Autoconf 2.62's semantic change in m4_append.
4645 * ltsugar.m4 (lt_append): Replace broken versions of
4646 m4_append.
4647 (lt_if_append_uniq): Don't require separator to be overquoted,
4648 and avoid broken m4_append.
4649 (lt_dict_add): Fix typo.
4650 * libtool.m4 (_LT_DECL): Don't overquote separator.
4651
4652 2008-03-13 David Edelsohn <edelsohn@gnu.org>
4653
4654 * config.rpath: Add AIX 6 support.
4655
4656 2008-03-13 Paolo Bonzini <bonzini@gnu.org>
4657
4658 * Makefile.def (stageprofile). Remove -fprofile-generate
4659 from stage_libcflags.
4660 * Makefile.in: Regenerate.
4661
4662 2008-03-13 Ben Elliston <bje@au.ibm.com>
4663
4664 * config.sub, config.guess: Update from upstream sources.
4665
4666 2008-03-06 Florian Krohm <fkrohm@us.ibm.com>
4667
4668 * s390-opc.c (INSTR_RSL_R0RD): Fix operands.
4669 * s390-opc.txt (cmpsc): Duplicate entry removed.
4670 (dxr, sqdr, sqer, cxfbr, cdfbr, cefbr, lzer, lzdr, lzxr,
4671 cegbr, cdgbr, cxgbr, cegr, cdgr, cxgr, cxfr, cdfr, cefr, fixr, fidr,
4672 fier, cu42, cu41): Fix operand format.
4673
4674 2008-02-20 Paolo Bonzini <bonzini@gnu.org>
4675
4676 PR bootstrap/32009
4677 PR bootstrap/32161
4678
4679 * configure.ac (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Compute here.
4680 * configure: Regenerate.
4681
4682 * Makefile.def: Define stage_libcflags for all bootstrap stages.
4683 * Makefile.tpl (BOOT_LIBCFLAGS, STAGE2_LIBCFLAGS, STAGE3_LIBCFLAGS,
4684 STAGE4_LIBCFLAGS): New.
4685 (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Subst from autoconf, without
4686 $(SYSROOT_CFLAGS_FOR_TARGET) and $(DEBUG_PREFIX_CFLAGS_FOR_TARGET).
4687 (BASE_TARGET_EXPORTS): Append them here to C{,XX}FLAGS.
4688 (EXTRA_TARGET_FLAGS): Append them here to {LIB,}C{,XX}FLAGS.
4689 (configure-stage[+id+]-[+prefix+][+module+]): Pass stage_libcflags
4690 for target modules. Don't export LIBCFLAGS.
4691 (all-stage[+id+]-[+prefix+][+module+]): Pass stage_libcflags; pass
4692 $(BASE_FLAGS_TO_PASS) where [+args+] was passed, and [+args+] after
4693 the overridden CFLAGS_FOR_TARGET and CXXFLAGS_FOR_TARGET.
4694 (invocations of `all'): Replace $(TARGET_FLAGS_TO_PASS) with
4695 $(EXTRA_TARGET_FLAGS), $(FLAGS_TO_PASS) with $(EXTRA_HOST_FLAGS).
4696 * Makefile.in: Regenerate.
4697
4698 2008-02-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4699
4700 PR libgcj/33085
4701 * libtool.m4 (_LT_COMPILER_PIC) [ mingw, cygwin ] <GCJ>:
4702 Do not use -DDLL_EXPORT. Backport from upstream.
4703
4704 2008-02-14 Nick Clifton <nickc@redhat.com>
4705
4706 Import this patch from gcc:
4707 2008-01-24 David Edelsohn <edelsohn@gnu.org>
4708
4709 * libtool.m4: Backport AIX 6 support from ToT Libtool.
4710
4711 2008-02-02 Hans-Peter Nilsson <hp@axis.com>
4712
4713 * configure.ac: Enable fortran for cris-*-elf and crisv32-*-elf.
4714 * configure: Regenerate.
4715
4716 2008-01-31 Marc Gauthier <marc@tensilica.com>
4717
4718 * configure.ac (xtensa*-*-*): Recognize processor variants.
4719 * configure: Regenerate.
4720
4721 2008-01-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4722
4723 PR bootstrap/34922
4724 * configure.ac (PARSE_ARGS): Push suitable setting of
4725 ac_subdirs_all, for `./configure --help=recursive'.
4726 Handle `+' in generic toplevel directory disabling.
4727 * configure: Regenerate.
4728
4729 2008-01-23 Ben Elliston <bje@au.ibm.com>
4730
4731 * config.sub, config.guess: Update from upstream sources.
4732
4733 2008-01-08 Ben Elliston <bje@au.ibm.com>
4734
4735 * config.sub, config.guess: Update from upstream sources.
4736
4737 2007-12-19 Jeff Johnston <jjohnstn@redhat.com>
4738
4739 * COPYING.LIBGLOSS: Update default copyright.
4740
4741 2007-12-19 Jeff Johnston <jjohnstn@redhat.com>
4742
4743 * COPYING.NEWLIB: Update default copyright.
4744
4745 2007-12-17 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4746
4747 * configure.ac: Change required MPFR from 2.2.0 -> 2.2.1.
4748 Change recommended MPFR from 2.2.1 > 2.3.0.
4749 * configure: Regenerate.
4750
4751 2007-12-13 Richard Sandiford <rsandifo@nildram.co.uk>
4752
4753 * Makefile.tpl (CFLAGS_FOR_TARGET): Add -g.
4754 (CXXFLAGS_FOR_TARGET): Add -O2 -g.
4755 * Makefile.in: Regenerate.
4756
4757 2007-12-10 Andreas Tobler <a.tobler@schweiz.org>
4758
4759 * configure.ac: Enable libjava for x86_64-*-darwin9.
4760 * configure: Regenerate.
4761
4762 2007-12-05 Ben Elliston <bje@au.ibm.com>
4763
4764 * config.sub, config.guess: Update from upstream sources.
4765
4766 2007-11-28 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4767
4768 * config-ml.in: Robustify against white space in absolute file
4769 names.
4770
4771 * config-ml.in (multi-clean): Substitute ${Makefile}.
4772 Remove superfluous ${Makefile} in list.
4773
4774 2007-10-23 Daniel Jacobowitz <dan@codesourcery.com>
4775
4776 * Makefile.def (dependencies): Make configure-gdb depend on
4777 all-intl.
4778 * Makefile.in: Regenerated.
4779
4780 2007-10-15 Patrick Mansfield <patmans@us.ibm.com>
4781
4782 * Makefile.def: To avoid problems running with parallel makes,
4783 build newlib before libgloss so that target specific header
4784 files are availble.
4785 * Makefile.in: Regenerate.
4786
4787 2007-10-11 Daniel Jacobowitz <dan@codesourcery.com>
4788
4789 * Makefile.def (dependencies): Add all-gdb -> all-libdecnumber.
4790 * Makefile.in: Regenerate.
4791
4792 2007-10-11 Daniel Jacobowitz <dan@codesourcery.com>
4793
4794 * src-release (GDB_SUPPORT_DIRS): Add libdecnumber.
4795 * libdecnumber: New directory, imported from GCC.
4796
4797 2007-10-08 Mike Frysinger <vapier@gentoo.org>
4798
4799 * configure.ac (CFLAGS_FOR_BUILD, CXXFLAGS_FOR_BUILD,
4800 LDFLAGS_FOR_BUILD): Default them to host flags only for $host = $build.
4801 Set default CXXFLAGS_FOR_BUILD to CXXFLAGS, not CFLAGS. Set default
4802 LDFLAGS_FOR_BUILD to LDFLAGS, not CFLAGS.
4803 * configure: Regenerate.
4804
4805 2007-10-01 Paolo Bonzini <bonzini@gnu.org>
4806
4807 * Makefile.tpl (AR_FOR_BUILD, AS_FOR_BUILD, CXX_FOR_BUILD,
4808 DLLTOOL_FOR_BUILD, GCJ_FOR_BUILD, GFORTRAN_FOR_BUILD,
4809 LDFLAGS_FOR_BUILD, LD_FOR_BUILD, NM_FOR_BUILD, RANLIB_FOR_BUILD,
4810 WINDMC_FOR_BUILD, WINDRES_FOR_BUILD): Use autoconf substitutions.
4811 * configure.ac: Default them to host tools for $host = $build.
4812 Subst them.
4813
4814 * configure: Regenerate.
4815 * Makefile.in: Regenerate.
4816
4817 2007-09-20 Richard Sandiford <rsandifo@nildram.co.uk>
4818
4819 * configure.ac (mipsisa*-*-elfoabi*): New stanza.
4820 * configure: Regenerate.
4821
4822 2007-09-19 Benjamin Kosnik <bkoz@redhat.com>
4823
4824 * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Move libgomp before
4825 libstdc++.
4826 * Makefile.def: Add libgomp config as a maybe dependency for libstdc++.
4827 * configure: Regenerate.
4828 * Makefile.in: Regenerate.
4829
4830 2007-09-17 Andreas Schwab <schwab@suse.de>
4831
4832 * configure.ac: Raise minimum makeinfo version to 4.6.
4833 * configure: Regenerate.
4834
4835 2007-09-15 Alan Modra <amodra@bigpond.net.au>
4836
4837 * configure.ac: Correct makeinfo version check.
4838 * configure: Regenerate.
4839
4840 2007-09-14 Richard Sandiford <richard@codesourcery.com>
4841
4842 * configure.ac (mips*-sde-elf*): New stanza. Add target-libiberty
4843 to $skipdirs and only disable gprof for newlib. Use the normal
4844 mips*-elf* handling in other respects.
4845 * configure: Regnerate.
4846
4847 2007-09-12 David Daney <ddaney@avtrex.com>
4848
4849 * configure.ac: Remove mips64*-*-linux* noconfigdirs section, thus
4850 enabling libgcj.
4851 * configure: Regenerate.
4852
4853 2007-09-12 Richard Guenther <rguenther@suse.de>
4854
4855 * configure.ac (--enable-stage1-checking): If neither --enable-checking
4856 nor --disable-checking is provided also turn on yes and types
4857 checking for stage1.
4858 * configure: Re-generate.
4859
4860 2007-09-11 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
4861
4862 PR target/33281
4863 * configure.ac: Use config/mh-mingw on mingw.
4864 * configure: Regenerate.
4865
4866 2007-09-10 Rask Ingemann Lambertsen <rask@sygehus.dk>
4867
4868 PR other/32154
4869 * configure.ac: For libgloss targets, point the linker to the linker
4870 script, startup code and simulator library.
4871 * configure: Regenerate.
4872
4873 2007-09-09 Andrew Haley <aph@redhat.com>
4874
4875 * configure.ac (noconfigdirs): Remove target-libffi and
4876 target-libjava.
4877
4878 2007-08-29 Nick Clifton <nickc@redhat.com>
4879
4880 * config.sub, config.guess: Update from upstream sources.
4881
4882 2007-08-21 Richard Guenther <rguenther@suse.de>
4883
4884 * configure.ac: Add types checking to stage1 checking flags.
4885 * configure: Regenerate.
4886
4887 2007-08-18 Paul Brook <paul@codesourcery.com>
4888 Joseph Myers <joseph@codesourcery.com>
4889
4890 * Makefile.tpl (DEBUG_PREFIX_CFLAGS_FOR_TARGET): New.
4891 (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Include it.
4892 * Makefile.in: Regenerate.
4893 * configure.ac (--with-debug-prefix-map): New.
4894 * configure: Regenerate.
4895
4896 2007-08-17 Richard Sandiford <richard@codesourcery.com>
4897 Nigel Stephens <nigel@mips.com>
4898
4899 * configure.ac (mips*-sde-elf*): New stanza. Use config/mt-sde
4900 as target_makefile_frag.
4901 * configure: Regenerate.
4902
4903 2007-08-16 Alexandre Oliva <aoliva@redhat.com>
4904
4905 * Makefile.def (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS):
4906 Add to flags_to_pass. Adjust uses of BOOT_CFLAGS.
4907 (bootstrap2-debug, bootstrap-debug): New bootstrap stages.
4908 * Makefile.tpl (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS): New.
4909 (do-compare, do-compare3, do-compare-debug): New.
4910 ([+compare-target+]): Use them.
4911
4912 2007-08-16 Alexandre Oliva <aoliva@redhat.com>
4913
4914 * Makefile.def (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS):
4915 Add to flags_to_pass. Adjust uses of BOOT_CFLAGS.
4916 (bootstrap2-debug, bootstrap-debug): New bootstrap stages.
4917 * Makefile.tpl (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS): New.
4918 (do-compare, do-compare3, do-compare-debug): New.
4919 ([+compare-target+]): Use them.
4920
4921 2007-08-13 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4922 Ben Elliston <bje@au.ibm.com>
4923
4924 * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS, baseargs): Pass
4925 --silent if $silent.
4926 * configure: Regenerate.
4927
4928 2007-08-12 Daniel Jacobowitz <dan@codesourcery.com>
4929
4930 * src-release (DEVO_SUPPORT): Add COPYING3 and COPYING3.LIB.
4931
4932 2007-07-17 Nick Clifton <nickc@redhat.com>
4933
4934 * COPYING3: New file. Contains version 3 of the GNU General
4935 Public License.
4936 * COPYING3.LIB: New file. Contains version 3 of the GNU
4937 Lesser General Public License.
4938
4939 2007-07-11 Bernd Schmidt <bernd.schmidt@analog.com>
4940
4941 * configure.ac: Fix my previous change to really match GCC.
4942 * configure: Regenerate.
4943
4944 2007-07-11 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4945
4946 * configure.ac: Rewrite 'configure --help' strings to look nicer.
4947 * configure: Regenerate.
4948
4949 2007-07-11 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4950
4951 * configure.ac: Add some missing m4 quotation.
4952 * configure: Regenerate.
4953
4954 2007-07-09 Kai Tietz <kai.tietz@onevision.com>
4955
4956 * Makefile.def: Add windmc tool to build.
4957 * Makefile.tpl: Likewise.
4958 * configure.ac: Likewise.
4959 * Makefile.in: Regenerate.
4960 * configure: Regenerate.
4961
4962 2007-07-05 H.J. Lu <hongjiu.lu@intel.com>
4963
4964 * lt~obsolete.m4: New. Import from 20070318 libtool.
4965
4966 2007-06-29 Bernd Schmidt <bernd.schmidt@analog.com>
4967
4968 * configure.ac: Don't add target-libmudflap to noconfigdirs for
4969 uclinux and linux-uclibc targets.
4970 * configure: Regenerate.
4971
4972 2007-06-28 DJ Delorie <dj@redhat.com>
4973
4974 * configure.ac (arm*-*-linux-gnueabi): Don't build libgloss if we're
4975 not building newlib.
4976 * configure: Regenerated.
4977
4978 2007-06-22 Daniel Jacobowitz <dan@codesourcery.com>
4979
4980 * src-release (DEVO_SUPPORT): Correct typos.
4981
4982 2007-06-18 Daniel Jacobowitz <dan@codesourcery.com>
4983
4984 * Makefile.def: Add dependency from configure-gdb to all-bfd.
4985 * Makefile.in: Regenerated.
4986
4987 2007-06-14 Paolo Bonzini <bonzini@gnu.org>
4988
4989 * Makefile.tpl (cleanstrap): Don't delete the toplevel Makefile.
4990 (distclean-stage[+id+]): Possibly delete stage_last.
4991 * Makefile.in: Regenerate.
4992
4993 2007-06-07 Ben Elliston <bje@au.ibm.com>
4994
4995 * config.sub, config.guess: Update from upstream sources.
4996
4997 2007-06-07 Ben Elliston <bje@au.ibm.com>
4998
4999 * Makefile.tpl: Fix spelling error.
5000 * Makefile.in: Regenerate.
5001
5002 2007-06-04 Paolo Bonzini <bonzini@gnu.org>
5003
5004 Sync with gcc:
5005 2007-05-30 Jakub Jelinek <jakub@redhat.com>
5006
5007 PR bootstrap/29382
5008 * configure.ac: Don't use -fkeep-inline-functions for GCC < 3.3.1.
5009 * configure: Rebuilt.
5010
5011 2007-06-01 Steve Ellcey <sje@cup.hp.com>
5012
5013 * libtool.m4 (LT_CMD_MAX_LEN): Try using getconf to set
5014 lt_cv_sys_max_cmd_len.
5015
5016 2007-05-31 Paolo Bonzini <bonzini@gnu.org>
5017
5018 * ltgcc.m4: Update from GCC.
5019
5020 2007-05-25 Andreas Tobler <a.tobler@schweiz.org>
5021
5022 * ltmain.sh: Fix Darwin verstring, remove ${wl}.
5023
5024 2007-05-24 Steve Ellcey <sje@cup.hp.com>
5025
5026 * ltmain.sh: Update from GCC.
5027 * libtool.m4: Update from GCC.
5028 * ltsugar.m4: New. Update from GCC.
5029 * ltversion.m4: New. Update from GCC.
5030 * ltoptions.m4: New. Update from GCC.
5031 * ltconfig: Remove.
5032 * ltcf-c.sh: Remove.
5033 * ltcf-cxx.sh: Remove.
5034 * ltcf-gcj.sh: Remove.
5035 * src-release: Update with new libtool file list.
5036
5037 2007-05-16 Paolo Bonzini <bonzini@gnu.org>
5038
5039 * Makefile.def (bootstrap_stage): Replace stage_make_flags with
5040 stage_cflags.
5041 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS, POSTSTAGE1_FLAGS_TO_PASS):
5042 Remove CFLAGS/LIBCFLAGS.
5043 (configure-stage[+id+]-[+prefix+][+module+],
5044 all-stage[+id+]-[+prefix+][+module+]): Pass it from [+stage_cflags+].
5045 * Makefile.in: Regenerate.
5046
5047 2007-04-14 Steve Ellcey <sje@cup.hp.com>
5048
5049 * config-ml.in: Update from GCC.
5050
5051 2007-04-09 Daniel Jacobowitz <dan@codesourcery.com>
5052
5053 * src-release (do-proto-toplev): Process the support directories before
5054 the tool directory.
5055
5056 2007-03-21 Richard Sandiford <richard@codesourcery.com>
5057
5058 * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Fix m4 quoting
5059 of glob. Quote arguments with single quotes too.
5060 * configure: Regenerate.
5061
5062 2007-03-12 Brooks Moses <brooks.moses@codesourcery.com>
5063
5064 * Makefile.def (fixincludes): Remove unneeded "missing" lines.
5065 * Makefile.in: Regenerate
5066
5067 2007-03-07 Andreas Schwab <schwab@suse.de>
5068
5069 * configure: Regenerate.
5070
5071 2007-03-01 Brooks Moses <brooks.moses@codesourcery.com>
5072
5073 * configure.ac: Add "--with-pdfdir" configure option,
5074 which defines pdfdir variable.
5075 * Makefile.def (target=fixincludes): Add install-pdf to
5076 missing targets.
5077 (recursive_targets): Add install-pdf target.
5078 (flags_to_pass): Add pdfdir.
5079 * Makefile.tpl: Add pdfdir handling, add do-install-pdf
5080 target.
5081 * configure: Regenerate
5082 * Makefile.in: Regenerate
5083
5084 2007-02-28 Eric Christopher <echristo@apple.com>
5085
5086 Revert:
5087 2006-12-07 Mike Stump <mrs@apple.com>
5088
5089 * Makefile.def (dependencies): Add dependency for
5090 install-target-libssp and install-target-libgomp on
5091 install-gcc.
5092 * Makefile.in: Regenerate.
5093
5094 2007-02-27 Matt Kraai <kraai@ftbfs.org>
5095
5096 * configure: Regenerate.
5097 * configure.ac: Move statements after variable declarations.
5098
5099 2007-02-19 Joseph Myers <joseph@codesourcery.com>
5100
5101 * configure.ac: Adjust for loop syntax.
5102 * configure: Regenerate.
5103
5104 2007-02-18 Alexandre Oliva <aoliva@redhat.com>
5105
5106 * configure: Rebuilt.
5107
5108 2007-02-18 Alexandre Oliva <aoliva@redhat.com>
5109
5110 * configure.ac: Drop multiple occurrences of --enable-languages,
5111 and fix its quoting.
5112 * configure: Rebuilt.
5113
5114 2007-02-17 Mark Mitchell <mark@codesourcery.com>
5115 Nathan Sidwell <nathan@codesourcery.com>
5116 Vladimir Prus <vladimir@codesourcery.com
5117 Joseph Myers <joseph@codesourcery.com>
5118
5119 * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Fix quoting.
5120 * configure: Regenerate.
5121
5122 2007-02-13 Daniel Jacobowitz <dan@codesourcery.com>
5123
5124 * configure.ac (target_libraries): Move libgcc before libiberty.
5125 * configure: Regenerated.
5126
5127 2007-02-13 Paolo Bonzini <bonzini@gnu.org>
5128
5129 * configure: Regenerate again?
5130
5131 2007-02-13 Paolo Bonzini <bonzini@gnu.org>
5132
5133 * configure: Reapply PR30748 fix which was lost in the previous commit.
5134
5135 2007-02-13 Daniel Jacobowitz <dan@codesourcery.com>
5136 Paolo Bonzini <bonzini@gnu.org>
5137
5138 PR bootstrap/30753
5139 * configure.ac: Remove obsolete build / host tests. Use AC_PROG_CC
5140 unconditionally. Use AC_PROG_CXX. Use ACX_TOOL_DIRS to find $prefix.
5141 * configure: Regenerated.
5142
5143 2007-02-10 Paolo Bonzini <bonzini@gnu.org>
5144
5145 * configure: Regenerate.
5146
5147 2007-02-09 Daniel Jacobowitz <dan@codesourcery.com>
5148
5149 PR bootstrap/30748
5150 * configure.ac: Correct syntax for Solaris ksh.
5151 * configure: Regenerated.
5152
5153 2007-02-09 Paolo Bonzini <bonzini@gnu.org>
5154
5155 * Makefile.def: Sync with GCC.
5156 * Makefile.tpl: Sync with GCC.
5157 * Makefile.in: Regenerate.
5158 * configure: Regenerate.
5159
5160 2007-02-09 Daniel Jacobowitz <dan@codesourcery.com>
5161
5162 * Makefile.tpl (build_alias, host_alias, target_alias): Use
5163 noncanonical equivalents.
5164 * configure.in: Rename to...
5165 * configure.ac: ...this. Update AC_PREREQ. Prevent error for
5166 AS_FOR_TARGET. Set build_noncanonical, host_noncanonical, and
5167 target_noncanonical. Use them. Rewrite removal of configure
5168 arguments for autoconf 2.59. Discard variable settings. Force
5169 program_transform_name for native tools.
5170
5171 * Makefile.in: Regenerated.
5172 * configure: Regenerated with autoconf 2.59.
5173
5174 * src-release (DEVO_SUPPORT, do-proto-toplev): Expect configure.ac.
5175
5176 2007-02-08 Jeff Johnston <jjohnstn@redhat.com>
5177
5178 * COPYING.LIBGLOSS: Reformat default Red Hat
5179 license to fit within 80 columns.
5180 * COPYING.NEWLIB: Ditto.
5181
5182 2007-02-05 Dave Brolley <brolley@redhat.com>
5183
5184 * Contribute the following changes:
5185 2006-11-28 DJ Delorie <dj@redhat.com>
5186
5187 * configure.in: Fix typo for mep's target_makefile_frag.
5188 * configure: Regenerated.
5189
5190 2005-04-22 Richard Sandiford <rsandifo@redhat.com>
5191
5192 * configure.in (mep*): Add -mlibrary to FLAGS_FOR_TARGET.
5193 * configure: Regenerate.
5194
5195 2001-09-19 DJ Delorie <dj@redhat.com>
5196
5197 * configure.in (target_makefile_frag): use mt-mep
5198
5199 2001-06-12 Don Howard <dhoward@redhat.com>
5200
5201 * configure.in: Remove gdb from MeP skip list.
5202
5203 2001-04-05 DJ Delorie <dj@redhat.com>
5204
5205 * configure.in (noconfigdirs): Remove gcc from MeP skip list.
5206
5207 2001-03-20 Ben Elliston <bje@redhat.com>
5208
5209 * configure.in (noconfigdirs): Add gcc and gdb for MeP.
5210
5211 2001-03-19 Ben Elliston <bje@redhat.com>
5212
5213 * config.sub (mep, mep-*): Add.
5214
5215 2007-01-31 Andreas Schwab <schwab@suse.de>
5216
5217 * Makefile.tpl (LDFLAGS): Substitute it.
5218 * Makefile.in: Regenerate.
5219
5220 2007-01-11 Paolo Bonzini <bonzini@gnu.org>
5221
5222 * configure.in: Change == to = in test command.
5223 * configure: Regenerate.
5224
5225 2007-01-11 Paolo Bonzini <bonzini@gnu.org>
5226 Nick Clifton <nickc@redhat.com>
5227 Kaveh R. Ghazi <ghazi@caip.rutgets.edu>
5228
5229 * configure.in (build_configargs, host_configargs, target_configargs):
5230 Remove build/host/target parameters.
5231 (host_libs): Add gmp and mpfr.
5232 (GMP tests): Reorganize to allow in-tree GMP/MPFR.
5233 * Makefile.def (gmp, mpfr): New.
5234 (gcc): Remove target.
5235 * Makefile.tpl (build_os, build_vendor, host_os, host_vendor,
5236 target_os, target_vendor): New.
5237 (configure): Add host_alias/target_alias arguments. Adjust invocations.
5238 * configure: Regenerate.
5239 * Makefile.in: Regenerate.
5240
5241 2007-01-11 Matt Fago <fago@earthlink.net>
5242
5243 * configure.in: Try to link to functions only in mpfr 2.2.x
5244 to improve robustness of configure tests.
5245 * configure: Regenerate.
5246
5247 2007-01-08 Kai Tietz <kai.tietz@onevision.com>
5248
5249 * configure.in: Add support for an x86_64-mingw* target.
5250 * configure: Regenerate.
5251
5252 2007-01-05 Daniel Jacobowitz <dan@codesourcery.com>
5253
5254 * Makefile.tpl (all-target): Correct @if conditional for target
5255 modules.
5256 * configure.in: Omit libiberty if building only target libgcc.
5257 * configure, Makefile.in: Regenerated.
5258
5259 2007-01-04 Paolo Bonzini <bonzini@gnu.org>
5260
5261 * configure.in: Use DEV-PHASE to detect the default for --enable-werror.
5262 * configure: Regenerate.
5263
5264 2007-01-03 Daniel Jacobowitz <dan@codesourcery.com>
5265
5266 * Makefile.def (target_modules): Add libgcc.
5267 (lang_env_dependencies): Remove default items. Use no_c and no_gcc.
5268 * Makefile.tpl (clean-target-libgcc): Delete.
5269 (configure-target-[+module+]): Emit --disable-bootstrap dependencies
5270 on gcc even for bootstrapped modules. Rewrite handling of
5271 lang_env_dependencies to loop over target_modules.
5272 * configure.in (target_libraries): Add target-libgcc.
5273 * Makefile.in, configure: Regenerated.
5274
5275 2006-12-29 Paolo Bonzini <bonzini@gnu.org>
5276
5277 Sync with gcc:
5278 2006-12-29 Paolo Bonzini <bonzini@gnu.org>
5279
5280 * configure.in: Reorganize recognition of languages. Add
5281 --enable-stage1-languages. Show supported languages for the chosen
5282 target rather than all recognized languages.
5283 * configure: Regenerate.
5284
5285 2006-12-29 Paolo Bonzini <bonzini@gnu.org>
5286
5287 * Makefile.tpl (GCC_STRAP_TARGETS, all-prebootstrap): Remove.
5288 * Makefile.in: Regenerate.
5289
5290 2006-12-29 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5291
5292 * configure.in: Warn that MPFR 2.2.0 is buggy.
5293 * configure: Regenerate.
5294
5295 2006-12-27 Ian Lance Taylor <iant@google.com>
5296
5297 * configure.in: When removing Makefiles to force a reconfigure, also
5298 remove prev-DIR*/Makefile.
5299 * configure: Regenerate.
5300
5301 2006-12-23 Kazu Hirata <kazu@codesourcery.com>
5302
5303 * config.bfd: Recognize fido.
5304
5305 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
5306
5307 Sync with gcc:
5308
5309 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
5310
5311 * configure.in: Remove "$build" case for powerpc-*-darwin* since
5312 it only affects bootstrap and could be tested on "$host" as well.
5313 * configure: Regenerate.
5314 * config/mh-ppc-darwin: Add to the stage1 cflags here.
5315
5316 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
5317
5318 PR bootstrap/29544
5319 * Makefile.def (flags_to_pass): Add STAGE1_CHECKING.
5320 (bootstrap_stage): Add STAGE1_CHECKING to stage1 configure flags,
5321 move here comment from Makefile.tpl.
5322 * Makefile.tpl: Move some definitions higher in the file.
5323 (STAGE1_CHECKING): New.
5324 * configure.in: Add --enable-stage1-checking.
5325 * configure: Regenerate.
5326 * Makefile.in: Regenerate.
5327
5328 2006-12-03 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5329
5330 * configure.in: Update error message for missing GMP/MPFR.
5331
5332 * configure: Regenerate.
5333
5334 2006-12-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5335
5336 * configure.in: Update MPFR version in error message.
5337
5338 * configure: Regenerate.
5339
5340 2006-11-26 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5341
5342 * configure.in (--with-mpfr-dir, --with-gmp-dir): Remove flags.
5343 (--with-mpfr-include, --with-mpfr-lib, --with-gmp-include,
5344 --with-gmp-lib): New flags.
5345
5346 * configure: Regenerate.
5347
5348 2006-12-12 Andreas Tobler <a.tobler@schweiz.org>
5349
5350 PR bootstrap/30134
5351 * configure.in: Correct x86 darwin support for libjava to powerpc
5352 and i?86 only.
5353 * configure: Regenerate.
5354
5355 2006-12-11 Alan Modra <amodra@bigpond.net.au>
5356
5357 * configure.in: Handle spu makefile frag.
5358 * Makefile.tpl (MAINT): Define
5359 (MAINTAINER_MODE_FALSE, MAINTAINER_MODE_TRUE): Define.
5360 * configure: Regenerate.
5361 * Makefile.in: Regenerate.
5362
5363 2006-12-11 Ben Elliston <bje@au.ibm.com>
5364
5365 * config.sub, config.guess: Update from upstream sources.
5366
5367 2006-12-11 Ben Elliston <bje@au.ibm.com>
5368
5369 * configure.in: Sync with GCC (spu-*-*).
5370 * configure: Sync with GCC.
5371
5372 2006-12-07 Mike Stump <mrs@apple.com>
5373
5374 * Makefile.def (dependencies): Add dependency for
5375 install-target-libssp and install-target-libgomp on
5376 install-gcc.
5377 * Makefile.in: Regenerate.
5378
5379 2006-11-16 Paolo Bonzini <bonzini@gnu.org>
5380
5381 * Makefile.tpl (clean-target-libgcc): Test for gcc Makefile presence.
5382 (unstage): Test for stage_last presence.
5383
5384 PR bootstrap/29802
5385 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Add HOST_SUBDIR in STAGE_PREFIX.
5386 * Makefile.in: Regenerate.
5387
5388 2006-11-14 DJ Delorie <dj@redhat.com>
5389
5390 * Makefile.tpl (clean-stage*): Sync with GCC (clean).
5391 * Makefile.in: Sync with GCC.
5392 * configure.in: Sync with GCC (mpfr, gmp).
5393 * configure: Sync with GCC.
5394
5395 2006-11-08 Jie Zhang <jie.zhang@analog.com>
5396
5397 * configure.in: Remove target-libgloss from noconfigdirs for
5398 bfin-*-*.
5399 * configure: Regenerated.
5400
5401 2006-10-27 Jeff Johnston <jjohnstn@redhat.com>
5402
5403 * COPYING.NEWLIB: Add spu license.
5404 * COPYING.LIBGLOSS: Ditto.
5405
5406 2006-10-17 Brooks Moses <bmoses@stanford.edu>
5407
5408 * Makefile.def: Added pdf target handling.
5409 * Makefile.tpl: Added pdf target handling.
5410 * Makefile.in: Regenerated.
5411
5412 2006-10-11 Jeff Johnston <jjohnstn@redhat.com>
5413
5414 * COPYING.NEWLIB: Updated.
5415 * COPYING.LIBGLOSS: Ditto.
5416
5417 2006-09-27 Dave Brolley <brolley@redhat.com>
5418
5419 * configure.in (RUNTEST): Look for 'runtest' in the source tree by using
5420 $s instead of $r.
5421 * configure: Regenerated.
5422
5423 2006-09-26 Ben Elliston <bje@au.ibm.com>
5424
5425 * config.sub, config.guess: Update from upstream sources.
5426
5427 2006-09-20 Thiemo Seufer <ths@mips.com>
5428
5429 * configure.in: Remove redundant handling of mips*-dec-bsd*. Likewise
5430 for mipstx39-*-*. Disable libgloss for mips64*-*-linux*.
5431 * configure: Regenerate.
5432
5433 2006-08-30 Corinna Vinschen <corinna@vinschen.de>
5434
5435 * configure.in: Never build newlib for a Mingw host.
5436 Never build newlib as Mingw target library.
5437 Test the existence of winsup/cygwin for building a Cygwin newlib,
5438 rather than just winsup.
5439 Add winsup/mingw and winsup/w32api paths to FLAGS_FOR_TARGET if
5440 building a Mingw target.
5441 * configure: Regenerate.
5442
5443 2006-08-15 Thiemo Seufer <ths@mips.com>
5444 Nigel Stephens <nigel@mips.com>
5445 David Ung <davidu@mips.com>
5446
5447 * config.sub: Add support for sde as alias of mipsisa32-sde-elf.
5448
5449 2006-07-25 Paolo Bonzini <bonzini@gnu.org>
5450
5451 Sync from GCC:
5452 2006-07-04 Eric Botcazou <ebotcazou@libertysurf.fr>
5453
5454 PR bootstrap/18058
5455 * configure.in: Add -fkeep-inline-functions to CFLAGS for stage 1
5456 if the bootstrap compiler is a GCC version that supports it.
5457 * configure: Regenerate.
5458
5459 2006-07-22 Daniel Jacobowitz <dan@codesourcery.com>
5460
5461 * configure.in: Allow mingw32 and cygwin targets to build cross-gdb.
5462 * configure: Regenerated.
5463
5464 2006-07-18 Paolo Bonzini <bonzini@gnu.org>
5465
5466 * Makefile.tpl (configure-stageN-MODULE): Pass --with-build-libsubdir
5467 for stages after the first.
5468
5469 2006-07-17 Jakub Jelinek <jakub@redhat.com>
5470
5471 * Makefile.def: Add dependencies for configure-opcodes
5472 on configure-intl and all-opcodes on all-intl.
5473 * Makefile.in: Regenerated.
5474
5475 2006-07-04 Peter O'Gorman <peter@pogma.com>
5476
5477 * ltconfig: chmod 644 before ranlib during install.
5478
5479 2006-07-03 Paolo Bonzini <bonzini@gnu.org>
5480
5481 * configure.in: Fix thinkos in previous check-in.
5482 * configure: Regenerate.
5483
5484 2006-07-03 Paolo Bonzini <bonzini@gnu.org>
5485
5486 Sync from gcc:
5487
5488 2007-07-03 Paolo Bonzini <bonzini@gnu.org>
5489
5490 PR other/27063
5491 * configure.in: Test subdir_requires and give an appropriate
5492 error message.
5493 * configure: Regenerate.
5494
5495 2006-06-16 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
5496
5497 PR target/27540
5498 * configure.in: Only enable libgomp on IRIX 6.
5499 * configure: Regenerate.
5500
5501 2006-06-20 David Ayers <d.ayers@inode.at>
5502
5503 PR bootstrap/28072
5504 * configure.in: Add target-boehm-gc to noconfigdirs depending on
5505 whether target-libjava is being configured instead of whether the
5506 java front end is enabled.
5507 * configure: Regenerate.
5508
5509 2006-06-15 Mark Shinwell <shinwell@codesourcery.com>
5510
5511 * include/elf/arm.h: Correct names of R_ARM_LDC_G{0,1,2}
5512 to R_ARM_LDC_SB_G{0,1,2} respectively.
5513
5514 2006-06-15 Paolo Bonzini <bonzini@gnu.org>
5515
5516 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Export CFLAGS and LDFLAGS
5517 too.
5518 * Makefile.in: Regenerate.
5519
5520 2006-06-13 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
5521
5522 Sync from gcc:
5523
5524 2006-06-12 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
5525 * configure.in: Don't enable libgomp on hpux10.
5526 * configure: Rebuilt.
5527
5528 2006-06-13 David Ayers <d.ayers@inode.at>
5529
5530 Sync from gcc:
5531
5532 2006-06-12 David Ayers <d.ayers@inode.at>
5533
5534 PR bootstrap/27963
5535 PR target/19970
5536 * configure.in: Remove target-boehm-gc from noconfigdirs where
5537 ${libgcj} is specified.
5538 * configure: Regenerate.
5539
5540 2006-06-08 Jeff Johnston <jjohnstn@redhat.com>
5541
5542 Sync from gcc:
5543
5544 2005-01-12 David Edelsohn <edelsohn@gnu.org>
5545 Andreas Schwab <schwab@suse.de>
5546
5547 PR bootstrap/18033
5548 * config-ml.in: Eval option if surrounded by single quotes.
5549
5550 2006-06-07 Carlos O'Donell <carlos@codesourcery.com>
5551
5552 Sync from gcc:
5553
5554 2006-06-06 David Ayers <d.ayers@inode.at>
5555
5556 PR libobjc/13946
5557 * Makefile.def: Add dependencies for libobjc which boehm-gc.
5558 * Makefile.in: Regenerate.
5559 * configure.in: Add --enable-objc-gc at toplevel and have it
5560 enable boehm-gc for Objective-C.
5561 Remove target-boehm-gc from libgcj.
5562 Add target-boehm-gc to target_libraries.
5563 Add target-boehm-gc to noconfigdirs where ${libgcj}
5564 is specified.
5565 Assert that boehm-gc is supported when requested for Objective-C.
5566 Only build boehm-gc if needed either for Java or Objective-C.
5567 * configure: Regenerate.
5568
5569 2006-06-05 Paolo Bonzini <bonzini@gnu.org>
5570
5571 PR 27674
5572 * Makefile.tpl (configure-[+prefix+][+module+],
5573 all-[+prefix+][+module+]): Depend on stage_current if bootstrapping.
5574 Remove rule to unstage bootstrapped modules.
5575 (stage_current): New.
5576 * Makefile.in: Regenerate.
5577
5578 2006-05-20 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
5579 Andreas Tobler <a.tobler@schweiz.ch>
5580
5581 * configure.in: Enable libgcj for hppa*-hp-hpux11*.
5582 * configure: Rebuilt.
5583
5584 Revert
5585 2006-01-31 Richard Guenther <rguenther@suse.de>
5586 Paolo Bonzini <bonzini@gnu.org>
5587
5588 * Makefile.def (target_modules): Add libgcc-math target module.
5589 * configure.in (target_libraries): Add libgcc-math target library.
5590 (--enable-libgcc-math): New configure switch.
5591 * Makefile.in: Re-generate.
5592 * configure: Re-generate.
5593
5594 2006-06-05 Jeff Johnston <jjohnstn@redhat.com>
5595
5596 * config-ml.in: Alter CCASFLAGS to include special
5597 multilib options the same as is done for CFLAGS.
5598
5599 2006-05-31 Daniel Jacobowitz <dan@codesourcery.com>
5600
5601 * Makefile.def: Added dependencies from sim and gdb on intl, and
5602 added configure dependencies to everything with an all dependency
5603 on intl.
5604 * gettext.m4: Removed.
5605 * src-release (DEVO_SUPPORT): Don't mention gettext.m4.
5606 (GDB_SUPPORT_DIRS): Add intl.
5607 * Makefile.in: Regenerated.
5608
5609 2006-05-25 Daniel Jacobowitz <dan@codesourcery.com>
5610
5611 * src-release (DEVO_SUPPORT): Add config.rpath.
5612
5613 2006-05-25 Paolo Bonzini <bonzini@gnu.org>
5614
5615 * Makefile.def (bfd, opcodes): Fix lib_path.
5616 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Replace ADAC with ADAFLAGS.
5617 (restrap): Move under "@if gcc-bootstrap". Fix typo.
5618 * Makefile.in: Regenerate.
5619
5620 2006-05-24 Mark Shinwell <shinwell@codesourcery.com>
5621
5622 * configure.in: Enable gprof for cross builds.
5623 * configure: Regenerate.
5624
5625 2006-05-17 Daniel Jacobowitz <dan@codesourcery.com>
5626
5627 * src-release (MAKEINFOFLAGS): Define.
5628 (do-proto-toplev): Pass MAKEINFOFLAGS to submakes.
5629
5630 2006-05-14 Ben Elliston <bje@au.ibm.com>
5631
5632 * config.sub, config.guess: Update from upstream sources.
5633
5634 2006-05-12 Ben Elliston <bje@au.ibm.com>
5635
5636 * config.sub, config.guess: Update from upstream sources.
5637
5638 2006-05-04 Steve Ellcey <sje@cup.hp.com>
5639
5640 * blt, iwidgets, mmalloc: Remove directories.
5641
5642 2006-05-01 DJ Delorie <dj@redhat.com>
5643
5644 * configure.in: Restore CFLAGS if GMP isn't present.
5645 * configure: Regenerate.
5646
5647 2006-04-18 DJ Delorie <dj@redhat.com>
5648
5649 * configure.in (m32c): Build libstdc++-v3. Pass flags to
5650 reference libgloss so that libssp can be built in a combined
5651 tree.
5652 * configure: Regenerate.
5653
5654 2006-04-10 Ben Elliston <bje@au.ibm.com>
5655
5656 * contrib: Remove directory.
5657
5658 2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
5659
5660 * Makefile.tpl: Add install-html target.
5661 * Makefile.def: Add install-html target.
5662 * Makefile.in: Regenerate.
5663 * configure.in: Add --with-datarootdir, --with-docdir,
5664 and --with-htmldir options.
5665 * configure: Regenerate.
5666
5667 2006-03-31 Ben Elliston <bje@au.ibm.com>
5668
5669 PR binutils/1860
5670 * configure.in: Require makeinfo 4.4 or higher.
5671 * configure: Regenerate.
5672
5673 2006-03-14 Paolo Bonzini <bonzini@gnu.org>
5674
5675 * Makefile.in: Regenerate.
5676
5677 2006-03-14 Paolo Bonzini <bonzini@gnu.org>
5678
5679 Sync with gcc:
5680 2006-03-10 Aldy Hernandez <aldyh@redhat.com>
5681
5682 * configure.in: Handle --disable-<component> generically.
5683 * configure: Regenerate.
5684
5685 2006-02-21 Rafael Avila de Espindola <rafael.espindola@gmail.com>
5686
5687 * Makefile.tpl (BUILD_CONFIGDIRS): Remove.
5688 (TARGET_CONFIGDIRS): Remove.
5689 * configure.in: Remove AC_SUBST(target_configdirs).
5690 * Makefile.in, configure: Regenerated.
5691
5692
5693 2006-03-01 H.J. Lu <hongjiu.lu@intel.com>
5694
5695 PR libgcj/17311
5696 * ltmain.sh: Don't use "$finalize_rpath" for compile.
5697
5698 2006-02-20 Paolo Bonzini <bonzini@gnu.org>
5699
5700 PR bootstrap/25670
5701
5702 * Makefile.tpl ([+compare-target+]): Print explanation messages.
5703
5704 * Makefile.def (ADAFLAGS, BOOT_ADAFLAGS, LANGUAGES): New flags_to_pass.
5705 * Makefile.tpl (BASE_FLAGS_TO_PASS): Support optional flags_to_pass.
5706 (EXTRA_GCC_FLAGS): Remove ADAFLAGS, BOOT_ADAFLAGS, LANGUAGES,
5707 BUILD_PREFIX, BUILD_PREFIX_1.
5708 * configure.in: (BUILD_PREFIX, BUILD_PREFIX_1): Don't substitute.
5709
5710 * Makefile.def (bootstrap stage 1): Pass LIBCFLAGS too.
5711 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Override LIBCFLAGS too.
5712
5713 * Makefile.tpl (configure-stage[+id+]-[+prefix+][+module+],
5714 all-stage[+id+]-[+prefix+][+module+], : Use $(current_stage) instead
5715 of `cat stage_current`. Always provide the `r' and `s' variables.
5716 (clean-stage[+id+]-[+prefix+][+module+]): Likewise, and make it into
5717 a single shell execution.
5718 (configure-[+prefix+][+module+], all-[+prefix+][+module+]): For
5719 bootstrapped modules, make the stage1 module if the build was not
5720 started yet, else build the current stage.
5721 (all-host, all-target): Omit bootstrapped modules (if bootstrapping).
5722 (all-build, all-host, all-target, [+make_target+]-host,
5723 [+make_target+]-target): Do not use \-continued lines.
5724 (target modules): Depend on stage_last, not all-gcc, if bootstrapping.
5725 (current_stage, restrap, stage_last): New.
5726
5727 * Makefile.in: Regenerate.
5728 * configure: Regenerate.
5729
5730 2006-02-14 Paolo Bonzini <bonzini@gnu.org>
5731
5732 Sync from gcc:
5733
5734 2006-01-31 Richard Guenther <rguenther@suse.de>
5735 Paolo Bonzini <bonzini@gnu.org>
5736
5737 * Makefile.def (target_modules): Add libgcc-math target module.
5738 * configure.in (target_libraries): Add libgcc-math target library.
5739 (--enable-libgcc-math): New configure switch.
5740 * Makefile.in: Re-generate.
5741 * configure: Re-generate.
5742 * libgcc-math: New toplevel directory.
5743
5744 2006-01-18 Richard Henderson <rth@redhat.com>
5745 Jakub Jelinek <jakub@redhat.com>
5746 Diego Novillo <dnovillo@redhat.com>
5747
5748 * libgomp: New directory.
5749 * Makefile.def: Add target_module libgomp.
5750 * Makefile.in: Regenerate.
5751 * configure.in (target_libraries): Add target-libgomp.
5752 * configure: Regenerate.
5753
5754 2006-02-14 Paolo Bonzini <bonzini@gnu.org>
5755 Andreas Schwab <schwab@suse.de>
5756
5757 * configure: Regenerate.
5758
5759 2006-01-16 Paolo Bonzini <bonzini@gnu.org>
5760
5761 * configure.in: Set with_gnu_as, with_gnu_ld, with_newlib earlier.
5762 Set md_exec_prefix. Use ACX_CHECK_INSTALLED_TARGET_TOOL to find
5763 the assembler, linker and binutils.
5764 * configure: Regenerate.
5765
5766 2006-01-16 Nick Clifton <nickc@redhat.com>
5767
5768 * config.sub, config.guess: Sync from config repository.
5769
5770 2006-01-05 Alexandre Oliva <aoliva@redhat.com>
5771
5772 * Makefile.tpl (clean-stage[+id+]-[+prefix+][+module+]): Remove
5773 @ from continuation.
5774 * Makefile.in: Rebuilt.
5775
5776 2006-01-04 Paolo Bonzini <bonzini@gnu.org>
5777
5778 Sync from gcc:
5779
5780 2006-01-04 Paolo Bonzini <bonzini@gnu.org>
5781
5782 PR bootstrap/24252
5783
5784 * Makefile.def (flags_to_pass): Add STAGE1_CFLAGS and STAGE1_LANGUAGES.
5785 * Makefile.tpl (OBJDUMP): New.
5786 (EXTRA_HOST_FLAGS): Add it.
5787 (EXTRA_GCC_FLAGS): Remove flags already specified in flags_to_pass.
5788
5789 * Makefile.tpl (stage[+id+]-start, stage[+id+]-end): Do not try
5790 to use symbolic links between directories. Avoid race conditions
5791 or make them harmless.
5792 * configure.in: Do not try to use symbolic links between directories.
5793
5794 * Makefile.def (LEAN): Pass.
5795 * Makefile.tpl (LEAN): Define.
5796 (stage[+id+]-start): Accept that the previous directory does not
5797 exist, if the bootstrap is lean.
5798 (stage[+id+]-bubble): Invoke lean bootstrap commands after
5799 stage[+id+]-start. Use a makefile variable and an `if' instead of a
5800 configure substitution.
5801 ([+compare-target+]): Likewise.
5802 ([+bootstrap-target+]-lean): New.
5803 * configure.in: Remove lean bootstrap support from here.
5804
5805 * Makefile.in: Regenerate.
5806 * configure: Regenerate.
5807
5808 2006-01-02 Andreas Schwab <schwab@suse.de>
5809
5810 * configure.in: When reconfiguring remove Makefile in
5811 all stage directories.
5812 * configure: Regenerate.
5813
5814 2005-12-27 Leif Ekblad <leif@rdos.net>
5815
5816 * configure.in: Add support for RDOS target.
5817 * configure: Regenerate.
5818
5819 2005-12-27 Nick Clifton <nickc@redhat.com>
5820
5821 PR binutils/1990
5822 * libtool.m4: Synchronize with version in GCC sources.
5823
5824 2005-12-20 Paolo Bonzini <bonzini@gnu.org>
5825
5826 Revert Ada-related part of the previous change.
5827
5828 * Makefile.def (ADAFLAGS, BOOT_ADAFLAGS, ADAFLAGS_FOR_TARGET):
5829 Do not pass.
5830 * Makefile.tpl (BOOT_ADAFLAGS): Do not define.
5831 * Makefile.in: Regenerate.
5832 * configure.in: Do not include mt-ppc-aix target fragment.
5833 * configure: Regenerate.
5834
5835 2005-12-19 Paolo Bonzini <bonzini@gnu.org>
5836
5837 * configure.in: Select appropriate fragments for PowerPC/AIX.
5838 * configure: Regenerate.
5839
5840 * Makefile.def (flags_to_pass): Add ADAFLAGS, BOOT_ADAFLAGS,
5841 BOOT_CFLAGS, BOOT_LDFLAGS.
5842 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Handle BOOT_ADAFLAGS,
5843 BOOT_CFLAGS, BOOT_LDFLAGS.
5844 (TARGET_FLAGS_TO_PASS): Handle ADAFLAGS_FOR_TARGET.
5845 (stage[+id+]-bubble): Pass flags recursively to the comparison target.
5846 (stage): Fail if we cannot complete the work.
5847 * Makefile.in: Regenerate.
5848
5849 2005-12-16 Jeff Johnston <jjohnstn@redhat.com>
5850
5851 * COPYING.NEWLIB: Update copyright year for default
5852 copyright.
5853
5854 2005-12-15 Paolo Bonzini <bonzini@gnu.org>
5855
5856 * Makefile.tpl (all, do-[+make_target+], do-check, install,
5857 install-host-nogcc): Don't invoke $(stage) at the end.
5858 * Makefile.in: Regenerate.
5859
5860 2005-12-14 Paolo Bonzini <bonzini@gnu.org>
5861
5862 * configure.in: Flip the top-level bootstrap switch.
5863 * configure: Regenerate.
5864
5865 Merge from gcc:
5866
5867 2005-12-14 Daniel Jacobowitz <dan@codesourcery.com>
5868
5869 * Makefile.tpl: Throughout the file, use : $(MAKE) along with
5870 $(stage) and $(unstage).
5871 (EXTRA_TARGET_FLAGS): Correct double-quoting.
5872 (all): Remove stray semicolon.
5873 (local-distclean): Don't handle multilib.tmp and multilib.out.
5874 (install.all): Set $s for consistency.
5875 (configure-[+prefix+][+module+]): Instead of [+deps+], handle
5876 check_multilibs setting. Always make the install directory.
5877 (configure-stage[+id+]-[+prefix+][+module+]): Likewise.
5878 Correct @if/@endif.
5879 (all-stage[+id+]-[+prefix+][+module+]): Correct @if/@endif.
5880 ($(TARGET_SUBDIR)/[+module+]/multilib.out): Remove.
5881 (stage[+id+]-start, stage[+id+]-end): Stage $(TARGET_SUBDIR).
5882 (multilib.out): Remove.
5883 * Makefile.in: Regenerated.
5884
5885 2005-12-12 Nathan Sidwell <nathan@codesourcery.com>
5886
5887 * config.sub: Replace ms1 arch with mt. Allow ms1 as alias.
5888 * configure.in: Replace ms1 arch with mt.
5889 * configure: Rebuilt.
5890
5891 2005-12-05 Paolo Bonzini <bonzini@gnu.org>
5892
5893 Sync with gcc:
5894
5895 2005-12-12 Nathan Sidwell <nathan@codesourcery.com>
5896
5897 * config.sub: Replace ms1 arch with mt. Allow ms1 as alias.
5898 * configure.in: Replace ms1 arch with mt.
5899 * configure: Rebuilt.
5900
5901 2005-12-05 Paolo Bonzini <bonzini@gnu.org>
5902
5903 Sync with gcc:
5904
5905 2005-12-05 Paolo Bonzini <bonzini@gnu.org>
5906
5907 * configure.in (CONFIGURED_BISON, CONFIGURED_YACC, CONFIGURED_M4,
5908 CONFIGURED_FLEX, CONFIGURED_LEX, CONFIGURED_MAKEINFO): Remove
5909 "CONFIGURED_" from the AC_CHECK_PROGS invocation. Move below.
5910 Find in-tree tools if available.
5911 (EXPECT, RUNTEST, LIPO, STRIP): Find them and substitute them.
5912 (CONFIGURED_*_FOR_TARGET): Don't set nor substitute.
5913 (*_FOR_TARGET): Set them with GCC_TARGET_TOOL.
5914 (COMPILER_*_FOR_TARGET): New.
5915 * Makefile.tpl (HOST_EXPORTS): Add *_FOR_TARGET symbols that gcc needs.
5916 (BASE_TARGET_EXPORTS): Use COMPILER_*_FOR_TARGET symbols.
5917 (CONFIGURED_*, USUAL_*): Remove.
5918 (BISON, YACC, FLEX, LEX, M4, MAKEINFO, EXPECT, RUNTEST, LIPO,
5919 STRIP): Use autoconf substitutions.
5920 (COMPILER_AS_FOR_TARGET, COMPILER_LD_FOR_TARGET,
5921 COMPILER_NM_FOR_TARGET): New.
5922 (EXTRA_HOST_FLAGS): Pass LIPO and STRIP.
5923
5924 (all): Make all-host and all-target in parallel.
5925 (do-[+make_target+], do-check, install, [+compare-target+]): Ensure
5926 that $$r and $$s are set before invoking a recursive make.
5927 (stage[+id+]-bubble): Likewise, and invoke the comparison at the end.
5928 ([+bootstrap-target+]): Inline most of the `all' target.
5929
5930 2005-11-29 Ben Elliston <bje@au.ibm.com>
5931
5932 * Makefile.tpl (clean-target-libgcc): Invoke clean-target-libgcc
5933 from the gcc build directory.
5934 * Makefile.in: Regenerate.
5935
5936 2005-11-29 Ben Elliston <bje@au.ibm.com>
5937
5938 * Makefile.def: Add new libdecnumber host_module. Make all-gcc
5939 depend on all-libdecnumber.
5940 * configure.in (host_libs): Include libdecnumber.
5941 * Makefile.in: Regenerate.
5942 * configure: Likewise.
5943
5944 2005-11-21 Kean Johnston <jkj@sco.com>
5945
5946 * config.sub, config.guess: Sync from upstream sources.
5947
5948 2005-11-11 Daniel Jacobowitz <dan@codesourcery.com>
5949
5950 * Makefile.def: Remove gdb dependencies for gdbtk.
5951 * Makefile.tpl (CONFIGURE_GDB_TK, INSTALL_GDB_TK): New variables.
5952 (configure-gdb, install-gdb): New rules.
5953 * configure.in: Set CONFIGURE_GDB_TK and INSTALL_GDB_TK.
5954 * Makefile.in, configure: Regenerated.
5955
5956 2005-10-22 Paolo Bonzini <bonzini@gnu.org>
5957
5958 PR bootstrap/24297
5959 * Makefile.tpl (do-[+make-target+], do-check, install,
5960 stage[+id+]-bubble, [+compare-target+]): Ensure $$r and $$s
5961 are set before recursing.
5962 * Makefile.in: Regenerate.
5963
5964 2005-10-20 Eric Botcazou <ebotcazou@adacore.com>
5965
5966 PR bootstrap/18939
5967 * Makefile.def (gcc) <target>: Fix thinko.
5968 * Makefile.in: Regenerate.
5969
5970 2005-10-17 Bernd Schmidt <bernd.schmidt@analog.com>
5971
5972 * configure.in (bfin-*-*): Use test, not brackets, in if statement.
5973 * configure: Regenerate.
5974
5975 2005-10-09 Kazu Hirata <kazu@codesourcery.com>
5976
5977 * configure.in (arm-*-linux-gnueabi): Add to noconfigdirs
5978 target-libffi, target-qthreads, target-libjava, and
5979 targetlibobjc.
5980 * configure: Regenerate.
5981
5982 2005-10-06 Daniel Jacobowitz <dan@codesourcery.com>
5983
5984 * Makefile.def (flags_to_pass): Add OBJDUMP_FOR_TARGET.
5985 * Makefile.tpl (BASE_TARGET_EXPORTS): Add OBJDUMP.
5986 (OBJDUMP_FOR_TARGET, CONFIGURED_OBJDUMP_FOR_TARGET)
5987 (USUAL_OBJDUMP_FOR_TARGET): New.
5988 (EXTRA_TARGET_FLAGS): Add OBJDUMP.
5989 * configure.in: Check for $OBJDUMP_FOR_TARGET.
5990 * configure, Makefile.in: Regenerated.
5991
5992 2005-10-05 Paolo Bonzini <bonzini@gnu.org>
5993
5994 * Makefile.tpl (all) [gcc-no-bootstrap]: Make prebootstrap packages
5995 before other host packages.
5996
5997 2005-10-05 Paolo Bonzini <bonzini@gnu.org>
5998
5999 PR bootstrap/22340
6000
6001 * configure.in (default_target): Remove.
6002 * Makefile.tpl (all): Do not use prerequisites as subroutines
6003 (all) [gcc-bootstrap]: Bootstrap gcc first if it was not done yet.
6004 (do-[+make_target+], check, install, [+bootstrap_target+]): Do not
6005 use prerequisites as subroutines.
6006 (check-host, check-target): New.
6007 (bootstrap configure & all targets): Do not use stage*-start
6008 if the directory layout is already ok.
6009 (non-bootstrap configure & all targets): Prepend a $(unstage).
6010 (stage[+id+]-bubble): Do that here. Do not use NOTPARALLEL.
6011 (NOTPARALLEL): Remove.
6012 (unstage, stage variables): New variables.
6013 (unstage, stage targets): Simply expand to those variables.
6014
6015 * configure: Regenerate.
6016 * Makefile.in: Regenerate.
6017
6018 2005-10-04 James E Wilson <wilson@specifix.com>
6019
6020 * Makefile.def (lang_env_dependencies): Add libmudflap.
6021 * Makefile.in: Regenerate.
6022
6023 2005-10-03 Catherine Moore <clm@cm00re.com>
6024
6025 * configure.in (bfin-*-*): Support bfin.
6026 * configure: Regenerated.
6027
6028 2005-09-30 H.J. Lu <hongjiu.lu@intel.com>
6029
6030 * configure.in (*-*-darwin*): Build bfd, binutils and opcodes.
6031 * configure: Regenerated.
6032
6033 2005-09-28 Geoffrey Keating <geoffk@apple.com>
6034
6035 * Makefile.tpl (BASE_TARGET_EXPORTS): Add LIPO, STRIP.
6036 (LIPO_FOR_TARGET): New.
6037 (CONFIGURED_LIPO_FOR_TARGET): New.
6038 (USUAL_LIPO_FOR_TARGET): New.
6039 (STRIP_FOR_TARGET): New.
6040 (CONFIGURED_STRIP_FOR_TARGET): New.
6041 (USUAL_STRIP_FOR_TARGET): New.
6042 * Makefile.def (flags_to_pass): Add LIPO_FOR_TARGET and
6043 STRIP_FOR_TARGET.
6044 * configure.in: Set LIPO_FOR_TARGET, STRIP_FOR_TARGET,
6045 CONFIGURED_LIPO_FOR_TARGET, CONFIGURED_STRIP_FOR_TARGET.
6046 * Makefile.in: Regenerate.
6047 * configure: Regenerate.
6048
6049 2005-09-19 David Edelsohn <edelsohn@gnu.org>
6050
6051 * configure.in (powerpc-*-aix*): Add target-libssp to noconfigdirs.
6052 (rs6000-*-aix*): Same.
6053 * configure: Regenerate.
6054
6055 2005-09-14 Francois-Xavier Coudert <coudert@clipper.ens.fr>
6056
6057 * configure.in: Recognize f95 in the --enable-languages option,
6058 and substitute it for fortran, issuing a warning.
6059 * configure: Regenerate.
6060
6061 2005-09-07 Ben Elliston <bje@au.ibm.com>
6062
6063 Import from Autoconf sources:
6064
6065 2005-09-06 Paul Eggert <eggert@cs.ucla.edu>
6066 * move-if-change: Don't output "$2 is unchanged"; suggested by Ben
6067 Elliston. Handle weird characters correctly.
6068
6069 2005-08-30 Phil Edwards <phil@codesourcery.com>
6070
6071 * configure.in (*-*-vxworks*): Add target-libstdc++-v3 to noconfigdirs.
6072 * configure: Regenerated.
6073
6074 2005-08-20 Richard Earnshaw <richard.earnshaw@arm.com>
6075
6076 * Makefile.def (libssp): Add to lang_env_dependencies.
6077 * Makefile.in: Regenerate.
6078
6079 2005-08-17 Christian Groessler <chris@groessler.org>
6080
6081 * Makefile.tpl: (USUAL_CC_FOR_TARGET): Add missing trailing slash.
6082 * Makefile.in: Regenerate.
6083
6084 2005-08-12 Paolo Bonzini <bonzini@gnu.org>
6085
6086 * configure.in: Replace NCN_STRICT_CHECK_TOOL with
6087 NCN_STRICT_CHECK_TOOLS, and likewise for NCN_STRICT_CHECK_TARGET_TOOLS.
6088 Look for alternate names of the target cc and c++
6089 * configure: Regenerate.
6090
6091 2005-08-08 Paolo Bonzini <bonzini@gnu.org>
6092
6093 * configure.in (CC_FOR_TARGET, CXX_FOR_TARGET, GCJ_FOR_TARGET,
6094 GCC_FOR_TARGET, RAW_CXX_FOR_TARGET, GFORTRAN_FOR_TARGET): Find
6095 them with NCN_STRICT_CHECK_TARGET_TOOL, like the other target
6096 tools; remove code to manually set them.
6097 (Target tools): Look in the environment for them.
6098 * Makefile.tpl (CC_FOR_TARGET, CXX_FOR_TARGET, GCJ_FOR_TARGET,
6099 GCC_FOR_TARGET, RAW_CXX_FOR_TARGET, GFORTRAN_FOR_TARGET): Redefine.
6100 (AS_FOR_TARGET, LD_FOR_TARGET, NM_FOR_TARGET): Look into gcc
6101 build directory.
6102 (CONFIGURED_CC_FOR_TARGET, CONFIGURED_CXX_FOR_TARGET,
6103 CONFIGURED_GCJ_FOR_TARGET, CONFIGURED_GCC_FOR_TARGET,
6104 CONFIGURED_GFORTRAN_FOR_TARGET, USUAL_CC_FOR_TARGET,
6105 USUAL_CXX_FOR_TARGET, USUAL_GCJ_FOR_TARGET, USUAL_GCC_FOR_TARGET,
6106 USUAL_RAW_CXX_FOR_TARGET, USUAL_GFORTRAN_FOR_TARGET): New.
6107 (CXX_FOR_TARGET_FOR_RECURSIVE_MAKE,
6108 RAW_CXX_FOR_TARGET_FOR_RECURSIVE_MAKE, RECURSE_FLAGS): Delete.
6109 * configure: Regenerate.
6110 * Makefile.in: Regenerate.
6111
6112 2005-07-27 Mark Mitchell <mark@codesourcery.com>
6113
6114 * Makefile.tpl (EXTRA_TARGET_FLAGS): Set LDFLAGS=LDFLAGS_FOR_TARGET.
6115 * Makefile.def (flags_to_pass): Add LDFLAGS_FOR_TARGET.
6116 * Makefile.in: Regenerated.
6117
6118 2005-07-26 Mark Mitchell <mark@codesourcery.com>
6119
6120 * Makefile.tpl (SYSROOT_CFLAGS_FOR_TARGET): New variable.
6121 (CFLAGS_FOR_TARGET): Use it.
6122 (CXXFLAGS_FOR_TARGET): Likewise.
6123 * Makefile.in: Regenerated.
6124 * configure.in (--with-build-sysroot): New option.
6125 * configure: Regenerated.
6126
6127 2005-07-24 Paolo Bonzini <bonzini@gnu.org>
6128
6129 * Makefile.tpl: Wrap install between unstage and stage
6130 * Makefile.in: Regenerate.
6131
6132 2005-07-16 Kelley Cook <kcook@gcc.gnu.org>
6133
6134 * all files: Update FSF address.
6135
6136 2005-07-14 Jim Blandy <jimb@redhat.com>
6137
6138 * configure.in: Add cases for Renesas m32c.
6139 * configure: Regenerated.
6140
6141 2005-07-14 Kelley Cook <kcook@gcc.gnu.org>
6142
6143 * COPYING, compile, config-ml.in, config.guess,
6144 config.sub, install-sh, missing, mkinstalldirs,
6145 symlink-tree, ylwrap: Sync from upstream sources.
6146
6147 2005-07-13 Eric Christopher <echristo@redhat.com>
6148
6149 * configure.in: Add toplevel noconfigdir support for tpf.
6150 * configure: Regenerate.
6151
6152 2005-07-11 Jakub Jelinek <jakub@redhat.com>
6153
6154 * Makefile.def (target_modules): Add libssp.
6155 * configure.in (target_libraries): Add target-libssp.
6156 * configure: Rebuilt.
6157 * Makefile.in: Rebuilt.
6158
6159 2005-07-11 Paolo Bonzini <bonzini@gnu.org>
6160
6161 PR ada/22340
6162
6163 * Makefile.def: Sync with gcc.
6164 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Fix pasto.
6165 * Makefile.in: Regenerate.
6166
6167 2005-07-07 Andreas Schwab <schwab@suse.de>
6168
6169 * Makefile.def (flags_to_pass): Add CFLAGS_FOR_BUILD.
6170 * Makefile.tpl (EXTRA_GCC_FLAGS): Don't pass CFLAGS_FOR_BUILD here.
6171 * Makefile.in: Regenerated.
6172
6173 2005-07-07 Kazu Hirata <kazu@codesourcery.com>
6174
6175 * configure.in: Add --enable-libssp and --disable-libssp.
6176 * configure: Regenerate with autoconf-2.13.
6177
6178 2005-07-06 Geoffrey Keating <geoffk@apple.com>
6179
6180 * configure.in: Don't build sim or rda when targetting darwin.
6181 * configure: Regenerate.
6182
6183 2005-07-04 Ben Elliston <bje@gnu.org>
6184
6185 * src-release (do-proto-toplev): Remove dejagnu bits.
6186 (DEJAGNU_SUPPORT_DIRS): Remove.
6187 (dejagnu.tar.bz2, dejagnu.tar): Likewise.
6188 (GDBD_SUPPORT_DIRS): Likewise.
6189 (gdb+dejagnu.tar.bz2, gdb+dejagnu.tar): Likewise.
6190 (INSIGHTD_SUPPORT_DIRS): Likewise.
6191 (insight+dejagnu.tar.bz2, insight+dejagnu.tar): Likewise.
6192
6193 2005-06-30 Ben Elliston <bje@gnu.org>
6194
6195 * setup.com (mpw): Remove unused directive.
6196
6197 2005-06-22 Paolo Bonzini <bonzini@gnu.org>
6198
6199 * Makefile.def (stagefeedback): Come after profile.
6200 Define profiledbootstrap target.
6201 * Makefile.tpl (profiledbootstrap): Remove.
6202 (stageprofile-end): Zap stagefeedback.
6203 (stagefeedback-start): Copy all .gcda files, not only GCC's.
6204 * Makefile.in: Regenerate.
6205
6206 2005-06-13 Zack Weinberg <zack@codesourcery.com>
6207
6208 * depcomp: Update from automake CVS. Add 'ia64hp' stanza.
6209 In 'cpp' stanza, support '#line' as well as '# '.
6210
6211 2005-06-07 Hans-Peter Nilsson <hp@axis.com>
6212
6213 * configure.in (unsupported_languages): New macro.
6214 <mmix-knuth-mmixware>: Set unsupported_languages. Name explicit
6215 non-ported target libraries in noconfigdirs.
6216 <cris-*, crisv32-*> Ditto, except for non-aout, non-elf,
6217 non-linux-gnu. Remove libgcj_ex_libffi.
6218 <lang_frag loop>: Set add_this_lang=no if the language is in
6219 unsupported_languages.
6220 * configure: Regenerate.
6221
6222 2005-06-04 Tobias Schl"uter <tobias.schlueter@physik.uni-muenchen.de>
6223
6224 * configure.in: Fix typo in handling of --with-mpfr-dir.
6225 * configure: Regenerate.
6226
6227 2005-06-02 Jim Blandy <jimb@redhat.com>
6228
6229 * config.sub: Add cases for the Renesas m32c. (This patch has been
6230 accepted into the master sources.)
6231
6232 2005-06-02 Aldy Hernandez <aldyh@redhat.com>
6233 Michael Snyder <msnyder@redhat.com>
6234 Stan Cox <scox@redhat.com>
6235
6236 * configure.in: Set noconfigdirs for ms1.
6237
6238 * configure: Regenerate.
6239
6240 2005-05-25 Paolo Bonzini <bonzini@gnu.org>
6241
6242 * Makefile.tpl (stage[+id+]-start): Iterate over target module as well.
6243 (Dependencies): Consider target modules for bootstrap dependencies.
6244 Make target bootstrap modules depend on each stage's gcc.
6245 * Makefile.in: Regenerate.
6246
6247 2005-05-20 Paolo Bonzini <bonzini@gnu.org>
6248
6249 * Makefile.def (configure-gcc): Depend on binutils having been built.
6250 (all-gcc): No need to do it here.
6251 * Makefile.in: Regenerate.
6252
6253 2005-05-19 Paul Brook <paul@codesourcery.com>
6254
6255 * configure.in: Rewrite misleading error message when requested
6256 language cannot be built.
6257 * configure: Regenerate.
6258
6259 2005-05-15 Daniel Jacobowitz <dan@codesourcery.com>
6260
6261 * ylwrap: Import from Automake 1.9.5.
6262
6263 2005-05-04 Mike Stump <mrs@apple.com>
6264
6265 * configure.in: Always pass --target to target configures as
6266 otherwise rebuilds that do --recheck will fail.
6267 * configure: Rebuilt.
6268
6269 2005-05-04 Paolo Bonzini <bonzini@gnu.org>
6270
6271 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Rename from
6272 STAGE_HOST_EXPORTS.
6273 (configure, all): Add bootstrap support.
6274 (Host modules, target modules): Pass post-stage1 flags and exports.
6275 (Top-level bootstrap): Remove bootstrap rules, expanded elsewhere.
6276 * Makefile.in: Regenerate.
6277
6278 2005-04-29 Paolo Bonzini <bonzini@gnu.org>
6279
6280 Sync from gcc:
6281
6282 2005-04-22 Bernd Schmidt <bernd.schmidt@analog.com>
6283
6284 * config.sub: Update from master copy.
6285
6286 2005-04-19 Hans-Peter Nilsson <hp@axis.com>
6287
6288 * configure.in <crisv32-*-*, cris-*-*>: New local variable
6289 libgcj_ex_libffi. Have specific match for *-*-linux*. Separate
6290 matches for "*-*-aout" and "*-*-elf". Don't disable libffi for
6291 "*-*-elf" and "*-*-linux*".
6292 * configure: Regenerate.
6293
6294 2005-04-06 Paolo Bonzini <bonzini@gnu.org>
6295
6296 * Makefile.tpl (BUILD_CONFIGARGS): Include --with-build-subdir.
6297 (TARGET_CONFIGARGS): Include --with-target-subdir.
6298 (configure, all): New macros. Use them throughout.
6299
6300 2005-04-05 Paolo Bonzini <bonzini@gnu.org>
6301
6302 * Makefile.tpl: Sync with gcc.
6303 * Makefile.in: Regenerate.
6304
6305 2005-03-30 J"orn Rennecke <joern.rennecke@st.com>
6306
6307 * config/mh-mingw32: Delete.
6308 * configure.in: Don't use it.
6309 * configure: Regenerate.
6310
6311 2005-03-31 Paolo Bonzini <bonzini@gnu.org>
6312
6313 * Makefile.def (bfd, opcodes, libstdc++-v3, libmudflap): Set lib_path.
6314 * Makefile.tpl (SET_LIB_PATH, REALLY_SET_LIB_PATH): Remove.
6315 (HOST_EXPORTS, STAGE_HOST_EXPORTS, TARGET_EXPORTS): Set $(RPATH_ENVVAR).
6316 (HOST_LIB_PATH): Generate from Makefile.def.
6317 (TARGET_LIB_PATH): Likewise.
6318 (Old bootstrap targets): Include TARGET_LIB_PATH into RPATH_ENVVAR.
6319 * Makefile.in: Regenerate.
6320 * configure.in (set_lib_path, SET_LIB_PATH, SET_GCC_LIB_PATH): Remove.
6321 (RPATH_ENVVAR): Include Darwin case.
6322 * configure: Regenerate.
6323
6324 2005-03-25 Paolo Bonzini <bonzini@gnu.org>
6325
6326 * configure.in (RPATH_ENVVAR): Set to DYLD_LIBRARY_PATH on Darwin.
6327 * configure: Regenerate.
6328
6329 2005-03-21 Zack Weinberg <zack@codesourcery.com>
6330
6331 * Makefile.def: Remove libstdcxx_incdir, libsubdir, gxx_include_dir,
6332 gcc_version, and gcc_version_trigger from set of flags to pass.
6333 * Makefile.tpl: Remove definitions of above variables.
6334 (config.status): Remove dependency on $(gcc_version_trigger).
6335 * Makefile.in: Regenerate.
6336 * configure.in: Do not reference config/gcc-version.m4 nor
6337 config/gxx-include-dir.m4. Do not invoke TL_AC_GCC_VERSION nor
6338 TL_AC_GXX_INCLUDE_DIR. Do not set gcc_version_trigger.
6339 * configure: Regenerate.
6340
6341 2005-03-16 Manfred Hollstein <manfred.h@gmx.net>
6342 Andrew Pinski <pinskia@physics.uc.edu>
6343
6344 * Makefile.tpl (check-[+module+]): Fix shell statement inside if ... fi.
6345 * Makefile.in: Regenerate.
6346
6347 2005-03-01 Alexandre Oliva <aoliva@redhat.com>
6348
6349 PR libgcj/20160
6350 * ltmain.sh: Avoid creating archives with components that have
6351 duplicate basenames.
6352
6353 2005-02-28 Andrew Pinski <pinskia@physics.uc.edu>
6354
6355 PR bootstrap/20250
6356 * Makefile.tpl (HOST target installs): Fix copy and pasto, use install
6357 instead of check.
6358 * Makefile.in: Regenerate.
6359
6360 2005-02-28 Paolo Bonzini <bonzini@gnu.org>
6361
6362 Sync from gcc.
6363
6364 2005-02-28 Paolo Bonzini <bonzini@gnu.org>
6365
6366 PR bootstrap/17383
6367 * Makefile.def (target_modules): Remove "stage", now unnecessary.
6368 * Makefile.tpl (HOST_SUBDIR): New substitution.
6369 (STAGE_HOST_EXPORTS, EXPECT, HOST_LIB_PATH, USUAL_AR_FOR_TARGET,
6370 USUAL_AS_FOR_TARGET, USUAL_DLLTOOL_FOR_TARGET, USUAL_GCC_FOR_TARGET,
6371 USUAL_LD_FOR_TARGET, USUAL_NM_FOR_TARGET, USUAL_OBJDUMP_FOR_TARGET,
6372 USUAL_RANLIB_FOR_TARGET, USUAL_WINDRES_FOR_TARGET): Use it.
6373 (Host modules, Bootstrapped modules): Use it.
6374 (Build modules, Target modules): Do not create symlink trees,
6375 always configure out-of-srcdir.
6376 (distclean): Try removing $(host_subdir) with rm before using rm -rf.
6377 * configure.in (FLAGS_FOR_TARGET, CC_FOR_TARGET, GCJ_FOR_TARGET,
6378 GFORTRAN_FOR_TARGET, CXX_FOR_TARGET, RAW_CXX_FOR_TARGET): Use
6379 $(HOST_SUBDIR). Create a symlink for host_subdir.
6380
6381 * Makefile.in: Regenerate.
6382 * configure: Regenerate.
6383
6384 Merged from libada-gnattools-branch:
6385 2004-11-28 Nathanael Nerode <neroden@gcc.gnu.org>
6386
6387 * Makefile.def: Add gnattools as a module, depending on target-libada.
6388 * Makefile.in: Regenerate.
6389 * configure.in: Include gnattools in host_tools; disable it if ada
6390 is disabled.
6391 * configure: Regenerate.
6392
6393 2005-02-23 Nick Clifton <nickc@redhat.com>
6394
6395 * configure: Regenerate.
6396
6397 2005-02-22 Paul Schlie <schlie@comcast.net>
6398
6399 * configure.in: Allow darwin targeted ports to build tk, itcl and
6400 libgui.
6401
6402 2005-02-21 Eric Botcazou <ebotcazou@libertysurf.fr>
6403
6404 PR libgcj/10353
6405 * configure.in (noconfigdirs) <sparc-*-solaris2.[0-6]>: Add libgcj.
6406 * configure: Regenerate.
6407
6408 2005-02-08 Andrew Cagney <cagney@gnu.org>
6409
6410 * MAINTAINERS: Delete reference to dejagnu/ and mmalloc/ from the
6411 gdb/ section. Update GDB's URL.
6412
6413 2005-01-31 Andrew Cagney <cagney@gnu.org>
6414
6415 * gettext.m4: Only set ENABLE_NLS when gettext is present.
6416
6417 2005-01-29 Hans-Peter Nilsson <hp@axis.com>
6418
6419 * configure.in (noconfigdirs) <crisv32-*-*>: Match like cris-*-*.
6420 <crisv32-*-*, cris-*-*>: Only disable target-newlib and
6421 target-libgloss when not *-*-elf and *-*-aout.
6422 * configure: Regenerate.
6423
6424 2005-01-27 Andrew Cagney <cagney@gnu.org>
6425
6426 * gettext.m4: Don't use NONE as a default for CATOBJEXT.
6427
6428 2005-01-24 Andrew Cagney <cagney@gnu.org>
6429
6430 * gettext.m4: Only fall back to ../intl/ when it's present.
6431
6432 2005-01-17 Kelley Cook <kcook@gcc.gnu.org>
6433
6434 * install-sh, config.sub: Import from upstream.
6435
6436 2005-01-17 Kelley Cook <kcook@gcc.gnu.org>
6437
6438 PR bootstrap/18222
6439 * Makefile.def: Pass CPPFLAGS_FOR_TARGET.
6440 * Makefile.tpl: Define target CPPFLAGS on CPPFLAGS_FOR_TARGET.
6441 * Makefile.in: Regenerate.
6442
6443 2005-01-03 Paolo Bonzini <bonzini@gnu.org>
6444
6445 Revert 2004-12-28 Makefile changes, a better fix will be
6446 applied to mainline and src after GCC 4.0 branches.
6447
6448 2004-12-28 Paolo Bonzini <bonzini@gnu.org>
6449
6450 PR bootstrap/17383
6451
6452 * Makefile.def (target_modules): Remove stage parameter,
6453 it is always true now.
6454 * Makefile.tpl (configure-build-[+module+],
6455 configure-target-[+module+]): Always build symlink tree
6456 for the directory and for include. BUILD_SUBDIR and
6457 TARGET_SUBDIR cannot be . anymore.
6458 * Makefile.in: Regenerate.
6459
6460 2004-12-25 David Edelsohn <edelsohn@gnu.org>
6461
6462 Revert 2004-12-08 Makefile changes.
6463
6464 2004-12-16 Andrew Stubbs <andrew.stubbs@st.com>
6465
6466 * configure.in (sh64-*-*): Reenable gprof.
6467 * configure: Regenerate.
6468
6469 2004-12-09 Jim Blandy <jimb@redhat.com>
6470
6471 * MAINTAINERS: List 'depcomp' as part of automake.
6472
6473 2004-12-08 David Edelsohn <edelsohn@gnu.org>
6474
6475 * Makefile.def (flags_to_pass): Add PICFLAG_FOR_TARGET.
6476 * Makefile.tpl (EXTRA_HOST_FLAGS): Add PICFLAG.
6477 (EXTRA_TARGET_FLAGS): Add PICFLAG.
6478 * Makefile.in: Regenerate.
6479
6480 2004-12-07 Matt Kraai <kraai@ftbfs.org>
6481
6482 * Makefile.tpl: Generate normal dependencies if the LHS module is
6483 not bootstrapped.
6484 * Makefile.in: Regenerate.
6485
6486 2004-12-03 Richard Sandiford <rsandifo@redhat.com>
6487
6488 * configure.in: Include config/gxx-include-dir.m4. Use
6489 TL_AC_GXX_INCLUDE_DIR. Remove some now-redundant AC_SUBSTs.
6490 * configure: Regenerate.
6491
6492 2004-12-03 Richard Sandiford <rsandifo@redhat.com>
6493
6494 * config.if: Delete.
6495 * configure.in: Set libstdcxx_incdir directly.
6496 * configure: Regenerate.
6497 * MAINTAINERS: Remove mention of config.if.
6498 * src-release (DEVO_SUPPORT): Remove config.if.
6499
6500 2004-12-02 Eric Christopher <echristo@redhat.com>
6501
6502 * Makefile.tpl (clean-target-libgcc): Add stmp-dirs to list
6503 of things to remove.
6504 * Makefile.in: Regenerate.
6505
6506 2004-12-02 Richard Sandiford <rsandifo@redhat.com>
6507
6508 * configure.in: Clear gcc_version_trigger if the file doesn't exist.
6509 * configure: Regenerate.
6510
6511 2004-12-02 Richard Sandiford <rsandifo@redhat.com>
6512
6513 * configure.in: Include config/gcc-version.m4. Use TL_AC_GCC_VERSION
6514 to set gcc_version_trigger. Remove some now-redundant AC_SUBSTs.
6515 * configure: Regenerate.
6516
6517 2004-11-26 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
6518
6519 * configure.in (hppa*-*-linux*): Don't add libgcj to noconfigdirs.
6520 (hppa*64*-*-*): Delete incorrect comment.
6521 * configure: Rebuilt.
6522
6523 2004-11-15 Kelley Cook <kcook@gcc.gnu.org>
6524
6525 * install-sh, compile: Import from automake.
6526
6527 2004-11-15 Kelley Cook <kcook@gcc.gnu.org>
6528
6529 * config.guess, config.sub: Import from savannnah.
6530
6531 2004-11-12 Mike Stump <mrs@apple.com>
6532
6533 * Makefile.def: Add html support.
6534 * Makefile.tpl: Likewise.
6535 * Makefile.in: Regenerate.
6536
6537 2004-11-11 Geoffrey Keating <geoffk@apple.com>
6538
6539 PR 18423
6540 * configure.in: Remove all instances of build-fixincludes from
6541 noconfigdirs.
6542 (build_configargs): Supply --target to subdirectories.
6543 * configure: Regenerate.
6544
6545 * Makefile.def: Make gcc install depend on fixincludes install.
6546 * Makefile.in: Regenerate.
6547
6548 2004-11-08 Hans-Peter Nilsson <hp@bitrange.com>
6549
6550 * configure.in (noconfigdirs) [mmix-*-*]: Disable
6551 target-libgfortran.
6552 * configure: Regenerate.
6553
6554 2004-11-07 David Edelsohn <edelsohn@gnu.org>
6555
6556 * config-ml.in: Pass FCFLAGS for multilibs, handle GFORTRAN
6557 like CC.
6558
6559 2004-11-05 Paolo Bonzini <bonzini@gnu.org>
6560
6561 * Makefile.def (host fixincludes): Specify missing targets.
6562 * Makefile.in: Regenerate.
6563
6564 2004-11-04 H.J. Lu <hongjiu.lu@intel.com>
6565
6566 PR other/17783
6567 * configure.in: Set up LD_LIBRARY_PATH by default for gcc.
6568 * configure: Regenerated.
6569
6570 2004-11-04 Daniel Jacobowitz <dan@debian.org>
6571
6572 * configure.in (arm-*-oabi*, thumb-*-oabi*): Remove.
6573 * configure: Regenerated.
6574
6575 2004-10-28 Eric B. Weddington <ericw@evcohs.com>
6576
6577 PR target/18151
6578 * configure.in (case ${target}): Do not build fixincludes for avr.
6579 * configure: Regenerated.
6580
6581 2004-10-26 Paolo Bonzini <bonzini@gnu.org>
6582
6583 * configure.in (case ${target}): Do not build fixincludes
6584 on platforms where it is not used.
6585 * configure: Regenerated.
6586
6587 2004-10-23 Daniel Jacobowitz <dan@debian.org>
6588
6589 * configure.in: Use an absolute path to install-sh.
6590 * configure: Regenerated.
6591
6592 2004-10-19 Andrew Cagney <cagney@gnu.org>
6593
6594 * src-release (do-djunpack, do-md5sum): Install the generated file
6595 directly into the proto-toplev/ directory.
6596
6597 2004-10-19 Andrew Cagney <cagney@gnu.org>
6598
6599 * src-release (GDB_SUPPORT_DIRS): Remove utils and intl.
6600
6601 2004-10-12 Kelley Cook <kcook@gcc.gnu.org>
6602
6603 * configure.in (*-*-cygwin*): Supress warning if newlib not present.
6604 * configure: Regenerate.
6605
6606 2004-10-06 Paolo Bonzini <bonzini@gnu.org>
6607
6608 Fix wrong conflict resolution in:
6609
6610 2004-08-16 Paolo Bonzini <bonzini@gnu.org>
6611
6612 * Makefile.in: Regenerate.
6613 * Makefile.tpl (Autogenerated `all-*' targets): Invoke $(TARGET-*)
6614 in the recursive `make', instead of hardwiring `all'.
6615 (Autogenerated TARGET-* variables): New.
6616
6617 2004-10-05 Ulrich Weigand <uweigand@de.ibm.com>
6618
6619 Merged from GCC / libtool upstream:
6620 2004-10-02 P.J. Darcy <darcypj@us.ibm.com>
6621 * ltcf-c.sh (tpf*): Add ld_shlibs=yes.
6622 * ltcf-cxx.sh (tpf*): Likewise.
6623 * ltconfig (tpf*): Add TPF OS configuration support.
6624
6625 2004-09-30 Tomer Levi <Tomer.Levi@nsc.com>
6626
6627 * configure.in: Enable target-libgloss for crx-*-*.
6628 * configure: Regenerate.
6629
6630 2004-09-24 Michael Roth <mroth@nessie.de>
6631
6632 * configure.in (--without-headers): Add missing double quotes.
6633 * configure: Regenerate.
6634
6635 2004-09-24 Kelley Cook <kcook@gcc.gnu.org>
6636
6637 * ylwrap: Revert to previous version.
6638
6639 2004-09-23 H.J. Lu <hongjiu.lu@intel.com>
6640
6641 PR bootstrap/17369
6642 * Makefile.tpl (REALLY_SET_LIB_PATH): Add @SET_GCC_LIB_PATH@.
6643 (HOST_EXPORTS]): Add @SET_GCC_LIB_PATH@. Set and export
6644 SET_GCC_LIB_PATH_CMD.
6645 (BASE_TARGET_EXPORTS): Likewise.
6646 * Makefile.in: Regenerated.
6647
6648 * configure.in (SET_GCC_LIB_PATH): Set and substitute.
6649 * configure: Regenerated.
6650
6651 2004-09-23 Kelley Cook <kcook@gcc.gnu.org>
6652
6653 * config.guess: New upstream version
6654 * compile, depcomp, install-sh, ylwrap: Likewise.
6655
6656 2004-09-19 Roger Sayle <roger@eyesopen.com>
6657
6658 * config/mh-x86omitfp: New host makefile fragment. Add
6659 -fomit-frame-pointer to the default BOOT_CFLAGS.
6660 * configure.in: Use it to speed up bootstrap on some IA-32 hosts.
6661 * configure: Regenerate.
6662
6663 2004-09-15 Andrew Pinski <pinskia@physics.uc.edu>
6664
6665 PR target/11572
6666 * configure.in (*-*-darwin*): Renable libobjc.
6667 * configure: Regenerate.
6668
6669 2004-09-09 Daniel Berlin <dberlin@dberlin.org>
6670
6671 * Makefile.def: Remove libbanshee.
6672 * Makefile.tpl: Ditto.
6673 * configure.in: Ditto.
6674 * Makefile.in: Regen.
6675 * configure: Ditto.
6676
6677 2004-09-07 Paolo Bonzini <bonzini@gnu.org>
6678
6679 * missing: Import latest version from master repository.
6680
6681 2004-09-04 Nick Clifton <nickc@redhat.com>
6682
6683 * config.sub: Import latest version from master repository.
6684 * config.guess: Likewise.
6685 This includes these changes:
6686
6687 2004-08-27 Hans-Peter Nilsson <hp@axis.com>
6688
6689 * config.sub: Handle crisv32, alias etraxfs.
6690 * config.guess (crisv32:Linux:*:*): Handle.
6691
6692 2004-08-13 Brad Smith <brad@comstyle.com>
6693
6694 * config.guess (*:OpenBSD:*:*): Remove defunct MIPS machines.
6695 (sgi:OpenBSD:*:*): Emit mips64, not mipseb.
6696
6697 2004-08-11 Paul Eggert <eggert@cs.ucla.edu>
6698
6699 * config.guess (*:Darwin:*:*): If uname -p reports "unknown",
6700 assume the processor is a powerpc. This is because coreutils
6701 uname (at least versions 4.5.7 through 5.2.1) outputs "unknown"
6702 in this case, due to a MacOS X bug that causes
6703 sysctl ((int[]) {CTL_HW, HW_MACHINE_ARCH}, 2, buffer, &bufsize, 0, 0)
6704 to return a negative number.
6705 Problem reported by Petter Reinholdtsen in:
6706 http://lists.gnu.org/archive/html/bug-gnu-utils/2003-02/msg00201.html
6707
6708 2004-07-19 Ben Elliston <bje@gnu.org>
6709
6710 * config.guess (S7501:*:4.0:3.0): Handle NCR System V UNIX machine.
6711
6712 2004-06-24 Ben Elliston <bje@gnu.org>
6713
6714 * config.guess: Update copyright years.
6715 * config.sub: Likewise.
6716
6717 2004-06-22 Robert Millan <robertmh@gnu.org>
6718
6719 * config.guess (*:FreeBSD:*:*): Remove check for glibc (unneeded
6720 since GNU/kFreeBSD systems match *:GNU/*:*:* instead).
6721
6722 2004-06-22 Stanley F. Quayle <stan@stanq.com>
6723
6724 * config.guess (*:*VMS:*:*): New entry. Replaces
6725 Alpha:OpenVMS:*. Recognize and advertise all VMS flavors as dec
6726 manufacturer.
6727
6728 2004-06-22 Ben Elliston <bje@gnu.org>
6729
6730 * config.guess: Cray fixes from Wendy Palm <wendyp@cray.com>.
6731 * config.sub: Likewise.
6732
6733 2004-06-22 Ben Elliston <bje@gnu.org>
6734
6735 Reported by Hans-Peter Nilsson <hp@bitrange.com>:
6736 * config.sub: Correctly handle mmix-knuth and mmix-knuth-mmixware.
6737
6738 2004-06-11 Ben Elliston <bje@gnu.org>
6739
6740 * config.guess (pegasos:OpenBSD:*:*): Remove.
6741
6742 2004-06-11 Ben Elliston <bje@gnu.org>
6743
6744 From Wouter Verhelst <wouter@grep.be>:
6745 * config.guess (M68*:*:R3V[5678]:*): Detect R3V8.
6746
6747 2004-06-11 Ben Elliston <bje@gnu.org>
6748
6749 * config.guess (luna88k:OpenBSD:*:*): New.
6750
6751 2004-03-12 Kazuhiro Inaoka <inaoka.kazuhiro@renesas.com>
6752
6753 * config.guess (m32r*:Linux:*:*): New case.
6754 * config.sub: Handle m32rle.
6755
6756 2004-03-12 Ben Elliston <bje@wasabisystems.com>
6757
6758 From Jens Petersen <petersen@redhat.com>:
6759 * config.sub: Handle sparcv8.
6760
6761 2004-03-03 Ben Elliston <bje@wasabisystems.com>
6762
6763 From Tom Smith <smith@cag.lkg.hp.com>:
6764 * config.guess: Version suffixes are equally significant on Tru64
6765 V4.* and V5.*, so do not ignore them on V5.*. Handle a version
6766 prefix of "P" (patched kernel).
6767
6768 2004-02-23 Tal Agmon <Tal.Agmon@nsc.com>
6769
6770 * config.sub: Add support for National Semiconductor CRX target.
6771
6772 2004-09-03 Jan Beulich <jbeulich@novell.com>
6773
6774 * configure.in: Remove target-libstdc++-v3 from noconfigdirs for
6775 *-*-netware, but add target-libmudflap.
6776 Consolidate *-*-netware targets (of which really only i?86 exists)
6777 into a single entry.
6778 * configure: Likewise.
6779
6780 2004-09-01 Paolo Bonzini <bonzini@gnu.org>
6781
6782 * Makefile.tpl (sorry): Remove.
6783 (clean-stage[+id+], clean-stage[+id+]-module): New targets.
6784 (cleanstrap targets): Depend on distclean, not distclean-stage1.
6785 (do-clean): Clean per-stage directories too.
6786 (do-distclean): Run distclean-stage1 too.
6787 (.NOTPARALLEL): Enable during toplevel bootstrap.
6788 (stage[+id+]-bubble): Enable parallel execution during
6789 the recursive invocation.
6790 * Makefile.in: Regenerate.
6791
6792 Sync from gcc (moving the Makefile.in change to Makefile.tpl):
6793
6794 2004-08-31 Robert Bowdidge <bowdidge@apple.com>
6795
6796 * Makefile.in: Move BOOT_CFLAGS above host makefile fragment include.
6797 * configure.in: add test for powerpc-*-darwin* to specify makefile frag
6798 * configure: regenerate
6799 * config/mh-ppc-darwin: create file, override BOOT_CFLAGS for
6800 -mdynamic-no-pic
6801
6802 2004-08-31 Paolo Bonzini <bonzini@gnu.org>
6803
6804 * Makefile.tpl: Move BOOT_CFLAGS above host makefile fragment
6805 include.
6806 * configure.in: Fix indentation.
6807 * configure: Regenerate.
6808
6809 2004-08-31 Paolo Bonzini <bonzini@gnu.org>
6810
6811 * Makefile.def (build_modules): Add fixincludes.
6812 (dependencies): Make gcc depend on fixincludes.
6813 * configure.in (build_tools): Add fixincludes.
6814 (build_configdirs): Always include build_libs.
6815 * Makefile.in: Regenerate.
6816 * configure: Regenerate.
6817
6818 2004-08-30 Paolo Bonzini <bonzini@gnu.org>
6819
6820 * Makefile.def (bootstrap stages): Add 'lean' parameter.
6821 * Makefile.tpl (configure-stageN-*, all-stageN-*): Turned into
6822 phony targets; do not generate timestamp files.
6823 (distclean-stageN): Remove references to their timestamp files.
6824 (restageN, touch-stageN): Remove.
6825 (stageN-bubble): Rewritten.
6826 (compare): Support lean bootstraps.
6827 * Makefile.in: Regenerate.
6828
6829 * configure.in: Only warn when bootstrapping but
6830 build != host or build != target. Support lean bootstraps.
6831 * configure: Regenerate.
6832
6833 Sync from gcc:
6834 2004-08-26 Phil Edwards <phil@codesourcery.com>
6835
6836 * configure.in: Give a better error message if GMP/MPFR are missing
6837 and a language needing them has been requested.
6838 * configure: Regenerated.
6839
6840 2004-08-25 Phil Edwards <phil@codesourcery.com>
6841
6842 * configure.in: Print a list of available language front-ends if
6843 a requested one is missing. Tidy stray tab characters.
6844 * configure: Regenerated.
6845
6846 2004-08-17 Paolo Bonzini <bonzini@gnu.org>
6847
6848 * Makefile.in: Regenerate.
6849 * configure: Regenerate.
6850
6851 * Makefile.def (bootstrap-stage): Rename extra_*_flags to
6852 stage_*_flags.
6853 * Makefile.tpl (configure-[+module+], all-[+module+]): Exit
6854 for bootstrapped modules if toplevel bootstrap is going.
6855 (GCC bootstrap): Generate per-stage targets for all bootstrapped
6856 modules. Adjust for changes in Makefile.def. Enable several
6857 rules even in non-bootstrap mode, just to avoid peppering the
6858 template with unnecessary "@if/@endif gcc-bootstrap" pairs.
6859 (stage-[+prev+]-bubble): Remove.
6860
6861 * Makefile.def (Dependencies): Depend on all-build-bison,
6862 all-build-flex, all-build-byacc, all-build-texinfo, rather
6863 than the host variations.
6864 * Makefile.tpl (BUILD_DIR_PREFIX): Remove. Replace throughout
6865 with BUILD_SUBDIR.
6866 (BISON): Update for recent Bisons.
6867 (YACC): Fix typo.
6868 (cross): Depend on all-build.
6869 (all): Do not depend on all-build.
6870 (prebootstrap): Remove.
6871 (dep-kind): Accept separate prefixes for MODULE and ON variables.
6872 (Prebootstrap dependencies): Add them to the per-stage targets
6873 and to all-prebootstrap.
6874 * configure.in (build_configdirs): Always enable build_tools.
6875 (BUILD_DIR_PREFIX): Remove.
6876
6877 * Makefile.def (gcc): Add target variable.
6878 (gdb, expect, guile, tk, tix): Replace with_x with extra_make_flags.
6879 * Makefile.tpl (Autogenerated `all-*' targets): Invoke $(TARGET-*)
6880 in the recursive `make', instead of hardwiring `all'.
6881 (Autogenerated TARGET-* variables): New.
6882
6883 2004-08-17 Robert Millan <robertmh@gnu.org>
6884
6885 * configure.in: In noconfigdirs check, match GNU/k*BSD with GNU/Linux
6886 (instead of FreeBSD).
6887 * configure: Regenerate.
6888
6889 2004-08-12 Nathanael Nerode <neroden@gcc.gnu.org>
6890
6891 * Makefile.def, configure.in, src-release: Remove useless, bogus
6892 references to tix.
6893 * Makefile.in, configure: Regenerate.
6894
6895 * src-release: Stop distributing mmalloc with gdb (which doesn't
6896 use it).
6897 * Makefile.def: GDB doesn't depend on mmalloc anymore.
6898 * Makefile.in: Regenerate.
6899
6900 2004-08-09 Mark Mitchell <mark@codesourcery.com>
6901
6902 * configure.in (arm*-*-eabi*): New target.
6903 * configure: Regenerate.
6904
6905 2004-08-01 Robert Millan <robertmh@gnu.org>
6906
6907 * configure.in: Turn mt-linux into mt-gnu. Use mt-gnu and enable
6908 libmudflap for all GNU-based systems (with Glibc).
6909 * configure: Regenerate.
6910
6911 2004-08-06 Paolo Bonzini <bonzini@gnu.org>
6912
6913 * Makefile.def (bfd, opcodes, gcc, zlib): Mark as bootstrap module.
6914 (bison, byacc, flex, texinfo): Do not mark as bootstrap module.
6915 (Dependencies): New section.
6916 * Makefile.tpl (Dependencies): Generate from Makefile.def.
6917 (configure-target-[+module+]): Depend on maybe-all-gcc
6918 (all-prebootstrap): New name of all-bootstrap. Changed throughout.
6919 (toplevel profiledbootstrap): Fix dependencies.
6920 * Makefile.in: Regenerate.
6921
6922 2004-08-03 Mark Mitchell <mark@codesourcery.com>
6923
6924 * configure.in (arm*-*-symbianelf*): Add ${libgcj} and
6925 target-libiberty to noconfigdirs.
6926
6927 2004-08-03 Paul Brook <paul@codesourcery.com>
6928
6929 * configure.in: Check for MPFR as well as GMP.
6930 * configure: Regenerate.
6931
6932 2004-08-03 Paolo Bonzini <bonzini@gnu.org>
6933
6934 * Makefile.def (host-modules): Add gcc.
6935 * Makefile.in: Regenerate.
6936 * Makefile.tpl (sorry): New rule.
6937 (configure-host, all-host, [+make_target+]-host, do-check,
6938 install-host): Do not add gcc as a special case.
6939 (host modules): Add a small special-casing for gcc. Export
6940 extra_make_flags through the environment.
6941 (maybe-configure-gcc, configure-gcc, maybe-all-gcc, all-gcc,
6942 maybe-check-gcc, check-gcc, maybe-install-gcc, install-gcc,
6943 other recursive targets for gcc): Remove.
6944
6945 (all, do-[+make_target+], do-check): Wrap between unstage and stage.
6946 (stage, unstage): New rules.
6947 (stage[+id+]-start, stage[+id+]-end, [+compare-target+],
6948 distclean-stage[+id+]): Use stage_current.
6949 ([+bootstrap-target+], profiledbootstrap): Do not invoke manually
6950 the stage*-start rules.
6951
6952 2004-07-19 Robert Millan <robertmh@gnu.org>
6953
6954 Synced from gcc:
6955
6956 2004-04-26 Robert Millan <robertmh@gnu.org>
6957
6958 Add patches from libtool CVS.
6959 * libtool.m4: Add kfreebsd*-gnu and knetbsd*-gnu.
6960 * ltconfig: Likewise.
6961 * ltcf-c.sh: Likewise.
6962 * ltcf-cxx.sh: Likewise.
6963 * ltcf-gcj.sh: Likewise.
6964
6965 2004-07-12 Paolo Bonzini <bonzini@gnu.org>
6966
6967 * configure.in: Add noconfigdirs for crx-*-*.
6968 * configure: Regenerate.
6969
6970 2004-07-12 Paolo Bonzini <bonzini@gnu.org>
6971
6972 Synced from gcc:
6973
6974 2004-07-09 Loren J. Rittle <ljrittle@acm.org>
6975
6976 * configure.in: Build libmudflap by default on FreeBSD.
6977 * configure: Regenerated.
6978
6979 2004-07-09 Mark Mitchell <mark@codesourcery.com>
6980
6981 * configure.in: Do not build libmudflap by default on non-GNU/Linux
6982 systems.
6983 * configure: Regenerated.
6984
6985 2004-07-08 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
6986
6987 PR target/16344
6988 * Makefile.tpl (profiledbootstrap): Build runtime libraries with
6989 feedback based compiler.
6990 * Makefile.in: Rebuilt.
6991
6992 2004-07-05 Phil Edwards <phil@codesourcery.com>
6993
6994 * configure.in: Do not prepend $srcdir to /dev/null in
6995 makefile fragments.
6996 * configure: Regenerate.
6997
6998 2004-07-08 Alexandre Oliva <aoliva@redhat.com>
6999
7000 * Makefile.def (host_modules): Set bootstrap=true for flex.
7001 * Makefile.tpl (all-gcc): Depend on texinfo and flex.
7002 * Makefile.in: Rebuilt.
7003
7004 2004-07-01 Paolo Bonzini <bonzini@gnu.org>
7005
7006 * Makefile.def (build_modules): Add bison, byacc, flex,
7007 m4, texinfo.
7008 (flags_to_pass): Add FLEX.
7009 * Makefile.tpl (BUILD_DIR_PREFIX, BASE_EXPORTS): New.
7010 (BUILD_EXPORTS, HOST_EXPORTS, BASE_TARGET_EXPORTS): Include it.
7011 (DEFAULT_YACC, USUAL_YACC, DEFAULT_LEX, USUAL_LEX, DEFAULT_M4,
7012 DEFAULT_MAKEINFO): Remove.
7013 (CONFIGURED_YACC, CONFIGURED_FLEX, CONFIGURED_BISON,
7014 CONFIGURED_LEX, CONFIGURED_M4, CONFIGURED_MAKEINFO): Substitute.
7015 (YACC, FLEX, BISON, LEX, M4, MAKEINFO): Define to look into
7016 objdir or else use configured tool.
7017 (all-build): New.
7018 (all): Depend on it.
7019 (Build module dependencies): Add.
7020 * Makefile.in: Regenerate.
7021 * configure.in: Better support for multiple build modules,
7022 matching what is done for host/target modules. Do not look
7023 for "plausible" locations of build tools if Canadian cross.
7024 Use autoconf's AC_PROG_CC to find a C compiler. Define
7025 BUILD_DIR_PREFIX. Look for flex, makeinfo and m4.
7026 * configure: Regenerate.
7027
7028 2004-06-22 Paolo Bonzini <bonzini@gnu.org>
7029
7030 * Makefile.tpl (HOST_EXPORTS): Fix pasto.
7031 * Makefile.in: Regenerate.
7032
7033 2004-06-22 Paolo Bonzini <bonzini@gnu.org>
7034
7035 * Makefile.tpl (configure-build-[+module+],
7036 configure-[+module+], configure-target-[+module+]): Pass
7037 [+extra_configure_args+].
7038 (all-build-[+module+], all-[+module+], check-[+module+],
7039 install-[+module+], [+make_target+]-[+module+],
7040 all-target-[+module+], check-target-[+module+],
7041 install-target-[+module+], [+make_target+]-target-[+module+]):
7042 Pass [+extra_make_args+].
7043 (HOST_EXPORTS): Include the former GCC_HOST_EXPORTS.
7044 (GCC_HOST_EXPORTS): Remove.
7045 (configure-gcc, all-gcc, GCC_STRAP_TARGETS, profiledbootstrap,
7046 cross, check-gcc, check-gcc-c++, install-gcc,
7047 gcc-no-fixedincludes, [+make_target+]-gcc, stage[+id+]-bubble):
7048 Replace GCC_HOST_EXPORTS with HOST_EXPORTS.
7049 * Makefile.in: Regenerate.
7050
7051 2004-06-21 Christopher Faylor <cgf@alum.bu.edu>
7052
7053 * configure.in: Check for srcdir/winsup rather than build directory
7054 winsup.
7055 * configure: Regenerate.
7056
7057 2004-06-17 Corinna Vinschen <vinschen@redhat.com>
7058
7059 * configure.in: Don't build Cygwin native newlib if winsup
7060 directory is missing. Emit warning instead.
7061 * configure: Regenerate.
7062
7063 2004-06-09 Paolo Bonzini <bonzini@gnu.org>
7064
7065 * Makefile.tpl (touch-stage[+id+]): New.
7066 (restage[+prev+]): Depend on touch-stage[+id+].
7067
7068 * Makefile.tpl (RECURSE_FLAGS_TO_PASS): New.
7069 Use it throughout.
7070
7071 * Makefile.def: Add profile and feedback bootstrap stages.
7072 Remove next field from bootstrap stages.
7073 * Makefile.tpl (LN, LN_S): Substitute.
7074 (stageN-start, stageN-end): Use double-colon rules, to
7075 provide a hook for additional setup commands.
7076 (distclean-stageN-gcc, restageN): Create dependencies from
7077 [+prev+], not from [+next+].
7078 (stageN-bubble): Add commands for successive stages from
7079 [+prev+], using double-colon rules.
7080 (all-stageN-gcc): Fix typo.
7081 (stagefeedback-start, profiledbootstrap): New.
7082 * Makefile.in: Regenerate.
7083 * configure.in: Call ACX_PROG_LN.
7084 * configure: Regenerate.
7085
7086 2004-06-03 Paolo Bonzini <bonzini@gnu.org>
7087
7088 * configure.in: Fix --enable-bootstrap breakage introduced in trees
7089 without gcc.
7090 * configure: Regenerate.
7091
7092 2004-06-01 Paolo Bonzini <bonzini@gnu.org>
7093
7094 * Makefile.tpl: Fix typo.
7095 * Makefile.in: Regenerate.
7096
7097 2004-06-01 Paolo Bonzini <bonzini@gnu.org>
7098
7099 * configure.in: Remove new- prefix from toplevel
7100 bootstrap targets.
7101 * configure: Regenerate.
7102
7103 2004-06-01 Paolo Bonzini <bonzini@gnu.org>
7104
7105 Merge this patch from the gcc tree:
7106
7107 2004-05-30 Andreas Jaeger <aj@suse.de>
7108 Jim Wilson <wilson@specifixinc.com>
7109
7110 * config-ml.in: Pass FFLAGS and ADAFLAGS for multilibs, handle F77
7111 like CC.
7112
7113 2004-06-01 Paolo Bonzini <bonzini@gnu.org>
7114
7115 * Makefile.tpl (all.normal): Rename to all.
7116 (all): Replace with a rule to pick the default
7117 target from configure.
7118 (all-gcc, configure-gcc): Use conditionals to
7119 do nothing when toplevel bootstrap is going on.
7120 (GCC directory bootstrap) [gcc-bootstrap]: Disable.
7121 (Toplevel bootstrap) [gcc-no-bootstrap]: Disable.
7122 * configure.in: Support --enable-bootstrap.
7123
7124 * Makefile.def: Remove new- prefix from toplevel
7125 bootstrap targets.
7126 * Makefile.tpl: Likewise.
7127
7128 * Makefile.def: Add bootstrap_stage 4. Add bootstrap2
7129 target.
7130
7131 * Makefile.tpl (Toplevel bootstrap): Pass $(BASE_FLAGS_TO_PASS)
7132 $(RECURSE_FLAGS) to recursive invocation of make.
7133
7134 * Makefile.in: Regenerate.
7135 * configure: Regenerate.
7136
7137 2004-05-27 Daniel Jacobowitz <dan@debian.org>
7138
7139 * configure.in: Fix sed invocation for GFORTRAN_FOR_TARGET.
7140 * configure: Regenerate.
7141
7142 2004-05-25 Daniel Jacobowitz <drow@false.org>
7143
7144 * Makefile.tpl (BUILD_EXPORTS, HOST_EXPORTS, GCC_HOST_EXPORTS)
7145 (STAGE_HOST_EXPORTS, BASE_TARGET_EXPORTS, RAW_CXX_TARGET_EXPORTS)
7146 (NORMAL_TARGET_EXPORTS): New macros. Use them in all the recursive
7147 targets.
7148 * Makefile.in: Regenerate.
7149
7150 2005-05-24 Paolo Bonzini <bonzini@gnu.org>
7151
7152 * configure.in: Test the ability to symlink directories.
7153 * configure: Regenerate.
7154
7155 * Makefile.def (bootstrap-stage): New definitions.
7156 * Makefile.tpl (configure-stage1-gcc,
7157 configure-stage2-gcc, configure-stage3-gcc,
7158 all-stage1-gcc, all-stage2-gcc, all-stage3-gcc,
7159 new-bootstrap, new-cleanstrap, new-restage1, new-restage2,
7160 new-restage3, compare): Autogenerate, see Makefile.in
7161 entry for behavioral changes.
7162 (distclean-stage1, new-stage1-start, new-stage1-end,
7163 new-stage1-bubble, distclean-stage2, new-stage2-start,
7164 new-stage2-end, new-stage2-bubble, distclean-stage3,
7165 new-stage3-start, new-stage3-end): New autogenerated targets.
7166 (objext, prebootstrap, BOOT_CFLAGS,
7167 POSTSTAGE1_FLAGS_TO_PASS): Move above the autogenerated
7168 targets.
7169
7170 * Makefile.in: Regenerate.
7171 (distclean-stage1, new-stage1-start, new-stage1-end,
7172 new-stage1-bubble, distclean-stage2, new-stage2-start,
7173 new-stage2-end, new-stage2-bubble, distclean-stage3,
7174 new-stage3-start, new-stage3-end): New targets.
7175 (all-stage1-gcc): Move prebootstrap dependency from here...
7176 (configure-stage1-gcc): ...to here.
7177 (new-bootstrap): Use bubble targets.
7178 (new-cleanstrap, new-restage1, new-restage2, new-restage3):
7179 Use per-stage distclean targets.
7180 (configure-stage1-gcc, configure-stage2-gcc,
7181 configure-stage3-gcc, all-stage1-gcc,
7182 all-stage2-gcc, all-stage3-gcc, new-bootstrap):
7183 Use new-stageN-start to prepare the tree.
7184
7185 2004-05-23 Paolo Bonzini <bonzini@gnu.org>
7186
7187 * Makefile.def (host_modules): add libcpp.
7188 * Makefile.tpl: Add dependencies on and for libcpp.
7189 * Makefile.in: Regenerate.
7190 * configure.in: Add libcpp host module.
7191 * configure: Regenerate.
7192
7193 2004-05-17 Zack Weinberg <zack@codesourcery.com>
7194
7195 * Makefile.def, Makefile.tpl, configure.in: Remove all mention
7196 of libf2c.
7197 * configure, Makefile.in: Regenerate.
7198
7199 2004-05-13 Diego Novillo <dnovillo@redhat.com>
7200
7201 Merge from tree-ssa-20020619-branch.
7202
7203 * Makefile.def: Add libbanshee, libmudflap and libgfortran.
7204 * Makefile.tpl (BUILD_CONFIGDIRS): Add libbanshee.
7205 (HOST_GMPLIBS): Define.
7206 (HOST_GMPINC): Define.
7207 (TARGET_LIB_PATH): Add libmudflap.
7208 (GFORTRAN_FOR_TARGET): Define.
7209 (configure-build*): Export GFORTRAN.
7210 (configure-gcc): Export GMPLIBS and GMPINC.
7211 (all-gcc): Add maybe-all-libbanshee.
7212 (configure-target-libgfortran): Define.
7213 * Makefile.in: Regenerate.
7214 * configure.in (host_libs): Add libbanshee.
7215 (target_libraries): Add target-libmudflap and target-libgfortran.
7216 Add --with-libbanshee.
7217 Handle --disable-libmudflap.
7218 (*-*-freebsd*): Use with_gmp.
7219 Add $(libgcj) to noconfigdirs.
7220 * configure: Regenerate.
7221 * depcomp: New file.
7222 * MAINTAINERS: Add tree-ssa maintainers.
7223
7224 2004-04-28 Paolo Bonzini <bonzini@gnu.org>
7225
7226 * config/acx.m4: Fix fastcompare support for new-bootstrap.
7227 * configure: Regenerate.
7228
7229 2004-04-27 Paolo Bonzini <bonzini@gnu.org>
7230
7231 Revert:
7232 2004-04-26 Paolo Bonzini <bonzini@gnu.org>
7233
7234 * Makefile.def (flags_to_pass): Remove *dir variables that
7235 are passed to the modules via TOPLEVEL_CONFIGURE_ARGUMENTS,
7236 as well as prefix and exec_prefix.
7237 * Makefile.in: Regenerate.
7238
7239 2004-04-26 Paolo Bonzini <bonzini@gnu.org>
7240
7241 * Makefile.def (host_modules): Mark with the bootstrap
7242 flag packages on which gcc depends.
7243 * Makefile.tpl (all-bootstrap): Use it.
7244 * Makefile.in: Regenerate.
7245
7246 2004-04-26 Paolo Bonzini <bonzini@gnu.org>
7247
7248 * Makefile.def (flags_to_pass): Remove *dir variables that
7249 are passed to the modules via TOPLEVEL_CONFIGURE_ARGUMENTS,
7250 as well as prefix and exec_prefix.
7251 * Makefile.in: Regenerate.
7252
7253 2004-04-26 Paolo Bonzini <bonzini@gnu.org>
7254
7255 * configure.in: Invoke ACX_PROG_CMP_IGNORE_INITIAL.
7256 * configure: Regenerate.
7257 * config/acx.m4: Mutuate ACX_PROG_CMP_IGNORE_INITIAL from gcc.
7258 * gcc/Makefile.tpl (compare): Use the result of the test.
7259 * gcc/Makefile.in: Regenerate.
7260
7261 2004-04-23 Paolo Bonzini <bonzini@gnu.org>
7262
7263 * Makefile.tpl (all-stage1-gcc, all-stage2-gcc, all-stage3-gcc):
7264 Always relocate gcc and prev-gcc to the original names, even
7265 if the build fails.
7266 (new-cleanstrap, new-restage1, new-restage2, new-restage3):
7267 New targets.
7268
7269 2004-04-19 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
7270
7271 * configure.in (mips*-*-irix5*): Enable ld.
7272 * configure: Regenerate.
7273
7274 2004-04-15 James E Wilson <wilson@specifixinc.com>
7275
7276 * Makefile.tpl (configure-[+module+], configure-gcc,
7277 configure-stage1-gcc, configure-stage2-gcc, configure-stage3-gcc):
7278 Set and export LDFLAGS.
7279 * Makefile.in: Regenerate.
7280
7281 2004-04-09 Nathanael Nerode <neroden@gcc.gnu.org>
7282
7283 PR bootstrap/14871
7284 * Makefile.tpl: If we don't have built-in-tree target tools,
7285 use the ones found by configure rather than hacking around with
7286 program_transform_name.
7287 * configure.in: Give Makefile.tpl the information necessary
7288 to do that.
7289 * Makefile.in: Regenerate.
7290 * configure: Regenerate.
7291
7292 2004-04-06 Nathanael Nerode <neroden@gcc.gnu.org>
7293
7294 PR bootstrap/14760
7295 * configure.in: When computing baseargs, strip *all* copies of
7296 offending options. Also, don't match/substitute the trailing space,
7297 so that this actually works when two similar options are separated by
7298 only one space.
7299 * configure: Regenerate.
7300
7301 2004-04-06 David Edelsohn <edelsohn@gnu.org>
7302
7303 * configure.in (powerpc-*-aix*): Remove target-libada from noconfigdirs.
7304 (rs6000-*-aix*): Same.
7305 * configure: Regenerate.
7306
7307 2004-03-25 Stan Shebs <shebs@apple.com>
7308
7309 Remove MPW support, no longer used.
7310 * mpw-README, mpw-build.in, mpw-config.in, mpw-configure,
7311 mpw-install: Remove files.
7312 * src-release (DEVO_SUPPORT): Remove names of removed files.
7313 * MAINTAINERS: Likewise.
7314
7315 2004-03-24 Nathanael Nerode <neroden@gcc.gnu.org>
7316
7317 * Makefile.tpl (top level bootstrap support): Remove now-unneeded
7318 STRICT_WARN, WARN_CFLAGS flags passed down to make.
7319 * Makefile.in: Regenerate.
7320
7321 * configure.in (top level bootstrap support): Rework --enable-werror
7322 to set @stage2_werror_flag@.
7323 * configure: Regenerate.
7324 * Makefile.tpl (top level bootstrap support): Pass
7325 @stage2_werror_flag@ down to configure in stages 2 and 3.
7326 * Makefile.in: Regenerate.
7327
7328 2004-03-23 Nathanael Nerode <neroden@gcc.gnu.org>
7329
7330 * Makefile.tpl (new-bootstrap): Set CC and CC_FOR_BUILD in configure
7331 for stages 2 and 3 as well as in make. As a consequence, remove
7332 OUTPUT_OPTION (now detected by configure) from the flags passed down
7333 to make.
7334 * Makefile.in: Regenerate.
7335
7336 * Makefile.tpl (new-bootstrap): Fix typo.
7337 * Makefile.in: Regenerate.
7338
7339 2004-03-22 Nathanael Nerode <neroden@gcc.gnu.org>
7340
7341 * Makefile.tpl: Rearrange by moving recursive_targets rules
7342 into their proper sections.
7343 * Makefile.tpl (top level bootstrap support): Move disabling
7344 of coverage flags from 'make' to 'configure'; improve comments.
7345 * Makefile.in: Regenerate.
7346
7347 * Makefile.tpl (experimental top level bootstrap) Move stage1
7348 language setting from all- target to configure- target; disable
7349 intermodule optimization in stage 1; prevent gratuitous rebuilds
7350 of stage 1.
7351 * Makefile.in: Regenerate.
7352 * configure.in: Comma-separate stage 1 language list for top
7353 level bootstrap.
7354 * configure: Regenerate.
7355
7356 * Makefile.tpl: Clean up experimental top level bootstrap support:
7357 note known problems; set CONFIG_SHELL; don't set BUILD_CC; relocate
7358 prev-gcc in configure- targets as well as all- targets.
7359 * Makefile.in: Regenerate.
7360
7361 2004-03-17 Paolo Bonzini <bonzini@gnu.org>
7362
7363 * configure.in: Remove symbolic link section.
7364 * configure: Regenerate.
7365 * Makefile.tpl (links): Remove.
7366 * Makefile.in: Regenerate.
7367
7368 2004-03-15 Paolo Bonzini <bonzini@gnu.org>
7369 Nathanael Nerode <neroden@gcc.gnu.org>
7370
7371 * configure.in (DEFAULT_YACC, DEFAULT_M4, DEFAULT_LEX):
7372 Set with AC_CHECK_PROGS.
7373 * configure.in: Fix comment typo from last patch.
7374 * configure: Regenerate.
7375
7376 2004-03-15 Nathanael Nerode <neroden@gcc.gnu.org>
7377
7378 * Makefile.tpl: Introduce experimental top level bootstrap support.
7379 * Makefile.in: Regenerate.
7380 * configure.in: Introduce support for top level bootstrap.
7381 * configure: Regenerate.
7382
7383 2004-03-12 Eric Botcazou <ebotcazou@gcc.gnu.org>
7384 Paolo Bonzini <bonzini@gnu.org>
7385
7386 PR bootstrap/14522
7387 * configure.in: Cope with shells that do not support unquoted ^
7388 * configure: Regenerate.
7389
7390 2004-03-11 Eric Botcazou <ebotcazou@gcc.gnu.org>
7391 Paolo Bonzini <bonzini@gnu.org>
7392
7393 PR bootstrap/14522
7394 * configure.in: Cope with shell that do not support nesting
7395 quotes inside quoted backquote substitutions.
7396 * configure: Regenerate.
7397
7398 2004-03-10 Andrew Pinski <pinskia@physics.uc.edu>
7399
7400 PR bootstrap/14522
7401 * configure.in: Fix escaping of $.
7402 * configure: Regenerate.
7403
7404 2004-03-11 Nathanael Nerode <neroden@gcc.gnu.org>
7405
7406 * configure: Regenerate.
7407
7408 2004-03-08 Paolo Bonzini <bonzini@gnu.org>
7409
7410 PR ada/14131
7411 Move language detection to the top level.
7412 * configure.in: Find default values for the tools as
7413 soon as possible. Disable ada if GNAT is not found.
7414 Emit error message about missing languages. Expand
7415 --enable-languages=all for the gcc subdirectory.
7416
7417 2004-03-01 Richard Sandiford <rsandifo@redhat.com>
7418
7419 * configure.in (mips64*-*-linux*): Override mips*-*-linux* case
7420 and disable libgcj.
7421 * configure: Regenerated.
7422
7423 2004-02-28 Nathanael Nerode <neroden@gcc.gnu.org>
7424
7425 PR bootstrap/7087
7426 * Makefile.tpl: Guard XFOO sed statements better.
7427 * Makefile.tpl: Add dependency for configure-target-libada.
7428 * Makefile.in: Regenerate (incidentally fixes broken
7429 commit when libada-branch was merged).
7430
7431 2004-02-28 Andrew Cagney <cagney@redhat.com>
7432
7433 * src-release (CVS_NAMES): Define.
7434 (do-tar, do-tar): Prune $(CVS_NAMES).
7435
7436 2004-02-23 Andrew Cagney <cagney@redhat.com>
7437
7438 * texinfo/texinfo.tex: Update from version 2003-02-03.16 to
7439 2004-02-19.09.
7440
7441 2004-02-19 Nathanael Nerode <neroden@gcc.gnu.org>
7442
7443 PR bootstrap/11932
7444 * mkinstalldirs, install-sh: Import from automake CVS HEAD.
7445
7446 2004-02-19 Andrew Cagney <cagney@redhat.com>
7447
7448 * config.guess: Update from version 2003-06-12 to 2004-02-16.
7449 * config.sub: Update from version 2003-06-13 to 2004-02-16.
7450
7451 2004-02-11 David Edelsohn <edelsohn@gnu.org>
7452
7453 * configure.in (powerpc-*-aix*): Add target-libada to noconfigdirs.
7454 (rs6000-*-aix*): Same.
7455 * configure: Regenerate.
7456
7457 2004-02-11 Kelley Cook <kcook@gcc.gnu.org>
7458
7459 * configure.in (host): Add in missing $noconfigdirs to defines.
7460 * configure: Regenerate.
7461
7462 2004-02-10 Arnaud Charlet <charlet@act-europe.fr>,
7463 Nathanael Nerode <neroden@gcc.gnu.org>
7464
7465 PR ada/6637, PR ada/5911
7466 Merge with libada-branch:
7467 * configure.in, Makefile.tpl, Makefile.def: Add target-libada,
7468 with appropriate dependencies. Add --enable-libada configure switch.
7469 * configure, Makefile.in: Regenerate.
7470
7471 2004-02-05 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
7472
7473 * configure.in: Don't pass --with-stabs on IRIX 5 either.
7474 * configure: Regenerate.
7475
7476 2004-02-02 Jeff Johnston <jjohnstn@redhat.com>
7477
7478 * COPYING.NEWLIB: Update Red Hat license to 2004.
7479
7480 2004-01-23 DJ Delorie <dj@redhat.com>
7481
7482 * Makefile.def (target_modules) [libiberty]: Don't stage.
7483 * Makefile.in: Rebuilt.
7484
7485 2004-01-23 Jeff Johnston <jjohnstn@redhat.com>
7486
7487 * COPYING.NEWLIB: Update to include copyrights for new
7488 iconv code.
7489
7490 2004-01-15 Andrew Cagney <cagney@redhat.com>
7491
7492 * src-release: Update copyright year.
7493 (do-proto-toplev): Configure using i686-pc-linux-gnu.
7494 (NEWLIB_SUPPORT_DIRS): Delete macro.
7495 (newlib.tar.bz2): Delete rule.
7496
7497 2004-01-14 Loren J. Rittle <ljrittle@acm.org>
7498
7499 * Makefile.def (target_modules) [libtermcap, libiberty, zlib]: Stage.
7500 * Makefile.tpl (configure-target-[+module+]): Support stage.
7501 * Makefile.in: Rebuilt.
7502
7503 2003-01-14 Maciej W. Rozycki <macro@ds2.pg.gda.pl>
7504
7505 * gettext.m4: Quote names of macros to be defined by AC_DEFUN
7506 throughout.
7507
7508 2004-01-04 Nathanael Nerode <neroden@gcc.gnu.org>
7509
7510 * configure.in: Use ./config.cache, not config.cache.
7511 * configure: Regenerate.
7512 * Makefile.tpl: Special-casing not needed for GCC any more.
7513 * Makefile.in: Regenerate.
7514
7515 * configure.in: Don't share a cache file for host dirs.
7516 * configure: Regenerate.
7517
7518 * config-ml.in: Don't mess with the cache file.
7519
7520 2004-01-03 Nathanael Nerode <neroden@gcc.gnu.org>
7521
7522 * Makefile.tpl: Make GCC use a separate config.cache.
7523 * Makefile.in: Regenerate.
7524
7525 PR bootstrap/11932, PR bootstrap/11933
7526 (I don't know if it will fix either of them, but it relates
7527 to them.)
7528 * configure.in: Don't use shared config.cache for target
7529 directories.
7530 * configure: Regenerate.
7531
7532 2003-12-31 Roger Sayle <roger@eyesopen.com>
7533
7534 * configure.in (ia64*-*-hpux*): Disable building java libraries.
7535 * configure: Regenerated.
7536
7537 2003-12-21 Bernardo Innocenti <bernie@develer.com>
7538
7539 * configure.in (*-*-uclinux): Exclude newlib, libgloss and rda.
7540 * configure: Regenerated.
7541
7542 2003-12-19 Nathanael Nerode <neroden@gcc.gnu.org>
7543
7544 Port change over from GCC:
7545 2003-11-20 Kelley Cook <kcook@gcc.gnu.org>
7546 * Makefile.tpl (BASE_FLAGS_TO_PASS): Pass along CONFIG_SHELL.
7547 (configure-build-[+module+], configure-[+module+]): Likewise.
7548 (configure-target-[+module+], configure-gcc, config.status): Likewise.
7549 * Makefile.in: Regenerate.
7550
7551 2003-12-08 Thomas Fitzsimmons <fitzsim@redhat.com>
7552
7553 * configure.in (raw_libstdcxx_flags): Remove the leading space.
7554 * configure: Regenerate.
7555
7556 2003-11-27 Jeff Johnston <jjohnstn@redhat.com>
7557
7558 * COPYING.NEWLIB: Add license info for long long routines added to
7559 stdlib.
7560
7561 2003-11-14 Arnaud Charlet <charlet@act-europe.fr>
7562
7563 * Makefile.tpl (EXTRA_GCC_FLAGS): Pass BOOT_ADAFLAGS.
7564 * Makefile.in: Regenerate.
7565
7566 2003-10-20 Phil Edwards <phil@codesourcery.com>
7567
7568 * configure.in (*-*-vxworks): Add target-libiberty to noconfdirs.
7569 * configure: Regenerate.
7570
7571 2003-10-13 Nathanael Nerode <neroden@gcc.gnu.org>
7572
7573 * Makefile.tpl: Make GCC_FLAGS_TO_PASS a superset of
7574 HOST_FLAGS_TO_PASS.
7575 * Makefile.in: Regenerate.
7576
7577 2003-10-05 Mohan Embar <gnustuff@thisiscool.com>
7578
7579 * configure.in: Allow explicit specification of CFLAGS_FOR_BUILD.
7580 * configure: Rebuilt
7581 * Makefile.tpl: Use CFLAGS_FOR_BUILD computed by configure
7582 * Makefile.in: Rebuilt
7583
7584 2003-10-03 H.J. Lu <hongjiu.lu@intel.com>
7585
7586 * ltconfig (sys_lib_search_path_spec): Fix a typo for HPUX.
7587
7588 2003-10-01 Phil Edwards <pme@gcc.gnu.org>
7589
7590 * config-ml.in: Use ac_configure_args directly instead of
7591 ml_arguments. Only set ml_norecursion if --no[-]recursion is
7592 actually seen.
7593
7594 2003-10-01 Eric Botcazou <ebotcazou@libertysurf.fr>
7595
7596 * config-ml.in: Propagate INSTALL variables.
7597
7598 2003-09-21 Daniel Jacobowitz <drow@mvista.com>
7599
7600 * configure.in: Pass a computed --program-transform-name
7601 to subconfigures.
7602 * configure: Regenerated.
7603
7604 2003-09-20 Nathanael Nerode <neroden@gcc.gnu.org>
7605
7606 * Makefile.tpl: Don't pass down obsolete ENQUIRE variable.
7607 * Makefile.in: Regenerate.
7608
7609 * Makefile.tpl: Don't pass (unused) DLLTOOL or WINDRES to gcc.
7610 * Makefile.in: Regenerate.
7611
7612 2003-09-17 Daniel Jacobowitz <drow@mvista.com>
7613
7614 * configure.in (TOPLEVEL_CONFIGURE_ARGUMENTS, baseargs): Fix
7615 quoting.
7616 * configure: Regenerated.
7617
7618 2003-09-12 Michael Chastain <mec@shout.net>
7619
7620 Fix PR gdb/857.
7621 * src-release (do-proto-topleve): Remove junk files
7622 intl/config.cache, intl/config.status,
7623 intl/config.h, intl/stamp-h.
7624
7625 2003-09-14 Andrew Cagney <cagney@redhat.com>
7626
7627 * src-release (dejagnu.tar): New target.
7628 (dejagnu.tar.bz2): Recursively call "gdb-taz" rule.
7629 (do-djunpack): Use $(PACKAGE) for the package name.
7630
7631 2003-09-04 DJ Delorie <dj@redhat.com>
7632
7633 * configure: Regenerate.
7634
7635 2003-09-04 Robert Millan <robertmh@gnu.org>
7636
7637 * configure.in: Match GNU/KFreeBSD with new kfreebsd*-gnu triplet.
7638
7639 2003-09-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
7640
7641 * configure.in: Ensure arguments to sed are properly spaced.
7642 * configure: Regenerate.
7643
7644 2003-08-28 Daniel Jacobowitz <drow@mvista.com>
7645
7646 Merge from gcc:
7647 2003-07-20 Phil Edwards <pme@gcc.gnu.org>
7648 * install-sh: Update to newer upstream versions (associated with
7649 aclocal 1.7).
7650 * missing: Likewise, plus $1Help2man -> $1 typo fix.
7651
7652 2003-08-27 Daniel Jacobowitz <drow@mvista.com>
7653
7654 * configure.in: Set RAW_CXX_FOR_TARGET if unset.
7655 * configure: Regenerated.
7656
7657 2003-08-23 Phil Edwards <pme@gcc.gnu.org>
7658
7659 * configure.in: Use newline instead of semicolon when assuming
7660 shell arguments in a for loop.
7661 * configure: Regenerated.
7662
7663 2003-08-20 Geoffrey Keating <geoffk@apple.com>
7664
7665 PR 8180
7666 * configure.in: When testing with_libs and with_headers, treat
7667 'no' as unset. Based on a patch by Dan Kegel <dank@kegel.com>.
7668 * configure: Regenerate.
7669
7670 * configure.in (TOPLEVEL_CONFIGURE_ARGUMENTS): Quote properly for
7671 make, shell, etc.
7672 (baseargs): Likewise.
7673 * configure: Regenerate.
7674
7675 2003-08-19 Geoffrey Keating <geoffk@apple.com>
7676
7677 * configure.in: Disable libgcj for darwin not on powerpc.
7678 * configure: Rebuild.
7679
7680 2003-08-15 Michael Chastain <mec@shout.net>
7681
7682 * src-release (do-proto-toplev): Remove junk files
7683 dejagnu/example/calc/config.status,
7684 dejagnu/example/calc/config.log.
7685
7686 2003-08-14 Alexandre Duret-Lutz <adl@gnu.org>
7687
7688 * config-ml.in, symlink-tree: Add license.
7689
7690 2003-08-01 Nathanael Nerode <neroden@gcc.gnu.org>
7691
7692 Merge from gcc:
7693
7694 2003-08-01 Matt Kraai <kraai@alumni.cmu.edu>
7695 * Makefile.tpl (check, check-c++): Express dependencies using
7696 dependencies rather than commands.
7697 * Makefile.in: Regenerate.
7698
7699 2003-07-31 Geoffrey Keating <geoffk@apple.com>
7700 * Makefile.tpl (libsubdir): Use gcc instead of gcc-lib.
7701 * Makefile.in: Update.
7702
7703 2003-08-01 Andrew Cagney <cagney@redhat.com>
7704
7705 * configure.in (noconfigdirs): Do not add GDB when m32r-*-*.
7706 * configure: Ditto.
7707
7708 2003-07-30 Andreas Tobler <a.tobler@schweiz.ch>
7709
7710 * configure.in: Enable libgcj for darwin.
7711 * configure: Rebuild.
7712
7713 2003-07-29 Nathanael Nerode <neroden@gcc.gnu.org>
7714
7715 * mkinstalldirs: Import autoconf 2.57 / automake 1.7 version.
7716
7717 2003-07-27 Nathanael Nerode <neroden@gcc.gnu.org>
7718
7719 * Makefile.tpl: Use 'mkinstalldirs' rather than 'mkdir' when
7720 creating target and build subdirs to build all parent dirs as needed.
7721 * Makefile.in: Rebuild.
7722 * configure.in: Don't build dirs explicitly here.
7723 * configure: Rebuild.
7724
7725 2003-07-22 Alexandre Oliva <aoliva@redhat.com>
7726
7727 * Makefile.tpl (all-make): Depend on intl.
7728 * Makefile.in: Rebuilt.
7729
7730 2003-07-16 Nathanael Nerode <neroden@gcc.gnu.org>
7731
7732 * config.if: Remove unused libc_interface determination.
7733
7734 2003-07-14 Nathanael Nerode <neroden@gcc.gnu.org>
7735
7736 * Makefile.in: Regenerate, correctly this time.
7737
7738 2003-07-13 Nathanael Nerode <neroden@gcc.gnu.org>
7739
7740 * Makefile.tpl: Set INSTALL and friends using autoconf. Remove
7741 unused INSTALL_PROGRAM_ARGS.
7742 * configure.in: Use AC_PROG_INSTALL.
7743 * Makefile.in: Regenerate.
7744 * configure: Regenerate.
7745
7746 2003-07-10 Alexandre Oliva <aoliva@redhat.com>
7747
7748 * configure: Rebuilt.
7749 2001-09-26 Alexandre Oliva <aoliva@redhat.com>
7750 * configure.in (noconfigdirs) [am33_2.0-*-linux*]: Don't build
7751 newlib nor libgloss.
7752 Wed May 9 10:07:19 2001 Alexandre Oliva <aoliva@redhat.com>
7753 * configure.in (am33_2.0-*-linux*): Added.
7754
7755 2003-07-09 Bob Wilson <bob.wilson@acm.org>
7756
7757 * configure.in: Add ${libgcj} to noconfigdirs for xtensa-*-* targets.
7758 * configure: Regenerate.
7759
7760 2003-07-06 H.J. Lu <hongjiu.lu@intel.com>
7761
7762 * config-ml.in: Replace PWD with PWD_COMMAND.
7763 * Makefile.tpl: Likewise.
7764 * Makefile.in: Regenerated.
7765
7766 2003-06-27 Nathanael Nerode <neroden@gcc.gnu.org>
7767
7768 * configure.in: Clean up config-lang.in handling. Delete
7769 useless assignment to "subdirs".
7770 * configure: Regenerate.
7771
7772 2003-06-26 Nathanael Nerode <neroden@gcc.gnu.org>
7773
7774 * configure.in: Rename 'target_libs' to 'target_libraries'.
7775 Remove useless reference to 'target_libs'.
7776 * configure: Regenerate.
7777
7778 2003-06-23 Keith Seitz <kseitz@sources.redhat.com>
7779
7780 * Makefile.tpl: Add maybe-configure-itcl to configure-gdb.
7781 * Makefile.in: Regenerate.
7782
7783 2003-06-23 Nathanael Nerode <neroden@gcc.gnu.org>
7784
7785 * Makefile.def: Introduce flags_to_pass.
7786 * Makefile.tpl: Generate BASE_FLAGS_TO_PASS using it.
7787 * Makefile.in: Regenerate.
7788
7789 2003-06-23 Hans-Peter Nilsson <hp@bitrange.com>
7790
7791 * configure.in (noconfigdirs) <cris-*-*>: Disable target-newlib
7792 and target-libgloss.
7793 <d30v-*-*, fr30-*-*, i960-*-*, m32r-*-*>: Disable gdb.
7794 <h8300*-*-*>: Disable libf2c and ${libgcj}.
7795 * configure: Regenerate.
7796
7797 2003-06-17 Benjamin Kosnik <bkoz@redhat.com>
7798
7799 * configure.in: Update testsuite_flags to new location.
7800 * configure. Regenerate.
7801
7802 2003-06-18 Nathanael Nerode <neroden@gcc.gnu.org>
7803
7804 * Makefile.tpl: Remove BUILD_CC stuff.
7805 * Makefile.in: Regenerate.
7806
7807 2003-06-14 H.J. Lu <hongjiu.lu@intel.com>
7808
7809 * config.guess: Update to 2003-06-12 version.
7810 * config.sub: Update to 2003-06-13 version.
7811
7812 2003-06-12 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
7813
7814 * MAINTAINERS: Add myself as MIPS co-maintainer.
7815
7816 2003-06-12 H.J. Lu <hongjiu.lu@intel.com>
7817
7818 * config.guess: Update to 2003-06-06 version.
7819 * config.sub: Update to 2003-06-06 version.
7820
7821 2003-06-11 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
7822
7823 * configure.in: Don't pass --with-stabs for mips*-sgi-irix6*o32.
7824 * configure. Regenerate.
7825
7826 2003-06-10 Nathanael Nerode <neroden@gcc.gnu.org>
7827
7828 * configure.in: Disable serial configure by default.
7829 * configure: Regenerate.
7830 * Makefile.tpl: Abolish .NOTPARALLEL.
7831 * Makefile.in: Regenerate.
7832
7833 * Makefile.tpl: Replace {build,host,target}_canonical by
7834 {build,host,target}.
7835 * Makefile.in: Regenerate.
7836
7837 * Makefile.tpl: Fix stupid pasto.
7838 * Makefile.in: Regenerate.
7839
7840 2003-06-09 Nathanael Nerode <neroden@gcc.gnu.org>
7841
7842 * Makefile.tpl: Remove bogus conditional.
7843 * Makefile.in: Regenerate.
7844
7845 2003-06-03 Nathanael Nerode <neroden@gcc.gnu.org>
7846
7847 * Makefile.tpl: Make 'recursive targets' using autogen rather
7848 than shell loop. Remove duplicate 'clean' targets and false
7849 comments.
7850 * Makefile.def: Add systematic dependencies to 'recursive' targets.
7851 Add systematic method of specifying missing targets in subdirs.
7852 Add copyright boilerplate.
7853 * Makefile.in: Regenerate.
7854 * configure.in: Add 'recursive targets' to maybe list.
7855 * configure: Regenerate.
7856
7857 * Makefile.tpl: Rename [+target+] to [+make_target+].
7858 * Makefile.def: Rename 'target' to 'make_target'.
7859
7860 2003-05-30 Nick Clifton <nickc@redhat.com>
7861
7862 * README-maintainer-mode: Update URL for locating blessed config
7863 tools.
7864
7865 2003-05-29 Robert Millan <rmh@debian.org>
7866
7867 * ltconfig: Import this patch and modify for use with current
7868 version of ltconfig:
7869
7870 2003-05-21 Bruno Haible <bruno@clisp.org>
7871
7872 * libtool.m4 (AC_LIBTOOL_SYS_DYNAMIC_LINKER): Add support for
7873 GNU/FreeBSD.
7874
7875 2003-05-28 DJ Delorie <dj@redhat.com>
7876
7877 * Makefile.tpl: Make maybe-check-gcc .PHONY.
7878 * Makefile.in: Regenerate.
7879
7880 2003-05-28 Jeff Johnston <jjohnstn@redhat.com>
7881
7882 * COPYING.NEWLIB: Add license info for newlib/libc/sys/linux/stdlib.
7883
7884 2003-05-21 DJ Delorie <dj@redhat.com>
7885
7886 * Makefile.tpl (configure-target-libiberty): Depend only on gcc, not
7887 newlib or libgloss.
7888 * Makefile.in: Regenerate.
7889
7890 2003-05-21 DJ Delorie <dj@redhat.com>
7891
7892 * Makefile.tpl: Add missing empty maybe-check-gcc target.
7893 * Makefile.in: Regenerate.
7894
7895 2003-05-20 Maciej W. Rozycki <macro@ds2.pg.gda.pl>
7896
7897 * configure.in: Use curly braces in the definition of tooldir.
7898 * configure: Regenerate.
7899
7900 2003-05-19 Nathanael Nerode <neroden@gcc.gnu.org>
7901
7902 * configure.in: Switch more things to use maybe dependencies.
7903 * Makefile.tpl: Switch more things to use maybe dependencies.
7904 Factor out common code from autogen IF statements.
7905 * configure: Regenerate.
7906 * Makefile.in: Regenerate.
7907
7908 2003-05-14 Kelley Cook <kelleycook@wideopenwest.com>
7909
7910 * configure.in: Accept i[3456789]86 for machine type.
7911 * configure: Regenerate.
7912
7913 2003-05-18 Nathanael Nerode <neroden@gcc.gnu.org>
7914
7915 * configure.in: Switch more things to use maybe dependencies.
7916 Rearrange a little. Use GCC_TOPLEV_SUBDIRS.
7917 * configure: Regenerate.
7918 * Makefile.tpl: Switch more things to use maybe dependencies.
7919 * Makefile.in: Regenerate.
7920
7921 2003-05-16 Andreas Schwab <schwab@suse.de>
7922
7923 * Makefile.tpl (install-opcodes): Define.
7924 * Makefile.in: Rebuild.
7925
7926 2003-05-13 Andreas Jaeger <aj@suse.de>
7927
7928 * config.guess: Update to 2003-05-09 version.
7929 * config.sub: Update to 2003-05-09 version.
7930
7931 2003-05-13 Michael Eager <eager@mvista.com>
7932
7933 * configure.in: Correct sed script so that options in quotes are not
7934 deleted.
7935 * configure: Rebuild.
7936
7937 2003-05-12 Corinna Vinschen <corinna@vinschen.de>
7938
7939 * configure.in (FLAGS_FOR_TARGET): Remove $$s/newlib/libc/sys/cygwin
7940 and $$s/newlib/libc/sys/cygwin32 include paths.
7941 * configure: Ditto.
7942
7943 2003-05-05 H.J. Lu <hjl@gnu.org>
7944
7945 * config-ml.in: Restored from gcc repository.
7946
7947 2003-05-02 Chris Demetriou <cgd@broadcom.com>
7948
7949 * Makefile.tpl: Require "makeinfo" from texinfo 4.2 or later.
7950 * Makefile.in: Regenerate.
7951
7952 2003-04-27 Daniel Jacobowitz <drow@mvista.com>
7953
7954 * src-release (DEVO_SUPPORT): Add src-release, Makefile.tpl,
7955 and Makefile.def.
7956
7957 2003-04-27 Daniel Jacobowitz <drow@mvista.com>
7958
7959 * Makefile.tpl: Clean $(BUILD_SUBDIR).
7960 * Makefile.in: Regenerated.
7961
7962 2003-04-18 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
7963
7964 * Makefile.tpl (MAKEINFOFLAGS): Default to --split-size=5000000.
7965 * Makefile.in: Regenerate.
7966
7967 2003-04-18 Jakub Jelinek <jakub@redhat.com>
7968
7969 * configure.in (powerpc64*-*-linux*): Remove.
7970 * configure: Rebuilt.
7971
7972 2003-04-17 Phil Edwards <pme@gcc.gnu.org>
7973
7974 * Makefile.tpl (GCC_STRAP_TARGETS): New variable containing all the
7975 previous bootstrap targets, plus bubblestrap, quickstrap, cleanstrap,
7976 and restrap.
7977 * Makefile.in: Regenerate.
7978
7979 2003-04-16 Richard Earnshaw <rearnsha@arm.com>
7980
7981 * configure.in (arm-*-netbsdelf*): Enable building java libraries.
7982 * configure: Regenerated.
7983
7984 2003-04-11 Alexandre Oliva <aoliva@redhat.com>
7985
7986 * libtool.m4 (lt_cv_deplibs_check_method): Use pass_all on mips*.
7987 * */configure: Rebuilt.
7988
7989 2003-03-14 Nathanael Nerode <neroden@gcc.gnu.org>
7990
7991 * Makefile.tpl: Move .NOEXPORT, MAKEOVERRIDES back down.
7992 * Makefile.in: Regenerate.
7993
7994 2003-03-14 Michael Chastain <mec@shout.net>
7995
7996 * Makefile.in: Regenerate with correct Makefile.def.
7997
7998 2003-03-12 Nathanael Nerode <neroden@gcc.gnu.org>
7999
8000 * Makefile.tpl: Move .NOEXPORT, MAKEOVERRIDES up. Delete unused
8001 Make macro.
8002 * Makefile.in: Regenerate.
8003 * configure.in: Clean up gxx_include_dir logic.
8004 * configure: Regenerate.
8005
8006 2003-03-09 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
8007
8008 * configure.in (gxx_include_dir): Fix typo.
8009 * configure: Regenerated.
8010
8011 2003-03-06 Andrew Cagney <cagney@redhat.com>
8012
8013 * texinfo/texinfo.tex: Import version 2003-02-03.16.
8014
8015 2003-03-04 Daniel Jacobowitz <drow@mvista.com>
8016
8017 * configure.in: Include $(build_tooldir)/sys-include in
8018 FLAGS_FOR_TARGET.
8019 * configure: Regenerated.
8020
8021 2003-03-04 Nathanael Nerode <neroden@gcc.gnu.org>
8022
8023 * Makefile.tpl: Reindent.
8024 * Makefile.in: Regenerate.
8025 * configure.in: Reindent. Don't set unused variables.
8026 * configure: Regenerate.
8027
8028 * Makefile.tpl: Always pass down RANLIB.
8029 * Makefile.in: Regenerate.
8030
8031 * Makefile.tpl: Don't set unused enable_shared, enable_threads macros.
8032 * Makefile.in: Regenerate.
8033 * configure.in: Remove unused logic relating to --enable-shared
8034 and --enable-threads. Remove bogus comments. Remove redundant
8035 noconfigdirs.
8036 * configure: Regenerate.
8037
8038 * configure.in: Replace ${libstdcxx_version} by its value.
8039 Remove reference to mh-dgux.
8040 * configure: Regenerate.
8041
8042 2003-02-28 Nathanael Nerode <neroden@gcc.gnu.org>
8043
8044 * Makefile.tpl: Rearrange.
8045 * Makefile.in: Regenerate.
8046
8047 2003-02-25 Nick Clifton <nickc@redhat.com>
8048
8049 * configure: Remove site-file supprot - it is obsolete.
8050
8051 2003-02-24 Uwe Stieber <uwe@wwws.de>
8052
8053 * configure.in: Add support for kaOS as cross build target system.
8054 * configure: Regenerated.
8055
8056 2003-02-20 Sean McNeil <sean@blue.mcneil.com>
8057
8058 * Makefile.tpl: Add definition of CPPFLAGS to pass into
8059 configure-target-* as some target builds may require additional
8060 flags for preprocessor tests.
8061 * Makefile.in: Regenerated.
8062
8063 2003-02-19 Alexandre Oliva <aoliva@redhat.com>
8064
8065 * libtool.m4 (LD): Append -melf* option to LD on IRIX with GNU ld.
8066 * ltconfig: Handle it.
8067 * ltcf-cxx.sh: Use with_gnu_ld passed as a shell variable instead of
8068 auto-detecting it.
8069
8070 2003-02-19 Alexandre Oliva <aoliva@redhat.com>
8071
8072 * ltcf-cxx.sh: Replace $linker_flags with $compiler_flags wherever
8073 it is used as argument to $CC.
8074 * ltcf-gcj.sh: Likewise.
8075
8076 2003-02-19 Alexandre Oliva <aoliva@redhat.com>
8077
8078 * configure.in: Introduce --enable-maintainer-mode.
8079 * configure: Rebuilt.
8080 * Makefile.tpl (Makefile.in, configure): Enable dependencies only
8081 for maintainer mode.
8082 * Makefile.in: Rebuilt.
8083
8084 2003-02-19 Andrew Cagney <ac131313@redhat.com>
8085
8086 * configure: Regenerate using autoconf 2.13.
8087
8088 2003-02-19 Alan Modra <amodra@bigpond.net.au>
8089
8090 * config.guess: Import latest version.
8091 * config.sub: Import latest version.
8092
8093 2003-02-18 Jason Merrill <jason@redhat.com>
8094
8095 * Makefile.tpl (check-c++): Allow parallelism.
8096
8097 2003-02-17 Andrew Cagney <ac131313@redhat.com>
8098
8099 * configure: Regenerate using autoconf 000227.
8100
8101 2003-02-15 Geoffrey Keating <geoffk@apple.com>
8102
8103 * configure.in (*-*-darwin*): Rename from powerpc*-*-darwin*,
8104 don't configure target-libobjc.
8105 * configure: Regenerate.
8106
8107 2003-02-14 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
8108
8109 * Makefile.tpl (RANLIB): Define.
8110 * Makefile.in: Regenerate.
8111
8112 2003-02-06 Keith R Seitz <keiths@redhat.com>
8113
8114 * Makefile.def: Remove "snavigator", "grep", and "db" modules.
8115 * Makefile.tpl: Remove "all-snavigator" and "all-grep".
8116 * Makefile.in: Regenerated.
8117 * configure.in: Remove all traces of snavigator, db, and grep.
8118 * configure: Regenerated.
8119
8120 2003-01-31 Frank Ch. Eigler <fche@redhat.com>
8121
8122 * Makefile.tpl (all-sid): Add libiberty/bfd/opcodes dependencies.
8123 * Makefile.in: Regenerated.
8124
8125 2003-01-30 Alexandre Oliva <aoliva@redhat.com>
8126
8127 * config.if: Copy from GCC.
8128
8129 2003-01-27 Phil Edwards <pme@gcc.gnu.org>
8130
8131 * configure.in: Revert 24Jan change.
8132 * configure: Regenerate.
8133
8134 2003-01-23 Nathanael Nerode <neroden@gcc.gnu.org>
8135
8136 * configure.in: Revert previous change.
8137 * configure: Regenerate.
8138
8139 2003-01-23 Nathanael Nerode <neroden@gcc.gnu.org>
8140
8141 * configure.in: Make rda native-only.
8142 * configure: Regenerate.
8143
8144 2003-01-19 Nathanael Nerode <neroden@gcc.gnu.org>
8145
8146 * configure.in: Add missing \.
8147 * configure: Rebuilt.
8148
8149 2003-01-17 Jakub Jelinek <jakub@redhat.com>
8150
8151 * configure.in (baseargs): Avoid using \| in sed regular
8152 expressions.
8153 * configure: Rebuilt.
8154
8155 2003-01-16 Jakub Jelinek <jakub@redhat.com>
8156
8157 * configure.in (baseargs): Remove all supported forms of
8158 --cache-file, --srcdir, --host, --build and --target options
8159 from argument lists.
8160 * configure: Rebuilt.
8161
8162 2003-01-15 Alexandre Oliva <aoliva@redhat.com>
8163
8164 * configure.in (noconfigdirs): Don't skip gas on IRIX 6.
8165 * configure: Rebuilt.
8166
8167 2003-01-09 Nathanael Nerode <neroden@gcc.gnu.org>
8168
8169 * configure.in: Substitute TOPLEVEL_CONFIGURE_ARGUMENTS.
8170 * Makefile.tpl: Pass TOPLEVEL_CONFIGURE_ARGUMENTS to gcc.
8171 * Makefile.in: Regenerate.
8172 * configure: Regenerate.
8173
8174 2003-01-09 Christian Cornelssen <ccorn@cs.tu-berlin.de>
8175
8176 * Makefile.tpl (BASE_FLAGS_TO_PASS): Also pass DESTDIR.
8177 (install-info, dir.info): Prepend $(DESTDIR) to $(infodir).
8178 * Makefile.in: Regenerate.
8179
8180 2003-01-09 Alexandre Oliva <aoliva@redhat.com>
8181
8182 * configure.in: Remove Makefile in build, host and target modules
8183 unless configure was run with --no-recursion.
8184 * configure: Rebuilt.
8185
8186 2003-01-08 Chris Demetriou <cgd@broadcom.com>
8187
8188 * config.guess: Update to 2003-01-03 version.
8189 * config.sub: Update to 2003-01-03 version.
8190
8191 2003-01-07 Christopher Faylor <cgf@redhat.com>
8192
8193 * configure: Regenerate with proper autoconf 2.13.
8194
8195 2003-01-07 Christopher Faylor <cgf@redhat.com>
8196
8197 * configure.in: Add AC_PREREQ for consistency.
8198 * configure: Regenerate.
8199
8200 2003-01-06 Andrew Cagney <ac131313@redhat.com>
8201
8202 * configure.in (GDB_TK): Add tcl directories conditional on
8203 gdb/gdbtk directory being present.
8204 * configure: Regenerate.
8205
8206 2003-01-04 John David Anglin <dave.anglin@nrc.ca>
8207
8208 * configure.in (LD): Improve test for gcc. Try to set LD to the ld used
8209 by gcc if LD is not defined and we are not doing a Canadian Cross.
8210 * configure: Rebuilt.
8211
8212 2003-01-01 Daniel Jacobowitz <drow@mvista.com>
8213
8214 * src-release (ETC_SUPPORT): Add fdl.texi and texi2pod.pl.
8215
8216 2002-12-31 Tom Tromey <tromey@redhat.com>
8217
8218 * Makefile.in: Rebuilt.
8219 * Makefile.def (target_modules) [libffi]: Allow installation.
8220
8221 2002-12-31 Andreas Schwab <schwab@suse.de>
8222
8223 * configure.in: Fix use of $program_transform_name.
8224 * configure: Regenerated.
8225
8226 2002-12-30 Daniel Jacobowitz <drow@mvista.com>
8227
8228 * configure.in (baseargs): Don't remove first configure argument.
8229 * configure: Regenerated.
8230
8231 2002-12-29 Alexandre Oliva <aoliva@redhat.com>
8232
8233 * Makefile.tpl (local-distclean): Don't remove...
8234 (multilib.ts): ... this. Moved into...
8235 (multilib.out): ... this. Don't use sub-make.
8236 ($(BUILD_SUBDIR)/[+module+]/Makefile, [+module+]/Makefile,
8237 $(TARGET_SUBDIR)/[+module+]/Makefile, gcc/Makefile): Moved into...
8238 (configure-build-[+module+], configure-[+module+],
8239 configure-target-[+module+], configure-gcc): ... these. Test
8240 for Makefile existence. Drop config.status from dependencies.
8241 * Makefile.in: Rebuilt.
8242 * configure.in: Move gcc-version-trigger to the end of
8243 ac_configure_args. Add comments to maybedep.tmp and
8244 serdep.tmp. Introduce --disable-serial-configure. Remove
8245 nonopt from baseargs, matching and removing corresponding
8246 whitespace while at it.
8247 * configure: Rebuilt.
8248
8249 2002-12-28 Alexandre Oliva <aoliva@redhat.com>
8250
8251 * configure.in (host_configargs): Replace reference to
8252 no-longer-defined buildopts with --build=${build_alias}.
8253 * configure: Rebuilt.
8254
8255 2002-12-28 Alexandre Oliva <aoliva@redhat.com>
8256
8257 * Makefile.tpl ($(NOTPARALLEL)): Move to the end. Bring uses of
8258 program_transform_name to standard idiom.
8259 (AUTOGEN, AUTOCONF): Define.
8260 (Makefile.in): Use $(AUTOGEN).
8261 (Makefile): Depend on config.status, and use autoconf-style rule to
8262 build it. Move original commands to...
8263 (config.status): ... this new target.
8264 (configure): Add $(srcdir). Depend on config/acx.m4. Use
8265 $(AUTOCONF).
8266 * Makefile.in: Rebuilt.
8267
8268 2002-12-28 Nathanael Nerode <neroden@gcc.gnu.org>
8269
8270 * Makefile.tpl: Fix dramatic bustage due to change in
8271 program_transform_name.
8272 * Makefile.in: Regenerate.
8273
8274 * configure.in: Remove unnecessary PATH setting.
8275 * configure: Regnerate.
8276
8277 * configure.in: Don't default to unprefixed tools unless
8278 the native tools will work.
8279 * configure: Regenerate.
8280
8281 * configure.in: Convert to autoconf script. Blow away lots
8282 of now-redundant Makefile fragments.
8283 * configure: Generate using Autoconf.
8284 * Makefile.tpl: Rewrite to reflect autoconfiscation.
8285 * Makefile.in: Regenerate.
8286
8287 2002-12-27 Nathanael Nerode <neroden@gcc.gnu.org>
8288
8289 * configure: Remove unneeded 'export's. Make CC_FOR_TARGET,
8290 CXX_FOR_TARGET, GCJ_FOR_TARGET substituted in configure.in only.
8291
8292 * ChangeLog: Move a couple of entries from here to winsup/cygwin,
8293 where they belong.
8294
8295 2002-12-24 Andreas Schwab <schwab@suse.de>
8296
8297 * Makefile.tpl (multilib.out): Fix missing space.
8298 * Makefile.in: Regenerate.
8299
8300 2002-12-23 Nathanael Nerode <neroden@gcc.gnu.org>
8301
8302 * Makefile.tpl: Use shared multilib.out. Use move-if-change for it.
8303 Convert (cd foo; make) to (cd foo && make). Clean up multilib.out.
8304 * Makefile.in: Regenerate.
8305 * configure.in: Remove unnecessary leftovers.
8306
8307 2002-12-21 Geoffrey Keating <geoffk@apple.com>
8308
8309 * configure.in (extra_ranlibflags_for_target): New variable.
8310 (*-*-darwin): Add -c to ranlib commands.
8311 * configure (tooldir): Handle extra_ranlibflags_for_target.
8312
8313 2002-12-20 Jeff Johnston <jjohnstn@redhat.com>
8314
8315 * COPYING.NEWLIB: Updated.
8316 * COPYING.LIBGLOSS: Ditto.
8317
8318 2002-12-19 Nathanael Nerode <neroden@gcc.gnu.org>
8319
8320 * Makefile.tpl: Revert HJL's change.
8321 * Makefile.in: Regenerated.
8322 * configure.in: Put build_prefix before $(BUILD_SUBDIR) here, and
8323 always.
8324
8325 2002-12-19 Andreas Schwab <schwab@suse.de>
8326
8327 * Makefile.tpl, configure.in: Substitute libstdcxx_incdir.
8328 * Makefile.in: Regenerate.
8329
8330 2002-12-18 H.J. Lu <hjl@gnu.org>
8331
8332 * Makefile.tpl: Add @build_prefix@ before $(BUILD_SUBDIR).
8333 * Makefile.in: Regenerated.
8334
8335 * configure.in (build_prefix): New. Substitute.
8336
8337 2002-12-18 Nathanael Nerode <neroden@gcc.gnu.org>
8338
8339 * Makefile.tpl: Don't let real targets depend on phony targets.
8340 * Makefile.in: Regenerate.
8341
8342 * Makefile.tpl (do-info): Depend on maybe-all-texinfo, not all-texinfo.
8343 * Makefile.in: Regenerate.
8344
8345 2002-12-16 Jason Merrill <jason@redhat.com>
8346
8347 * Makefile.tpl (all-gcc): Use 'make quickstrap' if there was a
8348 previous 'make bootstrap'.
8349 * Makefile.in: Regenerate.
8350
8351 2002-12-17 Hans-Peter Nilsson <hp@bitrange.com>
8352
8353 * configure.in (noconfigdirs) [mmix-*-*]: Disable libgloss and gdb.
8354
8355 2002-12-13 Jason Merrill <jason@redhat.com>
8356
8357 * Makefile.tpl (check-gcc-c++): Renamed from check-c++. Don't run
8358 library tests.
8359 (check-c++): Just depend on it and check-target-libstdc++-v3.
8360 * Makefile.in: Regenerate.
8361
8362 2002-12-13 Nathanael Nerode <neroden@gcc.gnu.org>
8363
8364 * configure.in, Makefile.tpl, Makefile.def: Remove tclX.
8365 * Makefile.in: Regenerate.
8366
8367 2002-12-12 Jeff Johnston <jjohnstn@redhat.com>
8368
8369 * COPYING.NEWLIB: Update list of alternate Regent of California
8370 licenses and discuss official revoking of advertising clause.
8371 * COPYING.LIBGLOSS: Ditto.
8372
8373 2002-12-12 Alexandre Oliva <aoliva@redhat.com>
8374
8375 * Makefile.tpl (configure-target-rda): Depend on $(ALL_GCC_C).
8376 * Makefile.in: Rebuilt.
8377
8378 2002-12-10 Nathanael Nerode <neroden@gcc.gnu.org>
8379
8380 * configure: Fix bug put in by gremlins.
8381
8382 * Makefile.tpl: Substitute more autoconfily.
8383 * configure: Substitute more autoconfily.
8384 * Makefile.in: Regenerate.
8385
8386 2002-12-08 Andrew Cagney <ac131313@redhat.com>
8387
8388 * Makefile.tpl (all-sim): Depend on maybe-configure-gdb.
8389 * Makefile.in (all-sim): Ditto.
8390
8391 2002-12-06 DJ Delorie <dj@redhat.com>
8392
8393 * Makefile.tpl: Change configure dependencies to not have real
8394 targets depend on phony targets.
8395
8396 2002-12-05 Nathanael Nerode <neroden@gcc.gnu.org>
8397
8398 * configure.in: Revert unintentional change.
8399
8400 * src-release: Configure host subdirs.
8401
8402 * Makefile.tpl: Change dependency for */multilib.out so that
8403 it works when gcc isn't in the tree.
8404
8405 * configure.in: Substitute more.
8406 * configure: Run subconfigures from the Makefile.
8407 * Makefile.tpl: Run subconfigures from the Makefile; add a few
8408 convenience targets. Make sure gcc isn't rebuilt after bootstrap.
8409
8410 2002-12-03 Nathanael Nerode <neroden@gcc.gnu.org>
8411
8412 * Makefile.tpl: Add targets for configuring host subdirs in Makefile,
8413 and corresponding dependencies.
8414 * Makefile.in: Regenerate.
8415
8416 * configure.in (host_tools): Order binutils, gas and ld for
8417 convenience in running the testsuites.
8418
8419 * Makefile.tpl: Introduce rules to serialize subconfigure runs.
8420 * Makefile.in: Regenerate.
8421 * configure.in: Introduce rules to serialize subconfigure runs.
8422
8423 * configure.in: Introduce BASE_CC_FOR_TARGET.
8424 * Makefile.tpl: Reorganize and comment. Introduce HOST_CONFIGARGS.
8425 Realize configure-build-* targets. Realize configure-target-* targets.
8426 * Makefile.in: Regenerate.
8427
8428 2002-12-02 Nathanael Nerode <neroden@gcc.gnu.org>
8429
8430 * configure: Move gcc_version_trigger stuff from here...
8431 * configure.in: ...to here.
8432
8433 * configure.in: Separate subconfigure options added by this file from
8434 options given by the user. Add machinery to put args for host
8435 subconfigures into the Makefile.
8436
8437 * Makefile.tpl: Remove 'vault' targets.
8438 * Makefile.tpl: Reorder and comment dependencies.
8439 * Makefile.in: Regenerate.
8440
8441 2002-11-28 Geoffrey Keating <geoffk@apple.com>
8442
8443 * configure.in: Move host-specific darwin noconfigdirs into
8444 the host-specific section.
8445
8446 2002-12-02 Nathanael Nerode <neroden@gcc.gnu.org>
8447
8448 * Makefile.tpl: Restore bkorb's style patch, accidentally lost
8449 during replay.
8450 * Makefile.in: Regenerate.
8451
8452 (finishing slow-motion replay)
8453 * configure: Remove skip-this-dir support.
8454 * Makefile.tpl: Remove skip-this-dir support.
8455
8456 * Makefile.tpl: Remove leftover support for non-autoconfiscated
8457 subdirectories.
8458 * Makefile.in: Regenerate.
8459
8460 * Makefile.tpl: Strip out useless setting of 'dir'.
8461 * Makefile.in: Regenerate.
8462
8463 2002-12-02 Nathanael Nerode <neroden@gcc.gnu.org>
8464
8465 (finishing slow-motion replay)
8466 * configure.in: Fix deeply stupid bug.
8467
8468 * configure.in: Introduce RAW_CXX_FOR_TARGET and simplify embedded
8469 shell code in CXX_FOR_TARGET
8470 * Makefile.def: Introduce raw_cxx.
8471 * Makefile.tpl: Use raw_cxx to select between CXX_FOR_TARGET and
8472 RAW_CXX_FOR_TARGET.
8473 * Makefile.in: Regenerate.
8474
8475 2002-12-02 Nathanael Nerode <neroden@gcc.gnu.org>
8476
8477 (finishing slow-motion replay)
8478 * Makefile.tpl: Remove unnecessary ifs.
8479 * Makefile.in: Regenerate.
8480
8481 * Makefile.tpl: Implement soft dependency machinery. Maybe-ize
8482 dependencies. Maybe-ize build-libiberty. Create dummy install
8483 targets for 'no_install' modules.
8484 * configure: Move GDB_TK substitution to configure.in. Move
8485 build_modules stuff to configure.in.
8486 * configure.in: Implement soft dependency machinery. Maybe-ize
8487 GDB_TK, rearrange slightly. Move build_modules stuff from configure.
8488 * Makefile.in: Regenerate.
8489
8490 2002-12-01 Nathanael Nerode <neroden@gcc.gnu.org>
8491
8492 (continuing slow-motion replay)
8493 * Makefile.tpl: Make all-target, install-target behave similarly
8494 to all, install (only hitting configured targets). Eliminate
8495 unused macro defintions.
8496
8497 * Makefile.tpl: Add all-gcc: all-build-libiberty dependency when
8498 build != host.
8499
8500 * Makefile.tpl: Add all-gcc: all-libiberty dependency.
8501
8502 * ltcf-c.sh, ltcf-gcj.sh, Makefile.tpl: Correct BUILD/HOST confusion.
8503
8504 * configure.in: Produce lists of subdir targets we're actually
8505 configuring. Remove references to "dosrel".
8506 * Makefile.tpl: Let configure set which subdir targets are hit.
8507 Remove install-cross; clean up install; remove ALL. Remove
8508 references to "dosrel". Remove "EXTRA_TARGET_HOST" hackery.
8509 Autogenerate host module targets. Remove empty dependency lines
8510 and redundant dependency; rearrange slightly.
8511 * Makefile.def: Add host-side libtermcap, utils.
8512
8513 * Makefile.in: Regenerate.
8514
8515 2002-12-01 Nathanael Nerode <neroden@gcc.gnu.org>
8516
8517 (Continuing slow-motion replay)
8518 * Makefile.def: Add list of recursive targets to autogenerate.
8519 Add build_modules.
8520 * Makefile.tpl: Autogenerate do-* targets. Autogenerate *-target-*
8521 targets. Autogenerate *-build-* targets.
8522 * Makefile.in: Regenerate.
8523
8524 2002-11-30 Nathanael Nerode <neroden@gcc.gnu.org>
8525
8526 (Continuing slow-motion replay)
8527 * configure: More autoconf-style substitutions.
8528 * Makefile.tpl: More autoconf-style substitutions.
8529 * Makefile.in: Regenerate.
8530
8531 2002-11-30 Nathanael Nerode <neroden@gcc.gnu.org>
8532
8533 (Continuing slow-motion replay)
8534 * configure: Substitute more variables in a more autoconf-friendly
8535 way. Simplify slightly.
8536 * Makefile.tpl: Make more variables substitutable in an
8537 autoconf-friendly way.
8538 * Makefile.in: Regenerate.
8539
8540 2002-11-29 Nathanael Nerode <neroden@gcc.gnu.org>
8541
8542 (Continuing slow-motion replay)
8543 * configure.in (v810*): Remove special setting of tools.
8544
8545 * configure: Add support for extra required flags for ar or nm.
8546 * configure.in (aix4.3+): Use above support for target-specific
8547 issues, rather than using config/mt-aix43.
8548
8549 2002-11-29 Nathanael Nerode <neroden@gcc.gnu.org>
8550
8551 (Starting slow-motion replay merge from gcc 3.4 b-i-b branch)
8552 * configure: Remove 'removing', which doesn't work. Replace $subdir
8553 with . everywhere. Replace $subdirs with ''. Replace $makesrcdir
8554 with $srcdir. Reformat indentation. Substitute some variables
8555 formerly hard-coded in the Makefile for build=host.
8556 * Makefile.tpl: Autogenerate more; make more autoconf-friendly.
8557 * Makefile.def: Autogenerate more.
8558 * Makefile.in: Regenerate.
8559
8560 2002-11-13 Bruce Korb <bkorb@gnu.org>
8561
8562 * Makefile.tpl: syntactic cleanup
8563
8564 2002-11-04 Kevin Buettner <kevinb@redhat.com>
8565
8566 * Makefile.def (host_modules): Add rda.
8567 * Makefile.in: Regenerate.
8568 * configure.in (target_tool): Add target-rda to list.
8569
8570 2002-10-25 Phil Edwards <pme@gcc.gnu.org>
8571
8572 * Makefile.tpl (bootstrap): Add bubblestrap, quickstrap, cleanstrap,
8573 and restrap targets to this rule.
8574 * Makefile.in: Regenerate.
8575
8576 2002-10-24 Hans-Peter Nilsson <hp@bitrange.com>
8577
8578 * configure.in (i[3456]86-*-linux*): Add check to disable
8579 ${libgcj} for glibc1.
8580
8581 2002-10-07 Svein E. Seldal <Svein.Seldal@solidas.com>
8582
8583 * configure.in: Add tic4x target.
8584
8585 2002-10-03 Nathanael Nerode <neroden@gcc.gnu.org>
8586
8587 * Makefile.tpl: Make SET_LIB_PATH substitution more autoconfy.
8588 * Makefile.tpl: Make RPATH_ENVVAR substitution more autoconfy.
8589 * configure.in: Make SET_LIB_PATH substitution more autoconfy.
8590 * configure.in: Make RPATH_ENVVAR substitution more autoconfy.
8591 * Makefile.in: Regenerate.
8592
8593 2002-10-02 Nathanael Nerode <neroden@gcc.gnu.org>
8594
8595 * Makefile.tpl: Eliminate reference to all-gui, all-libproc.
8596 * Makefile.in: Regenerate.
8597
8598 * Makefile.def: Remove order dependency comments.
8599 * Makefile.tpl: Add explicit install-install dependencies.
8600 * Makefile.in: Regenerate.
8601
8602 * Makefile.tpl: Remove material now in src-release. (Finally!)
8603 * Makefile.in: Regenerate.
8604
8605 * configure: Restore my original patch by syncing with gcc version.
8606
8607 * Bring following over from gcc:
8608
8609 2002-09-30 Ulrich Weigand <uweigand@de.ibm.com>
8610
8611 * configure.in (s390*-*-linux*): Enable libgcj.
8612
8613 2002-10-02 Nathanael Nerode <neroden@gcc.gnu.org>
8614
8615 * Makefile.in: Regenerate. This really ought to fix things. :sigh:
8616
8617 2002-10-02 Alan Modra <amodra@bigpond.net.au>
8618
8619 * configure: Move stray lines back to where they belong.
8620
8621 2002-10-01 Nathanael Nerode <neroden@gcc.gnu.org>
8622
8623 * Makefile.tpl: Insert configure-target target, for src-release.
8624
8625 * configure: Finish reverting change which Andrew Cagney started
8626 reverting. Should fix bustage.
8627
8628 * src-release (BINUTILS_SUPPORT_DIRS): Add cpu directory.
8629 * src-release: New file. Contains material for making net
8630 releases for gdb, binutils, et al., formerly in Makefile.in.
8631
8632 2002-09-30 Nick Clifton <nickc@redhat.com>
8633
8634 * cpu: New top level directory. Intended to hold input files for
8635 CGEN which have FSF copyright assignment.
8636 * Makefile.in (BINUTILS_SUPPORT_DIRS): Add cpu directory.
8637
8638 2002-09-29 Andrew Cagney <ac131313@redhat.com>
8639
8640 Revert below (note that src does not contain Makefile.tpl):
8641 * Makefile.tpl: Make subsituted variables more autoconfy.
8642 * Makefile.in: Regenerate.
8643
8644 2002-09-29 Nathanael Nerode <neroden@gcc.gnu.org>
8645
8646 * configure: Revert accidentally applied changes.
8647
8648 * Makefile.tpl: Make more autoconf-friendly.
8649 * Makefile.in: Regenerate.
8650 * configure: Make substitution more autoconf-like.
8651
8652 2002-09-28 Richard Earnshaw <rearnsha@arm.com>
8653
8654 * configure.in (arm-*-coff, strongarm-*-coff, xscale-*-coff): Use a
8655 single entry to handle all these.
8656 (arm-*-elf, strongarm-*-elf, xscale-*-elf): Likewise. Also enable
8657 libjava on arm-*-elf.
8658
8659 2002-09-27 Geoffrey Keating <geoffk@apple.com>
8660
8661 * configure.in (powerpc-*-darwin*): Don't configure BFD, TK, or the
8662 things that depend on them.
8663
8664 2002-09-25 Nathanael Nerode <neroden@gcc.gnu.org>
8665
8666 * Makefile.tpl: Make subsituted variables more autoconfy.
8667 * Makefile.in: Regenerate.
8668 * configure: Make seds more autoconfy.
8669
8670 2002-09-25 Nathanael Nerode <neroden@gcc.gnu.org>
8671
8672 * Makefile.tpl: Rewrite substituted lines to look autoconfy.
8673 * Makefile.in: Regenerate.
8674 * configure.in: Rewrite sed statements to look autoconfy.
8675
8676 * Makefile.tpl: Autogenerate *-target-* lists, dependencies of
8677 all-target-foo on configure-target-foo.
8678 * Makefile.def: Ditto.
8679 * Makefile.in: Rebuild.
8680
8681 2002-09-22 Nathanael Nerode <neroden@gcc.gnu.org>
8682
8683 * Makefile.def: New file.
8684 * Makefile.tpl: New file.
8685 * Makefile.in: Generate from Makefile.tpl with 'autogen Makefile.def'.
8686
8687 * configure.in: Minor rearrangement. Simplify tests.
8688
8689 2002-09-23 Jason Thorpe <thorpej@wasabisystems.com>
8690
8691 * configure.in (with_headers): Skip copy if value is "yes".
8692 (with_libs): Likewise.
8693
8694 2002-09-20 Nathanael Nerode <neroden@gcc.gnu.org>
8695
8696 * configure.in (*-*-netbsd*): Use noconfigdirs, not skipdirs.
8697 * configure.in (sh*-*-pe*): Ditto.
8698 * configure.in (mips*-*-pe*): Ditto.
8699 * configure.in (*arm-wince-pe): Ditto.
8700
8701 * configure.in: Rearrange.
8702
8703 2002-09-12 Nick Clifton <nickc@redhat.com>
8704
8705 * Import these changes from the config master repository:
8706
8707 2002-09-05 Svein E. Seldal <Svein.Seldal@solidas.com>
8708
8709 * config.sub: Add tic4x target.
8710
8711 2002-09-03 Ben Elliston <bje@redhat.com>
8712
8713 * config.guess: Detect NSR-D machines for nsr-tandem-nsk.
8714 Reported by <Duncan_Stodart@insession.com>.
8715
8716 2002-09-10 Jeff Johnston <jjohnstn@redhat.com>
8717
8718 * COPYING.NEWLIB: More updates.
8719
8720 2002-09-09 Jeff Johnston <jjohnstn@redhat.com>
8721
8722 * COPYING.NEWLIB: Update.
8723
8724 2002-08-23 Andrew Cagney <ac131313@redhat.com>
8725
8726 * texinfo/texinfo.tex: Import version 2002-06-04.06.
8727
8728 * config.guess: Import version 2002-08-23.
8729 * config.sub: Import version 2002-08-22.
8730
8731 2002-08-20 Alexandre Oliva <aoliva@redhat.com>
8732
8733 * Makefile.in (GCC_FOR_TARGET): Prepend STAGE_CC_WRAPPER.
8734 * configure.in (CC_FOR_TARGET, GCJ_FOR_TARGET, CXX_FOR_TARGET,
8735 CXX_FOR_TARGET_FOR_RECURSIVE_MAKE): Likewise.
8736
8737 2002-08-06 Federico G. Schwindt <fgsch@olimpo.com.br>
8738
8739 * configure.in (hppa*-*-openbsd*): Treat like hppa*-*-*elf*.
8740
8741 2002-08-04 H.J. Lu (hjl@gnu.org)
8742
8743 * configure.in (mips*-*-linux*): Don't skip target-libffi.
8744
8745 2002-07-31 Alan Modra <amodra@bigpond.net.au>
8746
8747 * configure.in: Move generic linux case to end. Copy generic
8748 linux noconfigdirs to mips*-*-linux* entry and new
8749 powerpc64*-*-linux* entry. Add target-libffi for the latter.
8750
8751 2002-07-19 Chris Demetriou <cgd@broadcom.com>
8752
8753 * MAINTAINERS: Clarify on config.guess and config.sub, and add
8754 one instance of them which was missed to the list to update.
8755
8756 2002-07-16 Chris Demetriou <cgd@broadcom.com>
8757
8758 * config.guess: Update to 2002-07-09 version.
8759 * config.sub: Update to 2002-07-03 version.
8760
8761 2002-07-11 Nathanael Nerode <neroden@gcc.gnu.org>
8762
8763 * configure.in: Remove two redundant tests.
8764
8765 2002-07-11 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
8766
8767 * configure.in (mips*-*-irix6*o32): Enable stabs.
8768
8769 2002-07-08 Nathanael Nerode <neroden@gcc.gnu.org>
8770
8771 * configure.in: Don't build grez.
8772 * Makefile.in: Ditto.
8773
8774 * Makefile.in: Remove references to bsp, cygmon, libstub.
8775 * configure.in: Ditto.
8776
8777 * configure.in: Remove leftover reference to gdbtest.
8778
8779 2002-07-08 Phil Edwards <pme@gcc.gnu.org>
8780
8781 * configure.in (gxx_include_dir): Change to match versioned
8782 C++ headers if --enable-version-specific-runtime-libs is used.
8783
8784 2002-07-04 Steve Ellcey <sje@cup.hp.com>
8785
8786 * ltcf-cxx.sh (hpux*): Modify to support ia64-*-hpux*.
8787
8788 2002-07-03 Nathanael Nerode <neroden@gcc.gnu.org>
8789
8790 * configure.in: Make --without-x work.
8791
8792 2002-07-03 Nick Clifton <nickc@cambridge.redhat.com>
8793
8794 * contrib: New directory. Created to contain a copy of the
8795 texi2pod.pl script so that it is in the same place as the version in
8796 the FSF GCC sources.
8797
8798 2002-07-02 Nathanael Nerode <neroden@gcc.gnu.org>
8799
8800 * configure.in: Rearrange target Makefile fragment collection.
8801
8802 * Makefile.in: Don't try to build gdbtest, tgas, ispell, inet, or
8803 cvs[src].
8804 * configure.in: Ditto.
8805
8806 2002-07-01 Nathanael Nerode <neroden@gcc.gnu.org>
8807
8808 * Makefile.in: Eliminate 'apache' targets.
8809 * configure.in: Eliminate 'apache' targets.
8810
8811 * configure.in: Eliminate redundant tests. Reorganize.
8812
8813 * Makefile.in: Eliminate last reference to LIBGCC1_TEST.
8814
8815 * config-ml.in: Eliminate references to Cygnus configure.
8816
8817 * Makefile.in: Eliminate references to building emacs.
8818
8819 2002-07-01 Denis Chertykov <denisc@overta.ru>
8820
8821 * configure.in: Add support for ip2k.
8822
8823 2002-06-24 Ben Elliston <bje@redhat.com>
8824
8825 * configure.in (host_tools): Remove cgen.
8826
8827 * Makefile.in (all-cgen): Remove; runs from its source directory.
8828 (check-cgen, install-cgen, clean-cgen): Likewise.
8829 (all-opcodes): No not depend on all-cgen.
8830 (all-sim): Likewise.
8831
8832 2002-06-22 Nathanael Nerode <neroden@twcny.rr.com>
8833
8834 * configure.in: Fix AIX configury bug.
8835
8836 2002-06-19 Nathanael Nerode <neroden@twcny.rr.com>
8837
8838 * configure.in: Replace ${topsrcdir} with ${srcdir}.
8839
8840 * configure.in: Move definition of libstdcxx_flags right above
8841 usage, rather than way earlier.
8842
8843 * configure.in: Pull definition of is_cross_compiler earlier.
8844
8845 * configure.in: Rearrange a little.
8846
8847 * configure.in: Remove references to librx.
8848 * Makefile.in: Remove references to librx.
8849
8850 2002-06-19 Nathanael Nerode <neroden@twcny.rr.com>
8851
8852 * configure.in: Eliminate ${gasdir} variable.
8853
8854 2002-06-18 Dave Brolley <brolley@redhat.com>
8855
8856 * configure.in: Add support for frv.
8857 * config.sub: Add support for frv.
8858
8859 2002-06-12 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
8860
8861 * Makefile.in (CFLAGS_FOR_TARGET): Add -O2.
8862
8863 2002-06-08 Jason Thorpe <thorpej@wasabisystems.com>
8864
8865 * configure.in (vax-*-netbsd*): Re-enable gas.
8866
8867 2002-05-31 Nathanael Nerode <neroden@twcny.rr.com>
8868
8869 * Makefile.in: Replace HOST_PREFIX, HOST_PREFIX_1 with BUILD_PREFIX,
8870 BUILD_PREFIX_1, to correct nomenclature.
8871 * configure: Likewise.
8872
8873 * Makefile.in: Eliminate version-specific references to tcl8.1, tk8.1.
8874 * configure.in: Eliminate version-specific references to tcl8.1, tk8.1.
8875
8876 2002-05-31 Olaf Hering <olh@suse.de>
8877
8878 * config-ml.in: Propogate DESTDIR also.
8879
8880 2002-05-29 Jason Thorpe <thorpej@wasabisystems.com>
8881
8882 * configure.in (vax-*-netbsd*): Don't build gas for this
8883 platform.
8884
8885 2002-05-28 Marek Michalkiewicz <marekm@amelek.gda.pl>
8886
8887 * configure.in (noconfigdirs): Don't compile libiberty, libstdcxx
8888 and libgcj for AVR.
8889
8890 2002-05-28 Nick Clifton <nickc@cambridge.redhat.com>
8891
8892 * config.sub: Add DLX target.
8893
8894 2002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
8895
8896 * config.guess: Update to 2002-05-22 version.
8897 * config.sub: Likewise.
8898
8899 2002-05-16 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
8900
8901 * Makefile.in: Allow for PWDCMD to override hardcoded pwd.
8902 * config-ml.in: Likewise.
8903 * configure: Likewise.
8904 * configure.in: Likewise.
8905
8906 2002-05-13 Nathanael Nerode <neroden@twcny.rr.com>
8907
8908 * configure.in: Simplify makefile fragment collection.
8909
8910 * configure.in: Remove code to build emacs.
8911
8912 * configure.in : Remove --srcdir argument from targargs and buildargs
8913 (it's always overridden in the Makefile anyway). Rearrange a bit.
8914
8915 * configure: Move some logic to configure.in.
8916 * configure.in: Move some logic from configure.
8917
8918 2002-05-07 Jeff Johnston <jjohnstn@redhat.com>
8919
8920 * COPYING.LIBGLOSS: New file.
8921
8922 2002-05-07 Federico G. Schwindt <fgsch@olimpo.com.br>
8923
8924 * Makefile.in: Honour DESTDIR.
8925
8926 2002-05-05 Alexandre Oliva <aoliva@redhat.com>
8927
8928 * configure.in (noconfigdirs): Don't disable libgcj on
8929 sparc64-*-solaris* and sparcv9-*-solaris*.
8930
8931 2002-05-03 Alexandre Oliva <aoliva@redhat.com>
8932
8933 * configure.in: Revert 2002-04-18's patch; fixed in libjava.
8934
8935 2002-05-03 Thomas Fitzsimmons <fitzsim@redhat.com>
8936
8937 * configure.in (FLAGS_FOR_TARGET): Do not add
8938 -B$$r/$(TARGET_SUBDIR)/newlib/ when compiling newlib natively
8939 on i[3456]86-*-linux*.
8940
8941 2002-05-01 Thomas Fitzsimmons <fitzsim@redhat.com>
8942
8943 * configure.in (noconfigdirs): Replace [ ] with test.
8944
8945 * configure.in (noconfigdirs): Do not add target-newlib if
8946 target == i[3456]86-*-linux*, and host == target.
8947
8948 2002-04-29 Mark Mitchell <mark@codesourcery.com>
8949
8950 * config.guess: Updated to 2002-04-26's version.
8951 * config.sub: Updated to 2002-04-26's version.
8952
8953 2002-04-29 Nathanael Nerode <neroden@doctormoo.dyndns.org>
8954
8955 * configure.in: delete reference to absent file
8956
8957 * configure.in: replace '[' with 'test'
8958
8959 * configure.in: Eliminate references to gash.
8960 * Makefile.in: Eliminate references to gash.
8961
8962 * configure.in: remove useless references to 'pic' makefile fragments.
8963
8964 * configure.in: (*-*-windows*) Finish removing.
8965
8966 * configure.in: Eliminate redundant test for libgui.
8967
8968 2002-04-26 Joel Sherrill <joel@OARcorp.com>
8969
8970 * configure.in (h8300*-*-rtems*): Disable libf2c and libgcj.
8971 (sparc-*-elf*, sparc64-*-elf*): Disable libgcj.
8972
8973 2002-04-19 Nathanael Nerode <neroden@twcny.rr.com>
8974
8975 * configure.in: remove references to dead files
8976
8977 2002-04-18 Tom Tromey <tromey@redhat.com>
8978
8979 * configure.in: Disallow configuring libgcj when it is already
8980 installed and we're using Solaris 2.8 linker. Do enable libgcj on
8981 Solaris 2.8 by default. For PR libgcj/6158.
8982
8983 2002-04-17 Nathanael Nerode <neroden@twcny.rr.com>
8984
8985 * configure.in: Move default CC setting out of config/mh-* fragments
8986 directly into here.
8987
8988 2002-04-17 Nathanael Nerode <neroden@twcny.rr.com>
8989
8990 * configure.in: don't even try to configure or make a subdirectory
8991 if there's no configure script for it.
8992
8993 2002-04-15 Mark Mitchell <mark@codesourcery.com>
8994
8995 * MAINTAINERS: Remove chill maintainers.
8996 * Makefile.in (CHILLFLAGS): Remove.
8997 (CHILL_LIB): Remove.
8998 (TARGET_CONFIGDIRS): Remove libchill.
8999 (CHILL_FOR_TARGET): Remove.
9000 (BASE_FLAGS_TO_PASS): Don't pass CHILLFLAGS, CHILL_FOR_TARGET, or
9001 CHILL_LIB.
9002 (CONFIGURE_TARGET_MODULES): Remove configure-target-libchill.
9003 (CHECK_TARGET_MODULES): Likewise.
9004 (INSTALL_TARGET_MODULES): Likewise.
9005 (CLEAN_TARGET_MODULES): Likewise.
9006 (configure-target-libchill): Remove.
9007 (all-target-libchill): Remove.
9008 * configure.in (target_libs): Remove target-libchill.
9009 Do not compute CHILL_FOR_TARGET.
9010 * libchill: Remove directory.
9011
9012 2002-04-15 DJ Delorie <dj@redhat.com>
9013
9014 * Makefile.in, configure.in, configure: Sync with gcc, entries
9015 follow...
9016
9017 2002-04-08 Tom Tromey <tromey@redhat.com>
9018
9019 * configure.in: Add FLAGS_FOR_TARGET to GCJ_FOR_TARGET.
9020 Fixes PR libgcj/6068.
9021
9022 2002-03-30 Krister Walfridsson <cato@df.lth.se>
9023
9024 * configure.in (i*86-*-netbsdelf*): Don't disable libgcj.
9025
9026 2002-03-27 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
9027
9028 * configure.in (alpha*-dec-osf*): Enable libgcj.
9029
9030 2002-03-24 Nick Clifton <nickc@cambridge.redhat.com>
9031
9032 Fix for: PR bootstrap/3591, target/5676
9033 * configure.in (mcore-pe): Disable the configuration of
9034 libstdc++-v3 since exceptions are not supported.
9035
9036 2002-03-20 Anthony Green <green@redhat.com>
9037
9038 * configure.in: Enable libgcj for xscale-elf target.
9039
9040 2002-02-28 Alexandre Oliva <aoliva@redhat.com>
9041
9042 * configure.in (libstdcxx_flags): Don't add libstdc++-v3 flags for
9043 libjava.
9044 (CXX_FOR_TARGET): Explain why -shared-libgcc here.
9045
9046 2002-02-22 Alexandre Oliva <aoliva@redhat.com>
9047
9048 * configure.in (CXX_FOR_TARGET): Add -shared-libgcc for
9049 libstdc++-v3 and libjava.
9050
9051 2002-02-11 Adam Megacz <adam@xwt.org>
9052
9053 * gcc/Makefile.in: Removed libstdc++-v3 dependancy for libjava and
9054 boehm-gc
9055
9056 2002-02-09 Alexandre Oliva <aoliva@redhat.com>
9057
9058 * config.guess: Updated to 2002-01-30's version.
9059 * config.sub: Updated to 2002-02-01's version.
9060 Contribute sh64-elf.
9061 2000-12-01 Alexandre Oliva <aoliva@redhat.com>
9062 * configure.in: Added sh64-*-*.
9063
9064 2002-01-17 H.J. Lu <hjl@gnu.org>
9065
9066 * Makefile.in (all-fastjar): Also depend on all-libiberty.
9067 (all-target-fastjar): Also depend on all-target-libiberty.
9068
9069 Wed Dec 5 07:33:45 2001 Douglas B. Rupp <rupp@gnat.com>
9070
9071 * configure, configure.in: Use temp file for long sed commands.
9072
9073 2001-11-14 Hans-Peter Nilsson <hp@bitrange.com>
9074
9075 * configure.in (noconfigdirs) [h8300*-*-*, h8500-*-*]: Disable
9076 libf2c.
9077
9078 2001-11-03 Hans-Peter Nilsson <hp@bitrange.com>
9079
9080 * configure.in (noconfigdirs) [mmix-*-*]: Disable libgcj.
9081
9082 2001-10-11 Hans-Peter Nilsson <hp@axis.com>
9083
9084 * configure.in (noconfigdirs) [cris-*-*]: Disable libgcj.
9085
9086 2001-10-02 Joseph S. Myers <jsm28@cam.ac.uk>
9087
9088 * configure: Handle temporary files securely using mkdir.
9089
9090 2001-09-26 Will Cohen <wcohen@redhat.com>
9091
9092 * configure.in (*-*-linux*): Disable configuration of target-newlib
9093 and target-libgloss.
9094
9095 2001-09-26 Alexandre Oliva <aoliva@redhat.com>
9096
9097 * Makefile.in (EXTRA_TARGET_FLAGS): Pass RANLIB_FOR_TARGET for
9098 RANLIB.
9099
9100 2001-08-11 Graham Stott <grahams@redhat.com>
9101
9102 * Makefile.in (check-c++): Add missing semicolon.
9103
9104 2001-07-25 Andrew Haley <aph@cambridge.redhat.com>
9105
9106 * configure.in (sh-*-linux*): New.
9107
9108 2001-07-12 Stephane Carrez <Stephane.Carrez@worldnet.fr>
9109
9110 * configure.in (noconfigdirs): Don't compile libiberty, libstdcxx
9111 and libgcj on m68hc11/m68hc12.
9112
9113 2001-06-27 H.J. Lu (hjl@gnu.org)
9114
9115 * Makefile (CFLAGS_FOR_BUILD): New.
9116 (EXTRA_GCC_FLAGS): Add CFLAGS_FOR_BUILD.
9117
9118 2001-06-01 Hans-Peter Nilsson <hp@axis.com>
9119
9120 * configure.in (libstdcxx_flags): Do not try to execute
9121 libstdc++-v3/testsuite_flags until it exists.
9122
9123 2001-05-18 Benjamin Kosnik <bkoz@redhat.com>
9124
9125 * configure.in (libstdcxx_flags): Remove reference to libstdc++.INC.
9126
9127 2001-05-09 Jeffrey Oldham <oldham@codesourcery.com>
9128
9129 * ltcf-cxx.sh: Add -nostdlib to IRIX 6 archive_cmds.
9130
9131 Mon Apr 23 09:15:03 2001 Anthony Green <green@redhat.com>
9132
9133 * configure.in: Move *-chorusos target case to the proper switch.
9134 Disable libgcj.
9135
9136 2001-04-13 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
9137
9138 * Makefile.in (STAGE1_CFLAGS): Pass down.
9139
9140 2001-04-13 Alan Modra <amodra@one.net.au>
9141
9142 * config.guess: Add hppa64-linux support. Note for next import that
9143 this is already in the master file.
9144 * configure.in: Likewise. Accept `parisc' alias for `hppa'.
9145
9146 2001-03-22 Colin Howell <chowell@redhat.com>
9147
9148 * Makefile.in (DO_X): Do not backslash single-quotes in
9149 backquotes (two places).
9150
9151 2001-03-18 Laurynas Biveinis <lauras@softhome.net>
9152
9153 * Makefile.in (DO_X): Quote nested quotes.
9154
9155 2001-03-15 Laurynas Biveinis <lauras@softhome.net>
9156
9157 * Makefile.in (DO_X): Use double quotes for quoting
9158 "RANLIB=$${RANLIB}".
9159
9160 2001-03-09 Nicola Pero <n.pero@mi.flashnet.it>
9161
9162 * configure.in: Only use `lang_requires' for languages athat are
9163 actually enabled.
9164
9165 2001-03-07 Tom Tromey <tromey@redhat.com>
9166
9167 * configure.in: Allow config-lang.in to set `lang_requires' to list
9168 of other required languages.
9169
9170 2001-03-06 Laurynas Biveinis <lauras@softhome.net>
9171
9172 * Makefile.in: Remove RANLIB definition. Use RANLIB
9173 in RANLIB_FOR_TARGET, EXTRA_HOST_FLAGS, EXTRA_TARGET_FLAGS,
9174 EXTRA_GCC_FLAGS, $(DO_X) targets only when the RANLIB is set.
9175
9176 2001-02-28 Benjamin Kosnik <bkoz@redhat.com>
9177 Alexandre Oliva <aoliva@redhat.com>
9178
9179 * Makefile.in (check-c++): Use tabs, not spaces.
9180
9181 2001-02-19 Benjamin Kosnik <bkoz@redhat.com>
9182
9183 * Makefile.in (check-c++): New rule.
9184
9185 * configure.in (target_libs): Remove libg++.
9186 (noconfigdirs): Remove libg++.
9187 (noconfigdirs): Same.
9188 (noconfigdirs): Same.
9189 (noconfigdirs): Same.
9190
9191 * config-ml.in: Remove libg++ references.
9192
9193 * Makefile.in (TARGET_CONFIGDIRS): Remove libio, libstdc++, libg++.
9194 (ALL_TARGET_MODULES): Same.
9195 (configure-target-libg++): Remove.
9196 (all-target-libg++): Remove.
9197 (configure-target-libio): Remove.
9198 (all-target-libio): Remove.
9199 (check-target-libio): Remove.
9200 (.PHONY): Remove.
9201 (libg++.tar.bz2): Remove.
9202 (all-target-cygmon): Remove libio.
9203 (all-target-libstdc++): Remove.
9204 (configure-target-libstdc++): Remove.
9205 (TARGET_LIB_PATH): Remove libstdc++.
9206 (ALL_GCC_CXX): Remove libstdc++.
9207 (all-target-gperf): Correct.
9208
9209 2001-02-15 Anthony Green <green@redhat.com>
9210
9211 * configure: Introduce GCJ_FOR_TARGET.
9212 * configure.in: Ditto.
9213 * Makefile.in: Ditto.
9214
9215 2001-02-08 Chandrakala Chavva <cchavva@redhat.com>
9216
9217 * configure.in: for *-chorusos, don't config target-newlib and
9218 target-libgloss.
9219
9220 2001-02-04 Mark Mitchell <mark@codesourcery.com>
9221
9222 Remove V2 C++ library.
9223 * configure.in: Remove --enable-libstdcxx_v3 support.
9224
9225 2001-01-27 Richard Henderson <rth@redhat.com>
9226
9227 * configure.in (target_makefile_frag) [alpha*-*]: Use mt-alphaieee.
9228
9229 2001-01-26 Tom Tromey <tromey@redhat.com>
9230
9231 * configure.in: Allow libgcj to be built on Sparc Solaris.
9232
9233 2001-01-23 Bryce McKinlay <bryce@albatross.co.nz>
9234
9235 * configure.in: Enable libgcj on several additional platforms.
9236
9237 2001-01-22 Bryce McKinlay <bryce@albatross.co.nz>
9238
9239 * configure.in: Enable libgcj for linux targets.
9240
9241 2001-01-09 Mike Stump <mrs@wrs.com>
9242
9243 * Makefile.in (CONFIGURE_TARGET_MODULES): Pass back configuration
9244 failures of subdirectories.
9245
9246 2001-01-02 Laurynas Biveinis <lauras@softhome.net>
9247
9248 * configure: handle DOS-style absolute paths.
9249
9250 2001-01-02 Laurynas Biveinis <lauras@softhome.net>
9251
9252 * configure.in: remove supported directories from $noconfigdirs for DJGPP.
9253
9254 2000-12-18 Benjamin Kosnik <bkoz@redhat.com>
9255
9256 * Makefile.in (BASE_FLAGS_TO_PASS): Alphabetize.
9257 (libstdcxx_incdir): Pass down.
9258 * config.if: Remove expired bits for cxx_interface, add stub.
9259 (libstdcxx_incdir): Add variable for g++ include directory.
9260 * configure.in (gxx_include_dir): Use it.
9261
9262 2000-12-15 Andreas Jaeger <aj@suse.de>
9263
9264 * configure.in: Handle lang_dirs.
9265
9266 2000-12-13 Anthony Green <green@redhat.com>
9267
9268 * configure.in: Disable libgcj for any target not specifically
9269 listed. Disable libgcj for x86 and Alpha Linux until compatible
9270 with g++ abi.
9271
9272 2000-12-13 Mike Stump <mrs@wrs.com>
9273
9274 * Makefile.in (local-distclean): Also remove fastjar.
9275
9276 2000-12-10 Anthony Green <green@redhat.com>
9277
9278 * configure.in: Define libgcj. Disable libgcj target libraries for
9279 most targets.
9280
9281 2000-12-09 Alexandre Petit-Bianco <apbianco@cygnus.com>
9282
9283 * configure.in (target_libs): Revert 2000-12-08 patch.
9284 (noconfigdirs): Added target-libjava.
9285
9286 2000-12-09 Laurynas Biveinis <lauras@softhome.net>
9287
9288 * Makefile.in: handle DOS-style absolute paths.
9289
9290 2000-12-08 Alexandre Petit-Bianco <apbianco@cygnus.com>
9291
9292 * Makefile.in (TARGET_CONFIGDIRS): Wrong place. Removed note about
9293 libjava.
9294 * configure.in (target_libs): Removed `target-libjava'.
9295
9296 2000-12-08 Alexandre Petit-Bianco <apbianco@cygnus.com>
9297
9298 * Makefile.in (TARGET_CONFIGDIRS): Added note about libjava.
9299 (ALL_MODULES): Added fastjar.
9300 (NATIVE_CHECK_MODULES, INSTALL_MODULES, CLEAN_MODULES): Likewise.
9301 (all-target-libjava): all-fastjar replaces all-zip.
9302 (all-fastjar): Added.
9303 (configure-target-fastjar, all-target-fastjar): Likewise.
9304 * configure.in (host_tools): Added fastjar.
9305
9306 2000-12-07 Mike Stump <mrs@wrs.com>
9307
9308 * Makefile.in (local-distclean): Remove leftover built files.
9309
9310 2000-11-16 Fred Fish <fnf@be.com>
9311
9312 * configure.in (enable_libstdcxx_v3): Fix typo,
9313 libstd++ -> libstdc++.
9314
9315 2000-11-13 Joseph S. Myers <jsm28@cam.ac.uk>
9316
9317 * configure: Provide the original toplevel configure arguments
9318 (including $0) to subprocesses in the environment rather than
9319 through gcc/configargs.h.
9320
9321 2000-11-12 Mark Mitchell <mark@codesourcery.com>
9322
9323 * configure: Turn on libstdc++ V3 by default.
9324
9325 2000-10-16 Michael Meissner <meissner@redhat.com>
9326
9327 * configure (gcc/configargs.h): Only create if there is a build GCC
9328 directory created.
9329
9330 2000-10-05 Phil Edwards <pme@gcc.gnu.org>
9331
9332 * configure: Save configure arguments to gcc/configargs.h.
9333
9334 2000-10-04 Andris Pavenis <pavenis@latnet.lv>
9335
9336 * Makefile.in (bootstrap): avoid recursion if subdir missing
9337 (cross): ditto
9338 (do-proto-toplev): ditto
9339
9340 Wed Sep 13 11:11:29 2000 Jeffrey A Law (law@cygnus.com)
9341
9342 * configure.in: Do not build byacc for hppa64. Provide paths to the
9343 X11 libraries for hppa64.
9344
9345 2000-09-02 Anthony Green <green@cygnus.com>
9346
9347 * Makefile.in (all-gcc): Depend on all-zlib.
9348 (CLEAN_MODULES): Add clean-zlib.
9349 (ALL_MODULES): Add all-zlib.
9350 * configure.in (host_libs): Add zlib.
9351
9352 2000-08-25 Alexandre Oliva <aoliva@redhat.com>
9353
9354 * configure.in (FLAGS_FOR_TARGET): Use $target_configdirs and
9355 $targargs to tell whether newlib is going to be built.
9356
9357 * configure.in [disable-libstdcxx-v3] (libstdcxx_flags): Search
9358 $$r/TARGET_SUBDIR/libio for _G_config.h.
9359
9360 2000-08-14 Zack Weinberg <zack@wolery.cumb.org>
9361
9362 * configure.in (libstdcxx_flags): Remove -isystem $$s/libio/stdio.
9363
9364 * configure: Make enable_threads and enable_shared defaults
9365 explicit. Substitute enable_threads into generated Makefiles.
9366 * configure.in: Accept *-*-linux* not just *-*-linux-gnu*.
9367 * libtool.m4: Accept *-*-linux* not just *-*-linux-gnu*.
9368
9369 2000-08-02 Manfred Hollstein <manfredh@redhat.com>
9370
9371 * configure.in: Re-enable all references to libg++ and librx.
9372
9373 2002-04-09 Loren James Rittle <rittle@labs.mot.com>
9374
9375 * configure.in: Add *-*-freebsd* configurations.
9376
9377 2002-04-07 Andrew Cagney <ac131313@redhat.com>
9378
9379 * Makefile.in (do-tar-bz2): Delete rule. Replace with ...
9380 (do-tar, do-bz2): New rules.
9381 (taz): Update. Replace do-tar-bz2 with do-tar and do-bz2.
9382 (gdb-tar): New rule.
9383 (gdb-taz): Rewrite. Use gdb-tar and do-bz2.
9384 (insight_dejagnu.tar): New rule.
9385 (insight.tar): New rule.
9386 (gdb+dejagnu.tar): New rule.
9387 (gdb.tar): New rule.
9388
9389 2002-04-07 Andrew Cagney <ac131313@redhat.com>
9390
9391 * MAINTAINERS: Update dejagnu/
9392
9393 2002-03-16 Alexandre Oliva <aoliva@redhat.com>
9394
9395 * ltmain.sh (relink_command): Fix typo in previous change.
9396
9397 2002-03-15 Alexandre Oliva <aoliva@redhat.com>
9398
9399 * ltmain.sh (taglist): Initialized. Don't let `CC' tag out of it.
9400 (relink_command): Added --tag flags.
9401 (mode=install): If relinking fails; error out.
9402
9403 2002-03-12 Richard Henderson <rth@redhat.com>
9404
9405 * Makefile.in (NOTPARALLEL): New. Use it instead of explicit
9406 .NOTPARALLEL tag.
9407 (do-check): Rename from check.
9408 (check): Allow parallel check.
9409
9410 2002-03-11 Richard Henderson <rth@redhat.com>
9411
9412 * Makefile.in (.NOTPARALLEL): Add fake tag.
9413
9414 2002-03-07 H.J. Lu (hjl@gnu.org)
9415
9416 * configure.in: Enable gprof for mips*-*-linux*.
9417
9418 2002-02-28 Alexandre Oliva <aoliva@redhat.com>
9419
9420 * configure.in (libstdcxx_flags): Don't add libstdc++-v3 flags for
9421 libjava.
9422 (CXX_FOR_TARGET): Add -shared-libgcc for libstdc++-v3 and libjava.
9423
9424 2002-02-24 Andrew Cagney <ac131313@redhat.com>
9425
9426 * texinfo/texinfo.tex: Update to version 2002-02-14.08.
9427
9428 2002-02-23 Daniel Jacobowitz <drow@mvista.com>
9429
9430 * config.guess: Import from master sources, rev 1.232.
9431 * config.sub: Import from master sources, rev 1.246.
9432
9433 2002-02-23 Alexandre Oliva <aoliva@redhat.com>
9434
9435 * Makefile.in (MAKEINFO): Don't assume makeinfo will be built just
9436 because its Makefile is there; test for the executable instead.
9437
9438 2002-02-09 Alexandre Oliva <aoliva@redhat.com>
9439
9440 Contribute sh64-elf.
9441 2000-12-01 Alexandre Oliva <aoliva@redhat.com>
9442 * configure.in: Added sh64-*-*.
9443
9444 2002-02-04 Jeff Johnston <jjohnstn@redhat.com>
9445
9446 * COPYING.NEWLIB: Remove advertising clause from
9447 Berkeley and Red Hat licenses.
9448
9449 2002-02-01 Mo DeJong <supermo@bayarea.net>
9450
9451 * Makefile.in: Add all-tix to deps for all-snavigator
9452 so that tix is built when building snavigator.
9453
9454 2002-02-01 Ben Elliston <bje@redhat.com>
9455
9456 * config.guess: Import from master sources, rev 1.229.
9457 * config.sub: Import from master sources, rev 1.240.
9458
9459 2002-01-27 Daniel Jacobowitz <drow@mvista.com>
9460
9461 From Steve Ellcey <sje@cup.hp.com>:
9462 * libtool.m4 (HPUX_IA64_MODE): Set to 32 or 64 based on ABI.
9463 (lt_cv_deplibs_check_method, lt_cv_file_magic_cmd,
9464 lt_cv_file_magic_test_file): Set to appropriate values for HP-UX
9465 IA64.
9466 * ltcf-c.sh (archive_cmds, hardcode_*): Ditto.
9467 * ltconfig (shlibpath_*, dynamic_linker, library_names_spec,
9468 soname_spec, sys_lib_search_path_spec): Ditto.
9469
9470 2002-01-26 Jason Thorpe <thorpej@wasabisystems.com>
9471
9472 * configure.in (*-*-netbsd*): New. Skip target-newlib,
9473 target-libiberty, and target-libgloss. Skip Java-related
9474 libraries if not supported for NetBSD on target CPU.
9475
9476 2002-01-23 Nick Clifton <nickc@cambridge.redhat.com>
9477
9478 * configure.in: Import StrongARM and XScale target_configdirs from
9479 FSF GCC version.
9480
9481 2002-01-16 H.J. Lu (hjl@gnu.org)
9482
9483 * config.guess: Import from master sources, rev 1.225.
9484 * config.sub: Import from master sources, rev 1.238.
9485
9486 * MAINTAINERS: Updated notes on config.guess and config.sub.
9487
9488 2002-01-11 Steve Ellcey <sje@cup.hp.com>
9489
9490 * configure.in (ia64*-*-hpux*): New target for IA64 HP-UX,
9491 ld and gdb are not supported.
9492
9493 2002-01-07 Jeff Johnston <jjohnstn@redhat.com>
9494
9495 * Change reference to Cygnus Solutions to be Red Hat.
9496
9497 2002-01-07 Jeff Johnston <jjohnstn@redhat.com>
9498
9499 * COPYING.NEWLIB: Update generic copyright date.
9500
9501 2002-01-07 Mark Salter <msalter@redhat.com>
9502
9503 * configure.in: Remove target-bsp and target-cygmon from arm builds.
9504 Allow target-libgloss to be built for arm, strongarm, and xscale.
9505
9506 2002-01-03 Ben Elliston <bje@redhat.com>
9507
9508 * MAINTAINERS: Update URL for config.* scripts.
9509
9510 2001-12-18 Alan Modra <amodra@bigpond.net.au>
9511
9512 * config.sub: Import latest version.
9513 * config.guess: Likewise.
9514
9515 2001-12-13 Thomas Fitzsimmons <fitzsim@redhat.com>
9516
9517 * configure.in (FLAGS_FOR_TARGET): Remove -nostdinc and -isystem
9518 options for i[3456]86-pc-linux* native builds.
9519
9520 2001-12-05 Laurent Guerby <guerby@acm.org>
9521
9522 * MAINTAINERS: gcc adopts symlink-tree, refer more to
9523 libiberty.
9524
9525 Import this patch from gcc:
9526
9527 2000-12-09 Laurynas Biveinis <lauras@softhome.net>
9528
9529 * symlink-tree: handle DOS-style absolute paths.
9530
9531 2001-11-28 DJ Delorie <dj@redhat.com>
9532 Zack Weinberg <zack@codesourcery.com>
9533
9534 When build != host, create libiberty for the build machine.
9535
9536 * Makefile.in (TARGET_CONFIGARGS, BUILD_CONFIGARGS): Replace
9537 CONFIG_ARGUMENTS.
9538 (ALL_BUILD_MODULES_LIST, BUILD_CONFIGDIRS, BUILD_SUBDIR):
9539 New variables.
9540 (ALL_BUILD_MODULES, CONFIGURE_BUILD_MODULES): New variables
9541 and rules.
9542 (all.normal): Depend on ALL_BUILD_MODULES.
9543 (CONFIGURE_TARGET_MODULES rule): Use TARGET_CONFIGARGS.
9544 (all-build-libiberty): Depend on configure-build-libiberty.
9545
9546 * configure: Calculate and substitute proper value for
9547 ALL_BUILD_MODULES.
9548 * configure.in: Create the build subdirectory.
9549 Calculate and substitute TARGET_CONFIGARGS (formerly
9550 CONFIG_ARGUMENTS); also BUILD_SUBDIR and BUILD_CONFIGARGS (new).
9551
9552 2001-11-26 Geoffrey Keating <geoffk@redhat.com>
9553
9554 * config.sub: Update to version 1.232 on subversion.
9555
9556 2001-11-20 Nick Clifton <nickc@cambridge.redhat.com>
9557
9558 * Makefile.in (do-proto-toplev): Use msgfmt to generate .gmo
9559 files from .po files for a distribution.
9560
9561 2001-11-19 Hans-Peter Nilsson <hp@bitrange.com>
9562
9563 * COPYING.NEWLIB: Mention preserved notice in specific parts.
9564
9565 2001-11-13 Jeff Holcomb <jeffh@redhat.com>
9566
9567 Merged from net gcc:
9568 2001-07-30 Jeff Sturm <jsturm@one-pont.com>
9569 * ltcf-c.sh: Use $objext, not $ac_objext.
9570 2001-07-27 Mark Kettenis <kettenis@gnu.org>
9571 * ltcf-cxx.sh: Add support for GNU.
9572 2001-07-22 Timothy Wall <twall@redhat.com>
9573 * ltcf-c.sh: Don't disable shared libraries for AIX5/IA64. Preserve
9574 default settings if using GNU tools with that configuration.
9575 * ltcf-cxx.sh: Ditto.
9576 * ltcf-gcj.sh: Ditto.
9577 2001-07-21 Michael Chastain <chastain@redhat.com>
9578 * ltconfig: Set max_cmd_len to a maximum of 512Kb, as it seems some
9579 HPUX 11.0 systems have trouble with 1MB. Mark as gcc-local.
9580 * ltmain.sh: Mark as gcc-local.
9581
9582 2001-11-13 Jeff Holcomb <jeffh@redhat.com>
9583
9584 * Makefile.in (all-bison): Revert 2001-10-24.
9585 Don't depend on texinfo.
9586
9587 2001-11-12 Hans-Peter Nilsson <hp@bitrange.com>
9588
9589 * COPYING.NEWLIB: Add BSD-style license/copyright blurb for my work.
9590
9591 2001-11-08 Phil Edwards <pedwards@disaster.jaj.com>
9592
9593 * configure.in (--enable-languages): Be more permissive about
9594 syntax. Check for empty lists better. Warn about $LANGUAGES.
9595
9596 2001-11-06 Hans-Peter Nilsson <hp@bitrange.com>
9597
9598 * Makefile.in (MAKEINFO): Use "missing" for makeinfo older than 4.0.
9599
9600 2001-10-24 Jeff Holcomb <jeffh@redhat.com>
9601
9602 Makefile.in (all-bison): Don't depend on texinfo.
9603
9604 2001-10-03 Alan Modra <amodra@bigpond.net.au>
9605
9606 * gettext.m4: Test po/POTFILES.in exists before trying to read.
9607
9608 2001-09-29 Alexandre Oliva <aoliva@redhat.com>
9609
9610 * Makefile.in (configure-target-gperf): Depend on $(ALL_GCC_CXX).
9611
9612 2001-09-28 Hans-Peter Nilsson <hp@axis.com>
9613
9614 * config.sub, config.guess: Import latest from subversions.
9615
9616 2001-09-21 Alexandre Oliva <aoliva@redhat.com>
9617
9618 * Makefile.in (AS_FOR_TARGET, LD_FOR_TARGET,
9619 DLLTOOL_FOR_TARGET, WINDRES_FOR_TARGET, AR_FOR_TARGET,
9620 RANLIB_FOR_TARGET, NM_FOR_TARGET): Don't use double quotes to
9621 avoid quotes nesting problems.
9622 (NATIVE_CHECK_MODULES): Ditto, just for consistency.
9623 (DO_X): Export only variables that are set.
9624
9625 2001-09-19 Ben Elliston <bje@redhat.com>
9626
9627 * configure.in (sparc-sun-solaris2*): Don't use /usr/bin/which on
9628 Solaris when testing for the /usr/ucb/cc compiler; it has incorrect
9629 semantics. Use the shell built-in "type" command instead.
9630
9631 2001-09-15 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
9632
9633 * config.sub: Reverted the earlier change, this version is not the
9634 master file.
9635
9636 2001-09-14 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
9637
9638 * config.sub: Change machine triplets from mipsel*-* to mips*el-*.
9639 Add support for mips64.
9640
9641 2001-09-03 Jeff Holcomb <jeffh@redhat.com>
9642
9643 * configure.in: Enable libstdc++-v3 for h8300 targets.
9644
9645 2001-08-30 Eric Christopher <echristo@redhat.com>
9646 Jason Eckhardt <jle@redhat.com>
9647
9648 * config.sub: Add support for mipsisa32.
9649
9650 2001-08-30 Eric Christopher <echristo@redhat.com>
9651
9652 * config.sub, config.guess: Import latest from subversions.
9653
9654 2001-08-20 Alan Modra <amodra@bigpond.net.au>
9655
9656 * config.sub, config.guess: Import latest from subversions.
9657
9658 2001-07-26 DJ Delorie <dj@redhat.com>
9659
9660 * MAINTAINERS: Clarify libiberty merge rules and procedures.
9661
9662 2001-06-19 Alan Modra <amodra@bigpond.net.au>
9663
9664 * Makefile.in: Revert 2001-06-17.
9665 (VER): If AM_INIT_AUTOMAKE uses BFD_VERSION, get version from bfd/.
9666
9667 2001-06-17 H.J. Lu <hjl@gnu.org>
9668
9669 * Makefile.in (gas.tar.bz2): Pass TOOL=bfd PACKAGE=gas to make.
9670 (gas+binutils.tar.bz2): Likewise.
9671 (binutils.tar.bz2): Pass TOOL=bfd PACKAGE=binutils to make.
9672
9673 Fri Jun 8 11:14:02 2001 Andrew Cagney <cagney@b1.cygnus.com>
9674
9675 * Makefile.in (VER): When present, extract the version number from
9676 the file version.in.
9677
9678 2001-06-08 Alexandre Oliva <aoliva@redhat.com>, Jeff Sturm <jsturm@one-point.com>
9679
9680 * Makefile.in (AS_FOR_TARGET, LD_FOR_TARGET, NM_FOR_TARGET): If
9681 gcc/xgcc is built, use -print-prog-name to find out the program
9682 name to use.
9683
9684 2001-06-04 Mark Mitchell <mark@codesourcery.com>
9685
9686 * ltcf-c.sh (archive_cmds, archive_expsym_cmds) [solaris,
9687 with_gcc]: Use `gcc -shared' to build a shared library.
9688
9689 2001-06-04 John David Anglin <dave@hiauly1.hia.nrc.ca>
9690
9691 * ltcf-c.sh (archive_cmd) [hpux, with_gcc]: Use gcc to link shared
9692 archives.
9693
9694 2001-05-28 Simon Patarin <simon.patarin@inria.fr>
9695
9696 * ltcf-cxx.sh (osf3/osf4/osf5): Support creation of C++ shared
9697 libraries when using g++ with native linker.
9698
9699 2001-05-28 Alexandre Oliva <aoliva@redhat.com>
9700
9701 * ltconfig, ltmain.sh: Upgrade to libtool 1.4a 1.641.2.256.
9702
9703 2001-05-24 Tom Rix <trix@redhat.com>
9704
9705 * configure.in : enable ld for aix
9706
9707 2001-05-22 Alexandre Oliva <aoliva@redhat.com>
9708
9709 * ltcf-cxx.sh (allow_undefined_flag, no_undefined_flag)
9710 [aix4*|aix5*]: Prepend blank.
9711
9712 2001-05-20 Alexandre Oliva <aoliva@redhat.com>
9713
9714 * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh, ltcf-cxx.sh,
9715 ltcf-gcj.sh: Upgraded to libtool 1.4a 1.641.2.254. Rebuilt a number
9716 of subdir/configure scripts to use the new libtool.m4.
9717
9718 2001-05-14 H.J. Lu <hjl@gnu.org>
9719
9720 * config.if (libc_interface): Set to -libc6.2- for cross
9721 compiling to Linux/glibc 2.2.
9722
9723 2001-05-03 Alexandre Oliva <aoliva@redhat.com>
9724
9725 * configure.in (noconfigdirs) [*-cygwin*, *-mingw*, *-beos]: Disable
9726 libgcj.
9727
9728 2001-04-26 Alexandre Oliva <aoliva@redhat.com>
9729
9730 * configure.in (noconfigdirs): Don't reset it from scratch in the
9731 target case; only append to it.
9732
9733 2001-04-26 Alexandre Oliva <aoliva@redhat.com>
9734
9735 * configure.in (noconfigdirs) [hppa*-*-*, mips*-*-irix6*,
9736 sparc-*-solaris2.8]: Disable ${libgcj}.
9737
9738 2001-04-25 Alexandre Oliva <aoliva@redhat.com>
9739
9740 * configure.in (libgcj_saved): Copy from $libgcj.
9741 (libgcj): Zero out if --enable-libgcj; add to noconfigdirs is
9742 --disable-libgcj.
9743
9744 2001-04-20 Alexandre Oliva <aoliva@redhat.com>
9745
9746 * ltconfig, ltmain.sh, ltcf-cxx.sh: Upgraded to libtool 1.4a
9747 1.641.2.228.
9748
9749 2001-04-12 Alexandre Oliva <aoliva@redhat.com>
9750
9751 * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh, ltcf-cxx.sh,
9752 ltcf-gcj.sh: Upgraded to libtool 1.4a 1.641.2.226.
9753
9754 2001-04-01 Alexandre Oliva <aoliva@redhat.com>
9755
9756 * Makefile.in (CXX_FOR_TARGET_FOR_RECURSIVE_MAKE, RECURSE_FLAGS):
9757 New macros.
9758 (bootstrap, cross): Use RECURSE_FLAGS.
9759 * configure.in: Subst CXX_FOR_TARGET_FOR_RECURSIVE_MAKE.
9760
9761 2001-03-27 Alexandre Oliva <aoliva@redhat.com>
9762
9763 * configure.in (CXX_FOR_TARGET): Use xgcc for libstdc++-v3.
9764
9765 2001-03-23 Nick Clifton <nickc@redhat.com>
9766
9767 * README-maintainer-mode: Add note about inability to use "make
9768 distclean" in maintainer mode.
9769
9770 2001-03-22 Alexandre Oliva <aoliva@redhat.com>
9771
9772 Re-installed:
9773 2001-01-02 Laurynas Biveinis <lauras@softhome.net>
9774 * ltcf-c.sh: Clear ac_cv_prog_cc_pic for DJGPP. Do not add
9775 '-DPIC' to ac_cv_prog_cc_pic for DJGPP.
9776 * ltcf-cxx.sh: Likewise.
9777 * ltcf-gcj.sh: Likewise.
9778
9779 2001-03-22 Philip Blundell <philb@gnu.org>
9780
9781 * config.sub, config.guess: Import latest from subversions.
9782
9783 2001-03-22 Alexandre Oliva <aoliva@redhat.com>
9784
9785 * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh, ltcf-cxx.sh,
9786 ltcf-gcj.sh: Upgraded to libtool 1.4a 1.641.2.198.
9787
9788 2001-03-20 Michael Chastain <chastain@redhat.com>
9789
9790 * Makefile.in: all-m4 depends on all-texinfo.
9791
9792 2001-03-08 Alexandre Oliva <aoliva@redhat.com>
9793
9794 * Makefile.in (ALL_GCC, ALL_GCC_C, ALL_GCC_CXX): Set before use.
9795
9796 2001-02-22 Jeff Johnston <jjohnstn@redhat.com>
9797
9798 * COPYING.NEWLIB: Remove DJ Delorie's address because it is no
9799 longer valid.
9800
9801 2001-02-16 Nick Clifton <nickc@redhat.com>
9802
9803 * configure.in (noconfigdirs): Allow configuration of texinfo
9804 for Cygwin hosts.
9805
9806 2001-02-09 Martin Schwidefsky <schwidefsky@de.ibm.com>
9807
9808 * config.guess: Add linux target for S/390.
9809 * config.sub: Likewise.
9810 * configure.in: Likewise.
9811
9812 2001-02-06 Ben Elliston <bje@redhat.com>
9813
9814 * configure: Output host type to stdout, not stderr.
9815
9816 2001-02-04 Michael Sokolov <msokolov@ivan.Harhan.ORG>
9817
9818 * config.guess: Import from subversions.gnu.org (revision 1.181).
9819 * config.sub: Import from subversions.gnu.org (revision 1.199).
9820
9821 2001-01-30 Alan Modra <alan@linuxcare.com.au>
9822
9823 * config.guess: Handle hppa64-linux systems.
9824
9825 2001-01-27 Michael Sokolov <msokolov@ivan.Harhan.ORG>
9826
9827 * ltcf-cxx.sh (ac_cv_prog_cc_pic_works, ac_cv_prog_cc_static_works):
9828 Don't unset, it's non-portable and no longer necessary, set to empty
9829 instead.
9830
9831 2001-01-27 Michael Sokolov <msokolov@ivan.Harhan.ORG>, Alexandre Oliva <oliva@lsd.ic.unicamp.br>
9832
9833 * ltconfig: Shell portability fix for the tagname validity check.
9834
9835 2001-01-27 Michael Sokolov <msokolov@ivan.Harhan.ORG>
9836
9837 * ltcf-cxx.sh: Use parentheses around eval $ac_compile.
9838
9839 2001-01-27 Alexandre Oliva <aoliva@redhat.com>
9840
9841 * ltcf-c.sh (ld_shlibs) [aix5*]: Disable on unknown CPU types.
9842 * ltcf-cxx.sh, ltcf-gcj.sh: Likewise.
9843
9844 2001-01-24 Alexandre Oliva <aoliva@redhat.com>
9845
9846 * ltmain.sh (TAG disable-shared, TAG disable-static): Make sure we
9847 keep at least one of build_libtool_libs or build_old_libs set to
9848 yes.
9849
9850 2001-01-24 Alexandre Oliva <aoliva@redhat.com>
9851
9852 * ltcf-gcj.sh (lt_simple_link_test_code): Remove stray `(0)'.
9853 * libtool.m4 (_AC_LIBTOOL_GCJ): Pass $CPPFLAGS on.
9854
9855 2000-11-07 Philip Blundell <pb@futuretv.com>
9856
9857 * Makefile.in (ETC_SUPPORT): Also add configbuild.* and configdev.*.
9858
9859 2000-11-03 Philip Blundell <pb@futuretv.com>
9860
9861 * Makefile.in (ETC_SUPPORT): Add configure.texi and associated info
9862 files.
9863
9864 2001-01-15 Jeff Johnston <jjohnstn@redhat.com>
9865
9866 * COPYING.NEWLIB: Put into source repository.
9867
9868 2001-01-15 Ben Elliston <bje@redhat.com>
9869
9870 * configure.in (host_tools): Add sid.
9871 Always configure cgen.
9872 * Makefile.in (all-sid): New target.
9873 (check-sid, clean-sid, install-sid): Likewise.
9874
9875 2001-01-07 Andreas Jaeger <aj@suse.de>
9876
9877 * config.sub, config.guess: Update from subversions.
9878
9879 2000-12-12 Alexandre Oliva <aoliva@redhat.com>
9880
9881 * configure.in: Disable language-specific target libraries for
9882 languages that aren't enabled.
9883
9884 2000-11-24 Nick Clifton <nickc@redhat.com>
9885
9886 * configure.in (xscale-elf): Add target.
9887 (xscale-coff): Add target.
9888 (c4x, c5x, tic54x): Move after ARM targets.
9889
9890 2000-11-23 Alexandre Oliva <aoliva@redhat.com>
9891
9892 * ltcf-gcj.sh: Added file, required by 2000-11-18 merge.
9893
9894 2000-11-20 Ian Lance Taylor <ian@zembu.com>
9895
9896 * ltcf-cxx.sh: Added file, required by 2000-11-18 merge.
9897
9898 2000-11-18 Alexandre Oliva <aoliva@redhat.com>
9899
9900 * Makefile.in: Merge with GCC and libgcj.
9901 (ALL_GCC_C, ALL_GCC_CXX): New macros. Use them as dependencies of
9902 configure-target-<library> when their configure scripts need the C
9903 or C++ library to have already been built to work properly.
9904 (do_proto_toplev): Set them to an empty string.
9905
9906 2000-11-18 Alexandre Oliva <aoliva@redhat.com>
9907
9908 * Makefile.in (HOST_LIB_PATH, TARGET_LIB_PATH): New macros.
9909 (REALLY_SET_LIB_PATH): Use them.
9910
9911 2000-11-06 Christopher Faylor <cgf@cygnus.com>
9912
9913 * config.sub: Add support for Sun Chorus
9914
9915 2000-11-02 Per Lundberg <plundis@chaosdev.org>
9916
9917 * config.sub: Add support for the *-storm-chaos OS.
9918
9919 2000-10-30 Stephane Carrez <stcarrez@worldnet.fr>
9920
9921 * configure.in (noconfigdirs): Don't compile some
9922 of the libraries for 68HC11 & 68hc12 targets.
9923
9924 2000-09-30 Alexandre Oliva <aoliva@redhat.com>
9925
9926 * ltconfig, ltmain.sh, libtool.m4: Updated from libtool
9927 multi-language branch, to work around Solaris' /bin/sh bug. Rebuilt
9928 all affected `configure' scripts.
9929
9930 2000-09-25 Alexandre Oliva <aoliva@redhat.com>
9931
9932 * Makefile.in (DEVO_SUPPORT): Added gettext.m4, libtool.m4 and
9933 ltcf-c.sh.
9934
9935 2000-09-12 Philip Blundell <philb@gnu.org>
9936
9937 * config.sub, config.guess: Update from subversions.
9938
9939 2000-09-06 Alexandre Oliva <aoliva@redhat.com>
9940
9941 * Makefile.in (all-zlib): Added dummy target.
9942
9943 * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh: Updated from libtool
9944 multi-language branch.
9945
9946 2000-09-05 Alexandre Oliva <aoliva@redhat.com>
9947
9948 * Makefile.in (all-bootstrap): Added all-texinfo and all-zlib.
9949 (bootstrap*): Depend on all-bootstrap.
9950
9951 2000-09-02 Alexandre Oliva <aoliva@redhat.com>, DJ Delorie <dj@redhat.com>
9952
9953 * configure.in (FLAGS_FOR_TARGET): Use -nostdinc even for Canadian
9954 crosses, but add gcc/include to the header search path for them.
9955
9956 2000-08-31 Alexandre Oliva <aoliva@redhat.com>
9957
9958 * ltconfig, ltmain.sh: Updated from libtool multi-language branch.
9959 * libtool.m4, ltcf-c.sh: Copied from libtool multi-language branch.
9960 * gettext.m4: New file, extracted from aclocal.m4.
9961
9962 2000-08-22 Alexandre Oliva <aoliva@redhat.com>
9963
9964 * config-ml.in (CC, CXX): Avoid trailing whitespace.
9965 (LD_LIBRARY_PATH, SHLIB_PATH): Adjust for multilibs and export to
9966 sub-configures.
9967
9968 2000-08-20 Doug Evans <dje@casey.transmeta.com>
9969
9970 * Makefile.in (ALL_MODULES): Add all-cgen.
9971 (CROSS_CHECK_MODULES,INSTALL_MODULES,CLEAN_MODULES): Similarily.
9972 (all-cgen): New target.
9973 (all-opcodes,all-sim): Depend on all-cgen.
9974 * configure.in (host_tools): Add cgen.
9975 Only configure cgen if --enable-cgen-maint.
9976
9977 2000-08-17 Alexandre Oliva <aoliva@redhat.com>
9978
9979 * config-ml.in (CC, CXX): Don't introduce a leading space.
9980
9981 2000-08-16 Alexandre Oliva <aoliva@redhat.com>
9982
9983 * configure.in (libstdcxx_flags): Use
9984 libstdc++-v3/src/libstdc++.INC.
9985
9986 2000-08-15 Alexandre Oliva <aoliva@redhat.com>
9987
9988 * configure.in (libstdcxx_flags): Use libstdc++-v3/src/INCLUDES.
9989
9990 2000-08-11 Jason Merrill <jason@redhat.com>
9991
9992 * configure.in (CC_FOR_TARGET, CHILL_FOR_TARGET,
9993 CXX_FOR_TARGET): Add -B$$r/gcc/ here.
9994 (FLAGS_FOR_TARGET): Not here.
9995 (CHILL_FOR_TARGET, CXX_FOR_TARGET): Don't check the list of languages.
9996
9997 2000-08-07 DJ Delorie <dj@redhat.com>
9998
9999 * configure.in (FLAGS_FOR_TARGET): invert test for xgcc, should mean
10000 "if we're also building gcc, and it's a gcc that will run on the
10001 build machine, we want to use its includes instead of the system's
10002 default includes".
10003
10004 2000-08-03 Alexandre Oliva <aoliva@redhat.com>
10005
10006 * configure.in (libstdcxx_flags): Don't use `"'.
10007
10008 * config-ml.in: Adjust multilib search paths to the
10009 appropriate multilib tree.
10010
10011 2000-08-02 Alexandre Oliva <aoliva@redhat.com>
10012
10013 * configure.in (CHILL_FOR_TARGET, CXX_FOR_TARGET): Convert blanks to
10014 commas in $LANGUAGES.
10015
10016 2000-08-01 Alexandre Oliva <aoliva@redhat.com>
10017
10018 * configure.in (qCXX_FOR_TARGET): Use echo instead of expr.
10019
10020 2000-07-31 Alexandre Oliva <aoliva@redhat.com>
10021
10022 * configure.in (qCXX_FOR_TARGET): Quote `&' characters in
10023 CXX_FOR_TARGET for sed.
10024
10025 2000-07-30 Alexandre Oliva <aoliva@redhat.com>
10026
10027 * configure.in (CC_FOR_TARGET, CHILL_FOR_TARGET, CXX_FOR_TARGET):
10028 Do not override if already set in the environment or in configure.
10029 Don't duplicate $(FLAGS_FOR_TARGET) if it already appears in them.
10030 (FLAGS_FOR_TARGET): Don't use host directories on Canadian crosses.
10031
10032 2000-07-27 Alexandre Oliva <aoliva@redhat.com>
10033
10034 * Makefile.in (FLAGS_FOR_TARGET): New macro.
10035 (GCC_FOR_TARGET): Use it.
10036 (CC_FOR_TARGET, CXX_FOR_TARGET, CHILL_FOR_TARGET): Now defined...
10037 * configure.in: ... here.
10038 (FLAGS_FOR_TARGET): Define. Add ld build dir to -L path.
10039 (libstdcxx_flags): Define and append to CXX_FOR_TARGET.
10040
10041 2000-07-24 Alexandre Oliva <aoliva@redhat.com>
10042
10043 * Makefile.in (configure-target-libf2c): Depend on $(ALL_GCC).
10044 (configure-target-libchill, configure-target-libobjc): Likewise.
10045
10046 * configure.in: Use the same cache file for all target libs.
10047 * config-ml.in: But different cache files per multilib variant.
10048
10049 2000-07-23 Michael Sokolov <msokolov@ivan.Harhan.ORG>
10050
10051 * configure (topsrcdir): Don't use dirname.
10052
10053 2000-07-20 Jason Merrill <jason@redhat.com>
10054
10055 * configure.in: Remove all references to libg++ and librx.
10056
10057 * configure, configure.in, Makefile.in: Unify gcc and binutils.
10058
10059 2000-07-20 Hans-Peter Nilsson <hp@axis.com>
10060
10061 * config.sub: Update to subversions version 2000-07-06.
10062
10063 2000-07-12 Andrew Haley <aph@cygnus.com>
10064
10065 * configure.in (host_makefile_frag): Use mh-ia64pic on IA-64 hosts.
10066 (target_makefile_frag): Use mt-ia64pic on IA-64 targets.
10067
10068 2000-07-07 Phil Edwards <pme@sourceware.cygnus.com>
10069
10070 * symlink-tree: Check number of arguments.
10071
10072 2000-06-06 Andrew Cagney <cagney@b1.cygnus.com>
10073
10074 * texinfo/texinfo.tex: Update to version 2000-05-28.15.
10075
10076 2000-07-05 Jim Wilson <wilson@cygnus.com>
10077
10078 * Makefile.in (CXX_FOR_TARGET): Add libstdc++ to the library
10079 search path for a g++ extracted from the build tree. This
10080 will allow link tests run by configure scripts in
10081 subdirectories to succeed.
10082
10083 2000-07-01 Koundinya K <kk@ddeorg.soft.net>
10084
10085 * ltconfig: Add support for mips-dde-sysv4.2MP
10086
10087 2000-06-28 Corinna Vinschen <vinschen@cygnus.com>
10088
10089 * ltconfig: Check for host_os beeing one of `cygwin', `mingw' or
10090 `os2'. Force ac_cv_exeext to be ".exe" in that case.
10091
10092 2000-06-19 Timothy Wall <twall@cygnus.com>
10093
10094 * configure.in (noconfigdirs): Set noconfigdirs for tic54x target.
10095 * config.sub: Add tic54x target.
10096
10097 2000-06-07 Phillip Thomas <pthomas@suse.de>
10098
10099 * README-maintainer-mode: New file: Contains notes on using
10100 --enable-maintainer-mode with binutils.
10101
10102 2000-05-29 Andrew Cagney <cagney@b1.cygnus.com>
10103
10104 * texinfo/texinfo.tex: Update. Version from makeinfo 4.0.
10105
10106 2000-05-30 Andrew Cagney <cagney@b1.cygnus.com>
10107
10108 * config.sub: Import CVS version 1.167 Tue May 30 09:00:07 2000.
10109 * config.guess: Import CVS version 1.148 Tue May 30 09:00:06 2000
10110
10111 20000-05-21 H.J. Lu (hjl@gnu.org)
10112
10113 * Makefile.in (CC_FOR_TARGET): Make sure as/ld in the gcc
10114 directory are used if they exist. Make sure
10115 $(build_tooldir)/include is searched for header files,
10116 $(build_tooldir)/lib/ for library files.
10117 (GCC_FOR_TARGET): Likewise.
10118 (CXX_FOR_TARGET): Likewise.
10119
10120 2000-05-18 Jeffrey A Law (law@cygnus.com)
10121
10122 * configure.in (hppa*64*-*-*): Do build ld for this configuration.
10123
10124 2000-05-17 Alexandre Oliva <aoliva@cygnus.com>
10125
10126 * Makefile.in (configure-target-libiberty): Depend on
10127 configure-target-newlib.
10128
10129 2000-05-16 Alexandre Oliva <aoliva@cygnus.com>
10130
10131 * configure.in, Makefile.in: Merge all libffi-related
10132 configury stuff from the libgcj tree.
10133
10134 2000-05-16 Andrew Cagney <cagney@b1.cygnus.com>
10135
10136 Thu Apr 27 11:01:48 2000 Andrew Cagney <cagney@b1.cygnus.com>:
10137 * Makefile.in (do-tar-bz2, do-md5sum): Skip CVS directories.
10138
10139 2000-05-16 Andrew Cagney <cagney@b1.cygnus.com>
10140
10141 Wed Apr 26 17:03:53 2000 Andrew Cagney <cagney@b1.cygnus.com>:
10142 * Makefile.in (do-djunpack): New target. Update djunpack.bat with
10143 current version information. Add to proto-toplev directory.
10144 (gdb-taz): Build do-djunpack.
10145
10146 2000-05-15 David Edelsohn <edelsohn@gnu.org>
10147
10148 * configure.in: Special case powerpc*-*-aix* target_makefile_frag.
10149
10150 2000-05-13 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
10151
10152 * ltmain.sh: Preserve in relink_command any environment
10153 variables that may affect the linker behavior.
10154
10155 2000-05-12 Jeffrey A Law (law@cygnus.com)
10156
10157 * config.sub (basic_machine): Recognize hppa64 as a valid cpu type.
10158
10159 2000-05-10 Jim Wilson <wilson@cygnus.com>
10160
10161 * configure.in (ia64*-*-elf*): Add gdb and friends to noconfigdirs.
10162
10163 2000-05-08 Eli Zaretskii <eliz@is.elta.co.il>
10164
10165 * djunpack.bat: Change the Sed script to replace @V@ in fnchange.lst
10166 with the version name.
10167
10168 2000-05-01 Benjamin Kosnik <bkoz@cygnus.com>
10169
10170 * config.if: Tweak.
10171
10172 2000-04-23 Eli Zaretskii <eliz@is.elta.co.il>
10173
10174 * djunpack.bat: New file.
10175
10176 2000-04-19 Andrew Cagney <cagney@b1.cygnus.com>
10177
10178 * Makefile.in (taz, gdb-taz, gas.tar.bz2, binutils.tar.bz2,
10179 gas+binutils.tar.bz2, libg++.tar.bz2, gnats.tar.bz2, gdb.tar.bz2,
10180 dejagnu.tar.bz2, gdb+dejagnu.tar.bz2, insight.tar.bz2,
10181 insight+dejagnu.tar.bz2, newlib.tar.bz2): Pass MD5PROG to sub-make.
10182
10183 2000-04-16 Dave Pitts <dpitts@cozx.com>
10184
10185 * config.sub (case $basic_machine): Change default for "ibm-*"
10186 to "openedition".
10187
10188 2000-04-12 Andrew Cagney <cagney@b1.cygnus.com>
10189
10190 * Makefile.in (gdb-taz): New target. GDB specific archive.
10191 (do-md5sum): New target.
10192 (MD5PROG): Define.
10193 (PACKAGE): Default to TOOL.
10194 (VER): Default to a shell script.
10195 (taz): Rewrite target. Move real work to do-proto-toplev. Include
10196 md5 checksum generation.
10197 (do-proto-toplev): New target. Create $(PACKAGE)-$(VER) link.
10198 (do-tar-bz2): Delete creation of $(PACKAGE)-$(VER) link.
10199 (gdb.tar.bz2, dejagnu.tar.bz2, gdb+dejagnu.tar.bz2,
10200 insight.tar.bz2): Use gdb-taz to create archive.
10201
10202 2000-04-07 Andrew Cagney <cagney@b1.cygnus.com>
10203
10204 * configure (warn_cflags): Delete.
10205
10206 2000-04-05 Benjamin Kosnik <bkoz@cygnus.com>
10207 Martin v. Loewis <martin@loewis.home.cs.tu-berlin.de>
10208
10209 * configure.in (enable_libstdcxx_v3): Add.
10210 (target_libs): Add bits here to switch between libstdc++-v2 and
10211 libstdc++-v3.
10212 * config.if: And this file too.
10213 * Makefile.in: Add libstdc++-v3 targets.
10214
10215 2000-04-05 Michael Meissner <meissner@redhat.com>
10216
10217 * config.sub (d30v): Add d30v as a basic machine type.
10218
10219 2000-03-29 Jason Merrill <jason@casey.cygnus.com>
10220
10221 * configure.in: -linux-gnu*, not -linux-gnu.
10222
10223 2000-03-03 Andrew Cagney <cagney@b1.cygnus.com>
10224
10225 * Makefile.in (taz): Set PACKAGE to TOOL when not defined.
10226 (do-tar-bz2): Replace TOOL with PACKAGE.
10227 (gdb.tar.bz2): Remove GDBTK from GDB package.
10228 (gdb+dejagnu.tar.bz2, insight.tar.bz2, insight+dejagnu.tar.bz2,
10229 dejagnu.tar.bz2): New packages.
10230
10231 2000-02-27 Andreas Jaeger <aj@suse.de>
10232
10233 * configure.in: Add entry for mips*-*-linux*, move catch all
10234 *-*-*linux* entry below this one.
10235
10236 2000-02-27 Ian Lance Taylor <ian@zembu.com>
10237
10238 * ltconfig, ltmain.sh: Update to libtool 1.3.4.
10239
10240 2000-02-24 Nick Clifton <nickc@cygnus.com>
10241
10242 * config.sub: Support an OS of "wince".
10243
10244 2000-02-24 Andrew Cagney <cagney@b1.cygnus.com>
10245
10246 * config.guess, config.sub: Updated to match config's 2000-02-15
10247 version.
10248
10249 2000-02-23 Linas Vepstas <linas@linas.org>
10250
10251 * config.sub: Add support for Linux/IBM 370.
10252 * configure.in: Likewise.
10253
10254 2000-02-22 Nick Clifton <nickc@cygnus.com>
10255
10256 * configure.in: Add mips-pe, sh-pe and arm-wince-pe targets.
10257
10258 2000-02-20 Christopher Faylor <cgf@cygnus.com>
10259
10260 * config.guess: Guess "cygwin" rather than "cygwin32".
10261
10262 2000-02-16 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10263
10264 * configure (gcc_version): When setting, narrow search to
10265 lines containing `version_string'.
10266
10267 2000-02-15 Denis Chertykov <denisc@overta.ru>
10268
10269 * config.sub: Add support for avr target.
10270
10271 2000-02-01 Hans-Peter Nilsson <hp@bitrange.com>
10272
10273 * config.sub: Add mmix-knuth-mmixware.
10274
10275 2000-01-27 Christopher Faylor <cgf@redhat.com>
10276
10277 * Makefile.in (CC_FOR_TARGET): Add new winsup directory
10278 structure stuff to -L library search.
10279 (CXX_FOR_TARGET): Ditto.
10280 (CROSS_CHECK_MODULES): Fix spelling mistake.
10281
10282 2000-01-24 Mark Mitchell <mark@codesourcery.com>
10283
10284 * Makefile.in (CXX_FOR_TARGET): Use g++, not xgcc, to invoke
10285 the C++ compiler.
10286
10287 2000-01-12 Richard Henderson <rth@cygnus.com>
10288
10289 * configure.in: Don't build some bits for beos.
10290
10291 2000-01-12 Joel Sherrill (joel@OARcorp.com)
10292
10293 * Makefile.in (CC_FOR_TARGET): Use newlib libraries as well
10294 as include files.
10295
10296 2000-01-06 Geoff Keating <geoffk@cygnus.com>
10297
10298 * configure.in: Use mt-aix43 to handle *_TARGET defs,
10299 not mh-aix43.
10300
10301 1999-12-14 Richard Henderson <rth@cygnus.com>
10302
10303 * config.guess (alpha-osf, alpha-linux): Detect ev67.
10304 * config.sub: Accept alphaev[78], alphaev8.
10305
10306 1999-12-03 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
10307
10308 * config.guess, config.sub: Update from autoconf.
10309
10310 Tue Nov 23 00:57:41 1999 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
10311
10312 * config-ml.in (sparc*-*-*): Disable sparcv9 support if the
10313 necessary libraries are missing.
10314
10315 1999-10-25 Andreas Schwab <schwab@suse.de>
10316
10317 * configure: Fix quoting inside arguments of eval.
10318
10319 1999-10-21 Nick Clifton <nickc@cygnus.com>
10320
10321 * config-ml.in: Allow suppression of some ARM multilibs.
10322
10323 Tue Sep 7 23:33:57 1999 Linas Vepstas <linas@linas.org>
10324
10325 * config.guess: Add OS/390 match pattern.
10326 * config.sub: Add mvs, openedition targets.
10327 * configure.in (i370-ibm-opened*): New.
10328
10329 1999-09-04 Steve Chamberlain <sac@pobox.com>
10330
10331 * config.sub: Add support for configuring for pj.
10332
10333 1999-08-31 Nick Clifton <nickc@cygnus.com>
10334
10335 * config.sub (maybe_os): Add support for configuring for fr30.
10336
10337 1999-08-25 Nick Clifton <nickc@cygnus.com>
10338
10339 * configure.in: Do not configure or build ld for AIX
10340 platforms. ld is known to be broken on these platforms.
10341
10342 Wed Aug 25 01:12:25 1999 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
10343
10344 * config-ml.in: Pass compiler flag corresponding to multidirs to
10345 subdir configures.
10346
10347 1999-08-09 Ian Lance Taylor <ian@zembu.com>
10348
10349 * Makefile.in (LDFLAGS): Define.
10350
10351 1999-08-08 Mumit Khan <khan@xraylith.wisc.edu>
10352
10353 * configure.in (i[3456]-*-mingw32*): Don't put gprof in
10354 noconfigdirs.
10355 (*-*-cygwin*): Likewise.
10356
10357 1999-08-08 Ian Lance Taylor <ian@zembu.com>
10358
10359 * mkdep: New file.
10360 * Makefile.in (GAS_SUPPORT_DIRS): Add mkdep.
10361 (BINUTILS_SUPPORT_DIRS): Add mkdep.
10362
10363 From Eli Zaretskii <eliz@is.elta.co.il>:
10364 * configure (tmpfile): Change cONf$$ to cNf$$ to avoid an overly
10365 long file name when using DJGPP on MS-DOS.
10366
10367 Wed Aug 4 02:07:14 1999 Jeffrey A Law (law@cygnus.com)
10368
10369 * config.sub (vxworks case): Use os=-vxworks, not os=vxworks.
10370
10371 1999-07-30 Alan Modra <alan@spri.levels.unisa.edu.au>
10372
10373 * Makefile.in (check-target-libio): Remove all-target-libstdc++
10374 dependency as this causes "make check" to globally "make all"
10375
10376 Tue Jun 22 23:45:18 1999 Tom Tromey <tromey@cygnus.com>
10377
10378 * configure.in (target_libs): Added target-zlib.
10379 * Makefile.in (ALL_TARGET_MODULES): Added zlib.
10380 (CONFIGURE_TARGET_MODULES): Likewise.
10381 (CHECK_TARGET_MODULES): Likewise.
10382 (INSTALL_TARGET_MODULES): Likewise.
10383 (CLEAN_TARGET_MODULES): Likewise.
10384 (configure-target-zlib): New target.
10385 (all-target-zlib): Likewise.
10386 (all-target-libjava): Depend on all-target-zlib.
10387 (configure-target-libjava): Depend on configure-target-zlib.
10388
10389 * Makefile.in (configure-target-libjava): Depend on
10390 configure-target-newlib.
10391 (configure-target-boehm-gc): New target.
10392 (configure-target-qthreads): New target.
10393
10394 * configure.in (target_libs): Added target-qthreads.
10395 * Makefile.in (ALL_TARGET_MODULES): Added qthreads.
10396 (CONFIGURE_TARGET_MODULES): Likewise.
10397 (CHECK_TARGET_MODULES): Likewise.
10398 (INSTALL_TARGET_MODULES): Likewise.
10399 (CLEAN_TARGET_MODULES): Likewise.
10400 (all-target-qthreads): New target.
10401 (configure-target-libjava): Depend on configure-target-qthreads.
10402 (all-target-libjava): Depend on all-target-qthreads.
10403
10404 * Makefile.in (ALL_TARGET_MODULES): Added libjava, boehm-gc.
10405 (CONFIGURE_TARGET_MODULES): Likewise.
10406 (CHECK_TARGET_MODULES): Likewise.
10407 (INSTALL_TARGET_MODULES): Likewise.
10408 (CLEAN_TARGET_MODULES): Likewise.
10409 (all-target-libjava): New target.
10410 (all-target-boehm-gc): Likewise.
10411 * configure.in (target_libs): Added libjava, boehm-gc.
10412
10413 1999-07-22 Ian Lance Taylor <ian@zembu.com>
10414
10415 * Makefile.in (binutils.tar.bz2): Don't pass makeall.bat and
10416 configure.bat in SUPPORT_FILES.
10417 (gas+binutils.tar.bz2): Likewise.
10418
10419 * makeall.bat: Remove; obsolete.
10420
10421 1999-07-21 Ian Lance Taylor <ian@zembu.com>
10422
10423 From Mark Elbrecht:
10424 * configure.bat: Remove; obsolete.
10425
10426 1999-07-11 Ian Lance Taylor <ian@zembu.com>
10427
10428 * configure: Add -W -Wall to the default CFLAGS when compiling with
10429 gcc.
10430
10431 Thu Jul 8 12:32:23 1999 John David Anglin <dave@hiauly1.hia.nrc.ca>
10432
10433 * configure.in: Build ld, binutils & gas for hppa*-*-linux-gnu*.
10434
10435 1999-06-30 Mark Mitchell <mark@codesourcery.com>
10436
10437 * configure.in: Build ld on IRIX6.
10438
10439 1999-06-12 Ian Lance Taylor <ian@zembu.com>
10440
10441 * Makefile.in: Change distribution targets to use bzip2 instead of
10442 gzip.
10443 (TEXINFO_SUPPORT): Set to just texinfo/texinfo.tex.
10444 (taz): Don't use texinfo/gpl.texinfo or texinfo/lgpl.texinfo.
10445
10446 1999-06-04 Nick Clifton <nickc@cygnus.com>
10447
10448 * config.sub: Add mcore target.
10449
10450 1999-05-30 Cort Dougan <cort@cs.nmt.edu>
10451
10452 * config.guess (ppc-*-linux-gnu): Also use ld emul elf32ppclinux.
10453
10454 1999-05-25 H.J. Lu (hjl@gnu.org)
10455
10456 * config.guess (dummy): Changed to $dummy.
10457
10458 1999-05-24 Nick Clifton <nickc@cygnus.com>
10459
10460 * config.sub: Tidied up case statements.
10461
10462 1999-05-22 Ben Elliston <bje@cygnus.com>
10463
10464 * config.guess: Handle NEC UX/4800. Contributed by Jiro Takabatake
10465 <jiro@din.or.jp>.
10466
10467 * config.guess: Merge with FSF version. Future changes will be
10468 more accurately recorded in this ChangeLog.
10469 * config.sub: Likewise.
10470
10471 1999-05-20 Stephen L Moshier <moshier@world.std.com>
10472
10473 * Makefile.in (GCC_FOR_TARGET): Add -I$(build_tooldir)/include.
10474
10475 1999-04-30 Tom Tromey <tromey@cygnus.com>
10476
10477 * ltmain.sh: [mode link] Always use CC given by ltconfig.
10478
10479 1999-04-23 Tom Tromey <tromey@cygnus.com>
10480
10481 * ltconfig, ltmain.sh: Update to libtool 1.2f.
10482
10483 1999-04-20 Drew Moseley <dmoseley@cygnus.com>
10484
10485 * configure.in (noconfigdirs): Don't build libstub for arm-elf targets.
10486 (noconfigdirs): Don't build any bsp stuff for for arm-oabi targets.
10487 Bad merge removed these two changes.
10488
10489 Tue Apr 13 22:50:54 1999 Donn Terry (donn@interix.com)
10490 Martin Heller (Ing.-Buero_Heller@t-online.de)
10491
10492 * config.guess (interix Alpha): Add.
10493
10494 1999-04-11 Richard Henderson <rth@cygnus.com>
10495
10496 * configure.in (i?86-*-beos*): Do config gperf; don't config
10497 gdb, newlib, or libgloss.
10498
10499 1999-04-11 Alexandre Oliva <oliva@dcc.unicamp.br>
10500
10501 * config-ml.in: On mips*-*-*, if multidirs contains mabi=64, try to
10502 link a trivial program with -mabi=64. If it fails, remove mabi=64
10503 from multidirs.
10504
10505 1999-04-10 Philipp Thomas (kthomas@gwdg.de)
10506
10507 * config.sub: Set basic_machine to i586 when target_alias = k6-*.
10508
10509 1999-04-08 Nick Clifton <nickc@cygnus.com>
10510
10511 * config.sub: Add support for mcore targets.
10512
10513 1999-04-07 Michael Meissner <meissner@cygnus.com>
10514
10515 * configure.in (d30v-*): Use config/mt-d30v as makefile fragment,
10516 not mt-ospace, in order to shut up assembler warning about using
10517 symbols that are named the same as registers.
10518
10519 1999-04-07 Drew Moseley <dmoseley@cygnus.com>
10520
10521 * Makefile.in (all-target-cygmon): Added all-target-bsp to the
10522 dependency list for all-target-cygmon.
10523
10524 1999-04-05 Doug Evans <devans@casey.cygnus.com>
10525
10526 * config-ml.in: Check $host, not $target, for selective multilibs.
10527 (arm-*-*): Allow disabling of biendian, h/w fp, 26 bit apcs,
10528 thumb interworking, and underscore prefix multilibs.
10529
10530 1999-04-04 Ian Lance Taylor <ian@zembu.com>
10531
10532 * missing: Update to version from current automake.
10533
10534 Fri Apr 2 15:11:32 1999 H.J. Lu (hjl@gnu.org)
10535
10536 * configure (gxx_include_dir): Removed.
10537
10538 * configure.in (gxx_include_dir): Handle it.
10539 * Makefile.in: Likewise.
10540
10541 1999-03-29 Gavin Romig-Koch <gavin@cygnus.com>
10542
10543 * config.sub (mips64vr4111,mips64vr4111el) Add.
10544
10545 1999-03-21 Ben Elliston <bje@cygnus.com>
10546
10547 * config.guess: Correct typo for detecting ELF on FreeBSD.
10548
10549 Thu Mar 18 00:17:50 1999 Mark Elbrecht <snowball3@usa.net>
10550
10551 * configure.in (pc-msdosdjgpp): Set host_makefile_frag to
10552 config/mh-djgpp.
10553
10554 Thu Mar 11 18:37:23 1999 Drew Moseley <dmoseley@cygnus.com>
10555
10556 * Makefile.in (all-target-bsp): Added all-gcc all-binutils and
10557 all-target-newlib to dependency list for all-target-bsp.
10558
10559 Thu Mar 11 01:19:31 1999 Mumit Khan <khan@xraylith.wisc.edu>
10560
10561 * config.sub: Add i386-uwin support.
10562 * config.guess: Likewise.
10563
10564 Thu Mar 11 01:07:55 1999 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
10565
10566 * configure.in: cleanup, add mh-*pic handling for arm, special
10567 case powerpc*-*-aix*
10568
10569 Wed Mar 10 18:35:07 1999 Jeff Johnston <jjohnstn@cygnus.com>
10570
10571 * configure.in (noconfigdirs): Removed target-libgloss so libnosys.a
10572 can be built.
10573
10574 Wed Mar 10 17:39:09 1999 Drew Moseley <dmoseley@cygnus.com>
10575
10576 * configure.in: Added bsp support to arm-*-coff and arm-*-elf
10577 targets.
10578
10579 1999-03-02 Nick Clifton <nickc@cygnus.com>
10580
10581 * config.sub: Rename CYGNUS LOCAL to EGCS LOCAL
10582
10583 1999-02-28 Geoffrey Noer <noer@cygnus.com>
10584
10585 * config.sub: Check for "cygwin*" rather than "cygwin32*"
10586
10587 1999-02-24 Nick Clifton <nickc@cygnus.com>
10588
10589 * config.sub: Fix typo in arm recognition.
10590
10591 1999-02-24 Drew Moseley <dmoseley@cygnus.com>
10592
10593 * configure.in (noconfigdirs): Changed target_configdirs to
10594 include target-bsp only for m68k-*-elf* and m68k-*-coff*
10595 rather than m68k-*-* since it is not known to work on
10596 m68k-aout. Ditto for arm-*-*oabi.
10597
10598 1999-02-24 Stan Shebs <shebs@andros.cygnus.com>
10599
10600 * configure.in (*-*-windows*): Remove, no longer used.
10601
10602 1999-02-19 Ben Elliston <bje@cygnus.com>
10603
10604 * config.guess: Automatically recognise ELF on FreeBSD. From Niall
10605 Smart and improved by Andrew Cagney.
10606
10607 1999-02-18 Marc Espie <espie@cvs.openbsd.org>
10608
10609 * config.guess: Recognize openbsd-*-hppa.
10610
10611 1999-02-17 H.J. Lu (hjl@gnu.org)
10612
10613 * Makefile.in (REALLY_SET_LIB_PATH): Append $$$(RPATH_ENVVAR)
10614 only if it is not empty.
10615
10616 1999-02-17 Nick Clifton <nickc@cygnus.com>
10617
10618 Patch from: Scott Bambrough <scottb@corelcomputer.com>
10619
10620 * config.guess: Modified to recognize uname's armv* syntax.
10621
10622 * config.sub: Modified to recognize uname's armv* syntax.
10623
10624 1999-02-17 Mark Salter <msalter@cygnus.com>
10625
10626 * configure.in: Added target-bsp for sparclite.
10627
10628 1999-02-08 Richard Henderson <rth@cygnus.com>
10629
10630 * config.sub: Recognize alphapca5[67] and up to alphaev8.
10631
10632 1999-02-08 Nick Clifton <nickc@cygnus.com>
10633
10634 * configure.in: Add support for strongarm port.
10635 * config.sub: Add support for strongarm target.
10636
10637 1999-02-07 Mumit Khan <khan@xraylith.wisc.edu>
10638
10639 * configure.in (*-*-cygwin32*): Use config/mh-cygwin instead of
10640 the old name config/mh-cygwin32.
10641 Enable texinfo.
10642
10643 1999-02-04 Ian Lance Taylor <ian@cygnus.com>
10644
10645 * configure.in: Do build ld for ix86 Solaris.
10646
10647 1999-02-02 Jim Wilson <wilson@cygnus.com>
10648
10649 * Makefile.in (EXTRA_GCC_FLAGS): Set AR to $AR instead of
10650 $AR_FOR_TARGET. Likewise for RANLIB.
10651
10652 1999-02-02 Catherine Moore <clm@cygnus.com>
10653
10654 * config.sub (oabi): Recognize.
10655 * configure.in (arm-*-oabi): Handle.
10656
10657 1999-01-30 Robert Lipe (robertlipe@usa.net)
10658
10659 * config.guess: Improve detection of i686 on UnixWare 7.
10660
10661 1999-01-30 Mumit Khan <khan@xraylith.wisc.edu>
10662
10663 * config.guess: Add support for i386-pc-interix.
10664 * config.sub: Likewise.
10665 * configure.in: Likewise.
10666
10667 1999-01-18 Christopher Faylor <cgf@cygnus.com>
10668
10669 * Makefile.in: Remove unneeded all-target-libio from
10670 from all-target-winsup target since it is now unneeded.
10671 Add all-target-libtermcap in its place since it is now
10672 needed.
10673
10674 1998-12-30 Christopher Faylor <cgf@cygnus.com>
10675
10676 * configure.in: makefile stub for cygwin target is probably
10677 unnecessary. Remove it for now.
10678
10679 1998-12-30 Christopher Faylor <cgf@cygnus.com>
10680
10681 * configure.in: libtermcap.a should be built when cygwin is the
10682 target as well as the host.
10683 * config.guess: Allow mixed case in cygwin uname output.
10684 * Makefile.in: Add libtermcap target.
10685
10686 1998-12-23 Jeffrey A Law (law@cygnus.com)
10687
10688 * config.sub: Clean up handling of hppa2.0.
10689
10690 1998-12-22 Rodney Brown (rodneybrown@pmsc.com)
10691
10692 * config.guess: Use C code to identify more HP machines.
10693
10694 Thu Dec 17 01:22:30 1998 Jeffrey A Law (law@cygnus.com)
10695
10696 * config.sub: Handle hppa2.0.
10697
10698 Tue Dec 15 17:02:58 1998 Bob Manson <manson@charmed.cygnus.com>
10699
10700 * configure.in: Add cygmon for x86-coff and x86-elf. Configure
10701 cygmon for all sparclite targets, regardless of object format.
10702
10703 1998-12-15 Mark Salter <msalter@cygnus.com>
10704
10705 * configure.in: Added target-bsp for several target architectures.
10706
10707 * Makefile.in: Added rules for bsp.
10708
10709 Fri Dec 4 01:34:02 1998 Jeffrey A Law (law@cygnus.com)
10710
10711 * config.guess: Improve detection of hppa2.0 processors.
10712
10713 Fri Dec 4 01:33:05 1998 Niall Smart <nialls@euristix.ie>
10714
10715 * config.guess: Recognize FreeBSD using ELF automatically.
10716
10717 1998-11-26 Manfred Hollstein <manfred@s-direktnet.de>
10718
10719 * configure (skip-this-dir): Add handling for new shell script, which
10720 might be created by a sub-directory's configure to indicate, this particular
10721 directory is "unwanted".
10722 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): Likewise.
10723
10724 Wed Nov 18 18:28:45 1998 Geoffrey Noer <noer@cygnus.com>
10725
10726 * ltconfig: import from libtool, after changing libtool to
10727 account for the cygwin name change.
10728
10729 Wed Nov 18 18:09:14 1998 Geoffrey Noer <noer@cygnus.com>
10730
10731 * Makefile.in: CC_FOR_TARGET and CXX_FOR_TARGET should also
10732 include newlib/libc/sys/cygwin and newlib/libc/sys/cygwin32.
10733
10734 Wed Nov 18 20:13:29 1998 Christopher Faylor <cgf@cygnus.com>
10735
10736 * configure.in: Add libtermcap to list of cygwin dependencies.
10737
10738 1998-11-17 Geoffrey Noer <noer@cygnus.com>
10739
10740 * Makefile.in: modify CC_FOR_TARGET and CXX_FOR_TARGET so that
10741 they include winsup/include when it's a cygwin target.
10742
10743 1998-11-12 Tom Tromey <tromey@cygnus.com>
10744
10745 * configure.in (host_tools): Added zip.
10746 * Makefile.in (all-target-libjava): Depend on all-zip.
10747 (all-zip): New target.
10748 (ALL_MODULES): Added all-zip.
10749 (NATIVE_CHECK_MODULES): Added check-zip.
10750 (INSTALL_MODULES): Added install-zip.
10751 (CLEAN_MODULES): Added clean-zip.
10752
10753 1998-11-12 Geoffrey Noer <noer@cygnus.com>
10754
10755 * Makefile.in: lose "32" from comment about cygwin.
10756
10757 1998-11-05 Nick Clifton <nickc@cygnus.com>
10758
10759 * configure.in: Use -Os to build target libraries for the fr30.
10760
10761 1998-11-04 Dave Brolley <brolley@cygnus.com>
10762
10763 * config.sub: Add fr30.
10764
10765 1998-11-02 Geoffrey Noer <noer@cygnus.com>
10766
10767 * configure.in: drop "32" from config/mh-cygwin32. Check
10768 cygwin* instead of cygwin32*.
10769 * config.sub: Check cygwin* instead of cygwin32*.
10770
10771 1998-10-22 Robert Lipe <robertl@dgii.com>
10772
10773 * config.guess: Match any version of Unixware7.
10774
10775 1998-10-20 Syd Polk <spolk@cygnus.com>
10776
10777 * Makefile.in configure.in: Add the ability to use tcl8.1 and tk8.1
10778 if desired.
10779
10780 1998-10-18 Jeffrey A Law (law@cygnus.com)
10781
10782 * config.if (cxx_interface, libstdcxx_interface): Do not try to set
10783 these if the appropriate directories and files to not exist.
10784
10785 1998-10-14 Jeffrey A Law (law@cygnus.com)
10786
10787 * Makefile.in (DEVO_SUPPORT): Add config.if.
10788
10789 1998-10-13 Manfred Hollstein <manfred@s-direktnet.de>
10790
10791 * configure: Add pattern to replace "build_tooldir"'s
10792 definition in the generated Makefile with "tooldir"'s
10793 actual value.
10794
10795 Tue Oct 13 09:17:06 1998 Jeffrey A Law (law@cygnus.com)
10796
10797 * config.sub: Bring back lost sparcv9.
10798
10799 * Makefile.in (all-snvavigator): Remove all-flexlm dependency.
10800
10801 Mon Oct 12 12:09:44 1998 Jeffrey A Law (law@cygnus.com)
10802
10803 * Makefile.in (CHILL_FOR_TARGET): Mirror recent changes to
10804 CC_FOR_TARGET and friends.
10805
10806 Mon Oct 12 12:09:30 1998 Alexandre Oliva <oliva@dcc.unicamp.br>
10807
10808 * Makefile.in (build_tooldir): New variable, same as tooldir.
10809 (CC_FOR_TARGET, GCC_FOR_TARGET, CXX_FOR_TARGET): Add
10810 -B$(build_tooldir)/bin/.
10811 (BASE_FLAGS_TO_PASS): Pass build_tooldir down.
10812
10813 Wed Sep 30 22:20:50 1998 Robert Lipe <robertl@dgii.com>
10814
10815 * config.sub: Add support for i[34567]86-pc-udk.
10816 * configure.in: Likewise.
10817
10818 Wed Sep 30 19:23:48 1998 Geoffrey Noer <noer@cygnus.com>
10819
10820 * Makefile.in: add bzip2 package building bits for user
10821 tools module
10822 * configure.in: ditto
10823
10824 Wed Sep 30 03:00:05 1998 Jeffrey A Law (law@cygnus.com)
10825
10826 * Makefile.in (TARGET_CONFIGDIRS): Add libobjc.
10827 (ALL_TARGET_MODULES): Add all-target-libobjc.
10828 (CONFIGURE_TARGET_MODULES, CHECK_TARGET_MODULES): Similarly.
10829 (INSTALL_TARGET_MODULES, CLEAN_TARGET_MODULES): Similarly.
10830 (all-target-libchill): Add dependencies.
10831 * configure.in (target_libs): Add libchill.
10832
10833 1998-09-30 Manfred Hollstein <manfred@s-direktnet.de>
10834
10835 * configure.in (target_subdir): Remove duplicate line.
10836
10837 Tue Sep 29 22:45:41 1998 Felix Lee <flee@cygnus.com>
10838
10839 * Makefile.in (all-automake): fix dependencies.
10840
10841 Mon Sep 28 04:04:27 1998 Jeffrey A Law (law@cygnus.com)
10842
10843 * configure.in: Minor cleanups for building in the $(target_alias)
10844 subdir.
10845
10846 1998-09-22 Jim Wilson <wilson@cygnus.com>
10847
10848 * Makefile.in (bootstrap): Set r and s before make all. Use
10849 BASE_FLAGS_TO_PASS in make all.
10850 (cross): Likewise.
10851
10852 1998-09-20 Mark Mitchell <mark@markmitchell.com>
10853
10854 * Makefile.in (bootstrap): Pass TARGET_FLAGS_TO_PASS to `make all'.
10855
10856 Sun Sep 20 00:13:02 1998 Richard Henderson <rth@cygnus.com>
10857
10858 * config.sub: Fix typo in last change.
10859
10860 1998-09-19 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
10861
10862 * config.sub: Add support for C4x target.
10863 * configure.in: Likewise.
10864
10865 1998-09-13 David S. Miller <davem@pierdol.cobaltmicro.com>
10866
10867 * config.sub: Recognize sparcv9 just like sparc64.
10868
10869 Wed Sep 9 15:44:52 1998 Robert Lipe <robertl@dgii.com>
10870
10871 * config.guess: Match "Pent II" or "PentII" for OpenServer.
10872
10873 Tue Sep 8 01:18:39 1998 Jeffrey A Law (law@cygnus.com)
10874
10875 * config.guess: Correctly identify Pentium II sco boxes.
10876
10877 * config.guess: Fix "tr" code. From Weiwen Liu.
10878
10879 Sat Sep 5 13:56:52 1998 John Hughes <john@Calva.COM>
10880
10881 * configure.in: Do not assume x86-svr4 or x86-unixware can handle
10882 stabs.
10883
10884 Sat Sep 5 02:12:02 1998 Jeffrey A Law (law@cygnus.com)
10885
10886 * Makefile.in (TARGET_CONFIGDIRS): Add libchill.
10887 (ALL_TARGET_MODULES): Add all-target-libchill.
10888 (CONFIGURE_TARGET_MODULES, CHECK_TARGET_MODULES): Similarly.
10889 (INSTALL_TARGET_MODULES, CLEAN_TARGET_MODULES): Similarly.
10890 (all-target-libchill): Add dependencies.
10891 * configure.in (target_libs): Add libchill.
10892
10893 Sun Aug 30 22:27:02 1998 Lutz Wohlrab <lutz.wohlrab@informatik.tu-chemnitz.de>
10894
10895 * config.guess: Avoid assumptions about "tr" behaves when
10896 LANG is set to something other than English.
10897
10898 Sun Aug 30 22:14:44 1998 H.J. Lu (hjl@gnu.org)
10899
10900 * configure (gxx_include_dir): Changed to
10901 '${prefix}/include/g++'-${libstdcxx_interface}.
10902
10903 * config.if: New to determine the interfaces.
10904
10905 Sun Aug 30 21:15:19 1998 Mark Klein (mklein@dis.com)
10906
10907 * config.guess: Detect and handle MPE/IX.
10908 * config.sub: Deal with MPE/IX.
10909
10910 Sat Aug 29 14:32:55 1998 David Edelsohn <edelsohn@mhpcc.edu>
10911
10912 * configure.in: Use mh-aix43.
10913
10914 1998-07-29 Manfred Hollstein <manfred@s-direktnet.de>
10915
10916 * configure: Fix --without/--disable cases for gxx-include-dir.
10917
10918 Fri Aug 28 12:28:26 1998 Per Bothner <bothner@cygnus.com>
10919
10920 * mdata-sh: Imported. Needed for automake support.
10921
10922 Thu Aug 13 12:49:29 1998 H.J. Lu <hjl@gnu.org>
10923
10924 * Makefile.in (taz): Try "chmod -R og=u ." before
10925 "chmod og=u `find . -print`".
10926
10927 Fri Jul 31 09:38:33 1998 Catherine Moore <clm@cygnus.com>
10928
10929 * configure.in: Add arm-elf and thumb-elf support.
10930
10931 Mon Jul 27 16:23:58 1998 Doug Evans <devans@canuck.cygnus.com>
10932
10933 * Makefile.in: Undo previous patch.
10934
10935 Fri Jul 24 19:55:24 1998 Doug Evans <devans@canuck.cygnus.com>
10936
10937 * Makefile.in (INSTALL_TARGET): Move EXTRA_TARGET_HOST_INSTALL_MODULES
10938 to here ...
10939 (install-no-fixedincludes): and here
10940 (INSTALL_MODULES): ... from here.
10941
10942 Fri Jul 24 17:01:42 1998 Ian Lance Taylor <ian@cygnus.com>
10943
10944 * config.sub: Merge with FSF.
10945
10946 * config.guess: Merge with FSF.
10947
10948 Fri Jul 24 08:43:36 1998 Doug Evans <devans@canuck.cygnus.com>
10949
10950 * configure (extraconfigdirs): New variable.
10951 (SUBDIRS): Add extraconfigdirs and recurse on them too.
10952 * Makefile.in (all): Move higher in file.
10953 (EXTRA_TARGET_HOST_ALL_MODULES): New variable.
10954 (EXTRA_TARGET_HOST_{INSTALL,CHECK}_MODULES): New variables.
10955 (ALL_MODULES): Add EXTRA_TARGET_HOST_ALL_MODULES.
10956 (CROSS_CHECK_MODULES): Add EXTRA_TARGET_HOST_CHECK_MODULES.
10957 (INSTALL_MODULES): Add EXTRA_TARGET_HOST_INSTALL_MODULES.
10958
10959 1998-07-23 Brendan Kehoe <brendan@cygnus.com>
10960
10961 * Makefile.in (all-target-libjava): Depend on all-gcc and
10962 all-target-newlib.
10963 (configure-target-libjava): Depend on $(ALL_GCC).
10964
10965 Sat Jul 18 14:32:43 CDT 1998 Robert Lipe <robertl@dgii.com>
10966
10967 * config.guess: (*-pc-sco3.2v5) Add detection for Pentium II.
10968 (*-pc-unixware7) Add detection for Pentium II, Pentium Pro.
10969
10970 Fri Jul 17 13:30:18 1998 Ian Lance Taylor <ian@cygnus.com>
10971
10972 * ylwrap: Change absolute path checks to check for DOS style path
10973 names.
10974
10975 * ylwrap: Don't use a full path name if the source file is in the
10976 same directory. From hjl@lucon.org (H.J. Lu).
10977
10978 * config-ml.in: Default to being verbose, to match Feb 18 change to
10979 configure.
10980
10981 Thu Jul 16 12:29:51 1998 Ian Lance Taylor <ian@cygnus.com>
10982
10983 Brought over from egcs:
10984
10985 Sat Jun 27 22:46:32 1998 Jeffrey A Law (law@cygnus.com)
10986
10987 * configure.in (target_subdir): Set to ${target_alias} instead
10988 of "libraries".
10989
10990 Mon Sep 1 16:45:44 1997 Jim Wilson <wilson@cygnus.com>
10991
10992 * configure.in (target_subdir): Set to libraries if enable_multilib.
10993
10994 Wed Jul 15 01:00:54 1998 Ian Lance Taylor <ian@cygnus.com>
10995
10996 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): If there are any
10997 multilibs, force reconfiguration the first time we create
10998 multilib.out in a subdirectory, in case TARGET_SUBDIR is `.'.
10999
11000 Tue Jul 14 23:41:03 1998 Ian Lance Taylor <ian@cygnus.com>
11001
11002 * configure.in: Strip any --no option from CONFIG_ARGUMENTS, to
11003 avoid confusion with --no-recursion.
11004
11005 Tue Jul 14 15:37:41 1998 Geoffrey Noer <noer@cygnus.com>
11006
11007 * configure.in: Win32 hosts shouldn't use install -x
11008 * install-sh: remove -x option, and special .exe-handling
11009 hack.
11010
11011 Tue Jul 14 15:28:41 1998 Richard Henderson <rth@cygnus.com>
11012
11013 * config.guess: Recognize i586-pc-beos.
11014 * configure.in: Don't build some bits for beos.
11015
11016 Tue Jul 14 13:22:18 1998 Ian Lance Taylor <ian@cygnus.com>
11017
11018 * configure: If CC is set but CFLAGS is not, and CC is gcc, make
11019 CFLAGS default to -O2.
11020
11021 * ltmain.sh: Add some hacks to make SunOS --enable-shared work
11022 when using GNU ld.
11023
11024 Fri Jul 10 13:18:23 1998 Ian Lance Taylor <ian@cygnus.com>
11025
11026 * ltmain.sh: Correct install when using a different shell.
11027
11028 Tue Jul 7 15:24:38 1998 Ian Lance Taylor <ian@cygnus.com>
11029
11030 * ltconfig, ltmain.sh: Update to libtool 1.2b.
11031
11032 Thu Jul 2 13:57:36 1998 Klaus Kaempf <kkaempf@rmi.de>
11033
11034 * makefile.vms: Update to build binutils/makefile.vms. Add install
11035 target.
11036
11037 Wed Jul 1 16:45:21 1998 Ian Lance Taylor <ian@cygnus.com>
11038
11039 * ltconfig: Update to correct AIX handling.
11040
11041 Sat Jun 27 22:46:32 1998 Jeffrey A Law (law@cygnus.com)
11042
11043 * Makefile.in (BASE_FLAGS_TO_PASS): Add TARGET_SUBDIR.
11044
11045 * configure.in (target_subdir): Set to ${target_alias} instead
11046 of "libraries".
11047
11048 1998-06-26 Manfred Hollstein <manfred@s-direktnet.de>
11049
11050 * Makefile.in (BASE_FLAGS_TO_PASS): Add gcc_version_trigger.
11051 (Makefile): Depend on $(gcc_version_trigger).
11052
11053 * configure (gcc_version): Change default initializer to empty
11054 string.
11055 (gcc_version_trigger): New variable; pass this variable down
11056 to subdir configures to enable them checking gcc's version
11057 themselves. Emit make macros for both gcc_version vars.
11058 (topsrcdir): Initialize reliably.
11059 (recursion line): Remove --with-gcc-version=${gcc_version}.
11060
11061 1998-06-24 Manfred Hollstein <manfred@s-direktnet.de>
11062
11063 * configure (enable_version_specific_runtime_libs): Implement new flag
11064 --enable-version-specific-runtime-libs which installs C++ runtime stuff
11065 in $(libsubdir); emit definition in each generated Makefile.
11066 (gxx_include_dir): Initialize depending on
11067 $enable_version_specific_runtime_libs.
11068
11069 1998-06-24 Manfred Hollstein <manfred@s-direktnet.de>
11070
11071 * configure (gcc_version): Initialize properly depending on
11072 how and where configure is started.
11073 (recursion line): Pass a --with-gcc-version=${gcc_version}
11074 to configures in subdirs.
11075
11076 Wed Jun 24 16:01:59 1998 John Metzler <jmetzler@cygnus.com>
11077
11078 * configure.in (noconfigdirs): Add configure pattern for mips tx39
11079 cygmon
11080
11081 Tue Jun 23 22:42:32 1998 Mark Alexander <marka@cygnus.com>
11082
11083 * configure.in: Add cygmon and libstub support for mn10200.
11084
11085 1998-06-19 Manfred Hollstein <manfred@s-direktnet.de>
11086
11087 * configure (gcc_version): Add new variable describing the
11088 particular gcc version we're building.
11089 * Makefile.in (libsubdir): Add new macro for the directory
11090 in which the compiler finds executables, libraries, etc.
11091 (BASE_FLAGS_TO_PASS): Pass down gcc_version, target_alias
11092 and libsubdir.
11093
11094 Fri Jun 19 02:36:59 1998 Alexandre Oliva <oliva@dcc.unicamp.br>
11095
11096 * Makefile.in (local-clean): Remove *.log.
11097 (warning.log): Built with warn_summary from build.log.
11098 (mail-report.log): Run test_summary.
11099 (mail-report-with-warnings.log): Run test_summary including
11100 warning.log in the report.
11101
11102 Thu Jun 18 11:26:03 1998 Robert Lipe <robertl@dgii.com>
11103
11104 * config.guess: Detection of Pentium II for *-sco-3.2v5*.
11105
11106 Mon Jun 15 14:53:54 1998 Andrew Cagney <cagney@b1.cygnus.com>
11107
11108 * Makefile.in (grep): Grep no longer depends on libiberty.
11109
11110 Fri Jun 12 14:03:34 1998 Syd Polk <spolk@cygnus.com>
11111
11112 * Makefile.in: all-snavigator needs all-libgui.
11113
11114 Thu Jun 11 19:43:47 1998 Mark Alexander <marka@cygnus.com>
11115
11116 * configure.in: Add cygmon and libstub support for mn10300.
11117
11118 Wed Jun 10 11:19:47 1998 Ian Lance Taylor <ian@cygnus.com>
11119
11120 * missing: Update to version from automake 1.3.
11121
11122 * ltmain.sh: On installation, don't get confused if the same name
11123 appears more than once in the list of library names.
11124
11125 Wed Jun 3 14:51:42 1998 Ian Lance Taylor <ian@cygnus.com>
11126
11127 * config.sub: Accept m68060 and m5200 as CPU names.
11128
11129 Mon Jun 1 17:25:16 1998 Ian Lance Taylor <ian@cygnus.com>
11130
11131 * configure: Use && rather than using -a in test, because odd
11132 strings can confuse test.
11133 * configure.in: Likewise.
11134
11135 Thu May 28 19:31:13 1998 Ian Lance Taylor <ian@cygnus.com>
11136
11137 * ltconfig, ltmain.sh: Bring in Visual C++ support.
11138
11139 Sat May 23 23:44:13 1998 Alexandre Oliva <oliva@dcc.unicamp.br>
11140
11141 * Makefile.in (boostrap2-lean, bootstrap3-lean,
11142 bootstrap4-lean): New targets.
11143
11144 Mon May 11 23:55:56 1998 Jeffrey A Law (law@cygnus.com)
11145
11146 * mpw-* Delete. Not used.
11147
11148 Mon May 11 23:11:34 1998 Jeffrey A Law (law@cygnus.com)
11149
11150 * COPYING.LIB: Update FSF address.
11151
11152 Fri May 8 01:30:20 1998 Ian Lance Taylor <ian@cygnus.com>
11153
11154 * ltconfig, ltmain.sh: Update to libtool 1.2a.
11155
11156 * Makefile.in (GASB_SUPPORT_DIRS): Remove intl; already included via
11157 GAS_SUPPORT_DIRS.
11158
11159 Thu May 7 17:27:35 1998 Ian Lance Taylor <ian@cygnus.com>
11160
11161 * ltconfig, ltmain.sh: Avoid producing a version number if
11162 -version-info was not used.
11163
11164 Tue May 5 18:02:24 1998 Ian Lance Taylor <ian@cygnus.com>
11165
11166 * configure.in: Add --with-newlib to CONFIG_ARGUMENTS if we are
11167 building with newlib.
11168
11169 1998-04-30 Paul Eggert <eggert@twinsun.com>
11170
11171 * Makefile.in (EXTRA_GCC_FLAGS): Remove backslash at end;
11172 Solaris `make' causes it to continue to next definition.
11173
11174 Tue Apr 28 16:24:24 1998 Jason Molenda (crash@bugshack.cygnus.com)
11175
11176 * Makefile.in (install-gdbtk): Call this 'install-gdb' so that
11177 the right GUI libraries and files are installed along with GDB.
11178
11179 Tue Apr 28 18:11:24 1998 Ian Lance Taylor <ian@cygnus.com>
11180
11181 * configure.in: Change alpha to alpha* in several places.
11182
11183 Tue Apr 28 07:42:00 1998 Mark Alexander <marka@cygnus.com>
11184
11185 * config.sub: Recognize sparc86x.
11186
11187 Tue Apr 28 07:35:02 1998 Michael Meissner <meissner@cygnus.com>
11188
11189 * configure.in (--enable-target-optspace): Remove debug echo.
11190
11191 Thu Apr 23 21:31:16 1998 Jim Wilson <wilson@cygnus.com>
11192
11193 * configure: Set CXXFLAGS from CXXFLAGS, not CFLAGS.
11194
11195 Thu Apr 23 12:26:38 1998 Ian Lance Taylor <ian@cygnus.com>
11196
11197 * ltconfig: Update cygwin32 support.
11198
11199 * Makefile.in (GAS_SUPPORT_DIRS): Add intl.
11200 (BINUTILS_SUPPORT_DIRS, GASB_SUPPORT_DIRS): Likewise.
11201 (GDB_SUPPORT_DIRS): Likewise.
11202
11203 Wed Apr 22 12:30:10 1998 Michael Meissner <meissner@cygnus.com>
11204
11205 * configure.in (target_makefile_frag): If --enable-target-optspace,
11206 use -Os to compile target libraries rather than -O2. Default to
11207 using -Os for d10v and m32r if --{enable,disable}-target-optspace is
11208 not used.
11209 * configure.in (target_cflags): Ditto for d30v.
11210
11211 Tue Apr 21 23:06:54 1998 Tom Tromey <tromey@cygnus.com>
11212
11213 * Makefile.in (all-bfd): Depend on all-intl.
11214 (all-binutils): Likewise.
11215 (all-gas): Likewise.
11216 (all-gprof): Likewise.
11217 (all-ld): Likewise.
11218
11219 1998-04-19 Brendan Kehoe <brendan@cygnus.com>
11220
11221 * configure.in (host_tools): Fix typo, lbtool -> libtool.
11222
11223 Fri Apr 17 16:20:42 1998 Ian Lance Taylor <ian@cygnus.com>
11224
11225 * Makefile.in (all-bfd): Depend upon all-libiberty.
11226
11227 * ltconfig, ltmain.sh: Bring in newer cygwin32 support.
11228
11229 Fri Apr 17 12:22:22 1998 Bob Manson <manson@charmed.cygnus.com>
11230
11231 * Makefile.in: Add libstub.
11232
11233 * configure.in: Ditto. Build libstub for targets that have cygmon
11234 support.
11235
11236 Tue Apr 14 18:01:55 1998 Ian Lance Taylor <ian@cygnus.com>
11237
11238 * configure.in: Don't set PICFLAG on ix86-cygwin32.
11239
11240 Tue Apr 14 12:24:45 1998 J. Kean Johnston <jkj@sco.com>
11241
11242 * configure.in: Recognise i[3456]96-*-sysv5* as a valid host, and
11243 use mh-sysv5 if specified. Support gprof on SCO Open Server.
11244
11245 Tue Apr 14 11:33:51 1998 Krister Walfridsson <cato@df.lth.se>
11246
11247 * configure: Define DEFAULT_M4 by searching PATH.
11248 * Makfile.in: Use DEFAULT_M4.
11249
11250 Mon Apr 13 15:37:24 1998 Ian Lance Taylor <ian@cygnus.com>
11251
11252 * ltconfig: Add cygwin32 support.
11253
11254 * Makefile.in, configure.in: Add libtool as a native only directory
11255 to configure and build.
11256
11257 Sun Apr 12 20:58:46 1998 Jeffrey A Law (law@cygnus.com)
11258
11259 * Makefile.in (INSTALL_MODULES): Remove texinfo.
11260
11261 Wed Apr 8 13:18:56 1998 Philippe De Muyter <phdm@macqel.be>
11262
11263 * Makefile.in (EXTRA_GCC_FLAGS): XFOO lines shortened.
11264
11265 Thu Apr 2 14:48:44 1998 Geoffrey Noer <noer@cygnus.com>
11266
11267 * Makefile.in: add ash make rules
11268 * configure.in: add ash to native_only and host_tools lists
11269
11270 Thu Mar 26 12:53:20 1998 Tom Tromey <tromey@cygnus.com>
11271
11272 * Makefile.in (all-gettext, all-intl): New targets.
11273 (ALL_MODULES): Added all-gettext, all-intl.
11274 (CROSS_CHECK_MODULES): Added check-gettext, check-intl.
11275 (INSTALL_MODULES): Added install-gettext, install-intl.
11276 (CLEAN_MODULES): Added clean-gettext, clean-intl.
11277
11278 * configure.in (host_tools): Added gettext.
11279 (native_only): Likewise.
11280 (noconfigdirs) [various cases]: Likewise.
11281 (host_libs): Added intl.
11282
11283 Thu Mar 26 15:00:11 1998 Keith Seitz <keiths@onions.cygnus.com>
11284
11285 * configure: Do not disable building gdbtk for cygwin32 hosts.
11286
11287 Wed Mar 25 10:04:18 1998 Nick Clifton <nickc@cygnus.com>
11288
11289 * configure.in: Add thumb-coff target.
11290 * config.sub: Add thumb-coff target.
11291
11292 Wed Mar 25 11:49:12 1998 Jason Molenda (crash@bugshack.cygnus.com)
11293
11294 * Makefile.in: Revert yesterday's change.
11295 (all-target-winsup): all-target-librx stays out of here.
11296
11297 Tue Mar 24 16:58:29 1998 Jason Molenda (crash@bugshack.cygnus.com)
11298
11299 * Makefile.in (TARGET_CONFIGDIRS, ALL_TARGET_MODULES,
11300 CONFIGURE_TARGET_MODULES, CHECK_TARGET_MODULES,
11301 INSTALL_TARGET_MODULES, CLEAN_TARGET_MODULES, all-target-winsup):
11302 Remove references to librx and libg++.
11303
11304 Tue Mar 24 18:28:12 1998 Eric Mumpower <nocturne@cygnus.com>
11305
11306 * Makefile.in (BASE_FLAGS_TO_PASS): Pass $(lispdir) down to
11307 recursive makes
11308
11309 Tue Mar 24 11:37:45 1998 Ian Lance Taylor <ian@cygnus.com>
11310
11311 * Makefile.in (CC_FOR_TARGET): Use $(TARGET_SUBDIR) when passing -B
11312 for newlib directory.
11313 (CXX_FOR_TARGET): Likewise.
11314
11315 Mon Mar 23 11:30:21 1998 Jeffrey A Law (law@cygnus.com)
11316
11317 * ltconfig: Update after libtool/ltconfig.in change for
11318 hpux11.
11319
11320 Fri Mar 20 18:51:43 1998 Ian Lance Taylor <ian@cygnus.com>
11321
11322 * ltconfig, ltmain.sh: Update to libtool 1.2.
11323
11324 Fri Mar 20 09:32:14 1998 Manfred Hollstein <manfred@s-direktnet.de>
11325
11326 * Makefile.in (install-gcc): Don't specify LANGUAGES here.
11327 (install-gcc-cross): Instead, override LANGUAGES here.
11328
11329 1998-03-18 Dave Love <d.love@dl.ac.uk>
11330
11331 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): Set CONFIG_SITE to a
11332 non-existent file since /dev/null loses with bash 2.0/autoconf 2.12.
11333
11334 Wed Mar 18 09:24:59 1998 Nick Clifton <nickc@cygnus.com>
11335
11336 * configure.in: Add Thumb-pe target.
11337
11338 Tue Mar 17 16:59:00 1998 Syd Polk <spolk@cygnus.com>
11339
11340 * Makefile.in - changed sn targets to snavigator
11341 * configure.in - changed sn targets to snavigator
11342
11343 Tue Mar 17 10:33:28 1998 Manfred Hollstein <manfred@s-direktnet.de>
11344
11345 * config-ml.in: After building symlink tree call make distclean
11346 if a Makefile got linked into ${ml_dir}/${ml_libdir}; this happens
11347 to be the case for libiberty.
11348
11349 Tue Mar 17 10:22:37 1998 H.J. Lu (hjl@gnu.ai.mit.edu)
11350
11351 * configure: When making link, also check the current
11352 directory. The configure scripts may create one.
11353
11354 Fri Mar 6 01:02:03 1998 Richard Henderson <rth@cygnus.com>
11355
11356 * config.sub: Accept alphapca56 and alphaev6 properly.
11357
11358 Fri Mar 6 00:14:55 1998 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
11359
11360 * configure.in: Revert 3 Jan change for powerpc-linux-gnulibc1.
11361
11362 Mon Feb 23 15:09:18 1998 Bruno Haible <bruno@linuix.mathematik.uni-karlsruhe.de
11363
11364 * config.sub (sco5): Fix typo.
11365
11366 Mon Feb 23 14:46:06 1998 Ian Lance Taylor <ian@cygnus.com>
11367
11368 * Makefile.in (INSTALL_MODULES): Move install-tcl before
11369 install-itcl.
11370 (install-itcl): Remove dependency on install-tcl.
11371
11372 Mon Feb 23 09:53:28 1998 Mark Alexander <marka@cygnus.com>
11373
11374 * configure.in: Remove libgloss from noconfigdirs for MN10300.
11375
11376 Thu Feb 19 13:40:41 1998 Ian Lance Taylor <ian@cygnus.com>
11377
11378 * configure.in: Don't build libgui for a cygwin32 target when not on
11379 a cygwin32 host.
11380
11381 Wed Feb 18 12:29:00 1998 Jason Molenda (crash@bugshack.cygnus.com)
11382
11383 * configure (redirect): Set to null, so default behavior of
11384 configure is now --verbose.
11385
11386 1998-02-16 Dave Love <d.love@dl.ac.uk>
11387
11388 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): Run configure with
11389 CONFIG_SITE=/dev/null to forestall lossage with site configuration.
11390
11391 Mon Feb 16 12:23:53 1998 Manfred Hollstein <Manfred.Hollstein@ks.sel.alcatel.de>
11392
11393 * Makefile.in (BASE_FLAGS_TO_PASS, EXTRA_TARGET_FLAGS): Really add
11394 this change to sync Makefile.in with its ChangeLog entries.
11395
11396 Thu Feb 12 15:03:08 1998 H.J. Lu <hjl@gnu.org>
11397
11398 * ltmain.sh (mkdir): Check that the directory doesn't exist
11399 before we exit with error, so that we don't get races during
11400 parallel builds.
11401
11402 Sat Feb 7 15:19:18 1998 Ian Lance Taylor <ian@cygnus.com>
11403
11404 * ltconfig, ltmain.sh: Update from libtool 1.0i.
11405
11406 Fri Feb 6 01:33:52 1998 Manfred Hollstein <manfred@s-direktnet.de>
11407
11408 * Makefile.in (BASE_FLAGS_TO_PASS): Don't pass PICFLAG and
11409 PICFLAG_FOR_TARGET.
11410 (EXTRA_TARGET_FLAGS): Don't pass PICFLAG_FOR_TARGET.
11411
11412 * configure: Emit a definition for the new macro enable_shared
11413 into each Makefile.
11414
11415 Thu Feb 5 17:01:12 1998 Jason Molenda (crash@bugshack.cygnus.com)
11416
11417 * configure.in (host_tools, native_only): Add libtool.
11418
11419 Wed Feb 4 16:53:58 1998 Geoffrey Noer <noer@cygnus.com>
11420
11421 * configure.in: add target-gperf to noconfigdirs for Cygwin32.
11422 Fix typo in ming config comment.
11423
11424 Wed Feb 4 18:56:13 1998 Ian Lance Taylor <ian@cygnus.com>
11425
11426 * ltconfig, ltmain.sh: Update from libtool 1.0h.
11427
11428 Mon Feb 2 19:38:19 1998 Ian Lance Taylor <ian@cygnus.com>
11429
11430 * config.sub: Add tic30 cases, and map c30 to tic30.
11431
11432 Sun Feb 1 02:40:41 1998 Richard Henderson <rth@cygnus.com>
11433
11434 * Makefile.in (TARGET_CONFIGDIRS): Add libf2c.
11435 (ALL_TARGET_MODULES, CONFIGURE_TARGET_MODULES): Similarly
11436 (CHECK_TARGET_MODULES, INSTALL_TARGET_MODULES): Similarly
11437 (CLEAN_TARGET_MODULES): Similarly
11438 (all-target-libf2c): Add dependences.
11439 * configure.in (target_libs): Add libf2c.
11440
11441 Fri Jan 30 17:18:32 1998 Geoffrey Noer <noer@cygnus.com>
11442
11443 * configure.in: Remove expect from noconfigdirs when target
11444 is cygwin32. OK to build expect and dejagnu with Canadian
11445 Cross.
11446
11447 Wed Jan 28 12:58:49 1998 Ian Lance Taylor <ian@cygnus.com>
11448
11449 * configure.in: Do build expect, dejagnu, and cvssrc for a cygwin32
11450 host.
11451
11452 * config.guess: Use ${UNAME_MACHINE} rather than i386 for cygwin32
11453 and mingw32.
11454
11455 Wed Jan 28 10:26:37 1998 Manfred Hollstein <manfred@s-direktnet.de>
11456
11457 * Makefile.in (BASE_FLAGS_TO_PASS): Remove passing $(local_prefix)
11458 here as it is not defined in the toplevel Makefile.
11459
11460 Tue Jan 27 23:25:06 1998 Manfred Hollstein <manfred@s-direktnet.de>
11461
11462 * configure (package_makefile_rules_frag): New variable, which names
11463 a file with generic rules, ...
11464 Change comment to mention we now have FIVE parts.
11465 * configure: Undo last change.
11466
11467 Tue Jan 27 23:15:55 1998 Lassi A. Tuura <lat@iki.fi>
11468
11469 * config.guess: More accurate determination of HP processor types.
11470 * config.sub: More accurate determination of HP processor types.
11471
11472 Sat Jan 24 01:59:45 1998 Manfred Hollstein <manfred@s-direktnet.de>
11473
11474 * configure (package_makefile_frag): Move inserting the
11475 ${package_makefile_frag} to where it should be according
11476 to the comment.
11477
11478 Fri Jan 23 00:29:28 1998 Philip Blundell <pb@nexus.co.uk>
11479
11480 * config.guess: Add support for Linux/ARM.
11481
11482 Thu Jan 22 15:14:01 1998 Fred Fish <fnf@cygnus.com>
11483
11484 * .cvsignore: Remove *-info and *-install since they match
11485 release-info and mpw-install, which we don't want to just ignore.
11486
11487 Thu Jan 22 01:38:33 1998 Richard Henderson <rth@cygnus.com>
11488
11489 * configure.in: Revert 3 Jan change for alpha-linux-gnulibc1.
11490
11491 Sat Jan 17 21:28:08 1998 Pieter Nagel <pnagel@epiuse.co.za>
11492
11493 * Makefile.in (FLAGS_TO_PASS): Pass down gcc_include_dir and
11494 local_prefix to sub-make invocations.
11495
11496 Sat Jan 17 21:04:59 1998 H.J. Lu (hjl@gnu.org)
11497
11498 * configure.in: Check makefile fragments in the source
11499 directory.
11500
11501 Fri Jan 16 00:41:37 1998 Alexandre Oliva <oliva@dcc.unicamp.br>
11502
11503 * configure.in: Check whether host and target makefile
11504 fragments exist before adding them to *_makefile_frag.
11505
11506 Wed Jan 14 23:39:10 1998 Bob Manson <manson@charmed.cygnus.com>
11507
11508 * configure.in (target_configdirs): Add cygmon for sparc64-elf.
11509
11510 Wed Jan 14 12:48:07 1998 Keith Seitz <keiths@pizza.cygnus.com>
11511
11512 * configure.in: Make sure we only replace RPATH_ENVVAR on
11513 lines which begin with RPATH_ENVVAR, i.e. add "^" to the
11514 regexp to sed.
11515
11516 * Makefile.in (BASE_FLAGS_TO_PASS): Pass RRPATH_ENVVAR down
11517 to sub-makes.
11518
11519 1998-01-13 Lee Iverson (leei@ai.sri.com)
11520
11521 * config-ml.in (multi-do): LDFLAGS must include multilib
11522 designator.
11523
11524 Tue Jan 13 01:13:24 1998 Robert Lipe (robertl@dgii.com)
11525
11526 * config.guess: Recognize i[3456]-i586-UnixWare7-sysv5.
11527
11528 Sun Jan 4 01:06:55 1998 Mumit Khan <khan@xraylith.wisc.edu>
11529
11530 * config.sub: Add mingw32 support.
11531 * configure.in: Likewise.
11532
11533 Sat Jan 3 12:11:05 1998 Franz Sirl <franz.sirl-kernel@lauterbach.com>
11534
11535 * configure.in: Finalize support for {alpha|powerpc}*-*-linux-gnulibc1
11536
11537 Sun Dec 28 11:28:58 1997 Jeffrey A Law (law@cygnus.com)
11538
11539 * Makefile.in (INSTALL_TARGET): Do install-gcc first.
11540 * configure (gxx_include_dir): Provide a definition for subdirs
11541 which do not use autoconf.
11542
11543 Wed Dec 24 22:46:55 1997 Jeffrey A Law (law@cygnus.com)
11544
11545 * config.guess: Sync with egcs. Picks up new alpha support,
11546 BeOS & some additional linux support.
11547
11548 Tue Dec 23 12:44:24 1997 Jeffrey A Law (law@cygnus.com)
11549
11550 * config.guess: HP 9000/803 is a PA1.1 machine.
11551
11552 Mon Dec 22 02:39:24 1997 Richard Henderson <rth@cygnus.com>
11553
11554 * configure.in: It's alpha*-...
11555
11556 Sun Dec 21 16:53:12 1997 H.J. Lu (hjl@gnu.ai.mit.edu)
11557
11558 * configure.in (host_makefile_frag, target_makefile_frag):
11559 Handle multiple config files.
11560 (alpha-*-linux*): Treat alpha-*-linux* as alpha-*-linux* and
11561 alpha-*-*.
11562
11563 Thu Dec 18 13:13:03 1997 Doug Evans <devans@canuck.cygnus.com>
11564
11565 * mkdep: New file.
11566
11567 Wed Dec 17 09:53:02 1997 Michael Meissner <meissner@cygnus.com>
11568
11569 * configure.in (d30v-*-*): Allow configuring of libide, vmake, etc.
11570
11571 Tue Dec 16 17:36:05 1997 Ian Lance Taylor <ian@cygnus.com>
11572
11573 * Makefile.in: Add libgui directory.
11574 (GDB_TK): Add all-libgui.
11575 * configure.in: Add libgui directory.
11576 * configure: Add all-libgui to GDB_TK.
11577
11578 Mon Dec 15 16:12:28 1997 Nick Clifton <nickc@cygnus.com>
11579
11580 * config-ml.in (multidirs): Add m32r to multilib list.
11581
11582 Fri Dec 12 10:43:31 1997 Brendan Kehoe <brendan@canuck.cygnus.com>
11583
11584 * Makefile.in (all-target-gperf): Change dependency to
11585 all-target-libstdc++.
11586
11587 Thu Dec 11 23:30:51 1997 Fred Fish <fnf@ninemoons.com>
11588
11589 * config.guess: Add BeOS support.
11590
11591 Wed Dec 10 15:10:38 1997 Ian Lance Taylor <ian@cygnus.com>
11592
11593 Source directory cvs renamed to cvssrc:
11594 * configure.in (host_tools): Change cvs to cvssrc.
11595 (native_only): Likewise.
11596 (noconfigdirs) [various cases]: Likewise.
11597 * Makefile.in (ALL_MODULES): Change all-cvs to all-cvssrc.
11598 (CROSS_CHECK_MODULES): Change check-cvs to check-cvssrc.
11599 (INSTALL_MODULES): Change install-cvs to install-cvssrc.
11600 (CLEAN_MODULES): Change clean-cvs to clean-cvssrc.
11601 (all-cvssrc): Rename target from all-cvs.
11602
11603 Wed Dec 3 07:55:59 1997 Jeffrey A Law (law@cygnus.com)
11604
11605 * configure (gxx_include_dir): Fix thinko.
11606
11607 Tue Dec 2 10:55:34 1997 Jeffrey A Law (law@cygnus.com)
11608
11609 * Makefile.in (INSTALL_TARGET_CROSS): Define.
11610 (install-cross, install-gcc-cross): New targets.
11611
11612 Tue Dec 2 10:08:31 1997 Nick Clifton <nickc@cygnus.com>
11613
11614 * configure.in (noconfigdirs): Add support for Thumb target.
11615
11616 * config.sub (maybe_os): Add support for Thumb target.
11617
11618 Sun Nov 30 16:12:27 1997 Bob Manson <manson@charmed.cygnus.com>
11619
11620 * Makefile.in: Add rules for cygmon.
11621
11622 * configure.in: Build cygmon for sparc-elf and sparclite-aout.
11623
11624 Thu Nov 27 01:31:30 1997 Jeffrey A Law (law@cygnus.com)
11625
11626 * Makefile.in (INSTALL_TARGET): Do install-gcc first.
11627 * configure (gxx_include_dir): Provide a definition for subdirs
11628 which do not use autoconf.
11629
11630 Wed Nov 26 11:53:33 1997 Keith Seitz <keiths@onions.cygnus.com>
11631
11632 * Makefile.in, configure, configure.in, ChangeLog: merge with foundry's
11633 11/18/97 build
11634
11635 Wed Nov 26 16:08:50 1997 Jeffrey A Law (law@cygnus.com)
11636
11637 * From Franz Sirl.
11638 * config.guess (powerpc*-*-linux): Handle glibc2 beta release
11639 found on RedHat Linux systems.
11640
11641 Fri Nov 21 09:51:01 1997 Jeffrey A Law (law@cygnus.com)
11642
11643 * config.guess (alpha stuff): Merge with FSF to avoid incorrect
11644 guesses.
11645
11646 Thu Nov 13 11:38:37 1997 Jeffrey A Law (law@cygnus.com)
11647
11648 * configure.in (i[3456]86-ncr-sysv4.3*): Tweak.
11649
11650 Mon Nov 10 15:23:21 1997 H.J. Lu <hjl@gnu.ai.mit.edu>
11651
11652 * ltmain.sh: If mkdir fails, check whether the directory was created
11653 anyhow by some other process.
11654
11655 Mon Nov 10 14:38:03 1997 Michael Meissner <meissner@cygnus.com>
11656
11657 * configure.in (d30v-*-*): Configure all directories.
11658
11659 Sun Nov 9 17:36:20 1997 Michael Meissner <meissner@cygnus.com>
11660
11661 * configure.in (d30v-*-*): Configure newlib, libiberty directories
11662 for the D30V.
11663
11664 Sat Nov 8 14:42:59 1997 Michael Meissner <meissner@cygnus.com>
11665
11666 * configure.in (d30v-*-*): Configure target-libgloss on the D30V.
11667
11668 Fri Nov 7 10:34:09 1997 Rob Savoye <rob@darkstar.cygnus.com>
11669
11670 * include/libiberty.h: Add extern "C" { so it can be used with C++
11671 progrms.
11672 * include/remote-sim.h: Add extern "C" { so it can be used with C++
11673 programs.
11674
11675 Thu Oct 30 11:09:29 1997 Michael Meissner <meissner@cygnus.com>
11676
11677 * configure.in (d30v-*-*): Configure GCC now.
11678
11679 Mon Oct 27 13:17:24 1997 Stan Shebs <shebs@andros.cygnus.com>
11680
11681 * configure.in: Remove a "second pass" of tweaking noconfigdirs,
11682 is no longer needed.
11683
11684 Mon Oct 27 12:03:53 1997 Jason Merrill <jason@yorick.cygnus.com>
11685
11686 * Makefile.in: check-target-libio depends on all-target-libstdc++.
11687
11688 Sun Oct 26 11:48:27 1997 Manfred Hollstein (manfred@s-direktnet.de)
11689
11690 * Makefile.in (bootstrap-lean): Combined with `normal' bootstrap
11691 targets using "$@" to provide support for similar but not identical
11692 targets without having to duplicate code.
11693
11694 Mon Oct 20 15:28:49 1997 Klaus K"ampf <kkaempf@progis.de>
11695
11696 * makefile.vms: Fix to work with DEC C.
11697
11698 Tue Oct 7 23:58:57 1997 Gavin Koch <gavin@cygnus.com>
11699
11700 * config.sub: Add mips-tx39-elf to marketing names.
11701
11702 Tue Oct 7 14:24:41 1997 Ian Lance Taylor <ian@cygnus.com>
11703
11704 * ltmain.sh: Handle symlinks in generated script.
11705
11706 Wed Oct 1 13:11:27 1997 Ian Lance Taylor <ian@cygnus.com>
11707
11708 * configure: Handle autoconf style directory options: --bindir,
11709 --datadir, --includedir, --infodir, --libdir, --libexecdir,
11710 --mandir, --oldincludedir, --sbindir, --sharedstatedir,
11711 --sysconfdir.
11712 * Makefile.in (sbindir, libexecdir, sysconfdir): New variables.
11713 (sharedstatedir, localstatedir, oldincludedir): New variables.
11714 (BASE_FLAGS_TO_PASS): Pass down bindir, datadir, includedir,
11715 infodir, libdir, libexecdir, localstatedir, mandir, oldincludedir,
11716 sbindir, sharedstatedir, and sysconfdir.
11717
11718 Mon Sep 29 00:38:08 1997 Aaron Jackson <jackson@negril.msrce.howard.edu>
11719
11720 * Makefile.in (bootstrap-lean): New target.
11721
11722 Wed Sep 24 18:06:27 1997 Stu Grossman <grossman@babylon-5.cygnus.com>
11723
11724 * configure.in (d30v): Remove tcl, tk, expect, gdb, itcl, tix, db,
11725 sn, and gnuserv from noconfigdirs.
11726
11727 Wed Sep 24 15:18:32 1997 Ian Lance Taylor <ian@cygnus.com>
11728
11729 * ltmain.sh: Tweak shell pattern to avoid bug in NetBSD /bin/sh.
11730
11731 Thu Sep 18 23:58:27 1997 Jeffrey A Law (law@cygnus.com)
11732
11733 * Makefile.in (cross): New target.
11734
11735 Thu Sep 18 21:43:23 1997 Alexandre Oliva <oliva@dcc.unicamp.br>
11736 Jeff Law <law@cygnus.com>
11737
11738 * Makefile.in (bootstrap2, bootstrap3): New targets.
11739 (all-bootstrap): Remove outdated and confusing target.
11740 (bootstrap, bootstrap2, bootstrap3): Don't pass BOOT_CFLAGS down.
11741
11742 Thu Sep 18 15:37:42 1997 Andrew Cagney <cagney@b1.cygnus.com>
11743
11744 * configure (tooldir): enable_gdbtk=YES for cygwin32, NO for
11745 windows. Consistent with gdb/configure.
11746
11747 1997-09-15 02:37 Ulrich Drepper <drepper@cygnus.com>
11748
11749 * configure.in: Name Linux target fragment.
11750
11751 * configure: Rewrite so that project Makefile fragment is inserted
11752 first and appears last in the resulting Makefile.
11753
11754 Tue Sep 16 09:55:07 1997 Andrew Cagney <cagney@b1.cygnus.com>
11755
11756 * Makefile.in (install-itcl): Install tcl first.
11757
11758 Fri Sep 12 16:19:20 1997 Geoffrey Noer <noer@cygnus.com>
11759
11760 * configure.in: remove bison from noconfigdirs for Cygwin32 host
11761
11762 Thu Sep 11 16:40:46 1997 H.J. Lu (hjl@gnu.ai.mit.edu)
11763
11764 * Makefile.in (local-distclean): Also remove mh-frag mt-frag.
11765
11766 * configure.in (skipdirs): Add target-librx for Linux.
11767 (alpha-*-linux*): Use config/mh-elfalphapic and config/mt-elfalphapic.
11768
11769 Wed Sep 10 21:29:54 1997 Jeffrey A Law (law@cygnus.com)
11770
11771 * Makefile.in (bootstrap): New target.
11772
11773 Wed Sep 10 15:19:22 1997 Jeffrey A Law (law@cygnus.com)
11774
11775 * config.sub: Accept 'amigados' for backward compatability.
11776
11777 Mon Sep 8 20:46:20 1997 Ian Lance Taylor <ian@cygnus.com>
11778
11779 * config.guess: Merge with FSF.
11780
11781 Sun Sep 7 23:18:32 1997 Fred Fish <fnf@ninemoons.com>
11782
11783 * config.sub: Change 'amigados' to 'amigaos' to match current usage.
11784
11785 Sun Sep 7 15:55:28 1997 Gavin Koch <gavin@cygnus.com>
11786
11787 * config.sub: Add "marketing-names" patch.
11788
11789 Fri Sep 5 16:11:28 1997 Joel Sherrill (joel@OARcorp.com)
11790
11791 * configure.in (*-*-rtems*): Do not build libgloss for rtems.
11792
11793 Fri Sep 5 12:27:17 1997 Jeffrey A Law (law@cygnus.com)
11794
11795 * config.sub: Handle v850-elf.
11796
11797 Wed Sep 3 22:01:58 1997 Fred Fish <fnf@ninemoons.com>
11798
11799 * .cvsignore (*-install): Remove.
11800
11801 Wed Sep 3 12:15:24 1997 Chris Provenzano <proven@cygnus.com>
11802
11803 * ltconfig: Set CONFIG_SHELL in libtool.
11804 * ltmain.sh: Use CONFIG_SHELL instead of /bin/sh
11805
11806 Mon Sep 1 16:45:44 1997 Jim Wilson <wilson@cygnus.com>
11807
11808 * configure.in (target_subdir): Set to libraries if enable_multilib.
11809
11810 Wed Aug 27 16:15:11 1997 Jim Wilson <wilson@cygnus.com>
11811
11812 * config.guess: Update from gcc directory.
11813
11814 Tue Aug 26 16:46:46 1997 Andrew Cagney <cagney@b1.cygnus.com>
11815
11816 * Makefile.in (all-sim): Depends on all-readline.
11817
11818 Wed Aug 20 19:57:37 1997 Jason Merrill <jason@yorick.cygnus.com>
11819
11820 * Makefile.in (BISON, YACC): Use $$s.
11821 (all-bison): Depend on all-texinfo.
11822
11823 Tue Aug 19 01:41:32 1997 Jason Merrill <jason@yorick.cygnus.com>
11824
11825 * Makefile.in (BISON): Add -L flag.
11826 (YACC): Likewise.
11827
11828 Mon Aug 18 11:30:50 1997 Nick Clifton <nickc@cygnus.com>
11829
11830 * configure.in (noconfigdirs): Add support for v850e target.
11831
11832 * config.sub (maybe_os): Add support for v850e target.
11833
11834 Mon Aug 18 11:30:50 1997 Nick Clifton <nickc@cygnus.com>
11835
11836 * configure.in (noconfigdirs): Add support for v850ea target.
11837
11838 * config.sub (maybe_os): Add support for v850ea target.
11839
11840 Mon Aug 18 09:24:06 1997 Gavin Koch <gavin@cygnus.com>
11841
11842 * config.sub: Add mipstx39. Delete r3900.
11843
11844 Mon Aug 18 17:20:10 1997 Jason Molenda (crash@godzilla.cygnus.co.jp)
11845
11846 * Makefile.in (all-autoconf): Depends on all-texinfo.
11847
11848 Fri Aug 15 23:09:26 1997 Michael Meissner <meissner@cygnus.com>
11849
11850 * config-ml.in ({powerpc,rs6000}*-*-*): Update to current AIX and
11851 eabi targets.
11852
11853 Thu Aug 14 14:42:17 1997 Ian Lance Taylor <ian@cygnus.com>
11854
11855 * configure: Get CFLAGS and CXXFLAGS from Makefile, if possible.
11856
11857 * configure: When handling a Canadian Cross, handle YACC as well as
11858 BISON. Just set BISON to bison. When setting YACC, prefer bison.
11859 * Makefile.in (all-bison): Depend upon all-texinfo.
11860
11861 Tue Aug 12 20:09:48 1997 Jason Merrill <jason@yorick.cygnus.com>
11862
11863 * Makefile.in (BISON): bison, not byacc or bison -y.
11864 (YACC): bison -y or byacc or yacc.
11865 (various): Add *-bison as appropriate.
11866 (taz): No need to mess with BISON anymore.
11867
11868 Tue Aug 12 22:33:08 1997 Ian Lance Taylor <ian@cygnus.com>
11869
11870 * configure: If OSTYPE matches *win32*, try to find a good value for
11871 CONFIG_SHELL.
11872
11873 Sun Aug 10 14:41:11 1997 Ian Lance Taylor <ian@cygnus.com>
11874
11875 * Makefile.in (taz): Get the version number from AM_INIT_AUTOMAKE in
11876 configure.in if it is present.
11877
11878 Sat Aug 9 00:58:01 1997 Ian Lance Taylor <ian@cygnus.com>
11879
11880 * Makefile.in (LD_FOR_TARGET): Change ld.new to ld-new.
11881
11882 Fri Aug 8 16:30:13 1997 Doug Evans <dje@canuck.cygnus.com>
11883
11884 * config.sub: Recognize `arc' cpu.
11885 * configure.in: Likewise.
11886 * config-ml.in: Likewise.
11887
11888 Thu Aug 7 11:02:34 1997 Ian Lance Taylor <ian@cygnus.com>
11889
11890 * Makefile.in ($(INSTALL_X11_MODULES)): Depend upon installdirs.
11891
11892 Wed Aug 6 16:27:29 1997 Chris Provenzano <proven@cygnus.com>
11893
11894 * configure: Changed sed delimiter from ':' to '|' when
11895 attempting to substitute ${config_shell} for SHELL. On
11896 NT ${config_shell} may contain a ':' in it.
11897
11898 Wed Aug 6 12:29:05 1997 Jason Merrill <jason@yorick.cygnus.com>
11899
11900 * Makefile.in (EXTRA_GCC_FLAGS): Fix for non-bash shells.
11901
11902 Wed Aug 6 00:42:35 1997 Ian Lance Taylor <ian@cygnus.com>
11903
11904 * Makefile.in (AS_FOR_TARGET): Change as.new to as-new.
11905
11906 Tue Aug 5 14:08:51 1997 Ian Lance Taylor <ian@cygnus.com>
11907
11908 * Makefile.in (NM_FOR_TARGET): Change nm.new to nm-new.
11909
11910 * ylwrap: If the program is a relative path, force it to be
11911 absolute.
11912
11913 Tue Aug 5 12:12:44 1997 Andrew Cagney <cagney@b1.cygnus.com>
11914
11915 * configure (tooldir): Set BISON to `bison -y' and not just bison.
11916
11917 Mon Aug 4 22:59:02 1997 Andrew Cagney <cagney@b1.cygnus.com>
11918
11919 * Makefile.in (CC_FOR_TARGET): When winsup/Makefile present,
11920 correctly specify the target build directory $(TARGET_SUBDIR)/winsup
11921 for libraries.
11922
11923 Mon Aug 4 12:40:24 1997 Jason Merrill <jason@yorick.cygnus.com>
11924
11925 * Makefile.in (EXTRA_GCC_FLAGS): Fix handling of macros with values
11926 separated by spaces.
11927
11928 Thu Jul 31 19:49:49 1997 Ian Lance Taylor <ian@cygnus.com>
11929
11930 * ylwrap: New file.
11931 * Makefile.in (DEVO_SUPPORT): Add ylwrap.
11932
11933 * ltmain.sh: Handle /bin/sh at start of install program.
11934
11935 * Makefile.in (DEVO_SUPPORT): Add ltconfig, ltmain.sh, and missing.
11936
11937 * ltconfig, ltmain.sh: New files, from libtool 1.0.
11938 * missing: New file, from automake 1.2.
11939
11940 Thu Jul 24 12:57:56 1997 Ian Lance Taylor <ian@cygnus.com>
11941
11942 * Makefile.in: Treat tix like tk, putting it in X11_MODULES. Add
11943 check-tk to CHECK_X11_MODULES.
11944
11945 Wed Jul 23 17:03:29 1997 Ian Lance Taylor <ian@cygnus.com>
11946
11947 * config.sub: Merge with FSF.
11948
11949 Tue Jul 22 19:08:29 1997 Ian Lance Taylor <ian@cygnus.com>
11950
11951 * config.guess: Merge with FSF.
11952
11953 Tue Jul 22 14:50:42 1997 Robert Hoehne <robert.hoehne@Mathematik.TU-Chemnitz.DE>
11954
11955 * configure: Treat msdosdjgpp like go32.
11956 * configure.in: Likewise. Don't remove gprof for go32.
11957
11958 * configure: Change Makefile.tem2 to Makefile.tm2.
11959
11960 Mon Jul 21 10:31:26 1997 Stephen Peters <speters@cygnus.com>
11961
11962 * configure.in (noconfigdirs): For alpha-dec-osf*, don't ignore grep.
11963
11964 Tue Jul 15 14:33:03 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
11965
11966 * install-sh (chmodcmd): Set to null if the DST directory already
11967 exists. Same as Nov 11th change.
11968
11969 Mon Jul 14 11:01:15 1997 Martin M. Hunt <hunt@cygnus.com>
11970
11971 * configure (GDB_TK): Needs itcl and tix.
11972
11973 Mon Jul 14 00:32:10 1997 Jason Merrill <jason@yorick.cygnus.com>
11974
11975 * config.guess: Update from FSF.
11976
11977 Fri Jul 11 11:57:11 1997 Martin M. Hunt <hunt@cygnus.com>
11978
11979 * Makefile.in (GDB_TK): Depend on itcl and tix.
11980
11981 Fri Jul 4 13:25:31 1997 Ian Lance Taylor <ian@cygnus.com>
11982
11983 * Makefile.in (INSTALL_PROGRAM_ARGS): New variable.
11984 (INSTALL_PROGRAM): Use $(INSTALL_PROGRAM_ARGS).
11985 (INSTALL_SCRIPT): New variable.
11986 (BASE_FLAGS_TO_PASS): Pass down INSTALL_SCRIPT.
11987 * configure.in: If host is *-*-cygwin32*, set INSTALL_PROGRAM_ARGS
11988 to -x.
11989 * install-sh: Add support for -x option.
11990
11991 Mon Jun 30 15:51:30 1997 Ian Lance Taylor <ian@cygnus.com>
11992
11993 * configure.in, Makefile.in: Treat tix like itcl.
11994
11995 Thu Jun 26 13:59:19 1997 Ian Lance Taylor <ian@cygnus.com>
11996
11997 * Makefile.in (WINDRES): New variable.
11998 (WINDRES_FOR_TARGET): New variable.
11999 (BASE_FLAGS_TO_PASS): Add WINDRES_FOR_TARGET.
12000 (EXTRA_HOST_FLAGS): Add WINDRES.
12001 (EXTRA_TARGET_FLAGS): Add WINDRES.
12002 (EXTRA_GCC_FLAGS): Add WINDRES.
12003 ($(DO_X)): Pass down WINDRES.
12004 ($(CONFIGURE_TARGET_MODULES)): Set WINDRES when configuring.
12005 * configure: Treat WINDRES like DLLTOOL, and WINDRES_FOR_TARGET like
12006 DLLTOOL_FOR_TARGET.
12007
12008 Wed Jun 25 15:01:26 1997 Felix Lee <flee@cygnus.com>
12009
12010 * configure.in: configure sim before gdb for win32-x-ppc
12011
12012 Wed Jun 25 12:18:54 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
12013
12014 Move gperf into the toplevel, from libg++.
12015 * configure.in (target_tools): Add target-gperf.
12016 (native_only): Add target-gperf.
12017 * Makefile.in (all-target-gperf): New target, depend on
12018 all-target-libg++.
12019 (configure-target-gperf): Empty rule.
12020 (ALL_TARGET_MODULES): Add all-target-gperf.
12021 (CONFIGURE_TARGET_MODULES): Add configure-target-gperf.
12022 (CHECK_TARGET_MODULES): Add check-target-gperf.
12023 (INSTALL_TARGET_MODULES): Add install-target-gperf.
12024 (CLEAN_TARGET_MODULES): Add clean-target-gperf.
12025
12026 Mon Jun 23 10:51:53 1997 Jeffrey A Law (law@cygnus.com)
12027
12028 * config.sub (mn10200): Recognize new basic machine.
12029
12030 Thu Jun 19 14:16:42 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
12031
12032 * configure.in: Don't set ENABLE_MULTILIB, so we'll be passing
12033 --enable-multilib down to subdirs; setting TARGET_SUBDIR was enough.
12034
12035 Tue Jun 17 15:31:20 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
12036
12037 * configure.in: If we're building mips-sgi-irix6* native, turn on
12038 ENABLE_MULTILIB and set TARGET_SUBDIR.
12039
12040 Tue Jun 17 12:20:59 1997 Tom Tromey <tromey@cygnus.com>
12041
12042 * Makefile.in (all-sn): Depend on all-grep.
12043
12044 Mon Jun 16 11:11:10 1997 Ian Lance Taylor <ian@cygnus.com>
12045
12046 * configure.in: Use mh-ppcpic and mt-ppcpic for powerpc*-* targets.
12047
12048 * configure: Set CFLAGS and CXXFLAGS, and substitute them into
12049 Makefile. From Jeff Makey <jeff@cts.com>.
12050 * Makefile.in: Add comment for CFLAGS and CXXFLAGS.
12051
12052 * Makefile.in (DISTBISONFILES): Remove.
12053 (taz): Don't futz with DISTBISONFILES. Change BISON to use
12054 $(DEFAULT_YACC).
12055
12056 * configure.in: Build itl, db, sn, etc., when building for native
12057 cygwin32.
12058
12059 * Makefile.in (LD): New variable.
12060 (EXTRA_HOST_FLAGS): Pass down LD.
12061 ($(DO_X)): Likewise.
12062
12063 Mon Jun 16 11:10:35 1997 Philip Blundell <Philip.Blundell@pobox.com>
12064
12065 * Makefile.in (INSTALL): Use $(SHELL) when executing install-sh.
12066
12067 Fri Jun 13 10:22:56 1997 Bob Manson <manson@charmed.cygnus.com>
12068
12069 * configure.in (targargs): Strip out any supplied --build argument
12070 before adding our own. Always add --build.
12071
12072 Thu Jun 12 21:12:28 1997 Bob Manson <manson@charmed.cygnus.com>
12073
12074 * configure.in (targargs): Pass --build if we're doing
12075 a cross-compile.
12076
12077 Fri Jun 6 21:38:40 1997 Rob Savoye <rob@chinadoll.cygnus.com>
12078
12079 * configure: Use '|' instead of ":" as the separator in
12080 sed. Otherwise sed chokes on NT path names with drive
12081 designators. Also look for "?:*" as the leading characters in an
12082 absolute pathname.
12083
12084 Mon Jun 2 13:05:20 1997 Gavin Koch <gavin@cygnus.com>
12085
12086 * config.sub: Support for r3900.
12087
12088 Wed May 21 17:33:31 1997 Ian Lance Taylor <ian@cygnus.com>
12089
12090 * configure.in: Use install-sh, not install.sh.
12091
12092 Wed May 14 16:06:51 1997 Ian Lance Taylor <ian@cygnus.com>
12093
12094 * Makefile.in (taz): Improve check for BISON so it doesn't try to
12095 apply it twice.
12096
12097 Fri May 9 17:22:05 1997 Ian Lance Taylor <ian@cygnus.com>
12098
12099 * Makefile.in (INSTALL_MODULES): Put install-opcodes before
12100 install-binutils.
12101
12102 Thu May 8 17:29:50 1997 Ian Lance Taylor <ian@cygnus.com>
12103
12104 * Makefile.in: Add automake targets.
12105 * configure.in (host_tools): Add automake.
12106
12107 Tue May 6 15:49:52 1997 Ian Lance Taylor <ian@cygnus.com>
12108
12109 * configure: Default CXX to c++, not gcc.
12110 * Makefile.in (CXX): Set to c++, not gcc.
12111 (CXX_FOR_TARGET): When cross, transform c++, not gcc.
12112
12113 Thu May 1 10:11:43 1997 Geoffrey Noer <noer@cygnus.com>
12114
12115 * install-sh: try appending a .exe if source file doesn't
12116 exist
12117
12118 Wed Apr 30 12:05:36 1997 Jason Merrill <jason@yorick.cygnus.com>
12119
12120 * configure.in: Turn on multilib by default.
12121 (cross_only): Remove target-libiberty.
12122
12123 * Makefile.in (all-gcc): Don't depend on libiberty.
12124
12125 Mon Apr 28 18:39:45 1997 Michael Snyder <msnyder@cleaver.cygnus.com>
12126
12127 * config.guess: improve algorithm for recognizing Gnu Hurd x86.
12128
12129 Thu Apr 24 19:30:07 1997 Ian Lance Taylor <ian@cygnus.com>
12130
12131 * Makefile.in (DEVO_SUPPORT): Add mpw-install.
12132 (DISTBISONFILES): Add ld/Makefile.in
12133
12134 Tue Apr 22 17:17:28 1997 Geoffrey Noer <noer@pizza.cygnus.com>
12135
12136 * configure.in: if target is cygwin32 but host isn't cygwin32,
12137 don't configure gdb tcl tk expect, not just gdb.
12138
12139 Mon Apr 21 13:33:39 1997 Tom Tromey <tromey@cygnus.com>
12140
12141 * configure.in: Added gnuserv everywhere sn appears.
12142
12143 * Makefile.in (ALL_MODULES): Added all-gnuserv.
12144 (CROSS_CHECK_MODULES): Added check-gnuserv.
12145 (INSTALL_MODULES): Added install-gnuserv.
12146 (CLEAN_MODULES): Added clean-gnuserv.
12147 (all-gnuserv): New target.
12148
12149 Thu Apr 17 13:57:06 1997 Per Fogelstrom <pefo@openbsd.org>
12150
12151 * config.guess: Fixes for MIPS OpenBSD systems.
12152
12153 Tue Apr 15 12:21:07 1997 Ian Lance Taylor <ian@cygnus.com>
12154
12155 * Makefile.in (INSTALL_XFORM): Remove.
12156 (BASE_FLAGS_TO_PASS): Remove INSTALL_XFORM.
12157
12158 * mkinstalldirs: New file, copied from automake.
12159 * Makefile.in (installdirs): Rename from install-dirs. Use
12160 mkinstalldirs. Change all users.
12161 (DEVO_SUPPORT): Add mkinstalldirs.
12162
12163 Mon Apr 14 11:21:38 1997 Ian Lance Taylor <ian@cygnus.com>
12164
12165 * install-sh: Rename from install.sh.
12166 * Makefile.in (INSTALL): Change install.sh to install-sh.
12167 (DEVO_SUPPORT): Likewise.
12168
12169 * configure: Use ${config_shell} with ${moveifchange}. From Thomas
12170 Graichen <graichen@rzpd.de>.
12171
12172 Fri Apr 11 16:37:10 1997 Niklas Hallqvist <niklas@appli.se>
12173
12174 * config.guess: Recognize OpenBSD systems correctly.
12175
12176 Fri Apr 11 17:07:04 1997 Jason Molenda (crash@godzilla.cygnus.co.jp)
12177
12178 * README, Makefile.in (ETC_SUPPORT): Remove references to
12179 cfg-paper*, configure.{texi,man,info*}._
12180
12181 Sun Apr 6 18:47:57 1997 Andrew Cagney <cagney@kremvax.cygnus.com>
12182
12183 * Makefile.in (all.normal): Ensure that gcc is built after all
12184 the x11 - ie gdb - targets.
12185
12186 Tue Apr 1 16:28:50 1997 Klaus Kaempf <kkaempf@progis.de>
12187
12188 * makefile.vms: Don't run conf-a-gas.
12189
12190 Mon Mar 31 16:26:55 1997 Joel Sherrill <joel@oarcorp.com>
12191
12192 * configure.in (hppa1.1-*-rtems*): New target, like hppa-*-*elf*.
12193
12194 Sun Mar 30 12:38:27 1997 Fred Fish <fnf@cygnus.com>
12195
12196 * configure.in: Remove noconfigdirs case since gdb also
12197 configures and builds for tic80-coff.
12198
12199 Fri Mar 28 18:28:52 1997 Ian Lance Taylor <ian@cygnus.com>
12200
12201 * configure: Set cache_file to config.cache.
12202 * Makefile.in (local-distclean): Remove config.cache.
12203
12204 Wed Mar 26 18:49:39 1997 Ian Lance Taylor <ian@cygnus.com>
12205
12206 * COPYING: Update FSF address.
12207
12208 Wed Mar 26 10:38:25 1997 Michael Meissner <meissner@cygnus.com>
12209
12210 * configure.in (tic80-*-*): Remove G++ libraries and libgloss from
12211 noconfigdirs.
12212
12213 Mon Mar 24 15:02:39 1997 Ian Lance Taylor <ian@cygnus.com>
12214
12215 * Makefile.in (install-dirs): Don't crash if prefix, and hence
12216 MAKEDIRS, is empty.
12217
12218 Mon Mar 24 12:40:55 1997 Doug Evans <dje@canuck.cygnus.com>
12219
12220 * config.sub: Tweak mn10300 entry.
12221
12222 Fri Mar 21 15:35:27 1997 Michael Meissner <meissner@cygnus.com>
12223
12224 * configure.in (host_tools): Put sim before gdb, so gdb's
12225 configure.tgt can determine if the simulator was configured.
12226
12227 Sun Mar 16 16:07:08 1997 Fred Fish <fnf@cygnus.com>
12228
12229 * config.sub: Move BeOS $os case to be with other Cygnus
12230 local cases.
12231
12232 Sun Mar 16 01:34:55 1997 Martin Hunt <hunt@cygnus.com>
12233
12234 * config.sub: Remove misplaced comment that broke Linux.
12235
12236 Sat Mar 15 22:50:15 1997 Fred Fish <fnf@cygnus.com>
12237
12238 * config.sub: Add BeOS support.
12239
12240 Mon Mar 10 13:30:11 1997 Tom Tromey <tromey@cygnus.com>
12241
12242 * Makefile.in (CHECK_X11_MODULES): Don't run check-tk.
12243
12244 Wed Mar 5 12:09:29 1997 Martin <hunt@cygnus.com>
12245
12246 * configure.in (noconfigdirs): Remove tcl and tk from
12247 noconfigdirs for cygwin32 builds.
12248
12249 Fri Feb 28 18:20:15 1997 Fred Fish <fnf@cygnus.com>
12250
12251 * configure.in (tic80-*-*): Remove ld from noconfigdirs.
12252
12253 Thu Feb 27 14:57:26 1997 Ken Raeburn <raeburn@cygnus.com>
12254
12255 * Makefile.in (GAS_SUPPORT_DIRS, BINUTILS_SUPPORT_DIRS): Remove
12256 make-all.com, use makefile.vms instead.
12257
12258 Tue Feb 25 18:46:14 1997 Stan Shebs <shebs@andros.cygnus.com>
12259
12260 * config.sub: Accept -lnews*.
12261
12262 Tue Feb 25 13:19:14 1997 Andrew Cagney <cagney@kremvax.tpgi.com.au>
12263
12264 * configure.in (noconfigdirs): Disable target-newlib,
12265 target-examples and target-libiberty for d30v.
12266
12267 Fri Feb 21 17:56:25 1997 Martin M. Hunt <hunt@pizza.cygnus.com>
12268
12269 * configure.in (noconfigdirs): Enable ld for d30v.
12270
12271 Fri Feb 21 20:58:51 1997 Michael Meissner <meissner@cygnus.com>
12272
12273 * configure.in (tic80-*-*): Build compiler.
12274
12275 Sun Feb 16 15:41:09 1997 Andrew Cagney <cagney@critters.cygnus.com>
12276
12277 * configure.in (d30v-*): Remove sim directory from list of
12278 unsupported d30v directories
12279
12280 Tue Feb 18 17:32:42 1997 Martin M. Hunt <hunt@pizza.cygnus.com>
12281
12282 * config.sub, configure.in: Add d30v target cpu.
12283
12284 Thu Feb 13 22:04:44 1997 Klaus Kaempf <kkaempf@progis.de>
12285
12286 * makefile.vms: New file.
12287 * make-all.com: Remove.
12288
12289 Wed Feb 12 12:54:18 1997 Jim Wilson <wilson@cygnus.com>
12290
12291 * Makefile.in (EXTRA_GCC_FLAGS): Add LIBGCC2_DEBUG_CFLAGS.
12292
12293 Sat Feb 8 20:36:49 1997 Michael Meissner <meissner@cygnus.com>
12294
12295 * Makefile.in (all-itcl): The rule is all-itcl, not all-tcl.
12296
12297 Tue Feb 4 11:39:29 1997 Tom Tromey <tromey@cygnus.com>
12298
12299 * Makefile.in (ALL_MODULES): Added all-db.
12300 (CROSS_CHECK_MODULES): Addec check-db.
12301 (INSTALL_MODULES): Added install-db.
12302 (CLEAN_MODULES): Added clean-db.
12303
12304 Mon Feb 3 13:29:36 1997 Ian Lance Taylor <ian@cygnus.com>
12305
12306 * config.guess: Merge with latest FSF sources.
12307
12308 Tue Jan 28 09:20:37 1997 Tom Tromey <tromey@cygnus.com>
12309
12310 * Makefile.in (ALL_MODULES): Added all-itcl.
12311 (CROSS_CHECK_MODULES): Added check-itcl.
12312 (INSTALL_MODULES): Added install-itcl.
12313 (CLEAN_MODULES): Added clean-itcl.
12314
12315 Thu Jan 23 01:44:27 1997 Geoffrey Noer <noer@cygnus.com>
12316
12317 * configure.in: build gdb for mn10200
12318
12319 Fri Jan 17 15:32:15 1997 Doug Evans <dje@canuck.cygnus.com>
12320
12321 * Makefile.in (all-target-winsup): Depend on all-target-libio.
12322
12323 Mon Jan 13 22:46:54 1997 Michael Meissner <meissner@tiktok.cygnus.com>
12324
12325 * configure.in (tic80-*-*): Turn off most targets right now.
12326
12327 Fri Jan 3 16:04:03 1997 Ian Lance Taylor <ian@cygnus.com>
12328
12329 * Makefile.in (MAKEINFO): Check for the existence of the Makefile,
12330 rather than the makeinfo program.
12331 (do-info): Depend upon all-texinfo.
12332
12333 Tue Dec 31 16:00:31 1996 Ian Lance Taylor <ian@cygnus.com>
12334
12335 * configure.in: Remove uses of config/mh-linux.
12336
12337 * config.sub, config.guess: Merge with latest FSF sources.
12338
12339 Fri Dec 27 23:04:33 1996 Fred Fish <fnf@cygnus.com>
12340
12341 * config.sub (case $basic_machine): Add tic80 entries.
12342
12343 Fri Dec 27 12:07:59 1996 Ian Lance Taylor <ian@cygnus.com>
12344
12345 * config.sub, config.guess: Merge with latest FSF sources.
12346
12347 Wed Dec 18 22:46:39 1996 Stan Shebs <shebs@andros.cygnus.com>
12348
12349 * mpw-build.in: Build ld before gcc, use NewFolderRecursive.
12350 * mpw-config.in: Test for NewFolderRecursive.
12351 * mpw-install: Use symbolic name for startup filename.
12352 * mpw-README: Add various additional details.
12353
12354 Wed Dec 18 13:11:46 1996 Jim Wilson <wilson@cygnus.com>
12355
12356 * configure.in (mips*-sgi-irix6*): Remove binutils from noconfigdirs.
12357
12358 Wed Dec 18 10:29:31 1996 Jeffrey A Law (law@cygnus.com)
12359
12360 * configure.in: Do build gcc and the target libraries for
12361 the mn10200.
12362
12363 Wed Dec 4 16:53:05 1996 Geoffrey Noer <noer@cygnus.com>
12364
12365 * configure.in: don't avoid building gdb for mn10300 any more
12366 * Makefile.in: double-quote GCC_FOR_TARGET line in EXTRA_GCC_FLAGS
12367 instead of single-quoting it.
12368
12369 Tue Dec 3 23:26:50 1996 Jason Merrill <jason@yorick.cygnus.com>
12370
12371 * configure.in: Don't use --with-stabs on IRIX 6.
12372
12373 Tue Dec 3 09:05:25 1996 Doug Evans <dje@canuck.cygnus.com>
12374
12375 * configure.in (m32r): Build gdb, libg++ now.
12376
12377 Sun Dec 1 00:18:59 1996 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
12378
12379 * configure.in (mips*-sgi-irix6*): Remove gdb and related
12380 directories from noconfigdirs.
12381
12382 Tue Nov 26 11:45:33 1996 Kim Knuttila <krk@cygnus.com>
12383
12384 * config.sub (basic_machine): added mips16 configuration
12385
12386 Sat Nov 23 19:26:22 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12387
12388 * config.sub: Handle d10v-unknown.
12389
12390 Sat Nov 23 10:23:01 1996 Gavin Koch <gavin@cygnus.com>
12391
12392 * config.sub: Handle v850-unknown.
12393
12394 Thu Nov 21 16:19:44 1996 Geoffrey Noer <noer@cygnus.com>
12395
12396 * Makefile.in: add findutils
12397 * configure.in: add findutils to list of host_tools
12398
12399 Wed Nov 20 10:09:01 1996 Jeffrey A Law (law@cygnus.com)
12400
12401 * config.sub: Handle mn10200 and mn10300.
12402
12403 Tue Nov 19 16:35:14 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12404
12405 * configure.in (d10v-*): Do not build librx.
12406
12407 Mon Nov 18 13:28:41 1996 Jeffrey A Law (law@cygnus.com)
12408
12409 * configure.in (mn10300): Build everything except gdb & libgloss.
12410
12411 Wed Nov 13 14:59:46 1996 Per Bothner <bothner@deneb.cygnus.com>
12412
12413 * config.guess: Patch for Dansk Data Elektronik servers,
12414 from Niels Skou Olsen <nso@dde.dk>.
12415
12416 For ncr, use /bin/uname rather than uname, since GNU uname does not
12417 support -p. Suggested by Mark Mitchell <mmitchell@usa.net>.
12418
12419 Patch for MIPS R4000 running System V,
12420 from Eric S. Raymond <esr@snark.thyrsus.com>.
12421
12422 Fix thinko for nextstep.
12423
12424 Patch for OSF1 in i?86, from Dan Murphy <dlm@osf.org> via Harlan Stenn.
12425
12426 Sat Jun 24 18:58:17 1995 Morten Welinder <terra+@cs.cmu.edu>
12427 * config.guess: Guess mips-dec-mach_bsd4.3.
12428
12429 Thu Oct 10 04:07:04 1996 Harlan Stenn <harlan@pfcs.com>
12430 * config.guess (i?86-ncr-sysv*): Emit just enough of the minor
12431 release numbers.
12432 * config.guess (mips-mips-riscos*): Emit just enough of the
12433 release number.
12434
12435 Tue Oct 8 10:37:22 1996 Frank Vance <fvance@waii.com>
12436 * config.guess (sparc-auspex-sunos*): Added.
12437 (f300-fujitsu-*): Added.
12438
12439 Wed Sep 25 22:00:35 1996 Jeff Woolsey <woolsey@jlw.com>
12440 * config.guess: Recognize a Tadpole as a sparc.
12441
12442 Wed Nov 13 00:53:09 1996 David J. MacKenzie <djm@churchy.gnu.ai.mit.edu>
12443
12444 * config.guess: Don't assume that NextStep version is either 2 or
12445 3. NextStep 4 (aka OpenStep 4) has come out now.
12446
12447 Mon Nov 11 23:52:03 1996 David J. MacKenzie <djm@churchy.gnu.ai.mit.edu>
12448
12449 * config.guess: Support Cray T90 that reports itself as "CRAY TS".
12450 From Rik Faith <faith@cs.unc.edu>.
12451
12452 Fri Nov 8 11:34:58 1996 David J. MacKenzie <djm@geech.gnu.ai.mit.edu>
12453
12454 * config.sub: Contributions from bug-gnu-utils to:
12455 Support plain "hppa" (no version given) architecture, reported by
12456 OpenStep.
12457 OpenBSD like NetBSD.
12458 LynxOs is not a hardware supplier.
12459
12460 * config.guess: Contributions from bug-gnu-utils to add support for:
12461 OpenBSD like NetBSD.
12462 Stratus systems.
12463 More Pyramid systems.
12464 i[n>4]86 Intel chips.
12465 M680[n>4]0 Motorola chips.
12466 Use unknown instead of lynx for hardware manufacturer.
12467
12468 Mon Nov 11 10:09:08 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
12469
12470 * install.sh (chmodcmd): Set to null if the DST directory already
12471 exists.
12472
12473 Mon Nov 11 10:43:41 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12474
12475 * configure.in (powerpc*-{eabi,elf,linux,rtem,sysv,solaris}*): Do
12476 not use mt-ppc target Makefile fragment any more.
12477
12478 Sun Nov 3 19:17:07 1996 Stu Grossman (grossman@critters.cygnus.com)
12479
12480 * configure.in (*-*-windows): Exclude everything but those dirs
12481 needed to build windows.
12482
12483 Tue Oct 29 16:41:31 1996 Doug Evans <dje@canuck.cygnus.com>
12484
12485 * Makefile.in (all-target-winsup): Depend on all-target-librx.
12486
12487 Mon Oct 28 17:32:46 1996 Stu Grossman (grossman@critters.cygnus.com)
12488
12489 * configure.in: Exclude mmalloc from i386-windows.
12490
12491 Thu Oct 24 09:22:46 1996 Stu Grossman (grossman@critters.cygnus.com)
12492
12493 * Undo my previous change.
12494
12495 Thu Oct 24 12:12:04 1996 Ian Lance Taylor <ian@cygnus.com>
12496
12497 * Makefile.in (EXTRA_GCC_FLAGS): Pass down GCC_FOR_TARGET
12498 unconditionally.
12499 (MAKEOVERRIDES): Define (revert this part of October 18 change).
12500
12501 Thu Oct 24 09:02:07 1996 Stu Grossman (grossman@critters.cygnus.com)
12502
12503 * Makefile.in (FLAGS_TO_PASS): Add $(HOST_FLAGS) to allow the
12504 host to add it's own flags.
12505
12506 Tue Oct 22 15:20:26 1996 Ian Lance Taylor <ian@cygnus.com>
12507
12508 * configure: Handle GCC_FOR_TARGET like CC_FOR_TARGET.
12509
12510 Fri Oct 18 13:37:13 1996 Ian Lance Taylor <ian@cygnus.com>
12511
12512 * Makefile.in (CC_FOR_TARGET): Check for xgcc, not Makefile.
12513 (CXX_FOR_TARGET): Likewise.
12514 (GCC_FOR_TARGET): Define.
12515 (BASE_FLAGS_TO_PASS): Remove GCC_FOR_TARGET.
12516 (EXTRA_GCC_FLAGS): Define GCC_FOR_TARGET based on whether
12517 CC_FOR_TARGET was specified on the command line.
12518 (MAKEOVERRIDES): Don't define.
12519
12520 Thu Oct 17 10:27:56 1996 Doug Evans <dje@canuck.cygnus.com>
12521
12522 * configure.in (m32r): Fix spelling of libg++ libs.
12523
12524 Thu Oct 10 10:37:17 1996 Stan Shebs <shebs@andros.cygnus.com>
12525
12526 * config.sub (-apple*): Remove, now redundant.
12527
12528 Thu Oct 10 12:30:54 1996 Ian Lance Taylor <ian@cygnus.com>
12529
12530 * configure: Don't get confused by CPU-VENDOR-linux-gnu.
12531
12532 * configure: Rework yesterday's sed script patch.
12533
12534 * config.sub: Merge with FSF.
12535
12536 Wed Oct 9 17:24:59 1996 Per Bothner <bothner@deneb.cygnus.com>
12537
12538 * config.guess: Merge from FSF.
12539
12540 1996-09-12 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
12541 * config.guess: Use pc instead of unknown, for pc clone systems.
12542 Change linux to linux-gnu.
12543
12544 Mon Jul 15 23:51:11 1996 Karl Heuer <kwzh@gnu.ai.mit.edu>
12545 * config.guess: Avoid non-portable tr syntax.
12546
12547 Wed Oct 9 06:06:46 1996 Jeffrey A Law (law@cygnus.com)
12548
12549 * test-build.mk (HOLES): Add "xargs" for gdb.
12550
12551 * configure: Avoid hpux10.20 sed bug.
12552
12553 Tue Oct 8 08:32:48 1996 Stu Grossman (grossman@critters.cygnus.com)
12554
12555 * configure.in: Add support for windows host
12556 (that is a build done under the Microsoft build environment).
12557
12558 Tue Oct 8 10:39:08 1996 Ian Lance Taylor <ian@cygnus.com>
12559
12560 * Makefile.in: Replace all uses of srcroot with s, to shrink
12561 command line lengths.
12562
12563 Patches from Geoffrey Noer <noer@cygnus.com>:
12564 * configure.in: If configuring for newlib, pass --with-newlib to
12565 subdirectories.
12566 * Makefile.in (CC_FOR_TARGET): If winsup/Makefile exists, pass a
12567 -Bnewlib/ and -Lwinsup to gcc.
12568 (CXX_FOR_TARGET): Likewise.
12569
12570 Mon Oct 7 10:59:35 1996 Ian Lance Taylor <ian@cygnus.com>
12571
12572 * Makefile.in (ETC_SUPPORT): Add configure.
12573
12574 Fri Oct 4 12:22:58 1996 Angela Marie Thomas (angela@cygnus.com)
12575
12576 * configure.in: Use config/mh-dgux386 for i[345]86-dg-dgux
12577 host configuration file.
12578
12579 Thu Oct 3 09:28:25 1996 Jeffrey A Law (law@cygnus.com)
12580
12581 * configure.in: Break mn10x00 support into separate
12582 mn10200 and mn10300 configurations.
12583 * config.sub: Likewise.
12584
12585 Wed Oct 2 22:27:52 1996 Jeffrey A Law (law@cygnus.com)
12586
12587 * configure.in: Add lots of stuff to noconfigdirs for
12588 the mn10x00 targets.
12589
12590 * config.sub, configure.in: Add mn10x00 support.
12591
12592 Wed Oct 2 15:52:36 1996 Klaus Kaempf <kkaempf@progis.de>
12593
12594 * make-all.com: Call conf-a-gas, not config-a-gas.
12595
12596 Tue Oct 1 01:28:41 1996 James G. Smith <jsmith@cygnus.co.uk>
12597
12598 * configure.in (noconfigdirs): Don't build libgloss for arm-coff
12599 targets.
12600
12601 Mon Sep 30 14:24:01 1996 Stan Shebs <shebs@andros.cygnus.com>
12602
12603 * mpw-README: Add much more detail for native PowerMac.
12604 * mpw-install: New file.
12605 * mpw-configure: Add --norecursion and --help options.
12606 * mpw-config.in: Translate readme and install files when
12607 copying to objdir.
12608 * mpw-build.in: Don't always depend on byacc and flex.
12609 (install-only-top): New action.
12610
12611 Fri Sep 27 17:39:44 1996 Stu Grossman (grossman@critters.cygnus.com)
12612
12613 * configure.in: You can now configure GDB for the v850.
12614
12615 Tue Sep 24 19:05:12 1996 Stan Shebs <shebs@andros.cygnus.com>
12616
12617 * configure.in (noconfigdirs): Don't configure any C++ dirs
12618 if targeting D10V.
12619
12620 Tue Sep 17 12:15:31 1996 Ian Lance Taylor <ian@cygnus.com>
12621
12622 * config.sub: Recognize mips64vr5000.
12623
12624 Mon Sep 16 17:00:52 1996 Ian Lance Taylor <ian@cygnus.com>
12625
12626 * configure.in: Use a single line for host_tools and native_only.
12627
12628 Mon Sep 9 12:21:30 1996 Doug Evans <dje@canuck.cygnus.com>
12629
12630 * config.sub, configure.in: Add entries for m32r.
12631
12632 Thu Sep 5 13:52:47 1996 Tom Tromey <tromey@creche.cygnus.com>
12633
12634 * Makefile.in (inet-install): Don't run install-gzip.
12635
12636 Wed Sep 4 17:26:13 1996 Stu Grossman (grossman@critters.cygnus.com)
12637
12638 * configure.in: Don't config lots of things for *-*-windows*.
12639
12640 Sat Aug 31 11:45:57 1996 Stan Shebs <shebs@andros.cygnus.com>
12641
12642 * mpw-config.in: Test for mpw-true, true, and null-command scripts.
12643 (host_libs, host_tools): Copy from configure.in.
12644 * mpw-configure: Don't complain about directories not found.
12645
12646 Thu Aug 29 16:44:58 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12647
12648 * configure.in (i[345]86): Recognize i686 for pentium pro.
12649 (i[3456]86-*-dgux*): Use config/mh-sysv for the host configuration
12650 file.
12651
12652 * config.guess (i[345]86): Ditto.
12653
12654 Mon Aug 26 18:34:42 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
12655
12656 * configure.in (noconfigdirs): Removed gdb for D10V.
12657
12658 Thu Aug 22 17:13:52 1996 Jeffrey A Law (law@cygnus.com)
12659
12660 * configure.in: Remove ld, target-libio, target-libg++, and
12661 target-libstdc++ from noconfigdirs.
12662
12663 Wed Aug 21 18:56:38 1996 Fred Fish <fnf@cygnus.com>
12664
12665 * configure: Fix three locations where shell scripts were
12666 being run directly rather than with config_shell.
12667
12668 Tue Aug 20 13:08:47 1996 J.T. Conklin <jtc@hippo.cygnus.com>
12669
12670 * configure.in (v850-*-*): Set up initial $noconfigdirs.
12671 * config.sub (basic_machine): Recognize v850.
12672
12673 Thu Aug 15 12:19:33 1996 Stan Shebs <shebs@andros.cygnus.com>
12674
12675 * mpw-configure: Handle multiple enable/disable options and
12676 pass them down recursively, handle -c and -s flags appropriately
12677 depending on choice of compiler, add escape mechanism for
12678 quoted arguments to gC.
12679
12680 Mon Aug 12 13:15:13 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12681
12682 * configure.in (powerpc*-*-*): For eabi, system V.4, Linux, and
12683 solaris targets, use config/mt-ppc to set C{,XX}FLAGS_FOR_TARGETS
12684 so that -mrelocatable-lib and -mno-eabi are used.
12685
12686 * Makefile.in (CONFIGURE_TARGET_MODULES): If target compiler does
12687 not support --print-multi-lib, don't abort.
12688
12689 Thu Aug 8 12:18:59 1996 Klaus Kaempf <kkaempf@progis.de>
12690
12691 * make-all.com: Run config-a-gas.
12692 * setup.com: Don't copy subdirectory files around.
12693
12694 Tue Jul 30 17:49:31 1996 Brendan Kehoe <brendan@cygnus.com>
12695
12696 * configure.in (*-*-ose): Remove exclusion of libgloss for this
12697 target, it now compiles correctly.
12698
12699 Sat Jul 27 15:10:43 1996 Stan Shebs <shebs@andros.cygnus.com>
12700
12701 * mpw-config.in: Generate Mac include for elf/dwarf2.h.
12702
12703 Tue Jul 23 10:47:04 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
12704
12705 * configure.in (d10v-*-*): Remove ld from $noconfigdirs.
12706
12707 Mon Jul 22 13:28:51 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
12708
12709 * configure.in (native_only): Add prms.
12710
12711 Mon Jul 22 12:27:58 1996 Ian Lance Taylor <ian@cygnus.com>
12712
12713 * Makefile.in (GAS_SUPPORT_DIRS): Add make-all.com and setup.com.
12714 (BINUTILS_SUPPORT_DIRS): Likewise.
12715
12716 Thu Jul 18 12:55:40 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12717
12718 * configure.in (d10v-*-*): Don't configure ld or gdb until the
12719 d10v support is added.
12720
12721 Wed Jul 17 14:33:09 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
12722
12723 * configure.in (d10v-*-*): New target.
12724
12725 Mon Jul 15 11:53:00 1996 Jeffrey A Law (law@cygnus.com)
12726
12727 * config.guess (HP 9000/811): Recognize this as a PA1.1
12728 machine.
12729
12730 Fri Jul 12 23:21:17 1996 Ken Raeburn <raeburn@cygnus.com>
12731
12732 * Makefile.in (do-tar-gz): New target, split out from tail end of
12733 taz target. Run each command separately, don't use pipes.
12734 (taz): Use it.
12735
12736 Fri Jul 12 12:08:04 1996 Stan Shebs <shebs@andros.cygnus.com>
12737
12738 * mpw-configure: Look for g-mpw-make.sed in config/mpw.
12739 * mpw-build.in: No builds should depend on building byacc or flex,
12740 they are assumed to be installed already.
12741
12742 Fri Jul 12 09:52:52 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12743
12744 * Makefile.in (CONFIGURE_TARGET_MODULES): Set r environment
12745 variable that CC_FOR_TARGET needs.
12746
12747 Thu Jul 11 10:09:45 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12748
12749 * Makefile.in (CONFIGURE_TARGET_MODULES): Determine if the multlib
12750 options have changed since the last time the subdirectory was
12751 configured, and if it has, reconfigure.
12752 (CLEAN_TARGET_MODULES): Delete multilib.out and tmpmulti.out, which
12753 CONFIGURE_TARGET_MODULES uses to remember the old multilib options.
12754
12755 Wed Jul 10 18:56:59 1996 Doug Evans <dje@canuck.cygnus.com>
12756
12757 * Makefile.in (ALL_MODULES,CROSS_CHECK_MODULES,INSTALL_MODULES,
12758 CLEAN_MODULES): Add bash.
12759 (all-bash): New target.
12760
12761 Mon Jul 8 17:33:14 1996 Jim Wilson <wilson@cygnus.com>
12762
12763 * configure.in (mips-sgi-irix6*): Use mh-irix6 instead of mh-irix5.
12764
12765 Mon Jul 1 13:31:35 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12766
12767 * config.sub (basic_machine): Recognize d10v as a valid processor.
12768
12769 Fri Jun 28 12:14:35 1996 Stan Shebs <shebs@andros.cygnus.com>
12770
12771 * mpw-configure: Add support for --bindir.
12772 * mpw-build.in: Use a GCC-specific build script for GCC actions.
12773
12774 Wed Jun 26 17:20:12 1996 Geoffrey Noer <noer@cygnus.com>
12775
12776 * configure.in: add bash, time, gawk to list of hosttools and things
12777 to only build for native toolchains
12778
12779 Tue Jun 25 23:09:03 1996 Jason Molenda (crash@godzilla.cygnus.co.jp)
12780
12781 * Makefile.in (docdir): Remove.
12782
12783 Tue Jun 25 19:00:08 1996 Jason Molenda (crash@godzilla.cygnus.co.jp)
12784
12785 * Makefile.in (datadir): Set to $(prefix)/share.
12786
12787 Mon Jun 24 23:26:07 1996 Geoffrey Noer <noer@cygnus.com>
12788
12789 * configure.in: build diff and patch for cygwin32-hosted
12790 toolchains.
12791
12792 Mon Jun 24 15:01:12 1996 Joel Sherrill <joel@merlin.gcs.redstone.army.mil>
12793
12794 * config.sub: Accept -rtems*.
12795
12796 Sun Jun 23 22:41:54 1996 Geoffrey Noer <noer@cygnus.com>
12797
12798 * configure.in: enable dosrel for cygwin32-hosted builds,
12799 remove diff from the list of things not buildable
12800 via Canadian Cross
12801
12802 Sat Jun 22 11:39:01 1996 Jason Merrill <jason@yorick.cygnus.com>
12803
12804 * Makefile.in (TARGET_SUBDIR): Move comment to previous line so we
12805 don't get ". ".
12806
12807 Fri Jun 21 17:24:48 1996 Jim Wilson <wilson@cygnus.com>
12808
12809 * configure.in (mips*-sgi-irix6*): Set noconfigdirs appropriately.
12810
12811 Thu Jun 20 16:57:40 1996 Ken Raeburn <raeburn@cygnus.com>
12812
12813 * Makefile.in (taz): Handle case where tex3patch didn't even get
12814 checked out. Also, if it was found, put the symlink in a new util
12815 subdirectory.
12816
12817 Thu Jun 20 12:20:33 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12818
12819 * config.guess (*:Linux:*:*): Add support for PowerPC Linux.
12820
12821 Tue Jun 18 14:24:12 1996 Klaus Kaempf (kkaempf@progis.de)
12822
12823 * config.sub: Recognize -openvms.
12824 * configure.in (alpha*-*-*vms*): Set noconfigdirs.
12825 * make-all.com, setup.com: New files.
12826
12827 Mon Jun 17 16:34:46 1996 Jason Merrill <jason@yorick.cygnus.com>
12828
12829 * Makefile.in (taz): tex3patch moved to texinfo/util.
12830
12831 Sat Jun 15 17:13:25 1996 Geoffrey Noer <noer@cygnus.com>
12832
12833 * configure: enable_gdbtk=no for cygwin32-hosted toolchains
12834 * configure.in: remove make from disable-if-Can-Cross list
12835 enable gdb if ${host} and ${target} are cygwin32
12836
12837 Fri Jun 7 18:16:52 1996 Harlan Stenn <harlan@pfcs.com>
12838
12839 * config.guess (i?86-ncr-sysv*): Emit minor release numbers.
12840 Recognize the NCR 4850 machine and NCR Pentium-based platforms.
12841
12842 Wed Jun 5 00:09:17 1996 Per Bothner <bothner@wombat.gnu.ai.mit.edu>
12843
12844 * config.guess: Combine mips-mips-riscos cases, and use cpp to
12845 distinguish sysv/svr4/bsd variants.
12846 Based on a patch from Harlan Stenn <harlan@pfcs.com>.
12847
12848 Fri Jun 7 14:24:49 1996 Tom Tromey <tromey@creche.cygnus.com>
12849
12850 * configure.in: Added copyright notice.
12851 * move-if-change: Added copyright notice.
12852
12853 Thu Jun 6 16:27:05 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12854
12855 * configure.in (powerpcle-*-solaris*): Until we get shared
12856 libraries working, don't build gdb, sim, make, tcl, tk, or
12857 expect.
12858
12859 Tue Jun 4 20:41:45 1996 Per Bothner <bothner@deneb.cygnus.com>
12860
12861 * config.guess: Merge with FSF:
12862
12863 Mon Jun 3 08:49:14 1996 Karl Heuer <kwzh@gnu.ai.mit.edu>
12864 * config.guess (*:Linux:*:*): Add guess for sparc-unknown-linux.
12865
12866 Fri May 24 18:34:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
12867 * config.guess (AViiON:dgux:*:*): Fix typo in recognizing mc88110.
12868
12869 Fri Apr 12 20:03:59 1996 Per Bothner <bothner@spiff.gnu.ai.mit.edu>
12870 * config.guess: Combine two OSF1 rules.
12871 Also recognize field test versions. From mjr@zk3.dec.com.
12872 * config.guess (dgux): Use /usr/bin/uname rather than uname,
12873 because GNU uname does not support -p. From pmr@pajato.com.
12874
12875 Tue Jun 4 11:07:25 1996 Tom Tromey <tromey@csk3.cygnus.com>
12876
12877 * Makefile.in (MAKEDIRS): Removed $(tooldir).
12878
12879 Tue May 28 12:30:50 1996 Stan Shebs <shebs@andros.cygnus.com>
12880
12881 * mpw-README: Document GCCIncludes.
12882
12883 Sun May 26 15:16:27 1996 Fred Fish <fnf@cygnus.com>
12884
12885 * configure.in (alpha-*-linux*): Set enable_shared to yes.
12886
12887 Tue May 21 15:41:39 1996 Stan Shebs <shebs@andros.cygnus.com>
12888
12889 * mpw-configure: Handle --enable-FOO and --disable-FOO.
12890
12891 Mon May 20 10:12:29 1996 Geoffrey Noer <noer@cygnus.com>
12892
12893 * configure.in (*-*-cygwin32): Configure make.
12894
12895 Tue May 7 14:19:42 1996 Tom Tromey <tromey@snuffle.cygnus.com>
12896
12897 * Makefile.in (inet-install): Quote value of INSTALL_MODULES.
12898
12899 Fri May 3 08:57:17 1996 Tom Tromey <tromey@lisa.cygnus.com>
12900
12901 * Makefile.in (all-inet): Depend on all-perl.
12902
12903 * Makefile.in (inet-install): New target.
12904
12905 * Makefile.in (all-inet): Depend on all-tcl.
12906 (all-inet): Depend on all-send-pr.
12907
12908 Tue Apr 30 13:55:51 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12909
12910 * configure.in (powerpcle-*-solaris*): Turn off tk and tcl
12911 temporarily.
12912
12913 Thu Apr 25 11:48:20 1996 Ian Lance Taylor <ian@cygnus.com>
12914
12915 * configure.in: Don't configure --with-gnu-ld on AIX.
12916
12917 Thu Apr 25 06:33:36 1996 Michael Meissner <meissner@wogglebug.tiac.net>
12918
12919 * configure.in (powerpcle-*-solaris*): Turn off gdb temporarily.
12920
12921 Tue Apr 23 09:07:39 1996 Tom Tromey <tromey@creche.cygnus.com>
12922
12923 * Makefile.in (ALL_MODULES): Added all-inet.
12924 (CROSS_CHECK_MODULES): Added check-inet.
12925 (INSTALL_MODULES): Added install-inet.
12926 (CLEAN_MODULES): Added clean-inet.
12927 (all-indent): New target.
12928
12929 * configure.in (host_tools): Added inet.
12930 (native_only): Added inet.
12931 (noconfigdirs): Added inet.
12932
12933 Fri Apr 19 15:35:29 1996 Ian Lance Taylor <ian@cygnus.com>
12934
12935 * configure.in: Don't configure libgloss if we are not configuring
12936 newlib.
12937
12938 Wed Apr 17 19:30:01 1996 Rob Savoye <rob@chinadoll.cygnus.com>
12939
12940 * configure.in: Don't configure libgloss for unsupported
12941 architectures.
12942
12943 Tue Apr 16 11:17:05 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12944
12945 * Makefile.in (CLEAN_MODULES): Add clean-apache.
12946
12947 Mon Apr 15 15:09:05 1996 Tom Tromey <tromey@creche.cygnus.com>
12948
12949 * Makefile.in (ALL_MODULES): Include all-apache.
12950 (CROSS_CHECK_MODULES): Include check-apache.
12951 (INSTALL_MODULES): Include install-apache.
12952 (all-apache): New target.
12953
12954 * configure.in: Added apache everywhere perl is seen.
12955
12956 Mon Apr 15 14:59:13 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12957
12958 * Makefile.in: Add support for clean-{module} and
12959 clean-target-{module} rules.
12960
12961 Wed Apr 10 21:37:41 PDT 1996 Marilyn E. Sander <msander@cygnus.com>
12962
12963 * configure.in (*-*-ose) do not build libgloss.
12964
12965 Mon Apr 8 16:16:20 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12966
12967 * config.guess (prep*:SunOS:5.*:*): Turn into
12968 powerpele-unknown-solaris2.
12969
12970 Mon Apr 8 14:45:41 1996 Ian Lance Taylor <ian@cygnus.com>
12971
12972 * configure.in: Permit --enable-shared to specify a list of
12973 directories.
12974
12975 Fri Apr 5 08:17:57 1996 Jason Molenda (crash@phydeaux.cygnus.com)
12976
12977 * configure.in (host==solaris): Pass only the first word of $CC
12978 to /usr/bin/which when checking if we're using /usr/ccs/bin/cc.
12979
12980 Fri Apr 5 03:16:13 1996 Jason Molenda (crash@phydeaux.cygnus.com)
12981
12982 * Makefile.in (BASE_FLAGS_TO_PASS): pass down $(MAKE).
12983
12984 Thu Mar 28 14:11:11 1996 Tom Tromey <tromey@creche.cygnus.com>
12985
12986 * Makefile.in (ALL_MODULES): Include all-perl.
12987 (CROSS_CHECK_MODULES): Include check-perl.
12988 (INSTALL_MODULES): Include install-perl.
12989 (ALL_X11_MODULES): Include all-guile.
12990 (CHECK_X11_MODULES): Include check-guile.
12991 (INSTALL_X11_MODULES): Include install-guile.
12992 (all-perl): New target.
12993 (all-guile): New target.
12994
12995 * configure.in (host_tools): Include perl and guile.
12996 (native_only): Include perl and guile.
12997 (noconfigdirs): Don't build guile and perl; no ports have been
12998 done.
12999
13000 Tue Mar 26 21:18:50 1996 Andrew Cagney <cagney@kremvax.highland.com.au>
13001
13002 * configure (--enable-*): Handle quoted option lists such as
13003 --enable-sim-cflags='-g0 -O' better.
13004
13005 Thu Mar 21 11:53:08 1996 Michael Meissner <meissner@tiktok.cygnus.com>
13006
13007 * Makefile.in ({,inst}all-target): New rule so we can make and
13008 install all of the target directories easily.
13009
13010 Wed Mar 20 18:10:57 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
13011
13012 * configure.in: Add missing global flag in sed substitution when
13013 deleting `target-' from ${configdirs}.
13014
13015 Thu Mar 14 19:15:06 1996 Ian Lance Taylor <ian@cygnus.com>
13016
13017 * Makefile.in (DO_X): Don't get confused if CC contains `=' in an
13018 option.
13019
13020 * configure.in (mips*-nec-sysvr4*): Use a host_makefile_frag of
13021 config/mh-necv4.
13022
13023 * install.sh: Correct misspelling of transformbasename.
13024
13025 * config.guess: Recognize mips-*-sysv*.
13026
13027 Mon Mar 11 15:36:42 1996 Dawn Perchik <dawn@critters.cygnus.com>
13028
13029 * config.sub: Recognize mon960.
13030
13031 Sun Mar 10 13:18:38 1996 Ian Lance Taylor <ian@cygnus.com>
13032
13033 * configure: Restore Canadian Cross handling of BISON and LEX,
13034 removed in Feb 20 change.
13035
13036 Fri Mar 8 20:07:09 1996 Per Bothner <bothner@kalessin.cygnus.com>
13037
13038 * README: Suggestions from Torbjorn Granlund <tege@matematik.su.se>:
13039 Mention make install. Remove the old copyright date as well the
13040 clumsy and rather pointless copyright on the README file.
13041
13042 Fri Mar 8 17:51:35 1996 Ian Lance Taylor <ian@cygnus.com>
13043
13044 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): If there is a
13045 Makefile after running symlink-tree, then run `make distclean' to
13046 avoid clobbering any generated files in srcdir.
13047
13048 Tue Mar 5 08:21:44 1996 J.T. Conklin <jtc@rtl.cygnus.com>
13049
13050 * configure.in (m68k-*-netbsd*): Build everything now.
13051
13052 Wed Feb 28 12:25:46 1996 Jason Merrill <jason@yorick.cygnus.com>
13053
13054 * Makefile.in (taz): Fix quoting.
13055
13056 Tue Feb 27 11:33:57 1996 Doug Evans <dje@charmed.cygnus.com>
13057
13058 * configure.in (sparclet-*-*): Build everything now.
13059
13060 Tue Feb 27 14:31:51 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
13061
13062 * configure.in (m68k-*-linux*): New host.
13063
13064 Mon Feb 26 14:32:44 1996 Ian Lance Taylor <ian@cygnus.com>
13065
13066 * configure: Check for bison before byacc.
13067
13068 Tue Feb 20 23:12:35 1996 Stu Grossman (grossman@critters.cygnus.com)
13069
13070 * Makefile.in configure: Change the way LEX and BISON/YACC are
13071 set. configure now defines DEFAULT_LEX and DEFAULT_YACC by
13072 searching PATH. These are used as fallbacks by Makefile.in if
13073 flex/bison/byacc aren't in objdir.
13074
13075 Mon Feb 19 11:45:30 1996 Ian Lance Taylor <ian@cygnus.com>
13076
13077 * Makefile.in: Make everything which depends upon all-bfd also
13078 depend upon all-opcodes, in case --with-commonbfdlib is used.
13079
13080 Thu Feb 15 19:50:50 1996 Michael Meissner <meissner@tiktok.cygnus.com>
13081
13082 * configure.in (host *-*-cygwin32): Don't build gdb if we are
13083 building NT native compilers on Unix.
13084
13085 Thu Feb 15 17:42:25 1996 Ian Lance Taylor <ian@cygnus.com>
13086
13087 * configure.in: Don't get CC from the host Makefile fragment if we
13088 can find gcc in PATH, or if this is a Canadian Cross. Move the
13089 Solaris test for /usr/ucb/cc to the post target script, just after
13090 the compiler sanity test.
13091
13092 Wed Feb 14 16:57:40 1996 Ian Lance Taylor <ian@cygnus.com>
13093
13094 * config.sub: Merge with FSF.
13095
13096 Tue Feb 13 14:27:48 1996 Ian Lance Taylor <ian@cygnus.com>
13097
13098 * Makefile.in (RPATH_ENVVAR): New variable.
13099 (REALLY_SET_LIB_PATH): Use it.
13100 * configure.in: On HP/UX, set RPATH_ENVVAR to SHLIB_PATH.
13101
13102 Mon Feb 12 15:28:49 1996 Doug Evans <dje@charmed.cygnus.com>
13103
13104 * config.sub, configure.in: Recognize sparclet cpu.
13105
13106 Mon Feb 12 15:33:59 1996 Christian Bauernfeind <chrisbfd@theorie3.physik.uni-erlangen.de>
13107
13108 * config.guess: Support m68k-cbm-sysv4.
13109
13110 Sat Feb 10 12:06:42 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
13111
13112 * config.guess (*:Linux:*:*): Guess m68k-unknown-linux and
13113 m68k-unknown-linuxaout from linker help string. Put quotes around
13114 $ld_help_string.
13115
13116 Thu Dec 7 09:03:24 1995 Tom Horsley <Tom.Horsley@mail.hcsc.com>
13117
13118 * config.guess (powerpc-harris-powerunix): Add guess for port
13119 to new target.
13120
13121 Thu Feb 8 15:37:52 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
13122
13123 * config.guess (UNAME_VERSION): Recognize X4.x as an OSF version.
13124
13125 Mon Feb 5 16:36:51 1996 Ian Lance Taylor <ian@cygnus.com>
13126
13127 * configure.in: If --enable-shared was used, set SET_LIB_PATH to
13128 $(REALLY_SET_LIB_PATH) in Makefile.
13129 * Makefile.in (SET_LIB_PATH): New variable.
13130 (REALLY_SET_LIB_PATH): New variable.
13131 ($(DO_X)): Use $(SET_LIB_PATH).
13132 (install.all, gcc-no-fixedincludes, $(ALL_MODULES)): Likewise.
13133 ($(NATIVE_CHECK_MODULES), $(CROSS_CHECK_MODULES)): Likewise.
13134 ($(INSTALL_MODULES), $(CONFIGURE_TARGET_MODULES)): Likewise.
13135 ($(ALL_TARGET_MODULES), $(CHECK_TARGET_MODULES)): Likewise.
13136 ($(INSTALL_TARGET_MODULES), $(ALL_X11_MODULES)): Likewise.
13137 ($(CHECK_X11_MODULES), $(INSTALL_X11_MODULES)): Likewise.
13138 (all-gcc, all-bootstrap, check-gcc, install-gcc): Likewise.
13139 (install-dosrel): Likewise.
13140 (all-opcodes): Depend upon all-libiberty.
13141
13142 Sun Feb 4 16:51:11 1996 Steve Chamberlain <sac@slash.cygnus.com>
13143
13144 * config.guess (*:CYGWIN*): New
13145
13146 Sat Feb 3 10:42:35 1996 Michael Meissner <meissner@tiktok.cygnus.com>
13147
13148 * Makefile.in (all-target-winsup): All all-target-libiberty.
13149
13150 Fri Feb 2 17:58:56 1996 Michael Meissner <meissner@tiktok.cygnus.com>
13151
13152 * configure.in (noconfigdirs): Add missing # in front of comment.
13153
13154 Thu Feb 1 14:38:13 1996 Geoffrey Noer <noer@cygnus.com>
13155
13156 * configure.in: add second pass to things added to noconfigdirs
13157 so *-gm-magic can exclude libgloss properly.
13158
13159 Thu Feb 1 11:10:16 1996 Stan Shebs <shebs@andros.cygnus.com>
13160
13161 * mpw-configure (extralibs_name, rez_name): Set correctly
13162 for MWC68K compiler.
13163
13164 * mpw-README: Add more info on the necessary build tools.
13165
13166 Thu Feb 1 10:22:38 1996 Steve Chamberlain <sac@slash.cygnus.com>
13167
13168 * configure.in, config.sub: Recognize cygwin32.
13169
13170 Wed Jan 31 14:17:10 1996 Richard Henderson <rth@tamu.edu>
13171
13172 * config.guess, config.sub: Recognize A/UX.
13173
13174 Wed Jan 31 13:52:14 1996 Ian Lance Taylor <ian@cygnus.com>
13175
13176 * config.sub: Merge with gcc/config.sub.
13177
13178 Thu Jan 25 11:01:10 1996 Raymond Jou <rjou@mexican.cygnus.com>
13179
13180 * mpw-build.in (do-binutils): Add build of stamps.
13181
13182 Thu Jan 25 17:05:26 1996 James G. Smith <jsmith@cygnus.co.uk>
13183
13184 * config.sub: Add recognition for mips64vr4100*-* targets.
13185
13186 Wed Jan 24 12:47:55 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
13187
13188 * test-build.mk: Add checking of `hpux9' rather than just `hpux'.
13189 Add creation of gconfigargs with `--enable-shared' turned on.
13190 ($(host)-stamp-stage2-configured): Pass $(gconfigargs).
13191 ($(host)-stamp-stage3-configured): Likewise.
13192 (HOLES): Add chatr and ldd.
13193 (i386-ncr-sysv4.3*): Add use of /usr/ccs/bin in the PATH and HOLE_DIRS.
13194
13195 Wed Jan 24 20:32:30 1996 Torbjorn Granlund <tege@noisy.matematik.su.se>
13196
13197 * configure: Pass --nfp to recursive configures.
13198
13199 Mon Jan 22 10:41:56 1996 Steve Chamberlain <sac@slash.cygnus.com>
13200
13201 * Makefile.in (DLLTOOL): New.
13202 (DLLTOOL_FOR_TARGET): New.
13203 (EXTRA_HOST_FLAGS): Pass down DLLTOOL.
13204 (EXTRA_TARGET_FLAGS): Ditto.
13205 (EXTRA_GCC_FLAGS): Ditto.
13206 (CONFIGURE_TARGET_MODULES): Ditto.
13207 (DO_X): Ditto.
13208 * configure: Add DLLTOOL.
13209
13210 Fri Jan 19 13:30:15 1996 Stan Shebs <shebs@andros.cygnus.com>
13211
13212 SCO OpenServer 5 changes from Robert Lipe <robertl@dgii.com>:
13213 * configure.in (i[345]86-*-sco3.2v5*): Use mh-sysv instead of
13214 mh-sco, since old workarounds no longer needed, and don't
13215 build ld, since libraries have weak symbols in COFF.
13216
13217 Sun Jan 14 23:01:31 1996 Fred Fish <fnf@cygnus.com>
13218
13219 * Makefile.in (CONFIGURE_TARGET_MODULES): Add missing ';'.
13220
13221 Fri Jan 12 15:25:35 1996 Ian Lance Taylor <ian@cygnus.com>
13222
13223 * configure.in: Make sure that ${CC} can be used to compile an
13224 executable.
13225
13226 Sat Jan 6 07:23:33 1996 Michael Meissner <meissner@wogglebug.tiac.net>
13227
13228 * Makefile.in (all-gdb): Depend on $(GDB_TK).
13229 * configure (GDB_TK): Set GDB_TK to either "all-tcl all-tk" or
13230 nothing depending on whether gdbtk is being built.
13231
13232 Wed Jan 3 17:54:41 1996 Doug Evans <dje@canuck.cygnus.com>
13233
13234 * Makefile.in (newlib.tar.gz): Delete building of newlib's info files.
13235
13236 Mon Jan 1 19:09:14 1996 Brendan Kehoe <brendan@rtl.cygnus.com>
13237
13238 * configure.in (noconfigdirs): Put ld or gas in this early, if the
13239 user specifically used --with-gnu-ld=no or --with-gnu-as=no.
13240
13241 Sat Dec 30 16:08:57 1995 Doug Evans <dje@canuck.cygnus.com>
13242
13243 * config-ml.in: Add support for
13244 --disable-{softfloat,m68881,m68000,m68020} on m68*-*-*.
13245 Simplify setting of multidirs from --disable-foo.
13246
13247 Fri Dec 29 07:56:11 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13248
13249 * Makefile.in (EXTRA_GCC_FLAGS): If any of the make variables
13250 LANGUAGES, BOOT_CFLAGS, STMP_FIXPROTO, LIMITS_H_TEST,
13251 LIBGCC1_TEST, LIBGCC2_CFLAGS, LIBGCC2_INCLUDES, and ENQUIRE are
13252 non-empty, pass them on to the GCC make.
13253 (all-bootstrap): New rule that is like all-gcc, except it executes
13254 the GCC bootstrap rule instead of the GCC all rule.
13255
13256 Wed Dec 27 15:51:48 1995 Doug Evans <dje@canuck.cygnus.com>
13257
13258 * config-ml.in (ml_realsrcdir): New, to account for ${subdir}.
13259
13260 Tue Dec 26 11:45:31 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13261
13262 * config.guess (AViiON:dgux:*:*): Update from FSF to add pentium
13263 DG/UX support.
13264
13265 Fri Dec 15 10:01:27 1995 Stan Cox <coxs@dg-rtp.dg.com>
13266
13267 * config.sub (i*86*) Change [345] to [3456]
13268
13269 Wed Dec 20 17:41:40 1995 Brendan Kehoe <brendan@lisa.cygnus.com>
13270
13271 * configure.in (noconfigdirs): Add gas or ld if --with-gnu-as=no or
13272 --with-gnu-ld=no.
13273
13274 Wed Dec 20 15:15:35 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13275
13276 * config-ml.in (rs6000*, powerpc*): Add switches to control which
13277 AIX multilibs get built.
13278
13279 Mon Dec 18 17:55:46 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13280
13281 * configure.in (i386-win32): Don't build expect if we're not
13282 building the tcl subdir.
13283
13284 Mon Dec 18 11:47:19 1995 Stan Shebs <shebs@andros.cygnus.com>
13285
13286 * Makefile.in: (configure-target-examples, all-target-examples):
13287 New targets, configure and build example programs.
13288
13289 Fri Dec 15 16:13:03 1995 Stan Shebs <shebs@andros.cygnus.com>
13290
13291 * mpw-configure: If an mpw-config.in generated a file mk.sed,
13292 use it as input to sedit the generated MPW makefile.
13293 * mpw-README: Add a suggestion about Gestalt.h.
13294
13295 Wed Dec 13 16:43:51 1995 Ian Lance Taylor <ian@cygnus.com>
13296
13297 * config.sub: Accept *-*-ieee*.
13298
13299 Tue Dec 12 11:52:57 1995 Ian Lance Taylor <ian@cygnus.com>
13300
13301 * Makefile.in (local-distclean): Remove $(TARGET_SUBDIR). From
13302 Ronald F. Guilmette <rfg@monkeys.com>.
13303
13304 Mon Dec 11 15:31:58 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13305
13306 * configure.in (host==powerpc-pe): Add many directories to noconfigdirs
13307 for powerpc-pe native.
13308 (target==i386-win32): add tcl, make to noconfigdirs if canadian cross.
13309 (target==powerpc-pe): duplicate i386-win32 entry.
13310
13311 Sat Dec 9 14:58:28 1995 Jim Wilson <wilson@chestnut.cygnus.com>
13312
13313 * configure.in (noconfigdirs): Exclude target-newlib for all versions
13314 of vxworks, not just vxworks5.1.
13315
13316 Mon Dec 4 12:05:40 1995 Stan Shebs <shebs@andros.cygnus.com>
13317
13318 * mpw-configure: Add support for exec-prefix.
13319
13320 Mon Dec 4 10:22:50 1995 Jeffrey A. Law <law@rtl.cygnus.com>
13321
13322 * config.guess: Recognize HP model 816 machines as having
13323 a PA1.1 processor.
13324
13325 Mon Dec 4 12:38:15 1995 Ian Lance Taylor <ian@cygnus.com>
13326
13327 * configure: Ignore new autoconf configure options.
13328
13329 Thu Nov 30 16:57:33 1995 Per Bothner <bothner@wombat.gnu.ai.mit.edu>
13330
13331 * config.guess: Recognize Pentium under SCO.
13332 From Robert Lipe <robertl@arnet.com>.
13333
13334 Wed Nov 29 13:49:08 1995 J.T. Conklin <jtc@rtl.cygnus.com>
13335
13336 * configure.in (noconfigdirs): Disable target-libio on v810-*-*.
13337
13338 Wed Nov 29 12:12:01 1995 Ian Lance Taylor <ian@cygnus.com>
13339
13340 * configure.in: Don't configure gas for alpha-dec-osf*.
13341
13342 Tue Nov 28 17:16:48 1995 Ian Lance Taylor <ian@cygnus.com>
13343
13344 * configure.in: Default to --with-stabs for some targets for which
13345 it makes sense: mips*-*-*, alpha*-*-osf*, i[345]86*-*-sysv4* and
13346 i[345]86*-*-unixware*.
13347
13348 Mon Nov 27 13:44:15 1995 Ian Lance Taylor <ian@cygnus.com>
13349
13350 * config-ml.in: Get list of multidirs using gcc --print-multi-lib
13351 rather than basing it on the target. Simplify handling of options
13352 controlling which directories to configure. Remove extraneous
13353 slash in multi-clean target.
13354
13355 Fri Nov 24 17:29:29 1995 Doug Evans <dje@deneb.cygnus.com>
13356
13357 * config-ml.in: Prefix more variables with ml_ so they don't collide
13358 with configure's.
13359
13360 Wed Nov 22 11:27:02 1995 Ian Lance Taylor <ian@cygnus.com>
13361
13362 * configure: Don't turn -v into --v.
13363
13364 Tue Nov 21 16:48:02 1995 Doug Evans <dje@deneb.cygnus.com>
13365
13366 * configure.in (targargs): Fix typo.
13367
13368 * Makefile.in (DEVO_SUPPORT): Add symlink-tree.
13369
13370 Tue Nov 21 14:08:28 1995 Ian Lance Taylor <ian@cygnus.com>
13371
13372 * configure.in: Strip --host and --target options from
13373 CONFIG_ARGUMENTS, and always configure for --host only. Add
13374 --with-cross-host option when building with a cross-compiler.
13375 * configure: Canonicalize the arguments put into config.status by
13376 always using `=' for an option with an argument. Pass a presumed
13377 --host or --target explicitly.
13378
13379 Fri Nov 17 17:50:30 1995 Stan Shebs <shebs@andros.cygnus.com>
13380
13381 * config.sub: Merge -macos*, -magic*, -pe*, and -win32 cases
13382 into general OS recognition case.
13383
13384 Fri Nov 17 17:42:25 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13385
13386 * configure.in (target_configdirs): add target-winsup only
13387 for win32 target systems.
13388
13389 Thu Nov 16 14:04:47 1995 Ian Lance Taylor <ian@cygnus.com>
13390
13391 * Makefile.in (all-target-libgloss): Depend upon
13392 configure-target-newlib, since when libgloss is built it looks to
13393 see if the newlib directory exists.
13394
13395 Wed Nov 15 14:47:52 1995 Ken Raeburn <raeburn@cygnus.com>
13396
13397 * Makefile.in (DEVO_SUPPORT): Use config-ml.in instead of
13398 cfg-ml-*.in.
13399
13400 Wed Nov 15 11:45:23 1995 Ian Lance Taylor <ian@cygnus.com>
13401
13402 * configure: Handle LD and LD_FOR_TARGET when configuring a
13403 Canadian Cross.
13404
13405 Tue Nov 14 14:56:11 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13406
13407 * configure.in (target_libs): add target-winsup.
13408 (target==i386-win32): add patch diff flex make to $noconfigdirs.
13409 (target==ppcle-pe): remove ld from $noconfigdirs.
13410
13411 Tue Nov 14 01:25:50 1995 Doug Evans <dje@canuck.cygnus.com>
13412
13413 * Makefile.in (CONFIGURE_TARGET_MODULES): Pass --with-target-subdir.
13414 Preserve relative path names in $srcdir. Build symlink tree if
13415 configuring cross target dir and srcdir=. (= no VPATH support).
13416 (configure-target-libg++): Depend on configure-target-librx.
13417 * cfg-ml-com.in, cfg-ml-pos.in: Deleted.
13418 * config-ml.in: New file.
13419 * symlink-tree: New file.
13420 * configure: Ensure srcdir="." if that's what it is.
13421
13422 Mon Nov 13 12:34:20 1995 Stan Shebs <shebs@andros.cygnus.com>
13423
13424 * mpw-README: Clarify some phrasing, add notes about CodeWarrior
13425 includes and FLEX_SKELETON setting.
13426 * mpw-configure (--with-gnu-ld): New option, controls whether
13427 to use PPCLink or ld with PowerMac GCC.
13428 * mpw-build.in (all-grez, do-grez, install-grez): New targets.
13429 * mpw-config.in: Configure grez if targeting Mac.
13430
13431 * config.sub: Accept pmac and pmac-mpw as names for PowerMacs,
13432 accept mpw and mac-mpw as names for m68k Macs, change macos7 to
13433 just macos.
13434 * configure.in: Configure grez resource compiler if targeting Mac.
13435 * Makefile.in (all-grez, install-grez): New targets.
13436
13437 Wed Nov 8 17:33:51 1995 Jason Merrill <jason@yorick.cygnus.com>
13438
13439 * configure: CXX defaults to gcc, not g++. If we find
13440 gcc in the path, set CC to gcc -O2.
13441
13442 Tue Nov 7 15:45:17 1995 Ian Lance Taylor <ian@cygnus.com>
13443
13444 * configure: Default ${build} correctly. Avoid picking up extra
13445 spaces when reading CC and CXX from Makefile. When doing a
13446 Canadian Cross, use plausible default values for numerous
13447 variables.
13448 * configure.in: When doing a Canadian Cross, don't try to
13449 configure tools whose configure script can't handle it.
13450
13451 Mon Nov 6 19:32:17 1995 Jim Wilson <wilson@chestnut.cygnus.com>
13452
13453 * cfg-ml-com.in (sh-*-*): Add m2 and ml/m2 to multidirs.
13454
13455 Sun Nov 5 00:15:41 1995 Per Bothner <bothner@kalessin.cygnus.com>
13456
13457 * configure: Remove dubious bug reporting address.
13458
13459 Fri Nov 3 08:17:54 1995 Per Bothner <bothner@kalessin.cygnus.com>
13460
13461 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): If subdir has
13462 configure script, run that instead of this directory's configure.
13463 In either case, print a message that we're configuring the sub-dir.
13464
13465 Thu Nov 2 23:23:36 1995 Per Bothner <bothner@kalessin.cygnus.com>
13466
13467 * configure.in: Before checking for the existence of various files,
13468 use sed to filter out "target-".
13469
13470 Thu Nov 2 13:24:56 1995 Ian Lance Taylor <ian@cygnus.com>
13471
13472 * Makefile.in (DO_X): Split rule to decrease command line length
13473 for systems with small ARG_MAX values. From phdm@info.ucl.ac.be
13474 (Philippe De Muyter).
13475
13476 Wed Nov 1 15:18:35 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13477
13478 * Makefile.in (all-patch): depend on all-libiberty.
13479
13480 Wed Nov 1 12:23:20 1995 Ian Lance Taylor <ian@cygnus.com>
13481
13482 * configure.in: If the only directory in target_configdirs which
13483 actually exists is libiberty, then set target_configdirs to empty,
13484 to avoid trying to build a target libiberty in a gas or gdb
13485 distribution.
13486
13487 Tue Oct 31 17:52:39 1995 J.T. Conklin <jtc@slave.cygnus.com>
13488
13489 * configure.in (host_makefile_frag): Use m68k-sun-sunos* instead
13490 of m68k-sun-* when selecting mh-sun3 to avoid matching NetBSD/sun3
13491 systems.
13492
13493 Tue Oct 31 16:57:32 1995 Jim Wilson <wilson@chestnut.cygnus.com>
13494
13495 * configure.in (copy_dirs): Use sys-include instead of include
13496 for --with-headers option.
13497
13498 Tue Oct 31 10:29:36 1995 steve chamberlain <sac@slash.cygnus.com>
13499
13500 * Makefile.in, configure.in: Make winsup builds work with
13501 new scheme.
13502
13503 Mon Oct 30 18:57:09 1995 Ian Lance Taylor <ian@cygnus.com>
13504
13505 * configure.in: Build the linker on AIX.
13506
13507 Mon Oct 30 12:27:16 1995 Per Bothner <bothner@kalessin.cygnus.com>
13508
13509 * Makefile.in (CC_FOR_TARGET, CXX_FOR_TARGET): Add $(TARGET_SUBDIR)
13510 where needed.
13511
13512 Mon Oct 30 12:45:25 1995 Doug Evans <dje@cygnus.com>
13513
13514 * Makefile.in (all-gcc): Fix typo.
13515
13516 Sat Oct 28 10:27:59 1995 Per Bothner <bothner@kalessin.cygnus.com>
13517
13518 * Makefile.in ($(CHECK_TARGET_MODULES)): Fix typo.
13519
13520 Fri Oct 27 23:14:12 1995 Per Bothner <bothner@kalessin.cygnus.com>
13521
13522 * configure.in: Rename libFOO to target-libFOO, and xiberty
13523 to target-xiberty, to provide more flexibility.
13524 (target_subdir): Define. Create if cross.
13525 Set TARGET_SUBDIR in Makefile to ${target_subdir}.
13526 * Makefile.in: Rename all-libFOO -> all-target-libFOO, all-xiberty
13527 -> all-target-libiberty, configure-libFOO -> configure-target-libFOO,
13528 check-libFOO -> check-target-libFOO, etc.
13529 ($(DO_X)): Iterate over TARGET_CONFIGDIRS after SUBDIRS.
13530 ($(CONFIGURE_TARGET_MODULES), $(CHECK_TARGET_MODULES),
13531 $(ALL_TARGET_MODULES), $(INSTALL_TARGET_MODULES)): Update accordingly.
13532 (configure-target-XXX): Depend on $(ALL_GCC), not all-gcc, to
13533 allow ALL_GCC="" to only configure.
13534 (DEVO_SUPPORT): Add cfg-ml-com.in and cfg-ml-pos.in.
13535 (ETC_SUPPORT, ETC_SUPPORT_PFX): Merge; update 'taz' accordingly.
13536 (LIBGXX_SUPPORT_DIRS): Remove xiberty.
13537
13538 Sat Oct 28 01:53:49 1995 Ken Raeburn <raeburn@cygnus.com>
13539
13540 * Makefile.in (taz): Build "info" in etc explicitly.
13541
13542 Fri Oct 27 09:32:30 1995 Stu Grossman (grossman@cygnus.com)
13543
13544 * configure.in: Make sure that CC is undefined (as opposed to
13545 null) if toplevel/config/mh-{host} doesn't define it. Fixes a
13546 problem with autoconf trying to configure on a host without GCC.
13547
13548 Thu Oct 26 22:35:01 1995 Stan Shebs <shebs@andros.cygnus.com>
13549
13550 * mpw-configure: Set host alias from choice of host compiler,
13551 only use generic MPW Makefile sed if present, edit a file
13552 named "hacked_Makefile.in" instead of "Makefile.in" if present.
13553 * mpw-README: Add problem notes about CW6 and CW7.
13554
13555 Thu Oct 26 05:45:10 1995 Ken Raeburn <raeburn@kr-pc.cygnus.com>
13556
13557 * Makefile.in (taz): Use ";" instead of ";;".
13558
13559 Wed Oct 25 15:18:24 1995 Per Bothner <bothner@kalessin.cygnus.com>
13560
13561 * Makefile.in (taz): Grep for '^diststuff:' or '^info:' in
13562 sub-directory Makefiles, instead of using DISTSTUFFDIRS and
13563 DISTDOCDIRS.
13564 (DISTSTUFFDIRS, DISTDOCDIRS): Removed - no longer used.
13565 (newlib.tar.gz): Don't pass DISTDOCDIRS to recursive make.
13566
13567 Wed Oct 25 14:43:55 1995 Per Bothner <bothner@kalessin.cygnus.com>
13568
13569 * Makefile.in (DISTDOCDIRS): Remove ld gprof bnutils gas libg++ gdb
13570 and gnats, because they are now subsumed by DISTSTUFFDIRS.
13571 Move bfd to DISTSTUFFDIRS.
13572
13573 Tue Oct 24 18:19:09 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13574
13575 * Makefile.in (X11_LIB): Removed.
13576 (X11_FLAGS_TO_PASS): pass only X11_EXTRA_CFLAGS and X11_EXTRA_LIBS.
13577
13578 * configure.in (host_makefile_frag): mh-aix & mh-sun removed.
13579
13580 Sun Oct 22 13:04:42 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13581
13582 * cfg-ml-com.in (powerpc*): Shorten some of the multilib directory
13583 names.
13584
13585 Fri Oct 20 18:02:10 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13586
13587 * cfg-ml-com.in (powerpc*-eabi*): Add mcall-aixdesc varients.
13588
13589 Thu Oct 19 10:40:57 1995 steve chamberlain <sac@slash.cygnus.com>
13590
13591 * configure.in (i[345]86-*-win32): Always build newlib.
13592 Don't configure cvs, autoconf or texinfo.
13593 * Makefile.in (LD_FOR_TARGET): New.
13594 (BASE_FLAGS_TO_PASS, EXTRA_TARGET_FLAGS, CONFIGURE_TARGET_MODULES):
13595 Pass down LD_FOR_TARGET.
13596
13597 Wed Oct 18 15:53:56 1995 steve chamberlain <sac@slash.cygnus.com>
13598
13599 * winsup: New directory.
13600 * Makefile.in: Build winsup.
13601 * configure.in: Winsup is configured when target is win32.
13602 Can only build win32 target GDB when native.
13603
13604 Mon Oct 16 09:42:31 1995 Jeffrey A Law (law@cygnus.com)
13605
13606 * config.guess: Recognize HP model 819 machines as having
13607 a PA 1.1 processor.
13608
13609 Mon Oct 16 10:49:43 1995 Ian Lance Taylor <ian@cygnus.com>
13610
13611 * configure: Fix sed loop which substitutes for CC and CXX to
13612 avoid bug found in various sed implementations.
13613
13614 Wed Oct 11 16:16:20 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13615
13616 * cfg-ml-com.in (powerpc-*-eabisim): Delete separate rule for
13617 simulator. Use standard powerpc-*-eabi*.
13618
13619 Mon Oct 9 17:21:56 1995 Ian Lance Taylor <ian@cygnus.com>
13620
13621 * configure.in: Stop putting gas and binutils in noconfigdirs for
13622 powerpc-*-aix* and rs6000-*-*.
13623
13624 Mon Oct 9 12:38:40 1995 Michael Meissner <meissner@cygnus.com>
13625
13626 * cfg-ml-com.in (powerpc*-*-eabisim*): Add support for building
13627 -mcall-aixdesc libraries.
13628
13629 Fri Oct 6 16:17:57 1995 Ken Raeburn <raeburn@cygnus.com>
13630
13631 Mon Sep 25 22:49:32 1995 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
13632
13633 * config.sub (arm | armel | armeb): Fix shell syntax.
13634
13635 Fri Oct 6 14:40:28 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13636
13637 * cfg-ml-com.in ({powerpc,rs6000}-ibm-aix*): Add multilibs for
13638 -msoft-float and -mcpu=common support.
13639 (powerpc*-*-eabisim*): Add support for building -mcall-aix
13640 libraries.
13641
13642 Thu Oct 5 13:26:37 1995 Brendan Kehoe <brendan@lisa.cygnus.com>
13643
13644 * configure.in: Allow configuration and build of emacs19 for the alpha.
13645
13646 Wed Oct 4 22:05:36 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13647
13648 * configure.in (CC): Get ^CC, not just any old CC, from
13649 ${host_makefile_frag}.
13650
13651 Wed Oct 4 21:55:00 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13652
13653 * configure.in (CC): Try to get CC from
13654 ${srcdir}/${host_makefile_frag}, not ${host_makefile_frag}.
13655
13656 Wed Oct 4 21:44:12 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13657
13658 * Makefile.in (TARGET_CONFIGDIRS): configure targetdirs
13659 only if it exists in $(srcdir).
13660
13661 Wed Oct 4 11:52:31 1995 Ian Lance Taylor <ian@cygnus.com>
13662
13663 * configure: If CC and CXX are not set in the environment, set
13664 them, based on either an existing Makefile or on searching for gcc
13665 in PATH. Substitute for CC and CXX in Makefile.
13666 * configure.in: Remove libm from target_libs. Separate
13667 target_configdirs from configdirs. If CC is not set in
13668 environment, try to get it from a host Makefile fragment. Rewrite
13669 changes of configdirs to use skipdirs instead. A few minor
13670 tweaks. Take directories out of target_configdirs as they are
13671 taken out of configdirs. Remove existing Makefile files from
13672 subdirectories. Substitute for TARGET_CONFIGDIRS and
13673 CONFIG_ARGUMENTS in Makefile.
13674 * Makefile.in (TARGET_CONFIGDIRS): New variable, automatically set
13675 by configure.in.
13676 (CONFIG_ARGUMENTS): Likewise.
13677 (CONFIGURE_TARGET_MODULES): New variable.
13678 ($(DO_X)): Loop over TARGET_CONFIGDIRS as well as SUBDIRS.
13679 ($(CONFIGURE_TARGET_MODULES)): New target.
13680 (configure-libg++, configure-libio): New targets.
13681 (all-libg++): Depend upon configure-libg++.
13682 (all-libio): Depend upon configure-libio.
13683 (configure-libgloss, all-libgloss): New targets.
13684 (configure-libstdc++): New target.
13685 (all-libstdc++): Depend upon configure-libstdc++.
13686 (configure-librx, all-librx): New targets.
13687 (configure-newlib): New target.
13688 (all-newlib): Depend upon configure-newlib
13689 (configure-xiberty): New target.
13690 (all-xiberty): Depend upon configure-xiberty.
13691
13692 Sat Sep 30 04:32:59 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13693
13694 * configure.in (host i[345]86-*-win32): Expand the
13695 noconfigdirs again.
13696
13697 Thu Sep 28 21:18:49 1995 Stan Shebs <shebs@andros.cygnus.com>
13698
13699 * mpw-configure: Fix sed command file name.
13700
13701 Thu Sep 28 17:39:56 1995 steve chamberlain <sac@slash.cygnus.com>
13702
13703 * configure.in (host i[345]86-*-win32): Reduce the
13704 noconfigdirs again.
13705
13706 Wed Sep 27 12:24:00 1995 Ian Lance Taylor <ian@cygnus.com>
13707
13708 * configure.in: Don't configure ld and gdb for powerpc*-*-winnt*
13709 or powerpc*-*-pe*, since they are not yet supported.
13710
13711 Tue Sep 26 14:30:01 1995 Stan Shebs <shebs@andros.cygnus.com>
13712
13713 Add PowerMac support and many other enhancements.
13714 * mpw-configure: New option --cc to select compiler to use,
13715 paste options set according to --cc into the generated
13716 Makefile, generate the Makefile by sed'ing the Unix Makefile.in
13717 if mpw-make.sed is present.
13718 * mpw-config.in: Don't test for gC1, test for mpw-touch,
13719 add forward includes for PowerPC include files.
13720 * mpw-build.in: Build using Makefile.PPC if present.
13721 (do-byacc, etc): Remove separate version resource builds.
13722 (do-gas): Build "stamps" before "all".
13723 (do-gcc): Build "stamps-h" and "stamps-c" before "all".
13724 * mpw-README: Update to reflect --cc option, PowerMac support,
13725 and recently-reported compatibility problems.
13726
13727 Fri Sep 22 12:15:42 1995 Doug Evans <dje@deneb.cygnus.com>
13728
13729 * cfg-ml-com.in (m68*-*-*): Only build multilibs for
13730 embedded m68k systems (-aout, -coff, -elf, -vxworks).
13731 (--with-multilib-top): Pass to recursive invocations.
13732
13733 Tue Sep 19 13:51:05 1995 J.T. Conklin <jtc@blues.cygnus.com>
13734
13735 * configure.in (noconfigdirs): Disable libg++ and libstdc++ on
13736 v810-*-*.
13737
13738 Mon Sep 18 23:08:26 1995 J.T. Conklin <jtc@rtl.cygnus.com>
13739
13740 * configure.in (noconfigdirs): Disable bfd, binutils, gas, gcc,
13741 gdb, ld and opcodes on v810-*-*.
13742
13743 Tue Sep 12 18:03:31 1995 Ian Lance Taylor <ian@cygnus.com>
13744
13745 * Makefile.in (DO_X): Change do-realclean to do-maintainer-clean.
13746 (local-maintainer-clean): New target.
13747 (maintainer-clean): New target.
13748 (realclean): Just depend upon maintainer-clean.
13749
13750 Fri Sep 8 17:11:14 1995 J.T. Conklin <jtc@rtl.cygnus.com>
13751
13752 * configure.in (noconfigdirs): Disable gdb on m68k-*-netbsd*.
13753
13754 Fri Sep 8 16:46:29 1995 Ian Lance Taylor <ian@cygnus.com>
13755
13756 * configure.in: Build ld in mips*-*-bsd* case.
13757
13758 Thu Sep 7 20:03:41 1995 Ken Raeburn <raeburn@cygnus.com>
13759
13760 * config.sub: Accept -lites* OS. From Ian Dall.
13761
13762 Fri Sep 1 08:06:58 1995 James G. Smith <jsmith@beauty.cygnus.com>
13763
13764 * config.sub: recognise mips64vr4300 and mips64vr4300el as valid
13765 targets.
13766
13767 Wed Aug 30 21:06:50 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13768
13769 * configure.in: treat i386-win32 canadian cross the same as
13770 i386-go32 canadian cross.
13771
13772 Thu Aug 24 14:53:20 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13773
13774 * cfg-ml-com.in (powerpc*-*-eabisim): Add support for PowerPC
13775 running under the simulator to build a reduced set of libraries.
13776 (powerpc-*-eabiaix): Add fine grained multilib support added to
13777 other powerpc targets yesterday.
13778
13779 Wed Aug 23 09:41:56 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13780
13781 * cfg-ml-com.in (powerpc*): Add support for -disable-biendian,
13782 -disable-softfloat, -disable-relocatable, -disable-aix, and
13783 -disable-sysv to control which multilib libraries get built.
13784
13785 Thu Aug 17 16:03:41 1995 Ken Raeburn <raeburn@kr-laptop.cygnus.com>
13786
13787 * configure: Add Makefile.tem to list of files to remove in trap
13788 handler.
13789
13790 Mon Aug 14 19:27:56 1995 Per Bothner <bothner@kalessin.cygnus.com>
13791
13792 * config.guess (*Linux*): Add missing "exit"s.
13793 Also, need specific check for alpha-unknown-linux (uses COFF).
13794
13795 Fri Aug 11 15:38:20 1995 Per Bothner <bothner@kalessin.cygnus.com>
13796
13797 * config.guess: Merge with FSF:
13798
13799 Wed Jun 28 17:57:27 1995 David Edelsohn <edelsohn@mhpcc.edu>
13800 * config.guess (AIX4): More robust release numbering discovery.
13801
13802 Thu Jun 22 19:01:24 1995 Kenneth Stailey (kstailey@eagle.dol-esa.gov)
13803 * config.guess (i386-sequent-ptx): Properly get version number.
13804
13805 Thu Jun 22 18:36:42 1995 Uwe Seimet (seimet@iris1.chemie.uni-kl.de)
13806 * config.guess (mips:*:4*:UMIPS): New case.
13807
13808 Mon Aug 7 09:21:35 1995 Doug Evans <dje@canuck.cygnus.com>
13809
13810 * configure.in (i386-go32 host): Fix typo (deja-gnu -> dejagnu).
13811 (i386-win32 host): Likewise. Don't build readline.
13812
13813 Sat Aug 5 09:51:49 1995 Fred Fish <fnf@rtl.cygnus.com>
13814
13815 * Makefile.in (GDBTK_SUPPORT_DIRS): Define and pass as part of
13816 SUPPORT_FILES to submakes.
13817
13818 Fri Aug 4 13:04:36 1995 Fred Fish <fnf@cygnus.com>
13819
13820 * Makefile.in (GDB_SUPPORT_DIRS): Add utils.
13821 (DEVO_SUPPORT): Add mpw-README, mpw-build.in, mpw-config.h and
13822 mpw-configure.
13823
13824 Wed Aug 2 16:32:40 1995 Ken Raeburn <raeburn@cygnus.com>
13825
13826 * configure.in (appdirs): Use =, not ==, in test expression when
13827 trying to build the text to print in the warning message for
13828 Solaris users.
13829
13830 Mon Jul 31 09:56:18 1995 steve chamberlain <sac@slash.cygnus.com>
13831
13832 * cfg-ml-com.in (z8k-*-coff): Add 'std' multilib build.
13833
13834 Fri Jul 28 00:16:31 1995 Jeffrey A. Law <law@rtl.cygnus.com>
13835
13836 * config.guess: Recognize lynx-2.3.
13837
13838 Thu Jul 27 15:47:59 1995 steve chamberlain <sac@slash.cygnus.com>
13839
13840 * config.sub (z8ksim): Deleted
13841 (z8k-*-coff): New, this is the one true name of the target.
13842
13843 Thu Jul 27 14:33:33 1995 Doug Evans <dje@canuck.cygnus.com>
13844
13845 * cfg-ml-pos.in (dotdot): Work around SunOS sed bug.
13846
13847 Thu Jul 27 13:31:05 1995 Fred Fish (fnf@cygnus.com)
13848
13849 * config.guess (*:Linux:*:*): First try asking the linker what the
13850 default object file format is (elf, aout, or coff). Then if this
13851 fails, try previous methods.
13852
13853 Thu Jul 27 11:28:17 1995 J.T. Conklin <jtc@rtl.cygnus.com>
13854
13855 * configure.in: Don't build newlib for *-*-vxworks5.1.
13856
13857 Thu Jul 27 11:18:47 1995 Brendan Kehoe <brendan@lisa.cygnus.com>
13858
13859 * configure.in: Don't build newlib for a29k-*-vxworks5.1.
13860 * test-build.mk: Add setting of --with-headers for a29k-vxworks5.1.
13861
13862 Tue Jul 25 21:25:39 1995 Doug Evans <dje@canuck.cygnus.com>
13863
13864 * cfg-ml-pos.in (MULTITOP): Trim excess trailing "/.".
13865
13866 Fri Jul 21 10:41:12 1995 Doug Evans <dje@canuck.cygnus.com>
13867
13868 * cfg-ml-com.in: New file.
13869 * cfg-ml-pos.in: New file.
13870
13871 Wed Jul 19 00:37:27 1995 Jeffrey A. Law <law@rtl.cygnus.com>
13872
13873 * COPYING.NEWLIB: Add HP free copyright to list.
13874
13875 Tue Jul 18 10:58:51 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13876
13877 * config.sub: Recognize -eabi* for the system, not just -eabi.
13878
13879 Mon Jul 3 13:44:51 1995 Steve Chamberlain <sac@slash.cygnus.com>
13880
13881 * Makfile.in (DLLTOOL_FOR_TARGET): New name, pass it down.
13882 * config.sub, configure.in (win32): New target and host.
13883
13884 Wed Jun 28 23:57:08 1995 Steve Chamberlain <sac@slash.cygnus.com>
13885
13886 * configure.in: Add i386-pe configuration.
13887
13888 Fri Jun 23 14:28:44 1995 Stan Shebs <shebs@andros.cygnus.com>
13889
13890 * mpw-build.in (install): Install GDB after LD.
13891
13892 Thu Jun 22 17:10:53 1995 Stan Shebs <shebs@andros.cygnus.com>
13893
13894 * mpw-config.in (elf/mips.h): Always forward-include, needed
13895 for GDB to build.
13896
13897 Wed Jun 21 15:17:30 1995 Rob Savoye <rob@darkstar.cygnus.com>
13898
13899 * testsuite: New directory for customer acceptance and whole tool
13900 chain tests.
13901
13902 Wed Jun 21 16:50:29 1995 Ken Raeburn <raeburn@cujo.cygnus.com>
13903
13904 * configure: If per-host line isn't found, but AC_OUTPUT is found
13905 and a configure script exists, run it instead.
13906
13907 Thu Jun 15 21:09:24 1995 Per Bothner <bothner@kalessin.cygnus.com>
13908
13909 * config.guess: Update from FSF, for alpha-dec-winnt3.5 and Crays.
13910
13911 Tue Jun 13 21:43:27 1995 Rob Savoye <rob@darkstar.cygnus.com>
13912
13913 * configure: Set build_{cpu,vendor,os,alias} to host values when
13914 --build isn't specified.
13915
13916 Mon Jun 5 18:26:36 1995 Jason Merrill <jason@phydeaux.cygnus.com>
13917
13918 * Makefile.in (PICFLAG, PICFLAG_FOR_TARGET): New macros.
13919 (FLAGS_TO_PASS): Pass them.
13920 (EXTRA_TARGET_FLAGS): Ditto.
13921
13922 Wed May 31 22:27:42 1995 Jim Wilson <wilson@chestnut.cygnus.com>
13923
13924 * Makefile.in (all-libg++): Depend on all-libstdc++.
13925
13926 Thu May 25 22:40:59 1995 J.T. Conklin <jtc@rtl.cygnus.com>
13927
13928 * configure.in (noconfigdirs): Enable all packages for
13929 i386-unknown-netbsd.
13930
13931 Sat May 20 13:22:31 1995 Angela Marie Thomas <angela@cirdan.cygnus.com>
13932
13933 * configure.in (noconfigdirs): Don't configure tk for i386-go32
13934 hosted builds (DOS builds)
13935
13936 Thu May 18 18:08:49 1995 Ken Raeburn <raeburn@kr-laptop.cygnus.com>
13937
13938 Changes for ARM based on patches from Richard Earnshaw:
13939 * config.sub: Handle armeb and armel.
13940 * configure.in: Omit arm linker only for riscix.
13941
13942 Thu May 11 17:23:26 1995 Per Bothner <bothner@kalessin.cygnus.com>
13943
13944 * config.guess: Update from FSF.
13945
13946 Tue May 9 15:52:05 1995 Michael Meissner <meissner@cygnus.com>
13947
13948 * config.sub: Recognize powerpcle as the little endian varient of
13949 the PowerPC. Recgonize ppc as a PowerPC variant, and ppcle as a
13950 powerpcle variant. Convert pentium into i586, not i486. Add p5
13951 alias for i586. Map new x86 variants p6, k5, nexgen into i586
13952 temporarily.
13953
13954 Tue May 2 16:29:41 1995 Jeff Law (law@snake.cs.utah.edu)
13955
13956 * configure.in (hppa*-*-lites*): Treat like hppa*-*-*elf*.
13957
13958 Sun Apr 30 21:38:09 1995 Jeff Law (law@snake.cs.utah.edu)
13959
13960 * config.sub: Accept -lites* as a basic system type.
13961
13962 Thu Apr 27 11:33:29 1995 Michael Meissner (meissner@cygnus.com)
13963
13964 * config.guess (*:Linux:*:*): Check for whether the pre-BFD linker is
13965 installed, and if so return linuxoldld as the system name.
13966
13967 Wed Apr 26 10:59:02 1995 Jeff Law (law@snake.cs.utah.edu)
13968
13969 * config.guess: Add hppa1.1-hp-lites support.
13970
13971 Tue Apr 25 11:08:11 1995 Rob Savoye <rob@darkstar.cygnus.com>
13972
13973 * configure.in: Don't build newlib for m68k-vxworks5.1.
13974
13975 Wed Apr 19 17:02:43 1995 Jim Wilson <wilson@chestnut.cygnus.com>
13976
13977 * configure.in (mips-sgi-irix6): Use mh-irix5.
13978
13979 Fri Apr 14 15:21:17 1995 Doug Evans <dje@chestnut.cygnus.com>
13980
13981 * Makefile.in (all-gcc): Depend on all-ld (for libgcc1-test).
13982
13983 Wed Apr 12 16:06:01 1995 Jason Merrill <jason@phydeaux.cygnus.com>
13984
13985 * test-build.mk: Enable building of shared libraries on IRIX 5 and
13986 OSF/1. Fix compiler flags.
13987 * build-all.mk: Support Linux and OSF/1 3.0. Fix compiler flags.
13988
13989 Tue Apr 11 18:55:40 1995 Doug Evans <dje@canuck.cygnus.com>
13990
13991 * configure.in: Recognize --with-newlib.
13992 (sparc-*-sunos4*): Build sim, dejagnu, expect, tcl if cross target.
13993
13994 Mon Apr 10 14:38:20 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13995
13996 * Makefile.in: move {all,check,install}-gdb from *_MODULES
13997 to *_X11_MODULES due to gdbtk needing X include files et al.
13998
13999 Mon Apr 10 11:42:22 1995 Stan Shebs <shebs@andros.cygnus.com>
14000
14001 Merge in support for Mac MPW as a host.
14002 (Old change descriptions retained for informational value.)
14003
14004 * mpw-config.in: Add generic include forwards for cpu-specific
14005 include files in aout and elf directories.
14006
14007 * mpw-configure: Added copyright.
14008 * mpw-config.in: Check for presence of required build tools.
14009 (target_libs): Add newlib.
14010 (target_tools): Add examples.
14011 (Read Me): Generate as "Read Me for MPW" instead.
14012 * mpw-build.in: Base sub-builds on all-foo instead of do-foo.
14013 (all-byacc, do-byacc, all-flex, do-flex, do-newlib): New actions.
14014 (do-gas, do-gcc, do-gdb, do-ld): Build Version.r first.
14015
14016 * mpw-configure: Remove subdir-specific makefile hackery,
14017 delete mk.tmp after using it.
14018
14019 * mpw-build.in (all): Display start and end times.
14020
14021 * mpw-configure (host_canonical): Set.
14022 (target_cpu): Always add to makefiles.
14023 (ARCHDEFS, EMUL): Add to makefile only if nonempty.
14024 (TM_FILE, XM_FILE, NM_FILE): No longer add to makefile.
14025 (mpw-mh-mpw): Look for in srcdir and srcroot.
14026 Use sed instead of mpw-edit-prefix to edit prefix definitions.
14027
14028 * mpw-build.in: (install-only): New target.
14029
14030 * mpw-configure (host_alias, target_alias): Rename from hostalias
14031 and targetalias, add into generated Makefile.
14032 (mk.tmp): If present, add into generated Makefile.
14033 * mpw-build.in (all-gas): Build config.h first before gas proper.
14034
14035 * mpw-configure (config.status): Write only if changed.
14036 * mpw-config.in (readline): Configure it (not built, just used for
14037 definitions).
14038
14039 * mpw-config.in (elf/mips.h): Add a forward include.
14040
14041 * mpw-config.in: Forward-include most .h files in include into
14042 extra-include.
14043 (readline): Don't build.
14044 mpw-build.in (install): Install GDB.
14045
14046 * mpw-configure (prefix, mpw_prefix): Handle it.
14047 * mpw-config.in (mmalloc, readline): Don't configure.
14048 * mpw-build.in (thisscript): Rename to ThisScript.
14049 Use mpw-build instead of BuildProgram everywhere.
14050 (mmalloc, readline): Don't build.
14051 * mpw-README: New file, basic documentation about the MPW port.
14052
14053 * mpw-config.in: Use forward-include to create include files.
14054
14055 * mpw-configure: Add more things to the top of each configured
14056 Makefile, including contents of config/mpw-mh-mpw.
14057 * mpw-config.in (extra-include): Create this directory and fill it
14058 with Posix-like include files when configuring.
14059
14060 * config.sub (apple, mac, mpw): Add various aliases.
14061
14062 * mpw-build.in: New file, top-level build script fragment for MPW.
14063 * mpw-configure: New file, configure script for MPW.
14064 * mpw-config.in: New file, config fragment for MPW.
14065
14066 Fri Apr 7 19:33:16 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
14067
14068 * configure.in (host_libs): Remove glob, since it is gone from the
14069 sources.
14070
14071 Fri Mar 31 11:36:17 1995 Jason Molenda (crash@phydeaux.cygnus.com)
14072
14073 * Makefile.in: define empty GDB_NLM_DEPS var.
14074
14075 * configure.in(target_makefile_frag): use config/mt-netware
14076 for netware targets.
14077
14078 Thu Mar 30 13:51:43 1995 Ian Lance Taylor <ian@cygnus.com>
14079
14080 * config.sub: Merge in recent FSF changes. Remove linux special
14081 cases.
14082
14083 Tue Mar 28 14:47:34 1995 Jason Molenda (crash@phydeaux.cygnus.com)
14084
14085 Revert this change:
14086
14087 Tue Mar 30 10:03:09 1993 Ian Lance Taylor (ian@cygnus.com)
14088
14089 * build-all.mk: Use CC=cc -Xs on Solaris.
14090
14091 Tue Mar 21 10:43:32 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
14092
14093 * glob/*: Removed. Schauer's 24 Feb 1994 readline change made us
14094 stop using it.
14095 * Makefile.in: Nuke all references to glob subdirectory.
14096
14097 Thu Mar 16 13:35:30 1995 Jason Merrill <jason@phydeaux.cygnus.com>
14098
14099 * configure.in: Fix --enable-shared logic in per-host.
14100
14101 Mon Mar 13 12:33:15 1995 Ian Lance Taylor <ian@cygnus.com>
14102
14103 * configure.in (*-hp-hpux[78]*): Use mh-hpux8.
14104
14105 Mon Mar 6 10:21:58 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
14106
14107 * configure.in (noconfigdirs): Don't build gas on AIX, for
14108 powerpc*-*-aix* as well as for rs6000*-*-aix*.
14109
14110 Wed Mar 1 12:51:53 1995 Ian Lance Taylor <ian@cygnus.com>
14111
14112 * configure: Fix --cache-file to work if the file argument is a
14113 relative path.
14114
14115 Tue Feb 28 17:36:07 1995 Ian Lance Taylor <ian@cygnus.com>
14116
14117 * configure: If the --cache-file is used, pass it down to
14118 configure in subdirectories.
14119
14120 Mon Feb 27 12:52:46 1995 Kung Hsu <kung@mexican.cygnus.com>
14121
14122 * config.sub: add vxworks29k configuration.
14123
14124 Fri Feb 10 16:12:26 1995 Ken Raeburn <raeburn@cujo.cygnus.com>
14125
14126 * Makefile.in (taz): Do "diststuff" part quietly.
14127
14128 Sun Feb 5 14:16:35 1995 Doug Evans <dje@canuck.cygnus.com>
14129
14130 * config.sub: Mini-merge with gcc/config.sub.
14131
14132 Sat Feb 4 12:11:35 1995 Jim Wilson <wilson@chestnut.cygnus.com>
14133
14134 * config.guess (IRIX): Sed - to _.
14135
14136 Fri Feb 3 11:54:42 1995 J.T. Conklin <jtc@rtl.cygnus.com>
14137
14138 * Makefile.in (source-vault, binary-vault): New targets.
14139
14140 Thu Jan 26 13:00:11 1995 Michael Meissner <meissner@cygnus.com>
14141
14142 * config.sub: Recognize -eabi as a basic system type.
14143
14144 Thu Jan 12 13:13:23 1995 Jason Merrill <jason@phydeaux.cygnus.com>
14145
14146 * configure.in (enable_shared stuff): Fix typo.
14147
14148 Thu Jan 12 01:36:51 1995 deanm@medulla.LABS.TEK.COM (Dean Messing)
14149
14150 * Makefile.in (BASE_FLAGS_TO_PASS): Fix typo in passing LIBCXXFLAGS*.
14151
14152 Wed Jan 11 16:29:53 1995 Jason Merrill <jason@phydeaux.cygnus.com>
14153
14154 * Makefile.in (LIBCXXFLAGS_FOR_TARGET): Add -fno-implicit-templates.
14155
14156 Mon Jan 9 12:48:01 1995 Jim Kingdon <kingdon@lioth.cygnus.com>
14157
14158 * configure.in (rs6000-*-*): Don't build gas.
14159
14160 Wed Jan 4 23:53:49 1995 Ian Lance Taylor <ian@tweedledumb.cygnus.com>
14161
14162 * Makefile.in: Use /x/x/ instead of /brokensed/brokensed/, to
14163 reduce command line length.
14164 (AS_FOR_TARGET): Check for as.new, not Makefile.
14165 (NM_FOR_TARGET): Check for nm.new, not Makefile.
14166
14167 Wed Jan 4 13:02:39 1995 Per Bothner <bothner@kalessin.cygnus.com>
14168
14169 * config.guess: Merge from FSF.
14170
14171 Thu Dec 15 17:11:37 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
14172
14173 * configure: Don't use $ when handling program_suffix.
14174
14175 Mon Dec 12 12:09:37 1994 Stu Grossman (grossman@cygnus.com)
14176
14177 * configure.in: Configure tk for hppa/hpux.
14178
14179 Fri Dec 2 15:55:38 1994 Per Bothner <bothner@kalessin.cygnus.com>
14180
14181 * Makefile.in (LIBGXX_SUPPORT_DIRS): Add libstdc++.
14182
14183 Tue Nov 29 19:37:56 1994 Per Bothner <bothner@kalessin.cygnus.com>
14184
14185 * Makefile.in: Move -fno-implicit-template from CXXFLAGS
14186 to LIBCXXFLAGS. Tests are better run without it.
14187
14188 Wed Nov 23 10:29:25 1994 Brendan Kehoe (brendan@lisa.cygnus.com)
14189
14190 * Makefile.in (all-ispell): Depend on all-emacs19 instead of all-emacs.
14191
14192 Mon Nov 21 11:14:01 1994 J.T. Conklin <jtc@rtl.cygnus.com>
14193
14194 * configure.in (*-*-netware*): Don't configure xiberty.
14195
14196 Mon Nov 14 08:49:15 1994 Stu Grossman (grossman@cygnus.com)
14197
14198 * configure.in: Remove tk from native_only list.
14199
14200 Fri Nov 11 15:31:26 1994 Bill Cox (bill@rtl.cygnus.com)
14201
14202 * build-all.mk: Add mips-ncd-elf target to sun4 targets
14203 for special NCD build.
14204
14205 Mon Nov 7 20:58:17 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
14206
14207 * Makefile.in (DEVO_SUPPORT): Remove configure.bat and
14208 makeall.bat, they're only useful for binutils snapshots.
14209 (binutils.tar.gz, gas+binutils.tar.gz): Add configure.bat and
14210 makeall.bat to specified SUPPORT_FILES.
14211
14212 Mon Nov 7 17:25:18 1994 Bill Cox (bill@cirdan.cygnus.com)
14213
14214 * build-all.mk: Add Ericsson targets to sun4 and solaris
14215 hosts. Add BNR's sun4 target to solaris host, so their
14216 build-from-source will be tested in-house first.
14217
14218 Sat Nov 5 18:43:30 1994 Jason Merrill (jason@phydeaux.cygnus.com)
14219
14220 * Makefile.in (LIBCFLAGS): New variable.
14221 (CFLAGS_FOR_TARGET): Ditto.
14222 (LIBCFLAGS_FOR_TARGET): Ditto.
14223 (LIBCXXFLAGS): Ditto.
14224 (CXXFLAGS_FOR_TARGET): Ditto.
14225 (LIBCXXFLAGS_FOR_TARGET): Ditto.
14226 (BASE_FLAGS_TO_PASS): Pass them.
14227 (EXTRA_TARGET_FLAGS): Ditto.
14228
14229 * configure.in: Support --enable-shared.
14230
14231 Sat Nov 5 15:44:00 1994 Per Bothner <bothner@kalessin.cygnus.com>
14232
14233 * configure.in (target_libs): Include libstdc++ again.
14234 * config.guess: Update from FSF (for FreeBSD).
14235
14236 Thu Nov 3 16:32:30 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
14237
14238 * Makefile.in (DEVO_SUPPORT): Include configure.bat and
14239 makeall.bat.
14240 (DISTDOCDIRS): Add `etc'.
14241 (ETC_SUPPORT_PFX): New variable.
14242 (taz): Include anything from etc starting with a word in
14243 ETC_SUPPORT_PFX.
14244
14245 Wed Oct 26 16:19:35 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
14246
14247 * config.sub: Update for recent FSF changes. Remove obsolete
14248 h8300hds entry. Add -windows* and -osx as basic os. Minor
14249 spacing changes.
14250
14251 Thu Oct 20 18:41:56 1994 Per Bothner <bothner@kalessin.cygnus.com>
14252
14253 * configure.in (target_libs): Remove libstdc++ for libg++-2.6.1.
14254
14255 * config.guess: Merge with FSF.
14256 * configure.in: Match on i?86-ncr-sysv4.3, not i?86-ncr-sysv43.
14257
14258 Thu Oct 20 19:26:56 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
14259
14260 * configure: Since the "trap 0" handler will override the exit
14261 status on many systems, only use it for "exit 1", and make it set
14262 a non-zero exit status; reset it before "exit 0". Also, check
14263 exit status of config.sub, and error out if it failed.
14264
14265 Wed Oct 19 18:49:55 1994 Rob Savoye (rob@cygnus.com)
14266
14267 * Makefile.in: (ALL_TARGET_MODULES,INSTALL_TARGET_MODULES) Build
14268 and install libgloss.
14269
14270 Tue Oct 18 15:25:24 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
14271
14272 * Makefile.in (all-binutils): Depend upon all-byacc.
14273
14274 * configure.in: Don't build emacs on Irix 5.
14275
14276 Mon Oct 17 16:22:12 1994 J.T. Conklin (jtc@phishhead.cygnus.com)
14277
14278 * configure.in (*-*-netware*): Add libio.
14279
14280 Thu Oct 13 15:51:20 1994 Jason Merrill (jason@phydeaux.cygnus.com)
14281
14282 * Makefile.in (ALL_TARGET_MODULES): Add libstdc++.
14283 (CHECK_TARGET_MODULES): Ditto.
14284 (INSTALL_TARGET_MODULES): Ditto.
14285 (TARGET_LIBS): Ditto.
14286 (all-libstdc++): Note dependencies.
14287
14288 Thu Oct 13 01:43:08 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
14289
14290 * Makefile.in (BINUTILS_SUPPORT_DIRS): Add gas.
14291
14292 Tue Oct 11 12:12:29 1994 Jason Merrill (jason@phydeaux.cygnus.com)
14293
14294 * Makefile.in (CXXFLAGS): Use -fno-implicit-templates instead of
14295 -fexternal-templates.
14296
14297 * configure.in (target_libs): Add libstdc++.
14298 (noconfigdirs): Add libstdc++ as appropriate.
14299
14300 Thu Oct 6 18:00:54 1994 Per Bothner (bothner@kalessin.cygnus.com)
14301
14302 * config.guess: Update from FSF.
14303
14304 Tue Oct 4 12:05:42 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
14305
14306 * configure: Use ${config_shell} when running ${configsub}.
14307
14308 Mon Oct 3 14:28:34 1994 Doug Evans <dje@canuck.cygnus.com>
14309
14310 * config.sub: No longer recognize h8300h.
14311
14312 Mon Oct 3 12:40:54 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
14313
14314 * config.sub: Remove extraneous differences between config.sub and
14315 gcc/config.sub.
14316
14317 Sat Oct 1 00:23:12 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
14318
14319 * Makefile.in (DISTSTUFFDIRS): Add gas.
14320
14321 Thu Sep 22 19:04:55 1994 Doug Evans (dje@canuck.cygnus.com)
14322
14323 * COPYING.NEWLIB: New file.
14324
14325 Mon Sep 19 18:25:40 1994 Per Bothner (bothner@kalessin.cygnus.com)
14326
14327 * config.guess (HP-UX): Patch from Harlan Stenn
14328 <harlan@landmark.com> to also emit release level.
14329
14330 Wed Sep 7 13:15:25 1994 Jim Wilson (wilson@sphagnum.cygnus.com)
14331
14332 * config.guess (sun4*:SunOS:*:*): Change '-JL' to '_JL'.
14333
14334 Tue Sep 6 23:23:18 1994 Per Bothner (bothner@kalessin.cygnus.com)
14335
14336 * config.sub: Merge nextstep cleanup from FSF.
14337
14338 Mon Sep 5 05:01:30 1994 Ken Raeburn (raeburn@kr-pc.cygnus.com)
14339
14340 * configure.in (arm-*-*): Don't configure ld for this target.
14341
14342 Thu Sep 1 09:35:00 1994 J.T. Conklin (jtc@phishhead.cygnus.com)
14343
14344 * configure.in (*-*-netware): don't configure libg++, libio,
14345 librx, or newlib.
14346
14347 Wed Aug 31 13:52:08 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14348
14349 * configure.in (alpha-dec-osf*): Use osf*, not osf1*. Don't
14350 configure ld--it works, but it doesn't support shared libraries.
14351
14352 Sun Aug 28 18:13:45 1994 Per Bothner (bothner@kalessin.cygnus.com)
14353
14354 * config.guess (*-unknown-freebsd*): Get rid of possible
14355 trailing "(Release)" in version string.
14356 Patch from Paul Richards <paul@isl.cf.ac.uk>.
14357
14358 Sat Aug 27 15:00:49 1994 Per Bothner (bothner@kalessin.cygnus.com)
14359
14360 * config.guess: Fix i486-ncr-sysv43 -> i486-ncr-sysv4.3.
14361 Fix type: *-next-neststep -> *-next-nextstep.
14362
14363 * config.guess: Merge from FSF:
14364
14365 Fri Aug 26 18:45:25 1994 Philippe De Muyter (phdm@info.ucl.ac.be)
14366
14367 * config.guess: Recognize powerpc-ibm-aix3.2.5.
14368
14369 Wed Apr 20 06:36:32 1994 Philippe De Muyter (phdm@info.ucl.ac.be)
14370
14371 * config.guess: Recognize UnixWare 1.1 (UNAME_SYSTEM is SYSTEM_V
14372 instead of UNIX_SV for UnixWare 1.0).
14373
14374 Sat Aug 27 01:56:30 1994 Stu Grossman (grossman@cygnus.com)
14375
14376 * Makefile.in (all-gdb): Add dependencies on all-gcc and all-ld
14377 to make gdb/nlm/* build after the compiler and linker.
14378
14379 Fri Aug 26 14:30:05 1994 Per Bothner (bothner@kalessin.cygnus.com)
14380
14381 * config.guess (netbsd, freebsd, linux): Accept any machine,
14382 not just i[34]86.
14383 (m68k-atari-sysv4): Relocate to match FSF version.
14384
14385 * config.guess: More merges from the FSF:
14386
14387 Add a space before function call or macro invocation.
14388
14389 Tue May 10 16:53:55 1994 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
14390
14391 * config.guess: Add trap cmd to remove dummy.c and dummy when
14392 interrupted.
14393
14394 Wed Apr 20 18:07:13 1994 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
14395
14396 * config.guess (dummy.c): Redirect stderr for `hostinfo' command.
14397 (dummy): Redirect stderr from compilation of dummy.c.
14398
14399 Sat Apr 9 14:59:28 1994 Christian Kranz (kranz@sent5.uni-duisburg.de)
14400
14401 * config.guess: Distinguish between NeXTStep 2.1 and 3.x.
14402
14403 Fri Aug 26 13:42:20 1994 Ken Raeburn (raeburn@kr-laptop.cygnus.com)
14404
14405 * configure: Accept and ignore --cache*, for compatibility with
14406 new autoconf.
14407
14408 Fri Aug 26 13:05:27 1994 Per Bothner (bothner@kalessin.cygnus.com)
14409
14410 * config.guess: Merge from FSF:
14411
14412 Thu Aug 25 20:28:51 1994 Richard Stallman <rms@mole.gnu.ai.mit.edu>
14413
14414 * config.guess (Pyramid*:OSx*:*:*): New case.
14415 (PATH): Add /.attbin at end for finding uname.
14416 (dummy.c): Handle i860-alliant-bsd. Follow whitespace conventions.
14417
14418 Wed Aug 17 18:21:02 1994 Tor Egge (tegge@pvv.unit.no)
14419
14420 * config.guess (M88*:DolphinOS:*:*): New case.
14421
14422 Thu Aug 11 17:00:13 1994 Stan Cox (coxs@dg-rtp.dg.com)
14423
14424 * config.guess (AViiON:dgux:*:*): Use TARGET_BINARY_INTERFACE
14425 to select whether to use ELF or COFF.
14426
14427 Sun Jul 24 16:20:53 1994 Richard Stallman <rms@mole.gnu.ai.mit.edu>
14428
14429 * config.guess: Recognize i860-stardent-sysv and i860-unknown-sysv.
14430
14431 Sun May 1 10:23:10 1994 Richard Stallman (rms@mole.gnu.ai.mit.edu)
14432
14433 * config.guess: Guess the OS version for HPUX.
14434
14435 Tue Mar 1 21:53:03 1994 Karl Heuer (kwzh@hal.gnu.ai.mit.edu)
14436
14437 * config.guess (UNAME_VERSION): Recognize aix3.2.4 and aix3.2.5.
14438
14439 Fri Aug 26 11:19:08 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14440
14441 * configure.in: Recognize --with-headers, --with-libs, and
14442 --without-newlib.
14443 * Makefile.in (all-xiberty): Depend upon all-ld.
14444
14445 Wed Aug 24 12:36:50 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14446
14447 * configure.in: Change i[34]86 to i[345]86.
14448
14449 Mon Aug 22 10:58:33 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14450
14451 * configure (version): A few more tweaks to help message.
14452
14453 Fri Aug 19 12:40:25 1994 Per Bothner (bothner@kalessin.cygnus.com)
14454
14455 * Makefile.in: Remove (for now) librx as a host library,
14456 now that we're building it for target.
14457
14458 Fri Aug 19 10:49:17 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14459
14460 * configure: Fix up help message; from karl@owl.hq.ileaf.com
14461 (Karl Berry).
14462
14463 Tue Aug 16 16:11:08 1994 Per Bothner (bothner@kalessin.cygnus.com)
14464
14465 * configure.in: Also configure librx.
14466
14467 Mon Aug 15 16:51:45 1994 Per Bothner (bothner@kalessin.cygnus.com)
14468
14469 * Makefile.in: Update various rules to reflect that librx
14470 is now needed for libg++.
14471
14472 Fri Aug 12 18:07:21 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14473
14474 * config.sub: Accept mips64orion and mips64orionel as a CPU name.
14475
14476 Mon Aug 8 11:36:17 1994 Stan Shebs (shebs@andros.cygnus.com)
14477
14478 * configure.in: Configure the examples directory.
14479
14480 Thu Aug 4 16:12:36 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14481
14482 * configure: Simplify Jun 2 1994 change.
14483
14484 Wed Aug 3 04:58:16 1994 D. V. Henkel-Wallace (gumby@cygnus.com)
14485
14486 * change CC to /usr/latest/bin/gcc for lynx host builds, since
14487 /bin/gcc isn't good enough to build gcc.
14488
14489 Wed Jul 27 09:07:14 1994 Fred Fish (fnf@cygnus.com)
14490
14491 * Makefile.in (GDB_SUPPORT_FILES): Remove
14492 (setup-dirs-gdb, gdb.tar.gz, make-gdb.tar.gz): Remove old rules.
14493 (gdb.tar.gz): Add new rule to use standard distribution building
14494 mechanism.
14495
14496 Mon Jul 25 11:10:06 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14497
14498 * configure.in: Warn about use of /usr/ucb/cc on Solaris. From
14499 Bill Cox <bill@cygnus.com>.
14500
14501 Sat Jul 23 12:19:46 1994 Per Bothner (bothner@kalessin.cygnus.com)
14502
14503 * config.guess: Recognize ISC. Patch from kwzh@gnu.ai.mit.edu.
14504
14505 Fri Jul 22 17:53:59 1994 Stu Grossman (grossman@cygnus.com)
14506
14507 * configure: Search current dir first in .gdbinit.
14508
14509 Fri Jul 22 11:28:30 1994 Per Bothner (bothner@kalessin.cygnus.com)
14510
14511 * config.sub: Recognize freebsd (merged from gcc config.sub).
14512
14513 Thu Jul 21 14:10:52 1994 Per Bothner (bothner@kalessin.cygnus.com)
14514
14515 * config.sub: Refer to NeXT's operating system as nextstep.
14516
14517 * config.sub (case $basic_machine): Re-order the cases, to match
14518 the order in the FSF version (which is mostly alphabethical).
14519 Merge in some additions and changes from the FSF.
14520
14521 Sat Jul 16 12:03:08 1994 Stan Shebs (shebs@andros.cygnus.com)
14522
14523 * config.guess: Recognize m68k-atari-sysv4 and m88k-harris-csux7.
14524 * config.sub: Recognize cxux7.
14525 * configure.in: Use mh-cxux for m88k-harris-cxux*.
14526
14527 Mon Jul 11 14:37:39 1994 Per Bothner (bothner@kalessin.cygnus.com)
14528
14529 * config.sub: Fix typo powerpc -> powerpc-*.
14530
14531 Sat Jul 9 13:03:43 1994 Michael Tiemann (tiemann@blues.cygnus.com)
14532
14533 * Makefile.in: `all-emacs19' depends on `all-byacc'.
14534
14535 * Makefile.in: Add all-emacs19 and install-emacs19 rules (in
14536 parallel with all-emacs and install-emacs). Top-level command
14537 `make all-emacs19 CC=gcc' now behaves as `make all-emacs CC=gcc'.
14538
14539 Thu Jun 30 16:53:42 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14540
14541 * test-build.mk ($(host)-stamp-stage2-installed): Remove
14542 $(relbindir)/make before doing ``make install'', and use
14543 $(GNU_MAKE) while doing it. Avoids problem on SunOS with
14544 installing over running make binary.
14545 ($(host)-stamp-stage3-installed): Likewise.
14546
14547 Tue Jun 28 13:43:25 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14548
14549 * config.guess: Recognize Mach.
14550
14551 Mon Jun 27 16:41:14 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14552
14553 * configure: Check ${exec_prefixoption}, not ${exec_prefix}, to
14554 see whether --exec-prefix was used.
14555
14556 Sun Jun 26 21:15:54 1994 Per Bothner (bothner@kalessin.cygnus.com)
14557
14558 * README: Explicitly mention libg++/README. (Zoo's idea.)
14559
14560 Tue Jun 21 12:45:55 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14561
14562 * Makefile.in: Add all-librx target similar to all-libproc.
14563
14564 Wed Jun 8 23:11:55 1994 Stu Grossman (grossman@cygnus.com)
14565
14566 * config.guess: Rearrange tests for Alpha-OSF1 to properly deal
14567 with post 1.2 uname bogosity.
14568
14569 Thu Jun 9 00:27:59 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14570
14571 * configure: Remove temporary files on receipt of a signal.
14572
14573 Tue Jun 7 12:06:24 1994 Ian Lance Taylor (ian@cygnus.com)
14574
14575 * configure: If there is a package_makefile_frag, remove
14576 ${subdir}/Makefile.tem after copying it in.
14577
14578 Mon Jun 6 21:35:02 1994 D. V. Henkel-Wallace (gumby@cygnus.com)
14579
14580 * build_all.mk: support rs6000 lynx identifies itself as
14581 rs6000-lynx-lynxos2.2.2. Also, use /usr/cygnus/progressive/bin/gcc
14582 since /bin/gcc is too feeble to compile a modern gcc.
14583
14584 Mon Jun 6 16:06:34 1994 Karen Christiansen (karen@cirdan.cygnus.com)
14585
14586 * brought devo/test-build.mk update-to-date with progressive/
14587 test-build.mk. Add lynx targets and hppa flag info.
14588
14589 Sat Jun 4 17:23:54 1994 Per Bothner (bothner@kalessin.cygnus.com)
14590
14591 * configure.in: Use mh-ncrsvr43. Patch from
14592 Tom McConnell <tmcconne@sedona.intel.com>.
14593
14594 Fri Jun 3 17:47:24 1994 Per Bothner (bothner@kalessin.cygnus.com)
14595
14596 * config.guess (i386-unknown-bsdi): No longer need to
14597 check #if defined(__bsdi__) && defined(__i386__).
14598
14599 Thu Jun 2 18:56:46 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14600
14601 * configure: Set program_transform_nameoption correctly.
14602
14603 Thu Jun 2 10:57:06 1994 Karen Christiansen (karen@cirdan.cygnus.com)
14604
14605 * brought build-all.mk update-to-date with progressive build-all.mk,
14606 added new targets and hppa info.
14607
14608 Thu Jun 2 00:12:44 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14609
14610 * configure: If config.guess result is a prefix of the user
14611 specified target, assume a native build and use the user specified
14612 target as the host alias. Remove SunOS patch suffix removal hack.
14613 * configure.in: Remove SunOS patch suffix removal hack.
14614
14615 * Makefile.in (CROSS_CHECK_MODULES): Remove check-flex, since it's
14616 in NATIVE_CHECK_MODULES.
14617
14618 Wed Jun 1 10:49:41 1994 Bill Cox (bill@rtl.cygnus.com)
14619
14620 * Makefile.in: Rename HOST_ONLY to NATIVE.
14621 * configure: Delete SunOs patch suffix from host_canonical
14622 and build_canonical variables that are prepended to Makefiles.
14623 * configure.in: Add comments for easier maintenance.
14624
14625 Tue May 31 19:39:47 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14626
14627 * Makefile.in: Add all-libproc target similar to all-gui.
14628
14629 Tue May 31 17:16:33 1994 Tom Lord (lord@cygnus.com)
14630
14631 * Makefile.in (CHECK_MODULES): split into
14632 HOST_ONLY_CHECK_MODULES and CROSS_CHECK_MODULES.
14633
14634 Tue May 31 16:36:36 1994 Paul Eggert (eggert@twinsun.com)
14635
14636 * config.guess (i386-unknown-bsdi): New system to guess.
14637
14638 Wed May 25 16:47:10 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14639
14640 * Makefile.in: Add all-gui target (but not yet build by "all").
14641
14642 Thu May 26 08:53:19 1994 Bill Cox (bill@rtl.cygnus.com)
14643
14644 * config.sub: Move deletion of patch suffix from here...
14645 * configure.in: To here, at Ian's suggestion. The top-
14646 level scripts might need to know of a patch level.
14647
14648 Wed May 25 09:15:54 1994 Bill Cox (bill@rtl.cygnus.com)
14649
14650 * config.sub: Strip off patch suffix so rtl is recognized
14651 as a sunos4.1.3 machine, even though it's been patched.
14652
14653 Fri May 20 08:25:49 1994 Steve Chamberlain (sac@deneb.cygnus.com)
14654
14655 * Makefile.in (INSTALL_LAST): Delete.
14656 (INSTALL_DOSREL): New.
14657
14658 Thu May 19 17:12:12 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14659
14660 * configure.in: Use ld for i[34]86-*-sysv4* and sparc-*-solaris2*.
14661 Don't set use_gnu_ld to no for *-*-sysv4; that only controls
14662 whether we pass down --with-gnu-ld anyhow.
14663
14664 Thu May 19 09:29:12 1994 Steve Chamberlain (sac@cygnus.com)
14665
14666 * Makefile.in (INSTALL_LAST): Change operation so it works
14667 on more flavors of make.
14668 * configure.in (go32): Don't build libg++ or libio.
14669
14670 Fri May 13 13:28:34 1994 Steve Chamberlain (sac@cygnus.com)
14671
14672 * Makefile.in (Move HOST_PREFIX_1 and friends up so
14673 they can be overriden by templates.
14674
14675 Sat May 7 16:46:44 1994 Steve Chamberlain (sac@cygnus.com)
14676
14677 * configure.in (target==go32): Don't build gdb.
14678 * dosrel: New directory.
14679
14680 Fri May 6 14:19:25 1994 Steve Chamberlain (sac@cygnus.com)
14681
14682 * configure.in (host==go32): Configure dosrel too.
14683 * Makefile.in (INTALL_TARGET): Call INSTALL_LAST last.
14684 (HOST_CC, HOST_PREFIX, HOST_PREFIX_1): Undefine, they should
14685 be set by incoming names or templates.
14686 (INSTALL_LAST): New rule.
14687
14688 Thu May 5 17:35:05 1994 Stan Shebs (shebs@andros.cygnus.com)
14689
14690 * config.sub (sparclitefrw, sparclitefrwcompat): Don't set the os.
14691
14692 Thu May 5 20:06:45 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
14693
14694 * configure.in (appdirs): New variable. Currently empty, but will
14695 be used in gas distribution. If nonempty, lists a set of
14696 directories at least one of which must get configured, or top
14697 level configuration is considered to have failed.
14698 (rs6000-*-lynxos*): Use new file name.
14699
14700 Thu May 5 13:38:36 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14701
14702 Eliminate XTRAFLAGS.
14703 * Makefile.in (CC_FOR_TARGET): If newlib exists, refer to the
14704 newlib include files using -idirafter, and also use -nostdinc.
14705 (CXX_FOR_TARGET): Likewise.
14706 (XTRAFLAGS): Removed.
14707 (BASE_FLAGS_TO_PASS): Remove XTRAFLAGS_FOR_TARGET.
14708 (EXTRA_HOST_FLAGS): Remove XTRAFLAGS.
14709 (EXTRA_TARGET_FLAGS, EXTRA_GCC_FLAGS): Likewise.
14710 ($(DO_X)): Don't pass down XTRAFLAGS.
14711
14712 Thu May 5 00:16:36 1994 Ken Raeburn (raeburn@kr-pc.cygnus.com)
14713
14714 * configure.in (mips*-dec-bsd*): New target; do build linker.
14715 (mips*-*-bsd*): New target; don't build linker.
14716
14717 Wed May 4 20:10:10 1994 D. V. Henkel-Wallace (gumby@cygnus.com)
14718
14719 * configure.in: support rs6000-*-lynxos* configuration.
14720 support sunos4 as a cross target.
14721
14722 * config.sub: look for lynx*, not lynx since the OS version may
14723 legitimately be part of the name.
14724
14725 Tue May 3 21:48:11 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
14726
14727 * configure.in (i[34]86-*-sco*): Move to be with other i386
14728 targets.
14729 (romp-*-*): New target. Skip various binary utilities.
14730 (vax-*-*): New target. Don't build newlib.
14731 (vax-*-vms): Renamed from *-*-vms. Don't build opcodes or newlib.
14732
14733 Thu Apr 28 15:03:05 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14734
14735 * configure.in: Only set host_makefile_frag if config
14736 directory exists.
14737
14738 Wed Apr 27 12:14:30 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14739
14740 * install.sh: If $dstdir exists, don't check whether each
14741 component does.
14742
14743 Tue Apr 26 18:11:33 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14744
14745 * test-build.mk (HOLES): Add sleep; used by rcs/src/conf.sh.
14746
14747 Mon Apr 25 15:06:34 1994 Stan Shebs (shebs@andros.cygnus.com)
14748
14749 * configure.in (*-*-lynxos*): Don't configure newlib for either
14750 native or cross Lynx.
14751
14752 Sat Apr 16 11:58:16 1994 Doug Evans (dje@canuck.cygnus.com)
14753
14754 * config.sub (sparc64-elf): Fix os.
14755 (z8k): Remove duplicate.
14756
14757 Thu Apr 14 23:33:17 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14758
14759 * Makefile.in (gcc-no-fixedincludes): Touch gcc/include/fixed, not
14760 gcc/stmp-fixproto, to try to prevent fixproto from being run.
14761
14762 Wed Apr 13 15:14:52 1994 Bill Cox (bill@cygnus.com)
14763
14764 * configure: Make file links cleanly even if Lynx fails on
14765 an NFS symlink (at least fail cleanly).
14766
14767 Mon Apr 11 10:58:56 1994 Jim Wilson (wilson@sphagnum.cygnus.com)
14768
14769 * test-build.mk (CC): For mips-sgi-irix4, change -XNh1500 to
14770 -XNh2000.
14771
14772 Sat Apr 9 15:10:45 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14773
14774 * configure: Unknown options are fatal again.
14775
14776 Fri Apr 8 12:01:41 1994 David J. Mackenzie (djm@cygnus.com)
14777
14778 * configure: Ignore --x-includes and --x-libraries, for Autoconf
14779 compatibility.
14780
14781 Thu Apr 7 17:31:43 1994 Doug Evans (dje@canuck.cygnus.com)
14782
14783 * build-all.mk: Add `clean' target.
14784
14785 Wed Apr 6 20:44:56 1994 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
14786
14787 * config.guess: Add SINIX support.
14788 * configure.in: Add mips-*-sysv4* support.
14789
14790 Mon Apr 4 17:41:44 1994 Doug Evans (dje@canuck.cygnus.com)
14791
14792 * build-all.mk: Document all useful targets.
14793 If canonhost is sparc-sun-solaris2.3, change it to sparc-sun-solaris2.
14794 If canonhost is mips-sgi-irix4.0.5H, change it to mips-sgi-irix4.
14795
14796 Thu Mar 31 04:55:57 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14797
14798 * configure: Support --silent, --quiet.
14799
14800 Wed Mar 30 21:37:38 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14801
14802 * configure: Support --disable-FEATURE.
14803
14804 Tue Mar 29 19:15:05 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14805
14806 * config.guess: Recognize NCR running SVR4.3.
14807
14808 Mon Mar 28 14:55:15 1994 Per Bothner (bothner@kalessin.cygnus.com)
14809
14810 * config.guess: Make BSDI generate i386-unknown-bsd386.
14811 Patch from Paul Eggert <eggert@twinsun.com>.
14812
14813 Mon Mar 28 12:54:52 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14814
14815 * configure.in (powerpc-*-aix*): Treat like rs6000-*-*.
14816
14817 Sat Mar 26 11:25:48 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14818
14819 * configure: Make unrecognized options give nonfatal warnings
14820 instead of fatal errors, and pass them to any subdirectory
14821 configures in case they recognize them.
14822 Make --x equivalent to --with-x.
14823
14824 Fri Mar 25 21:52:10 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14825
14826 * configure: Add --enable-* options. Clean up usage message and
14827 some comments.
14828
14829 Thu Mar 24 09:12:53 1994 Doug Evans (dje@canuck.cygnus.com)
14830
14831 * Makefile.in (NM_FOR_TARGET): Build tree version is now nm.new.
14832
14833 Sun Mar 20 11:28:22 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
14834
14835 * configure.in (hppa*-*-*): Enable binutils.
14836
14837 Sat Mar 19 11:50:16 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14838
14839 * config.sub: Recognize cisco.
14840
14841 Fri Mar 18 16:42:32 1994 Jason Merrill (jason@deneb.cygnus.com)
14842
14843 * Makefile.in (CXXFLAGS): Add -fexternal-templates.
14844
14845 Tue Mar 15 11:25:55 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14846
14847 * config.guess: about target *-hitachi-hiuxwe2, don't print more
14848 than one configuration name. Add comment.
14849
14850 Sun Mar 6 23:13:38 1994 Hisashi MINAMINO (minamino@sra.co.jp)
14851
14852 * config.guess: about target *-hitachi-hiuxwe2, fixed
14853 machine guessing order. [Hitachi's CPU_IS_HP_MC68K
14854 macro is incorrect.]
14855
14856 Sun Mar 13 09:10:08 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14857
14858 * Makefile.in (TAGS): Just build TAGS in each subdirectory, rather
14859 than the "make ls" stuff which used to be here.
14860
14861 Fri Mar 11 12:52:39 1994 Per Bothner (bothner@kalessin.cygnus.com)
14862
14863 * config.guess: Recognize i[34]86-unknown-freebsd.
14864 From Shawn M Carey <smcarey@rodan.syr.edu>.
14865
14866 Thu Mar 3 14:24:21 1994 Per Bothner (bothner@kalessin.cygnus.com)
14867
14868 * configure.in (noconfigdirs for alpha): Remove libg++ and libio.
14869
14870 Wed Mar 2 13:28:48 1994 Jim Kingdon (kingdon@deneb.cygnus.com)
14871
14872 * config.guess: Check for ptx.
14873
14874 Mon Feb 28 16:46:50 1994 Kung Hsu (kung@mexican.cygnus.com)
14875
14876 * config.sub: Add os9k checking.
14877
14878 Thu Feb 24 07:09:04 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
14879
14880 * config.guess: Handle OSF1 running on HPPA processors
14881
14882 Fri Feb 18 14:14:00 1994 Ken Raeburn (raeburn@rtl.cygnus.com)
14883
14884 * configure: If subdir configure fails, print out a message with
14885 subdirectory name, in case subdir's configure code didn't identify
14886 itself.
14887
14888 Fri Feb 18 12:50:15 1994 Doug Evans (dje@cygnus.com)
14889
14890 * configure.in: Remove embedded newlines from configdirs.
14891 Avoid mismatches of substrings. Fix matching strings at end
14892 of configdirs.
14893
14894 Fri Feb 11 15:33:33 1994 Stu Grossman (grossman at cygnus.com)
14895
14896 * config.guess: Add Lynx/rs6000 config support.
14897
14898 Tue Feb 8 13:41:09 1994 Ken Raeburn (raeburn@rtl.cygnus.com)
14899
14900 * configure.in (alpha-dec-osf1*, alpha*-*-*): Build gas.
14901
14902 Mon Feb 7 15:42:36 1994 Jeffrey A. Law (law@cygnus.com)
14903
14904 * configure.in (hppa*-*-osf*): Treat this just like most other
14905 PA configurations (eg no binutils or ld).
14906 (hppa*-*-*elf*): These configurations have binutils and ld.
14907
14908 Sun Feb 6 16:35:07 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
14909
14910 * config.sub (hiux): Fix typo. From m-kasahr@sramhc.sra.co.JP.
14911
14912 Sat Feb 5 01:00:33 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14913
14914 * configure.in (rs6000-*-*): Build gas.
14915
14916 Wed Feb 2 13:57:57 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
14917
14918 * Makefile.in: Avoid bug in losing hpux sed.
14919
14920 Wed Feb 2 14:53:05 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14921
14922 * Makefile.in, test-build.mk: Remove MUNCH_NM; it was only needed
14923 for GDB and GDB has been fixed to not need it.
14924
14925 Sun Jan 30 17:58:06 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
14926
14927 * config.guess: Recognize vax hosts.
14928
14929 Fri Jan 28 15:29:38 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
14930
14931 * configure (while loop): Don't use "break 2" inside case
14932 statement -- the case statement isn't an enclosing loop.
14933
14934 Mon Jan 24 18:40:06 1994 Per Bothner (bothner@kalessin.cygnus.com)
14935
14936 * config.guess: Clean up NeXT support, to allow nextstep
14937 on Intel machines. Make OS be nextstep.
14938
14939 Sun Jan 23 18:47:22 1994 Richard Kenner (kenner@vlsi1.ultra.nyu.edu)
14940
14941 * config.guess: Add alternate forms for Convex.
14942
14943 Thu Jan 20 16:13:41 1994 Stu Grossman (grossman at cygnus.com)
14944
14945 * configure: Completely rewrite option processing. Take
14946 advantage of pattern-matching to avoid invoking test frequently.
14947 Also clean up host and target defaulting logic.
14948
14949 Mon Jan 17 15:06:56 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
14950
14951 * Makefile.in: Replace all occurrances of "rootme" with "r" and
14952 "$${rootme}" with "$$r", to increase the likelihood that the do-*
14953 commands (plus user environment) will fit SCO limits.
14954
14955 Thu Jan 6 11:20:57 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14956
14957 * configure.in: Don't issue warnings about directories which are
14958 not being configured if -norecursion is set. Correct test for
14959 --with-gnu-as and --with-gnu-ld to not get confused by substring
14960 matches.
14961
14962 * configure.in: Don't build gas for alpha-dec-osf1*.
14963
14964 Tue Jan 4 17:10:19 1994 Stu Grossman (grossman at cygnus.com)
14965
14966 * configure: Back out Per's change of 12/19/1993. It changes the
14967 behavior of configure in unexpected and confusing ways.
14968
14969 Also, use different delim char when calculating
14970 program_transform_name so that the name can contain slashes.
14971
14972 Sat Jan 1 13:45:31 1994 Rob Savoye (rob@darkstar.cygnus.com)
14973
14974 * configure.in, config.sub: Add support for VSTa micro-kernel.
14975
14976 Sat Dec 25 20:00:47 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
14977
14978 * configure.in: Nuke hacks which were used to get a special
14979 version of GAS for HPPA configurations.
14980
14981 Sun Dec 19 20:40:44 1993 Per Bothner (bothner@kalessin.cygnus.com)
14982
14983 * configure: If only ${target_alias} is given, use that
14984 as the default for ${host_alias}.
14985 * configure: Add missing back-slashes before nested quotes.
14986
14987 Wed Dec 15 18:07:18 1993 david d `zoo' zuhn (zoo@andros.cygnus.com)
14988
14989 * Makefile.in (BASE_FLAGS_TO_PASS): add YACC=$(BISON)
14990
14991 Tue Dec 14 21:25:33 1993 Per Bothner (bothner@cygnus.com)
14992
14993 * config.guess: Recognize some Tektronix configurations.
14994 From Kaveh R. Ghazi <ghazi@noc.rutgers.edu>.
14995
14996 Sat Dec 11 11:18:00 1993 Steve Chamberlain (sac@thepub.cygnus.com)
14997
14998 * config.sub: Match any flavor of SH.
14999
15000 Thu Dec 2 17:16:58 1993 Ken Raeburn (raeburn@cujo.cygnus.com)
15001
15002 * configure.in: Don't try to configure newlib for Alpha.
15003
15004 Thu Dec 2 14:35:54 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
15005
15006 * configure.in: Don't build ld for Irix 5. Don't build gas,
15007 libg++ or libio for any Alpha target.
15008
15009 * configure.in (mips*-sgi-irix5*): New target; use mh-irix5.
15010
15011 Wed Dec 1 17:00:33 1993 Jason Merrill (jason@deneb.cygnus.com)
15012
15013 * Makefile.in (GZIPPROG): Renamed from GZIP, which gzip uses for
15014 default arguments -- so it tried to compress itself.
15015
15016 Tue Nov 30 13:45:15 1993 david d `zoo' zuhn (zoo@andros.cygnus.com)
15017
15018 * configure.in (notsupp): ensure that a space is always at the end
15019 of the configdirs list, since the grep checks for an explicit space
15020
15021 Tue Nov 16 15:04:27 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15022
15023 * configure.in (target i386-sysv4.2): don't build ld, since static
15024 versions of many libraries are not available.
15025
15026 Tue Nov 16 14:28:12 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15027
15028 * config.guess: Recognize Apollos (using environment variables).
15029 * configure.in: Don't configure ld, binutils, or gprof for Apollo.
15030
15031 Thu Nov 11 12:03:50 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15032
15033 * config.guess: Recognize Sony news mips running newsos.
15034
15035 Wed Nov 10 16:57:00 1993 Mark Eichin (eichin@cygnus.com)
15036
15037 * Makefile.in (all-cygnus, build-cygnus): "fi else" needs to be
15038 "fi ; else" for bash.
15039
15040 Tue Nov 9 15:54:01 1993 Mark Eichin (eichin@cygnus.com)
15041
15042 * Makefile.in (BASE_FLAGS_TO_PASS): pass SHELL.
15043
15044 Fri Nov 5 08:07:27 1993 D. V. Henkel-Wallace (gumby@blues.cygnus.com)
15045
15046 * config.sub: accept unixware as an alias for svr4.2.
15047 Fix some inconsistancies with the gcc version.
15048
15049 Fri Nov 5 15:14:12 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15050
15051 * Makefile.in (DISTDOCDIRS): Add gdb.
15052
15053 Fri Nov 5 11:59:42 1993 Per Bothner (bothner@kalessin.cygnus.com)
15054
15055 * Makefile.in (DISTDOCDIRS): Add libg++ and libio.
15056
15057 Fri Nov 5 10:35:05 1993 Ken Raeburn (raeburn@rover.cygnus.com)
15058
15059 * Makefile.in (taz): Only build "info" in DISTDOCDIRS.
15060 (DISTDOCDIRS): Don't assume libg++ and gdb folks necessarily want
15061 this now.
15062
15063 Thu Nov 4 18:58:23 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15064
15065 * config.sub: Accept hiux* as an OS name.
15066
15067 * Makefile.in: Change RUNTEST_FLAGS back to RUNTESTFLAGS per
15068 etc/make-stds.texi. The underscore came from gcc, and dje now
15069 agrees that RUNTESTFLAGS is the correct name.
15070
15071 Thu Nov 4 10:49:01 1993 Per Bothner (bothner@kalessin.cygnus.com)
15072
15073 * install.sh: Remove 'set -e'. It makes any conditionals
15074 in the script useless.
15075
15076 * config.guess: Automatically recognize arm-acorn-riscix
15077 Patch from Richard Earnshaw (rwe11@cl.cam.ac.uk).
15078
15079 Thu Nov 04 08:08:04 1993 Jeffrey Wheat (cassidy@cygnus.com)
15080
15081 * Makefile.in: Change RUNTESTFLAGS to RUNTEST_FLAGS
15082
15083 Wed Nov 3 22:09:46 1993 Ken Raeburn (raeburn@rtl.cygnus.com)
15084
15085 * Makefile.in (DISTDOCDIRS): New variable.
15086 (taz): Edit local Makefile.in sooner, instead of proto-toplev
15087 Makefile.in later. Build "info" and "dvi" in DISTDOCDIRS.
15088
15089 Wed Nov 3 21:31:52 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15090
15091 * configure.in (hppa target): check the source directory for the
15092 pagas sub-directory
15093
15094 Wed Nov 3 11:12:22 1993 Doug Evans (dje@canuck.cygnus.com)
15095
15096 * config.sub: Allow -aout* and -elf*.
15097
15098 Wed Nov 3 11:08:33 1993 Ken Raeburn (raeburn@rtl.cygnus.com)
15099
15100 * configure.in: Don't build ld on i386-solaris2, same as for
15101 sparc-solaris2.
15102
15103 Tue Nov 2 14:21:25 1993 Per Bothner (bothner@kalessin.cygnus.com)
15104
15105 * Makefile.in (taz): Add texinfo/lgpl.texinfo (for libg++).
15106
15107 Tue Nov 2 13:38:30 1993 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
15108
15109 * configure.in: Configure gdb for alpha.
15110
15111 Mon Nov 1 10:42:54 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15112
15113 * Makefile.in (CXXFLAGS): Add -O.
15114
15115 Wed Oct 27 10:45:06 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15116
15117 * config.guess: added support for DG Aviion
15118
15119 Tue Oct 26 14:37:37 1993 Ken Raeburn (raeburn@rover.cygnus.com)
15120
15121 * configure.in: Produce warning message for subdirectories not
15122 configurable for this host/target combination. Don't try to
15123 configure gdb for vms.
15124
15125 Mon Oct 25 11:22:15 1993 Ken Raeburn (raeburn@rover.cygnus.com)
15126
15127 * Makefile.in (taz): Replace "byacc" with "bison -y" in the
15128 appropriate files before making "diststuff".
15129 (DISTBISONFILES): New var: list of files to be edited.
15130 (DISTSTUFFDIRS): Add binutils.
15131
15132 Fri Oct 22 20:32:15 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15133
15134 * config.sub: also handle mipsel and mips64el (for little endian mips)
15135
15136 Fri Oct 22 07:59:20 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15137
15138 * configure.in: Add * to end of all OS names.
15139
15140 Thu Oct 21 11:38:28 1993 Stan Shebs (shebs@rtl.cygnus.com)
15141
15142 * configure.in: Build newlib for LynxOS native.
15143
15144 Wed Oct 20 09:56:12 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15145
15146 * config.guess: Add support for delta 88k running SVR3.
15147
15148 * configure.in: Add comment about HP compiler vs. emacs.
15149
15150 Tue Oct 19 16:02:22 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15151
15152 * configure.in: don't build ld on solaris2 (not a viable option
15153 due to bugs in getpwnam & getpwuid)
15154
15155 Tue Oct 19 15:13:56 1993 Ken Raeburn (raeburn@rtl.cygnus.com)
15156
15157 * configure.in: Accept alpha-dec-osf1*, not just -osf1, since
15158 config.guess will produce a full version number.
15159
15160 Tue Oct 19 15:58:01 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
15161
15162 * configure.in: Build linker and binutils for alpha-dec-osf1.
15163
15164 Tue Oct 19 11:41:55 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15165
15166 * Makefile.in: Remove -O from CXXFLAGS for consistency with CFLAGS,
15167 and gdb/testsuite/Makefile.in.
15168
15169 Sat Oct 9 18:39:07 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15170
15171 * configure.in: recognize mips*- instead of mips-
15172
15173 Fri Oct 8 14:15:39 1993 Ken Raeburn (raeburn@cygnus.com)
15174
15175 * config.sub: Accept linux*coff and linux*elf as operating
15176 systems.
15177
15178 Thu Oct 7 12:57:19 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
15179
15180 * config.sub: Recognize mips64, and mips3 as an alias for it.
15181
15182 Wed Oct 6 13:54:21 1993 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
15183
15184 * configure.in: Remove alpha-dec-osf*, no longer necessary now that
15185 gdb knows how to handle OSF/1 shared libraries.
15186
15187 Tue Oct 5 11:55:04 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15188
15189 * configure.in: Recognize hppa*-*-hiux* (currently synonym for hpux).
15190 * config.guess: Recognize Hitachi's HIUX.
15191 * config.sub: Recognize h3050r* and hppahitachi.
15192 Remove redundant cases for hp9k[23]*.
15193
15194 Mon Oct 4 16:15:09 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15195
15196 * configure.in: default to '--with-gnu-as' and '--with-gnu-ld'
15197 if gas and ld are in the source tree and are in ${configdirs}.
15198 If ${use_gnu_as} or ${use_gnu_ld} are 'no', then don't set the
15199 --with options (but still pass them down on the command line,
15200 if they were explicitly specified).
15201
15202 Fri Sep 24 19:11:13 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15203
15204 * configure: substitute SHELL value in Makefile.in with
15205 ${CONFIG_SHELL}
15206
15207 Thu Sep 23 18:05:13 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
15208
15209 * configure.in: Build gas, ld, and binutils for *-*-sysv4* and
15210 *-*-solaris2* targets.
15211
15212 Sun Sep 19 17:01:41 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15213
15214 * Makefile.in: define M4, and pass it down to sub-makes;
15215 all-autoconf now depends on all-m4
15216
15217 Sat Sep 18 00:38:23 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15218
15219 * Makefile.in ({AR,RANLIB}_FOR_TARGET): make contingent on
15220 presence of {ar,ranlib} instead of a configured directory
15221
15222 Wed Sep 15 08:41:44 1993 Jim Kingdon (kingdon@cirdan.cygnus.com)
15223
15224 * config.guess: Accept 34?? as well as 33?? for NCR.
15225
15226 Mon Sep 13 12:28:43 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15227
15228 * configure.in: grab mt-hppa for HPPA targets; use 'gas ' instead
15229 of 'gas' in sed commands, since 'gash' is now in the tree as well.
15230
15231 Fri Sep 10 11:23:52 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15232
15233 * configure: grab values for $(CC) and $(CXX) from the
15234 environment, so that someone can do "CC=gcc configure; make" and
15235 have it work right (matching the way that autoconf works now)
15236
15237 * configure.in, Makefile.in: add support for gash, the tcl
15238 interface to Galaxy
15239
15240 * config.guess: add NetBSD variants (hp300, x86)
15241
15242 Thu Sep 9 16:48:52 1993 Jason Merrill (jason@deneb.cygnus.com)
15243
15244 * install.sh: Support -d option (in the manner of SunOS 4 install,
15245 as it is more deterministic than that of GNU install)
15246 (chmodcmd): Set file to mode 755 by default (should also do default
15247 chgrp and chown, but I don't feel like dealing with that now)
15248
15249 Tue Sep 7 11:59:39 1993 Doug Evans (dje@canuck.cygnus.com)
15250
15251 * config.sub: Remove h8300hhms alias.
15252
15253 Tue Aug 31 11:00:09 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15254
15255 * configure.in: Match *-*-solaris2* not *-sun-solaris2*.
15256
15257 Mon Aug 30 18:29:10 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15258
15259 * Makefile.in (gcc-no-fixedincludes): touch stmp-fixproto as well
15260 as stmp-fixinc
15261
15262 Wed Aug 25 16:35:59 1993 K. Richard Pixley (rich@sendai.cygnus.com)
15263
15264 * config.sub: recognize m88110-bug-coff.
15265
15266 Tue Aug 24 10:23:24 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15267
15268 * Makefile.in (all-libio): all dependencies on the toolchain used
15269 to build this (gcc, gas, ld, etc)
15270
15271 Fri Aug 20 17:24:24 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15272
15273 * config.guess: Deal with OSF/1 1.3 on alpha.
15274
15275 Thu Aug 19 11:43:04 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15276
15277 * install.sh: add some 'else true' clauses for portability
15278
15279 * configure.in: don't build libio for h8[35]00-*-* targets
15280
15281 Tue Aug 17 19:02:31 1993 Per Bothner (bothner@kalessin.cygnus.com)
15282
15283 * Makefile.in: Add support for new libio.
15284
15285 Sun Aug 15 20:48:55 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15286
15287 * install.sh: If one command fails, don't try the rest. Don't try
15288 to remove $dsttmp (via trap) unless we have already created it.
15289 If $src doesn't exist, detect it and exit with an error.
15290
15291 * config.guess: Recognize BSD on hp300.
15292
15293 Wed Aug 11 18:35:13 1993 Per Bothner (bothner@kalessin.cygnus.com)
15294
15295 * config.guess: Map (9000/[34]??:HP-UX:*:*) to m68k-hp-hpux.
15296 Bug report from "Hamish (H.I.) Macdonald" <hamish@bnr.ca>.
15297
15298 Wed Aug 11 15:37:51 1993 Jason Merrill (jason@deneb.cygnus.com)
15299
15300 * Makefile.in (all-send-pr): depends on all-prms
15301
15302 Wed Aug 11 16:56:03 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15303
15304 * config.guess: Fix typo (9000/8??:4.3bsd -> 9000/7??:4.3bsd).
15305
15306 Fri Aug 6 14:45:02 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
15307
15308 * config.guess: From michael@mercury.cs.mun.ca (Michael Rendell):
15309 Added test for mips-mips-riscos5.
15310
15311 Thu Aug 5 15:45:08 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15312
15313 * configure.in: use mh-hp300 for 68k HP hosts
15314
15315 Mon Aug 2 11:56:53 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15316
15317 * configure: add support for CONFIG_SHELL, so that you can use
15318 some alternate shell for evaluating configure scripts
15319
15320 Sun Aug 1 11:36:27 1993 Fred Fish (fnf@deneb.cygnus.com)
15321
15322 * Makefile.in (make-gdb.tar.gz): Sed bug reporting address
15323 in configure script to bug-gdb@prep.ai.mit.edu when building
15324 distribution archive.
15325 * Makefile.in (COMPRESS): Remove def.
15326 * Makefile.in (gdb.tar.gz, make-gdb.tar.gz): Renamed from
15327 gdb.tar.Z and make-gdb.tar.Z respectively.
15328 * Makefile.in (make-gdb.tar.gz): Now only build gzip'd archive.
15329 * Makefile.in (make-gdb.tar.gz): Minor changes to move closer
15330 to convergence with 'taz' target in Makefile.in.
15331
15332 Fri Jul 30 12:34:57 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15333
15334 * install.sh (dsttmp): use trap to ensure that tmp files go
15335 away on error conditions
15336
15337 Wed Jul 28 11:57:36 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15338
15339 * Makefile.in (BASE_FLAGS_TO_PASS): remove LOADLIBES
15340
15341 Tue Jul 27 12:43:40 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15342
15343 * Makefile.in (install-dirs): Deal with a prefix like /gnu;
15344 its parent is '/' not ''.
15345
15346 * Makefile.in (DEVO_SUPPORT): Add comments about ChangeLog.
15347
15348 Fri Jul 23 09:53:37 1993 Jason Merrill (jason@wahini.cygnus.com)
15349
15350 * configure: if ${newsrcdir}/configure doesn't exist, don't assume
15351 that ${newsrcdir}/configure.in does.
15352
15353 Tue Jul 20 11:28:50 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15354
15355 * test-build.mk: support for CONFIG_SHELL
15356
15357 Mon Jul 19 21:54:46 1993 Fred Fish (fnf@deneb.cygnus.com)
15358
15359 * config.sub (netware): Add as a basic system type.
15360
15361 Wed Jul 14 12:03:11 1993 K. Richard Pixley (rich@sendai.cygnus.com)
15362
15363 * Makefile.in (Makefile): depend on configure.in. Also drop the
15364 $(srcdir)/ from the dependency on Makefile.in.
15365
15366 Tue Jul 13 20:10:58 1993 Doug Evans (dje@canuck.cygnus.com)
15367
15368 * config.sub: Recognize h8300hhms as h8300h-hitachi-hms.
15369 (h8300hhms is temporary until multi-libraries are implemented).
15370 * configure.in: Handle h8300h too.
15371
15372 Sun Jul 11 17:35:27 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15373
15374 * config.guess: Recognize dpx/2 as m68k-bull-sysv3.
15375
15376 Thu Jul 8 18:26:12 1993 John Gilmore (gnu@cygnus.com)
15377
15378 * configure: Remove extraneous output when guessing host type.
15379 * config.guess: Remove extraneous output when guessing using C
15380 compiler rather than uname, or when guessing fails.
15381
15382 Wed Jul 7 17:58:14 1993 david d `zoo' zuhn (zoo at rtl.cygnus.com)
15383
15384 * Makefile.in: remove all.cross and install.cross targets
15385
15386 * configure: remove CROSS=-DCROSS_COMPILE and ALL=all.cross
15387 definitions
15388
15389 Tue Jul 6 10:39:44 1993 Steve Chamberlain (sac@phydeaux.cygnus.com)
15390
15391 * configure.in (target sh): Build gprof.
15392
15393 Thu Jul 1 16:52:56 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15394
15395 * config.sub: change -solaris to -solaris2
15396
15397 Thu Jul 1 15:46:16 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15398
15399 * configure.in: Use config/mh-riscos for mips-*-sysv*.
15400
15401 Wed Jun 30 09:31:58 1993 Ian Lance Taylor (ian@cygnus.com)
15402
15403 * configure: Correct error message for missing Makefile.in to
15404 print correct directory.
15405
15406 Tue Jun 29 13:52:16 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15407
15408 * install.sh: kludge around 386BSD shell bug
15409
15410 Tue Jun 29 13:06:49 1993 Per Bothner (bothner@rtl.cygnus.com)
15411
15412 * config.guess: Recognize NeXT.
15413 * config.guess: Recognize i486-ncr-sysv4.
15414 * Makefile.in (taz): rm $(TOOL)-$$VER before linking.
15415
15416 Tue Jun 29 12:50:57 1993 Ian Lance Taylor (ian@cygnus.com)
15417
15418 * Makefile.in (MAKEINFOFLAGS): New variable.
15419 (FLAGS_TO_PASS): Pass MAKEINFO as MAKEINFO MAKEINFOFLAGS.
15420 * build-all.mk, test-build.mk: Pass down --no-split as
15421 MAKEINFOFLAGS when hosted on DOS. Compile DOS hosted without -g.
15422
15423 Thu Jun 24 13:39:11 1993 Per Bothner (bothner@rtl.cygnus.com)
15424
15425 * Makefile.in (DEVO_SUPPORT): Add COPYING COPYING.LIB install.sh.
15426
15427 Wed Jun 23 12:59:21 1993 Per Bothner (bothner@rtl.cygnus.com)
15428
15429 * Makefile.in (libg++.tar.z): New rule.
15430 * Makefile.in (taz): Replace 'configure -rm' by 'make distclean'.
15431 * Makefile.in (taz): Only do a single chmod.
15432
15433 Fri Jun 18 12:03:10 1993 david d `zoo' zuhn (zoo at majipoor.cygnus.com)
15434
15435 * install.sh: don't use dirname anymore (replaced with sed usage)
15436
15437 Thu Jun 17 18:43:42 1993 Fred Fish (fnf@cygnus.com)
15438
15439 * Makefile.in: Change extension for gzip'd files from '.z' to
15440 '.gz' per new FSF standard usage.
15441
15442 Thu Jun 17 16:58:50 1993 david d `zoo' zuhn (zoo at majipoor.cygnus.com)
15443
15444 * configure: put quotes around the final value of program_transform_name
15445
15446 Tue Jun 15 16:48:51 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15447
15448 * Makefile.in: new install.sh support; update install-info rules
15449
15450 Wed Jun 9 12:31:34 1993 Ian Lance Taylor (ian@cygnus.com)
15451
15452 * configure.in: Build diff for crosses, but not for go32 host.
15453
15454 * configure.in: Build gprof only for native, and don't build it
15455 for mips-*-*, rs6000-*-*, or i[34]86-*-sco*.
15456
15457 Mon Jun 7 13:12:11 1993 david d `zoo' zuhn (zoo at deneb.cygnus.com)
15458
15459 * configure.in: don't build gas,ld,binutils on for *-*-sysv4
15460
15461 Mon Jun 7 11:40:11 1993 Brendan Kehoe (brendan@lisa.cygnus.com)
15462
15463 * configure.in (host_tools): Add prms.
15464
15465 Fri Jun 4 13:30:42 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15466
15467 * Makefile.in: install gcc, do installation of $(INSTALL_MODULES)
15468 with $(FLAGS_TO_PASS) on the command line
15469
15470 * config.sub: Recognize lynx and lynxos
15471
15472 Fri Jun 4 10:59:56 1993 Ian Lance Taylor (ian@cygnus.com)
15473
15474 * config.sub: Accept -ecoff*, not just -ecoff.
15475
15476 Thu Jun 3 17:38:54 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15477
15478 * Makefile.in (taz): Use .gz suffix instead of .z.
15479 (binutils.tar.gz, gas+binutils.tar.gz, gas.tar.gz): Fixed target
15480 names.
15481
15482 Thu Jun 3 00:27:06 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15483
15484 * Makefile.in (vault-install): add an 'else true' (for Ultrix)
15485
15486 Wed Jun 2 18:19:16 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15487
15488 * Makefile.in (install-no-fixedincludes): install gcc last, so
15489 that rebuilds that might happen during 'make install' don't get
15490 bogus gcc include files
15491
15492 Wed Jun 2 16:14:10 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15493
15494 Change from Utah for HPPA support:
15495 * config.guess: Recognize hppa1.x-hp-bsd.
15496
15497 Wed Jun 2 11:53:33 1993 Per Bothner (bothner@rtl.cygnus.com)
15498
15499 * config.guess: Add support for Motorola Delta 68k, up to r3v7.
15500 Patch from pot@fly.cnuce.cnr.it (Francesco Potorti`).
15501
15502 Tue Jun 1 17:48:42 1993 Rob Savoye (rob at darkstar.cygnus.com)
15503
15504 * config.sub: Add support for rom68k and bug boot monitors.
15505
15506 Mon May 31 09:36:37 1993 Jim Kingdon (kingdon@cygnus.com)
15507
15508 * Makefile.in: Make all-opcodes depend on all-bfd.
15509
15510 Thu May 27 08:05:31 1993 Ian Lance Taylor (ian@cygnus.com)
15511
15512 * config.guess: Added special check for i[34]86-univel-sysv4*.
15513
15514 Wed May 26 16:33:40 1993 Ian Lance Taylor (ian@cygnus.com)
15515
15516 * config.guess: For i[34]86-unknown-sysv4 use UNAME_MACHINE for
15517 the processor rather than assuming i486.
15518
15519 Wed May 26 09:40:18 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15520
15521 * config.guess: Recognize SunOS6 as Solaris3.
15522
15523 Tue May 25 23:03:11 1993 Per Bothner (bothner@cygnus.com)
15524
15525 * config.guess: Fix typo. Avoid #elif (not in K&R 1).
15526 Recognize SunOS 5.* only (and not [6-9].*) as being Solaris2.
15527
15528 Tue May 25 12:44:18 1993 Ian Lance Taylor (ian@cygnus.com)
15529
15530 * build-all.mk (all-cross): New target for Canadian Cross.
15531 Added Q2 go32 targets.
15532 * test-build.mk: Configure go32 cross sparclite-aout and
15533 mips-idt-ecoff -with-gnu-ld. Moved build binary directory from
15534 PARTIAL_HOLE_DIRS to BUILD_HOLES_DIRS.
15535
15536 Mon May 24 15:30:06 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15537
15538 * configure.in: fix Alpha GDB typo; also, don't build DejaGnu for
15539 GO32 hosted toolchains
15540
15541 Mon May 24 14:18:41 1993 Rob Savoye (rob at darkstar.cygnus.com)
15542
15543 * configure: change so "-exec-prefix" gets passed down rather
15544 than "-exec_prefix" so autoconf generated Makefiles get the
15545 exec_prefix set right.
15546
15547 Fri May 21 10:42:25 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15548
15549 * config.guess: get the Solaris2 minor version number
15550
15551 * Makefile.in: add standards.texi and make-stds.texi to ETC_SUPPORT
15552
15553 Fri May 21 06:20:52 1993 Brendan Kehoe (brendan@lisa.cygnus.com)
15554
15555 * config.guess: Recognize some Sequent platforms.
15556
15557 Thu May 20 14:33:48 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15558
15559 * Makefile.in: added the vault-install target
15560
15561 * configure.in: actually use the Sun3 makefile fragment that's in
15562 config, also added the release dir to configdirs
15563
15564 Thu May 20 14:19:18 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15565
15566 * Makefile.in (taz): Fix modes on stuff in $(TOOL) dir also.
15567
15568 Tue May 18 20:26:41 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15569
15570 * configure.in: remove some program from Alpha targetted toolchains
15571
15572 Tue May 18 15:23:19 1993 Ken Raeburn (raeburn@cygnus.com)
15573
15574 * Makefile.in (DISTSTUFFDIRS): Renamed from PROTODIRS. Add ld and
15575 gprof.
15576 (taz): Run "make diststuff" in those directories instead of "make
15577 proto-dir". Look for "VERSION=" only at start of line in subdir
15578 Makefile. Use "gzip -9" for compression.
15579 (TEXINFO_SUPPORT, DIST_SUPPORT, BINUTILS_SUPPORT_DIRS): New vars.
15580 (binutils.tar.z): New target.
15581
15582 Mon May 17 17:01:15 1993 Ken Raeburn (raeburn@deneb.cygnus.com)
15583
15584 * Makefile.in (taz): Include gpl.texinfo.
15585
15586 Fri May 14 06:48:38 1993 Ken Raeburn (raeburn@deneb.cygnus.com)
15587
15588 * Makefile.in (setup-dirs): Merged into "taz" target.
15589 (taz): Only do `proto-dir' stuff if a directory is actually needed
15590 for this target.
15591
15592 Wed May 12 13:09:44 1993 Ian Lance Taylor (ian@cygnus.com)
15593
15594 * Makefile.in (MUNCH_NM): New variable, defined to be $(NM).
15595 (FLAGS_TO_PASS): Pass down MUNCH_NM.
15596 (HOST_CC, HOST_PREFIX, HOST_PREFIX_1): New variables.
15597 (EXTRA_GCC_FLAGS): Pass down HOST_* variables.
15598 (gcc-no-fixedincludes): Correct for current gcc Makefile.
15599
15600 Tue May 11 10:14:25 1993 Fred Fish (fnf@cygnus.com)
15601
15602 * Makefile.in (make-gdb.tar.Z): Add configure, config.guess,
15603 config.sub, and move-if-change to gdb testsuite distribution
15604 archive, so the testsuite can be extracted, configured, and
15605 run separately from the gdb distribution. Blow away the Chill
15606 tests that require a Chill compiled executable, since GNU Chill
15607 is not yet publically available.
15608
15609 Mon May 10 17:22:26 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15610
15611 * test-build.mk: set environment variables in a single command,
15612 instead of a list of assignments and exports
15613
15614 * config.guess: recognize Alpha/OSF1 systems
15615
15616 Mon May 10 14:55:51 1993 K. Richard Pixley (rich@rtl.cygnus.com)
15617
15618 * configure: Change help message to prefer --options rather than
15619 -options.
15620
15621 Mon May 10 05:58:35 1993 Ken Raeburn (raeburn@kr-pc.cygnus.com)
15622
15623 * config.sub: Convergent Tech. "miniframe" uses m68010, sez
15624 zippy@ecst.csuchico.edu.
15625 * config.guess: Recognize miniframe.
15626
15627 Sun May 9 17:47:57 1993 Rob Savoye (rob at darkstar.cygnus.com)
15628
15629 * Makefile.in: Use srcroot to find runtest rather than rootme.
15630 Pass RUNTESTFLAGS and EXPECT down in BASE_FLAGS_TO_PASS.
15631
15632 Fri May 7 14:55:59 1993 Ian Lance Taylor (ian@cygnus.com)
15633
15634 * test-build.mk: Extensive additions to support building on a
15635 machine other than the host.
15636
15637 Wed May 5 08:35:04 1993 Ken Raeburn (raeburn@deneb.cygnus.com)
15638
15639 * configure (tooldir): Fix for i386-aix again.
15640
15641 Mon May 3 19:00:27 1993 Per Bothner (bothner@cygnus.com)
15642
15643 * configure, Makefile.in: Change definition of $(tooldir)
15644 to match the FSF.
15645
15646 Fri Apr 30 15:55:21 1993 Fred Fish (fnf@cygnus.com)
15647
15648 * config.guess: Recognize i[34]86/SVR4.
15649
15650 Fri Apr 30 15:52:46 1993 Steve Chamberlain (sac@thepub.cygnus.com)
15651
15652 * Makefile.in (all-gdb): gdb depends on sim.
15653
15654 Thu Apr 29 23:30:48 1993 Fred Fish (fnf@cygnus.com)
15655
15656 * Makefile.in (gdb.tar.Z): Make prototype gdb testsuite directory
15657 at the same time we make the prototype gdb directory.
15658 * Makefile.in (make-gdb.tar.Z): Make the testsuite distribution
15659 files at the same time as the gdb base release distribution.
15660
15661 Thu Apr 29 12:50:37 1993 Ian Lance Taylor (ian@cygnus.com)
15662
15663 * Makefile.in (check): Use individual check targets rather than
15664 DO_X rule.
15665 (check-gcc): Added.
15666
15667 Thu Apr 29 09:50:07 1993 Jim Kingdon (kingdon@cygnus.com)
15668
15669 * config.sub: Use sysv3.2 not sysv32 for canonical OS
15670 for System V release 3.2.
15671
15672 Thu Apr 29 10:33:22 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15673
15674 * config.sub: Recognize hppaosf.
15675 * configure.in: Do configure ld/binutils/gas for it.
15676
15677 Tue Apr 27 06:25:34 1993 Ken Raeburn (raeburn@kr-pc.cygnus.com)
15678
15679 * configure (tooldir): Alter syntax used to set this, for systems
15680 where "\$" isn't handled right, like i386-aix.
15681
15682 Thu Apr 22 08:17:35 1993 Ian Lance Taylor (ian@cygnus.com)
15683
15684 * configure: Pass program-transform-name, not
15685 program_transform_name, to recursive configures.
15686
15687 Thu Apr 22 02:58:21 1993 Ken Raeburn (raeburn@cygnus.com)
15688
15689 * Makefile.in (gas+binutils.tar.z): New rule for building snapshots
15690 of gas+ld+binutils.
15691
15692 Mon Apr 19 17:41:30 1993 Per Bothner (bothner@cygnus.com)
15693
15694 * config.guess: Recognize AIX3.2 as distinct from 3.1.
15695
15696 Sat Apr 17 17:19:50 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15697
15698 * configure.in: rename m88k-motorola-m88kbcs to m88k-motorola-sysv
15699
15700 Tue Apr 13 16:52:16 1993 Brendan Kehoe (brendan@lisa.cygnus.com)
15701
15702 * Makefile.in (PRMS): Set back to all-prms.
15703
15704 Sat Apr 10 12:04:07 1993 Ian Lance Taylor (ian@cygnus.com)
15705
15706 * test-build.mk: Pass -with-gnu-as for known MIPS native and MIPS
15707 targets, rather than for MIPS hosts.
15708
15709 Fri Apr 9 13:51:06 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15710
15711 * configure.in: add comment for --with-x default values
15712
15713 * config.guess: handle Motorola Delta88 box for SVR3 and SVR4.
15714
15715 * Makefile.in: add check-* targets for each of the directories in
15716 the tree. Add a definition of RUNTEST that will use the one we
15717 just built, if it exists. Pass this down via FLAGS_TO_PASS.
15718
15719 Thu Apr 8 09:21:30 1993 Ian Lance Taylor (ian@cygnus.com)
15720
15721 * configure.in: Removed obsolete references to bfd_target and
15722 target_makefile_frag.
15723
15724 * build-all.mk: Set assorted targets for Q2.
15725 * config.sub: Recognize z8k-sim and h8300-hms.
15726 * test-build.mk: Really don't pass host to configure.
15727 (HOLES): Added uname.
15728
15729 Wed Apr 7 15:48:19 1993 Ian Lance Taylor (ian@cygnus.com)
15730
15731 * configure: Handle an empty program-prefix, program-suffix or
15732 program-transform-name correctly.
15733
15734 Tue Apr 6 13:48:41 1993 Ian Lance Taylor (ian@cygnus.com)
15735
15736 * build-all.mk: -G 8 no longer required for MIPS targets.
15737 * test-build.mk: Don't pass host argument to configure; make it
15738 guess.
15739
15740 Tue Apr 6 10:36:53 1993 Fred Fish (fnf@cygnus.com)
15741
15742 * Makefile.in (gdb.tar.Z): Fix for building gzip'd distribution.
15743 * Makefile.in (COMPRESS): New macro, like GZIP.
15744
15745 Fri Apr 2 09:02:31 1993 Ian Lance Taylor (ian@cygnus.com)
15746
15747 * test-build.mk: Use -with-gnu-as for mips-sgi-irix4 as well.
15748
15749 * build-all.mk: Set GCC to gcc -O -G 8 for MIPS targets, since gcc
15750 with gas currently defaults to -G 0.
15751
15752 Thu Apr 1 08:25:42 1993 Ian Lance Taylor (ian@cygnus.com)
15753
15754 * Makefile.in (all-flex): flex depends on byacc.
15755
15756 * build-all.mk: If host not specified, use config.guess. Pass TAG
15757 to test-build.mk as RELEASE_TAG.
15758 * test-build.mk (configargs): New variable containing arguments to
15759 pass to configure. Set to -with-gnu-as on mips-dec-ultrix.
15760 (FLAGS_TO_PASS): Pass down RELEASE_TAG.
15761
15762 * config.guess: Use /bin/uname when checking -X argument on SCO,
15763 to avoid invoking GNU uname which doesn't understand -X.
15764
15765 * test-build.mk: Don't use /usr/unsupported/bin/as on AIX.
15766
15767 * configure.in: Build gas for mips-*-*.
15768
15769 Wed Mar 31 21:20:58 1993 K. Richard Pixley (rich@rtl.cygnus.com)
15770
15771 * Makefile.in (all.normal): insert missing backslash.
15772
15773 Wed Mar 31 12:31:56 1993 Ian Lance Taylor (ian@cygnus.com)
15774
15775 * build-all.mk: Bump -XNh value to 1500 to match gcc requirements.
15776
15777 * Makefile.in: Complete overhaul to merge many almost identical
15778 targets.
15779
15780 Tue Mar 30 20:17:01 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15781
15782 * Makefile.in (setup-dirs-gdb): Renamed from setup-dirs.
15783 (gdb.tar.Z): Adjusted.
15784
15785 * Makefile.in (setup-dirs, taz): New targets; should be general
15786 enough to adapt for gdb sometime. Build only .z file.
15787 (gas.tar.z): New target.
15788
15789 Tue Mar 30 10:03:09 1993 Ian Lance Taylor (ian@cygnus.com)
15790
15791 * build-all.mk: Use CC=cc -Xs on Solaris.
15792
15793 Thu Mar 25 15:14:30 1993 Fred Fish (fnf@cygnus.com)
15794
15795 * Makefile.in: Incorporate changes suggested by wilson@cygnus.com
15796 for handling BISON for FSF releases.
15797
15798 Thu Mar 25 06:19:48 1993 Ken Raeburn (raeburn@kr-pc.cygnus.com)
15799
15800 * configure: Actually implement the change zoo just documented.
15801
15802 Wed Mar 24 13:02:44 1993 david d `zoo' zuhn (zoo at poseidon.cygnus.com)
15803
15804 * configure: when using config.guess, only set target_alias when
15805 it's not already been set (ie, on the command line)
15806
15807 Mon Mar 22 23:07:39 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15808
15809 * Makefile.in: add installcheck target, set PRMS to install-prms
15810
15811 Sun Mar 21 16:46:12 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15812
15813 * configure: add support for package_makefile_fragment, handle the
15814 case where a directory has a configure.in file but no Makefile.in
15815 more gracefully (with an actual understandable error message, even);
15816 add support for --without (and add this to the usage message); also
15817 explicitly add a --host=${host_alias} to the command line when
15818 config.guess is used
15819
15820 Sun Mar 21 12:11:58 1993 Jim Wilson (wilson@sphagnum.cygnus.com)
15821
15822 * configure: Must use both --host and --target in recursive calls.
15823
15824 Thu Mar 18 12:31:35 1993 Ian Lance Taylor (ian@cygnus.com)
15825
15826 * Makefile.in: Change deja-gnu to dejagnu.
15827
15828 Mon Mar 15 15:44:35 1993 Ian Lance Taylor (ian@cygnus.com)
15829
15830 * configure.in (h8300-*-*, h8500-*-*): Don't build libg++.
15831
15832 Fri Mar 12 18:30:14 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15833
15834 * configure.in: canonicalize all instances to *-*-solaris2*,
15835 also strip out a number of tools to not build for go32 host
15836
15837 Wed Mar 10 12:08:27 1993 K. Richard Pixley (rich@rtl.cygnus.com)
15838
15839 * config.guess: add GPL.
15840
15841 * Makefile.in, config.guess, config.sub, configure: bump
15842 copyrights to 93.
15843
15844 Wed Mar 10 07:12:48 1993 Ian Lance Taylor (ian@cygnus.com)
15845
15846 * Makefile.in (do-info): Removed obsolete check for existence of
15847 localenv file.
15848
15849 * Makefile.in (MAKEOVERRIDES): Define to be empty.
15850
15851 Wed Mar 10 03:11:56 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15852
15853 * Makefile.in: a couple of 'else true' for decstation,
15854 support for TclX
15855
15856 * configure.in: configure tclX too; don't remove Tk on RS/6000 anymore
15857
15858 Tue Mar 9 16:06:12 1993 K. Richard Pixley (rich@cygnus.com)
15859
15860 * Makefile.in (setup-dirs): change invocation of make to $(MAKE).
15861
15862 Mon Mar 8 14:52:11 1993 Ken Raeburn (raeburn@cambridge)
15863
15864 * config.guess: Recognize i386-ibm-aix (PS/2).
15865 * configure.in: Use config/mh-aix386 file for it.
15866
15867 Mon Mar 8 11:12:43 1993 Ian Lance Taylor (ian@cygnus.com)
15868
15869 * Makefile.in (GCC_FOR_TARGET): Eliminated definition; use
15870 CC_FOR_TARGET instead.
15871 (BASE_FLAGS_TO_PASS): Pass GCC_FOR_TARGET=$(CC_FOR_TARGET).
15872
15873 Wed Mar 3 16:00:28 1993 Steve Chamberlain (sac@ok.cygnus.com)
15874
15875 * Makefile.in: Add sim to list of directories sent with gdb
15876
15877 Wed Mar 3 11:42:39 1993 Ken Raeburn (raeburn@cygnus.com)
15878
15879 * configure.in: Put back mips-dec-bsd* case.
15880
15881 Tue Mar 2 21:15:58 1993 Fred Fish (fnf@cygnus.com)
15882
15883 (Ultrix 2.2 support from Michael Rendell <michael@mercury.cs.mun.ca>)
15884 * configure.in (vax-*-ultrix2*): Add Ultrix 2.2 triplet.
15885 * config.guess: Change 'VAX*:ULTRIX:*:*' to 'VAX*:ULTRIX*:*:*'.
15886
15887 Tue Mar 2 18:11:03 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15888
15889 * configure.in: remove no-op mips-dec-bsd* in "case $target"
15890
15891 * Makefile.in (dir.info): only run gen-info-dir if it exists,
15892 (install-info): install dir.info only if it exists,
15893 (all-expect, install-expect): pass along X11_FLAGS_TO_PASS
15894
15895 Tue Mar 2 09:01:30 1993 Ken Raeburn (raeburn@cygnus.com)
15896
15897 * configure.in: For vms target, skip bfd, ld, binutils. Do build
15898 gas for mips-dec-bsd.
15899
15900 Tue Mar 2 08:35:24 1993 Ian Lance Taylor (ian@cygnus.com)
15901
15902 * configure (makesrcdir): If ${srcdir} is relative and not ".",
15903 and ${subdir} is not ".", set makesrcdir based on ${invsubdir}.
15904
15905 Tue Feb 23 14:18:28 1993 Mike Werner (mtw@poseidon.cygnus.com)
15906
15907 * configure.in: Added "dejagnu" to hosttools list.
15908
15909 Mon Feb 22 23:28:38 1993 Per Bothner (bothner@rtl.cygnus.com)
15910
15911 * config.sub, configure.in, config.guess: Add support
15912 for Bosx, an AIX variant from Bull.
15913 Patches from F.Pierresteguy@frcl.bull.fr.
15914
15915 Sun Feb 21 11:15:22 1993 Mike Werner (mtw@poseidon.cygnus.com)
15916
15917 * devo/dejagnu: Initial creation of devo/dejagnu.
15918 Migrated dejagnu testcases and support files for testing software
15919 tools to reside as subdirectories, currently called "testsuite",
15920 within the directory of the software tool. Migrated all programs,
15921 support libraries, etc. beloging to dejagnu proper from
15922 devo/deja-gnu to devo/dejagnu. These files were moved "as is"
15923 with no modifications. The changes to these files which will
15924 allow them to configure, build, and execute properly will be made
15925 in a future update.
15926
15927 Fri Feb 19 20:19:39 1993 Brendan Kehoe (brendan@lisa.cygnus.com)
15928
15929 * Makefile.in: Change send_pr to send-pr.
15930 * configure.in: Likewise.
15931 * send_pr: Renamed directory to send-pr.
15932
15933 Fri Feb 19 19:00:13 1993 Per Bothner (bothner@cygnus.com)
15934
15935 * Makefile.in: Add some extra semi-colons (needed if SHELL=bash).
15936
15937 Fri Feb 19 00:59:33 1993 John Gilmore (gnu@cygnus.com)
15938
15939 * README: Update for gdb-4.8 release.
15940 * Makefile.in (gdb.tar.Z): Add texinfo/tex3patch. Build
15941 gdb-xxx.tar.z (gzip'd) file also.
15942
15943 Thu Feb 18 09:16:17 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15944
15945 * Makefile.in: make all-diff depend on all-libiberty
15946
15947 Tue Feb 16 16:06:31 1993 K. Richard Pixley (rich@cygnus.com)
15948
15949 * config.guess: add vax-ultrix in the spirit of mips-ultrix.
15950
15951 Tue Feb 16 05:57:15 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15952
15953 * configure.in, Makefile.in: add hello, tar, gzip, recode, indent
15954
15955 Tue Feb 16 00:58:20 1993 John Gilmore (gnu@cygnus.com)
15956
15957 * Makefile.in (DEVO_SUPPORT): Remove etc directory
15958 (ETC_SUPPORT): Only add the files GDB wants from etc/.
15959 (gdb.tar.Z): Use ETC_SUPPORT. Use byacc when building the file.
15960
15961 Thu Feb 11 20:14:28 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15962
15963 * Makefile.in: makeinfo binary is in a new location
15964
15965 Tue Feb 9 12:42:27 1993 Ian Lance Taylor (ian@cygnus.com)
15966
15967 * config.sub: Accept -ecoff as an OS.
15968
15969 * Makefile.in: Various changes to eliminate a level of make
15970 recursion and reduce the required command line length.
15971 (BASE_FLAGS_TO_PASS): New variable holding flags passed to all
15972 sub-makes.
15973 (EXTRA_HOST_FLAGS, EXTRA_TARGET_FLAGS, EXTRA_GCC_FLAGS): New
15974 variables holding settings for specific sub-makes.
15975 (FLAGS_TO_PASS, TARGET_FLAGS_TO_PASS, GCC_FLAGS_TO_PASS): Rewrote
15976 in terms of BASE_FLAGS_TO_PASS.
15977 (TARGET_LIBS): New variable listing directories which use
15978 TARGET_FLAGS_TO_PASS.
15979 (subdir_do): Eliminated.
15980 (do-*): New set of targets to replace subdir_do.
15981 (various): All targets which used subdir_do now depend on do-*.
15982 (local-clean): Renamed from do_clean.
15983 (local-distclean): New target, dependency of distclean and
15984 realclean.
15985 (install-info): Don't create directories. Depend on dir.info
15986 rather than calling make recursively.
15987 (install-dir.info): Eliminated.
15988 (install-info-dirs): Create all info directories here.
15989 (dir.info): Depend upon do-install-info.
15990
15991 * test-build.mk (HOLES): Added false.
15992
15993 Sat Feb 6 14:05:09 1993 Per Bothner (bothner@rtl.cygnus.com)
15994
15995 * config.guess: Recognize BSDI and BSDJ (Jolitz 386bsd).
15996
15997 Thu Feb 4 20:49:18 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15998
15999 * Makefile.in (info): remove dependency on all-texinfo. The
16000 problem was really in texinfo/C, not at this level.
16001
16002 Thu Feb 4 13:38:41 1993 Ian Lance Taylor (ian@cygnus.com)
16003
16004 * Makefile.in (info): Added dependency on all-texinfo (PR 2112).
16005
16006 Thu Feb 4 01:50:53 1993 John Gilmore (gnu@cygnus.com)
16007
16008 * Makefile.in (make-gdb.tar.Z): Change BISON to 'bison -y' for
16009 GDB releases.
16010
16011 Wed Feb 3 17:22:16 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
16012
16013 * configure: Include srcdir in message about target of link not
16014 being found. Don't convert `-' to `_' in `with' options being
16015 passed to subdirs.
16016
16017 Tue Feb 2 18:57:59 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16018
16019 * configure.in: add uudecode to host_tools
16020
16021 * Makefile.in: added {all,install}-uudecode targets, added them to
16022 the appropriate lists
16023
16024 Tue Feb 2 11:45:53 1993 Ian Lance Taylor (ian@cygnus.com)
16025
16026 * Makefile.in (all-gcc): Added dependency on all-gas.
16027
16028 * configure.in (mips-*-*): Build ld and binutils.
16029
16030 Mon Feb 1 12:35:41 1993 K. Richard Pixley (rich@rtl.cygnus.com)
16031
16032 * configure: check return code from mkdir, print error message and
16033 exit on failure.
16034
16035 Sat Jan 30 16:40:28 1993 John Gilmore (gnu@cygnus.com)
16036
16037 * Makefile.in (make-gdb.tar.Z): New location for texinfo.tex.
16038
16039 Thu Jan 28 15:09:59 1993 Ian Lance Taylor (ian@cygnus.com)
16040
16041 * test-build.mk (HOLES): Added tar, cpio and uudecode.
16042
16043 Wed Jan 27 16:50:32 1993 Jim Wilson (wilson@sphagnum.cygnus.com)
16044
16045 * config.sub (h8500): Recognize this as a cpu type.
16046
16047 Sat Jan 23 20:32:01 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16048
16049 * configure: source directory missing is no longer a warning
16050
16051 * configure.in: recognize irix[34]* instead of irix[34]
16052
16053 * Makefile.in: define and pass down X11_LIB
16054
16055 Sat Jan 23 13:49:40 1993 Per Bothner (bothner@cygnus.com)
16056
16057 * guess-systype: Renamed to ...
16058 * config.guess: ... by popular request.
16059 * configure.in, Makefile.in: Update accordingly.
16060
16061 Thu Jan 21 12:20:55 1993 Per Bothner (bothner@cygnus.com)
16062
16063 * guess-systype: Patches from John Eaton <jwe@che.utexas.edu>:
16064 + Add Convex, Cray/Unicos, and Encore/Multimax support.
16065 + Execute ./dummy instead of assuming . is in PATH.
16066
16067 Tue Jan 19 17:18:06 1993 Per Bothner (bothner@cygnus.com)
16068
16069 * guess-systype: New shell script. Attempts to guess the
16070 canonical host name of the executing host.
16071 Only a few hosts are supported so far.
16072 * configure: Call guess-systype if no host is specified.
16073
16074 Tue Jan 19 08:26:07 1993 Ian Lance Taylor (ian@cygnus.com)
16075
16076 * Makefile.in (gcc-no-fixedincludes): Made to work with current
16077 gcc Makefile.
16078
16079
16080 Fri Jan 15 10:27:02 1993 Ian Lance Taylor (ian@cygnus.com)
16081
16082 * Makefile.in (GCC_FLAGS_TO_PASS): New variable.
16083 (all-gcc, install-gcc, subdir_do): Use it.
16084
16085 Wed Jan 13 17:06:45 1993 Jim Wilson (wilson@sphagnum.cygnus.com)
16086
16087 * Makefile.in: Rename uninstalled gcc driver from gcc to xgcc.
16088
16089 Wed Jan 6 20:29:16 1993 Mike Werner (mtw@rtl.cygnus.com)
16090
16091 * Makefile.in: Removed explicit setting of SUBDIRS. SUBDIRS is now
16092 set exclusively by configure, using configure.in .
16093
16094 Wed Jan 6 13:44:11 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16095
16096 * test-build.mk: set $PATH for all builds
16097
16098 * Makefile.in: pass TARGET_FLAGS_TO_PASS for xiberty and libm
16099
16100 Wed Jan 6 11:02:10 1993 Fred Fish (fnf@cygnus.com)
16101
16102 * Makefile.in (GCC_FOR_TARGET): Supply a default that matches
16103 the one used in gcc/Makefile.in, so that a null expansion doesn't
16104 override the one needed to build gcc with a native cc.
16105
16106
16107 Tue Jan 5 07:55:12 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
16108
16109 * configure: Accept -with arguments.
16110
16111 Sun Jan 3 15:15:09 1993 Steve Chamberlain (sac@thepub.cygnus.com)
16112
16113 * Makefile.in: added h8300sim
16114
16115 Tue Dec 29 15:06:00 1992 Ian Lance Taylor (ian@cygnus.com)
16116
16117 * build-all.mk: If canonhost is i386-unknown-sco3.2v4, change it
16118 to i386-sco3.2v4. Set TARGETS and CFLAGS for i386-sco3.2v4.
16119 (all-cygnus, native, build-cygnus): Make
16120 $(canonhost)-stamp-3stage-done, not $(host)....
16121 * test-build.mk (stamp-3stage-compared): Use tail +10c for
16122 i386-sco3.2v4. Added else true to if command.
16123
16124 Mon Dec 28 12:08:56 1992 Ken Raeburn (raeburn@cygnus.com)
16125
16126 * config.sub: (from FSF) Sequent uses a BSD-like OS.
16127
16128 Mon Dec 28 08:32:06 1992 Minh Tran-Le (mtranle@paris.intellicorp.com)
16129
16130 * configure.in (i[34]86-*-isc*): added; uses mh-sysv.
16131
16132 Thu Dec 24 17:26:24 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16133
16134 * configure.in: don't remove binutils from Solaris builds
16135
16136 Thu Dec 24 14:08:38 1992 david d`zoo' zuhn (zoo@cygnus.com)
16137
16138 * Makefile.in: get rid of earlier definitions for *clean,
16139 also handle the recursive info rule better
16140
16141 Thu Dec 24 12:40:21 1992 Per Bothner (bothner@rtl.cygnus.com)
16142
16143 * Makefile.in (mostlyclean, distclean, realclean): Fix to
16144 do more-or-less the right thing.
16145
16146 Wed Dec 16 10:25:31 1992 Ian Lance Taylor (ian@cygnus.com)
16147
16148 * Makefile.in: Add lines defining CC and CXX, and use CXX rather
16149 than gcc in definitions of CXX_FOR_BUILD and CXX_FOR_TARGET.
16150
16151 Tue Dec 15 00:34:32 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16152
16153 * Makefile.in: change all $(host_cpu)-$(host_vendor)-$(host_os) to
16154 $(host_canonical).
16155
16156 * configure.in: split the configdirs list into 4 categories (native
16157 v. cross, library v. tool) and handle the cross-only and native-
16158 only in more reasonable (and correct!) way.
16159
16160 Mon Dec 14 17:04:22 1992 Stu Grossman (grossman at cygnus.com)
16161
16162 * configure.in (hppa*-*-*): Don't remove bfd and gdb from
16163 configdirs anymore.
16164
16165 Sun Dec 13 00:37:26 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16166
16167 * Makefile.in: extensive cleanup:: removed all of the explicit
16168 clean-* targets, collapsed many wrappers around subdir_do into
16169 one, added additional targets to satisfy standards.texi, deleted
16170 some old targets, some changes for consistency
16171
16172 Fri Dec 11 20:18:02 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16173
16174 * configure.in: handle some programs as cross-only, and others as
16175 native only
16176
16177 * test-build.mk: handle partial holes in a more generic manner
16178
16179 * Makefile.in: m4 depends on libiberty
16180
16181 Thu Dec 3 21:52:11 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16182
16183 * configure.in: add m4, textutils, fileutils, sed, shellutils,
16184 time, wdiff, and find to configdirs
16185
16186 * Makefile.in: all, clean, and install rules for the new programs
16187 added to configure.in
16188
16189 Mon Nov 30 14:54:34 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16190
16191 * configure.in: use mh-sun for all *-sun-* hosts
16192
16193 Fri Nov 27 18:35:54 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16194
16195 * Makefile.in: define flags for X11 include files and library file
16196 locations, pass them down to the programs that need this info
16197
16198 * build-all.mk: added a 'native' target, to 3stage the native toolchain
16199
16200 Sun Nov 22 18:59:13 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16201
16202 * configure.in: start building libg++ for HP-UX targets
16203
16204 Wed Nov 18 19:33:11 1992 John Gilmore (gnu@cygnus.com)
16205
16206 * README: Update references to files moved into etc/.
16207
16208 Sun Nov 15 09:36:08 1992 Fred Fish (fnf@cygnus.com)
16209
16210 * config.sub (i386sol2, i486sol2): i[34]86-unknown-solaris2.
16211 * configure.in (i[34]86-*-solaris2*): Use config/mh-sysv4.
16212
16213 Thu Nov 12 08:50:42 1992 Ian Lance Taylor (ian@cygnus.com)
16214
16215 * configure: accept dash as well as underscore in long option
16216 names for FSF compatibility.
16217
16218 Wed Nov 11 08:04:37 1992 Ian Lance Taylor (ian@cygnus.com)
16219
16220 * config.sub: added -sco3.2v4 support from FSF.
16221
16222 Sun Nov 8 21:14:30 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16223
16224 * configure.in: expand the section that adds or removes
16225 directories from the list of programs to build, to handle native
16226 vs. cross in addition to host v. native
16227
16228 Sat Nov 7 18:52:27 1992 Per Bothner (bothner@rtl.cygnus.com)
16229
16230 * Makefile.in: Replace C++ in macro names with CXX.
16231 This is less likely to break ...
16232
16233 Sat Nov 7 15:16:58 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16234
16235 * test-build.mk: add -w to GNU_MAKE
16236
16237 Fri Nov 6 23:10:37 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16238
16239 * config.sub: remove 'sparc'-->'sparc-sun' default transformation,
16240 add 'sparc' to list of recognized cpus. This needed to make
16241 'sparc-aout' expand to 'sparc-unknown-aout' instead of 'sparc-sun-aout'.
16242 Delete some redundant ose68 variants. Recognize -wrs as an os,
16243 then changes that into $CPU-wrs-vxworks.
16244
16245 * configure.in: remove most references to gdbtest, regularize
16246 target based program removal
16247
16248 * test-build.mk: import from p3 tree (many fixes and changes)
16249
16250 Fri Nov 6 20:59:00 1992 david d `zoo' zuhn (zoo@cygnus.com)
16251
16252 * Makefile.in: added rules to handle tcl, tk, and expect
16253
16254 * configure.in: handle those directories if they exist
16255
16256 Thu Nov 5 14:35:41 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16257
16258 * config.sub: removed bogus hppabsd and hppahpux names, since
16259 "hppa" is not a valid cpu (hppa1.1 or hppa1.0 are, though)
16260
16261 Thu Oct 29 00:12:41 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16262
16263 * Makefile.in: all-gcc now depends on all-binutils. all-libg++
16264 depends upon all-xiberty
16265
16266 * Makefile.in: changes from p3, including:
16267
16268 Thu Oct 8 15:00:17 1992 Ian Lance Taylor (ian@cygnus.com)
16269
16270 * Makefile.in (XTRAFLAGS): include newlib directories if
16271 newlib/Makefile exists, rather than if host != target.
16272
16273 Fri Sep 25 13:41:52 1992 Ian Lance Taylor (ian@cygnus.com)
16274
16275 * Makefile.in: added -nostdinc to XTRAFLAGS if we are using gcc
16276 from the same source tree and not building a cross-compiler. This
16277 matters for the libg++ configuration if reconfiguring a tree that
16278 has already been installed.
16279
16280 Thu Sep 10 10:35:51 1992 Ian Lance Taylor (ian@cygnus.com)
16281
16282 * Makefile.in: added -I for newlib/targ-include to XTRAFLAGS, to
16283 pick up the machine and system specific header files.
16284
16285 * Makefile.in: added AS_FOR_TARGET, passed down in
16286 TARGET_FLAGS_TO_PASS. Added CC_FOR_BUILD, which is intended to be
16287 the C compiler to use to create programs which are run in the
16288 build environment, set it to default to $(CC), and passed it down
16289 in FLAGS_TO_PASS and TARGET_FLAGS_TO_PASS.
16290
16291 Mon Sep 7 22:34:42 1992 Ian Lance Taylor (ian@cirdan.cygnus.com)
16292
16293 * Makefile.in: add $(host) = $(target) tests back to *_FOR_TARGET.
16294 We need them for unusual native builds, like systems without
16295 ranlib.
16296
16297 * configure: also define $(host_canonical) and
16298 $(target_canonical), which are the full, canonical names for the
16299 given host and target
16300
16301 Sun Nov 1 16:38:17 1992 Per Bothner (bothner@cygnus.com)
16302
16303 * Makefile.in: Added separate definitions for C++.
16304
16305 Fri Oct 30 11:37:52 1992 Fred Fish (fnf@cygnus.com)
16306
16307 * configure.in (configdirs): Add deja-gnu.
16308
16309 Fri Oct 23 00:39:18 1992 John Gilmore (gnu@cygnus.com)
16310
16311 * README: Update for configure.texi and gdb-4.7 release.
16312
16313 Wed Oct 21 21:54:27 1992 John Gilmore (gnu@cygnus.com)
16314
16315 * Makefile.in: Move "all" target to top of file.
16316 Previously, first target was ".PHONY" which caused BSD4.4 make
16317 to build .PHONY when make was run without arguments.
16318
16319 Mon Oct 19 01:17:54 1992 John Gilmore (gnu@cygnus.com)
16320
16321 * Makefile.in: Add COPYING.LIB to GDB releases, now that there's
16322 Library-copylefted code in libiberty.
16323
16324 Tue Oct 13 01:22:32 1992 John Gilmore (gnu@cygnus.com)
16325
16326 * config.sub: Replace m68kmote with plain old m68k.
16327
16328 Fri Oct 9 03:14:24 1992 John Gilmore (gnu@cygnus.com)
16329
16330 * Makefile.in: Remove space from blank line, avoid Make complaints.
16331
16332 Thu Oct 8 18:41:45 1992 Ken Raeburn (raeburn@cygnus.com)
16333
16334 * config.sub: Complain if no argument is given. Added support for
16335 386bsd as OS and target alias.
16336
16337 Thu Oct 8 15:07:22 1992 Ian Lance Taylor (ian@cygnus.com)
16338
16339 * Makefile.in (XTRAFLAGS): include newlib directories if
16340 newlib/Makefile exists, rather than if host != target.
16341
16342 Mon Oct 5 03:00:09 1992 Mark Eichin (eichin at tweedledumber.cygnus.com)
16343
16344 * config.sub: recognize sparclite-wrs-vxworks.
16345
16346 * Makefile.in (install-xiberty): added *-xiberty make rules (from
16347 p3.) Added clean-xiberty to clean.
16348
16349 Thu Oct 1 17:59:19 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16350
16351 * configure.in: use *-*-* instead of nested cases for host and target
16352
16353 Tue Sep 29 14:11:18 1992 Ian Lance Taylor (ian@cygnus.com)
16354
16355 * Makefile.in: added -nostdinc to XTRAFLAGS if we are using gcc
16356 from the same source tree and not building a cross-compiler. This
16357 matters for the libg++ configuration if reconfiguring a tree that
16358 has already been installed.
16359
16360 Sep 20 08:53:10 1992 Fred Fish (fnf@cygnus.com)
16361
16362 * config.sub (i486v/i486v4): Merge in from FSF version.
16363
16364 Fri Sep 18 00:32:00 1992 Mark Eichin (eichin@cygnus.com)
16365
16366 * configure: only set PWD if it is already set.
16367
16368 Thu Sep 17 23:05:53 1992 Mark Eichin (eichin@cygnus.com)
16369
16370 * configure: just set PWD=`pwd` at the top, since Ultrix sh
16371 doesn't have unset and all success paths (and most error paths)
16372 out set it anyway. (Note: should change all uses of ${PWD=`pwd`}
16373 to just ${PWD} to avoid confusion.)
16374
16375 Tue Sep 15 16:00:54 1992 Ian Lance Taylor (ian@cygnus.com)
16376
16377 * configure: always set $(tooldir) to $(libdir)/$(target_alias),
16378 even for a native compilation.
16379
16380 Tue Sep 15 02:22:56 1992 John Gilmore (gnu@cygnus.com)
16381
16382 Changes to make the gdb.tar.Z rule work better.
16383
16384 * Makefile.in (GDB_SUPPORT_DIRS): Add opcodes.
16385 (DEVO_SUPPORT): Add configure.texi.
16386 (bfd-ilrt.tar.Z): Remove ancient rule.
16387
16388 Thu Sep 10 10:43:19 1992 Ian Lance Taylor (ian@cygnus.com)
16389
16390 * Makefile.in: added -I for newlib/targ-include to XTRAFLAGS, to
16391 pick up the machine and system specific header files.
16392
16393 * configure.in, config.sub: added new target m68010-adobe-scout,
16394 with alias of adobe68k. Changed configure.in to check for
16395 -scout before -sco* to avoid a false match.
16396
16397 * Makefile.in: added AS_FOR_TARGET, passed down in
16398 TARGET_FLAGS_TO_PASS. Added CC_FOR_BUILD, which is intended to be
16399 the C compiler to use to create programs which are run in the
16400 build environment, set it to default to $(CC), and passed it down
16401 in FLAGS_TO_PASS and TARGET_FLAGS_TO_PASS.
16402
16403 Wed Sep 9 12:21:42 1992 Ian Lance Taylor (ian@cygnus.com)
16404
16405 * Makefile.in: added TARGET_FLAGS_TO_PASS, CC_FOR_TARGET,
16406 AR_FOR_TARGET, RANLIB_FOR_TARGET, NM_FOR_TARGET. Pass
16407 TARGET_FLAGS_TO_PASS, which defines CC, AR, RANLIB and NM as the
16408 FOR_TARGET variants, to newlib and libg++.
16409
16410 Tue Sep 8 17:28:30 1992 Ken Raeburn (raeburn@cambridge.cygnus.com)
16411
16412 * Makefile.in (all-gas, all-gdb): Require all-opcodes to be built
16413 first.
16414
16415 Wed Sep 2 02:50:05 1992 John Gilmore (gnu@cygnus.com)
16416
16417 * config.sub: Accept `elf' as an environment.
16418
16419 Tue Sep 1 15:48:30 1992 Steve Chamberlain (sac@thepub.cygnus.com)
16420
16421 * Makefile.in (all-opcodes): cd into the right directory
16422
16423 Sun Aug 30 21:12:11 1992 Ian Lance Taylor (ian@cygnus.com)
16424
16425 * configure: added -program_transform_name option, used as
16426 argument to sed when installing programs.
16427 configure.texi: added documentation for -program_prefix,
16428 -program_suffix and -program_transform_name.
16429
16430 Thu Aug 27 21:59:44 1992 John Gilmore (gnu@cygnus.com)
16431
16432 * config.sub: Accept i486 where i386 ok.
16433
16434 Thu Aug 27 13:04:42 1992 Brendan Kehoe (brendan@rtl.cygnus.com)
16435
16436 * config.sub: accept we32k
16437
16438 Mon Aug 24 14:05:14 1992 Ian Lance Taylor (ian@cygnus.com)
16439
16440 * config.sub, configure.in: accept OSE68000 and OSE68k.
16441
16442 * Makefile.in: don't create all directories for ``make install'';
16443 let the subdirectories create the ones they need.
16444
16445 Tue Aug 11 23:13:17 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16446
16447 * COPYING: new file, GPL v2
16448
16449 Tue Aug 4 01:12:43 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16450
16451 * Makefile.in: use the new gen-info-dir, which needs a template
16452 argument (which also lives in texinfo)
16453
16454 * configure.texi, standards.texi: fix INFO-DIR-ENTRY
16455
16456 Mon Aug 3 00:34:17 1992 Fred Fish (fnf@cygnus.com)
16457
16458 * config.sub (ncr3000): Change i386 to i486.
16459
16460 Thu Jul 23 00:12:17 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16461
16462 * Makefile.in: add install-rcs, install-grep to
16463 install-no-fixedincludes, removed install-bison and install-libgcc
16464
16465 Tue Jul 21 01:01:50 1992 david d `zoo' zuhn (zoo@cygnus.com)
16466
16467 * configure.in: grab the HPUX makefile fragment if on HPUX
16468
16469 Mon Jul 20 11:02:09 1992 D. V. Henkel-Wallace (gumby@cygnus.com)
16470
16471 * Makefile.in: eradicate bison spoor (ditto libgcc).
16472 configure.in: recognise m68{k,000}-ericsson-OSE.
16473 es1800 is alias for m68k-ericsson-OSE
16474
16475 Sun Jul 19 17:49:02 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16476
16477 * configure.in: rearrange the parts that remove programs from
16478 configdirs, based now on HOST==TARGET or by canonical triple.
16479
16480 Fri Jul 17 22:52:49 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16481
16482 * test-build.mk: recurse explicitly with -f test-build.mk when
16483 appropriate. predicate stage3 and comparison on the existence
16484 of gcc. That is, if gcc isn't around, we aren't three-staging.
16485 On very clean, also remove ...stamp-co. Build in-place before
16486 doing other builds.
16487
16488 Thu Jul 16 18:33:09 1992 Steve Chamberlain (sac@thepub.cygnus.com)
16489
16490 * Makefile.in, configure.in: add tgas
16491
16492 Thu Jul 16 16:05:28 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16493
16494 * Makefile.in: a number of changes merged in from progressive.
16495
16496 * configure.in: add libm.
16497
16498 * .cvsignore: ignore some stuff that comes from test-build.mk.
16499
16500 Tue Jul 7 00:24:52 1992 Fred Fish (fnf@cygnus.com)
16501
16502 * config.sub: Add es1800 (m68k-ericsson-es1800).
16503
16504 Tue Jun 30 20:24:41 1992 D. V. Henkel-Wallace (gumby@cygnus.com)
16505
16506 * configure: Add program_suffix (parallel to program_prefix)
16507 * Makefile.in: adjust directory-creating script for losing decstation
16508
16509 Mon Jun 22 23:43:48 1992 Per Bothner (bothner@cygnus.com)
16510
16511 * configure: Minor $subdir-related fixes.
16512
16513 Mon Jun 22 18:30:26 1992 Steve Chamberlain (sac@thepub.cygnus.com)
16514
16515 * configure: fix various problems with propogating
16516 makefile_target_frag in subdirs.
16517 * configure.in: config libgcc if its there
16518
16519 Fri Jun 19 15:19:40 1992 Stu Grossman (grossman at cygnus.com)
16520
16521 * config.sub: HPPA merge.
16522
16523 Sun Jun 14 10:29:19 1992 John Gilmore (gnu at cygnus.com)
16524
16525 * Makefile.in: Replace all-bison with all-byacc in all
16526 dependency lines for other tools (which now use byacc).
16527
16528 Fri Jun 12 22:21:57 1992 John Gilmore (gnu at cygnus.com)
16529
16530 * config.sub: Add sun4sol2 => sparc-sun-solaris2.
16531
16532 Thu Jun 4 12:07:32 1992 Mark Eichin (eichin@cygnus.com)
16533
16534 * Makefile.in: make gprof rules similar to byacc rules (instead of
16535 vestigal $(unsubdir) that didn't work...)
16536
16537 Thu Jun 4 00:37:05 1992 Per Bothner (bothner@rtl.cygnus.com)
16538
16539 * config.sub: Add support for Linux.
16540 * Makefile.in: Use $(FLAGS_TO_PASS) more consistently
16541 (at least for libg++).
16542
16543 Tue Jun 02 20:03:00 1992 david d `zoo' zuhn (zoo@cygnus.com)
16544
16545 * configure.texi: fix doc for the -nfp option to configure
16546
16547 Tue Jun 2 17:20:52 1992 Michael Tiemann (tiemann@cygnus.com)
16548
16549 * Makefile.in (all-binutils): ar needs flex, so depend on all-flex.
16550
16551 Sun May 31 15:04:08 1992 Mark Eichin (eichin at cygnus.com)
16552
16553 * config.sub: changed [^-]+ to [^-][^-]* so that it works under
16554 Sun sed. (BSD 4.3 sed doesn't handle [^-]+ either.)
16555 * configure.in: added solaris* host_makefile_frag hook.
16556
16557 Sun May 31 01:10:34 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16558
16559 * config.sub: changed recognition of m68000 so that various
16560 m68k types can be specified via m680[01234]0
16561
16562 Sat May 30 21:01:06 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16563
16564 * config.sub (basic_machine): fix sed so that '-foo' isn't
16565 completely substituted out while .+'-foo' loses the '-foo'
16566
16567 Wed May 27 23:18:52 1992 Michael Tiemann (tiemann@rtl.cygnus.com)
16568
16569 * config.sub ($os): Add -aout.
16570
16571 Fri May 22 14:00:02 1992 Per Bothner (bothner@cygnus.com)
16572
16573 * configure: If host_makefile_frag is absolute, don't
16574 prefix ${invsubdir} (relevant to libg++ auto-configure).
16575
16576 Thu May 21 18:00:09 1992 Michael Tiemann (tiemann@rtl.cygnus.com)
16577
16578 * Makefile.in (tooldir): Define it.
16579 (all-ld): Depend on all-flex.
16580
16581 Sun May 10 21:45:59 1992 Per Bothner (bothner@rtl.cygnus.com)
16582
16583 * Makefile.in (check): Fix libg++ special case.
16584
16585 Fri May 8 08:31:41 1992 K. Richard Pixley (rich@cygnus.com)
16586
16587 * configure: do not bury `pwd` into config.status, thus do fewer
16588 pwd's.
16589
16590 * configure: print the "Building in" message only when building in
16591 other than "." AND verbose.
16592
16593 * configure: remove -s, rework -v to better accomodate guested
16594 configures.
16595
16596 * standards.texi: updated to 3 may, fixed librid <-> libdir typo.
16597
16598 Fri May 1 18:00:50 1992 K. Richard Pixley (rich@cygnus.com)
16599
16600 * Makefile.in: macroize flags passed on recursion. remove
16601 fileutils.
16602
16603 Thu Apr 30 08:56:20 1992 K. Richard Pixley (rich@cygnus.com)
16604
16605 * configure: get makesrcdir right for subdirs deeper than 1.
16606
16607 * Makefile.in: pass INSTALL, INSTALL_DATA, INSTALL_PROGRAM on
16608 install.
16609
16610 Fri Apr 24 15:51:51 1992 K. Richard Pixley (rich@cygnus.com)
16611
16612 * Makefile.in: don't print subdir_do or recursion lines.
16613
16614 Fri Apr 24 15:22:04 1992 K. Richard Pixley (rich@cygnus.com)
16615
16616 * standards.texi: added menu item.
16617
16618 * Makefile.in: build and install standards.info.
16619
16620 * standards.texi: new file.
16621
16622 Wed Apr 22 18:06:55 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16623
16624 * configure: test for and move config.status pieces from
16625 ${subdir}/.
16626
16627 Wed Apr 22 14:38:34 1992 Fred Fish (fnf@cygnus.com)
16628
16629 * configure: Test for existance of files before trying to mv
16630 them, to avoid numerous non-existance messages.
16631
16632 Tue Apr 21 12:31:33 1992 K. Richard Pixley (rich@cygnus.com)
16633
16634 * configure: correct final line of config.status.
16635
16636 * configure: patch from eggert. Avoids a protection problem if
16637 the original Makefile.in is read only.
16638
16639 * configure: use move-if-change from gcc to create config.status.
16640 Some makefiles depend on config.status to tell if a directory
16641 has been reconfigured for a different host. This change
16642 prevents those directories from remaking everything in the case
16643 where the reconfig was only intended to rebuild a Makefile.
16644
16645 * configure: test for config.sub with "config.sub sun4" rather
16646 than "config.sub ${host_alias}". Otherwise we can't tell a bad
16647 host alias from a missing config.sub.
16648
16649 Mon Apr 20 18:16:36 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16650
16651 * Makefile.in: explicitly pass CFLAGS on recursion. no longer pass
16652 MINUS_G (this can be done with CFLAGS). Default CFLAGS to -g.
16653
16654 Fri Apr 17 18:27:51 1992 Per Bothner (bothner@cygnus.com)
16655
16656 * configure: mkdir ${subdir} as needed.
16657
16658 Wed Apr 15 17:37:22 1992 K. Richard Pixley (rich@cygnus.com)
16659
16660 * Makefile.in,configure.in: added autoconf.
16661
16662 Wed Apr 15 17:27:34 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16663
16664 * Makefile.in: no longer pass against on recursion.
16665
16666 * Makefile.in: added .NOEXPORT: so that stray makefile_frag
16667 definitions are not inherited.
16668
16669 * configure: correct makesrcdir when subdir is .
16670
16671 Tue Apr 14 11:56:09 1992 Per Bothner (bothner@cygnus.com)
16672
16673 * configure: Add support for 'subdirs' variable, which is
16674 like 'configdirs', except that configure doesn't re-invoke
16675 itself for subdirs, it just creates a Makefile for each subdir.
16676 * configure.texi: Document subdirs.
16677
16678 Mon Apr 13 18:50:16 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16679
16680 * configure.in: added flex to configdirs
16681
16682 Mon Apr 13 18:43:55 1992 K. Richard Pixley (rich@cygnus.com)
16683
16684 * Makefile.in: remove clean-stamps from clean.
16685
16686 Sat Apr 11 03:52:03 1992 John Gilmore (gnu at cygnus.com)
16687
16688 * configure.in: Add gdbtest to configdirs.
16689
16690 Fri Apr 10 23:11:49 1992 Fred Fish (fnf@cygnus.com)
16691
16692 * Makefile.in (MINUS_G): Add macro, default to -g, pass on
16693 to recursive makes.
16694 * configure.in: Recognize new ncr3000 config.
16695
16696 Wed Apr 8 23:08:12 1992 K. Richard Pixley (rich@cygnus.com)
16697
16698 * Makefile.in, configure.in: removed references to gdbm.
16699
16700 Tue Apr 7 16:48:20 1992 Per Bothner (bothner@cygnus.com)
16701
16702 * config.sub: Don't canonicalize os value
16703 newsos* to bsd (readline needs to check for newsos).
16704 (This fix was earlier made Jan 31, but got re-broken.)
16705
16706 Mon Apr 6 14:34:08 1992 Stu Grossman (grossman at cygnus.com)
16707
16708 * configure.in: sco is an os, not a vendor!
16709
16710 * configure: Quote $( better. Keep various shells happy.
16711
16712 Tue Mar 31 16:32:57 1992 K. Richard Pixley (rich@cygnus.com)
16713
16714 * Makefile.in: eliminate stamp-files.
16715
16716 Mon Mar 30 22:20:23 1992 K. Richard Pixley (rich@cygnus.com)
16717
16718 * Makefile.in: add send_pr. remove "force" from .stmp-gprof rule.
16719 Supress echoing of all the "if [ -d ... $(MAKE)" lines.
16720
16721 Wed Mar 25 15:20:04 1992 Stu Grossman (grossman@cygnus.com)
16722
16723 * config.sub: fix iris/iris3.
16724
16725 Wed Mar 25 10:34:19 1992 K. Richard Pixley (rich@cygnus.com)
16726
16727 * configure: re-add -rm.
16728
16729 Tue Mar 24 23:50:16 1992 K. Richard Pixley (rich@cygnus.com)
16730
16731 * Maskefile.in: add .stmp-rcs to all.
16732
16733 * configure.in: remove gas from rs6000 build, use aix host fragment.
16734
16735 Mon Mar 23 19:43:35 1992 K. Richard Pixley (rich@cygnus.com)
16736
16737 * configure: pass down site_option during recursion.
16738
16739 Thu Mar 19 16:49:36 1992 Stu Grossman (grossman at cygnus.com)
16740
16741 * Makefile.in (all.cross): Add .stmp-bfd .stmp-readline.
16742
16743 Wed Mar 18 15:29:33 1992 Mike Stump (mrs@cygnus.com)
16744
16745 * configure: Change exec_prefix so that it really defaults to prefix.
16746
16747 Sat Mar 14 17:20:38 1992 Fred Fish (fnf@cygnus.com)
16748
16749 * Makefile.in, configure.in: Add support for mmalloc library.
16750
16751 Fri Mar 13 18:44:18 1992 K. Richard Pixley (rich@cygnus.com)
16752
16753 * Makefile.in: add stmp dependencies for a few more things.
16754
16755 Thu Mar 12 04:56:24 1992 K. Richard Pixley (rich@cygnus.com)
16756
16757 * configure: adjusted error message on objdir/srcdir configure
16758 collision, per john's suggestion.
16759
16760 * Makefile.in: add libiberty stmp to all and all.cross.
16761
16762 Wed Mar 11 02:07:52 1992 K. Richard Pixley (rich@cygnus.com)
16763
16764 * Makefile.in: remove force dependencies, add grep to all.
16765
16766 Tue Mar 10 21:49:18 1992 K. Richard Pixley (rich@mars.cygnus.com)
16767
16768 * Makefile.in: drop flex. make stamp files work.
16769
16770 * configure: added test for conflicting configuration in srcdir,
16771 remove trailing slashes from srcdir. Otherwise emacs gdb mode
16772 gets cranky. use relative paths for configure and srcdir
16773 whenever possible. Send some error messages to stderr that were
16774 going to stdout.
16775
16776 Tue Mar 10 18:01:55 1992 Per Bothner (bothner@cygnus.com)
16777
16778 * Makefile.in: Fix libg++ rule to check for gcc directory
16779 before using gcc/gcc. Also pass XTRAFLAGS.
16780
16781 Thu Mar 5 21:45:07 1992 K. Richard Pixley (rich@sendai)
16782
16783 * Makefile.in: added stmp-files so that directories aren't polled
16784 when they are already built.
16785
16786 * configure.texi: fixed a node pointer problem.
16787
16788 Thu Mar 5 12:05:58 1992 Stu Grossman (grossman at cygnus.com)
16789
16790 * config.sub configure.in gdb/configure.in
16791 gdb/mips-tdep.c gdb/mipsread.c gdb/procfs.c gdb/signame.h
16792 gdb/tm-irix3.h gdb/tm-mips.h gdb/xm-irix4.h gdb/config/mt-irix3
16793 gdb/config/mh-irix4 texinfo/configure.in: Port to SGI Irix-4.x.
16794
16795 Wed Mar 4 02:57:46 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16796
16797 * configure: -recurring becomes -silent. corrected help message
16798 for -site= option.
16799
16800 * Makefile.in: mkdir $(exec_prefix) and $(tooldir).
16801
16802 Tue Mar 3 14:51:21 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16803
16804 * configure: when building Makefile for crosses, replace
16805 tooldir and program_prefix. default srcdir from location of
16806 config.sub. remove "for host in hosts" and "for target in
16807 targets" loops.
16808
16809 Wed Feb 26 19:48:25 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16810
16811 * Makefile.in: Do not pass bindir or mandir to cvs.
16812
16813 Wed Feb 26 18:04:40 1992 K. Richard Pixley (rich@cygnus.com)
16814
16815 * Makefile.in, configure.in: removed traces of namesubdir,
16816 -subdirs, $(subdir), $(unsubdir), some rcs triggers. Forced
16817 copyrights to '92, changed some from Cygnus to FSF.
16818
16819 * configure.texi: remove most references to multiple hosts,
16820 multiple targets, subdirs, etc.
16821
16822 * configure.man: removed rcsid. reference config.sub not
16823 config.subr.
16824
16825 * Makefile.in: mkdir $(infodir) on install-info.
16826
16827 Wed Feb 19 15:41:13 1992 John Gilmore (gnu at cygnus.com)
16828
16829 * configure.texi: Explain better about .gdbinit and about
16830 the environment that configure.in sections run in.
16831
16832 Fri Feb 7 07:55:00 1992 John Gilmore (gnu at cygnus.com)
16833
16834 * configure.in: Ultrix is only a decstation if it's a MIPS.
16835
16836 Fri Jan 31 21:54:51 1992 John Gilmore (gnu at cygnus.com)
16837
16838 * README: DOC.configure => cfg-paper.texi.
16839
16840 Fri Jan 31 21:48:18 1992 Stu Grossman (grossman at cygnus.com)
16841
16842 * config.sub (near case $os): Don't convert newsos* to bsd!
16843
16844 Fri Jan 31 02:27:32 1992 John Gilmore (gnu at cygnus.com)
16845
16846 * Makefile.in: Reinstall change from gdb-4.3 that reduces
16847 the number of copies of COPYING that go into the GDB tar file.
16848
16849 Thu Jan 30 16:17:30 1992 Stu Grossman (grossman at cygnus.com)
16850
16851 * bfd/configure.in, gdb/config/mh-i386sco,
16852 gdb/config/mt-i386v32, gdb/configure.in, readline/configure.in:
16853 Fix SCO configuration stuff.
16854
16855 Tue Jan 28 23:51:07 1992 Per Bothner (bothner at cygnus.com)
16856
16857 * Makefile.in: For libg++, make sure the -I pointing
16858 to the gcc directory goes *after* all the libg++-local -I flags.
16859 Also, move just-gcc dependency from just-libg++ to all-libg++.
16860
16861 Tue Jan 28 12:56:24 1992 Stu Grossman (grossman at cygnus.com)
16862
16863 * configure: Change -x to -f to keep Ultrix /bin/test happy.
16864
16865 Sat Jan 18 17:45:11 1992 Stu Grossman (grossman at cygnus.com)
16866
16867 * Makefile.in (make-gdb.tar.Z): Remove texinfo targets.
16868
16869 Sat Jan 18 17:03:21 1992 Fred Fish (fnf at cygnus.com)
16870
16871 * config.sub: Add stratus configuration frags. Also
16872 submitted to FSF.
16873
16874 Sat Jan 18 15:35:29 1992 Stu Grossman (grossman at cygnus.com)
16875
16876 * Makefile.in (DEV_SUPPORT): add configure.man.
16877
16878 * config.sub(Decode manufacturer-specific): add -none*.
16879
16880 Fri Jan 17 17:58:05 1992 Stu Grossman (grossman at cygnus.com)
16881
16882 * Makefile.in: remove form feeds to make Sun's make happy.
16883 (DEVO_SUPPORT): DOC.configure => cfg-paper.texi.
16884
16885 Sat Jan 4 16:11:44 1992 John Gilmore (gnu at cygnus.com)
16886
16887 * Makefile.in (AR_FLAGS): Make quieter.
16888
16889 Thu Jan 2 22:57:12 1992 John Gilmore (gnu at cygnus.com)
16890
16891 * configure.in: Add libg++.
16892 * configure: When verbose, don't output the command line at each
16893 level; it will be unremarkably the same as the previous version,
16894 which will be the same as what the user typed.
16895
16896 Fri Dec 27 16:26:47 1991 K. Richard Pixley (rich at cygnus.com)
16897
16898 * configure.in, Makefile.in: fix clean-info, add flex. add
16899 fileutils.
16900
16901 * configure: be less sensitive to spaces in Makefile.in. Do not
16902 look for sources in "..". Doing so breaks subdirectories that
16903 might have their own configure. If a subdir has it's own
16904 configure script, use it.
16905
16906 Thu Dec 26 16:30:26 1991 K. Richard Pixley (rich at cygnus.com)
16907
16908 * cfg-paper.texi: some changes suggested by rms.
16909
16910 Thu Dec 26 10:13:36 1991 Fred Fish (fnf at cygnus.com)
16911
16912 * config.sub: Merge in some small additions from the FSF version,
16913 taken from the gcc distribution, to bring the Cygnus and FSF
16914 versions into closer sync.
16915
16916 Fri Dec 20 11:34:18 1991 Fred Fish (fnf at cygnus.com)
16917
16918 * configure.in: Changed svr4 references to sysv4.
16919
16920 Thu Dec 19 15:54:29 1991 K. Richard Pixley (rich at cygnus.com)
16921
16922 * configure: added -V for version number option.
16923
16924 Wed Dec 18 15:39:34 1991 K. Richard Pixley (rich at cygnus.com)
16925
16926 * DOC.configure, cfg-paper.texi: revised, updated, and texinfo'd.
16927 renamed from DOC.configure to cfg-paper.texi.
16928
16929 Mon Dec 16 23:05:19 1991 K. Richard Pixley (rich at rtl.cygnus.com)
16930
16931 * configure, config.subr, config.sub: config.subr is now
16932 config.sub again.
16933
16934 Fri Dec 13 01:17:06 1991 K. Richard Pixley (rich at cygnus.com)
16935
16936 * configure.texi: new file, in progress.
16937
16938 * Makefile.in: build info file and install the man page for
16939 configure.
16940
16941 * configure.man: new file, first cut.
16942
16943 * configure: find config.subr again now that configuration "none"
16944 has gone. removed all traces of the -ansi option. removed all
16945 traces of the -languages option.
16946
16947 * config.subr: resync from rms.
16948
16949 1991-12-11 K. Richard Pixley (rich at rtl.cygnus.com)
16950
16951 * configure, config.sub, config.subr: merge config.sub into
16952 config.subr, call the result config.subr, remove config.sub, use
16953 config.subr.
16954
16955 * Makefile.in: revised install for dir.info.
16956
16957 1991-12-10 K. Richard Pixley (rich at rtl.cygnus.com)
16958
16959 * configure.in: add decstation host makefile frag.
16960
16961 * Makefile.in: BISON now bison -y again. also install-gcc on
16962 install. clean-gdbm on clean. infodir belongs in datadir.
16963 Make directories for info install. Build dir.info here then
16964 install it.
16965
16966 1991-12-09 K. Richard Pixley (rich at rtl.cygnus.com)
16967
16968 * Makefile.in: fix for bad directory tests.
16969
16970 1991-12-07 K. Richard Pixley (rich at rtl.cygnus.com)
16971
16972 * configure: \{1,2\} appears to be a sysv'ism. Use a different
16973 regexp. -srcdir relative was being handled incorrectly.
16974
16975 * Makefile.in: unwrapped some for loops so that parallel makes
16976 work again and so one can focus one's attention on a particular
16977 package.
16978
16979 1991-12-06 K. Richard Pixley (rich at rtl.cygnus.com)
16980
16981 * configure: added PWD as a stand in for `pwd` (for speed). use
16982 elif wherever possible. make -srcdir work without -objdir.
16983 -objdir= commented out.
16984
16985 1991-12-05 K. Richard Pixley (rich at rtl.cygnus.com)
16986
16987 * configure: +options become --options. -subdirs commented out.
16988 added -host, -datadir. Renamed -destdir to -prefix. Comment in
16989 Makefile now at top of generated Makefile. Removed cvs log
16990 entries. added -srcdir. create .gdbinit only if there is one
16991 in ${srcdir}.
16992
16993 * Makefile.in: idestdir and ddestdir go away. Added copyrights
16994 and shift gpl to v2. Added ChangeLog if it didn't exist. docdir
16995 and mandir now keyed off datadir by default.
16996
16997 1991-11-22 K. Richard Pixley (rich at rtl.cygnus.com)
16998
16999 * Freshly created ChangeLog.
17000
17001 \f
17002 Local Variables:
17003 mode: change-log
17004 left-margin: 8
17005 fill-column: 76
17006 version-control: never
17007 End: