]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - ChangeLog
gprofng: a new GNU profiler
[thirdparty/binutils-gdb.git] / ChangeLog
1 2022-03-11 Vladimir Mezentsev <vladimir.mezentsev@oracle.com>
2
3 * Makefile.def: Add gprofng module.
4 * configure.ac: Add --enable-gprofng option.
5 * src-release.sh: Add gprofng.
6 * Makefile.in: Regenerate.
7 * configure: Regenerate.
8 * gprofng: New directory.
9
10 2022-01-22 Nick Clifton <nickc@redhat.com>
11
12 * 2.38 release branch created.
13
14 2022-01-17 Nick Clifton <nickc@redhat.com>
15
16 Update config.[guess|sub] from upstream:
17
18 2022-01-09 Idan Horowitz <idan.horowitz@gmail.com>
19
20 config.guess: recognize SerenityOS
21 * config.guess (*:SerenityOS:*:*): Recognize.
22 (timestamp): Update.
23
24 2022-01-03 Bernhard Voelker <mail@bernhard-voelker.de>
25
26 Fix GPLv3 license headers to use a comma instead of semicolon
27 See: https://www.gnu.org/licenses/gpl-3.0.html#howto
28
29 Update license headers automatically using the following script:
30
31 $ git grep -l 'Foundation; either version 3' \
32 | xargs sed -i '/Foundation; either version 3/ s/n; e/n, e/'
33
34 * config.guess: Adjust via the above command.
35 (timestamp): Update.
36 * config.sub: Likewise.
37 * doc/config.guess.1: Regenerate.
38 * doc/config.sub.1: Likewise.
39
40 2022-01-01 Dmitry V. Levin <ldv@altlinux.org>
41
42 Update copyright years
43 * config.guess: Update copyright years.
44 * config.sub: Likewise.
45
46 2021-12-25 Dmitry V. Levin <ldv@altlinux.org>
47
48 config.sub: alias armh to armv7l
49 ALT uses armh as an alias for armv7l-alt-linux-gnueabihf since 2012.
50
51 * config.sub (armh-unknown|armh-alt): Set cpu, vendor, and basic_os.
52 (timestamp): Update.
53
54 2021-12-24 Dmitry V. Levin <ldv@altlinux.org>
55
56 config.sub: alias aarch64le to aarch64
57 Apparently, QNX reports aarch64 as aarch64le on little-endian machines.
58
59 * config.sub (aarch64le-*): Set cpu to aarch64.
60 (timestamp): Update.
61
62 2021-12-13 Dmitry V. Levin <ldv@altlinux.org>
63
64 config.sub: fix typo in timestamp
65 * config.sub: Fix timestamp.
66
67 2021-11-30 Andreas F. Borchert <github@andreas-borchert.de>
68
69 config.guess: x86_64-pc-solaris2.11 is not properly recognized
70 config.guess guesses Solaris 11 to run on a 32-bit platform
71 despite Solaris 11 no longer supporting any 32-bit platform.
72
73 See the following code at lines 434 to 445:
74
75 | SUN_ARCH=i386
76 | # If there is a compiler, see if it is configured for 64-bit objects.
77 | # Note that the Sun cc does not turn __LP64__ into 1 like gcc does.
78 | # This test works for both compilers.
79 | if test "$CC_FOR_BUILD" != no_compiler_found; then
80 | if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \
81 | (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \
82 | grep IS_64BIT_ARCH >/dev/null
83 | then
84 | SUN_ARCH=x86_64
85 | fi
86 | fi
87
88 If "cc" is installed, i.e. the Oracle Studio compiler, this one is
89 chosen for $CC_FOR_BUILD. This compiler, the gcc provided by Oracle
90 and also gcc bootstrapped from sources on that platform with a default
91 configuration will by default generate 32-bit binaries -- even on
92 a 64-bit platform. And __amd64 will not be defined for compilations
93 targeting a 32-bit platform. This is different from the corresponding
94 behaviour on GNU/Linux systems where the local platform is targeted by
95 default.
96
97 Thus, as long as you do not add "-m64" or if you have a custom-built
98 gcc which defaults to 64 bit, you will get 32-bit binaries on Solaris
99 despite living on a 64-bit platform.
100
101 * config.guess (i86pc:SunOS:5.*:* || i86xen:SunOS:5.*:*): Adapt the
102 test by adding the "-m64" flag. This will work properly for Solaris
103 10 as well (the last Solaris release that supported x86 32-bit
104 platforms).
105
106 2021-10-27 Jordi Sanfeliu <jordi@fibranet.cat>
107
108 Recognize Fiwix
109 $ make check
110 cd testsuite && bash config-guess.sh && rm uname
111 PASS: config.guess checks (137 tests)
112 cd testsuite && bash config-sub.sh
113 PASS: config.sub checks (882 tests)
114 PASS: config.sub idempotency checks (819 tests)
115 PASS: config.sub canonicalise each config.guess testcase (137 tests)
116
117 * config.guess (i*86:Fiwix:*:*): Recognize.
118 * config.sub (fiwix*): Likewise.
119
120 2021-10-18 Kinshuk Dua <kinshukdua@gmail.com>
121
122 config.sub: Fix typo in comment
123 Fixes: 5e531d391852a54e7fab2d8ff55625fca514b305
124
125 2021-08-14 Nick Bowler <nbowler@draconx.ca>
126
127 config.sub: work around command assignment bug in some shells
128 When combining variable assignments with a shell command, some older
129 shells (notably heirloom-sh and presumably also Solaris 10 /bin/sh)
130 have a bug which causes the assignment to alter the current execution
131 environment whenever the command is a shell built-in. For example:
132
133 % dash -c 'x=good; x=bad echo >/dev/null; echo $x'
134 good
135
136 % jsh -c 'x=good; x=bad echo >/dev/null; echo $x'
137 bad
138
139 The config.sub script contains a few commands of the form:
140
141 IFS=- read ...
142
143 which triggers this bug, causing the IFS assignment to persist for the
144 remainder of the script. This can cause misbehaviour in certain cases,
145 for example:
146
147 % jsh config.sub i386-linux-gnu
148 config.sub: test: unknown operator gnu
149
150 % jsh config.sub i386-gnu/linux
151 sed: can't read s|gnu/linux|gnu|: No such file or directory
152 Invalid configuration `i386-gnu/linux': OS `' not recognized
153
154 * config.sub: Save and restore IFS explicitly to avoid shell bugs.
155 * doc/config.sub.1: Regenerate.
156
157 2021-08-04 Jeremy Soller <jackpot51@gmail.com>
158
159 config.sub: add Linux Relibc Target
160 $ make check
161 cd testsuite && bash config-guess.sh && rm uname
162 PASS: config.guess checks (136 tests)
163 cd testsuite && bash config-sub.sh
164 PASS: config.sub checks (881 tests)
165 PASS: config.sub idempotency checks (818 tests)
166 PASS: config.sub canonicalise each config.guess testcase (136 tests)
167
168 * config.sub (relibc*): Recognize.
169 * doc/config.sub.1: Regenerate.
170 * testsuite/config-sub.data (x86_64-linux-relibc): New test.
171
172 2021-07-06 Stephanos Ioannidis <root@stephanos.io>
173
174 config.sub: add Zephyr RTOS support
175 This adds the Zephyr RTOS targets in preparation for implementing the
176 Zephyr RTOS-specific toolchain support.
177
178 $ make check
179 cd testsuite && bash config-guess.sh && rm uname
180 PASS: config.guess checks (136 tests)
181 cd testsuite && bash config-sub.sh
182 PASS: config.sub checks (880 tests)
183 PASS: config.sub idempotency checks (817 tests)
184 PASS: config.sub canonicalise each config.guess testcase (136 tests)
185
186 * config.sub (zephyr*): Recognize.
187 * doc/config.sub.1: Regenerate.
188 * testsuite/config-sub.data: Add testcases for *-zephyr.
189
190 2021-07-03 Ozkan Sezer <sezero@users.sourceforge.net>
191
192 config.sub: disable shellcheck SC2006 / SC2268 warnings
193 This is in line with the recent config.guess change in commit
194 12fcf67c9108f4c4b581eaa302088782f0ee40ea
195
196 * config.sub (shellcheck disable): Add SC2006,SC2268.
197
198 Suggested-by: Jacob Bachmeyer <jcb@gnu.org>
199
200 2021-07-03 Ozkan Sezer <sezero@users.sourceforge.net>
201
202 config.sub: normalize the quoting in the `echo FOO | sed ...`
203 Some cases quote the argument to echo and some do not. At runtime
204 it probably does not matter because the substituted values will never
205 contain whitespace, but quoting them all would make shellcheck more
206 useful.
207
208 * config.sub: Consistently quote the argument of echo.
209 * doc/config.sub.1: Regenerate.
210
211 Suggested-by: Jacob Bachmeyer <jcb@gnu.org>
212
213 2021-07-02 Ozkan Sezer <sezero@users.sourceforge.net>
214
215 config.sub: replace POSIX $( ) with classic ` ` throughout
216 This is in line with the recent config.guess change in commit
217 d70c4fa934de164178054c3a60aaa0024ed07c91.
218
219 The patch was generated using patch-6.gawk script introduced in that
220 commit.
221
222 * config.sub: Revert POSIX command substitutions to classic form.
223
224 2021-06-04 Vineet Gupta <Vineet.Gupta1@synopsys.com>
225
226 Recognize arc32
227 This is the 32-bit variant of ARCv3 ISA (which is not compatible with the
228 32-bit ARCv2 ISA)
229
230 | make check
231 | cd testsuite && bash config-guess.sh && rm uname
232 | PASS: config.guess checks (136 tests)
233 | cd testsuite && bash config-sub.sh
234 | PASS: config.sub checks (864 tests)
235 | PASS: config.sub idempotency checks (801 tests)
236 | PASS: config.sub canonicalise each config.guess testcase (136 tests)
237
238 * config.guess (arc32:Linux:*:*): Recognize.
239 * config.sub (arc32): Likewise.
240
241 2021-05-27 Jacob Bachmeyer <jcb@gnu.org>
242
243 Remove automatic patch generators
244 These tools have served their purposes and need not be kept outside of
245 the repository history any longer. This patch as a diff also collects
246 the contents of the various tools in one convenient place.
247
248 * patch-1.gawk: Remove.
249 * patch-3.gawk: Likewise.
250 * patch-6.gawk: Likewise.
251
252 2021-05-26 Jacob Bachmeyer <jcb@gnu.org>
253
254 config.guess: manual fixups after previous automatic patch
255 The tool could not handle command substitutions that span lines, but
256 fortunately there were only two such substitutions in the script.
257
258 The test for which universe is active on Pyramid is rewritten into a
259 case block because it was the only use of a command substitution as an
260 argument to the test command, which would require quoting.
261
262 * config.guess: Rewrite "if" for Pyramid systems to "case".
263
264 2021-05-26 Jacob Bachmeyer <jcb@gnu.org>
265
266 config.guess: replace POSIX $( ) with classic ` ` throughout
267 The previous replacement of backticks with POSIX command substitutions
268 was ill-considered and illogical: this script recognizes many archaic
269 machine types that probably never had POSIX shells, therefore it needs
270 to be able to run successfully under pre-POSIX shells.
271
272 This patch was generated using the included GNU Awk program.
273
274 * config.guess: Revert POSIX command substitutions to classic form.
275 * patch-6.gawk: Store the tool that produced the automated patch.
276
277 2021-05-26 Jacob Bachmeyer <jcb@gnu.org>
278
279 config.guess: manual fixup after previous automated patches
280 This patch provides the special handling for the GNU system. As these
281 were two small and unique edits, they were not included in the scripts.
282
283 This patch also cleans up other minor issues that must be addressed
284 before reverting to classic command substitutions and updates
285 "shellcheck" directives to account for changes in this script and the
286 change in "shellcheck" towards reporting individual portability issues.
287
288 2021-05-26 Jacob Bachmeyer <jcb@gnu.org>
289
290 config.guess: automatic fixups after previous automated patch
291 This patch was generated using the following command:
292
293 sed -i config.guess \
294 -e '/="[^"]\+"\(-\|$\)/s/="\([^"([:space:])]\+\)"/=\1/' \
295 -e '/="[^"]\+"[[:alnum:]]/s/="\$\([^([:space:])]\+\)"/=${\1}/' \
296 -e \
297 '/\$(echo[^|]\+|/s/\([^[:space:]]\)[[:space:]]*|[[:space:]]*sed/\1 | sed/g'
298
299 * config.guess: Remove unneeded quotes in other variable assignments,
300 standardize spacing for "echo ... | sed" substitutions.
301
302 2021-05-26 Jacob Bachmeyer <jcb@gnu.org>
303
304 config.guess: remove unneeded quotes and factor command substitutions
305 This is further cleanup and simplifies some constructs that can confuse
306 Emacs' syntax highlighting while generally reducing required quoting.
307
308 This patch was generated using the included GNU Awk program.
309
310 * config.guess: Remove unneeded variable quotes and factor out command
311 substitutions when setting GUESS.
312 * patch-3.gawk: Store the tool that produced the automated patch.
313
314 2021-05-25 Jacob Bachmeyer <jcb@gnu.org>
315
316 config.guess: manual fixups after previous automatic patch
317 * config.guess: Adjust a few "leftover" cases that the tool could not
318 easily recognize and fixes comment indentation in a few other special
319 cases.
320
321 2021-05-25 Jacob Bachmeyer <jcb@gnu.org>
322
323 config.guess: use intermediate variable with uname results
324 This will allow quoting to be significantly simplified in another
325 pass through the file.
326
327 This patch was generated using the included GNU Awk program.
328
329 * config.guess: Use GUESS variable to hold results of uname analysis.
330 * patch-1.gawk: Store the tool that produced the automated patch.
331
332 2021-05-25 Jacob Bachmeyer <jcb@gnu.org>
333
334 config.guess: introduce intermediate variable with uname results
335 This will allow quoting to be significantly simplified in another
336 pass through the file.
337
338 * config.guess: Introduce GUESS variable to hold results of uname analysis.
339
340 2021-05-24 Dmitry V. Levin <ldv@altlinux.org>
341
342 config.guess: fix shellcheck warning SC2154
343 While, according to Plan 9 documentation, the environment variable
344 $cputype is set to the name of the kernel's CPU's architecture,
345 shellcheck warns that cputype is referenced but not assigned.
346 Be on the safe side and do not use cputype if it is not defined
347 or empty.
348
349 * config.guess (*:Plan9:*:*): Fix shellcheck warning SC2154.
350
351 2021-05-24 Dmitry V. Levin <ldv@altlinux.org>
352
353 config.guess: remove redundant quotes in case commands
354 According to the GNU Autoconf Portable Shell Programming manual,
355 the Bourne shell does not systematically split variables and back-quoted
356 expressions, in particular on the right-hand side of assignments and in
357 the argument of 'case'.
358
359 The change is made automatically using the following command:
360 $ sed -E -i 's/(\<case )"(\$[^"]+)"( in\>)/\1\2\3/' config.guess
361
362 * config.guess: Simplify case commands by removing quotes around the
363 argument.
364
365 Suggested-by: Jacob Bachmeyer <jcb@gnu.org>
366
367 2021-05-24 Dmitry V. Levin <ldv@altlinux.org>
368
369 config.guess: simplify exit status workaround on alphaev67-dec-osf5.1
370 Commit 29865ea8a5622cdd80b7a69a0afa78004b4cd311 introduced an exit trap
371 reset before exiting to avoid a spurious non-zero exit status on
372 alphaev67-dec-osf5.1. Simplify that code a bit by moving the exit trap
373 reset around.
374
375 * config.guess (alpha:OSF1:*:*): Reset exit trap earlier.
376 * doc/config.guess.1: Regenerate.
377
378 2021-10-29 Eli Zaretskii <eliz@gnu.org>
379
380 * gdb/doc/gdb.texinfo (Command Options): (Data): Document
381 '-memory-tag-violations'. Update the example.
382
383 2021-09-28 Andrew Burgess <andrew.burgess@embecosm.com>
384
385 * src-release.sh (GDB_SUPPPORT_DIRS): Add libbacktrace.
386
387 2021-09-27 Nick Alcock <nick.alcock@oracle.com>
388
389 PR libctf/27967
390 * libtool.m4 (LT_PATH_NM): Try BSDization flags with a user-provided
391 NM, if there is one. Run nm on itself, not on /dev/null, to avoid
392 errors from nms that refuse to work on non-regular files. Remove
393 other workarounds for this problem. Strip out blank lines from the
394 nm output.
395
396 2021-09-27 Nick Alcock <nick.alcock@oracle.com>
397
398 PR libctf/27967
399 * libtool.m4 (lt_cv_sys_global_symbol_pipe): Augment symcode for
400 Solaris 11.
401
402 2021-07-03 Nick Clifton <nickc@redhat.com>
403
404 * 2.37 release branch created.
405
406 2021-07-03 Nick Clifton <nickc@redhat.com>
407
408 * libiberty: Sync with gcc. Bring in:
409 2021-06-30 Gerald Pfeifer <gerald@pfeifer.com>
410
411 * make-temp-file.c (usrtmp): Remove.
412 (choose_tmpdir): Remove use of usrtmp.
413
414 2021-06-28 Indu Bhagat <indu.bhagat@oracle.com>
415
416 * simple-object.c (handle_lto_debug_sections): Copy over .BTF section.
417
418 2021-06-28 Indu Bhagat <indu.bhagat@oracle.com>
419 David Faust <david.faust@oracle.com>
420 Jose E. Marchesi <jose.marchesi@oracle.com>
421 Weimin Pan <weimin.pan@oracle.com>
422
423 * simple-object.c (handle_lto_debug_sections): Copy over .ctf
424 sections.
425
426 2021-06-05 John David Anglin <danglin@gcc.gnu.org>
427
428 PR target/100734
429 * configure.ac: Use libiberty snprintf and vsnprintf on
430 hppa*-*-hpux*.
431 * configure: Regenerate.
432
433 2021-05-06 Tom Tromey <tom@tromey.com>
434
435 * hashtab.c (htab_eq_string): New function.
436
437 2021-05-04 Eric Botcazou <ebotcazou@adacore.com>
438
439 * configure.ac: Make test for variables more robust.
440 * configure: Regenerate.
441
442 2021-05-03 H.J. Lu <hjl.tools@gmail.com>
443
444 PR bootstrap/99703
445 * configure: Regenerated.
446
447 2021-04-21 Andreas Schwab <schwab@linux-m68k.org>
448
449 PR demangler/100177
450 * rust-demangle.c (demangle_const_char): Properly print the
451 character value.
452
453 2021-03-31 Patrick Palka <ppalka@redhat.com>
454
455 PR c++/88115
456 * cp-demangle.c (d_dump, d_make_comp, d_expression_1)
457 (d_count_templates_scopes): Handle DEMANGLE_COMPONENT_VENDOR_EXPR.
458 (d_print_comp_inner): Likewise.
459 <case DEMANGLE_COMPONENT_EXTENDED_OPERATOR>: Revert r11-4926
460 change.
461 <case DEMANGLE_COMPONENT_UNARY>: Likewise.
462 * testsuite/demangle-expected: Adjust __alignof__ tests.
463
464 2021-03-16 Nick Clifton <nickc@redhat.com>
465
466 * sha1.c (sha1_process_bytes): Use memmove in place of memcpy.
467
468 2021-02-20 Mike Frysinger <vapier@gentoo.org>
469
470 * Makefile.in (ACLOCAL, ACLOCAL_AMFLAGS, $(srcdir)/aclocal.m4): Define.
471 (configure_deps): Rename to ...
472 (aclocal_deps): ... this. Replace aclocal.m4 with acinclude.m4.
473 ($(srcdir)/configure): Replace $(configure_deps) with
474 $(srcdir)/aclocal.m4.
475 * aclocal.m4: Move libiberty macros to acinclude.m4, then regenerate.
476 * acinclude.m4: New file.
477 * configure: Regenerate.
478
479 2021-02-19 Ayush Mittal <ayush.m@samsung.com>
480
481 * argv.c (expandargv): free allocated buffer if read fails.
482
483 2021-02-01 Martin Sebor <msebor@redhat.com>
484
485 * dyn-string.c (dyn_string_insert_cstr): Use memcpy instead of strncpy
486 to avoid -Wstringop-truncation.
487
488 2021-05-29 Mike Frysinger <vapier@gentoo.org>
489
490 * configure.ac: Add gnulib to configdirs for sim.
491 * configure: Regenerate.
492
493 2021-05-24 Maciej W. Rozycki <macro@orcam.me.uk>
494
495 * MAINTAINERS: Update path to readline config.{sub,guess} files.
496
497 2021-05-24 Maciej W. Rozycki <macro@orcam.me.uk>
498
499 * config.guess: Import from upstream.
500 * config.sub: Likewise.
501
502 2021-05-18 Mike Frysinger <vapier@gentoo.org>
503
504 * Makefile.def: Add configure-sim dependency on all-gnulib.
505 * Makefile.in: Regenerated.
506
507 2021-05-04 Nick Clifton <nickc@redhat.com>
508
509 * configure.ac (AC_PROG_CC): Replace with AC_PROG_CC_C99.
510 * configure: Regenerate.
511
512 2021-03-18 Nick Alcock <nick.alcock@oracle.com>
513
514 PR libctf/27482
515 * Makefile.def: Add install-bfd dependencies for install-libctf and
516 install-ld, and install-strip-bfd dependencies for
517 install-strip-libctf and install-strip-ld; move the install-ld
518 dependency on install-libctf to join it.
519 * Makefile.in: Regenerated.
520
521 2021-03-12 Mike Frysinger <vapier@gentoo.org>
522
523 * Makefile.def: Remove all-sim dependency on configure-gdb.
524 * Makefile.in: Regenerated.
525
526 2021-02-28 H.J. Lu <hongjiu.lu@intel.com>
527
528 PR binutils/26766
529 * Makefile.tpl (PGO_BUILD_TRAINING_FLAGS_TO_PASS): Add
530 PGO_BUILD_TRAINING=yes.
531 (PGO_BUILD_TRAINING_MFLAGS): New.
532 (all): Pass $(PGO_BUILD_TRAINING_MFLAGS) to the PGO build.
533
534 2021-02-09 Alan Modra <amodra@gmail.com>
535
536 * configure.ac: Delete arm*-*-symbianelf* entry.
537 * configure: Regenerate.
538
539 2021-01-26 Nick Alcock <nick.alcock@oracle.com>
540
541 * Makefile.def: Add install-libctf dependency to install-ld.
542 * Makefile.in: Regenerated.
543
544 2021-01-12 Mike Frysinger <vapier@gentoo.org>
545
546 * src-release.sh (do_proto_toplev): Rewrite indentation.
547
548 2021-01-11 H.J. Lu <hongjiu.lu@intel.com>
549
550 PR binutils/26766
551 * configure.ac:
552 * configure: Regenerated.
553
554 2021-01-11 H.J. Lu <hongjiu.lu@intel.com>
555
556 PR ld/27173
557 * configure: Regenerated.
558 * libtool.m4 (_LT_CMD_OLD_ARCHIVE): Check if AR works with
559 --plugin and rc before enabling --plugin.
560
561 2021-01-09 H.J. Lu <hongjiu.lu@intel.com>
562
563 PR binutils/26766
564 * Makefile.tpl (BUILD_CFLAGS): New.
565 (CFLAGS): Append $(BUILD_CFLAGS).
566 (CXXFLAGS): Likewise.
567 (PGO_BUILD_GEN_FLAGS_TO_PASS): New.
568 (PGO_BUILD_TRAINING_CFLAGS): Likewise.
569 (PGO_BUILD_TRAINING_CXXFLAGS): Likewise.
570 (PGO_BUILD_TRAINING_FLAGS_TO_PASS): Likewise.
571 (PGO_BUILD_TRAINING_MFLAGS): Likewise.
572 (PGO_BUILD_USE_FLAGS_TO_PASS): Likewise.
573 (PGO-TRAINING-TARGETS): Likewise.
574 (PGO_BUILD_TRAINING): Likewise.
575 (all): Add '+' to the command line for recursive make. Support
576 the PGO build.
577 * configure.ac: Add --enable-pgo-build[=lto].
578 AC_SUBST PGO_BUILD_GEN_CFLAGS, PGO_BUILD_USE_CFLAGS and
579 PGO_BUILD_LTO_CFLAGS. Enable the PGO build in Makefile.
580 * Makefile.in: Regenerated.
581 * configure: Likewise.
582
583 2021-01-09 H.J. Lu <hongjiu.lu@intel.com>
584
585 * Makefile.tpl (AR): Add @AR_PLUGIN_OPTION@
586 (RANLIB): Add @RANLIB_PLUGIN_OPTION@.
587 * configure.ac: Include config/gcc-plugin.m4.
588 AC_SUBST AR_PLUGIN_OPTION and RANLIB_PLUGIN_OPTION.
589 * libtool.m4 (_LT_CMD_OLD_ARCHIVE): Pass --plugin to AR and
590 RANLIB if possible.
591 * Makefile.in: Regenerated.
592 * configure: Likewise.
593
594 2021-01-09 Nick Clifton <nickc@redhat.com>
595
596 * 2.36 release branch crated.
597
598 2021-01-07 Samuel Thibault <samuel.thibault@gnu.org>
599
600 * libtool.m4: Match gnu* along with other GNU systems.
601
602 2021-01-07 Alan Modra <amodra@gmail.com>
603
604 * config.sub: Accept OS of eabi* and gnueabi*.
605
606 2021-01-05 Nick Alcock <nick.alcock@oracle.com>
607
608 * Makefile.def (libctf): No longer no_check. Checking depends on
609 all-ld.
610 * Makefile.in: Regenerated.
611
612 2021-01-05 Nick Clifton <nickc@redhat.com>
613
614 * libiberty: Sync with gcc. Bring in:
615 2021-01-04 Martin Liska <mliska@suse.cz>
616
617 * strverscmp.c: Convert to utf8 from iso8859.
618
619 2020-12-22 Jason Merrill <jason@redhat.com>
620
621 PR c++/67343
622 * cp-demangle.h (struct d_info): Add unresolved_name_state.
623 * cp-demangle.c (d_prefix): Add subst parm.
624 (d_nested_name): Pass it.
625 (d_unresolved_name): Split out from...
626 (d_expression_1): ...here.
627 (d_demangle_callback): Maybe retry with old sr mangling.
628 * testsuite/demangle-expected: Add test.
629
630 2020-12-21 Jason Merrill <jason@redhat.com>
631
632 * cp-demangle.c (d_expression_1): Recognize qualified-id
633 on RHS of dt/pt.
634 * testsuite/demangle-expected: Add test.
635
636 2020-12-21 Jason Merrill <jason@redhat.com>
637
638 * cp-demangle.c (d_unqualified_name): Clear is_expression.
639 * testsuite/demangle-expected: Add tests.
640
641 2020-11-25 Matthew Malcomson <matthew.malcomson@arm.com>
642
643 * configure: Regenerate.
644 * configure.ac: Avoid using sanitizer.
645
646 2020-11-13 Eduard-Mihai Burtescu <eddyb@lyken.rs>
647
648 * rust-demangle.c (struct rust_demangler): Add
649 skipping_printing and bound_lifetime_depth fields.
650 (eat): Add (v0-only).
651 (parse_integer_62): Add (v0-only).
652 (parse_opt_integer_62): Add (v0-only).
653 (parse_disambiguator): Add (v0-only).
654 (struct rust_mangled_ident): Add punycode{,_len} fields.
655 (parse_ident): Support v0 identifiers.
656 (print_str): Respect skipping_printing.
657 (print_uint64): Add (v0-only).
658 (print_uint64_hex): Add (v0-only).
659 (print_ident): Respect skipping_printing,
660 Support v0 identifiers.
661 (print_lifetime_from_index): Add (v0-only).
662 (demangle_binder): Add (v0-only).
663 (demangle_path): Add (v0-only).
664 (demangle_generic_arg): Add (v0-only).
665 (demangle_type): Add (v0-only).
666 (demangle_path_maybe_open_generics): Add (v0-only).
667 (demangle_dyn_trait): Add (v0-only).
668 (demangle_const): Add (v0-only).
669 (demangle_const_uint): Add (v0-only).
670 (basic_type): Add (v0-only).
671 (rust_demangle_callback): Support v0 symbols.
672 * testsuite/rust-demangle-expected: Add v0 testcases.
673
674 2020-11-13 Seija Kijin <doremylover456@gmail.com>
675
676 * strstr.c (strstr): Make implementation ANSI/POSIX compliant.
677
678 2020-11-11 Patrick Palka <ppalka@redhat.com>
679
680 PR c++/88115
681 * cp-demangle.c (d_print_comp_inner)
682 <case DEMANGLE_COMPONENT_EXTENDED_OPERATOR>: Don't print the
683 "operator " prefix for __alignof__.
684 <case DEMANGLE_COMPONENT_UNARY>: Always print parens around the
685 operand of __alignof__.
686 * testsuite/demangle-expected: Test demangling for __alignof__.
687
688 2020-11-09 Christophe Lyon <christophe.lyon@linaro.org>
689
690 * pex-win32.c (pex_win32_exec_child): Initialize orig_err.
691
692 2020-10-06 Martin Liska <mliska@suse.cz>
693
694 PR lto/97290
695 * simple-object-elf.c (simple_object_elf_copy_lto_debug_sections):
696 Use sh_link of a .symtab_shndx section.
697
698 2021-01-05 Alan Modra <amodra@gmail.com>
699
700 * config.guess: Import from upstream.
701 * config.sub: Likewise.
702
703 2020-12-16 Martin Liska <mliska@suse.cz>
704 Tom de Vries <tdevries@suse.de>
705
706 * gdb/debuginfod-support.c (struct user_data): Remove has_printed
707 field. Add meter field.
708 (progressfn): Print progress using meter.
709
710 2020-12-02 Enze Li <lienze2010@hotmail.com>
711
712 * .gitignore: Add gnu global outputs.
713
714 2020-12-02 Simon Marchi <simon.marchi@polymtl.ca>
715
716 * .gitignore: Sync with gcc.
717
718 2020-10-26 Andreas Rammhold <andreas@rammhold.de>
719
720 * src-release.sh: Use sha256sum instead of md5sum.
721
722 2020-10-14 Andrew Burgess <andrew.burgess@embecosm.com>
723
724 * Makefile.in: Rebuild.
725 * Makefile.def: Make distclean-gnulib depend on distclean-gdb and
726 distclean-gdbserver.
727
728 2020-07-24 Aaron Merey <amerey@redhat.com>
729
730 * configure: Rebuild.
731 * configure.ac: Remove AC_DEBUGINFOD.
732
733 2020-07-04 Nick Clifton <nickc@redhat.com>
734
735 Binutils 2.35 branch created.
736
737 2020-04-21 Stephen Casner <casner@acm.org>
738
739 PR 25830
740 * configure.ac (noconfigdirs): Exclude gdb & gprof for pdp11.
741 * configure: Rebuild.
742
743 2020-03-12 Tom Tromey <tom@tromey.com>
744
745 * Makefile.in: Rebuild.
746 * Makefile.def (gdbserver): Depend on gdbsupport.
747
748 2020-03-12 Tom Tromey <tom@tromey.com>
749
750 * Makefile.in: Rebuild.
751 * Makefile.def (gdbsupport): Don't depend on bfd.
752
753 2020-03-12 Tom Tromey <tom@tromey.com>
754
755 * Makefile.in: Rebuild.
756 * Makefile.def (gdbsupport): Depend on intl.
757
758 2020-02-17 Tom Tromey <tom@tromey.com>
759
760 * configure: Rebuild.
761 * configure.ac (configdirs): Add gnulib and gdbsupport when building
762 gdbserver.
763
764 2020-02-14 Tom Tromey <tom@tromey.com>
765
766 * Makefile.in: Rebuild.
767 * Makefile.def: Make gdbserver require gnulib and libiberty.
768
769 2020-02-07 Tom Tromey <tom@tromey.com>
770 Pedro Alves <palves@redhat.com>
771
772 * src-release.sh (GDB_SUPPORT_DIRS): Add gdbserver.
773 * gdbserver: New directory, moved from gdb/gdbserver.
774 * configure.ac (host_tools): Add gdbserver.
775 Only build gdbserver on certain systems.
776 * Makefile.in, configure: Rebuild.
777 * Makefile.def (host_modules, dependencies): Add gdbserver.
778 * MAINTAINERS: Add gdbserver.
779
780 2020-01-28 Sergio Durigan Junior <sergiodj@redhat.com>
781
782 * src-release.sh (getver): Look for gdbsupport's
783 create-version.sh script at the current directory if tool is
784 "gdb".
785
786 2020-01-19 Simon Marchi <simon.marchi@polymtl.ca>
787
788 * remote-sim.c (gdbsim_target::wait): Return
789 sim_data->remote_sim_ptid instead of inferior_ptid.
790
791 2020-01-18 Nick Clifton <nickc@redhat.com>
792
793 Binutils 2.34 branch created.
794
795 2020-01-18 Nick Clifton <nickc@redhat.com>
796
797 Synchronize top level configure files with master version:
798
799 2020-01-01 Ben Elliston <bje@gnu.org>
800
801 * config.guess: Update copyright years.
802 * config.sub: Likewise.
803
804 2019-12-21 Ben Elliston <bje@gnu.org>
805
806 * config.guess (set_cc_for_build): Prevent multiple calls by
807 checking if $tmp is already set. We can't check CC_FOR_BUILD as
808 the user may set it externally. Thanks to Torbjörn Granlund for
809 the bug report.
810
811 2019-12-21 Torbjörn Granlund <tg@gmplib.org>
812
813 * config.guess (alpha:Linux:*:*): Guard against missing
814 /proc/cpuinfo by redirecting standard error to /dev/null.
815
816 2019-09-12 Daniel Bittman <danielbittman1@gmail.com>
817
818 * config.guess (*:Twizzler:*:*): New.
819 * config.sub (-twizzler*): New.
820
821 2019-07-24 Ben Elliston <bje@gnu.org>
822
823 * config.guess (mips:OSF1:*.*): Whitespace cleanup.
824
825 2019-06-30 Ben Elliston <bje@gnu.org>
826
827 * config.sub (case $os): Match nsk* and powerunix. Don't later
828 match nsk* and set os=nsk which removes the OS version number.
829
830 2019-06-30 Ben Elliston <bje@gnu.org>
831
832 * config.sub: Recognise os108*.
833
834 2019-06-26 Ben Elliston <bje@gnu.org>
835
836 * config.sub (hp300): Set $os to hpux.
837
838 2019-06-26 Ben Elliston <bje@gnu.org>
839
840 * config.sub (vsta): Move into alphabetical order.
841
842 2019-06-10 Ben Elliston <bje@gnu.org>
843
844 * config.guess (*:OS108:*:*): Recognise new OS.
845
846 2019-05-28 Ben Elliston <bje@gnu.org>
847
848 * config.guess (*:Darwin:*:*): Run xcode-select to determine if a
849 system compiler is installed. If not, do not run set_cc_for_build,
850 as the default cc will open a dialog box asking to install
851 Xcode. If no C compiler is available, guess based on uname -p and
852 uname -m.
853
854 2019-05-28 Ben Elliston <bje@gnu.org>
855
856 * config.guess (*:Darwin:*:*): Simplify UNAME_PROCESSOR.
857
858 2020-01-17 Simon Marchi <simon.marchi@efficios.com>
859
860 * Makefile.def: Add dependencies of all-gdbsupport on all-bfd.
861 * Makefile.in: Re-generate.
862
863 2020-01-14 Tom Tromey <tom@tromey.com>
864
865 * src-release.sh (GDB_SUPPORT_DIRS): Add gdbsupport.
866 * MAINTAINERS: Add gdbsupport.
867 * configure: Rebuild.
868 * configure.ac (configdirs): Add gdbsupport.
869 * gdbsupport: New directory, move from gdb/gdbsupport.
870 * Makefile.def (host_modules, dependencies): Add gnulib.
871 * Makefile.in: Rebuild.
872
873 2020-01-09 Aaron Merey <amerey@redhat.com>
874
875 * config/debuginfod.m4: New file. Add macro AC_DEBUGINFOD. Adds
876 new configure option --with-debuginfod.
877 * configure: Regenerate.
878 * configure.ac: Call AC_DEBUGINFOD.
879
880 2019-12-26 Christian Biesinger <cbiesinger@google.com>
881
882 * .gitignore: Add perf.data and perf.data.old.
883
884 2019-10-17 Sergio Durigan Junior <sergiodj@redhat.com>
885
886 * src-release.sh (GDB_SUPPORT_DIRS): Add libctf.
887
888 2019-10-17 Alan Modra <amodra@gmail.com>
889
890 PR 29
891 * src-release.sh (getver): Replace "head -1" with "head -n 1".
892
893 2019-07-30 Nick Alcock <nick.alcock@oracle.com>
894
895 * Makefile.def (host_modules): libctf is no longer no_install.
896 * Makefile.in: Regenerated.
897
898 2019-07-13 Nick Alcock <nick.alcock@oracle.com>
899
900 * Makefile.def (dependencies): all-ld depends on all-libctf.
901 * Makefile.in: Regenerated.
902
903 2019-09-09 Phil Blundell <pb@pbcl.net>
904
905 binutils 2.33 branch created
906
907 2019-08-19 Tom Tromey <tom@tromey.com>
908
909 * configure: Rebuild.
910 * configure.ac: Add --with-static-standard-libraries.
911
912 2019-08-09 Nick Clifton <nickc@redhat.com>
913
914 * libiberty: Sync with gcc. Bring in:
915 2019-08-08 Martin Liska <mliska@suse.cz>
916
917 PR bootstrap/91352
918 * lrealpath.c (is_valid_fd): New function.
919
920 2019-07-24 Martin Liska <mliska@suse.cz>
921
922 PR lto/91228
923 * simple-object-elf.c (simple_object_elf_copy_lto_debug_sections):
924 Find first '\0' starting from gnu_lto + 1.
925
926 2019-07-12 Ren Kimura <rkx1209dev@gmail.com>
927
928 * simple-object-elf.c (simple_object_elf_match): Check zero value shstrndx.
929 This fixes a Bug 90924.
930
931 2019-07-22 Martin Liska <mliska@suse.cz>
932
933 * simple-object-elf.c (simple_object_elf_copy_lto_debug_sections):
934 Do not search for gnu_lto_v1, but search for first '\0'.
935
936 2019-07-18 Eduard-Mihai Burtescu <eddyb@lyken.rs>
937
938 * cplus-dem.c: Include rust-demangle.h.
939 * rust-demangle.c: Include rust-demangle.h.
940 * rust-demangle.h: New file.
941
942 2019-05-31 Michael Forney <mforney@mforney.org>
943
944 * cp-demangle.c: Don't define CP_DYNAMIC_ARRAYS if __STDC_NO_VLA__
945 is non-zero.
946
947 2019-04-30 Ben L <bobsayshilol@live.co.uk>
948
949 * d-demangle.c (dlang_parse_assocarray): Correctly handle error result.
950 * testsuite/d-demangle-expected: Add testcase.
951
952 * d-demangle.c (dlang_parse_tuple): Correctly handle error result.
953 * testsuite/d-demangle-expected: Add testcase.
954
955 * d-demangle.c (dlang_parse_structlit): Correctly handle error result.
956 * testsuite/d-demangle-expected: Add testcase.
957
958 * d-demangle.c (dlang_parse_arrayliteral): Correctly handle error result.
959 * testsuite/d-demangle-expected: Add testcase.
960
961 * d-demangle.c (dlang_parse_integer): Fix stack underflow.
962 * testsuite/d-demangle-expected: Add testcase.
963
964 * cp-demangle (d_print_comp_inner): Guard against a NULL 'typed_name'.
965 * testsuite/demangle-expected: Add testcase.
966
967 * cp-demangle.c (d_encoding): Guard against NULL return values from
968 d_right (dc).
969 * testsuite/demangle-expected: Add testcase.
970
971 2019-04-29 Ben L <bobsayshilol@live.co.uk>
972
973 * cp-demangle.c (d_expression_1): Don't peek ahead unless the current
974 char is valid.
975 * testsuite/demangle-expected: Add testcase.
976
977 2019-04-10 Nick Clifton <nickc@redhat.com>
978
979 PR 89394
980 * cp-demangle.c (cplus_demangle_fill_name): Reject negative
981 lengths.
982 (d_count_templates_scopes): Replace num_templates and num_scopes
983 parameters with a struct d_print_info pointer parameter. Adjust
984 body of the function accordingly. Add recursion counter and check
985 that the recursion limit is not reached.
986 (d_print_init): Pass dpi parameter to d_count_templates_scopes.
987 Reset recursion counter afterwards, unless the recursion limit was
988 reached.
989
990 2019-07-13 Joel Brobecker <brobecker@adacore.com>
991
992 * src-release (getver): If $tool/gdbsupport/create-version.sh
993 exists, use that to determine the version number.
994
995 2019-06-21 Andreas Schwab <schwab@linux-m68k.org>
996
997 * src-release.sh (GDB_SUPPORT_DIRS): Add gnulib.
998
999 2019-06-14 Tom Tromey <tom@tromey.com>
1000
1001 * MAINTAINERS: Add gnulib.
1002 * gnulib: New directory, move from gdb/gnulib.
1003 * configure.ac (host_libs): Add gnulib.
1004 * configure: Rebuild.
1005 * Makefile.def (host_modules, dependencies): Add gnulib.
1006 * Makefile.in: Rebuild.
1007
1008 2019-06-03 Nick Clifton <nickc@redhat.com>
1009
1010 Revert:
1011 2019-05-29 Nick Clifton <nickc@redhat.com>
1012
1013 * configure.ac (noconfigdirs): Add libctf if the target does not use
1014 the ELF file format.
1015 * configure: Regenerate.
1016
1017 2019-05-29 Nick Clifton <nickc@redhat.com>
1018
1019 * src-release.sh (do_proto_toplev): Add libctf to list of
1020 directories that can be disabled.
1021
1022 2019-05-29 Nick Clifton <nickc@redhat.com>
1023
1024 * configure.ac (noconfigdirs): Add libctf if the target does not use
1025 the ELF file format.
1026 * configure: Regenerate.
1027
1028 2019-05-28 Nick Alcock <nick.alcock@oracle.com>
1029
1030 * Makefile.def (dependencies): configure-libctf depends on all-bfd
1031 and all its deps.
1032 * Makefile.in: Regenerated.
1033
1034 2019-05-28 Nick Alcock <nick.alcock@oracle.com>
1035
1036 * MAINTAINERS: Add libctf.
1037
1038 2019-05-28 Nick Alcock <nick.alcock@oracle.com>
1039
1040 * Makefile.def (host_modules): Add libctf.
1041 * Makefile.def (dependencies): Likewise.
1042 libctf depends on zlib, libiberty, and bfd.
1043 * Makefile.in: Regenerated.
1044 * configure.ac (host_libs): Add libctf.
1045 * configure: Regenerated.
1046
1047 2019-05-23 Jose E. Marchesi <jose.marchesi@oracle.com>
1048
1049 * config.guess: Synchronize with config project master sources.
1050 * config.sub: Likewise.
1051 * readline/support/config.guess: Likewise.
1052 * readline/support/config.sub: Likewise.
1053
1054 2019-04-10 Nick Clifton <nickc@redhat.com>
1055
1056 * libiberty: Sync with gcc. Bring in:
1057 2019-04-10 Nick Clifton <nickc@redhat.com>
1058
1059 PR 89394
1060 * cp-demangle.c (cplus_demangle_fill_name): Reject negative
1061 lengths.
1062 (d_count_templates_scopes): Replace num_templates and num_scopes
1063 parameters with a struct d_print_info pointer parameter. Adjust
1064 body of the function accordingly. Add recursion counter and check
1065 that the recursion limit is not reached.
1066 (d_print_init): Pass dpi parameter to d_count_templates_scopes.
1067 Reset recursion counter afterwards, unless the recursion limit was
1068 reached.
1069
1070 2018-06-24 Nick Clifton <nickc@redhat.com>
1071
1072 2.32 branch created.
1073
1074 2019-01-14 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
1075
1076 Merge from GCC:
1077 PR target/88535
1078 * config.guess: Import upstream version 2019-01-03.
1079 * config.sub: Import upstream version 2019-01-01.
1080
1081 2019-01-10 Nick Clifton <nickc@redhat.com>
1082
1083 * libiberty: Sync with gcc. Bring in:
1084 2019-01-09 Sandra Loosemore <sandra@codesourcery.com>
1085
1086 PR other/16615
1087
1088 * cp-demangle.c: Mechanically replace "can not" with "cannot".
1089 * floatformat.c: Likewise.
1090 * strerror.c: Likewise.
1091
1092 2018-12-22 Jason Merrill <jason@redhat.com>
1093
1094 Remove support for demangling GCC 2.x era mangling schemes.
1095 * cplus-dem.c: Remove cplus_mangle_opname, cplus_demangle_opname,
1096 internal_cplus_demangle, and all subroutines.
1097 (libiberty_demanglers): Remove entries for ancient GNU (pre-3.0),
1098 Lucid, ARM, HP, and EDG demangling styles.
1099 (cplus_demangle): Remove 'work' variable. Don't call
1100 internal_cplus_demangle.
1101
1102 2019-01-03 Дилян Палаузов <dilyan.palauzov@aegee.org>
1103
1104 * configure.ac: Don't configure readline if --with-system-readline is
1105 used.
1106 * configure: Re-generate.
1107
1108 2018-10-31 Joseph Myers <joseph@codesourcery.com>
1109
1110 Merge from GCC:
1111 PR bootstrap/82856
1112 * multilib.am: New file. From automake.
1113
1114 2018-09-12 Sergio Durigan Junior <sergiodj@redhat.com>
1115
1116 * src-release.sh (GDB_SUPPORT_DIRS): Add "contrib".
1117
1118 2018-07-16 Nick Clifton <nickc@redhat.com>
1119
1120 * src-release.sh (DEVO_SUPPORT): Add test-driver and ar-lib.
1121
1122 2018-07-06 Sebastian Huber <sebastian.huber@embedded-brains.de>
1123
1124 * config.sub: Sync with upstream version 2018-07-03.
1125
1126 2018-07-05 Sebastian Huber <sebastian.huber@embedded-brains.de>
1127
1128 * config.guess: Sync with upstream version 2018-06-26.
1129 * config.sub: Sync with upstream version 2018-07-02.
1130
1131 2018-06-29 Alexandre Oliva <oliva@adacore.com>
1132
1133 * configure.ac: Introduce support for @unless/@endunless.
1134 * Makefile.tpl (dep-kind): Rewrite with cond; return
1135 postbootstrap in some cases.
1136 (make-postboot-dep, postboot-targets): New.
1137 (dependencies): Do not output postbootstrap dependencies at
1138 first. Output non-target ones changed for configure to depend
1139 on stage_last @if gcc-bootstrap, and the original deps @unless
1140 gcc-bootstrap.
1141 * configure.in, Makefile.in: Rebuilt.
1142
1143 2018-06-24 Nick Clifton <nickc@redhat.com>
1144
1145 * configure: Regenerate.
1146
1147 2018-06-19 Simon Marchi <simon.marchi@ericsson.com>
1148
1149 * libtool.m4: Use AC_LANG_SOURCE.
1150 * configure.ac: Remove AC_PREREQ, use AC_LANG_SOURCE.
1151 * README-maintainer-mode: Update version requirements.
1152 * ar-lib: New file.
1153 * test-driver: New file.
1154 * configure: Re-generate.
1155
1156 2018-06-18 Eric Botcazou <ebotcazou@adacore.com>
1157
1158 * Makefile.def (fortran): Add check-target-libgomp-fortran.
1159 * Makefile.tpl (check-target-libgomp-fortran): New phony target.
1160 * Makefile.in: Regenerate.
1161
1162 * configure: Regenerate.
1163
1164 2018-06-18 Simon Marchi <simon.marchi@ericsson.com>
1165
1166 * configure.ac: Sync with GCC, remove MPX-related things.
1167
1168 2018-05-01 Nick Clifton <nickc@redhat.com>
1169
1170 * config.guess: Synchronize with config project master sources.
1171 * config.sub: Likewise.
1172
1173 2018-05-01 Francois H. Theron <francois.theron@netronome.com>
1174
1175 * configure.ac: Added "nfp" target.
1176 * configure: Regenerate.
1177
1178 2018-02-13 Maciej W. Rozycki <macro@mips.com>
1179
1180 * configure.ac <wasm32-*-*> (noconfigdirs): Add `ld'.
1181 * configure: Regenerate.
1182
1183 2018-01-30 Nick Clifton <nickc@redhat.com>
1184
1185 * src-release.sh (do_proto_toplev): Add patterns for more junk files
1186 to delete before creating the tarball.
1187
1188 2018-01-29 Nick Clifton <nickc@redhat.com>
1189
1190 * src-release.sh (do_proto_toplev): Strip patch remnant files from
1191 the sources before creating the tarball.
1192
1193 2018-01-13 Nick Clifton <nickc@redhat.com>
1194
1195 * src-release.sh: Update copyright notice. Change reference to devo
1196 to be a reference to root.
1197
1198 2018-01-10 Nick Clifton <nickc@redhat.com>
1199
1200 * config-ml.in: Sync with gcc sources.
1201 * config.guess: Likewise.
1202 * config.sub: Likewise.
1203 * configure.ac: Likewise.
1204 * configure: Regenerate.
1205
1206 2017-12-14 Nick Clifton <nickc@redhat.com>
1207
1208 * COPYING.LIBGLOSS: Update address of FSF in copyright notice.
1209
1210 2017-12-12 Stafford Horne <shorne@gmail.com>
1211
1212 * configure.ac: Remove logic adding gdb to noconfigsdirs for or1k.
1213 * configure: Regenerate.
1214
1215 2017-09-15 Nick Clifton <nickc@redhat.com>
1216
1217 * src-release.sh (LZIPPROG): New define. Provides the name of the
1218 lzip program.
1219 (do_lz): New function. Compresses a tarball using the lzip
1220 program.
1221 (do_compress): Add support for lzip compression.
1222 (usage): Mention -l option.
1223 (build_release): Support -l option to invoke lzip compression.
1224
1225 2017-09-15 Alan Modra <amodra@gmail.com>
1226
1227 * src-release.sh (do_proto_toplev): Revert last patch. Enable or
1228 disable binutils, gas, gdb, gold, gprof, ld, libdecnumber, readline,
1229 and sim depending on $tool and $support_files. Echo configure line.
1230
1231 2017-09-14 Matt Rice <ratmice@gmail.com>
1232
1233 * src-release.sh (do_proto_toplev): Enable gold during release process.
1234
1235 2017-04-13 Andrew Jenner <andrew@codesourcery.com>
1236
1237 * config.sub: Sync with master version in config project.
1238
1239 2017-04-03 Andrew Jenner <andrew@codesourcery.com>
1240
1241 * config.sub: Handle ia16 in $basic_machine.
1242
1243 bfd/
1244 * config.bfd: Handle ia16.
1245
1246 gas/
1247 * configure.tgt: Handle ia16.
1248
1249 ld/
1250 * configure.tgt: Handle ia16.
1251
1252 2017-03-22 Nick Clifton <nickc@redhat.com>
1253
1254 * config.sub: Sync with master version in config project.
1255 * config.guess: Likewise.
1256
1257 2017-01-23 Nick Clifton <nickc@redhat.com>
1258
1259 * configure.ac: Update year in copyright notice.
1260 Sync from FSF GCC mainline, bringing in the following patches.
1261 * Makefile.def: Likewise.
1262 * Makefile.tpl: Likewise.
1263 * configure: Regenerate.
1264 * Makefile.in: Regenerate.
1265
1266 2016-12-21 Jakub Jelinek <jakub@redhat.com>
1267
1268 * configure.ac: Don't bootstrap libmpx unless --with-build-config
1269 includes bootstrap-mpx.
1270
1271 2016-12-01 Matthias Klose <doko@ubuntu.com>
1272
1273 * configure.ac: Don't use pkg-config to check for bdw-gc.
1274
1275 2016-11-30 Matthias Klose <doko@ubuntu.com>
1276
1277 * Makefile.def: Remove reference to boehm-gc target module.
1278 * configure.ac: Include pkg.m4, check for --with-target-bdw-gc
1279 options and for the bdw-gc pkg-config module.
1280
1281 2016-11-15 Matthias Klose <doko@ubuntu.com>
1282
1283 * config-ml.in: Remove references to GCJ.
1284 * configure.ac: Likewise.
1285
1286 2016-09-30 Jakub Jelinek <jakub@redhat.com>
1287
1288 * configure.ac: Add target-libffi to target_libraries.
1289 Readd libgcj target disablings, modified to only target-libffi.
1290 Readd target addition of go to unsupported languages.
1291
1292 2016-09-30 Andrew Haley <aph@redhat.com>
1293
1294 * Makefile.def: Remove libjava.
1295 * Makefile.tpl: Likewise.
1296 * configure.ac: Likewise.
1297
1298 2016-09-26 Anton Kolesov <Anton.Kolesov@synopsys.com>
1299
1300 * configure.ac: Disable "sim" directory for arc*-*-*.
1301
1302 2016-09-12 Maciej W. Rozycki <macro@imgtec.com>
1303
1304 * configure.ac: Check for the minimum in-tree MPFR version
1305 handled.
1306
1307 2016-12-31 Alan Modra <amodra@gmail.com>
1308
1309 * config.sub: Import from upstream.
1310
1311 2016-12-08 Alan Modra <amodra@gmail.com>
1312
1313 * configure: Regenerate.
1314
1315 2016-12-02 Josh Conner <joshconner@google.com>
1316
1317 * configure.ac: Add fuchsia to targets that use ELF.
1318 * configure: Regenerated.
1319
1320 2016-11-07 Doug Evans <dje@google.com>
1321
1322 * config.sub: Sync with upstream version 2016-11-03.
1323 git://git.sv.gnu.org/config.git
1324 * config.guess: Sync with upstream version 2016-10-02.
1325
1326 2016-09-27 Simon Marchi <simon.marchi@polymtl.ca>
1327
1328 * .gitignore: Add archives and make stamps.
1329
1330 2016-07-20 Yan-Ting Lin <currygt52@gmail.com>
1331
1332 * configure.ac (nds32*-*-*): Remove entry to enable gdb.
1333 * configure: Regenerated.
1334
1335 2016-06-28 Walter Lee <walt@tilera.com>
1336
1337 * configure.ac (tilepro-*-*): Add gdb to noconfigdirs.
1338 * configure: Regenerate.
1339
1340 2016-05-28 Alan Modra <amodra@gmail.com>
1341
1342 * Makefile.tpl (configure): Depend on m4 files included.
1343 * Makefile.in: Regenerate.
1344
1345 2016-05-27 Nick Clifton <nickc@redhat.com>
1346
1347 * config.guess (Alpha OSF1): Fix typo introduced during the most
1348 recent synchronization update.
1349
1350 2016-05-23 Nick Clifton <nickc@redhat.com>
1351
1352 * Import these patches from the gcc mainline:
1353
1354 2016-05-16 Jakub Sejdak <jakub.sejdak@phoesys.com>
1355
1356 * config.guess: Import version 2016-04-02 (newest).
1357 * config.sub: Import version 2016-05-10 (newest).
1358
1359 2016-04-19 Nick Clifton <nickc@redhat.com>
1360
1361 * Import this patch from the GCC mainline:
1362
1363 2016-04-13 Segher Boessenkool <segher@kernel.crashing.org>
1364
1365 PR bootstrap/70173
1366 * Makefile.tpl (local-distclean): Delete the libcc1, gnattools,
1367 and gotools directories. Delete the stage_final file.
1368 * Makefile.in: Regenerate.
1369
1370 2016-03-17 Cary Coutant <ccoutant@gmail.com>
1371
1372 * configure.ac: Add mips and s390 to the gold target check.
1373 * configure: Regenerate.
1374
1375 2016-02-10 Nick Clifton <nickc@redhat.com>
1376
1377 Import these patches from the GCC mainline:
1378
1379 2016-01-12 Andris Pavenis <andris.pavenis@iki.fi>
1380
1381 * configure.ac: Enable LTO for DJGPP
1382 * configure: Regenerate
1383
1384 2016-01-24 Mikhail Maltsev <maltsevm@gmail.com>
1385
1386 PR bootstrap/69329
1387 * Makefile.tpl (BASE_FLAGS_TO_PASS): Add LSAN_OPTIONS.
1388 * Makefile.in: Regenerate.
1389
1390 2016-01-25 Aditya Kumar <aditya.k7@samsung.com>
1391 Sebastian Pop <s.pop@samsung.com>
1392
1393 * Makefile.in: Regenerate.
1394 * Makefile.tpl: Export ISLVER.
1395 * configure: Regenerate.
1396 * config/isl.m4: Detect isl-0.15.
1397
1398 2016-01-29 Sebastian Pop <s.pop@samsung.com>
1399
1400 * config/isl.m4: Add comments about isl-0.16.
1401 * configure: Regenerate.
1402
1403 2016-01-12 H.J. Lu <hongjiu.lu@intel.com>
1404
1405 Sync with GCC
1406 2015-11-26 David Edelsohn <dje.gcc@gmail.com>
1407
1408 * m4/libtool.m4 (export_symbols_cmds) [AIX]: Add global TLS "L"
1409 symbols.
1410
1411 2016-01-12 Bernd Edlinger <bernd.edlinger@hotmail.de>
1412
1413 PR bootstrap/69134
1414 * Makefile.def (mpfr): Disable assembler.
1415 * Makefile.in: Regenerate.
1416
1417 2016-01-11 Nick Clifton <nickc@redhat.com>
1418
1419 Import the following changes from the GCC mainline:
1420
1421 2015-11-13 Tsvetkova Alexandra <aleksandra.tsvetkova@intel.com>
1422
1423 * configure.ac: Enable libmpx by default.
1424 * configure: Regenerated.
1425
1426 2015-11-19 Martin Liska <mliska@suse.cz>
1427
1428 * .gitignore: Add .clang-format to ignored files.
1429 * Makefile.tpl: Add clang-format.
1430 * Makefile.in: Regenerate.
1431
1432 2015-12-01 Andreas Tobler <andreast@gcc.gnu.org>
1433
1434 PR libffi/65726
1435 * Makefile.def (lang_env_dependencies): Make libffi depend
1436 on cxx.
1437 * Makefile.in: Regenerate.
1438
1439 2015-12-02 Ian Lance Taylor <iant@google.com>
1440
1441 PR go/66147
1442 * Makefile.tpl (HOST_EXPORTS): Add XGCC_FLAGS_FOR_TARGET.
1443 * Makefile.in: Regenerate.
1444
1445 2015-12-17 Nathan Sidwell <nathan@acm.org>
1446
1447 * config/isl.m4 (ISL_CHECK_VERSION): Add gmp libs.
1448 * configure: Regenerate.
1449
1450 2015-12-17 Sebastian Pop <s.pop@samsung.com>
1451
1452 * Makefile.in: Replace ISL with isl.
1453 * Makefile.tpl: Same.
1454 * config/isl.m4: Same.
1455 * configure.ac: Same.
1456 * contrib/download_prerequisites: Same.
1457 * configure: Regenerate.
1458
1459 2016-01-01 Ben Elliston <bje@gnu.org>
1460
1461 * config.guess: Import version 2016-01-01.
1462 * config.sub: Likewise.
1463
1464 2015-11-20 Tristan Gingold <gingold@adacore.com>
1465
1466 * configure.ac: Add aarch64-*-darwin* and arm-*-darwin*.
1467 * configure: Regenerate.
1468
1469 2015-10-21 Nick Clifton <nickc@redhat.com>
1470
1471 PR gas/19109
1472 * configure.ac: Note the 'none' is an acceptable argument to
1473 --enable-compressed-debug-sections.
1474 * configure: Regenerate.
1475
1476 2015-10-20 H.J. Lu <hongjiu.lu@intel.com>
1477
1478 PR gas/19109
1479 * configure.ac: Add
1480 --enable-compressed-debug-sections={all,gas,gold,ld}.
1481 * configure: Regenerated.
1482
1483 2015-09-30 Nick Clifton <nickc@redhat.com>
1484
1485 Import the following patches from the GCC mainline:
1486
1487 2015-08-23 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
1488
1489 PR libfortran/54572
1490 * Makefile.def: Make libgfortran depend on libbacktrace.
1491 * Makefile.in: Regenerate.
1492
1493 2015-08-12 Tom de Vries <tom@codesourcery.com>
1494
1495 PR other/67092
1496 PR other/67098
1497 * configure.ac: Remove --with_host_libstdcxx support.
1498 * configure: Regenerate.
1499
1500 2015-08-10 Thomas Schwinge <thomas@codesourcery.com>
1501 Jakub Jelinek <jakub@redhat.com>
1502
1503 * configure.ac (noconfigdirs): Don't add "target-libgomp" for target
1504 nvptx*-*-*.
1505 * configure: Regenerate.
1506
1507 2015-08-07 H.J. Lu <hongjiu.lu@intel.com>
1508
1509 Sync with GCC
1510 2015-07-28 Ben Elliston <bje@gnu.org>
1511
1512 * config.sub, config.guess: Import from upstream.
1513
1514 2015-08-06 Yaakov Selkowitz <yselkowi@redhat.com>
1515
1516 * Makefile.def (libiconv): Define bootstrap=true.
1517 Mark pdf/html/info as missing.
1518 (configure-gcc): Depend on all-libiconv.
1519 (all-gcc): Ditto.
1520 (configure-libcpp): Ditto.
1521 (all-libcpp): Ditto.
1522 (configure-intl): Ditto.
1523 (all-intl): Ditto.
1524 * Makefile.in: Regenerate.
1525
1526 2015-07-27 H.J. Lu <hongjiu.lu@intel.com>
1527
1528 Sync with GCC
1529 2015-07-24 Michael Darling <darlingm@gmail.com>
1530
1531 PR other/66259
1532 * config-ml.in: Reflects renaming of configure.in to configure.ac
1533 * configure: Likewise
1534 * configure.ac: Likewise
1535
1536 2015-07-14 H.J. Lu <hongjiu.lu@intel.com>
1537
1538 * Makefile.in: Regenerated.
1539
1540 Sync with GCC
1541 2015-05-21 Jason Merrill <jason@redhat.com>
1542
1543 * Makefile.tpl: Update comments.
1544
1545 2015-04-22 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
1546
1547 * Makefile.tpl: Remove surplus whitespace throughout.
1548
1549 2015-03-25 Martin Liska <mliska@suse.cz>
1550 Yury Gribov <y.gribov@samsung.com>
1551
1552 * Makefile.tpl: Fix ln source location for vimrc file.
1553
1554 2015-07-14 H.J. Lu <hongjiu.lu@intel.com>
1555
1556 Sync with GCC
1557 2015-05-16 James Bowman <james.bowman@ftdichip.com>
1558
1559 * configure.ac: FT32 target added.
1560 * configure: Regenerate.
1561
1562 2015-07-14 H.J. Lu <hongjiu.lu@intel.com>
1563
1564 Sync with GCC
1565 2015-06-02 Jason Merrill <jason@redhat.com>
1566
1567 PR bootstrap/66319
1568 * configure.ac: Use -std=gnu++98.
1569
1570 2015-05-28 Mike Frysinger <vapier@gentoo.org>
1571
1572 * configure.ac (--vtable-verify): Use AS_HELP_STRING for help.
1573 * configure: Regenerate.
1574
1575 2015-05-11 Paulo Matos <paulo@matos-sorge.com>
1576
1577 * configure.ac: Fix typo.
1578 * configure: Regenerate.
1579
1580 2015-05-03 Matthias Klose <doko@ubuntu.com>
1581
1582 * configure.ac: Match $host configured with triplets.
1583 * configure: Regenerate.
1584
1585 2015-04-17 Jakub Jelinek <jakub@redhat.com>
1586
1587 PR bootstrap/62077
1588 * configure.ac (--enable-stage1-checking): Default to
1589 release,misc,gimple,rtlflag,tree,types if --disable-checking
1590 or --enable-checking is not specified and DEV-PHASE is not
1591 experimental.
1592 * configure: Regenerated.
1593
1594 2015-03-27 Uros Bizjak <ubizjak@gmail.com>
1595
1596 Install back PR target/47230 fix (Revert the revert).
1597
1598 2015-06-30 H.J. Lu <hongjiu.lu@intel.com>
1599
1600 * configure.ac (ospace_frag): Enable for i?86*-*-elfiamcu
1601 target.
1602 * configure: Regenerate.
1603
1604 2015-05-13 John David Anglin <dave.anglin@bell.net>
1605
1606 * configure.ac: Disable configuration of GDB for HPUX targets.
1607 * configure: Regenerate.
1608
1609 2015-05-01 H.J. Lu <hongjiu.lu@intel.com>
1610
1611 PR ld/18355
1612 * Makefile.def: Add extra_configure_flags to host zlib.
1613 * configure.ac (extra_host_zlib_configure_flags): New. Set
1614 to --enable-host-shared When bfd is to be built as shared
1615 library. AC_SUBST.
1616 * Makefile.in: Regenerated.
1617
1618 2015-04-15 Mike Frysinger <vapier@gentoo.org>
1619 Hans-Peter Nilsson <hp@axis.com>
1620
1621 Adjust src-release.sh for sim using the gdb create-version.sh.
1622 * src-release.sh (tar_compress): If there's a fifth parameter,
1623 use that in the getver call instead of $tool.
1624 (sim_release): Pass gdb as fifth parameter to tar_compress.
1625 (SIM_SUPPORT_DIRS): Add gdb/common/create-version.sh.
1626
1627 2015-04-14 Max Ostapenko <m.ostapenko@partner.samsung.com>
1628
1629 * Makefile.tpl (EXTRA_HOST_EXPORTS): New variables.
1630 (EXTRA_BOOTSTRAP_FLAGS): Likewise.
1631 (check-[+module+]): Add EXTRA_HOST_EXPORTS and EXTRA_BOOTSTRAP_FLAGS.
1632 * Makefile.in: Regenerate.
1633
1634 2015-04-01 H.J. Lu <hongjiu.lu@intel.com>
1635
1636 * configure.ac: Add --with-system-zlib.
1637 * configure: Regenerated.
1638
1639 2015-03-31 H.J. Lu <hongjiu.lu@intel.com>
1640
1641 * src-release.sh: Don't configure with --with-target-subdir=.
1642 --disable-multilib.
1643
1644 2015-03-31 H.J. Lu <hongjiu.lu@intel.com>
1645
1646 * src-release.sh (DEVO_SUPPORT): Replace src-release with
1647 src-release.sh.
1648
1649 2015-03-30 Ed Schouten <ed@nuxi.nl>
1650
1651 * config.sub: Update from upstream, to 2015-03-04 version.
1652 * config.guess: Likewise.
1653
1654 2015-03-30 H.J. Lu <hongjiu.lu@intel.com>
1655
1656 * Makefile.def (dependencies): Add all-zlib to all-bfd.
1657 * Makefile.in: Regenerated.
1658
1659 2015-03-28 H.J. Lu <hongjiu.lu@intel.com>
1660
1661 * src-release.sh (do_proto_toplev): Configure with --target
1662 --with-target-subdir and --disable-multilib.
1663 (BINUTILS_SUPPORT_DIRS): Add zlib.
1664 (GAS_SUPPORT_DIRS): Likewise.
1665 (GDB_SUPPORT_DIRS): Likewise.
1666 (SIM_SUPPORT_DIRS): Likewise.
1667
1668 2015-03-17 H.J. Lu <hongjiu.lu@intel.com>
1669
1670 * configure.ac (target_configdirs): Exclude target-zlib if
1671 target-libjava isn't built.
1672 * configure: Regenerated.
1673
1674 2015-03-17 H.J. Lu <hongjiu.lu@intel.com>
1675
1676 Sync with GCC
1677 2014-06-13 Thomas Schwinge <thomas@codesourcery.com>
1678
1679 * config-ml.in: Robustify ac_configure_args parsing.
1680
1681 2015-03-16 H.J. Lu <hongjiu.lu@intel.com>
1682
1683 * Makefile.def: Updated from GCC trunk.
1684 * Makefile.tpl: Likewise.
1685 * configure.ac: Likewise.
1686 * Makefile.in: Regenerated.
1687 * configure: Likewise.
1688
1689 2015-01-28 James Bowman <james.bowman@ftdichip.com>
1690
1691 * configure.ac: Add FT32 support.
1692 * configure: Regenerate.
1693
1694 2015-01-12 Anthony Green <green@moxielogic.com>
1695
1696 * configure.ac: Don't disable gprof for moxie.
1697 * configure: Rebuild.
1698
1699 2015-01-03 Andrew Pinski <apinski@cavium.com>
1700
1701 * Makefile.def (flags_to_pass): Pass OBJCOPY_FOR_TARGET also.
1702 * Makefile.tpl (HOST_EXPORTS): Add OBJCOPY_FOR_TARGET.
1703 (BASE_TARGET_EXPORTS): Add OBJCOPY.
1704 (OBJCOPY_FOR_TARGET): New variable.
1705 (EXTRA_TARGET_FLAGS): Add OBJCOPY.
1706 * Makefile.in: Regenerate.
1707 * configure.ac: Check for already installed target objcopy.
1708 Also GCC_TARGET_TOOL on objcopy.
1709 * configure: Regenerate.
1710
1711 2015-01-02 Hans-Peter Nilsson <hp@bitrange.com>
1712
1713 * config.sub: Update from upstream, to 2015-01-01 version.
1714 * config.guess: Ditto.
1715
1716 2014-12-06 Eric Botcazou <ebotcazou@adacore.com>
1717
1718 * config.sub: Update from upstream config repo.
1719
1720 2014-11-24 H.J. Lu <hongjiu.lu@intel.com>
1721
1722 * libtool.m4: Updated from GCC trunk.
1723
1724 2014-11-16 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1725
1726 * config.guess: Update from upstream config repo.
1727 * config.sub: Ditto.
1728
1729 2014-11-16 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1730
1731 * move-if-change: Update from upstream gnulib.
1732
1733 2014-11-16 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1734
1735 * compile: Sync with upstream Automake.
1736 * depcomp: Ditto.
1737 * install-sh: Ditto.
1738 * missing: Ditto.
1739 * mkinstalldirs: Ditto.
1740 * ylwrap: Ditto.
1741
1742 2014-10-15 Tristan Gingold <gingold@adacore.com>
1743
1744 * src-release.sh (do_proto_toplev): Configure with --target.
1745
1746 2014-10-03 Jing Yu <jingyu@google.com>
1747
1748 * configure.ac: Add aarch64 to list of targets that support gold.
1749 * configure: Regenerate.
1750
1751 2014-09-12 Andrew Bennett <andrew.bennett@imgtec.com>
1752
1753 * configure.ac: Add mips*-img-elf* target triple.
1754 * configure: Regenerate.
1755
1756 2014-09-06 Kuan-Lin Chen <kuanlinchentw@gmail.com>
1757 * configure: Disable gdb for nds32*-*-* until supported.
1758 * configure.ac: Disable gdb for nds32*-*-* until supported.
1759
1760 2014-09-05 Joel Brobecker <brobecker@adacore.com>
1761
1762 * configure: Regenerate.
1763
1764 2014-08-27 Will Newton <will.newton@linaro.org>
1765
1766 * src-release.sh: New file.
1767 * src-release: Remove file.
1768
1769 2014-07-27 Joel Sherrill <joel.sherrill@oarcorp.com>
1770
1771 GDB not supported for or1k*-*-rtems*
1772 * configure.ac (or1k*-*-rtems*): gdb not supported. The ordering
1773 of the stanzas results in this not being caught by or1k*-*-* later.
1774 * configure. Regenerated.
1775
1776 2014-07-25 Samuel Bronson <naesten@gmail.com>
1777
1778 * .gitattributes: New file for use with git-merge-changelog.
1779
1780 2014-07-21 Joel Sherrill <joel.sherrill@oarcorp.com>
1781
1782 Disable gdb for or1k*-*-* until supported
1783 * configure.ac (or1k*-*-*): Disable gdb.
1784 * configure: Regenerated.
1785
1786 2014-05-14 Sandra Loosemore <sandra@codesourcery.com>
1787
1788 * configure.ac (target_makefile_frag): Set for nios2-*-elf*.
1789 * configure: Regenerated.
1790
1791 2014-03-26 Jakub Jelinek <jakub@redhat.com>
1792
1793 PR sanitizer/56781
1794 * Makefile.def: Set bootstrap=true; for host fixincludes.
1795 * configure.ac: Don't bootstrap host fixincludes unless
1796 --with-build-config=bootstrap-{a,ub}san.
1797 * Makefile.in: Regenerated.
1798 * configure: Regenerated.
1799
1800 2014-03-21 Jakub Jelinek <jakub@redhat.com>
1801
1802 * configure.ac: Move BUILD_CONFIG set up earlier. Add
1803 --enable-vtable-verify option parsing. Don't add
1804 target-libsanitizer to bootstrap_target_libs unless
1805 --with-build-config=bootstrap-asan or
1806 --with-build-config=bootstrap-ubsan. Don't add target-libvtv
1807 to bootstrap_target_libs unless --enable-vtable-verify.
1808 * configure: Regenerated.
1809
1810 2014-03-07 Jakub Jelinek <jakub@redhat.com>
1811
1812 PR bootstrap/58572
1813 * Makefile.tpl (POSTSTAGE1_CXX_EXPORT): Use -isystem instead of
1814 -I for libstdc++-v3 includes if $(LEAN).
1815 * Makefile.in: Regenerated.
1816
1817 2014-02-24 Walter Lee <walt@tilera.com>
1818
1819 * configure.ac (tilepro-*-*) Change to tilepro*-*-*.
1820 (tilegx-*-*): Change to tilegx*-*-*.
1821 * configure: Regenerate.
1822
1823 2014-05-01 Richard Sandiford <rdsandiford@googlemail.com>
1824
1825 * config.sub, config.guess: Import from upstream.
1826
1827 2014-04-04 Eric Botcazou <ebotcazou@adacore.com>
1828
1829 PR bootstrap/60620
1830 * Makefile.def (dependencies): Make gnattools depend on libstdc++-v3.
1831 * Makefile.in: Regenerate.
1832
1833 2014-03-28 Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
1834
1835 * Makefile.def (dependencies): Make all-ld depend on all-binutils
1836 for WINDRES_FOR_TARGET in default-manifest.o rule.
1837 * Makefile.in: Regenerate.
1838
1839 2014-02-04 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
1840
1841 PR target/59788
1842 * ltmain.sh (opt_duplicate_compiler_generated_deps): Enable on
1843 *solaris2*.
1844
1845 2013-12-19 Keven Boell <keven.boell@intel.com>
1846
1847 * cp-namespace.c (cp_lookup_nested_symbol): Enable
1848 nested lookups for fortran modules.
1849 * dwarf2read.c (read_module): Add fortran module to
1850 the symbol table.
1851 (add_partial_symbol, add_partial_module): Add fortran
1852 module to the partial symbol table.
1853 (new_symbol_full): Create full symbol for fortran module.
1854 * f-exp.y (yylex): Add new module domain to be parsed.
1855 * symtab.h: New domain for fortran modules.
1856
1857 2013-12-19 Keven Boell <keven.boell@intel.com>
1858
1859 * f-exp.y (yylex): Add domain array to enable lookup
1860 in multiple domains. Loop over lookup domains and try
1861 to find requested symbol. Add STRUCT_DOMAIN to lookup
1862 domains to be able to query for user defined types.
1863
1864 2013-12-13 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
1865
1866 * configure.ac: Add user-friendly check for native x86_64-linux
1867 multilibs.
1868 * configure: Regenerate.
1869
1870 2013-11-23 Alan Modra <amodra@gmail.com>
1871
1872 * config.sub, config.guess: Import from upstream.
1873
1874 2013-11-07 Thomas Schwinge <thomas@codesourcery.com>
1875
1876 * Makefile.in: Regenerate.
1877
1878 * Makefile.tpl: Fix typo.
1879 * Makefile.in: Regenerate partially.
1880
1881 2013-11-04 Balaji V. Iyer <balaji.v.iyer@intel.com>
1882
1883 * configure.ac: Added libcilkrts to noconfig list when C++ is not
1884 supported.
1885 * configure: Regenerated.
1886
1887 2013-10-30 Jason Merrill <jason@redhat.com>
1888
1889 * Makefile.tpl (STAGE1_CONFIGURE_FLAGS): Pass
1890 --disable-build-format-warnings.
1891
1892 2013-10-29 Balaji V. Iyer <balaji.v.iyer@intel.com>
1893
1894 * Makefile.def: Add libcilkrts to target_modules. Make libcilkrts
1895 depend on libstdc++ and libgcc.
1896 * configure: Regenerate.
1897 * configure.ac: Added libcilkrts to target binaries. Also, restrict
1898 libcilkrts for POSIX and i*86, and x86_64 architectures.
1899 * Makefile.in: Added libcilkrts related fields to support building it.
1900
1901 2013-10-26 Jeff Law <law@redhat.com>
1902
1903 * Makefile.def (target_modules): Remove libmudflap
1904 (languages): Remove check-target-libmudflap).
1905 * Makefile.in: Rebuilt.
1906 * Makefile.tpl (check-target-libmudflap-c++): Remove.
1907 * configure.ac (target_libraries): Remove target-libmudflap.
1908 Remove checks which disabled libmudflap on some systems.
1909 * configure: Rebuilt.
1910 * libmudflap: Directory removed.
1911
1912 2013-10-16 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1913
1914 * configure.ac: Update from GCC.
1915 * configure: Regenerate.
1916
1917 2013-10-15 Hans-Peter Nilsson <hp@axis.com>
1918
1919 * src-release (do-proto-toplevel): Support subdir-path-prefixed
1920 files in SUPPORT_FILES.
1921 (SIM_SUPPORT_DIRS): New variable.
1922 (sim.tar.bz2): New rule.
1923
1924 2013-10-08 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1925
1926 * configure.ac: Update from GCC.
1927 * configure: Regenerate.
1928
1929 2013-10-01 Jeff Johnston <jjohnstn@redhat.com>
1930
1931 * COPYING.NEWLIB: Update with new copyright.
1932
1933 2013-09-21 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1934
1935 * configure.ac: Update from GCC.
1936 * configure: Regenerate.
1937
1938 2013-09-20 Alan Modra <amodra@gmail.com>
1939
1940 * libtool.m4 (_LT_ENABLE_LOCK <ld -m flags>): Remove non-canonical
1941 ppc host match. Support little-endian powerpc linux hosts.
1942
1943 2013-08-16 Joel Brobecker <brobecker@adacore.com>
1944
1945 * src-release (VER): When using $(TOOL)/common/create-version.sh,
1946 strip the "-cvs" suffix from the version number if present.
1947
1948 2013-08-12 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1949
1950 * configure.ac: Sync with GCC repo.
1951 * Makefile.def: Ditto.
1952 * configure: Regenerate.
1953 * Makefile.in: Ditto.
1954
1955 2013-07-22 Joel Brobecker <brobecker@adacore.com>
1956
1957 * src-release (VER): Use $(TOOL)/common/create-version.sh
1958 if it exists.
1959
1960 2013-06-22 Richard Sandiford <rdsandiford@googlemail.com>
1961
1962 * configure.ac (mips*-*-bsd*, mips*-*-ultrix*, mips*-*-osf*)
1963 (mips*-*-ecoff*, mips*-*-pe*, mips*-*-irix* [v4 and earlier])
1964 (mips*-*-lnews*, mips*-*-riscos*): Add gas and ld to noconfigdirs.
1965 * configure: Regenerate.
1966
1967 2013-06-01 George Thomas <george.thomas@atmel.com>
1968
1969 * include/opcode/avr.h: Rename AVR_ISA_XCH to AVR_ISA_RMW. Remove
1970 from AVR_ISA_XMEGA and add new AVR_ISA_XMEGAU
1971
1972 2013-05-06 Sandra Loosemore <sandra@codesourcery.com>
1973
1974 * COPYING.NEWLIB: Add Altera Corporation copyright.
1975
1976 2013-04-29 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1977
1978 * config.guess: Update from config repo.
1979 * config.sub: Ditto.
1980
1981 2013-04-22 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1982
1983 * Makefile.def: Sync with GCC.
1984 * Makefile.in: Regenerate.
1985
1986 2013-04-22 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1987
1988 * configure.ac: Sync with GCC.
1989 * configure: Regenerate.
1990
1991 2013-03-22 Mike Frysinger <vapier@gentoo.org>
1992
1993 * src-release (VER): Change bfd/configure.in sed to use the new
1994 `bfd/configure --version` output.
1995
1996 2013-02-15 Yufeng Zhang <yufeng.zhang@arm.com>
1997
1998 * configure.ac: Sync with GCC repo.
1999 * configure: Ditto.
2000
2001 2013-02-05 Ian Lance Taylor <iant@google.com>
2002
2003 PR go/55969
2004 * configure.ac: Disable libgo on some systems where it does not
2005 work.
2006 * configure: Rebuild.
2007
2008 2013-02-05 Alan Modra <amodra@gmail.com>
2009
2010 * configure: Regenerate after syncing config/.
2011
2012 2013-01-15 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2013
2014 * configure.ac: Sync with GCC repo.
2015 * configure: Ditto.
2016 * Makefile.def: Ditto.
2017 * Makefile.in: Ditto.
2018
2019 2013-01-11 Joel Brobecker <brobecker@adacore.com>
2020
2021 Sync with GCC, merge:
2022
2023 2013-01-09 Jason Merrill <jason@redhat.com>
2024
2025 * .gitignore: Import from gdb repository.
2026
2027 2013-01-11 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2028
2029 * config.sub: Update from config repo.
2030
2031 2013-01-11 Eric Botcazou <ebotcazou@adacore.com>
2032
2033 * Makefile.tpl (BOOT_ADAFLAGS): Remove -gnata.
2034 * Makefile.in: Regenerate.
2035
2036 2013-01-09 H.J. Lu <hongjiu.lu@intel.com>
2037
2038 * Makefile.def (configure-gcc): Depend on all-gmp.
2039 (all-gcc): Remove dependency on all-gmp.
2040 * Makefile.in: Regenerated.
2041
2042 2013-01-08 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2043
2044 * config.guess: Update from config repo.
2045 * config.sub: Ditto.
2046
2047 2013-01-07 Jeff Johnston <jjohnstn@redhat.com>
2048
2049 * COPYING.LIBGLOSS: Remove license for mips/lsi33k-stub.h which no longer
2050 exists and replace the new bfin license in its location.
2051
2052 2013-01-07 H.J. Lu <hongjiu.lu@intel.com>
2053
2054 PR gas/14899
2055 * Makefile.def (dependencies): Make all-binutils, all-gprof,
2056 all-ld and all-gold depend on all-gas.
2057 * Makefile.in: Regenerated.
2058
2059 2012-12-29 Ben Elliston <bje@gnu.org>
2060
2061 * config.guess: Update to 2012-12-29 version.
2062 * config.sub: Likewise.
2063
2064 2012-12-20 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2065
2066 * Makefile.def (install-target-libgo): Depend on
2067 install-target-libatomic. Merged from GCC repo.
2068 * Makefile.in: Regenerate.
2069
2070 2012-12-17 Jeff Johnston <jjohnstn@redhat.com>
2071
2072 * COPYING.LIBGLOSS: Add license for bfin libgloss.
2073
2074 2012-12-16 Thomas Schwinge <thomas@codesourcery.com>
2075
2076 * configure.ac (ENABLE_GOLD): Consider *-*-gnu* targets ELF.
2077 * configure: Regenerate.
2078
2079 2012-12-11 H.J. Lu <hongjiu.lu@intel.com>
2080
2081 * Makefile.def (target_modules): Add bootstrap=true and
2082 raw_cxx=true to libsanitizer.
2083 * configure.ac (bootstrap_target_libs): Add libsanitizer.
2084 * Makefile.in: Regenerated.
2085 * configure: Likewise.
2086
2087 2012-12-08 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2088
2089 * config.sub: Merge from config repo.
2090
2091 2012-11-30 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2092
2093 * configure.ac: Merge from GCC.
2094 * Makefile.tpl: Ditto.
2095 * Makefile.in: Ditto.
2096 * configure: Ditto.
2097
2098 2012-11-28 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2099
2100 * configure.ac (noconfigdirs): Merge from GCC.
2101 * configure: Regenerate.
2102
2103 2012-11-19 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2104
2105 * config.sub (arm): Merge from upstream: Handle armv[6-8] targets.
2106
2107 2012-11-14 Roland McGrath <mcgrathr@google.com>
2108
2109 * configure.ac (ENABLE_GOLD): Consider *-*-nacl* targets ELF.
2110 * configure: Regenerate.
2111
2112 2012-11-13 Richard Henderson <rth@redhat.com>
2113
2114 * configure.ac: Move libsanitizer logic to subdirectory.
2115 * configure: Regenerate.
2116
2117 2012-11-13 Dodji Seketeli <dodji@redhat.com>
2118
2119 * configure.ac: Enable libsanitizer just on x86 linux for now.
2120 * configure: Re-generate.
2121
2122 2012-11-13 David Edelsohn <dje.gcc@gmail.com>
2123
2124 * configure.ac: Merge libquadmath sections.
2125 * configure: Regenerate.
2126
2127 2012-11-12 Wei Mi <wmi@google.com>
2128
2129 * configure.ac: Add libsanitizer to target_libraries.
2130 * Makefile.def: Ditto.
2131 * configure: Regenerate.
2132 * Makefile.in: Regenerate.
2133
2134 2012-11-03 H.J. Lu <hongjiu.lu@intel.com>
2135
2136 * configure: Regenerated.
2137
2138 2012-11-03 Robert Mason <rbmj@verizon.net>
2139
2140 * configure.ac: add --disable-libstdcxx configure option
2141 and handle defaulted state only for VxWorks, ARM-wince-pe and AVR.
2142
2143 2012-10-24 Corinna Vinschen <corinna@vinschen.de>
2144
2145 * configure.ac (FLAGS_FOR_TARGET,target=cygwin): Fix for building
2146 against Mingw64 w32api.
2147 * configure: Regenerate.
2148
2149 2012-10-23 Eric Botcazou <ebotcazou@adacore.com>
2150
2151 PR bootstrap/54820
2152 * configure.ac (have_static_libs): Force 'no' for GCC version < 4.5.
2153 * configure: Regenerate.
2154
2155 2012-10-22 Eric Botcazou <ebotcazou@adacore.com>
2156
2157 PR bootstrap/54820
2158 * Makefile.tpl (STAGE1_FLAGS_TO_PASS): New variable.
2159 (all-[+prefix+][+module+]): Pass stage1_args to sub-makes.
2160 (all-stage[+id+]-[+prefix+][+module+]): Likewise, if prev is false.
2161 (clean-stage[+id+]-[+prefix+][+module+]): Likewise, if prev is false.
2162 (host_modules): Set stage1_args to STAGE1_FLAGS_TO_PASS.
2163 * Makefile.in: Regenerate.
2164 * configure.ac (have_static_libs): New variable and associated check.
2165 (stage1-ldflags): Move to after stage1_libs and set to -static-libstdc++
2166 -static-libgcc if stage1_libs is empty and have_static_libs is yes.
2167 * configure: Regenerate.
2168
2169 2012-10-10 David Holsgrove <david.holsgrove@xilinx.com>
2170
2171 * config.guess, config.sub: Include updated version from
2172 config-patches. Adds microblaze little endian support.
2173
2174 2012-09-28 Ian Lance Taylor <iant@google.com>
2175
2176 * Makefile.def: Make all-target-libgo depend on
2177 all-target-libbacktrace.
2178 * Makefile.in: Rebuild.
2179
2180 2012-09-26 Ian Lance Taylor <iant@google.com>
2181
2182 * Makefile.def: Make all-gcc depend on all-libbacktrace.
2183 * Makefile.in: Rebuild.
2184
2185 2012-09-06 Diego Novillo <dnovillo@google.com>
2186
2187 * configure.ac: Bump minimum GMP version to 4.2.3.
2188 * configure: Re-generate.
2189
2190 2012-09-05 Georg-Johann Lay <avr@gjlay.de>
2191
2192 PR target/54461
2193 * configure.ac (noconfigdirs,target=avr-*-*): Add target-newlib,
2194 target-libgloss if not configured --with-avrlibc=no.
2195 * configure: Regenerate.
2196
2197 2012-09-04 Jason Merrill <jason@redhat.com>
2198
2199 * configure.ac: Fix --enable-languages=all.
2200
2201 2012-09-03 Richard Guenther <rguenther@suse.de>
2202
2203 PR bootstrap/54138
2204 * configure.ac: Re-organize ISL / CLOOG checks to allow
2205 disabling with either --without-isl or --without-cloog.
2206 * configure: Regenerated.
2207
2208 2012-09-03 Georg-Johann Lay <avr@gjlay.de>
2209
2210 * configure.ac (noconfigdirs,target=avr): Add target-libquadmath.
2211 * configure: Regenerate.
2212
2213 2012-09-21 Steve Ellcey <sellcey@mips.com>
2214
2215 * configure.ac: Add mips*-mti-elf* target.
2216 * configure: Regenerate.
2217
2218 2012-09-19 Ian Lance Taylor <iant@google.com>
2219
2220 * configure.ac (host_libs): Add libbacktrace.
2221 (target_libraries): Add libbacktrace.
2222 * Makefile.def (host_modules): Add libbacktrace.
2223 (target_modules): Likewise.
2224 * configure, Makefile.in: Rebuild.
2225
2226 2012-09-15 Jiong Wang <jiwang@tilera.com>
2227
2228 * configure.ac (ENABLE_GOLD): support tilegx*
2229 * configure: rebuild
2230
2231 2012-09-14 David Edelsohn <dje.gcc@gmail.com>
2232
2233 PR target/38607
2234 Merge upstream change.
2235 * libtool.m4 (_LT_COMPILER_PIC): Add -fPIC to GCC and GXX for AIX.
2236
2237 * configure.ac: Add target-libquadmath to noconfigdirs for AIX.
2238 Add libgomp*.o to compare_exclusions for AIX.
2239 * configure: Regenerate.
2240
2241 2012-08-26 H.J. Lu <hongjiu.lu@intel.com>
2242
2243 PR binutils/4970
2244 * Makefile.def (host_modules): Rmove lib_path=.libs from bfd
2245 and opcodes.
2246 * Makefile.in: Regenerated.
2247
2248 2012-08-14 Diego Novillo <dnovillo@google.com>
2249
2250 Merge from cxx-conversion branch.
2251
2252 * Makefile.tpl (STAGE[+id+]_CXXFLAGS): Remove
2253 POSTSTAGE1_CONFIGURE_FLAGS.
2254 * Makefile.in: Regenerate.
2255 * configure.ac (ENABLE_BUILD_WITH_CXX): Remove. Update all users.
2256 Force C++ when bootstrapping.
2257 * configure: Regenerate.
2258
2259 2012-07-06 Richard Guenther <rguenther@suse.de>
2260
2261 * Makefile.def (cloog): Pass $(HOST_GMPINC) and $(HOST_ISLINC)
2262 as CPPFLAGS, pass path to built gmp as LDFLAGS, always use
2263 --with-gmp=system.
2264 * Makefile.in: Regenerated.
2265 * configure: Likewise.
2266
2267 2012-07-06 Richard Guenther <rguenther@suse.de>
2268
2269 * configure.ac (extra_isl_gmp_configure_flags): Initialize and subst.
2270 * Makefile.def (isl): Use extra_isl_gmp_configure_flags and
2271 supply V=1 as extra_make_flags.
2272 * configure: Regenerated.
2273 * Makefile.in: Likewise.
2274
2275 2012-07-03 Richard Guenther <rguenther@suse.de>
2276
2277 * Makfile.def (isl): Remove not necessary extra_exports and
2278 extra_make_flags.
2279 (cloog): Use $$CPPFLAGS instead of ${CPPFLAGS}.
2280 * Makefile.in: Regenerated.
2281
2282 2012-07-03 Richard Guenther <rguenther@suse.de>
2283
2284 * Makefile.def (cloog): Add V=1 to extra_make_flags.
2285 * configure.ac: If either the ISL or the CLooG check failed
2286 do not try to build in-tree versions.
2287 * Makefile.in: Regenerated.
2288 * configure: Regenerated.
2289
2290 2012-07-02 Richard Guenther <rguenther@suse.de>
2291 Michael Matz <matz@suse.de>
2292 Tobias Grosser <tobias@grosser.es>
2293 Sebastian Pop <sebpop@gmail.com>
2294
2295 * Makefile.def: Add ISL host module, remove PPL host module.
2296 Adjust ClooG host module to use the proper ISL.
2297 * Makefile.tpl: Pass ISL include flags instead of PPL ones.
2298 * configure.ac: Include config/isl.m4. Add ISL host library,
2299 remove PPL. Remove PPL configury, add ISL configury, adjust
2300 ClooG configury.
2301 * Makefile.in: Regenerated.
2302 * configure: Likewise.
2303
2304 2012-07-02 Richard Guenther <rguenther@suse.de>
2305
2306 Merge from graphite branch
2307 2011-07-21 Tobias Grosser <tobias@grosser.es>
2308
2309 * configure: Regenerated.
2310 * config/cloog.m4: Remove support for CLooG-ppl and CLooG-parma,
2311 both cloog.org and legacy versions. The only supported version will
2312 be CLooG with the isl backend.
2313
2314 2011-07-21 Tobias Grosser <tobias@grosser.es>
2315
2316 * configure: Regenerated.
2317 * configure.ac: Require cloog isl 0.17.0
2318
2319 2011-07-21 Tobias Grosser <tobias@grosser.es>
2320
2321 * configure: Regenerated.
2322 * config/cloog.m4: Do not define CLOOG_ORG
2323
2324 2012-06-29 Steven Bosscher <steven@gcc.gnu.org>
2325
2326 * configure.ac: Skip C if explicitly selected.
2327 * configure: Regenerate.
2328
2329 2012-06-28 Christophe Lyon <christophe.lyon@st.com>
2330
2331 * configure.ac (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Make sure
2332 they contain -O2.
2333 * configure: Regenerate.
2334
2335 2012-06-20 Jason Merrill <jason@redhat.com>
2336
2337 * Makefile.tpl (check-target-libgomp-c++): New.
2338 (check-target-libitm-c++): New.
2339 * Makefile.def (c++): Add them.
2340 * Makefile.in: Regenerate.
2341
2342 2012-05-16 Olivier Hainque <hainque@adacore.com>
2343
2344 * Makefile.tpl (gcc-no-fixedincludes): Rename into ...
2345 (gcc-install-no-fixedincludes): Now forwarder to local target in gcc/
2346 (install-no-fixedincludes): Adjust accordingly.
2347 * Makefile.in: Regenerate.
2348
2349 2012-05-09 Nick Clifton <nickc@redhat.com>
2350 Paul Smith <psmith@gnu.org>
2351
2352 PR bootstrap/50461
2353 * configure.ac (mpfr-dir): When using in-tree MPFR sources
2354 allow for the fact that from release v3.1.0 of MPFR the source
2355 files were moved into a src sub-directory.
2356 * configure: Regenerate.
2357
2358 2012-05-07 Janne Blomqvist <jb@gcc.gnu.org>
2359
2360 * configure.ac: Bump minimum MPFR version to 2.4.0.
2361 * configure: Regenerated.
2362
2363 2012-05-01 Richard Henderson <rth@redhat.com>
2364
2365 * Makefile.def (libatomic): New target_module.
2366 * configure.ac (target_libraries): Add libatomic.
2367 (noconfigdirs): Check if libatomic is supported.
2368 * Makefile.in, configure: Rebuild.
2369
2370 2012-05-15 H.J. Lu <hongjiu.lu@intel.com>
2371
2372 Merge upstream change
2373 * libtool.m4 (_LT_ENABLE_LOCK): Support x32.
2374
2375 2011-11-21 Andreas Tobler <andreast@fgznet.ch>
2376
2377 * libtool.m4: Additional FreeBSD 10 fixes.
2378
2379 2012-06-28 Christophe Lyon <christophe.lyon@st.com>
2380
2381 * configure.ac (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Make sure
2382 they contain -O2.
2383 * configure: Regenerate.
2384
2385 2012-05-14 Catherine Moore <clm@codesourcery.com>
2386
2387 * NEWS: Mention PowerPC VLE port.
2388
2389 2012-05-11 Mike Frysinger <vapier@gentoo.org>
2390
2391 * MAINTAINERS (config/): Move to intl/ section.
2392 (compile; depcomp; install-sh; missing; ylwrap): Likewise.
2393
2394 2012-05-09 Nick Clifton <nickc@redhat.com>
2395 Paul Smith <psmith@gnu.org>
2396
2397 PR bootstrap/50461
2398 * configure.ac (mpfr-dir): When using in-tree MPFR sources
2399 allow for the fact that from release v3.1.0 of MPFR the source
2400 files were moved into a src sub-directory.
2401 * configure: Regenerate.
2402
2403 2012-05-02 Roland McGrath <mcgrathr@google.com>
2404
2405 * configure.ac (ENABLE_GOLD): Consider *-*-nacl* targets ELF.
2406 * configure: Regenerate.
2407
2408 2012-04-25 Joel Brobecker <brobecker@adacore.com>
2409
2410 * config.sub: Update to 2012-04-18 version from official repo.
2411
2412 2012-03-19 Tristan Gingold <gingold@adacore.com>
2413
2414 * configure.ac (ia64*-*-*vms*): Add support for ld.
2415 * configure: Regenerate.
2416
2417 2012-03-14 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2418
2419 * configure.ac (enable_libgomp): Remove *-*-irix6*.
2420 (unsupported_languages): Remove mips-sgi-irix6.*.
2421 (noconfigdirs): Don't add ${libgcj} for mips*-*-irix6*.
2422 (with_stabs): Remove.
2423 * configure: Regenerate.
2424
2425 2012-03-12 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2426
2427 * configure.ac (enable_libgomp): Remove *-*-osf*.
2428 (with_stabs): Remove alpha*-*-osf*.
2429 * configure: Regenerate.
2430
2431 2012-03-09 Jeff Johnston <jjohnstn@redhat.com>
2432
2433 * COPYING.NEWLIB: Modify DJ Delorie license to include
2434 modification rights in clause as permitted by DJ Delorie.
2435 * COPYING.LIBGLOSS: Ditto.
2436
2437 2012-03-09 Jeff Johnston <jjohnstn@redhat.com>
2438
2439 * COPYING.NEWLIB: Remove two unused licenses.
2440
2441 2012-03-05 Tristan Gingold <gingold@adacore.com>
2442
2443 * configure.ac: Enable gdb and readline for ia64*-*-*vms*.
2444 * configure: Regenerate.
2445
2446 2012-02-21 Joern Rennecke <joern.rennecke@embecosm.com>
2447
2448 * COPYING.NEWLIB: Add Adapteva notice.
2449 * COPYING.LIBGLOSS: Add Adapteva notice.
2450
2451 2011-12-18 Eric Botcazou <ebotcazou@adacore.com>
2452
2453 * configure: Regenerate.
2454
2455 2011-12-15 Jeff Johnston <jjohnstn@redhat.com>
2456
2457 * COPYING.LIBGLOSS: Add GPL with exception license.
2458
2459 2011-11-09 Roland McGrath <mcgrathr@google.com>
2460
2461 * configure.ac: Add tool checks for READELF and READELF_FOR_TARGET.
2462 * configure: Rebuild.
2463 * Makefile.def (flags_to_pass): Add READELF_FOR_TARGET.
2464 * Makefile.tpl (READELF, READELF_FOR_TARGET): New variables.
2465 (HOST_EXPORTS): Add READELF, READELF_FOR_TARGET.
2466 (BASE_FLAGS_TO_PASS): Add READELF_FOR_TARGET.
2467 (BASE_TARGET_EXPORTS, EXTRA_HOST_FLAGS, EXTRA_TARGET_FLAGS):
2468 Add READELF.
2469 * Makefile.in: Rebuild.
2470
2471 2011-11-08 Richard Henderson <rth@redhat.com>
2472
2473 * configure.ac: Test for libitm directory present first.
2474
2475 * configure.ac: Adjust srcdir for running libitm/configure.tgt.
2476
2477 * configure.ac: Test libitm/configure.tgt to disable libitm.
2478 * configure: Rebuild.
2479
2480 2011-11-02 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2481
2482 * Makefile.tpl (EXTRA_GCC_FLAGS): Remove LIBGCC2_CFLAGS,
2483 LIBGCC2_DEBUG_CFLAGS, LIBGCC2_INCLUDES.
2484 * Makefile.in: Regenerate.
2485
2486 2011-11-01 DJ Delorie <dj@redhat.com>
2487
2488 * configure.ac (rl78-*-*) New case.
2489 * configure: Regenerate.
2490
2491 2011-11-01 DJ Delorie <dj@redhat.com>
2492
2493 * config.sub: Update to version 2011-10-29 (added rl78)
2494
2495 2011-10-27 Nick Clifton <nickc@redhat.com>
2496
2497 * config.sub: Import these changes from the config project:
2498
2499 2011-10-08 Joern Rennecke <joern.rennecke@embecosm.com>
2500 Ben Elliston <bje@gnu.org>
2501
2502 * config.sub (epiphany): New.
2503
2504 2011-09-09 Linas Vepstas <linasvepstas@gmail.com>
2505 Ben Elliston <bje@gnu.org>
2506
2507 * config.sub (hexagon, hexagon-*): New.
2508
2509 2011-08-23 Roland McGrath <mcgrathr@google.com>
2510
2511 * config.sub: Rename 32eb to be32, 32el to le32, 64el to le64, and
2512 64eb to be64.
2513
2514 2011-08-16 Roland McGrath <mcgrathr@google.com>
2515
2516 * config.sub (32eb, 32el, 64eb, 64el): New (pseudo-)CPUs.
2517 (nacl): Grok as alias for 32el-unknown-nacl.
2518
2519 2011-08-19 Joel Brobecker <brobecker@adacore.com>
2520
2521 * src-release (GDB_SUPPORT_DIRS): Add 'cpu'.
2522
2523 2011-08-14 Yao Qi <yao@codesourcery.com>
2524
2525 Merge from gcc:
2526
2527 2011-08-14 Yao Qi <yao@codesourcery.com>
2528 * configure.ac (tic6x-*-*): Remove gdb from noconfigdirs.
2529 * configure: Regenerate.
2530
2531 2011-07-26 Ian Lance Taylor <iant@google.com>
2532
2533 Merge from gcc:
2534
2535 2011-07-26 Ian Lance Taylor <iant@google.com>
2536 * configure.ac: Set have_compiler based on whether gcc directory
2537 exists, rather than on whether gcc is in configdirs.
2538 * configure: Rebuild.
2539
2540 2011-07-20 David Edelsohn <dje.gcc@gmail.com>
2541 * Makefile.tpl (POSTSTAGE1_CONFIGURE_FLAGS): Add libsupc++ to
2542 link directories.
2543 * Makefile.in: Rebuild.
2544
2545 2011-07-20 Ian Lance Taylor <iant@google.com>
2546 PR bootstrap/49787
2547 * configure.ac: Move --enable-bootstrap handling earlier in file.
2548 If --enable-bootstrap and either --enable-build-with-cxx or
2549 --enable-build-poststage1-with-cxx, enable C++ automatically.
2550 * configure: Rebuild.
2551
2552 2011-07-19 Ian Lance Taylor <iant@google.com>
2553 * configure.ac: Add --enable-build-poststage1-with-cxx. If set,
2554 make C++ a boot_language. Set and substitute
2555 POSTSTAGE1_CONFIGURE_FLAGS.
2556 * Makefile.tpl (POSTSTAGE1_CONFIGURE_FLAGS): New variable.
2557 (STAGE[+id+]_CONFIGURE_FLAGS): Add $(POSTSTAGE1_CONFIGURE_FLAGS).
2558 * configure, Makefile.in: Rebuild.
2559
2560 2011-07-16 Jason Merrill <jason@redhat.com>
2561 * Makefile.def (language=c++): Add check-c++0x and
2562 check-target-libmudflap-c++.
2563 * Makefile.tpl (check-target-libmudflap-c++): New.
2564 * Makefile.in: Regenerate.
2565
2566 2011-07-16 Matthias Klose <doko@ubuntu.com>
2567 * Makefile.tpl (EXTRA_CONFIGARGS_LIBJAVA): Define.
2568 * Makefile.def (target_modules/libjava): Pass
2569 $(EXTRA_CONFIGARGS_LIBJAVA).
2570 * configure.ac: Pass --disable-static in EXTRA_CONFIGARGS_LIBJAVA,
2571 if not configured with --enable-static-libjava.
2572 * Makefile.in: Regenerate.
2573 * configure: Likewise.
2574
2575 2011-06-22 Hans-Peter Nilsson <hp@axis.com>
2576 PR regression/47836
2577 PR bootstrap/23656
2578 PR other/47733
2579 PR bootstrap/49247
2580 PR c/48825
2581 * configure.ac (target_libraries): Remove target-libiberty.
2582 Remove case-statement setting skipdirs=target-libiberty for
2583 multiple targets. Remove checking target_configdirs and
2584 removing target-libiberty but keeping target-libgcc if
2585 otherwise empty.
2586 * Makefile.def (target_modules): Don't add libiberty.
2587 (dependencies): Remove all traces of target-libiberty.
2588 * configure, Makefile.in: Regenerate.
2589
2590 2011-07-22 Jason Merrill <jason@redhat.com>
2591
2592 * Makefile.def (language=c++): Add check-c++0x and
2593 check-target-libmudflap-c++.
2594 * Makefile.tpl (check-target-libmudflap-c++): New.
2595 * Makefile.in: Regenerate.
2596
2597 2011-07-18 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2598
2599 * configure: Regenerate.
2600
2601 2011-07-07 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2602
2603 PR target/39150
2604 * configure.ac (i[3456789]86-*-solaris2*): Also accept
2605 x86_64-*-solaris2.1[0-9]*.
2606 * configure: Regenerate.
2607
2608 2011-06-13 Walter Lee <walt@tilera.com>
2609
2610 * configure.ac (tilepro-*-*) New case.
2611 (tilegx-*-*): Likewise.
2612 * configure: Regenerate.
2613
2614 2011-06-06 Nick Clifton <nickc@redhat.com>
2615
2616 * config.sub: Sync from upstream.
2617
2618 2011-05-08 Doug Kwan <dougkwan@google.com>
2619
2620 Merge from gcc:
2621
2622 2011-05-08 Doug Kwan <dougkwan@google.com>
2623
2624 * configure.ac: Propagate LDFLAGS_FOR_TARGET.
2625 * configure: Regenerated.
2626 * Makefile.tpl (LDFLAGS_FOR_TARGET): Use LDFLAGS_FOR_TARGET
2627 value from configure.
2628 * Makefile.in: Regenerated.
2629
2630 2011-05-05 Joseph Myers <joseph@codesourcery.com>
2631
2632 * configure.ac (alpha*-dec-osf*, i[[3456789]]86-*-rdos*,
2633 sh*-*-pe|mips*-*-pe|arm-wince-pe, sparc-*-sunos4*, *-*-aix*,
2634 *-*-beos*, *-*-chorusos, *-*-dragonfly*, *-*-freebsd*, *-*-linux*
2635 | *-*-gnu* | *-*-k*bsd*-gnu | *-*-kopensolaris*-gnu, *-*-lynxos*,
2636 *-*-mingw*, *-*-netbsd*, *-*-netware*, *-*-tpf*, *-*-uclinux*,
2637 *-*-vxworks*): Disable newlib and libgloss in separate case
2638 statement.
2639 (i[[3456789]]86-*-linux*): Move logic allowing newlib to be built
2640 to separate case statement.
2641 (*-*-chorusos, *-*-dragonfly*, *-*-freebsd*, *-*-netbsd*,
2642 *-*-netware*, *-*-tpf*, *-*-uclinux*, *-*-vxworks*,
2643 alpha*-dec-osf*, alpha*-*-linux*, am33_2.0-*-linux*, sh-*-linux*,
2644 sh*-*-pe|mips*-*-pe|*arm-wince-pe, arm-*-coff, arm-*-elf* |
2645 arm*-*-eabi*, arm*-*-linux-gnueabi, arm*-*-symbianelf*, avr-*-*,
2646 bfin-*-*, cris-*-* | crisv32-*-*, frv-*-*, i[[3456789]]86-*-coff |
2647 i[[3456789]]86-*-elf, i[[3456789]]86-w64-mingw*,
2648 i[[3456789]]86-*-mingw*, x86_64-*-mingw*,
2649 i[[3456789]]86-*-interix*, i[[3456789]]86-*-beos*,
2650 i[[3456789]]86-*-rdos*, m32r-*-*,
2651 m68hc11-*-*|m6811-*-*|m68hc12-*-*|m6812-*-*, m68k-*-elf*, m68*-*-*
2652 | fido-*-*, powerpc-*-aix*, powerpc-*-beos*, powerpc-*-eabi,
2653 powerpc-*-eabi* | powerpcle-*-eabi* | powerpc-*-rtems*,
2654 rs6000-*-lynxos*, rs6000-*-aix*, mips*-*-linux*, sparclet-*-aout*
2655 | sparc86x-*-*, sparc-*-elf*, sparc64-*-elf*, sparclite-*-*,
2656 sparc-*-sunos4*, sparc-*-solaris* | sparc64-*-solaris* |
2657 sparcv9-*-solaris*, *-*-linux* | *-*-gnu* | *-*-k*bsd*-gnu |
2658 *-*-kopensolaris*-gnu, *-*-lynxos*, *-*-*): Don't disable newlib
2659 and libgloss in main case over targets. Remove most empty cases
2660 in main case over targets.
2661 * configure: Regenerate.
2662
2663 2011-05-04 Joseph Myers <joseph@codesourcery.com>
2664
2665 * configure.ac: Remove code setting special library locations for
2666 hppa*64*-*-hpux11*. Remove code setting compiler for
2667 sparc-sun-solaris2*.
2668 * configure: Regenerate.
2669
2670 2011-05-04 Joseph Myers <joseph@codesourcery.com>
2671
2672 * configure.ac: Separate libgloss_dir settings from general case
2673 over targets.
2674 * configure: Regenerate.
2675
2676 2011-04-28 Joseph Myers <joseph@codesourcery.com>
2677
2678 * configure.ac (*-*-dragonfly*, *-*-freebsd*, *-*-netbsd*,
2679 alpha*-dec-osf*, alpha*-*-linux*, alpha*-*-*, sh-*-linux*,
2680 arm-*-elf* | arm*-*-eabi*, arm*-*-linux-gnueabi, frv-*-*): Remove
2681 cases in libgcj-disabling case statement.
2682 (hppa*64*-*-linux*): Set unsupported_languages instead of
2683 disabling target-zlib.
2684 (hppa*64*-*-*): Restrict case in libgcj-disabling case statement
2685 to hppa*64*-*-hpux*.
2686 (hppa*-*-*): Restrict case in libgcj-disabling case statement to
2687 hppa*-*-hpux*.
2688 (ia64*-*-elf*, ia64*-**-hpux*, i[[3456789]]86-*-elf,
2689 i[[3456789]]86-*-linux*, *-*-cygwin*, i[[3456789]]86-*-interix*,
2690 i[[3456789]]86-*-solaris2*, m32r-*-*, m68k-*-elf*, m68*-*-* |
2691 fido-*-*, powerpc-*-eabi, powerpc-*-eabi* | powerpcle-*-eabi* |
2692 powerpc-*-rtems*, mips*-*-linux*, mips*-*-*, sh-*-* | sh64-*-*,
2693 sparc-*-elf*, sparc64-*-elf*, sparc-*-solaris* |
2694 sparc64-*-solaris* | sparcv9-*-solaris*, *-*-linux* | *-*-gnu* |
2695 *-*-k*bsd*-gnu | *-*-kopensolaris*-gnu, *-*-*): Remove cases in
2696 libgcj-disabling case statement.
2697 * configure: Regenerate.
2698
2699 2011-04-28 Joseph Myers <joseph@codesourcery.com>
2700
2701 * configure.ac: Disable Java for targets not supporting libffi.
2702 (*-*-chorusos, *-*-kaos*, am33_2.0-*-linux*, sh*-*-pe|mips*-*-pe):
2703 Remove cases in Java-disabling statement.
2704 (*arm-wince-pe): Change to arm-wince-pe.
2705 (arc-*-*, arm-*-coff, arm-*-pe*, arm-*-riscix*, avr-*-*): Remove
2706 cases in Java-disabling statement.
2707 (bfin-*-*): Don't disable Java again.
2708 (c4x-*-* | tic4x-*-*, tic54x-*-*, cr16-*-*, d10v-*-*, d30v-*-*,
2709 fr30-*-elf*, moxie-*-*, h8300*-*-*, h8500-*-*, hppa1.1-*-osf* |
2710 hppa1.1-*-bsd*, hppa*-*-*elf* | hppa*-*-lites* | hppa*-*-openbsd*,
2711 hppa*-*-pro*, i960-*-*, i[[3456789]]86-*-coff,
2712 i[[3456789]]86-*-pe, i[[3456789]]86-*-sco3.2v5*,
2713 i[[3456789]]86-*-sco*, i[[3456789]]86-*-sysv4*,
2714 i[[3456789]]86-*-beos*, i[[3456789]]86-*-rdos*,
2715 m68hc11-*-*|m6811-*-*|m68hc12-*-*|m6812-*-*): Remove cases in
2716 Java-disabling statement.
2717 (mmix-*-*): Don't disable Java again.
2718 (mt-*-*, powerpc*-*-winnt* | powerpc*-*-pe*, powerpcle-*-solaris*,
2719 powerpc-*-beos*, rs6000-*-lynxos*, rs6000-*-*, m68k-apollo-*,
2720 microblaze*, mips*-sde-elf*, mips*-*-irix5*, mips*-*-bsd*,
2721 sparclet-*-aout* | sparc86x-*-*, sparclite-*-*, sparc-*-sunos4*,
2722 tic6x-*-*, v810-*-*, vax-*-*): Remove cases in Java-disabling
2723 statement.
2724 * configure: Regenerate.
2725
2726 2011-04-28 Joseph Myers <joseph@codesourcery.com>
2727
2728 Merge from GCC:
2729
2730 2011-04-18 Jack Howarth <howarth@bromo.med.uc.edu>
2731
2732 PR lto/48086
2733 * configure.ac: Re-enable LTO on *-apple-darwin9*.
2734 * configure: Regenerate.
2735
2736 2011-04-28 Joseph Myers <joseph@codesourcery.com>
2737
2738 * configure.ac: Separate cases disabling Java and Java libraries
2739 from general case over targets.
2740 * configure: Regenerate.
2741
2742 2011-04-06 Joseph Myers <joseph@codesourcery.com>
2743
2744 * configure.ac (build_tools): Remove build-byacc.
2745 (host_libs): Remove mmalloc.
2746 (host_tools): Remove byacc make patch prms send-pr ash bash bzip2
2747 autoconf automake libtool diff rcs fileutils shellutils time
2748 textutils wdiff find uudecode hello tar gzip indent recode release
2749 sed perl gawk findutils gettext zip.
2750 (libgcj): Remove target-qthreads.
2751 (target_tools): Remove target-examples target-gperf.
2752 (YACC): Don't handle building byacc.
2753 * configure: Regenerate.
2754 * Makefile.def (ash, autoconf, automake, bash, byacc, bzip2, diff,
2755 dosutils, examples, fileutils, find, findutils, gawk, gettext,
2756 gnuserv, gperf, gzip, hello, indent, libtool, make, mmalloc,
2757 patch, perl, prms, qthreads, rcs, recode, release, sed, send-pr,
2758 shellutils, tar, textutils, time, uudecode, wdiff, zip): Don't
2759 handle building components.
2760 * Makefile.in: Regenerate.
2761
2762 2011-04-05 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
2763
2764 * config.sub: Sync from upstream.
2765
2766 2011-04-01 Joseph Myers <joseph@codesourcery.com>
2767
2768 * configure.ac (avr-*-*): Add comment about why libssp is disabled.
2769 (microblaze*): Don't disable libssp.
2770 * configure: Regenerate.
2771
2772 2011-04-01 Joseph Myers <joseph@codesourcery.com>
2773
2774 * configure.ac: Remove code setting CONFIG_SHELL, config_shell and
2775 moveifchange.
2776 * configure: Regenerate.
2777 * Makefile.tpl: Use @SHELL@ not @config_shell@.
2778 * Makefile.in: Regenerate.
2779
2780 2011-04-01 Joseph Myers <joseph@codesourcery.com>
2781
2782 * configure.ac (*-*-sysv4*): Don't enable libgomp.
2783 (alpha*-*-*vms*, i[[34567]]86-*-sco3.2v5*, mn10300-*-*,
2784 powerpc-*-chorusos*, powerpc*-*-eabi*, powerpc*-*-sysv*,
2785 powerpc*-*-kaos*, s390x-ibm-tpf*, sparc64-*-elf*, v850*-*-*,
2786 xtensa*-*-elf*, *-*-beos*, *-*-elf*, *-*-netware*, *-*-rtems*,
2787 *-*-sysv[[45]]*, *-*-vxworks*, *-wrs-windiss): Remove
2788 md_exec_prefix cases.
2789 * configure: Regenerate.
2790
2791 2011-04-01 Joseph Myers <joseph@codesourcery.com>
2792
2793 * configure.ac: Separate cases disabling target-libssp,
2794 target-libiberty, target-libstdc++-v3 and Fortran from general
2795 case over targets.
2796 * configure: Regenerate.
2797
2798 2011-04-01 Joseph Myers <joseph@codesourcery.com>
2799
2800 * configure.ac (*-*-chorusos): Don't disable libgcj.
2801 (*-*-freebsd[[12]] | *-*-freebsd[[12]].* | *-*-freebsd*aout*):
2802 Remove case.
2803 (*-*-kaos*): Don't disable GCC libraries, zlib or fastjar.
2804 (arm-*-coff): Don't disable libgcj.
2805 (arm*-*-linux-gnueabi): Remove useless assignment.
2806 (arm-*-riscix*): Don't disable libgcj.
2807 (bfin-*-*): Don't enable target-bsp and target-cygmon depending on
2808 configuration.
2809 (c4x-*-* | tic4x-*-*): Don't disable GCC libraries.
2810 (c54x*-*-*): Remove case.
2811 (tic54x-*-*): Don't disable GCC or GCC libraries.
2812 (cris-*-* | crisv32-*-*): Don't handle *-*-aout. Change *-*-elf
2813 to *.
2814 (d10v-*-*): Don't disable GCC libraries.
2815 (d30v-*-*): Don't disable libgcj.
2816 (h8500-*-*): Don't disable GCC libraries.
2817 (i960-*-*): Don't disable libgcj.
2818 (i[[3456789]]86-*-linux*): Don't handle *-*-*libc1*.
2819 (i[[3456789]]86-*-sco3.2v5*, i[[3456789]]86-*-sco*,
2820 i[[3456789]]86-*-sysv4*, i[[3456789]]86-*-beos*): Don't disable
2821 libgcj.
2822 (m68k-*-coff*): Remove case.
2823 (mmix-*-*): Don't disable libgloss on host.
2824 (mn10200-*-*, mn10300-*-*): Remove cases.
2825 (powerpc*-*-winnt* | powerpc*-*-pe*, powerpcle-*-solaris*,
2826 powerpc-*-beos*, m68k-apollo-*, mips*-*-irix5*, mips*-*-bsd*):
2827 Don't disable libgcj.
2828 (romp-*-*): Remove case.
2829 (sparclite-*-*, sparc-*-sunos4*): Don't disable libgcj.
2830 (sparc-*-solaris2.[[0-6]] | sparc-*-solaris2.[[0-6]].*): Remove
2831 case.
2832 (v810-*-*): Don't disable GCC libraries.
2833 (v850*-*-*, vax-*-vms, xtensa*-*-*): Remove cases.
2834 (ip2k-*-*): Don't disable GCC libraries.
2835 * configure: Regenerate.
2836
2837 2011-03-28 Joseph Myers <joseph@codesourcery.com>
2838
2839 * configure.ac (i[[3456789]]86-*-msdosdjgpp*): Don't disable
2840 libffi on host.
2841 (x86_64-*-mingw*, i[[3456789]]86-*-mingw32*): Don't disable newlib
2842 on host.
2843 (c54x*-*-* | tic54x-*-*): Don't disable newlib on host.
2844 * configure: Regenerate.
2845
2846 2011-03-26 John Marino <binutils@marino.st>
2847
2848 * configure.ac: Add support for *-*-dragonfly*
2849 * configure: Regenerate.
2850
2851 2011-03-25 Joseph Myers <joseph@codesourcery.com>
2852
2853 * configure.ac (native_only): Remove.
2854 (i[[3456789]]86-*-msdosdjgpp*): Don't disable expect dejagnu
2855 send-pr uudecode guile gnuserv on host.
2856 (x86_64-*-mingw*): Don't disable expect dejagnu autoconf automake
2857 send-pr rcs guile perl texinfo libtool on host.
2858 (i[[3456789]]86-*-mingw32*): Don't disable expect dejagnu autoconf
2859 automake send-pr rcs guile perl texinfo libtool on host.
2860 (*-*-cygwin*, *-*-netbsd*): Remove host cases.
2861 (*-*-kaos*): Don't disable target-examples target-gperf on target.
2862 (alpha*-dec-osf*): Don't disable fileutils on target.
2863 (sh*-*-pe|mips*-*-pe|*arm-wince-pe): Don't disable target-examples
2864 texinfo send-pr expect dejagnu on target.
2865 (arm-*-elf* | arm*-*-eabi*, arm*-*-linux-gnueabi): Don't disable
2866 target-qthreads on target.
2867 (hppa*-hp-hpux11*, hppa*-*-*): Don't disable shellutils on target.
2868 (ia64*-*-elf*, ia64*-*-*vms*): Don't disable mmalloc on target.
2869 (i[[3456789]]86-w64-mingw*, i[[3456789]]86-*-mingw*,
2870 x86_64-*-mingw*): Don't disable expect on target.
2871 (*-*-cygwin*): Don't disable target-gperf on target.
2872 (powerpc*-*-winnt* | powerpc*-*-pe*): Don't disable make expect
2873 gnuserv on target.
2874 (powerpcle-*-solaris*): Don't disable make expect gnuserv on
2875 target.
2876 * configure: Regenerate.
2877
2878 2011-03-25 Joseph Myers <joseph@codesourcery.com>
2879
2880 * configure.ac (target_tools): Remove target-groff.
2881 (native_only): Remove target-groff.
2882 (hppa*64*-*-*): Don't disable byacc.
2883 (i[[3456789]]86-*-mingw32*): Remove commented-out noconfigdirs
2884 setting.
2885 (*-*-kaos*): Don't skip target-librx and target-groff.
2886 (*-*-netware*): Don't skip target-libmudflap.
2887 (*-*-tpf*): Don't skip target-libmudflap.
2888 (sh*-*-pe|mips*-*-pe|*arm-wince-pe): Don't condition configured
2889 directories on the host.
2890 (ia64*-*-*vms*): Don't skip tix.
2891 (sh-*-* | sh64-*-*): Don't condition skipped directories on the
2892 host.
2893 * configure: Regenerate.
2894
2895 2011-03-24 Paolo Bonzini <pbonzini@redhat.com>
2896
2897 * configure.ac: Remove references to mt-mep, mt-netware,
2898 mt-wince.
2899 * Makefile.def: Add all-utils soft dependencies.
2900 * Makefile.tpl: Remove GDB_NLM_DEPS.
2901 * configure: Regenerate.
2902 * Makefile.in: Regenerate.
2903
2904 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2905
2906 Sync from GCC:
2907
2908 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2909
2910 * configure.ac: Do not include mh-x86omitfp.
2911 * configure: Regenerate.
2912
2913 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2914
2915 * configure.ac: Remove empty cases.
2916 * configure: Regenerate.
2917
2918 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2919
2920 * Makefile.def: Add dependency from termcap to gdb.
2921 * Makefile.in: Regenerate.
2922
2923 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2924
2925 * configure.ac: Remove all mentions of mh-sysv4 and mh-solaris.
2926 * configure: Regenerate.
2927 * Makefile.def: Remove all mentions of X11_FLAGS_TO_PASS.
2928 * Makefile.tpl: Likewise.
2929 * Makefile.in: Regenerate.
2930
2931 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2932
2933 * configure.ac: Remove all mentions of tentative_cc.
2934 * configure: Regenerate.
2935
2936 2011-03-16 Jack Howarth <howarth@bromo.med.uc.edu>
2937
2938 PR lto/48086
2939 * configure.ac: Re-enable LTO on *-apple-darwin9.
2940 * configure: Regenerate.
2941
2942 2011-03-24 Joseph Myers <joseph@codesourcery.com>
2943
2944 * configure.ac (i[[3456789]]86-*-vsta, i[[3456789]]86-*-go32*,
2945 i[[3456789]]86-*-beos*, powerpc-*-beos*, m68k-hp-hpux*,
2946 m68k-apollo-sysv*, m68k-apollo-bsd*, m88k-dg-dgux*,
2947 m88k-harris-cxux*, m88k-motorola-sysv*, mips*-dec-ultrix*,
2948 mips*-nec-sysv4*, mips*-sgi-irix4*, mips*-*-sysv4*, mips*-*-sysv*,
2949 i370-ibm-opened*, i[[3456789]]86-*-sysv5*, i[[3456789]]86-*-dgux*,
2950 i[[3456789]]86-ncr-sysv4.3*, i[[3456789]]86-ncr-sysv4*,
2951 i[[3456789]]86-*-sco3.2v5*, i[[3456789]]86-*-sco*,
2952 i[[3456789]]86-*-udk*, vax-*-ultrix2*, m68k-sun-sunos*,
2953 hppa*-*-hiux*, *-*-hiux*, rs6000-*-lynxos*, *-*-sysv4*,
2954 *-*-rhapsody*): Remove host cases.
2955 * configure: Regenerate.
2956
2957 2011-03-24 Joseph Myers <joseph@codesourcery.com>
2958
2959 * configure.ac (ppc*-*-pe): Remove host case.
2960 (strongarm-*-coff | xscale-*-coff, strongarm-*-elf* |
2961 xscale-*-elf*, thumb-*-coff, thumb-*-elf, thumb-*-pe, ep9312-*-elf
2962 | ep9312-*-coff, parisc*64*-*-linux*, ppc*-*-pe): Remove target
2963 cases.
2964 * configure: Regenerate.
2965
2966 2011-03-24 Joseph Myers <joseph@codesourcery.com>
2967
2968 * config.sub: Update to version 2011-03-23.
2969
2970 2011-03-22 Joseph Myers <joseph@codesourcery.com>
2971
2972 * configure.ac (arm-semi-aof, crx-*-*, parisc*-*-linux*,
2973 i370-*-opened*, i[[3456789]]86-moss-msdos | i[[3456789]]86-*-moss*
2974 | i[[3456789]]86-*-uwin*, mcore-*-pe*): Remove empty cases.
2975 * configure: Regenerate.
2976
2977 2011-03-22 Joseph Myers <joseph@codesourcery.com>
2978
2979 * config-ml.in: Don't handle arc-*-elf*.
2980 * configure.ac (arc-*-*, crx-*-*, i[[3456789]]86-*-pe,
2981 m68hc11-*-*|m6811-*-*|m68hc12-*-*|m6812-*-*, mcore-*-pe*): Don't
2982 handle GCC libraries.
2983 * configure: Regenerate.
2984
2985 2011-03-21 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2986
2987 PR bootstrap/48120:
2988 * configure.ac (pwllib): Use LIBS instead of LDFLAGS.
2989 Add -lstdc++ -lm to LIBS.
2990 * configure: Regenerate.
2991
2992 2011-03-18 David Edelsohn <dje.gcc@gmail.com>
2993
2994 * config.guess: Update to version 2011-02-02
2995 * config.sub: Update to version 2011-02-24
2996
2997 2011-03-03 Sebastian Pop <sebastian.pop@amd.com>
2998
2999 * configure.ac: Adjust test of with_ppl.
3000 * configure: Regenerated.
3001
3002 2011-03-02 Sebastian Pop <sebastian.pop@amd.com>
3003
3004 * configure.ac: Add -lpwl to ppllibs.
3005 * config/cloog.m4: Add -lisl to clooglibs.
3006 * configure: Regenerated.
3007
3008 2011-02-13 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3009
3010 Import from Libtool and gnulib:
3011
3012 2011-01-27 Gerald Pfeifer <gerald@pfeifer.com>
3013
3014 Prepare for supporting FreeBSD 10.
3015 * config.rpath: Remove handling of freebsd1* which soon would
3016 match FreeBSD 10.0.
3017
3018 2011-01-20 Gerald Pfeifer <gerald@pfeifer.com> (tiny change)
3019
3020 Remove support for FreeBSD 1.x.
3021 * libtool.m4 (_LT_LINKER_SHLIBS)
3022 (_LT_SYS_DYNAMIC_LINKER): Remove handling of freebsd1* which
3023 soon would incorrectly match FreeBSD 10.0.
3024
3025 2011-02-12 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3026
3027 PR binutils/12283
3028 * MAINTAINERS (mkinstalldirs): Comes from Automake.
3029 (move-if-change): Comes from gnulib.
3030 * move-if-change: Import version from gnulib.
3031
3032 2011-02-12 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3033
3034 Sync from GCC:
3035
3036 2011-02-12 Alexandre Oliva <aoliva@redhat.com>
3037
3038 PR lto/47225
3039 * Makefile.def (lto-plugin): Double dash for enable-shared.
3040 (configure-gcc): Depend on all-lto-plugin.
3041 * Makefile.in: Rebuilt.
3042
3043 2011-02-11 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3044
3045 * configure.ac: Remove extra bracket.
3046 * configure: Regenerate.
3047
3048 2011-02-06 Kai Tietz <kai.tietz@onevision.com>
3049
3050 PR lto/47225
3051 * Makefile.def: Add dependency for install-gcc
3052 on install-lto-plugin.
3053 * Makfile.in: Regenerated
3054
3055 2011-01-25 Jakub Jelinek <jakub@redhat.com>
3056
3057 * configure.ac: If with_ppl is no, move setting with_cloog=no
3058 after CLOOG_REQUESTED check.
3059 * configure: Regenerated.
3060
3061 2011-01-25 Sebastian Pop <sebastian.pop@amd.com>
3062
3063 * configure.ac: Call AC_MSG_ERROR when PPL 0.11 is not present and
3064 CLooG has been requested.
3065 * configure: Regenerated.
3066
3067 2011-01-25 Sebastian Pop <sebastian.pop@amd.com>
3068
3069 * configure: Regenerated.
3070 * configure.ac: Check for version 0.11 (or later revision) of PPL.
3071
3072 2011-01-25 Tobias Grosser <grosser@fim.uni-passau.de>
3073
3074 * configure: Regenerated.
3075 * configure.ac: Use CLOOG_CHECK_VERSION(0,16,1).
3076
3077 2011-01-07 Jan Hubicka <jh@suse.cz>
3078
3079 PR lto/47225
3080 * Makefile.in: Regenerate.
3081 * Makefile.def (lto-plugin): Always pass enable-shared to the plugin
3082 configure.
3083
3084 2011-01-31 Alexandre Oliva <aoliva@redhat.com>
3085
3086 PR libgcj/44341
3087 * configure.ac: Discard --with-* flags for host when configuring
3088 target libraries for cross build.
3089 * configure: Rebuilt.
3090
3091 2011-01-21 Andreas Schwab <schwab@redhat.com>
3092
3093 Sync from GCC:
3094
3095 2011-01-21 Andreas Schwab <schwab@redhat.com>
3096
3097 * configure.ac: Use AS_HELP_STRING throughout.
3098 * configure: Regenerate.
3099
3100 2011-01-18 Jie Zhang <jie.zhang@analog.com>
3101
3102 * configure.ac (bfin-*-*): Remove gdb from noconfigdirs.
3103 * configure: Regenerate.
3104
3105 2010-12-10 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
3106
3107 * ltmain.sh (relink): Use absolute path when hardcoding with -L.
3108
3109 2011-01-13 Joel Brobecker <brobecker@adacore.com>
3110
3111 * configure.ac: Remove readline, mmalloc, and gdb from noconfigdirs
3112 for ia64-hpux.
3113 * configure: Regenerate.
3114
3115 2011-01-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3116
3117 Sync from GCC:
3118 2010-12-22 Hariharan Sandanagobalane <hariharan@picochip.com>
3119
3120 * configure.ac: (picochip): Disable libiberty.
3121 * configure: Regenerate.
3122
3123 2010-12-18 Jeff Johnston <jjohnstn@redhat.com>
3124
3125 * COPYING.LIBGLOSS: Remove the GPL for fr30 target.
3126
3127 2010-12-10 Ian Lance Taylor <iant@google.com>
3128
3129 PR bootstrap/46819
3130 * configure.ac: For --disable-libgcj clear libgcj_saved.
3131 * configure: Rebuild.
3132
3133 2010-12-10 Tobias Burnus <burnus@net-b.de>
3134
3135 PR fortran/46540
3136 * configure.ac: Add --disable-libquadmath and
3137 --disable-libquadmath-support.
3138 * configure: Regenerate.
3139
3140 2010-12-10 Tristan Gingold <gingold@adacore.com>
3141
3142 * src-release (ETC_SUPPORT): add gnu-oids.texi
3143
3144 2010-12-03 Hans-Peter Nilsson <hp@axis.com>
3145
3146 PR libffi/46792
3147 * configure.ac (cris-*-elf, crisv32-*-elf): Disable target-libffi.
3148 * configure: Regenerate.
3149
3150 2010-12-02 Ian Lance Taylor <iant@google.com>
3151
3152 * configure.ac: Always set default for poststage1_ldflags to
3153 -static-libstdc++ -static-libgcc.
3154
3155 2010-12-02 Jeff Johnston <jjohnstn@redhat.com>
3156
3157 * COPYING.NEWLIB: Add National Semiconductor notice.
3158
3159 2010-11-29 Andreas Schwab <schwab@redhat.com>
3160
3161 * configure.ac: Move comment to remove extra space in last argument
3162 of GCC_TARGET_TOOL.
3163
3164 2010-11-26 Alexandre Oliva <aoliva@redhat.com>
3165
3166 PR other/46026
3167 * configure.ac (CXX_FOR_TARGET): Add -funconfigured-libstdc++-v3.
3168 * Makefile.def (CXX_FOR_TARGET): Removed from flags_to_pass.
3169 * Makefile.tpl (CXX_FOR_TARGET_FLAG_TO_PASS): New.
3170 (BASE_FLAGS_TO_PASS): Use it.
3171 * configure: Rebuilt.
3172 * Makefile.in: Rebuilt.
3173
3174 2010-11-23 H.J. Lu <hongjiu.lu@intel.com>
3175
3176 PR binutils/12258
3177 * configure.ac: Correct comments for --enable-gold/--enable-ld.
3178 Properly check default linker.
3179 * configure: Regnerated.
3180
3181 2010-11-23 Matthias Klose <doko@ubuntu.com>
3182
3183 * configure.ac: For --enable-gold, handle value `default' instead of
3184 `both*'. New configure option --{en,dis}able-ld.
3185 * configure: Regenerate.
3186
3187 2010-11-20 Ian Lance Taylor <iant@google.com>
3188
3189 * configure.ac: Only disable a language library if no language needs
3190 it. Don't let --disable-libgcj uncondtionally disable libffi.
3191 * configure: Rebuild.
3192
3193 2010-11-20 Paolo Bonzini <bonzini@gnu.org>
3194
3195 * configure: Regenerate.
3196
3197 2010-11-20 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3198
3199 PR other/46202
3200 * configure.ac: Fix just-built in-tree STRIP name to be
3201 binutils/strip-new.
3202 * configure: Regenerate.
3203 * Makefile.def (install-strip-gcc, install-strip-binutils)
3204 (install-strip-opcodes, install-strip-ld, install-strip-itcl)
3205 (install-strip-sid): Mirror dependencies on non-strip variants
3206 of these targets on the respective -strip prerequisites.
3207 * Makefile.tpl (install-strip, install-strip-host)
3208 (install-strip-target): New targets.
3209 (install-strip-[+module+], install-strip-target-[+module+]):
3210 New targets.
3211 * Makefile.in: Regenerate.
3212
3213 2010-11-19 Ian Lance Taylor <iant@google.com>
3214 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3215
3216 * configure.ac: Add target-libgo to target_libraries. Set
3217 and substitute GOC_FOR_BUILD and GOC_FOR_TARGET.
3218 * Makefile.tpl (BUILD_EXPORTS): Add GOC and GOCFLAGS.
3219 (HOST_EXPORTS): Add GOC.
3220 (BASE_TARGET_EXPORTS): Add GOC.
3221 (GOC_FOR_BUILD, GOCFLAGS, GOC_FOR_TARGET): New variables.
3222 (GOCFLAGS_FOR_TARGET): New variable.
3223 (EXTRA_HOST_FLAGS): Add GOC.
3224 (EXTRA_TARGET_FLAGS): Add GOC and GOCFLAGS.
3225 * Makefile.def (target_modules): Add libgo.
3226 (flags_to_pass): Add GOC_FOR_TARGET and GOCFLAGS_FOR_TARGET.
3227 (dependencies): Add dependency from configure-target-libgo to
3228 configure-target-libffi and all-target-libstdc++-v3. Add
3229 dependencies from all-target-libgo to all-target-libffi.
3230 (languages): Add go.
3231 * configure: Rebuild.
3232 * Makefile.in: Rebuild.
3233
3234 2010-11-19 Ian Lance Taylor <iant@google.com>
3235
3236 * config-ml.in: Add Go support: treat GOC and GOCFLAGS like other
3237 compiler/flag environment variables.
3238
3239 2010-11-18 Ian Lance Taylor <iant@google.com>
3240
3241 * configure.ac: Check for lang_requires_boot_languages in
3242 config-lang.in files.
3243 * configure: Rebuild.
3244
3245 2010-11-17 Mike Frysinger <vapier@gentoo.org>
3246
3247 * .gitignore: New file.
3248
3249 2010-11-16 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
3250 Tobias Burnus <burnus@net-b.de>
3251
3252 PR fortran/32049
3253 * Makefile.def: Add libquadmath; build it with language=fortran.
3254 * configure.ac: Add libquadmath.
3255 * Makefile.tpl: Handle multiple libs in check-[+language+].
3256 * Makefile.in: Regenerate.
3257 * configure: Regenerate.
3258
3259 2010-11-15 Andreas Schwab <schwab@redhat.com>
3260
3261 * configure.ac: Fix spelling in option names.
3262 * configure: Regenerated.
3263
3264 2010-11-13 Georg-Johann Lay <georgjohann@web.de>
3265
3266 PR bootstrap/39622
3267 * configure.ac (FLAGS_FOR_TARGET): Add include-fixed path.
3268 * configure: Regenerated.
3269
3270 2010-11-12 Tobias Grosser <grosser@fim.uni-passau.de>
3271
3272 * config/cloog.m4: Add -enable-cloog-backend=(isl|ppl|ppl-legacy) to
3273 define the cloog backend to use. Furthermore, only pass the ppllibs to
3274 the configure checks, if necessary.
3275 * configure: Regenerate.
3276
3277 2010-11-12 Tobias Grosser <grosser@fim.uni-passau.de>
3278
3279 * config/cloog.m4: Use CLooG predefined macro to check for CLooG PPL.
3280 * configure: regenerate
3281
3282 2010-11-12 Tobias Grosser <grosser@fim.uni-passau.de>
3283
3284 * config/cloog.m4: Fix typo. verison -> version.
3285 * configure: Regenerate.
3286
3287 2010-11-12 Tobias Grosser <grosser@fim.uni-passau.de>
3288
3289 * config/cloog.m4: Pass ppl libraries to the CLooG version check.
3290 * configure: Regenerate.
3291
3292 2010-11-11 Andreas Simbuerger <simbuerg@fim.uni-passau.de>
3293
3294 * configure.ac: Support official CLooG.org versions.
3295 * configure: Regenerate.
3296 * config/cloog.m4: New.
3297
3298 2010-11-05 Michael Eager <eager@eagercon.com>
3299
3300 * COPYING.LIBGLOSS: Correct typo in microblaze.
3301 * COPYING.NEWLIB: Same.
3302
3303 2010-11-04 Iain Sandoe <iains@gcc.gnu.org>
3304
3305 * configure.ac (*-*-darwin*): Use mh-darwin for all Darwin variants.
3306 * configure: Regenerate.
3307
3308 2010-11-03 Ian Lance Taylor <iant@google.com>
3309 Dave Korn <dave.korn.cygwin@gmail.com>
3310
3311 PR lto/46273
3312 * configure.ac: Remove libelf tests. Build lto-plugin on ELF always
3313 and on other supported platforms whenever LTO is enabled.
3314 * configure: Rebuild.
3315
3316 2010-11-02 Alan Modra <amodra@gmail.com>
3317
3318 PR binutils/12110
3319 * configure.ac: Error when source path contains spaces.
3320 * configure: Regenerate.
3321
3322 2010-10-20 Ian Lance Taylor <iant@google.com>
3323
3324 * Makefile.def (target_modules): Set lib_path to src/.libs for
3325 libstdc++-v3 module.
3326 * Makefile.tpl: Fix typo in TARGET_LIB_PATH comment.
3327 * Makefile.in: Rebuild.
3328
3329 2010-10-08 Bernd Schmidt <bernds@codesourcery.com>
3330 Joseph Myers <joseph@codesourcery.com>
3331
3332 * COPYING.LIBGLOSS: Add National Semiconductor and CodeSourcery
3333 notices.
3334 * COPYING.NEWLIB: Add Texas Instruments notice.
3335
3336 2010-10-07 Dave Korn <dave.korn.cygwin@gmail.com>
3337
3338 * configure.ac (build_lto_plugin): New shell variable.
3339 (--enable-lto): Turn on by default for all non-ELF platforms that
3340 have had LTO support added so far. Set build_lto_plugin appropriately
3341 for both ELF and non-ELF.
3342 (configdirs): Add lto-plugin or not based on build_lto_plugin.
3343 * configure: Regenerate.
3344
3345 2010-10-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3346
3347 PR bootstrap/45326
3348 PR bootstrap/45174
3349 * configure.ac: Honor initial values of $build_configargs,
3350 $host_configargs, $target_configargs. Mark the precious, so
3351 environment settings get recorded.
3352 * configure: Regenerate.
3353
3354 2010-10-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3355
3356 Sync from GCC:
3357
3358 2010-09-30 Michael Eager <eager@eagercon.com>
3359
3360 * configure.ac (microblaze): Add target-libssp to noconfigdirs.
3361 * configure: Regenerate.
3362
3363 2010-09-21 Iain Sandoe <iains@gcc.gnu.org>
3364
3365 * configure.ac (enable-lto): Add Darwin to the list of supported lto
3366 targets and amend comment.
3367 * configure: Regenerate.
3368
3369 2010-09-03 Jack Howarth <howarth@bromo.med.uc.edu>
3370
3371 * configure.ac: Enable LTO by default on Darwin.
3372 * configure: Regenerate.
3373
3374 2010-07-23 Marc Glisse <marc.glisse@normalesup.org>
3375
3376 PR bootstrap/44455
3377 * configure.ac (extra_mpfr_configure_flags): Copy from
3378 extra_mpc_gmp_configure_flags.
3379 * configure: Re-generated.
3380
3381 2010-09-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3382
3383 Sync from GCC:
3384
3385 PR bootstrap/45796
3386 * Makefile.def (info-gcc, dvi-gcc, pdf-gcc, html-gcc):
3387 Depend on all-build-libiberty.
3388 * Makefile.in: Regenerate.
3389
3390 2010-09-27 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3391
3392 Sync from GCC:
3393
3394 PR bootstrap/44621
3395 * configure.ac: Fix unportable shell quoting.
3396 * configure: Regenerate.
3397
3398 2010-07-26 Naveen.H.S <naveen.S@kpitcummins.com>
3399
3400 * configure.ac: Support all v850 targets.
3401 * configure: Regenerate.
3402
3403 2010-07-17 Jack Howarth <howarth@bromo.med.uc.edu>
3404
3405 PR target/44862
3406 * Makefile.tpl (POSTSTAGE1_CXX_EXPORT):
3407 Provide -B option to allow for link spec %s substitutions for
3408 libstdc++.a on darwin.
3409 * Makefile.in: Regenerate.
3410
3411 2010-06-10 Alexandre Oliva <aoliva@redhat.com>
3412
3413 * Makefile.def (configure-gcc): Depend on all-libelf.
3414 * Makefile.in: Rebuild.
3415
3416 2010-06-01 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3417
3418 * config.sub, config.guess: Update from upstream sources.
3419
3420 2010-06-01 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3421
3422 Sync from GCC:
3423
3424 2010-05-05 Sebastian Pop <sebastian.pop@amd.com>
3425 * configure.ac: Allow all the versions greater than 0.10 of PPL.
3426 * configure: Regenerated.
3427
3428 2010-04-20 Eric Botcazou <ebotcazou@adacore.com>
3429 * configure.ac (BUILD_CONFIG): Redirect output to /dev/null.
3430 * configure: Regenerate.
3431
3432 2010-04-17 Ralf Cors<E9>pius <ralf.corsepius@rtems.org>
3433 * configure.ac (*-*-rtems*): Add target-libiberty to $skipdirs.
3434 * configure: Regenerate.
3435
3436 2010-04-16 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3437 * configure.ac: Check for elf_getshdrstrndx or elf_getshstrndx
3438 separately.
3439 * configure: Regenerate.
3440
3441 2010-04-13 Steve Ellcey <sje@cup.hp.com>
3442 * configure: Regenerate after change to elf.m4.
3443
3444 2010-04-02 Sebastian Pop <sebastian.pop@amd.com>
3445 * configure.ac: Add brackets around AC_TRY_COMPILE alternative.
3446 * configure: Regenerated.
3447
3448 2010-04-02 Sebastian Pop <sebastian.pop@amd.com>
3449 * configure.ac: Print "buggy but acceptable" when CLooG
3450 revision is less than 9.
3451 * configure: Regenerated.
3452
3453 2010-05-26 Dave Korn <dave.korn.cygwin@gmail.com>
3454
3455 Merge from gcc:
3456
3457 2010-05-18 Steven Bosscher <steven@gcc.gnu.org>
3458 * configure.ac (--enable-lto): All *-apple-darwin* now support LTO.
3459 * configure: Regenerate.
3460
3461 2010-05-07 Steven Bosscher <steven@gcc.gnu.org>
3462 * configure.ac (--enable-lto): Add x86_64-apple-darwin* as
3463 a platform that supports LTO.
3464 * configure: Regenerate.
3465
3466 2010-04-27 Dave Korn <dave.korn.cygwin@gmail.com>
3467 PR lto/42776
3468 * configure.ac (--enable-lto): Refactor handling so libelf tests
3469 are only performed inside then-clause of ACX_ELF_TARGET_IFELSE,
3470 and allow LTO to be explicitly enabled on non-ELF platforms that
3471 are known to support it inside else-clause.
3472 * configure: Regenerate.
3473
3474 2010-04-27 Roland McGrath <roland@redhat.com>
3475 H.J. Lu <hongjiu.lu@intel.com>
3476
3477 * configure.ac (--enable-gold): Support both, both/gold and
3478 both/bfd to add gold to configdirs without removing ld.
3479 * configure: Regenerated.
3480
3481 * Makefile.def: Add install-gold dependency to install-ld.
3482 * Makefile.in: Regenerated.
3483
3484 2010-04-14 Tristan Gingold <gingold@adacore.com>
3485
3486 * configure.ac (alpha*-*-*vms*): Remove ld from noconfigdirs.
3487 * configure: Regenerate.
3488
3489 2010-04-08 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3490
3491 Merge from gcc:
3492 PR bootstrap/43615
3493 PR bootstrap/43328
3494 Revert:
3495 2010-03-31 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3496 * configure.ac: Do not pass --enable-multilib nor
3497 --disable-multilib in baseargs. Accept explicitly passed
3498 --enable_multilib.
3499 * configure: Regenerate.
3500
3501 2010-03-31 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3502
3503 PR bootstrap/43328
3504 * configure.ac: Do not pass --enable-multilib nor
3505 --disable-multilib in baseargs. Accept explicitly passed
3506 --enable_multilib.
3507 * configure: Regenerate.
3508
3509 2010-03-23 Joseph Myers <joseph@codesourcery.com>
3510
3511 * configure.ac (tic6x-*-*): New case.
3512 * configure: Regenerate.
3513
3514 2010-03-23 Joseph Myers <joseph@codesourcery.com>
3515
3516 Merge from gcc:
3517 2010-03-19 Jack Howarth <howarth@bromo.med.uc.edu>
3518 PR ada/42554
3519 * configure.ac: Only pass -c to ranlib for darwin9 and earlier.
3520 * configure: Regenerate.
3521
3522 2010-03-23 Joseph Myers <joseph@codesourcery.com>
3523
3524 * config.sub: Update to version 2010-03-22.
3525 * config.guess: Update to version 2009-12-30.
3526
3527 2010-03-14 Joseph Myers <joseph@codesourcery.com>
3528
3529 Merge from gcc:
3530 2010-01-11 Richard Guenther <rguenther@suse.de>
3531 PR lto/41569
3532 * Makefile.def (all-lto-plugin): Depend on all-gcc.
3533 * Makefile.in: Regenerated.
3534
3535 2010-03-01 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3536
3537 PR libstdc++/32499
3538 * configure.ac (RANLIB): Default to true.
3539 (STRIP): Likewise.
3540 (RANLIB_FOR_TARGET): Remove superfluous : argument.
3541 * configure: Regenerate.
3542
3543 2010-02-17 Nick Clifton <nickc@redhat.com>
3544
3545 PR 11238
3546 * Makefile.tpl (local-distclean): Also remove config.cache files in
3547 sub-directories as there may not be Makefiles present in the
3548 sub-directories.
3549 * Makefile.tpl: Use "-exec rm {}" rather than "-delete" to delete
3550 the config.cache files found by the find command.
3551
3552 * Makefile.in: Regenerate.
3553 * configure.ac: Revert previous delta.
3554 * configure: Regenerate.
3555
3556 2010-02-15 Nick Clifton <nickc@redhat.com>
3557
3558 PR 11238
3559 * configure.ac: Delete config.cache files in sub-directories when
3560 deleting Makefiles.
3561 * configure: Regenerate.
3562
3563 2010-02-15 Nick Clifton <nickc@redhat.com>
3564
3565 * configure.ac: Sync from gcc.
3566 * configure: Regenerate.
3567
3568 2010-01-31 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3569
3570 Sync from gcc:
3571 * configure.ac: Add "recommended" version checks for GMP/MPC.
3572 Update recommended GMP/MPFR/MPC versions.
3573 * configure: Regenerate.
3574
3575 2010-01-25 Joern Rennecke <amylaar@spamcop.net>
3576
3577 gcc PR libstdc++/36101, gcc PR libstdc++/42813
3578 * configure.ac (bootstrap_target_libs): Make inclusion of
3579 target-libgomp conditional on libgomb being in target_configdirs.
3580 * configure: Regenerate.
3581
3582 2010-01-23 Joern Rennecke <amylaar@spamcop.net>
3583
3584 gcc PR libstdc++/36101, gcc PR libstdc++/42813
3585 * configure.ac (bootstrap_target_libs): Include target-libgomp.
3586 * configure: Regenerate.
3587
3588 2010-01-22 Joern Rennecke <amylaar@spamcop.net>
3589
3590 gcc PR libstdc++/36101, gcc PR libstdc++/42813
3591 * configure.ac (target_configdirs): Substitute.
3592 * Makefile.def: Bootstrap target module libgomp.
3593 Add dependency of all-target-libstdc++-v3 on configure-target-libgomp.
3594 * Makefile.tpl (TARGET_CONFIGDIRS): New makefile variable.
3595 (BASE_TARGET_EXPORTS): Export TARGET_CONFIGDIRS.
3596 * configure, Makefile.in: Regenerate.
3597
3598 2009-12-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3599
3600 * libtool.m4: Sync from git Libtool.
3601 * ltmain.sh: Likewise.
3602 * ltoptions.m4: Likewise.
3603 * ltversion.m4: Likewise.
3604 * lt~obsolete.m4: Likewise.
3605
3606 2010-01-07 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3607 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
3608
3609 PR bootstrap/42424
3610 * configure.ac: Include libtool m4 files.
3611 (_LT_CHECK_OBJDIR): Call it.
3612 (extra_mpc_mpfr_configure_flags, extra_mpc_gmp_configure_flags,
3613 gmplibs, ppllibs, clooglibs): Use $lt_cv_objdir.
3614
3615 * configure: Regenerate.
3616
3617 2010-01-07 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3618
3619 PR bootstrap/41818
3620 * Makefile.tpl (BASE_TARGET_EXPORTS): Only add TARGET_LIB_PATH
3621 to $(RPATH_ENVVAR) if bootstrapping. Fix typo in comment.
3622 * Makefile.in: Regenerate.
3623
3624 2009-12-18 Ben Elliston <bje@au.ibm.com>
3625
3626 * config.sub, config.guess: Update from upstream sources.
3627
3628 2009-12-17 Jeff Johnston <jjohnstn@redhat.com>
3629
3630 * COPYING.NEWLIB: Update copyright date.
3631 * COPYING.LIBGLOSS: Ditto.
3632
3633 2009-12-07 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3634
3635 PR middle-end/30447
3636 PR middle-end/30789
3637 PR other/40302
3638
3639 * configure.ac: Require MPC.
3640 * configure: Regenerate.
3641
3642 * configure.ac: Update minimum MPC version to 0.8.
3643 * configure: Regenerate.
3644
3645 2009-11-20 Paolo Bonzini <bonzini@gnu.org>
3646
3647 * config.guess: Sync with upstream and gcc.
3648 * config.sub: Sync with upstream and gcc.
3649
3650 2009-11-16 Alexandre Oliva <aoliva@redhat.com>
3651
3652 * Makefile.def: Restore host and target settings for gmp.
3653 * Makefile.in: Rebuild.
3654
3655 2009-11-16 Alexandre Oliva <aoliva@redhat.com>
3656
3657 * configure.ac: Add libelf to host_libs. Enable in-tree configury
3658 of ppl and cloog. Fix in-tree configury of libelf, skip tests.
3659 Fix portability of test of C++ as bootstrap language. Add
3660 ppl/src/ppl-config.o to the bootstrap compare exclusion list.
3661 * configure: Rebuild.
3662 * Makefile.def: Drop host and target settings from gmp, mpfr, ppl,
3663 and cloog. Fix in-tree ppl configuration. Introduce libelf
3664 in-tree building.
3665 * Makefile.tpl (POSTSTAGE1_CXX_EXPORT): New.
3666 (POSTSTAGE1_HOST_EXPORTS): Use it.
3667 (STAGE[+id+]_CXXFLAGS): New.
3668 (BASE_FLAGS_TO_PASS): Pass it down.
3669 (configure-stage[+id+]-[+prefix+][+module+]): Use it. Add
3670 extra_exports.
3671 (all-stage[+id+]-[+prefix+][+module+]): Likewise.
3672 (configure-[+prefix+][+module+], all-[+prefix+][+module+]): Add
3673 extra_exports.
3674 * Makefile.in: Rebuild.
3675
3676 2009-11-06 Ozkan Sezer <sezeroz@gmail.com>
3677
3678 * configure.ac (FLAGS_FOR_TARGET): Add -L and -isystem
3679 paths for *-w64-mingw* and x86_64-*mingw*.
3680 * configure: Regenerated.
3681
3682 2009-10-30 Kai Tietz <kai.tietz@onevision.com>
3683
3684 * configure.ac: Disable target-winsup & co for
3685 x86_64-*-mingw* and *-w64-mingw* targets.
3686 * configure: Regenerated.
3687
3688 2009-10-23 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3689
3690 * configure.ac (CLooG test): Use = with test.
3691 * configure: Regenerate.
3692
3693 2009-10-22 Richard Guenther <rguenther@suse.de>
3694
3695 * configure.ac: Do not set LIBS for ppl/cloog checks. Disable
3696 cloog if the ppl version check failed. Move flags saving
3697 before setting in libelf check.
3698 * configure: Regenerate.
3699
3700 2009-10-21 Richard Guenther <rguenther@suse.de>
3701
3702 * configure.ac: Adjust the ppl and cloog configure to work as
3703 documented. Disable cloog if ppl was disabled. Omit the version
3704 checks if they were disabled.
3705 * configure: Re-generate.
3706
3707 2009-10-13 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3708
3709 * configure.ac: Add 'lto' to enable_languages, not
3710 new_enable_languages, and only if not already present.
3711 * configure: Regenerate.
3712
3713 2009-10-06 Ian Lance Taylor <iant@google.com>
3714
3715 * Makefile.def: check-gold depends upon all-gas.
3716 * Makefile.in: Rebuild.
3717
3718 2009-10-03 2009-02-05 Rafael Avila de Espindola <espindola@google.com>
3719
3720 * Makefile.def: all-lto-plugin depends on all-libiberty.
3721 set bootstrap=true for lto-plugin.
3722 Add lto-plugin.
3723 * Makefile.in: Regenerate.
3724 * configure.ac (host_libs): Add lto-plugin.
3725 * configure: Regenerate.
3726
3727 2009-10-03 Diego Novillo <dnovillo@google.com>
3728
3729 * Makefile.tpl (HOST_EXPORTS): Add LIBELFLIBS and LIBELFINC.
3730 (HOST_LIBELFLIBS): Define.
3731 (HOST_LIBELFINC): Define.
3732 * Makefile.in: Regenerate.
3733 * configure.ac: Add --enable-lto.
3734 Add --with-libelf, --with-libelf-include and --with-libelf-lib.
3735 If --enable-lto is used, add 'lto' to new_enable_languages.
3736 If --enable-lto is used and gold is enabled, add
3737 lto-plugin to configdirs.
3738 * configure: Regenerate.
3739
3740 2009-10-03 Simon Baldwin <simonb@google.com>
3741
3742 * configure.ac: If --with-system-zlib, suppress local zlib and
3743 pass --with-system-zlib to subdir configure scripts.
3744 * configure: Regenerate.
3745
3746 2009-10-01 Loren J. Rittle <ljrittle@acm.org>
3747 Paolo Bonzini <bonzini@gnu.org>
3748
3749 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Use $$s rather than
3750 $(srcdir).
3751 * Makefile.in: Rebuilt.
3752
3753 2009-09-29 Paolo Bonzini <bonzini@gnu.org>
3754
3755 Sync from gcc:
3756 2009-09-26 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3757
3758 * configure.ac: Update minimum MPC version to 0.7.
3759 * configure: Regenerate.
3760
3761 2009-09-25 Nick Clifton <nickc@redhat.com>
3762
3763 * configure.ac: Pass any --cache-file=/dev/null option on to
3764 subconfigures.
3765 * configure: Regenerate.
3766
3767 2009-09-23 Nick Clifton <nickc@redhat.com>
3768
3769 * config.sub, config.guess: Update from upstream sources.
3770
3771 2009-09-22 Loren J. Rittle <ljrittle@acm.org>
3772
3773 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Remove stray $$r/.
3774 * Makefile.in: Rebuilt.
3775
3776 2009-09-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3777
3778 PR bootstrap/32272
3779 * configure.ac: Error out if $srcdir isn't '.' but contains
3780 host-${host_noncanonical}.
3781 * configure: Regenerate.
3782
3783 2009-09-21 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3784
3785 * configure.ac: If bootstrapping a combined tree with
3786 --enable-gold, require c++ in stage1_languages.
3787 * configure: Regenerate.
3788
3789 * configure.ac: Also add target_libs of stage1_languages to
3790 bootstrap_target_libs.
3791 * configure: Regenerate.
3792
3793 * configure.ac: Diagnose --enable-build-with-cxx bootstrap
3794 with --enable-languages not containing c++.
3795 * configure: Regenerate.
3796
3797 2009-09-16 Jie Zhang <jie.zhang@analog.com>
3798
3799 * configure.ac: Disable java and boehm-gc for bfin-*-*.
3800 * configure: Regenerate.
3801
3802 2009-09-08 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3803
3804 * configure.ac: Do not use $extrasub for replacing @if/@endif
3805 parts in Makefile; instead, use additional arguments to
3806 AC_CONFIG_COMMANDS to do the replacement manually, with several
3807 sed invocations, to avoid HP-UX sed command limits.
3808 * configure: Regenerate.
3809
3810 2009-09-04 Alexandre Oliva <aoliva@redhat.com>
3811
3812 * configure.ac (with-build-config): Document. Handle without.
3813 Handle missing argument.
3814 * configure: Rebuilt.
3815
3816 2009-09-03 Alexandre Oliva <aoliva@redhat.com>
3817
3818 * configure.ac (--with-build-config): New. Set BUILD_CONFIG.
3819 Default to bootstrap-debug only if compare-debug works.
3820 * configure: Rebuilt.
3821 * Makefile.tpl: Make BUILD_CONFIG configure-configurable.
3822 * Makefile.in: Rebuilt.
3823
3824 2009-09-01 Alexandre Oliva <aoliva@redhat.com>
3825
3826 * Makefile.tpl (BUILD_CONFIG): Default to bootstrap-debug.
3827 * Makefile.in: Rebuilt.
3828
3829 2009-09-02 Paolo Bonzini <bonzini@gnu.org>
3830
3831 * Makefile.tpl (AWK): Fix typo.
3832 * Makefile.in: Regenerate.
3833
3834 2009-09-02 Paolo Bonzini <bonzini@gnu.org>
3835
3836 * configure.ac: Detect awk and sed.
3837 * Makefile.def (flags_to_pass): Add AWK and SED.
3838 * Makefile.tpl (AWK, SED): New.
3839 (BASE_FLAGS_TO_PASS): Add AWK and SED.
3840 * configure: Regenerate.
3841 * Makefile.in: Regenerate.
3842
3843 2009-09-01 Tristan Gingold <gingold@adacore.com>
3844
3845 * setup.com: Ported to Itanium VMS. Can also build using DCL scripts.
3846 Remove logical names.
3847
3848 2009-08-31 Dave Korn <dave.korn.cygwin@gmail.com>
3849
3850 * ltmain.sh (func_normal_abspath): New function.
3851 (func_relative_path): Likewise.
3852 (func_mode_help): Document new -bindir option for link mode.
3853 (func_mode_link): Add new -bindir option, and use it to place
3854 output DLL if specified.
3855
3856 2009-08-24 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3857
3858 * configure.ac (AC_PREREQ): Bump to 2.64.
3859
3860 2009-08-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3861
3862 * README-maintainer-mode: Point directly to upstream locations
3863 for autoconf, automake, libtool, gettext, instead of copies on
3864 sources.redhat.com. Document required versions.
3865 * configure.ac: Do not substitute datarootdir, htmldir,
3866 pdfdir, docdir. Do not process --with-datarootdir,
3867 --with-htmldir, --with-pdfdir, --with-docdir.
3868 * configure: Regenerate.
3869
3870 * configure: Regenerate.
3871
3872 * compile: Sync from Automake 1.11.
3873 * depcomp: Likewise.
3874 * install-sh: Likewise.
3875 * missing: Likewise.
3876 * mkinstalldirs: Likewise.
3877 * ylwrap: Likewise.
3878
3879 2009-08-19 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3880
3881 * configure.ac: Call AC_DISABLE_OPTION_CHECKING.
3882 (baseargs): Add --disable-option-checking.
3883 * configure: Regenerate.
3884
3885 * Makefile.def (configure-target-libiberty): Depend on
3886 all-binutils and all-ld.
3887 (configure-target-newlib): Likewise.
3888 * Makefile.in: Regenerate.
3889
3890 2009-08-19 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3891
3892 Sync with GCC, merge:
3893
3894 2009-07-31 Christian Bruel <christian.bruel@st.com>
3895
3896 * configure.ac (sh*-*-elf): Don't add target-libgloss to noconfigdirs.
3897 * configure: Regenerate.
3898
3899 2009-07-06 Ian Lance Taylor <iant@google.com>
3900
3901 * configure.ac: Add missing comma in AC_ARG_WITH(boot-libs).
3902 * configure: Rebuild.
3903
3904 2009-06-26 Steve Ellcey <sje@cup.hp.com>
3905
3906 PR bootstrap/40338
3907 * configure.ac (comparestring): Create new variable.
3908 * Makefile.tpl (comparestring): Use to skip some comparisions.
3909 * configure: Regenerate.
3910 * Makefile.in: Regenerate.
3911
3912 2009-06-23 Ian Lance Taylor <iant@google.com>
3913
3914 * configure.ac: Add --enable-build-with-cxx. When set, add c++ to
3915 boot_languages. Only bootstrap target libraries listed in
3916 target_libs for some boot language. Add --with-stage1-ldflags,
3917 --with-stage1-libs, --with-boot-ldflags, --with-boot-libs. Remove
3918 with_host_libstdcxx from ppllibs. Only add -fkeep-inline-functions
3919 if not building with C++.
3920 * Makefile.def: For target_module libstdc++-v3, set bootstrap=true.
3921 * Makefile.tpl (STAGE1_LDFLAGS, STAGE1_LIBS): New variables.
3922 (POSTSTAGE1_LDFLAGS, POSTSTAGE1_LIBS): New variables.
3923 (HOST_EXPORTS): Add STAGE1_LDFLAGS to LDFLAGS. Export HOST_LIBS.
3924 (POSTSTAGE1_HOST_EXPORTS): Set CXX and CXX_FOR_BUILD. Add
3925 POSTSTAGE1_LDFLAGS to LDFLAGS. Export HOST_LIBS.
3926 (POSTSTAGE1_FLAGS_TO_PASS): Likewise.
3927 * configure, Makefile.in: Rebuild.
3928
3929 2009-06-08 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3930
3931 * configure.ac: Detect MPC in default directory.
3932 * configure: Regenerate.
3933
3934 2009-06-02 Richard Sandiford <r.sandiford@uk.ibm.com>
3935
3936 * configure.ac (powerpc-*-aix*, rs6000-*-aix*): Add target-newlib
3937 to noconfdirs.
3938 * configure: Regenerate.
3939
3940 2009-05-29 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3941
3942 * Makefile.def: Add MPC support and dependencies.
3943 * configure.ac: Likewise. Reorganize GMP/MPFR checks.
3944
3945 * Makefile.in, configure: Regenerate.
3946
3947 2009-05-24 Nicolas Roche <roche@adacore.com>
3948
3949 * Makefile.tpl (compare-target): Skip ./ada/*tools directories.
3950 * Makefile.in: Regenerate.
3951
3952 2009-05-21 Dave Korn <dave.korn.cygwin@gmail.com>
3953
3954 * configure.ac (cygwin noconfigdirs): Remove libgcj.
3955 * configure: Regenerate.
3956
3957 2009-05-07 Dave Korn <dave.korn.cygwin@gmail.com>
3958
3959 * configure.ac ($with_ppl): Default to no if not supplied.
3960 ($with_cloog): Likewise.
3961 configure: Regenerate.
3962
3963 2009-04-24 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3964
3965 PR bootstrap/39739
3966 * configure.ac (extra_mpfr_configure_flags): Set and AC_SUBST.
3967 * Makefile.def (module=mpfr): Use extra_mpfr_configure_flags.
3968
3969 * configure, Makefile.in: Regenerate.
3970
3971 2009-04-14 Jakub Jelinek <jakub@redhat.com>
3972
3973 * configure.ac: Change copyright header to refer to version
3974 3 of the GNU General Public License and to point readers at the
3975 COPYING3 file and the FSF's license web page.
3976 * Makefile.def: Likewise.
3977 * Makefile.tpl: Likewise.
3978 * Makefile.in: Regenerate.
3979
3980 2009-04-09 Jack Howarth <howarth@bromo.med.uc.edu>
3981
3982 * configure.ac: Restore match for darwin9 or later. Use double
3983 brackets since regeneration eats one pair.
3984 * configure: Regenerate.
3985
3986 2009-08-18 Christopher Faylor <me+cygwin@cgf.cx>
3987
3988 * MAINTAINERS: Perform some obvious fixups.
3989
3990 2009-08-17 Ben Elliston <bje@au.ibm.com>
3991
3992 * config.sub, config.guess: Update from upstream sources.
3993
3994 2009-08-06 Michael Eager <eager@eagercon.com>
3995
3996 * configure.ac: Add Microblaze target.
3997 * configure: Regenerate.
3998
3999 2009-07-02 Tristan Gingold <gingold@adacore.com>
4000
4001 * configure.ac: Do not exclude gas for i386-*-darwin.
4002 Add a case for x86_64-*-darwin.
4003 * configure: Regenerate.
4004
4005 2009-06-26 Doug Evans <dje@sebabeach.org>
4006
4007 * Makefile.def (host_modules): Add cgen.
4008 * Makefile.in: Regenerate.
4009 * configure.ac (host_tools): Add cgen.
4010 * configure: Regenerate.
4011
4012 2009-06-17 Michael Eager <eager@eagercon.com>
4013
4014 * COPYING.LIBGLOSS: Add Xilinx license.
4015
4016 2009-06-15 Ryan Mansfield <rmansfield@qnx.com>
4017
4018 * configure.ac: Define is_elf for QNX Neutrino targets.
4019 * configure: Regenerate.
4020
4021 2009-06-03 Jerome Guitton <guitton@adacore.com>
4022 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4023
4024 * Makefile.tpl (all): Avoid a trailing backslash.
4025 * Makefile.in: Regenerate.
4026
4027 2009-06-03 Ben Elliston <bje@au.ibm.com>
4028
4029 * config.sub, config.guess: Update from upstream sources.
4030
4031 2009-06-02 Alexandre Oliva <aoliva@redhat.com>
4032
4033 * Makefile.tpl ([+compare-target+]): Compare all stage
4034 directories, rather than just gcc.
4035 * Makefile.in: Rebuilt.
4036
4037 2009-05-28 Doug Kwan <dougkwan@google.com>
4038
4039 * configure.ac: Support gold for target arm*-*-*.
4040 * configure: Regenerate.
4041
4042 2009-05-27 Alexandre Oliva <aoliva@redhat.com>
4043
4044 * Makefile.tpl (all): Avoid harmless warning in make all when
4045 gcc-bootstrap is enabled but stage_last does not exist.
4046 * Makefile.in: Rebuilt.
4047
4048 2009-05-25 Tristan Gingold <gingold@adacore.com>
4049
4050 * setup.com: Complete the file with configuration and build.
4051
4052 2009-05-18 Alexandre Oliva <aoliva@redhat.com>
4053
4054 PR other/40159
4055 * Makefile.tpl (all): Don't assume gcc-bootstrap and
4056 gcc-no-bootstrap are mutually exclusive.
4057 * Makefile.in: Rebuilt.
4058
4059 2009-05-18 Alexandre Oliva <aoliva@redhat.com>
4060
4061 PR other/40159
4062 * Makefile.tpl (all): Don't end with unconditional success.
4063 * Makefile.in: Rebuilt.
4064
4065 2009-05-12 Alexandre Oliva <aoliva@redhat.com>
4066
4067 PR target/37137
4068 * Makefile.def (flags_to_pass): Remove redundant and incomplete
4069 STAGE1_CFLAGS, STAGE2_CFLAGS, STAGE3_CFLAGS, and STAGE4_CFLAGS.
4070 Add FLAGS_FOR_TARGET and BUILD_CONFIG.
4071 (bootstrap_stage): Remove bootstrap-debug custom stages. Turn
4072 stage_configureflags, stage_cflags and stage_libcflags into
4073 explicit Makefile macros.
4074 * Makefile.tpl (HOST_EXPORTS, EXTRA_HOST_FLAGS): Pass GCJ and
4075 GFORTRAN.
4076 (POSTSTAGE1_HOST_EXPORTS): Add XGCC_FLAGS_FOR_TARGET and TFLAGS to
4077 CC. Set CC_FOR_BUILD from CC.
4078 (BASE_TARGET_EXPORTS, RAW_CXX_TARGET_EXPORTS,
4079 NORMAL_TARGET_EXPORTS): Move SYSROOT_CFLAGS_FOR_TARGET and
4080 DEBUG_PREFIX_CFLAGS_FOR_TARGET from CFLAGS and CXXFLAGS to
4081 XGCC_FLAGS_FOR_TARGET. Add it along with TFLAGS to CC, CXX, GCJ,
4082 and GFORTRAN.
4083 (TFLAGS, STAGE_CFLAGS, STAGE_TFLAGS, STAGE_CONFIGURE_FLAGS): New.
4084 (_LIBCFLAGS): Renamed to _TFLAGS.
4085 (do-compare-debug, do-compare3-debug): Drop.
4086 (CC, GCC_FOR_TARGET, CXX_FOR_TARGET, RAW_CXX_FOR_TARGET,
4087 GCJ_FOR_TARGET, GFORTRAN_FOR_TARGET): Remove FLAGS_FOR_TARGET.
4088 (FLAGS_FOR_TARGET, SYSROOT_CFLAGS_FOR_TARGET,
4089 DEBUG_PREFIX_CFLAGS_FOR_TARGET): Move down.
4090 (XGCC_FLAGS_FOR_TARGET): New.
4091 (BASE_FLAGS_TO_PASS): Pass STAGEid_CFLAGS, STAGEid_TFLAGS and TFLAGS.
4092 (EXTRA_HOST_FLAGS): Pass GCJ and GFORTRAN.
4093 (POSTSTAGE1_FLAGS_TO_PASS): Move SYSROOT_CFLAGS_FOR_TARGET and
4094 DEBUG_PREFIX_CFLAGS_FOR_TARGET from CFLAGS, CXXFLAGS, LIBCFLAGS,
4095 LIBCXXFLAGS to XGCC_FLAGS_FOR_TARGET. Add it along with TFLAGS
4096 to CC, CXX, GCJ, and GFORTRAN. Pass XGCC_FLAGS_FOR_TARGET and
4097 TFLAGS.
4098 (BUILD_CONFIG): Include if requested.
4099 (all): Set TFLAGS on bootstrap.
4100 (configure-stageid-prefixmodule): Pass TFLAGS, adjust FLAGS.
4101 (all-stageid-prefixmodule): Likewise.
4102 (do-clean, distclean-stageid): Set TFLAGS.
4103 (restrap): Fix whitespace.
4104 * Makefile.in: Rebuilt.
4105
4106 2009-04-25 Eric Botcazou <ebotcazou@adacore.com>
4107
4108 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Add GNATBIND.
4109 (POSTSTAGE1_FLAGS_TO_PASS): Pick up exported value for GNATBIND.
4110 * Makefile.in: Regenerate.
4111
4112 2009-04-24 Eli Zaretskii <eliz@gnu.org>
4113
4114 * config.guess (pc:*:*:*): Return i586-pc-msdosdjgpp, for
4115 consistency with config.sub. (Update from upstream sources.)
4116
4117 2009-04-21 Joseph Myers <joseph@codesourcery.com>
4118
4119 * texinfo/texinfo.tex: Update to version 2009-03-28.05.
4120
4121 2009-04-17 Ben Elliston <bje@au.ibm.com>
4122
4123 * config.sub, config.guess: Update from upstream sources.
4124
4125 2009-04-15 Anthony Green <green@moxielogic.com>
4126
4127 * configure.ac: Add moxie support.
4128 * configure: Rebuilt.
4129
4130 2009-04-09 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4131
4132 * configure.ac: Bump minimum GMP/MPFR versions to 4.2 and 2.3.1.
4133 * configure: Regenerate.
4134
4135 2009-04-09 H.J. Lu <hongjiu.lu@intel.com>
4136
4137 PR gas/10039
4138 * configure.ac: Require texinfo 4.7.
4139 * configure: Regenerated.
4140
4141 2009-04-09 Steve Ellcey <sje@cup.hp.com>
4142
4143 * Makefil.def (languages): New entries.
4144 * Makefile.tpl (check-gcc-*): New generic target.
4145 * Makefile.in: Regenerate.
4146
4147 2009-03-27 Eli Zaretskii <eliz@gnu.org>
4148
4149 * djunpack.bat: Use ".." quoting in Sed command, for the sake of
4150 Windows builds of Sed.
4151
4152 2009-03-18 Tom Tromey <tromey@redhat.com>
4153
4154 * configure: Rebuild.
4155 * configure.ac (host_libs): Add libiconv.
4156 * Makefile.in: Rebuild.
4157 * Makefile.def (host_modules): Add libiconv.
4158 (configure-gdb, all-gdb): Depend on libiconv.
4159
4160 2009-03-16 Tristan Gingold <gingold@adacore.com>
4161
4162 * configure.ac: Treat gdb as supported on x86_64-darwin.
4163 * configure: Regenerate.
4164
4165 2009-03-16 Joseph Myers <joseph@codesourcery.com>
4166
4167 Merge from GCC:
4168
4169 2009-03-16 Joseph Myers <joseph@codesourcery.com>
4170
4171 * configure.ac (--with-host-libstdcxx): New option.
4172 * configure: Regenerate.
4173
4174 2009-01-29 Robert Millan <rmh@aybabtu.com>
4175
4176 * configure.ac: Recognize GNU/kOpenSolaris (*-*-kopensolaris*-gnu).
4177 * configure: Regenerate.
4178
4179 2009-01-12 Sebastian Pop <sebastian.pop@amd.com>
4180
4181 PR tree-optimization/38515
4182 * configure.ac (cloog-polylib): Removed.
4183 (with_ppl, with_cloog): Test for "no".
4184 * configure: Regenerated.
4185
4186 2009-03-01 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4187
4188 Backport from git Libtool:
4189
4190 2009-01-19 Robert Millan <rmh@aybabtu.com>
4191 Support GNU/kOpenSolaris.
4192 * libltdl/m4/libtool.m4 (_LT_SYS_DYNAMIC_LINKER)
4193 (_LT_CHECK_MAGIC_METHOD, _LT_COMPILER_PIC, _LT_LINKER_SHLIBS)
4194 (_LT_LANG_CXX_CONFIG) [kopensolaris*-gnu]: Recognize
4195 GNU/kOpenSolaris.
4196
4197 2009-02-05 Andreas Schwab <schwab@suse.de>
4198
4199 * Makefile.tpl (stage_last): Define $r and $s before using
4200 $(RECURSE_FLAGS_TO_PASS).
4201 * Makefile.in: Regenerate
4202
4203 2009-01-21 Jeff Johnston <jjohnstn@redhat.com>
4204
4205 * COPYING.NEWLIB: Add ARM license.
4206
4207 2009-01-16 Alan Modra <amodra@bigpond.net.au>
4208
4209 * Makefile.def (configure-opcodes): Depend on configure-libiberty.
4210 (all-opcodes): Depend on all-libiberty.
4211 * Makefile.in: Regenerate.
4212
4213 2009-01-15 Douglas B Rupp <rupp@gnat.com>
4214
4215 * configure.ac (ia64*-*-*vms*): Add case with no gdb or ld support.
4216 * configure: Regenerate.
4217
4218 2008-12-18 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4219
4220 Backport link test fix from upstream Libtool:
4221
4222 * libltdl.m4 (_LT_SYS_DYNAMIC_LINKER, _LT_LINKER_SHLIBS):
4223 Add cache variables to tests that require the linker to work.
4224 For shlibpath_overrides_runpath, this also changes the semantics
4225 to let the result from the C compiler take precedence.
4226 compiler take precedence.
4227
4228 2008-12-02 Ben Elliston <bje@au.ibm.com>
4229
4230 * config.sub, config.guess: Update from upstream sources.
4231
4232 2008-12-17 Jeff Johnston <jjohnstn@redhat.com>
4233
4234 * COPYING.NEWLIB: Updated.
4235 * COPYING.LIBGLOSS: Ditto.
4236
4237 2008-12-16 Paolo Bonzini <bonzini@gnu.org>
4238
4239 Sync with GCC:
4240
4241 2008-12-12 Sebastian Pop <sebastian.pop@amd.com>
4242
4243 * configure.ac (ppllibs): Add by default the lib flags.
4244 * configure: Regenerate.
4245
4246 2008-12-04 Jack Howarth <howarth@bromo.med.uc.edu>
4247
4248 * configure.ac: Add double brackets on darwin[912].
4249 * configure: Regenerate.
4250
4251 2008-12-02 Jack Howarth <howarth@bromo.med.uc.edu>
4252
4253 * configure.ac: Expand to darwin10 and later.
4254 * configure: Regenerate.
4255
4256 2008-12-02 Andreas Schwab <schwab@suse.de>
4257
4258 * Makefile.def: configure-target-boehm-gc depends on
4259 all-target-libstdc++-v3.
4260 * Makefile.in: Regenerate.
4261
4262 2008-12-02 Ben Elliston <bje@au.ibm.com>
4263
4264 * config.sub, config.guess: Update from upstream sources.
4265
4266 2008-11-27 Joseph Myers <joseph@codesourcery.com>
4267
4268 Merge from GCC:
4269
4270 2007-12-02 Matthias Klose <doko@ubuntu.com>
4271
4272 * config-ml.in: Remove 64bit configure tests.
4273
4274 2008-05-14 Rafael Espindola <espindola@google.com>
4275
4276 * config-ml.in: don't handle --enable-shared and --enable-static.
4277
4278 2008-09-02 Sebastian Pop <sebastian.pop@amd.com>
4279 Tobias Grosser <grosser@fim.uni-passau.de>
4280 Jan Sjodin <jan.sjodin@amd.com>
4281 Harsha Jagasia <harsha.jagasia@amd.com>
4282 Dwarakanath Rajagopal <dwarak.rajagopal@amd.com>
4283 Konrad Trifunovic <konrad.trifunovic@inria.fr>
4284 Adrien Eliche <aeliche@isty.uvsq.fr>
4285
4286 Merge from graphite branch.
4287 * configure: Regenerate.
4288 * Makefile.in: Regenerate.
4289 * configure.ac (host_libs): Add ppl and cloog.
4290 Add checks for PPL and CLooG.
4291 * Makefile.def (ppl, cloog): Added modules and dependences.
4292 * Makefile.tpl (PPLLIBS, PPLINC, CLOOGLIBS, CLOOGINC): New.
4293 (HOST_PPLLIBS, HOST_PPLINC, HOST_CLOOGLIBS, HOST_CLOOGINC): New.
4294
4295 2008-09-03 Richard Guenther <rguenther@suse.de>
4296
4297 * configure.ac: Always pass -DCLOOG_PPL_BACKEND to the
4298 cloog test.
4299 * configure: Re-generate.
4300
4301 2008-09-03 Sebastian Pop <sebastian.pop@amd.com>
4302
4303 * configure.ac (--with-cloog-polylib): New.
4304 (--disable-cloog-version-check): New.
4305 (--disable-ppl-version-check): New.
4306 * configure: Re-generate.
4307
4308 2008-09-05 Richard Guenther <rguenther@suse.de>
4309
4310 * configure.ac: Initialize clooglibs to -lcloog.
4311 * configure: Re-generate.
4312
4313 2008-10-13 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4314
4315 * configure.ac (MPFR check): Bump minimum version to 2.3.0 and
4316 recommended version to 2.3.2.
4317
4318 * configure: Regenerate.
4319
4320 2008-10-31 Ben Elliston <bje@au.ibm.com>
4321
4322 * configure.ac (spu-*-*): Remove special case.
4323 * configure: Regenerate.
4324
4325 Complete comment text from GCC version of:
4326
4327 2008-08-31 Aaron W. LaFramboise <aaronavay62@aaronwl.com>
4328
4329 * configure.ac (RPATH_ENVVAR): Use PATH on Windows.
4330 (GCC_SHLIB_SUBDIR): New.
4331 * Makefile.tpl (HOST_LIB_PATH_gcc): Use GCC_SHLIB_SUBDIR.
4332 * configure: Regenerate.
4333 * Makefile.in: Regenerate.
4334
4335 2008-11-27 Tristan Gingold <gingold@adacore.com>
4336
4337 * configure.ac: Build gdb for i?86-*-darwin*
4338 * configure: Regenerated.
4339
4340 2008-11-14 Daniel Jacobowitz <dan@codesourcery.com>
4341
4342 PR bootstrap/38014
4343 PR bootstrap/37923
4344
4345 Revert:
4346
4347 2008-10-24 Daniel Jacobowitz <dan@codesourcery.com>
4348
4349 * Makefile.tpl (HOST_EXPORTS): Correct CPPFLAGS typo.
4350 * Makefile.in: Regenerated.
4351
4352 2008-10-22 Daniel Jacobowitz <dan@codesourcery.com>
4353
4354 PR gdb/921
4355 PR gdb/1646
4356 PR gdb/2175
4357 PR gdb/2176
4358
4359 * Makefile.def (flags_to_pass): Add CPPFLAGS_FOR_BUILD and CPPFLAGS.
4360 * Makefile.tpl (BUILD_EXPORTS): Set CPPFLAGS.
4361 (EXTRA_BUILD_FLAGS): Correct typo. Pass CPPFLAGS.
4362 (HOST_EXPORTS): Pass CPPFLAGS.
4363 (CPPFLAGS_FOR_BUILD, CPPFLAGS, CPPFLAGS_FOR_TARGET): Define.
4364 (LDFLAGS_FOR_TARGET): Initialize from configure script.
4365 (EXTRA_TARGET_FLAGS): Set CPPFLAGS.
4366 * Makefile.in, configure: Regenerated.
4367 * configure.ac: Set CPPFLAGS_FOR_TARGET, LDFLAGS_FOR_TARGET,
4368 and CPPFLAGS_FOR_BUILD.
4369
4370 2008-10-29 Stefan Schulze Frielinghaus <xxschulz@de.ibm.com>
4371
4372 * configure.ac [spu-*-*]: Do not set skipdirs.
4373 * configure: Re-generate.
4374
4375 2008-10-24 Daniel Jacobowitz <dan@codesourcery.com>
4376
4377 * Makefile.tpl (HOST_EXPORTS): Correct CPPFLAGS typo.
4378 * Makefile.in: Regenerated.
4379
4380 2008-10-22 Daniel Jacobowitz <dan@codesourcery.com>
4381
4382 PR gdb/921
4383 PR gdb/1646
4384 PR gdb/2175
4385 PR gdb/2176
4386
4387 * Makefile.def (flags_to_pass): Add CPPFLAGS_FOR_BUILD and CPPFLAGS.
4388 * Makefile.tpl (BUILD_EXPORTS): Set CPPFLAGS.
4389 (EXTRA_BUILD_FLAGS): Correct typo. Pass CPPFLAGS.
4390 (HOST_EXPORTS): Pass CPPFLAGS.
4391 (CPPFLAGS_FOR_BUILD, CPPFLAGS, CPPFLAGS_FOR_TARGET): Define.
4392 (LDFLAGS_FOR_TARGET): Initialize from configure script.
4393 (EXTRA_TARGET_FLAGS): Set CPPFLAGS.
4394 * Makefile.in, configure: Regenerated.
4395 * configure.ac: Set CPPFLAGS_FOR_TARGET, LDFLAGS_FOR_TARGET,
4396 and CPPFLAGS_FOR_BUILD.
4397
4398 2008-09-29 Peter O'Gorman <pogma@thewrittenword.com>
4399
4400 * libtool.m4: Update to libtool 2.2.6.
4401 * lt~obsolete.m4: Update to libtool 2.2.6.
4402 * ltmain.sh: Update to libtool 2.2.6.
4403 * ltsugar.m4: Update to libtool 2.2.6.
4404 * ltversion.m4: Update to libtool 2.2.6.
4405 * ltoptions.m4: Update to libtool 2.2.6.
4406 * ltgcc.m4: Update to match changes from libtool 2.2.6.
4407
4408 2008-08-31 Aaron W. LaFramboise <aaronavay62@aaronwl.com>
4409
4410 * configure.ac (RPATH_ENVVAR): Use PATH on Windows.
4411 (GCC_SHLIB_SUBDIR): New.
4412 * Makefile.tpl (HOST_LIB_PATH_gcc): Use GCC_SHLIB_SUBDIR.
4413 * configure: Regenerate.
4414 * Makefile.in: Regenerate.
4415
4416 2008-08-28 Tristan Gingold <gingold@adacore.com>
4417
4418 * configure.ac (powerpc-*-darwin*, i?86-*-darwin*,x86_64-*-darwin9):
4419 Enable bfd, binutils and opcodes.
4420 * configure: Regenerate.
4421
4422 2008-08-16 Nicolas Roche <roche@adacore.com>
4423
4424 * Makefile.tpl: Add BOOT_ADAFLAGS.
4425 * Makefile.in: Regenerate.
4426
4427 2008-08-16 Richard Sandiford <rdsandiford@googlemail.com>
4428
4429 * configure.ac (mips*-*-*linux*, mips*-*-gnu*): Use mt-mips-gnu.
4430 * configure: Regenerate.
4431
4432 2008-07-30 Paolo Bonzini <bonzini@gnu.org>
4433
4434 Sync with gcc:
4435 2008-07-30 Paolo Bonzini <bonzini@gnu.org>
4436
4437 * configure.ac: Add makefile fragments for hpux.
4438 * Makefile.def (flags_to_pass): Add ADA_CFLAGS.
4439 * Makefile.tpl (HOST_EXPORTS): Pass ADA_CFLAGS.
4440 * configure: Regenerate.
4441 * Makefile.in: Regenerate.
4442
4443 2008-06-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4444
4445 * Makefile.tpl ($(srcdir)/configure): Update dependencies.
4446 * Makefile.in: Regenerate.
4447 * configure: Regenerate.
4448
4449 2008-06-18 Ian Lance Taylor <iant@google.com>
4450
4451 * src-release (BINUTILS_SUPPORT_DIRS): Remove mkdep and depcomp.
4452
4453 * src-release (BINUTILS_SUPPORT_DIRS): Add depcomp.
4454
4455 2008-06-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4456
4457 * configure: Regenerate.
4458
4459 2008-06-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4460
4461 * configure.ac: Set TOPLEVEL_CONFIGURE_ARGUMENTS early, when
4462 "$@" is still intact with both Autoconf 2.59 and 2.62.
4463 * configure: Regenerate.
4464
4465 2008-06-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4466
4467 * Makefile.tpl: Fix comment errors.
4468 * Makefile.in: Regenerate.
4469
4470 2008-06-13 Julian Brown <julian@codesourcery.com>
4471
4472 * configure.ac (arm*-*-linux-gnueabi): Don't disable building
4473 of libobjc for ARM EABI Linux.
4474 * configure: Regenerate.
4475
4476 2008-06-12 David S. Miller <davem@davemloft.net>
4477 David Edelsohn <edelsohn@gnu.org>
4478
4479 * configure.ac: Add powerpc*-*-* to gold supported targets.
4480 * configure: Regenerate.
4481
4482 2008-06-08 Joseph Myers <joseph@codesourcery.com>
4483
4484 PR tree-optimization/36218
4485 * Makefile.def (flags_to_pass): Add LDFLAGS_FOR_BUILD.
4486 * Makefile.tpl (EXTRA_BUILD_FLAGS): Define.
4487 (all prefix="build-"): Pass them to build-system sub-makes.
4488 * Makefile.in: Regenerate.
4489
4490 2008-05-16 Daniel Jacobowitz <dan@codesourcery.com>
4491
4492 * src-release (DEVO_SUPPORT): Add ChangeLog, MAINTAINERS,
4493 README-maintainer-mode, lt~obsolete.m4, ltgcc.m4, depcomp,
4494 mkdep, and compile. Update comments.
4495 (ETC_SUPPORT): Add ChangeLog and update comments.
4496
4497 2008-05-11 Ian Lance Taylor <iant@google.com>
4498
4499 * src-release (BINUTILS_SUPPORT_DIRS): Add elfcpp and gold.
4500
4501 2008-04-18 Paolo Bonzini <bonzini@gnu.org>
4502
4503 Sync with gcc:
4504 2008-04-18 Paolo Bonzini <bonzini@gnu.org>
4505
4506 PR bootstrap/35457
4507 * configure.ac: Include override.m4.
4508 * configure: Regenerate.
4509
4510 2008-04-18 Paolo Bonzini <bonzini@gnu.org>
4511
4512 * Makefile.tpl (restrap): Call `make all' using double-colon rules.
4513 * Makefile.in: Regenerate.
4514
4515 2008-04-11 Eric B. Weddington <eweddington@cso.atmel.com>
4516
4517 * configure.ac: Do not build libssp for the AVR.
4518 * configure: Regenerate.
4519
4520 2008-04-18 Nick Clifton <nickc@redhat.com>
4521
4522 * MAINTAINERS: Replace reference to configure.in with reference to
4523 configure.ac.
4524
4525 2008-04-18 M R Swami Reddy <MR.Swami.Reddy@nsc.com>
4526
4527 * configure.ac (cr16-*-*): Add case for cr16 target and include gdb
4528 as nonconfigurable directories list.
4529 * configure: Regenerate.
4530
4531 2008-04-14 David S. Miller <davem@davemloft.net>
4532
4533 * configure.ac: Add sparc*-*-* to gold supported targets.
4534 * configure: Regenerate.
4535
4536 2008-04-14 Ben Elliston <bje@au.ibm.com>
4537
4538 * config.sub, config.guess: Update from upstream sources.
4539
4540 2008-04-12 Hans-Peter Nilsson <hp@axis.com>
4541
4542 * Makefile.tpl <gcc>: Error early unless at least GNU make 3.80.
4543 * Makefile.in: Regenerate.
4544
4545 2008-04-07 Ian Lance Taylor <iant@google.com>
4546
4547 * Makefile.def: check-gold depends upon all-binutils.
4548 * Makefile.in: Regenerate.
4549
4550 2008-04-04 Nick Clifton <nickc@redhat.com>
4551
4552 PR binutils/4334
4553 * configure.ac: Run ACX_CHECK_CYGWIN_CAT_WORKS for cygwin hosted
4554 builds.
4555 * configure: Regenerate.
4556
4557 2008-04-04 NightStrike <NightStrike@gmail.com>
4558
4559 PR other/35151
4560 * configure.ac: Combine rules for mingw32 and mingw64.
4561 * configure: Regenerate.
4562
4563 2008-03-27 Paolo Bonzini <bonzini@gnu.org>
4564
4565 * Makefile.tpl (PICFLAG, PICFLAG_FOR_TARGET): Remove.
4566 * Makefile.in: Regenerate.
4567
4568 2008-03-20 Ian Lance Taylor <iant@google.com>
4569
4570 * configure.ac: Add support for --enable-gold.
4571 * Makefile.def: Add gold as a directory like ld.
4572 * configure, Makefile.in: Regenerate.
4573
4574 2008-03-19 Andreas Krebbel <krebbel1@de.ibm.com>
4575
4576 * opcodes/s390-mkopc.c (s390_opcode_cpu_val): S390_OPCODE_Z10 added.
4577 (s390_cond_extensions): Reduced extensions to the compare related.
4578 (main): z10 cpu type option added.
4579 (expandConditionalJump): Renamed to ...
4580 (insertExpandedMnemonic): ... this.
4581
4582 * opcodes/s390-opc.c: Re-group the operand format makros.
4583 (INSTR_RIE_RRPU, INSTR_RIE_RRP0, INSTR_RIE_RUPI,
4584 INSTR_RIE_R0PI, INSTR_RIE_RUPU, INSTR_RIE_R0PU, INSTR_RIE_R0IU,
4585 INSTR_RIE_R0I0, INSTR_RIE_R0UU, INSTR_RIE_R0U0,
4586 INSTR_RIE_RRUUU, INSTR_RIS_RURDI, INSTR_RIS_R0RDI, INSTR_RIS_RURDU,
4587 INSTR_RIS_R0RDU, INSTR_RRF_U0RR, INSTR_RRF_00RR, INSTR_RRS_RRRDU,
4588 INSTR_RRS_RRRD0, INSTR_RXY_URRD, INSTR_SIY_IRD, INSTR_SIL_RDI,
4589 INSTR_SIL_RDU): New instruction formats added.
4590 (MASK_RIE_RRPU, MASK_RIE_RRP0, MASK_RIE_RUPI, MASK_RIE_R0PI,
4591 MASK_RIE_RUPU, MASK_RIE_R0PU, MASK_RIE_R0IU, MASK_RIE_R0I0,
4592 MASK_RIE_R0UU, MASK_RIE_R0U0, MASK_RIE_RRUUU, MASK_RIS_RURDI,
4593 MASK_RIS_R0RDI, MASK_RIS_RURDU, MASK_RIS_R0RDU, MASK_RRF_U0RR,
4594 MASK_RRF_00RR, MASK_RRS_RRRDU, MASK_RRS_RRRD0, MASK_RXY_URRD,
4595 MASK_SIY_IRD, MASK_SIL_RDI, MASK_SIL_RDU): New instruction format
4596 masks added.
4597 (s390_opformats): New formats added "ris", "rrs", "sil".
4598 * opcodes/s390-opc.txt: Add the conditional jumps with the
4599 extensions removed from automatic expansion in s390-mkopc.c manually.
4600 (asi - trtre): Add new System z10 EC instructions.
4601 * include/opcode/s390.h (s390_opcode_cpu_val): S390_OPCODE_Z10 added.
4602
4603 2008-03-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4604
4605 * configure.ac: m4_include config/proginstall.m4.
4606 * configure: Regenerate.
4607
4608 2008-03-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4609
4610 Backport from upstream Libtool:
4611
4612 2007-10-12 Eric Blake <ebb9@byu.net>
4613
4614 Deal with Autoconf 2.62's semantic change in m4_append.
4615 * ltsugar.m4 (lt_append): Replace broken versions of
4616 m4_append.
4617 (lt_if_append_uniq): Don't require separator to be overquoted,
4618 and avoid broken m4_append.
4619 (lt_dict_add): Fix typo.
4620 * libtool.m4 (_LT_DECL): Don't overquote separator.
4621
4622 2008-03-13 David Edelsohn <edelsohn@gnu.org>
4623
4624 * config.rpath: Add AIX 6 support.
4625
4626 2008-03-13 Paolo Bonzini <bonzini@gnu.org>
4627
4628 * Makefile.def (stageprofile). Remove -fprofile-generate
4629 from stage_libcflags.
4630 * Makefile.in: Regenerate.
4631
4632 2008-03-13 Ben Elliston <bje@au.ibm.com>
4633
4634 * config.sub, config.guess: Update from upstream sources.
4635
4636 2008-03-06 Florian Krohm <fkrohm@us.ibm.com>
4637
4638 * s390-opc.c (INSTR_RSL_R0RD): Fix operands.
4639 * s390-opc.txt (cmpsc): Duplicate entry removed.
4640 (dxr, sqdr, sqer, cxfbr, cdfbr, cefbr, lzer, lzdr, lzxr,
4641 cegbr, cdgbr, cxgbr, cegr, cdgr, cxgr, cxfr, cdfr, cefr, fixr, fidr,
4642 fier, cu42, cu41): Fix operand format.
4643
4644 2008-02-20 Paolo Bonzini <bonzini@gnu.org>
4645
4646 PR bootstrap/32009
4647 PR bootstrap/32161
4648
4649 * configure.ac (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Compute here.
4650 * configure: Regenerate.
4651
4652 * Makefile.def: Define stage_libcflags for all bootstrap stages.
4653 * Makefile.tpl (BOOT_LIBCFLAGS, STAGE2_LIBCFLAGS, STAGE3_LIBCFLAGS,
4654 STAGE4_LIBCFLAGS): New.
4655 (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Subst from autoconf, without
4656 $(SYSROOT_CFLAGS_FOR_TARGET) and $(DEBUG_PREFIX_CFLAGS_FOR_TARGET).
4657 (BASE_TARGET_EXPORTS): Append them here to C{,XX}FLAGS.
4658 (EXTRA_TARGET_FLAGS): Append them here to {LIB,}C{,XX}FLAGS.
4659 (configure-stage[+id+]-[+prefix+][+module+]): Pass stage_libcflags
4660 for target modules. Don't export LIBCFLAGS.
4661 (all-stage[+id+]-[+prefix+][+module+]): Pass stage_libcflags; pass
4662 $(BASE_FLAGS_TO_PASS) where [+args+] was passed, and [+args+] after
4663 the overridden CFLAGS_FOR_TARGET and CXXFLAGS_FOR_TARGET.
4664 (invocations of `all'): Replace $(TARGET_FLAGS_TO_PASS) with
4665 $(EXTRA_TARGET_FLAGS), $(FLAGS_TO_PASS) with $(EXTRA_HOST_FLAGS).
4666 * Makefile.in: Regenerate.
4667
4668 2008-02-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4669
4670 PR libgcj/33085
4671 * libtool.m4 (_LT_COMPILER_PIC) [ mingw, cygwin ] <GCJ>:
4672 Do not use -DDLL_EXPORT. Backport from upstream.
4673
4674 2008-02-14 Nick Clifton <nickc@redhat.com>
4675
4676 Import this patch from gcc:
4677 2008-01-24 David Edelsohn <edelsohn@gnu.org>
4678
4679 * libtool.m4: Backport AIX 6 support from ToT Libtool.
4680
4681 2008-02-02 Hans-Peter Nilsson <hp@axis.com>
4682
4683 * configure.ac: Enable fortran for cris-*-elf and crisv32-*-elf.
4684 * configure: Regenerate.
4685
4686 2008-01-31 Marc Gauthier <marc@tensilica.com>
4687
4688 * configure.ac (xtensa*-*-*): Recognize processor variants.
4689 * configure: Regenerate.
4690
4691 2008-01-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4692
4693 PR bootstrap/34922
4694 * configure.ac (PARSE_ARGS): Push suitable setting of
4695 ac_subdirs_all, for `./configure --help=recursive'.
4696 Handle `+' in generic toplevel directory disabling.
4697 * configure: Regenerate.
4698
4699 2008-01-23 Ben Elliston <bje@au.ibm.com>
4700
4701 * config.sub, config.guess: Update from upstream sources.
4702
4703 2008-01-08 Ben Elliston <bje@au.ibm.com>
4704
4705 * config.sub, config.guess: Update from upstream sources.
4706
4707 2007-12-19 Jeff Johnston <jjohnstn@redhat.com>
4708
4709 * COPYING.LIBGLOSS: Update default copyright.
4710
4711 2007-12-19 Jeff Johnston <jjohnstn@redhat.com>
4712
4713 * COPYING.NEWLIB: Update default copyright.
4714
4715 2007-12-17 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4716
4717 * configure.ac: Change required MPFR from 2.2.0 -> 2.2.1.
4718 Change recommended MPFR from 2.2.1 > 2.3.0.
4719 * configure: Regenerate.
4720
4721 2007-12-13 Richard Sandiford <rsandifo@nildram.co.uk>
4722
4723 * Makefile.tpl (CFLAGS_FOR_TARGET): Add -g.
4724 (CXXFLAGS_FOR_TARGET): Add -O2 -g.
4725 * Makefile.in: Regenerate.
4726
4727 2007-12-10 Andreas Tobler <a.tobler@schweiz.org>
4728
4729 * configure.ac: Enable libjava for x86_64-*-darwin9.
4730 * configure: Regenerate.
4731
4732 2007-12-05 Ben Elliston <bje@au.ibm.com>
4733
4734 * config.sub, config.guess: Update from upstream sources.
4735
4736 2007-11-28 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4737
4738 * config-ml.in: Robustify against white space in absolute file
4739 names.
4740
4741 * config-ml.in (multi-clean): Substitute ${Makefile}.
4742 Remove superfluous ${Makefile} in list.
4743
4744 2007-10-23 Daniel Jacobowitz <dan@codesourcery.com>
4745
4746 * Makefile.def (dependencies): Make configure-gdb depend on
4747 all-intl.
4748 * Makefile.in: Regenerated.
4749
4750 2007-10-15 Patrick Mansfield <patmans@us.ibm.com>
4751
4752 * Makefile.def: To avoid problems running with parallel makes,
4753 build newlib before libgloss so that target specific header
4754 files are availble.
4755 * Makefile.in: Regenerate.
4756
4757 2007-10-11 Daniel Jacobowitz <dan@codesourcery.com>
4758
4759 * Makefile.def (dependencies): Add all-gdb -> all-libdecnumber.
4760 * Makefile.in: Regenerate.
4761
4762 2007-10-11 Daniel Jacobowitz <dan@codesourcery.com>
4763
4764 * src-release (GDB_SUPPORT_DIRS): Add libdecnumber.
4765 * libdecnumber: New directory, imported from GCC.
4766
4767 2007-10-08 Mike Frysinger <vapier@gentoo.org>
4768
4769 * configure.ac (CFLAGS_FOR_BUILD, CXXFLAGS_FOR_BUILD,
4770 LDFLAGS_FOR_BUILD): Default them to host flags only for $host = $build.
4771 Set default CXXFLAGS_FOR_BUILD to CXXFLAGS, not CFLAGS. Set default
4772 LDFLAGS_FOR_BUILD to LDFLAGS, not CFLAGS.
4773 * configure: Regenerate.
4774
4775 2007-10-01 Paolo Bonzini <bonzini@gnu.org>
4776
4777 * Makefile.tpl (AR_FOR_BUILD, AS_FOR_BUILD, CXX_FOR_BUILD,
4778 DLLTOOL_FOR_BUILD, GCJ_FOR_BUILD, GFORTRAN_FOR_BUILD,
4779 LDFLAGS_FOR_BUILD, LD_FOR_BUILD, NM_FOR_BUILD, RANLIB_FOR_BUILD,
4780 WINDMC_FOR_BUILD, WINDRES_FOR_BUILD): Use autoconf substitutions.
4781 * configure.ac: Default them to host tools for $host = $build.
4782 Subst them.
4783
4784 * configure: Regenerate.
4785 * Makefile.in: Regenerate.
4786
4787 2007-09-20 Richard Sandiford <rsandifo@nildram.co.uk>
4788
4789 * configure.ac (mipsisa*-*-elfoabi*): New stanza.
4790 * configure: Regenerate.
4791
4792 2007-09-19 Benjamin Kosnik <bkoz@redhat.com>
4793
4794 * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Move libgomp before
4795 libstdc++.
4796 * Makefile.def: Add libgomp config as a maybe dependency for libstdc++.
4797 * configure: Regenerate.
4798 * Makefile.in: Regenerate.
4799
4800 2007-09-17 Andreas Schwab <schwab@suse.de>
4801
4802 * configure.ac: Raise minimum makeinfo version to 4.6.
4803 * configure: Regenerate.
4804
4805 2007-09-15 Alan Modra <amodra@bigpond.net.au>
4806
4807 * configure.ac: Correct makeinfo version check.
4808 * configure: Regenerate.
4809
4810 2007-09-14 Richard Sandiford <richard@codesourcery.com>
4811
4812 * configure.ac (mips*-sde-elf*): New stanza. Add target-libiberty
4813 to $skipdirs and only disable gprof for newlib. Use the normal
4814 mips*-elf* handling in other respects.
4815 * configure: Regnerate.
4816
4817 2007-09-12 David Daney <ddaney@avtrex.com>
4818
4819 * configure.ac: Remove mips64*-*-linux* noconfigdirs section, thus
4820 enabling libgcj.
4821 * configure: Regenerate.
4822
4823 2007-09-12 Richard Guenther <rguenther@suse.de>
4824
4825 * configure.ac (--enable-stage1-checking): If neither --enable-checking
4826 nor --disable-checking is provided also turn on yes and types
4827 checking for stage1.
4828 * configure: Re-generate.
4829
4830 2007-09-11 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
4831
4832 PR target/33281
4833 * configure.ac: Use config/mh-mingw on mingw.
4834 * configure: Regenerate.
4835
4836 2007-09-10 Rask Ingemann Lambertsen <rask@sygehus.dk>
4837
4838 PR other/32154
4839 * configure.ac: For libgloss targets, point the linker to the linker
4840 script, startup code and simulator library.
4841 * configure: Regenerate.
4842
4843 2007-09-09 Andrew Haley <aph@redhat.com>
4844
4845 * configure.ac (noconfigdirs): Remove target-libffi and
4846 target-libjava.
4847
4848 2007-08-29 Nick Clifton <nickc@redhat.com>
4849
4850 * config.sub, config.guess: Update from upstream sources.
4851
4852 2007-08-21 Richard Guenther <rguenther@suse.de>
4853
4854 * configure.ac: Add types checking to stage1 checking flags.
4855 * configure: Regenerate.
4856
4857 2007-08-18 Paul Brook <paul@codesourcery.com>
4858 Joseph Myers <joseph@codesourcery.com>
4859
4860 * Makefile.tpl (DEBUG_PREFIX_CFLAGS_FOR_TARGET): New.
4861 (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Include it.
4862 * Makefile.in: Regenerate.
4863 * configure.ac (--with-debug-prefix-map): New.
4864 * configure: Regenerate.
4865
4866 2007-08-17 Richard Sandiford <richard@codesourcery.com>
4867 Nigel Stephens <nigel@mips.com>
4868
4869 * configure.ac (mips*-sde-elf*): New stanza. Use config/mt-sde
4870 as target_makefile_frag.
4871 * configure: Regenerate.
4872
4873 2007-08-16 Alexandre Oliva <aoliva@redhat.com>
4874
4875 * Makefile.def (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS):
4876 Add to flags_to_pass. Adjust uses of BOOT_CFLAGS.
4877 (bootstrap2-debug, bootstrap-debug): New bootstrap stages.
4878 * Makefile.tpl (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS): New.
4879 (do-compare, do-compare3, do-compare-debug): New.
4880 ([+compare-target+]): Use them.
4881
4882 2007-08-16 Alexandre Oliva <aoliva@redhat.com>
4883
4884 * Makefile.def (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS):
4885 Add to flags_to_pass. Adjust uses of BOOT_CFLAGS.
4886 (bootstrap2-debug, bootstrap-debug): New bootstrap stages.
4887 * Makefile.tpl (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS): New.
4888 (do-compare, do-compare3, do-compare-debug): New.
4889 ([+compare-target+]): Use them.
4890
4891 2007-08-13 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4892 Ben Elliston <bje@au.ibm.com>
4893
4894 * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS, baseargs): Pass
4895 --silent if $silent.
4896 * configure: Regenerate.
4897
4898 2007-08-12 Daniel Jacobowitz <dan@codesourcery.com>
4899
4900 * src-release (DEVO_SUPPORT): Add COPYING3 and COPYING3.LIB.
4901
4902 2007-07-17 Nick Clifton <nickc@redhat.com>
4903
4904 * COPYING3: New file. Contains version 3 of the GNU General
4905 Public License.
4906 * COPYING3.LIB: New file. Contains version 3 of the GNU
4907 Lesser General Public License.
4908
4909 2007-07-11 Bernd Schmidt <bernd.schmidt@analog.com>
4910
4911 * configure.ac: Fix my previous change to really match GCC.
4912 * configure: Regenerate.
4913
4914 2007-07-11 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4915
4916 * configure.ac: Rewrite 'configure --help' strings to look nicer.
4917 * configure: Regenerate.
4918
4919 2007-07-11 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4920
4921 * configure.ac: Add some missing m4 quotation.
4922 * configure: Regenerate.
4923
4924 2007-07-09 Kai Tietz <kai.tietz@onevision.com>
4925
4926 * Makefile.def: Add windmc tool to build.
4927 * Makefile.tpl: Likewise.
4928 * configure.ac: Likewise.
4929 * Makefile.in: Regenerate.
4930 * configure: Regenerate.
4931
4932 2007-07-05 H.J. Lu <hongjiu.lu@intel.com>
4933
4934 * lt~obsolete.m4: New. Import from 20070318 libtool.
4935
4936 2007-06-29 Bernd Schmidt <bernd.schmidt@analog.com>
4937
4938 * configure.ac: Don't add target-libmudflap to noconfigdirs for
4939 uclinux and linux-uclibc targets.
4940 * configure: Regenerate.
4941
4942 2007-06-28 DJ Delorie <dj@redhat.com>
4943
4944 * configure.ac (arm*-*-linux-gnueabi): Don't build libgloss if we're
4945 not building newlib.
4946 * configure: Regenerated.
4947
4948 2007-06-22 Daniel Jacobowitz <dan@codesourcery.com>
4949
4950 * src-release (DEVO_SUPPORT): Correct typos.
4951
4952 2007-06-18 Daniel Jacobowitz <dan@codesourcery.com>
4953
4954 * Makefile.def: Add dependency from configure-gdb to all-bfd.
4955 * Makefile.in: Regenerated.
4956
4957 2007-06-14 Paolo Bonzini <bonzini@gnu.org>
4958
4959 * Makefile.tpl (cleanstrap): Don't delete the toplevel Makefile.
4960 (distclean-stage[+id+]): Possibly delete stage_last.
4961 * Makefile.in: Regenerate.
4962
4963 2007-06-07 Ben Elliston <bje@au.ibm.com>
4964
4965 * config.sub, config.guess: Update from upstream sources.
4966
4967 2007-06-07 Ben Elliston <bje@au.ibm.com>
4968
4969 * Makefile.tpl: Fix spelling error.
4970 * Makefile.in: Regenerate.
4971
4972 2007-06-04 Paolo Bonzini <bonzini@gnu.org>
4973
4974 Sync with gcc:
4975 2007-05-30 Jakub Jelinek <jakub@redhat.com>
4976
4977 PR bootstrap/29382
4978 * configure.ac: Don't use -fkeep-inline-functions for GCC < 3.3.1.
4979 * configure: Rebuilt.
4980
4981 2007-06-01 Steve Ellcey <sje@cup.hp.com>
4982
4983 * libtool.m4 (LT_CMD_MAX_LEN): Try using getconf to set
4984 lt_cv_sys_max_cmd_len.
4985
4986 2007-05-31 Paolo Bonzini <bonzini@gnu.org>
4987
4988 * ltgcc.m4: Update from GCC.
4989
4990 2007-05-25 Andreas Tobler <a.tobler@schweiz.org>
4991
4992 * ltmain.sh: Fix Darwin verstring, remove ${wl}.
4993
4994 2007-05-24 Steve Ellcey <sje@cup.hp.com>
4995
4996 * ltmain.sh: Update from GCC.
4997 * libtool.m4: Update from GCC.
4998 * ltsugar.m4: New. Update from GCC.
4999 * ltversion.m4: New. Update from GCC.
5000 * ltoptions.m4: New. Update from GCC.
5001 * ltconfig: Remove.
5002 * ltcf-c.sh: Remove.
5003 * ltcf-cxx.sh: Remove.
5004 * ltcf-gcj.sh: Remove.
5005 * src-release: Update with new libtool file list.
5006
5007 2007-05-16 Paolo Bonzini <bonzini@gnu.org>
5008
5009 * Makefile.def (bootstrap_stage): Replace stage_make_flags with
5010 stage_cflags.
5011 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS, POSTSTAGE1_FLAGS_TO_PASS):
5012 Remove CFLAGS/LIBCFLAGS.
5013 (configure-stage[+id+]-[+prefix+][+module+],
5014 all-stage[+id+]-[+prefix+][+module+]): Pass it from [+stage_cflags+].
5015 * Makefile.in: Regenerate.
5016
5017 2007-04-14 Steve Ellcey <sje@cup.hp.com>
5018
5019 * config-ml.in: Update from GCC.
5020
5021 2007-04-09 Daniel Jacobowitz <dan@codesourcery.com>
5022
5023 * src-release (do-proto-toplev): Process the support directories before
5024 the tool directory.
5025
5026 2007-03-21 Richard Sandiford <richard@codesourcery.com>
5027
5028 * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Fix m4 quoting
5029 of glob. Quote arguments with single quotes too.
5030 * configure: Regenerate.
5031
5032 2007-03-12 Brooks Moses <brooks.moses@codesourcery.com>
5033
5034 * Makefile.def (fixincludes): Remove unneeded "missing" lines.
5035 * Makefile.in: Regenerate
5036
5037 2007-03-07 Andreas Schwab <schwab@suse.de>
5038
5039 * configure: Regenerate.
5040
5041 2007-03-01 Brooks Moses <brooks.moses@codesourcery.com>
5042
5043 * configure.ac: Add "--with-pdfdir" configure option,
5044 which defines pdfdir variable.
5045 * Makefile.def (target=fixincludes): Add install-pdf to
5046 missing targets.
5047 (recursive_targets): Add install-pdf target.
5048 (flags_to_pass): Add pdfdir.
5049 * Makefile.tpl: Add pdfdir handling, add do-install-pdf
5050 target.
5051 * configure: Regenerate
5052 * Makefile.in: Regenerate
5053
5054 2007-02-28 Eric Christopher <echristo@apple.com>
5055
5056 Revert:
5057 2006-12-07 Mike Stump <mrs@apple.com>
5058
5059 * Makefile.def (dependencies): Add dependency for
5060 install-target-libssp and install-target-libgomp on
5061 install-gcc.
5062 * Makefile.in: Regenerate.
5063
5064 2007-02-27 Matt Kraai <kraai@ftbfs.org>
5065
5066 * configure: Regenerate.
5067 * configure.ac: Move statements after variable declarations.
5068
5069 2007-02-19 Joseph Myers <joseph@codesourcery.com>
5070
5071 * configure.ac: Adjust for loop syntax.
5072 * configure: Regenerate.
5073
5074 2007-02-18 Alexandre Oliva <aoliva@redhat.com>
5075
5076 * configure: Rebuilt.
5077
5078 2007-02-18 Alexandre Oliva <aoliva@redhat.com>
5079
5080 * configure.ac: Drop multiple occurrences of --enable-languages,
5081 and fix its quoting.
5082 * configure: Rebuilt.
5083
5084 2007-02-17 Mark Mitchell <mark@codesourcery.com>
5085 Nathan Sidwell <nathan@codesourcery.com>
5086 Vladimir Prus <vladimir@codesourcery.com
5087 Joseph Myers <joseph@codesourcery.com>
5088
5089 * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Fix quoting.
5090 * configure: Regenerate.
5091
5092 2007-02-13 Daniel Jacobowitz <dan@codesourcery.com>
5093
5094 * configure.ac (target_libraries): Move libgcc before libiberty.
5095 * configure: Regenerated.
5096
5097 2007-02-13 Paolo Bonzini <bonzini@gnu.org>
5098
5099 * configure: Regenerate again?
5100
5101 2007-02-13 Paolo Bonzini <bonzini@gnu.org>
5102
5103 * configure: Reapply PR30748 fix which was lost in the previous commit.
5104
5105 2007-02-13 Daniel Jacobowitz <dan@codesourcery.com>
5106 Paolo Bonzini <bonzini@gnu.org>
5107
5108 PR bootstrap/30753
5109 * configure.ac: Remove obsolete build / host tests. Use AC_PROG_CC
5110 unconditionally. Use AC_PROG_CXX. Use ACX_TOOL_DIRS to find $prefix.
5111 * configure: Regenerated.
5112
5113 2007-02-10 Paolo Bonzini <bonzini@gnu.org>
5114
5115 * configure: Regenerate.
5116
5117 2007-02-09 Daniel Jacobowitz <dan@codesourcery.com>
5118
5119 PR bootstrap/30748
5120 * configure.ac: Correct syntax for Solaris ksh.
5121 * configure: Regenerated.
5122
5123 2007-02-09 Paolo Bonzini <bonzini@gnu.org>
5124
5125 * Makefile.def: Sync with GCC.
5126 * Makefile.tpl: Sync with GCC.
5127 * Makefile.in: Regenerate.
5128 * configure: Regenerate.
5129
5130 2007-02-09 Daniel Jacobowitz <dan@codesourcery.com>
5131
5132 * Makefile.tpl (build_alias, host_alias, target_alias): Use
5133 noncanonical equivalents.
5134 * configure.in: Rename to...
5135 * configure.ac: ...this. Update AC_PREREQ. Prevent error for
5136 AS_FOR_TARGET. Set build_noncanonical, host_noncanonical, and
5137 target_noncanonical. Use them. Rewrite removal of configure
5138 arguments for autoconf 2.59. Discard variable settings. Force
5139 program_transform_name for native tools.
5140
5141 * Makefile.in: Regenerated.
5142 * configure: Regenerated with autoconf 2.59.
5143
5144 * src-release (DEVO_SUPPORT, do-proto-toplev): Expect configure.ac.
5145
5146 2007-02-08 Jeff Johnston <jjohnstn@redhat.com>
5147
5148 * COPYING.LIBGLOSS: Reformat default Red Hat
5149 license to fit within 80 columns.
5150 * COPYING.NEWLIB: Ditto.
5151
5152 2007-02-05 Dave Brolley <brolley@redhat.com>
5153
5154 * Contribute the following changes:
5155 2006-11-28 DJ Delorie <dj@redhat.com>
5156
5157 * configure.in: Fix typo for mep's target_makefile_frag.
5158 * configure: Regenerated.
5159
5160 2005-04-22 Richard Sandiford <rsandifo@redhat.com>
5161
5162 * configure.in (mep*): Add -mlibrary to FLAGS_FOR_TARGET.
5163 * configure: Regenerate.
5164
5165 2001-09-19 DJ Delorie <dj@redhat.com>
5166
5167 * configure.in (target_makefile_frag): use mt-mep
5168
5169 2001-06-12 Don Howard <dhoward@redhat.com>
5170
5171 * configure.in: Remove gdb from MeP skip list.
5172
5173 2001-04-05 DJ Delorie <dj@redhat.com>
5174
5175 * configure.in (noconfigdirs): Remove gcc from MeP skip list.
5176
5177 2001-03-20 Ben Elliston <bje@redhat.com>
5178
5179 * configure.in (noconfigdirs): Add gcc and gdb for MeP.
5180
5181 2001-03-19 Ben Elliston <bje@redhat.com>
5182
5183 * config.sub (mep, mep-*): Add.
5184
5185 2007-01-31 Andreas Schwab <schwab@suse.de>
5186
5187 * Makefile.tpl (LDFLAGS): Substitute it.
5188 * Makefile.in: Regenerate.
5189
5190 2007-01-11 Paolo Bonzini <bonzini@gnu.org>
5191
5192 * configure.in: Change == to = in test command.
5193 * configure: Regenerate.
5194
5195 2007-01-11 Paolo Bonzini <bonzini@gnu.org>
5196 Nick Clifton <nickc@redhat.com>
5197 Kaveh R. Ghazi <ghazi@caip.rutgets.edu>
5198
5199 * configure.in (build_configargs, host_configargs, target_configargs):
5200 Remove build/host/target parameters.
5201 (host_libs): Add gmp and mpfr.
5202 (GMP tests): Reorganize to allow in-tree GMP/MPFR.
5203 * Makefile.def (gmp, mpfr): New.
5204 (gcc): Remove target.
5205 * Makefile.tpl (build_os, build_vendor, host_os, host_vendor,
5206 target_os, target_vendor): New.
5207 (configure): Add host_alias/target_alias arguments. Adjust invocations.
5208 * configure: Regenerate.
5209 * Makefile.in: Regenerate.
5210
5211 2007-01-11 Matt Fago <fago@earthlink.net>
5212
5213 * configure.in: Try to link to functions only in mpfr 2.2.x
5214 to improve robustness of configure tests.
5215 * configure: Regenerate.
5216
5217 2007-01-08 Kai Tietz <kai.tietz@onevision.com>
5218
5219 * configure.in: Add support for an x86_64-mingw* target.
5220 * configure: Regenerate.
5221
5222 2007-01-05 Daniel Jacobowitz <dan@codesourcery.com>
5223
5224 * Makefile.tpl (all-target): Correct @if conditional for target
5225 modules.
5226 * configure.in: Omit libiberty if building only target libgcc.
5227 * configure, Makefile.in: Regenerated.
5228
5229 2007-01-04 Paolo Bonzini <bonzini@gnu.org>
5230
5231 * configure.in: Use DEV-PHASE to detect the default for --enable-werror.
5232 * configure: Regenerate.
5233
5234 2007-01-03 Daniel Jacobowitz <dan@codesourcery.com>
5235
5236 * Makefile.def (target_modules): Add libgcc.
5237 (lang_env_dependencies): Remove default items. Use no_c and no_gcc.
5238 * Makefile.tpl (clean-target-libgcc): Delete.
5239 (configure-target-[+module+]): Emit --disable-bootstrap dependencies
5240 on gcc even for bootstrapped modules. Rewrite handling of
5241 lang_env_dependencies to loop over target_modules.
5242 * configure.in (target_libraries): Add target-libgcc.
5243 * Makefile.in, configure: Regenerated.
5244
5245 2006-12-29 Paolo Bonzini <bonzini@gnu.org>
5246
5247 Sync with gcc:
5248 2006-12-29 Paolo Bonzini <bonzini@gnu.org>
5249
5250 * configure.in: Reorganize recognition of languages. Add
5251 --enable-stage1-languages. Show supported languages for the chosen
5252 target rather than all recognized languages.
5253 * configure: Regenerate.
5254
5255 2006-12-29 Paolo Bonzini <bonzini@gnu.org>
5256
5257 * Makefile.tpl (GCC_STRAP_TARGETS, all-prebootstrap): Remove.
5258 * Makefile.in: Regenerate.
5259
5260 2006-12-29 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5261
5262 * configure.in: Warn that MPFR 2.2.0 is buggy.
5263 * configure: Regenerate.
5264
5265 2006-12-27 Ian Lance Taylor <iant@google.com>
5266
5267 * configure.in: When removing Makefiles to force a reconfigure, also
5268 remove prev-DIR*/Makefile.
5269 * configure: Regenerate.
5270
5271 2006-12-23 Kazu Hirata <kazu@codesourcery.com>
5272
5273 * config.bfd: Recognize fido.
5274
5275 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
5276
5277 Sync with gcc:
5278
5279 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
5280
5281 * configure.in: Remove "$build" case for powerpc-*-darwin* since
5282 it only affects bootstrap and could be tested on "$host" as well.
5283 * configure: Regenerate.
5284 * config/mh-ppc-darwin: Add to the stage1 cflags here.
5285
5286 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
5287
5288 PR bootstrap/29544
5289 * Makefile.def (flags_to_pass): Add STAGE1_CHECKING.
5290 (bootstrap_stage): Add STAGE1_CHECKING to stage1 configure flags,
5291 move here comment from Makefile.tpl.
5292 * Makefile.tpl: Move some definitions higher in the file.
5293 (STAGE1_CHECKING): New.
5294 * configure.in: Add --enable-stage1-checking.
5295 * configure: Regenerate.
5296 * Makefile.in: Regenerate.
5297
5298 2006-12-03 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5299
5300 * configure.in: Update error message for missing GMP/MPFR.
5301
5302 * configure: Regenerate.
5303
5304 2006-12-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5305
5306 * configure.in: Update MPFR version in error message.
5307
5308 * configure: Regenerate.
5309
5310 2006-11-26 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5311
5312 * configure.in (--with-mpfr-dir, --with-gmp-dir): Remove flags.
5313 (--with-mpfr-include, --with-mpfr-lib, --with-gmp-include,
5314 --with-gmp-lib): New flags.
5315
5316 * configure: Regenerate.
5317
5318 2006-12-12 Andreas Tobler <a.tobler@schweiz.org>
5319
5320 PR bootstrap/30134
5321 * configure.in: Correct x86 darwin support for libjava to powerpc
5322 and i?86 only.
5323 * configure: Regenerate.
5324
5325 2006-12-11 Alan Modra <amodra@bigpond.net.au>
5326
5327 * configure.in: Handle spu makefile frag.
5328 * Makefile.tpl (MAINT): Define
5329 (MAINTAINER_MODE_FALSE, MAINTAINER_MODE_TRUE): Define.
5330 * configure: Regenerate.
5331 * Makefile.in: Regenerate.
5332
5333 2006-12-11 Ben Elliston <bje@au.ibm.com>
5334
5335 * config.sub, config.guess: Update from upstream sources.
5336
5337 2006-12-11 Ben Elliston <bje@au.ibm.com>
5338
5339 * configure.in: Sync with GCC (spu-*-*).
5340 * configure: Sync with GCC.
5341
5342 2006-12-07 Mike Stump <mrs@apple.com>
5343
5344 * Makefile.def (dependencies): Add dependency for
5345 install-target-libssp and install-target-libgomp on
5346 install-gcc.
5347 * Makefile.in: Regenerate.
5348
5349 2006-11-16 Paolo Bonzini <bonzini@gnu.org>
5350
5351 * Makefile.tpl (clean-target-libgcc): Test for gcc Makefile presence.
5352 (unstage): Test for stage_last presence.
5353
5354 PR bootstrap/29802
5355 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Add HOST_SUBDIR in STAGE_PREFIX.
5356 * Makefile.in: Regenerate.
5357
5358 2006-11-14 DJ Delorie <dj@redhat.com>
5359
5360 * Makefile.tpl (clean-stage*): Sync with GCC (clean).
5361 * Makefile.in: Sync with GCC.
5362 * configure.in: Sync with GCC (mpfr, gmp).
5363 * configure: Sync with GCC.
5364
5365 2006-11-08 Jie Zhang <jie.zhang@analog.com>
5366
5367 * configure.in: Remove target-libgloss from noconfigdirs for
5368 bfin-*-*.
5369 * configure: Regenerated.
5370
5371 2006-10-27 Jeff Johnston <jjohnstn@redhat.com>
5372
5373 * COPYING.NEWLIB: Add spu license.
5374 * COPYING.LIBGLOSS: Ditto.
5375
5376 2006-10-17 Brooks Moses <bmoses@stanford.edu>
5377
5378 * Makefile.def: Added pdf target handling.
5379 * Makefile.tpl: Added pdf target handling.
5380 * Makefile.in: Regenerated.
5381
5382 2006-10-11 Jeff Johnston <jjohnstn@redhat.com>
5383
5384 * COPYING.NEWLIB: Updated.
5385 * COPYING.LIBGLOSS: Ditto.
5386
5387 2006-09-27 Dave Brolley <brolley@redhat.com>
5388
5389 * configure.in (RUNTEST): Look for 'runtest' in the source tree by using
5390 $s instead of $r.
5391 * configure: Regenerated.
5392
5393 2006-09-26 Ben Elliston <bje@au.ibm.com>
5394
5395 * config.sub, config.guess: Update from upstream sources.
5396
5397 2006-09-20 Thiemo Seufer <ths@mips.com>
5398
5399 * configure.in: Remove redundant handling of mips*-dec-bsd*. Likewise
5400 for mipstx39-*-*. Disable libgloss for mips64*-*-linux*.
5401 * configure: Regenerate.
5402
5403 2006-08-30 Corinna Vinschen <corinna@vinschen.de>
5404
5405 * configure.in: Never build newlib for a Mingw host.
5406 Never build newlib as Mingw target library.
5407 Test the existence of winsup/cygwin for building a Cygwin newlib,
5408 rather than just winsup.
5409 Add winsup/mingw and winsup/w32api paths to FLAGS_FOR_TARGET if
5410 building a Mingw target.
5411 * configure: Regenerate.
5412
5413 2006-08-15 Thiemo Seufer <ths@mips.com>
5414 Nigel Stephens <nigel@mips.com>
5415 David Ung <davidu@mips.com>
5416
5417 * config.sub: Add support for sde as alias of mipsisa32-sde-elf.
5418
5419 2006-07-25 Paolo Bonzini <bonzini@gnu.org>
5420
5421 Sync from GCC:
5422 2006-07-04 Eric Botcazou <ebotcazou@libertysurf.fr>
5423
5424 PR bootstrap/18058
5425 * configure.in: Add -fkeep-inline-functions to CFLAGS for stage 1
5426 if the bootstrap compiler is a GCC version that supports it.
5427 * configure: Regenerate.
5428
5429 2006-07-22 Daniel Jacobowitz <dan@codesourcery.com>
5430
5431 * configure.in: Allow mingw32 and cygwin targets to build cross-gdb.
5432 * configure: Regenerated.
5433
5434 2006-07-18 Paolo Bonzini <bonzini@gnu.org>
5435
5436 * Makefile.tpl (configure-stageN-MODULE): Pass --with-build-libsubdir
5437 for stages after the first.
5438
5439 2006-07-17 Jakub Jelinek <jakub@redhat.com>
5440
5441 * Makefile.def: Add dependencies for configure-opcodes
5442 on configure-intl and all-opcodes on all-intl.
5443 * Makefile.in: Regenerated.
5444
5445 2006-07-04 Peter O'Gorman <peter@pogma.com>
5446
5447 * ltconfig: chmod 644 before ranlib during install.
5448
5449 2006-07-03 Paolo Bonzini <bonzini@gnu.org>
5450
5451 * configure.in: Fix thinkos in previous check-in.
5452 * configure: Regenerate.
5453
5454 2006-07-03 Paolo Bonzini <bonzini@gnu.org>
5455
5456 Sync from gcc:
5457
5458 2007-07-03 Paolo Bonzini <bonzini@gnu.org>
5459
5460 PR other/27063
5461 * configure.in: Test subdir_requires and give an appropriate
5462 error message.
5463 * configure: Regenerate.
5464
5465 2006-06-16 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
5466
5467 PR target/27540
5468 * configure.in: Only enable libgomp on IRIX 6.
5469 * configure: Regenerate.
5470
5471 2006-06-20 David Ayers <d.ayers@inode.at>
5472
5473 PR bootstrap/28072
5474 * configure.in: Add target-boehm-gc to noconfigdirs depending on
5475 whether target-libjava is being configured instead of whether the
5476 java front end is enabled.
5477 * configure: Regenerate.
5478
5479 2006-06-15 Mark Shinwell <shinwell@codesourcery.com>
5480
5481 * include/elf/arm.h: Correct names of R_ARM_LDC_G{0,1,2}
5482 to R_ARM_LDC_SB_G{0,1,2} respectively.
5483
5484 2006-06-15 Paolo Bonzini <bonzini@gnu.org>
5485
5486 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Export CFLAGS and LDFLAGS
5487 too.
5488 * Makefile.in: Regenerate.
5489
5490 2006-06-13 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
5491
5492 Sync from gcc:
5493
5494 2006-06-12 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
5495 * configure.in: Don't enable libgomp on hpux10.
5496 * configure: Rebuilt.
5497
5498 2006-06-13 David Ayers <d.ayers@inode.at>
5499
5500 Sync from gcc:
5501
5502 2006-06-12 David Ayers <d.ayers@inode.at>
5503
5504 PR bootstrap/27963
5505 PR target/19970
5506 * configure.in: Remove target-boehm-gc from noconfigdirs where
5507 ${libgcj} is specified.
5508 * configure: Regenerate.
5509
5510 2006-06-08 Jeff Johnston <jjohnstn@redhat.com>
5511
5512 Sync from gcc:
5513
5514 2005-01-12 David Edelsohn <edelsohn@gnu.org>
5515 Andreas Schwab <schwab@suse.de>
5516
5517 PR bootstrap/18033
5518 * config-ml.in: Eval option if surrounded by single quotes.
5519
5520 2006-06-07 Carlos O'Donell <carlos@codesourcery.com>
5521
5522 Sync from gcc:
5523
5524 2006-06-06 David Ayers <d.ayers@inode.at>
5525
5526 PR libobjc/13946
5527 * Makefile.def: Add dependencies for libobjc which boehm-gc.
5528 * Makefile.in: Regenerate.
5529 * configure.in: Add --enable-objc-gc at toplevel and have it
5530 enable boehm-gc for Objective-C.
5531 Remove target-boehm-gc from libgcj.
5532 Add target-boehm-gc to target_libraries.
5533 Add target-boehm-gc to noconfigdirs where ${libgcj}
5534 is specified.
5535 Assert that boehm-gc is supported when requested for Objective-C.
5536 Only build boehm-gc if needed either for Java or Objective-C.
5537 * configure: Regenerate.
5538
5539 2006-06-05 Paolo Bonzini <bonzini@gnu.org>
5540
5541 PR 27674
5542 * Makefile.tpl (configure-[+prefix+][+module+],
5543 all-[+prefix+][+module+]): Depend on stage_current if bootstrapping.
5544 Remove rule to unstage bootstrapped modules.
5545 (stage_current): New.
5546 * Makefile.in: Regenerate.
5547
5548 2006-05-20 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
5549 Andreas Tobler <a.tobler@schweiz.ch>
5550
5551 * configure.in: Enable libgcj for hppa*-hp-hpux11*.
5552 * configure: Rebuilt.
5553
5554 Revert
5555 2006-01-31 Richard Guenther <rguenther@suse.de>
5556 Paolo Bonzini <bonzini@gnu.org>
5557
5558 * Makefile.def (target_modules): Add libgcc-math target module.
5559 * configure.in (target_libraries): Add libgcc-math target library.
5560 (--enable-libgcc-math): New configure switch.
5561 * Makefile.in: Re-generate.
5562 * configure: Re-generate.
5563
5564 2006-06-05 Jeff Johnston <jjohnstn@redhat.com>
5565
5566 * config-ml.in: Alter CCASFLAGS to include special
5567 multilib options the same as is done for CFLAGS.
5568
5569 2006-05-31 Daniel Jacobowitz <dan@codesourcery.com>
5570
5571 * Makefile.def: Added dependencies from sim and gdb on intl, and
5572 added configure dependencies to everything with an all dependency
5573 on intl.
5574 * gettext.m4: Removed.
5575 * src-release (DEVO_SUPPORT): Don't mention gettext.m4.
5576 (GDB_SUPPORT_DIRS): Add intl.
5577 * Makefile.in: Regenerated.
5578
5579 2006-05-25 Daniel Jacobowitz <dan@codesourcery.com>
5580
5581 * src-release (DEVO_SUPPORT): Add config.rpath.
5582
5583 2006-05-25 Paolo Bonzini <bonzini@gnu.org>
5584
5585 * Makefile.def (bfd, opcodes): Fix lib_path.
5586 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Replace ADAC with ADAFLAGS.
5587 (restrap): Move under "@if gcc-bootstrap". Fix typo.
5588 * Makefile.in: Regenerate.
5589
5590 2006-05-24 Mark Shinwell <shinwell@codesourcery.com>
5591
5592 * configure.in: Enable gprof for cross builds.
5593 * configure: Regenerate.
5594
5595 2006-05-17 Daniel Jacobowitz <dan@codesourcery.com>
5596
5597 * src-release (MAKEINFOFLAGS): Define.
5598 (do-proto-toplev): Pass MAKEINFOFLAGS to submakes.
5599
5600 2006-05-14 Ben Elliston <bje@au.ibm.com>
5601
5602 * config.sub, config.guess: Update from upstream sources.
5603
5604 2006-05-12 Ben Elliston <bje@au.ibm.com>
5605
5606 * config.sub, config.guess: Update from upstream sources.
5607
5608 2006-05-04 Steve Ellcey <sje@cup.hp.com>
5609
5610 * blt, iwidgets, mmalloc: Remove directories.
5611
5612 2006-05-01 DJ Delorie <dj@redhat.com>
5613
5614 * configure.in: Restore CFLAGS if GMP isn't present.
5615 * configure: Regenerate.
5616
5617 2006-04-18 DJ Delorie <dj@redhat.com>
5618
5619 * configure.in (m32c): Build libstdc++-v3. Pass flags to
5620 reference libgloss so that libssp can be built in a combined
5621 tree.
5622 * configure: Regenerate.
5623
5624 2006-04-10 Ben Elliston <bje@au.ibm.com>
5625
5626 * contrib: Remove directory.
5627
5628 2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
5629
5630 * Makefile.tpl: Add install-html target.
5631 * Makefile.def: Add install-html target.
5632 * Makefile.in: Regenerate.
5633 * configure.in: Add --with-datarootdir, --with-docdir,
5634 and --with-htmldir options.
5635 * configure: Regenerate.
5636
5637 2006-03-31 Ben Elliston <bje@au.ibm.com>
5638
5639 PR binutils/1860
5640 * configure.in: Require makeinfo 4.4 or higher.
5641 * configure: Regenerate.
5642
5643 2006-03-14 Paolo Bonzini <bonzini@gnu.org>
5644
5645 * Makefile.in: Regenerate.
5646
5647 2006-03-14 Paolo Bonzini <bonzini@gnu.org>
5648
5649 Sync with gcc:
5650 2006-03-10 Aldy Hernandez <aldyh@redhat.com>
5651
5652 * configure.in: Handle --disable-<component> generically.
5653 * configure: Regenerate.
5654
5655 2006-02-21 Rafael Avila de Espindola <rafael.espindola@gmail.com>
5656
5657 * Makefile.tpl (BUILD_CONFIGDIRS): Remove.
5658 (TARGET_CONFIGDIRS): Remove.
5659 * configure.in: Remove AC_SUBST(target_configdirs).
5660 * Makefile.in, configure: Regenerated.
5661
5662
5663 2006-03-01 H.J. Lu <hongjiu.lu@intel.com>
5664
5665 PR libgcj/17311
5666 * ltmain.sh: Don't use "$finalize_rpath" for compile.
5667
5668 2006-02-20 Paolo Bonzini <bonzini@gnu.org>
5669
5670 PR bootstrap/25670
5671
5672 * Makefile.tpl ([+compare-target+]): Print explanation messages.
5673
5674 * Makefile.def (ADAFLAGS, BOOT_ADAFLAGS, LANGUAGES): New flags_to_pass.
5675 * Makefile.tpl (BASE_FLAGS_TO_PASS): Support optional flags_to_pass.
5676 (EXTRA_GCC_FLAGS): Remove ADAFLAGS, BOOT_ADAFLAGS, LANGUAGES,
5677 BUILD_PREFIX, BUILD_PREFIX_1.
5678 * configure.in: (BUILD_PREFIX, BUILD_PREFIX_1): Don't substitute.
5679
5680 * Makefile.def (bootstrap stage 1): Pass LIBCFLAGS too.
5681 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Override LIBCFLAGS too.
5682
5683 * Makefile.tpl (configure-stage[+id+]-[+prefix+][+module+],
5684 all-stage[+id+]-[+prefix+][+module+], : Use $(current_stage) instead
5685 of `cat stage_current`. Always provide the `r' and `s' variables.
5686 (clean-stage[+id+]-[+prefix+][+module+]): Likewise, and make it into
5687 a single shell execution.
5688 (configure-[+prefix+][+module+], all-[+prefix+][+module+]): For
5689 bootstrapped modules, make the stage1 module if the build was not
5690 started yet, else build the current stage.
5691 (all-host, all-target): Omit bootstrapped modules (if bootstrapping).
5692 (all-build, all-host, all-target, [+make_target+]-host,
5693 [+make_target+]-target): Do not use \-continued lines.
5694 (target modules): Depend on stage_last, not all-gcc, if bootstrapping.
5695 (current_stage, restrap, stage_last): New.
5696
5697 * Makefile.in: Regenerate.
5698 * configure: Regenerate.
5699
5700 2006-02-14 Paolo Bonzini <bonzini@gnu.org>
5701
5702 Sync from gcc:
5703
5704 2006-01-31 Richard Guenther <rguenther@suse.de>
5705 Paolo Bonzini <bonzini@gnu.org>
5706
5707 * Makefile.def (target_modules): Add libgcc-math target module.
5708 * configure.in (target_libraries): Add libgcc-math target library.
5709 (--enable-libgcc-math): New configure switch.
5710 * Makefile.in: Re-generate.
5711 * configure: Re-generate.
5712 * libgcc-math: New toplevel directory.
5713
5714 2006-01-18 Richard Henderson <rth@redhat.com>
5715 Jakub Jelinek <jakub@redhat.com>
5716 Diego Novillo <dnovillo@redhat.com>
5717
5718 * libgomp: New directory.
5719 * Makefile.def: Add target_module libgomp.
5720 * Makefile.in: Regenerate.
5721 * configure.in (target_libraries): Add target-libgomp.
5722 * configure: Regenerate.
5723
5724 2006-02-14 Paolo Bonzini <bonzini@gnu.org>
5725 Andreas Schwab <schwab@suse.de>
5726
5727 * configure: Regenerate.
5728
5729 2006-01-16 Paolo Bonzini <bonzini@gnu.org>
5730
5731 * configure.in: Set with_gnu_as, with_gnu_ld, with_newlib earlier.
5732 Set md_exec_prefix. Use ACX_CHECK_INSTALLED_TARGET_TOOL to find
5733 the assembler, linker and binutils.
5734 * configure: Regenerate.
5735
5736 2006-01-16 Nick Clifton <nickc@redhat.com>
5737
5738 * config.sub, config.guess: Sync from config repository.
5739
5740 2006-01-05 Alexandre Oliva <aoliva@redhat.com>
5741
5742 * Makefile.tpl (clean-stage[+id+]-[+prefix+][+module+]): Remove
5743 @ from continuation.
5744 * Makefile.in: Rebuilt.
5745
5746 2006-01-04 Paolo Bonzini <bonzini@gnu.org>
5747
5748 Sync from gcc:
5749
5750 2006-01-04 Paolo Bonzini <bonzini@gnu.org>
5751
5752 PR bootstrap/24252
5753
5754 * Makefile.def (flags_to_pass): Add STAGE1_CFLAGS and STAGE1_LANGUAGES.
5755 * Makefile.tpl (OBJDUMP): New.
5756 (EXTRA_HOST_FLAGS): Add it.
5757 (EXTRA_GCC_FLAGS): Remove flags already specified in flags_to_pass.
5758
5759 * Makefile.tpl (stage[+id+]-start, stage[+id+]-end): Do not try
5760 to use symbolic links between directories. Avoid race conditions
5761 or make them harmless.
5762 * configure.in: Do not try to use symbolic links between directories.
5763
5764 * Makefile.def (LEAN): Pass.
5765 * Makefile.tpl (LEAN): Define.
5766 (stage[+id+]-start): Accept that the previous directory does not
5767 exist, if the bootstrap is lean.
5768 (stage[+id+]-bubble): Invoke lean bootstrap commands after
5769 stage[+id+]-start. Use a makefile variable and an `if' instead of a
5770 configure substitution.
5771 ([+compare-target+]): Likewise.
5772 ([+bootstrap-target+]-lean): New.
5773 * configure.in: Remove lean bootstrap support from here.
5774
5775 * Makefile.in: Regenerate.
5776 * configure: Regenerate.
5777
5778 2006-01-02 Andreas Schwab <schwab@suse.de>
5779
5780 * configure.in: When reconfiguring remove Makefile in
5781 all stage directories.
5782 * configure: Regenerate.
5783
5784 2005-12-27 Leif Ekblad <leif@rdos.net>
5785
5786 * configure.in: Add support for RDOS target.
5787 * configure: Regenerate.
5788
5789 2005-12-27 Nick Clifton <nickc@redhat.com>
5790
5791 PR binutils/1990
5792 * libtool.m4: Synchronize with version in GCC sources.
5793
5794 2005-12-20 Paolo Bonzini <bonzini@gnu.org>
5795
5796 Revert Ada-related part of the previous change.
5797
5798 * Makefile.def (ADAFLAGS, BOOT_ADAFLAGS, ADAFLAGS_FOR_TARGET):
5799 Do not pass.
5800 * Makefile.tpl (BOOT_ADAFLAGS): Do not define.
5801 * Makefile.in: Regenerate.
5802 * configure.in: Do not include mt-ppc-aix target fragment.
5803 * configure: Regenerate.
5804
5805 2005-12-19 Paolo Bonzini <bonzini@gnu.org>
5806
5807 * configure.in: Select appropriate fragments for PowerPC/AIX.
5808 * configure: Regenerate.
5809
5810 * Makefile.def (flags_to_pass): Add ADAFLAGS, BOOT_ADAFLAGS,
5811 BOOT_CFLAGS, BOOT_LDFLAGS.
5812 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Handle BOOT_ADAFLAGS,
5813 BOOT_CFLAGS, BOOT_LDFLAGS.
5814 (TARGET_FLAGS_TO_PASS): Handle ADAFLAGS_FOR_TARGET.
5815 (stage[+id+]-bubble): Pass flags recursively to the comparison target.
5816 (stage): Fail if we cannot complete the work.
5817 * Makefile.in: Regenerate.
5818
5819 2005-12-16 Jeff Johnston <jjohnstn@redhat.com>
5820
5821 * COPYING.NEWLIB: Update copyright year for default
5822 copyright.
5823
5824 2005-12-15 Paolo Bonzini <bonzini@gnu.org>
5825
5826 * Makefile.tpl (all, do-[+make_target+], do-check, install,
5827 install-host-nogcc): Don't invoke $(stage) at the end.
5828 * Makefile.in: Regenerate.
5829
5830 2005-12-14 Paolo Bonzini <bonzini@gnu.org>
5831
5832 * configure.in: Flip the top-level bootstrap switch.
5833 * configure: Regenerate.
5834
5835 Merge from gcc:
5836
5837 2005-12-14 Daniel Jacobowitz <dan@codesourcery.com>
5838
5839 * Makefile.tpl: Throughout the file, use : $(MAKE) along with
5840 $(stage) and $(unstage).
5841 (EXTRA_TARGET_FLAGS): Correct double-quoting.
5842 (all): Remove stray semicolon.
5843 (local-distclean): Don't handle multilib.tmp and multilib.out.
5844 (install.all): Set $s for consistency.
5845 (configure-[+prefix+][+module+]): Instead of [+deps+], handle
5846 check_multilibs setting. Always make the install directory.
5847 (configure-stage[+id+]-[+prefix+][+module+]): Likewise.
5848 Correct @if/@endif.
5849 (all-stage[+id+]-[+prefix+][+module+]): Correct @if/@endif.
5850 ($(TARGET_SUBDIR)/[+module+]/multilib.out): Remove.
5851 (stage[+id+]-start, stage[+id+]-end): Stage $(TARGET_SUBDIR).
5852 (multilib.out): Remove.
5853 * Makefile.in: Regenerated.
5854
5855 2005-12-12 Nathan Sidwell <nathan@codesourcery.com>
5856
5857 * config.sub: Replace ms1 arch with mt. Allow ms1 as alias.
5858 * configure.in: Replace ms1 arch with mt.
5859 * configure: Rebuilt.
5860
5861 2005-12-05 Paolo Bonzini <bonzini@gnu.org>
5862
5863 Sync with gcc:
5864
5865 2005-12-12 Nathan Sidwell <nathan@codesourcery.com>
5866
5867 * config.sub: Replace ms1 arch with mt. Allow ms1 as alias.
5868 * configure.in: Replace ms1 arch with mt.
5869 * configure: Rebuilt.
5870
5871 2005-12-05 Paolo Bonzini <bonzini@gnu.org>
5872
5873 Sync with gcc:
5874
5875 2005-12-05 Paolo Bonzini <bonzini@gnu.org>
5876
5877 * configure.in (CONFIGURED_BISON, CONFIGURED_YACC, CONFIGURED_M4,
5878 CONFIGURED_FLEX, CONFIGURED_LEX, CONFIGURED_MAKEINFO): Remove
5879 "CONFIGURED_" from the AC_CHECK_PROGS invocation. Move below.
5880 Find in-tree tools if available.
5881 (EXPECT, RUNTEST, LIPO, STRIP): Find them and substitute them.
5882 (CONFIGURED_*_FOR_TARGET): Don't set nor substitute.
5883 (*_FOR_TARGET): Set them with GCC_TARGET_TOOL.
5884 (COMPILER_*_FOR_TARGET): New.
5885 * Makefile.tpl (HOST_EXPORTS): Add *_FOR_TARGET symbols that gcc needs.
5886 (BASE_TARGET_EXPORTS): Use COMPILER_*_FOR_TARGET symbols.
5887 (CONFIGURED_*, USUAL_*): Remove.
5888 (BISON, YACC, FLEX, LEX, M4, MAKEINFO, EXPECT, RUNTEST, LIPO,
5889 STRIP): Use autoconf substitutions.
5890 (COMPILER_AS_FOR_TARGET, COMPILER_LD_FOR_TARGET,
5891 COMPILER_NM_FOR_TARGET): New.
5892 (EXTRA_HOST_FLAGS): Pass LIPO and STRIP.
5893
5894 (all): Make all-host and all-target in parallel.
5895 (do-[+make_target+], do-check, install, [+compare-target+]): Ensure
5896 that $$r and $$s are set before invoking a recursive make.
5897 (stage[+id+]-bubble): Likewise, and invoke the comparison at the end.
5898 ([+bootstrap-target+]): Inline most of the `all' target.
5899
5900 2005-11-29 Ben Elliston <bje@au.ibm.com>
5901
5902 * Makefile.tpl (clean-target-libgcc): Invoke clean-target-libgcc
5903 from the gcc build directory.
5904 * Makefile.in: Regenerate.
5905
5906 2005-11-29 Ben Elliston <bje@au.ibm.com>
5907
5908 * Makefile.def: Add new libdecnumber host_module. Make all-gcc
5909 depend on all-libdecnumber.
5910 * configure.in (host_libs): Include libdecnumber.
5911 * Makefile.in: Regenerate.
5912 * configure: Likewise.
5913
5914 2005-11-21 Kean Johnston <jkj@sco.com>
5915
5916 * config.sub, config.guess: Sync from upstream sources.
5917
5918 2005-11-11 Daniel Jacobowitz <dan@codesourcery.com>
5919
5920 * Makefile.def: Remove gdb dependencies for gdbtk.
5921 * Makefile.tpl (CONFIGURE_GDB_TK, INSTALL_GDB_TK): New variables.
5922 (configure-gdb, install-gdb): New rules.
5923 * configure.in: Set CONFIGURE_GDB_TK and INSTALL_GDB_TK.
5924 * Makefile.in, configure: Regenerated.
5925
5926 2005-10-22 Paolo Bonzini <bonzini@gnu.org>
5927
5928 PR bootstrap/24297
5929 * Makefile.tpl (do-[+make-target+], do-check, install,
5930 stage[+id+]-bubble, [+compare-target+]): Ensure $$r and $$s
5931 are set before recursing.
5932 * Makefile.in: Regenerate.
5933
5934 2005-10-20 Eric Botcazou <ebotcazou@adacore.com>
5935
5936 PR bootstrap/18939
5937 * Makefile.def (gcc) <target>: Fix thinko.
5938 * Makefile.in: Regenerate.
5939
5940 2005-10-17 Bernd Schmidt <bernd.schmidt@analog.com>
5941
5942 * configure.in (bfin-*-*): Use test, not brackets, in if statement.
5943 * configure: Regenerate.
5944
5945 2005-10-09 Kazu Hirata <kazu@codesourcery.com>
5946
5947 * configure.in (arm-*-linux-gnueabi): Add to noconfigdirs
5948 target-libffi, target-qthreads, target-libjava, and
5949 targetlibobjc.
5950 * configure: Regenerate.
5951
5952 2005-10-06 Daniel Jacobowitz <dan@codesourcery.com>
5953
5954 * Makefile.def (flags_to_pass): Add OBJDUMP_FOR_TARGET.
5955 * Makefile.tpl (BASE_TARGET_EXPORTS): Add OBJDUMP.
5956 (OBJDUMP_FOR_TARGET, CONFIGURED_OBJDUMP_FOR_TARGET)
5957 (USUAL_OBJDUMP_FOR_TARGET): New.
5958 (EXTRA_TARGET_FLAGS): Add OBJDUMP.
5959 * configure.in: Check for $OBJDUMP_FOR_TARGET.
5960 * configure, Makefile.in: Regenerated.
5961
5962 2005-10-05 Paolo Bonzini <bonzini@gnu.org>
5963
5964 * Makefile.tpl (all) [gcc-no-bootstrap]: Make prebootstrap packages
5965 before other host packages.
5966
5967 2005-10-05 Paolo Bonzini <bonzini@gnu.org>
5968
5969 PR bootstrap/22340
5970
5971 * configure.in (default_target): Remove.
5972 * Makefile.tpl (all): Do not use prerequisites as subroutines
5973 (all) [gcc-bootstrap]: Bootstrap gcc first if it was not done yet.
5974 (do-[+make_target+], check, install, [+bootstrap_target+]): Do not
5975 use prerequisites as subroutines.
5976 (check-host, check-target): New.
5977 (bootstrap configure & all targets): Do not use stage*-start
5978 if the directory layout is already ok.
5979 (non-bootstrap configure & all targets): Prepend a $(unstage).
5980 (stage[+id+]-bubble): Do that here. Do not use NOTPARALLEL.
5981 (NOTPARALLEL): Remove.
5982 (unstage, stage variables): New variables.
5983 (unstage, stage targets): Simply expand to those variables.
5984
5985 * configure: Regenerate.
5986 * Makefile.in: Regenerate.
5987
5988 2005-10-04 James E Wilson <wilson@specifix.com>
5989
5990 * Makefile.def (lang_env_dependencies): Add libmudflap.
5991 * Makefile.in: Regenerate.
5992
5993 2005-10-03 Catherine Moore <clm@cm00re.com>
5994
5995 * configure.in (bfin-*-*): Support bfin.
5996 * configure: Regenerated.
5997
5998 2005-09-30 H.J. Lu <hongjiu.lu@intel.com>
5999
6000 * configure.in (*-*-darwin*): Build bfd, binutils and opcodes.
6001 * configure: Regenerated.
6002
6003 2005-09-28 Geoffrey Keating <geoffk@apple.com>
6004
6005 * Makefile.tpl (BASE_TARGET_EXPORTS): Add LIPO, STRIP.
6006 (LIPO_FOR_TARGET): New.
6007 (CONFIGURED_LIPO_FOR_TARGET): New.
6008 (USUAL_LIPO_FOR_TARGET): New.
6009 (STRIP_FOR_TARGET): New.
6010 (CONFIGURED_STRIP_FOR_TARGET): New.
6011 (USUAL_STRIP_FOR_TARGET): New.
6012 * Makefile.def (flags_to_pass): Add LIPO_FOR_TARGET and
6013 STRIP_FOR_TARGET.
6014 * configure.in: Set LIPO_FOR_TARGET, STRIP_FOR_TARGET,
6015 CONFIGURED_LIPO_FOR_TARGET, CONFIGURED_STRIP_FOR_TARGET.
6016 * Makefile.in: Regenerate.
6017 * configure: Regenerate.
6018
6019 2005-09-19 David Edelsohn <edelsohn@gnu.org>
6020
6021 * configure.in (powerpc-*-aix*): Add target-libssp to noconfigdirs.
6022 (rs6000-*-aix*): Same.
6023 * configure: Regenerate.
6024
6025 2005-09-14 Francois-Xavier Coudert <coudert@clipper.ens.fr>
6026
6027 * configure.in: Recognize f95 in the --enable-languages option,
6028 and substitute it for fortran, issuing a warning.
6029 * configure: Regenerate.
6030
6031 2005-09-07 Ben Elliston <bje@au.ibm.com>
6032
6033 Import from Autoconf sources:
6034
6035 2005-09-06 Paul Eggert <eggert@cs.ucla.edu>
6036 * move-if-change: Don't output "$2 is unchanged"; suggested by Ben
6037 Elliston. Handle weird characters correctly.
6038
6039 2005-08-30 Phil Edwards <phil@codesourcery.com>
6040
6041 * configure.in (*-*-vxworks*): Add target-libstdc++-v3 to noconfigdirs.
6042 * configure: Regenerated.
6043
6044 2005-08-20 Richard Earnshaw <richard.earnshaw@arm.com>
6045
6046 * Makefile.def (libssp): Add to lang_env_dependencies.
6047 * Makefile.in: Regenerate.
6048
6049 2005-08-17 Christian Groessler <chris@groessler.org>
6050
6051 * Makefile.tpl: (USUAL_CC_FOR_TARGET): Add missing trailing slash.
6052 * Makefile.in: Regenerate.
6053
6054 2005-08-12 Paolo Bonzini <bonzini@gnu.org>
6055
6056 * configure.in: Replace NCN_STRICT_CHECK_TOOL with
6057 NCN_STRICT_CHECK_TOOLS, and likewise for NCN_STRICT_CHECK_TARGET_TOOLS.
6058 Look for alternate names of the target cc and c++
6059 * configure: Regenerate.
6060
6061 2005-08-08 Paolo Bonzini <bonzini@gnu.org>
6062
6063 * configure.in (CC_FOR_TARGET, CXX_FOR_TARGET, GCJ_FOR_TARGET,
6064 GCC_FOR_TARGET, RAW_CXX_FOR_TARGET, GFORTRAN_FOR_TARGET): Find
6065 them with NCN_STRICT_CHECK_TARGET_TOOL, like the other target
6066 tools; remove code to manually set them.
6067 (Target tools): Look in the environment for them.
6068 * Makefile.tpl (CC_FOR_TARGET, CXX_FOR_TARGET, GCJ_FOR_TARGET,
6069 GCC_FOR_TARGET, RAW_CXX_FOR_TARGET, GFORTRAN_FOR_TARGET): Redefine.
6070 (AS_FOR_TARGET, LD_FOR_TARGET, NM_FOR_TARGET): Look into gcc
6071 build directory.
6072 (CONFIGURED_CC_FOR_TARGET, CONFIGURED_CXX_FOR_TARGET,
6073 CONFIGURED_GCJ_FOR_TARGET, CONFIGURED_GCC_FOR_TARGET,
6074 CONFIGURED_GFORTRAN_FOR_TARGET, USUAL_CC_FOR_TARGET,
6075 USUAL_CXX_FOR_TARGET, USUAL_GCJ_FOR_TARGET, USUAL_GCC_FOR_TARGET,
6076 USUAL_RAW_CXX_FOR_TARGET, USUAL_GFORTRAN_FOR_TARGET): New.
6077 (CXX_FOR_TARGET_FOR_RECURSIVE_MAKE,
6078 RAW_CXX_FOR_TARGET_FOR_RECURSIVE_MAKE, RECURSE_FLAGS): Delete.
6079 * configure: Regenerate.
6080 * Makefile.in: Regenerate.
6081
6082 2005-07-27 Mark Mitchell <mark@codesourcery.com>
6083
6084 * Makefile.tpl (EXTRA_TARGET_FLAGS): Set LDFLAGS=LDFLAGS_FOR_TARGET.
6085 * Makefile.def (flags_to_pass): Add LDFLAGS_FOR_TARGET.
6086 * Makefile.in: Regenerated.
6087
6088 2005-07-26 Mark Mitchell <mark@codesourcery.com>
6089
6090 * Makefile.tpl (SYSROOT_CFLAGS_FOR_TARGET): New variable.
6091 (CFLAGS_FOR_TARGET): Use it.
6092 (CXXFLAGS_FOR_TARGET): Likewise.
6093 * Makefile.in: Regenerated.
6094 * configure.in (--with-build-sysroot): New option.
6095 * configure: Regenerated.
6096
6097 2005-07-24 Paolo Bonzini <bonzini@gnu.org>
6098
6099 * Makefile.tpl: Wrap install between unstage and stage
6100 * Makefile.in: Regenerate.
6101
6102 2005-07-16 Kelley Cook <kcook@gcc.gnu.org>
6103
6104 * all files: Update FSF address.
6105
6106 2005-07-14 Jim Blandy <jimb@redhat.com>
6107
6108 * configure.in: Add cases for Renesas m32c.
6109 * configure: Regenerated.
6110
6111 2005-07-14 Kelley Cook <kcook@gcc.gnu.org>
6112
6113 * COPYING, compile, config-ml.in, config.guess,
6114 config.sub, install-sh, missing, mkinstalldirs,
6115 symlink-tree, ylwrap: Sync from upstream sources.
6116
6117 2005-07-13 Eric Christopher <echristo@redhat.com>
6118
6119 * configure.in: Add toplevel noconfigdir support for tpf.
6120 * configure: Regenerate.
6121
6122 2005-07-11 Jakub Jelinek <jakub@redhat.com>
6123
6124 * Makefile.def (target_modules): Add libssp.
6125 * configure.in (target_libraries): Add target-libssp.
6126 * configure: Rebuilt.
6127 * Makefile.in: Rebuilt.
6128
6129 2005-07-11 Paolo Bonzini <bonzini@gnu.org>
6130
6131 PR ada/22340
6132
6133 * Makefile.def: Sync with gcc.
6134 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Fix pasto.
6135 * Makefile.in: Regenerate.
6136
6137 2005-07-07 Andreas Schwab <schwab@suse.de>
6138
6139 * Makefile.def (flags_to_pass): Add CFLAGS_FOR_BUILD.
6140 * Makefile.tpl (EXTRA_GCC_FLAGS): Don't pass CFLAGS_FOR_BUILD here.
6141 * Makefile.in: Regenerated.
6142
6143 2005-07-07 Kazu Hirata <kazu@codesourcery.com>
6144
6145 * configure.in: Add --enable-libssp and --disable-libssp.
6146 * configure: Regenerate with autoconf-2.13.
6147
6148 2005-07-06 Geoffrey Keating <geoffk@apple.com>
6149
6150 * configure.in: Don't build sim or rda when targetting darwin.
6151 * configure: Regenerate.
6152
6153 2005-07-04 Ben Elliston <bje@gnu.org>
6154
6155 * src-release (do-proto-toplev): Remove dejagnu bits.
6156 (DEJAGNU_SUPPORT_DIRS): Remove.
6157 (dejagnu.tar.bz2, dejagnu.tar): Likewise.
6158 (GDBD_SUPPORT_DIRS): Likewise.
6159 (gdb+dejagnu.tar.bz2, gdb+dejagnu.tar): Likewise.
6160 (INSIGHTD_SUPPORT_DIRS): Likewise.
6161 (insight+dejagnu.tar.bz2, insight+dejagnu.tar): Likewise.
6162
6163 2005-06-30 Ben Elliston <bje@gnu.org>
6164
6165 * setup.com (mpw): Remove unused directive.
6166
6167 2005-06-22 Paolo Bonzini <bonzini@gnu.org>
6168
6169 * Makefile.def (stagefeedback): Come after profile.
6170 Define profiledbootstrap target.
6171 * Makefile.tpl (profiledbootstrap): Remove.
6172 (stageprofile-end): Zap stagefeedback.
6173 (stagefeedback-start): Copy all .gcda files, not only GCC's.
6174 * Makefile.in: Regenerate.
6175
6176 2005-06-13 Zack Weinberg <zack@codesourcery.com>
6177
6178 * depcomp: Update from automake CVS. Add 'ia64hp' stanza.
6179 In 'cpp' stanza, support '#line' as well as '# '.
6180
6181 2005-06-07 Hans-Peter Nilsson <hp@axis.com>
6182
6183 * configure.in (unsupported_languages): New macro.
6184 <mmix-knuth-mmixware>: Set unsupported_languages. Name explicit
6185 non-ported target libraries in noconfigdirs.
6186 <cris-*, crisv32-*> Ditto, except for non-aout, non-elf,
6187 non-linux-gnu. Remove libgcj_ex_libffi.
6188 <lang_frag loop>: Set add_this_lang=no if the language is in
6189 unsupported_languages.
6190 * configure: Regenerate.
6191
6192 2005-06-04 Tobias Schl"uter <tobias.schlueter@physik.uni-muenchen.de>
6193
6194 * configure.in: Fix typo in handling of --with-mpfr-dir.
6195 * configure: Regenerate.
6196
6197 2005-06-02 Jim Blandy <jimb@redhat.com>
6198
6199 * config.sub: Add cases for the Renesas m32c. (This patch has been
6200 accepted into the master sources.)
6201
6202 2005-06-02 Aldy Hernandez <aldyh@redhat.com>
6203 Michael Snyder <msnyder@redhat.com>
6204 Stan Cox <scox@redhat.com>
6205
6206 * configure.in: Set noconfigdirs for ms1.
6207
6208 * configure: Regenerate.
6209
6210 2005-05-25 Paolo Bonzini <bonzini@gnu.org>
6211
6212 * Makefile.tpl (stage[+id+]-start): Iterate over target module as well.
6213 (Dependencies): Consider target modules for bootstrap dependencies.
6214 Make target bootstrap modules depend on each stage's gcc.
6215 * Makefile.in: Regenerate.
6216
6217 2005-05-20 Paolo Bonzini <bonzini@gnu.org>
6218
6219 * Makefile.def (configure-gcc): Depend on binutils having been built.
6220 (all-gcc): No need to do it here.
6221 * Makefile.in: Regenerate.
6222
6223 2005-05-19 Paul Brook <paul@codesourcery.com>
6224
6225 * configure.in: Rewrite misleading error message when requested
6226 language cannot be built.
6227 * configure: Regenerate.
6228
6229 2005-05-15 Daniel Jacobowitz <dan@codesourcery.com>
6230
6231 * ylwrap: Import from Automake 1.9.5.
6232
6233 2005-05-04 Mike Stump <mrs@apple.com>
6234
6235 * configure.in: Always pass --target to target configures as
6236 otherwise rebuilds that do --recheck will fail.
6237 * configure: Rebuilt.
6238
6239 2005-05-04 Paolo Bonzini <bonzini@gnu.org>
6240
6241 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Rename from
6242 STAGE_HOST_EXPORTS.
6243 (configure, all): Add bootstrap support.
6244 (Host modules, target modules): Pass post-stage1 flags and exports.
6245 (Top-level bootstrap): Remove bootstrap rules, expanded elsewhere.
6246 * Makefile.in: Regenerate.
6247
6248 2005-04-29 Paolo Bonzini <bonzini@gnu.org>
6249
6250 Sync from gcc:
6251
6252 2005-04-22 Bernd Schmidt <bernd.schmidt@analog.com>
6253
6254 * config.sub: Update from master copy.
6255
6256 2005-04-19 Hans-Peter Nilsson <hp@axis.com>
6257
6258 * configure.in <crisv32-*-*, cris-*-*>: New local variable
6259 libgcj_ex_libffi. Have specific match for *-*-linux*. Separate
6260 matches for "*-*-aout" and "*-*-elf". Don't disable libffi for
6261 "*-*-elf" and "*-*-linux*".
6262 * configure: Regenerate.
6263
6264 2005-04-06 Paolo Bonzini <bonzini@gnu.org>
6265
6266 * Makefile.tpl (BUILD_CONFIGARGS): Include --with-build-subdir.
6267 (TARGET_CONFIGARGS): Include --with-target-subdir.
6268 (configure, all): New macros. Use them throughout.
6269
6270 2005-04-05 Paolo Bonzini <bonzini@gnu.org>
6271
6272 * Makefile.tpl: Sync with gcc.
6273 * Makefile.in: Regenerate.
6274
6275 2005-03-30 J"orn Rennecke <joern.rennecke@st.com>
6276
6277 * config/mh-mingw32: Delete.
6278 * configure.in: Don't use it.
6279 * configure: Regenerate.
6280
6281 2005-03-31 Paolo Bonzini <bonzini@gnu.org>
6282
6283 * Makefile.def (bfd, opcodes, libstdc++-v3, libmudflap): Set lib_path.
6284 * Makefile.tpl (SET_LIB_PATH, REALLY_SET_LIB_PATH): Remove.
6285 (HOST_EXPORTS, STAGE_HOST_EXPORTS, TARGET_EXPORTS): Set $(RPATH_ENVVAR).
6286 (HOST_LIB_PATH): Generate from Makefile.def.
6287 (TARGET_LIB_PATH): Likewise.
6288 (Old bootstrap targets): Include TARGET_LIB_PATH into RPATH_ENVVAR.
6289 * Makefile.in: Regenerate.
6290 * configure.in (set_lib_path, SET_LIB_PATH, SET_GCC_LIB_PATH): Remove.
6291 (RPATH_ENVVAR): Include Darwin case.
6292 * configure: Regenerate.
6293
6294 2005-03-25 Paolo Bonzini <bonzini@gnu.org>
6295
6296 * configure.in (RPATH_ENVVAR): Set to DYLD_LIBRARY_PATH on Darwin.
6297 * configure: Regenerate.
6298
6299 2005-03-21 Zack Weinberg <zack@codesourcery.com>
6300
6301 * Makefile.def: Remove libstdcxx_incdir, libsubdir, gxx_include_dir,
6302 gcc_version, and gcc_version_trigger from set of flags to pass.
6303 * Makefile.tpl: Remove definitions of above variables.
6304 (config.status): Remove dependency on $(gcc_version_trigger).
6305 * Makefile.in: Regenerate.
6306 * configure.in: Do not reference config/gcc-version.m4 nor
6307 config/gxx-include-dir.m4. Do not invoke TL_AC_GCC_VERSION nor
6308 TL_AC_GXX_INCLUDE_DIR. Do not set gcc_version_trigger.
6309 * configure: Regenerate.
6310
6311 2005-03-16 Manfred Hollstein <manfred.h@gmx.net>
6312 Andrew Pinski <pinskia@physics.uc.edu>
6313
6314 * Makefile.tpl (check-[+module+]): Fix shell statement inside if ... fi.
6315 * Makefile.in: Regenerate.
6316
6317 2005-03-01 Alexandre Oliva <aoliva@redhat.com>
6318
6319 PR libgcj/20160
6320 * ltmain.sh: Avoid creating archives with components that have
6321 duplicate basenames.
6322
6323 2005-02-28 Andrew Pinski <pinskia@physics.uc.edu>
6324
6325 PR bootstrap/20250
6326 * Makefile.tpl (HOST target installs): Fix copy and pasto, use install
6327 instead of check.
6328 * Makefile.in: Regenerate.
6329
6330 2005-02-28 Paolo Bonzini <bonzini@gnu.org>
6331
6332 Sync from gcc.
6333
6334 2005-02-28 Paolo Bonzini <bonzini@gnu.org>
6335
6336 PR bootstrap/17383
6337 * Makefile.def (target_modules): Remove "stage", now unnecessary.
6338 * Makefile.tpl (HOST_SUBDIR): New substitution.
6339 (STAGE_HOST_EXPORTS, EXPECT, HOST_LIB_PATH, USUAL_AR_FOR_TARGET,
6340 USUAL_AS_FOR_TARGET, USUAL_DLLTOOL_FOR_TARGET, USUAL_GCC_FOR_TARGET,
6341 USUAL_LD_FOR_TARGET, USUAL_NM_FOR_TARGET, USUAL_OBJDUMP_FOR_TARGET,
6342 USUAL_RANLIB_FOR_TARGET, USUAL_WINDRES_FOR_TARGET): Use it.
6343 (Host modules, Bootstrapped modules): Use it.
6344 (Build modules, Target modules): Do not create symlink trees,
6345 always configure out-of-srcdir.
6346 (distclean): Try removing $(host_subdir) with rm before using rm -rf.
6347 * configure.in (FLAGS_FOR_TARGET, CC_FOR_TARGET, GCJ_FOR_TARGET,
6348 GFORTRAN_FOR_TARGET, CXX_FOR_TARGET, RAW_CXX_FOR_TARGET): Use
6349 $(HOST_SUBDIR). Create a symlink for host_subdir.
6350
6351 * Makefile.in: Regenerate.
6352 * configure: Regenerate.
6353
6354 Merged from libada-gnattools-branch:
6355 2004-11-28 Nathanael Nerode <neroden@gcc.gnu.org>
6356
6357 * Makefile.def: Add gnattools as a module, depending on target-libada.
6358 * Makefile.in: Regenerate.
6359 * configure.in: Include gnattools in host_tools; disable it if ada
6360 is disabled.
6361 * configure: Regenerate.
6362
6363 2005-02-23 Nick Clifton <nickc@redhat.com>
6364
6365 * configure: Regenerate.
6366
6367 2005-02-22 Paul Schlie <schlie@comcast.net>
6368
6369 * configure.in: Allow darwin targeted ports to build tk, itcl and
6370 libgui.
6371
6372 2005-02-21 Eric Botcazou <ebotcazou@libertysurf.fr>
6373
6374 PR libgcj/10353
6375 * configure.in (noconfigdirs) <sparc-*-solaris2.[0-6]>: Add libgcj.
6376 * configure: Regenerate.
6377
6378 2005-02-08 Andrew Cagney <cagney@gnu.org>
6379
6380 * MAINTAINERS: Delete reference to dejagnu/ and mmalloc/ from the
6381 gdb/ section. Update GDB's URL.
6382
6383 2005-01-31 Andrew Cagney <cagney@gnu.org>
6384
6385 * gettext.m4: Only set ENABLE_NLS when gettext is present.
6386
6387 2005-01-29 Hans-Peter Nilsson <hp@axis.com>
6388
6389 * configure.in (noconfigdirs) <crisv32-*-*>: Match like cris-*-*.
6390 <crisv32-*-*, cris-*-*>: Only disable target-newlib and
6391 target-libgloss when not *-*-elf and *-*-aout.
6392 * configure: Regenerate.
6393
6394 2005-01-27 Andrew Cagney <cagney@gnu.org>
6395
6396 * gettext.m4: Don't use NONE as a default for CATOBJEXT.
6397
6398 2005-01-24 Andrew Cagney <cagney@gnu.org>
6399
6400 * gettext.m4: Only fall back to ../intl/ when it's present.
6401
6402 2005-01-17 Kelley Cook <kcook@gcc.gnu.org>
6403
6404 * install-sh, config.sub: Import from upstream.
6405
6406 2005-01-17 Kelley Cook <kcook@gcc.gnu.org>
6407
6408 PR bootstrap/18222
6409 * Makefile.def: Pass CPPFLAGS_FOR_TARGET.
6410 * Makefile.tpl: Define target CPPFLAGS on CPPFLAGS_FOR_TARGET.
6411 * Makefile.in: Regenerate.
6412
6413 2005-01-03 Paolo Bonzini <bonzini@gnu.org>
6414
6415 Revert 2004-12-28 Makefile changes, a better fix will be
6416 applied to mainline and src after GCC 4.0 branches.
6417
6418 2004-12-28 Paolo Bonzini <bonzini@gnu.org>
6419
6420 PR bootstrap/17383
6421
6422 * Makefile.def (target_modules): Remove stage parameter,
6423 it is always true now.
6424 * Makefile.tpl (configure-build-[+module+],
6425 configure-target-[+module+]): Always build symlink tree
6426 for the directory and for include. BUILD_SUBDIR and
6427 TARGET_SUBDIR cannot be . anymore.
6428 * Makefile.in: Regenerate.
6429
6430 2004-12-25 David Edelsohn <edelsohn@gnu.org>
6431
6432 Revert 2004-12-08 Makefile changes.
6433
6434 2004-12-16 Andrew Stubbs <andrew.stubbs@st.com>
6435
6436 * configure.in (sh64-*-*): Reenable gprof.
6437 * configure: Regenerate.
6438
6439 2004-12-09 Jim Blandy <jimb@redhat.com>
6440
6441 * MAINTAINERS: List 'depcomp' as part of automake.
6442
6443 2004-12-08 David Edelsohn <edelsohn@gnu.org>
6444
6445 * Makefile.def (flags_to_pass): Add PICFLAG_FOR_TARGET.
6446 * Makefile.tpl (EXTRA_HOST_FLAGS): Add PICFLAG.
6447 (EXTRA_TARGET_FLAGS): Add PICFLAG.
6448 * Makefile.in: Regenerate.
6449
6450 2004-12-07 Matt Kraai <kraai@ftbfs.org>
6451
6452 * Makefile.tpl: Generate normal dependencies if the LHS module is
6453 not bootstrapped.
6454 * Makefile.in: Regenerate.
6455
6456 2004-12-03 Richard Sandiford <rsandifo@redhat.com>
6457
6458 * configure.in: Include config/gxx-include-dir.m4. Use
6459 TL_AC_GXX_INCLUDE_DIR. Remove some now-redundant AC_SUBSTs.
6460 * configure: Regenerate.
6461
6462 2004-12-03 Richard Sandiford <rsandifo@redhat.com>
6463
6464 * config.if: Delete.
6465 * configure.in: Set libstdcxx_incdir directly.
6466 * configure: Regenerate.
6467 * MAINTAINERS: Remove mention of config.if.
6468 * src-release (DEVO_SUPPORT): Remove config.if.
6469
6470 2004-12-02 Eric Christopher <echristo@redhat.com>
6471
6472 * Makefile.tpl (clean-target-libgcc): Add stmp-dirs to list
6473 of things to remove.
6474 * Makefile.in: Regenerate.
6475
6476 2004-12-02 Richard Sandiford <rsandifo@redhat.com>
6477
6478 * configure.in: Clear gcc_version_trigger if the file doesn't exist.
6479 * configure: Regenerate.
6480
6481 2004-12-02 Richard Sandiford <rsandifo@redhat.com>
6482
6483 * configure.in: Include config/gcc-version.m4. Use TL_AC_GCC_VERSION
6484 to set gcc_version_trigger. Remove some now-redundant AC_SUBSTs.
6485 * configure: Regenerate.
6486
6487 2004-11-26 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
6488
6489 * configure.in (hppa*-*-linux*): Don't add libgcj to noconfigdirs.
6490 (hppa*64*-*-*): Delete incorrect comment.
6491 * configure: Rebuilt.
6492
6493 2004-11-15 Kelley Cook <kcook@gcc.gnu.org>
6494
6495 * install-sh, compile: Import from automake.
6496
6497 2004-11-15 Kelley Cook <kcook@gcc.gnu.org>
6498
6499 * config.guess, config.sub: Import from savannnah.
6500
6501 2004-11-12 Mike Stump <mrs@apple.com>
6502
6503 * Makefile.def: Add html support.
6504 * Makefile.tpl: Likewise.
6505 * Makefile.in: Regenerate.
6506
6507 2004-11-11 Geoffrey Keating <geoffk@apple.com>
6508
6509 PR 18423
6510 * configure.in: Remove all instances of build-fixincludes from
6511 noconfigdirs.
6512 (build_configargs): Supply --target to subdirectories.
6513 * configure: Regenerate.
6514
6515 * Makefile.def: Make gcc install depend on fixincludes install.
6516 * Makefile.in: Regenerate.
6517
6518 2004-11-08 Hans-Peter Nilsson <hp@bitrange.com>
6519
6520 * configure.in (noconfigdirs) [mmix-*-*]: Disable
6521 target-libgfortran.
6522 * configure: Regenerate.
6523
6524 2004-11-07 David Edelsohn <edelsohn@gnu.org>
6525
6526 * config-ml.in: Pass FCFLAGS for multilibs, handle GFORTRAN
6527 like CC.
6528
6529 2004-11-05 Paolo Bonzini <bonzini@gnu.org>
6530
6531 * Makefile.def (host fixincludes): Specify missing targets.
6532 * Makefile.in: Regenerate.
6533
6534 2004-11-04 H.J. Lu <hongjiu.lu@intel.com>
6535
6536 PR other/17783
6537 * configure.in: Set up LD_LIBRARY_PATH by default for gcc.
6538 * configure: Regenerated.
6539
6540 2004-11-04 Daniel Jacobowitz <dan@debian.org>
6541
6542 * configure.in (arm-*-oabi*, thumb-*-oabi*): Remove.
6543 * configure: Regenerated.
6544
6545 2004-10-28 Eric B. Weddington <ericw@evcohs.com>
6546
6547 PR target/18151
6548 * configure.in (case ${target}): Do not build fixincludes for avr.
6549 * configure: Regenerated.
6550
6551 2004-10-26 Paolo Bonzini <bonzini@gnu.org>
6552
6553 * configure.in (case ${target}): Do not build fixincludes
6554 on platforms where it is not used.
6555 * configure: Regenerated.
6556
6557 2004-10-23 Daniel Jacobowitz <dan@debian.org>
6558
6559 * configure.in: Use an absolute path to install-sh.
6560 * configure: Regenerated.
6561
6562 2004-10-19 Andrew Cagney <cagney@gnu.org>
6563
6564 * src-release (do-djunpack, do-md5sum): Install the generated file
6565 directly into the proto-toplev/ directory.
6566
6567 2004-10-19 Andrew Cagney <cagney@gnu.org>
6568
6569 * src-release (GDB_SUPPORT_DIRS): Remove utils and intl.
6570
6571 2004-10-12 Kelley Cook <kcook@gcc.gnu.org>
6572
6573 * configure.in (*-*-cygwin*): Supress warning if newlib not present.
6574 * configure: Regenerate.
6575
6576 2004-10-06 Paolo Bonzini <bonzini@gnu.org>
6577
6578 Fix wrong conflict resolution in:
6579
6580 2004-08-16 Paolo Bonzini <bonzini@gnu.org>
6581
6582 * Makefile.in: Regenerate.
6583 * Makefile.tpl (Autogenerated `all-*' targets): Invoke $(TARGET-*)
6584 in the recursive `make', instead of hardwiring `all'.
6585 (Autogenerated TARGET-* variables): New.
6586
6587 2004-10-05 Ulrich Weigand <uweigand@de.ibm.com>
6588
6589 Merged from GCC / libtool upstream:
6590 2004-10-02 P.J. Darcy <darcypj@us.ibm.com>
6591 * ltcf-c.sh (tpf*): Add ld_shlibs=yes.
6592 * ltcf-cxx.sh (tpf*): Likewise.
6593 * ltconfig (tpf*): Add TPF OS configuration support.
6594
6595 2004-09-30 Tomer Levi <Tomer.Levi@nsc.com>
6596
6597 * configure.in: Enable target-libgloss for crx-*-*.
6598 * configure: Regenerate.
6599
6600 2004-09-24 Michael Roth <mroth@nessie.de>
6601
6602 * configure.in (--without-headers): Add missing double quotes.
6603 * configure: Regenerate.
6604
6605 2004-09-24 Kelley Cook <kcook@gcc.gnu.org>
6606
6607 * ylwrap: Revert to previous version.
6608
6609 2004-09-23 H.J. Lu <hongjiu.lu@intel.com>
6610
6611 PR bootstrap/17369
6612 * Makefile.tpl (REALLY_SET_LIB_PATH): Add @SET_GCC_LIB_PATH@.
6613 (HOST_EXPORTS]): Add @SET_GCC_LIB_PATH@. Set and export
6614 SET_GCC_LIB_PATH_CMD.
6615 (BASE_TARGET_EXPORTS): Likewise.
6616 * Makefile.in: Regenerated.
6617
6618 * configure.in (SET_GCC_LIB_PATH): Set and substitute.
6619 * configure: Regenerated.
6620
6621 2004-09-23 Kelley Cook <kcook@gcc.gnu.org>
6622
6623 * config.guess: New upstream version
6624 * compile, depcomp, install-sh, ylwrap: Likewise.
6625
6626 2004-09-19 Roger Sayle <roger@eyesopen.com>
6627
6628 * config/mh-x86omitfp: New host makefile fragment. Add
6629 -fomit-frame-pointer to the default BOOT_CFLAGS.
6630 * configure.in: Use it to speed up bootstrap on some IA-32 hosts.
6631 * configure: Regenerate.
6632
6633 2004-09-15 Andrew Pinski <pinskia@physics.uc.edu>
6634
6635 PR target/11572
6636 * configure.in (*-*-darwin*): Renable libobjc.
6637 * configure: Regenerate.
6638
6639 2004-09-09 Daniel Berlin <dberlin@dberlin.org>
6640
6641 * Makefile.def: Remove libbanshee.
6642 * Makefile.tpl: Ditto.
6643 * configure.in: Ditto.
6644 * Makefile.in: Regen.
6645 * configure: Ditto.
6646
6647 2004-09-07 Paolo Bonzini <bonzini@gnu.org>
6648
6649 * missing: Import latest version from master repository.
6650
6651 2004-09-04 Nick Clifton <nickc@redhat.com>
6652
6653 * config.sub: Import latest version from master repository.
6654 * config.guess: Likewise.
6655 This includes these changes:
6656
6657 2004-08-27 Hans-Peter Nilsson <hp@axis.com>
6658
6659 * config.sub: Handle crisv32, alias etraxfs.
6660 * config.guess (crisv32:Linux:*:*): Handle.
6661
6662 2004-08-13 Brad Smith <brad@comstyle.com>
6663
6664 * config.guess (*:OpenBSD:*:*): Remove defunct MIPS machines.
6665 (sgi:OpenBSD:*:*): Emit mips64, not mipseb.
6666
6667 2004-08-11 Paul Eggert <eggert@cs.ucla.edu>
6668
6669 * config.guess (*:Darwin:*:*): If uname -p reports "unknown",
6670 assume the processor is a powerpc. This is because coreutils
6671 uname (at least versions 4.5.7 through 5.2.1) outputs "unknown"
6672 in this case, due to a MacOS X bug that causes
6673 sysctl ((int[]) {CTL_HW, HW_MACHINE_ARCH}, 2, buffer, &bufsize, 0, 0)
6674 to return a negative number.
6675 Problem reported by Petter Reinholdtsen in:
6676 http://lists.gnu.org/archive/html/bug-gnu-utils/2003-02/msg00201.html
6677
6678 2004-07-19 Ben Elliston <bje@gnu.org>
6679
6680 * config.guess (S7501:*:4.0:3.0): Handle NCR System V UNIX machine.
6681
6682 2004-06-24 Ben Elliston <bje@gnu.org>
6683
6684 * config.guess: Update copyright years.
6685 * config.sub: Likewise.
6686
6687 2004-06-22 Robert Millan <robertmh@gnu.org>
6688
6689 * config.guess (*:FreeBSD:*:*): Remove check for glibc (unneeded
6690 since GNU/kFreeBSD systems match *:GNU/*:*:* instead).
6691
6692 2004-06-22 Stanley F. Quayle <stan@stanq.com>
6693
6694 * config.guess (*:*VMS:*:*): New entry. Replaces
6695 Alpha:OpenVMS:*. Recognize and advertise all VMS flavors as dec
6696 manufacturer.
6697
6698 2004-06-22 Ben Elliston <bje@gnu.org>
6699
6700 * config.guess: Cray fixes from Wendy Palm <wendyp@cray.com>.
6701 * config.sub: Likewise.
6702
6703 2004-06-22 Ben Elliston <bje@gnu.org>
6704
6705 Reported by Hans-Peter Nilsson <hp@bitrange.com>:
6706 * config.sub: Correctly handle mmix-knuth and mmix-knuth-mmixware.
6707
6708 2004-06-11 Ben Elliston <bje@gnu.org>
6709
6710 * config.guess (pegasos:OpenBSD:*:*): Remove.
6711
6712 2004-06-11 Ben Elliston <bje@gnu.org>
6713
6714 From Wouter Verhelst <wouter@grep.be>:
6715 * config.guess (M68*:*:R3V[5678]:*): Detect R3V8.
6716
6717 2004-06-11 Ben Elliston <bje@gnu.org>
6718
6719 * config.guess (luna88k:OpenBSD:*:*): New.
6720
6721 2004-03-12 Kazuhiro Inaoka <inaoka.kazuhiro@renesas.com>
6722
6723 * config.guess (m32r*:Linux:*:*): New case.
6724 * config.sub: Handle m32rle.
6725
6726 2004-03-12 Ben Elliston <bje@wasabisystems.com>
6727
6728 From Jens Petersen <petersen@redhat.com>:
6729 * config.sub: Handle sparcv8.
6730
6731 2004-03-03 Ben Elliston <bje@wasabisystems.com>
6732
6733 From Tom Smith <smith@cag.lkg.hp.com>:
6734 * config.guess: Version suffixes are equally significant on Tru64
6735 V4.* and V5.*, so do not ignore them on V5.*. Handle a version
6736 prefix of "P" (patched kernel).
6737
6738 2004-02-23 Tal Agmon <Tal.Agmon@nsc.com>
6739
6740 * config.sub: Add support for National Semiconductor CRX target.
6741
6742 2004-09-03 Jan Beulich <jbeulich@novell.com>
6743
6744 * configure.in: Remove target-libstdc++-v3 from noconfigdirs for
6745 *-*-netware, but add target-libmudflap.
6746 Consolidate *-*-netware targets (of which really only i?86 exists)
6747 into a single entry.
6748 * configure: Likewise.
6749
6750 2004-09-01 Paolo Bonzini <bonzini@gnu.org>
6751
6752 * Makefile.tpl (sorry): Remove.
6753 (clean-stage[+id+], clean-stage[+id+]-module): New targets.
6754 (cleanstrap targets): Depend on distclean, not distclean-stage1.
6755 (do-clean): Clean per-stage directories too.
6756 (do-distclean): Run distclean-stage1 too.
6757 (.NOTPARALLEL): Enable during toplevel bootstrap.
6758 (stage[+id+]-bubble): Enable parallel execution during
6759 the recursive invocation.
6760 * Makefile.in: Regenerate.
6761
6762 Sync from gcc (moving the Makefile.in change to Makefile.tpl):
6763
6764 2004-08-31 Robert Bowdidge <bowdidge@apple.com>
6765
6766 * Makefile.in: Move BOOT_CFLAGS above host makefile fragment include.
6767 * configure.in: add test for powerpc-*-darwin* to specify makefile frag
6768 * configure: regenerate
6769 * config/mh-ppc-darwin: create file, override BOOT_CFLAGS for
6770 -mdynamic-no-pic
6771
6772 2004-08-31 Paolo Bonzini <bonzini@gnu.org>
6773
6774 * Makefile.tpl: Move BOOT_CFLAGS above host makefile fragment
6775 include.
6776 * configure.in: Fix indentation.
6777 * configure: Regenerate.
6778
6779 2004-08-31 Paolo Bonzini <bonzini@gnu.org>
6780
6781 * Makefile.def (build_modules): Add fixincludes.
6782 (dependencies): Make gcc depend on fixincludes.
6783 * configure.in (build_tools): Add fixincludes.
6784 (build_configdirs): Always include build_libs.
6785 * Makefile.in: Regenerate.
6786 * configure: Regenerate.
6787
6788 2004-08-30 Paolo Bonzini <bonzini@gnu.org>
6789
6790 * Makefile.def (bootstrap stages): Add 'lean' parameter.
6791 * Makefile.tpl (configure-stageN-*, all-stageN-*): Turned into
6792 phony targets; do not generate timestamp files.
6793 (distclean-stageN): Remove references to their timestamp files.
6794 (restageN, touch-stageN): Remove.
6795 (stageN-bubble): Rewritten.
6796 (compare): Support lean bootstraps.
6797 * Makefile.in: Regenerate.
6798
6799 * configure.in: Only warn when bootstrapping but
6800 build != host or build != target. Support lean bootstraps.
6801 * configure: Regenerate.
6802
6803 Sync from gcc:
6804 2004-08-26 Phil Edwards <phil@codesourcery.com>
6805
6806 * configure.in: Give a better error message if GMP/MPFR are missing
6807 and a language needing them has been requested.
6808 * configure: Regenerated.
6809
6810 2004-08-25 Phil Edwards <phil@codesourcery.com>
6811
6812 * configure.in: Print a list of available language front-ends if
6813 a requested one is missing. Tidy stray tab characters.
6814 * configure: Regenerated.
6815
6816 2004-08-17 Paolo Bonzini <bonzini@gnu.org>
6817
6818 * Makefile.in: Regenerate.
6819 * configure: Regenerate.
6820
6821 * Makefile.def (bootstrap-stage): Rename extra_*_flags to
6822 stage_*_flags.
6823 * Makefile.tpl (configure-[+module+], all-[+module+]): Exit
6824 for bootstrapped modules if toplevel bootstrap is going.
6825 (GCC bootstrap): Generate per-stage targets for all bootstrapped
6826 modules. Adjust for changes in Makefile.def. Enable several
6827 rules even in non-bootstrap mode, just to avoid peppering the
6828 template with unnecessary "@if/@endif gcc-bootstrap" pairs.
6829 (stage-[+prev+]-bubble): Remove.
6830
6831 * Makefile.def (Dependencies): Depend on all-build-bison,
6832 all-build-flex, all-build-byacc, all-build-texinfo, rather
6833 than the host variations.
6834 * Makefile.tpl (BUILD_DIR_PREFIX): Remove. Replace throughout
6835 with BUILD_SUBDIR.
6836 (BISON): Update for recent Bisons.
6837 (YACC): Fix typo.
6838 (cross): Depend on all-build.
6839 (all): Do not depend on all-build.
6840 (prebootstrap): Remove.
6841 (dep-kind): Accept separate prefixes for MODULE and ON variables.
6842 (Prebootstrap dependencies): Add them to the per-stage targets
6843 and to all-prebootstrap.
6844 * configure.in (build_configdirs): Always enable build_tools.
6845 (BUILD_DIR_PREFIX): Remove.
6846
6847 * Makefile.def (gcc): Add target variable.
6848 (gdb, expect, guile, tk, tix): Replace with_x with extra_make_flags.
6849 * Makefile.tpl (Autogenerated `all-*' targets): Invoke $(TARGET-*)
6850 in the recursive `make', instead of hardwiring `all'.
6851 (Autogenerated TARGET-* variables): New.
6852
6853 2004-08-17 Robert Millan <robertmh@gnu.org>
6854
6855 * configure.in: In noconfigdirs check, match GNU/k*BSD with GNU/Linux
6856 (instead of FreeBSD).
6857 * configure: Regenerate.
6858
6859 2004-08-12 Nathanael Nerode <neroden@gcc.gnu.org>
6860
6861 * Makefile.def, configure.in, src-release: Remove useless, bogus
6862 references to tix.
6863 * Makefile.in, configure: Regenerate.
6864
6865 * src-release: Stop distributing mmalloc with gdb (which doesn't
6866 use it).
6867 * Makefile.def: GDB doesn't depend on mmalloc anymore.
6868 * Makefile.in: Regenerate.
6869
6870 2004-08-09 Mark Mitchell <mark@codesourcery.com>
6871
6872 * configure.in (arm*-*-eabi*): New target.
6873 * configure: Regenerate.
6874
6875 2004-08-01 Robert Millan <robertmh@gnu.org>
6876
6877 * configure.in: Turn mt-linux into mt-gnu. Use mt-gnu and enable
6878 libmudflap for all GNU-based systems (with Glibc).
6879 * configure: Regenerate.
6880
6881 2004-08-06 Paolo Bonzini <bonzini@gnu.org>
6882
6883 * Makefile.def (bfd, opcodes, gcc, zlib): Mark as bootstrap module.
6884 (bison, byacc, flex, texinfo): Do not mark as bootstrap module.
6885 (Dependencies): New section.
6886 * Makefile.tpl (Dependencies): Generate from Makefile.def.
6887 (configure-target-[+module+]): Depend on maybe-all-gcc
6888 (all-prebootstrap): New name of all-bootstrap. Changed throughout.
6889 (toplevel profiledbootstrap): Fix dependencies.
6890 * Makefile.in: Regenerate.
6891
6892 2004-08-03 Mark Mitchell <mark@codesourcery.com>
6893
6894 * configure.in (arm*-*-symbianelf*): Add ${libgcj} and
6895 target-libiberty to noconfigdirs.
6896
6897 2004-08-03 Paul Brook <paul@codesourcery.com>
6898
6899 * configure.in: Check for MPFR as well as GMP.
6900 * configure: Regenerate.
6901
6902 2004-08-03 Paolo Bonzini <bonzini@gnu.org>
6903
6904 * Makefile.def (host-modules): Add gcc.
6905 * Makefile.in: Regenerate.
6906 * Makefile.tpl (sorry): New rule.
6907 (configure-host, all-host, [+make_target+]-host, do-check,
6908 install-host): Do not add gcc as a special case.
6909 (host modules): Add a small special-casing for gcc. Export
6910 extra_make_flags through the environment.
6911 (maybe-configure-gcc, configure-gcc, maybe-all-gcc, all-gcc,
6912 maybe-check-gcc, check-gcc, maybe-install-gcc, install-gcc,
6913 other recursive targets for gcc): Remove.
6914
6915 (all, do-[+make_target+], do-check): Wrap between unstage and stage.
6916 (stage, unstage): New rules.
6917 (stage[+id+]-start, stage[+id+]-end, [+compare-target+],
6918 distclean-stage[+id+]): Use stage_current.
6919 ([+bootstrap-target+], profiledbootstrap): Do not invoke manually
6920 the stage*-start rules.
6921
6922 2004-07-19 Robert Millan <robertmh@gnu.org>
6923
6924 Synced from gcc:
6925
6926 2004-04-26 Robert Millan <robertmh@gnu.org>
6927
6928 Add patches from libtool CVS.
6929 * libtool.m4: Add kfreebsd*-gnu and knetbsd*-gnu.
6930 * ltconfig: Likewise.
6931 * ltcf-c.sh: Likewise.
6932 * ltcf-cxx.sh: Likewise.
6933 * ltcf-gcj.sh: Likewise.
6934
6935 2004-07-12 Paolo Bonzini <bonzini@gnu.org>
6936
6937 * configure.in: Add noconfigdirs for crx-*-*.
6938 * configure: Regenerate.
6939
6940 2004-07-12 Paolo Bonzini <bonzini@gnu.org>
6941
6942 Synced from gcc:
6943
6944 2004-07-09 Loren J. Rittle <ljrittle@acm.org>
6945
6946 * configure.in: Build libmudflap by default on FreeBSD.
6947 * configure: Regenerated.
6948
6949 2004-07-09 Mark Mitchell <mark@codesourcery.com>
6950
6951 * configure.in: Do not build libmudflap by default on non-GNU/Linux
6952 systems.
6953 * configure: Regenerated.
6954
6955 2004-07-08 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
6956
6957 PR target/16344
6958 * Makefile.tpl (profiledbootstrap): Build runtime libraries with
6959 feedback based compiler.
6960 * Makefile.in: Rebuilt.
6961
6962 2004-07-05 Phil Edwards <phil@codesourcery.com>
6963
6964 * configure.in: Do not prepend $srcdir to /dev/null in
6965 makefile fragments.
6966 * configure: Regenerate.
6967
6968 2004-07-08 Alexandre Oliva <aoliva@redhat.com>
6969
6970 * Makefile.def (host_modules): Set bootstrap=true for flex.
6971 * Makefile.tpl (all-gcc): Depend on texinfo and flex.
6972 * Makefile.in: Rebuilt.
6973
6974 2004-07-01 Paolo Bonzini <bonzini@gnu.org>
6975
6976 * Makefile.def (build_modules): Add bison, byacc, flex,
6977 m4, texinfo.
6978 (flags_to_pass): Add FLEX.
6979 * Makefile.tpl (BUILD_DIR_PREFIX, BASE_EXPORTS): New.
6980 (BUILD_EXPORTS, HOST_EXPORTS, BASE_TARGET_EXPORTS): Include it.
6981 (DEFAULT_YACC, USUAL_YACC, DEFAULT_LEX, USUAL_LEX, DEFAULT_M4,
6982 DEFAULT_MAKEINFO): Remove.
6983 (CONFIGURED_YACC, CONFIGURED_FLEX, CONFIGURED_BISON,
6984 CONFIGURED_LEX, CONFIGURED_M4, CONFIGURED_MAKEINFO): Substitute.
6985 (YACC, FLEX, BISON, LEX, M4, MAKEINFO): Define to look into
6986 objdir or else use configured tool.
6987 (all-build): New.
6988 (all): Depend on it.
6989 (Build module dependencies): Add.
6990 * Makefile.in: Regenerate.
6991 * configure.in: Better support for multiple build modules,
6992 matching what is done for host/target modules. Do not look
6993 for "plausible" locations of build tools if Canadian cross.
6994 Use autoconf's AC_PROG_CC to find a C compiler. Define
6995 BUILD_DIR_PREFIX. Look for flex, makeinfo and m4.
6996 * configure: Regenerate.
6997
6998 2004-06-22 Paolo Bonzini <bonzini@gnu.org>
6999
7000 * Makefile.tpl (HOST_EXPORTS): Fix pasto.
7001 * Makefile.in: Regenerate.
7002
7003 2004-06-22 Paolo Bonzini <bonzini@gnu.org>
7004
7005 * Makefile.tpl (configure-build-[+module+],
7006 configure-[+module+], configure-target-[+module+]): Pass
7007 [+extra_configure_args+].
7008 (all-build-[+module+], all-[+module+], check-[+module+],
7009 install-[+module+], [+make_target+]-[+module+],
7010 all-target-[+module+], check-target-[+module+],
7011 install-target-[+module+], [+make_target+]-target-[+module+]):
7012 Pass [+extra_make_args+].
7013 (HOST_EXPORTS): Include the former GCC_HOST_EXPORTS.
7014 (GCC_HOST_EXPORTS): Remove.
7015 (configure-gcc, all-gcc, GCC_STRAP_TARGETS, profiledbootstrap,
7016 cross, check-gcc, check-gcc-c++, install-gcc,
7017 gcc-no-fixedincludes, [+make_target+]-gcc, stage[+id+]-bubble):
7018 Replace GCC_HOST_EXPORTS with HOST_EXPORTS.
7019 * Makefile.in: Regenerate.
7020
7021 2004-06-21 Christopher Faylor <cgf@alum.bu.edu>
7022
7023 * configure.in: Check for srcdir/winsup rather than build directory
7024 winsup.
7025 * configure: Regenerate.
7026
7027 2004-06-17 Corinna Vinschen <vinschen@redhat.com>
7028
7029 * configure.in: Don't build Cygwin native newlib if winsup
7030 directory is missing. Emit warning instead.
7031 * configure: Regenerate.
7032
7033 2004-06-09 Paolo Bonzini <bonzini@gnu.org>
7034
7035 * Makefile.tpl (touch-stage[+id+]): New.
7036 (restage[+prev+]): Depend on touch-stage[+id+].
7037
7038 * Makefile.tpl (RECURSE_FLAGS_TO_PASS): New.
7039 Use it throughout.
7040
7041 * Makefile.def: Add profile and feedback bootstrap stages.
7042 Remove next field from bootstrap stages.
7043 * Makefile.tpl (LN, LN_S): Substitute.
7044 (stageN-start, stageN-end): Use double-colon rules, to
7045 provide a hook for additional setup commands.
7046 (distclean-stageN-gcc, restageN): Create dependencies from
7047 [+prev+], not from [+next+].
7048 (stageN-bubble): Add commands for successive stages from
7049 [+prev+], using double-colon rules.
7050 (all-stageN-gcc): Fix typo.
7051 (stagefeedback-start, profiledbootstrap): New.
7052 * Makefile.in: Regenerate.
7053 * configure.in: Call ACX_PROG_LN.
7054 * configure: Regenerate.
7055
7056 2004-06-03 Paolo Bonzini <bonzini@gnu.org>
7057
7058 * configure.in: Fix --enable-bootstrap breakage introduced in trees
7059 without gcc.
7060 * configure: Regenerate.
7061
7062 2004-06-01 Paolo Bonzini <bonzini@gnu.org>
7063
7064 * Makefile.tpl: Fix typo.
7065 * Makefile.in: Regenerate.
7066
7067 2004-06-01 Paolo Bonzini <bonzini@gnu.org>
7068
7069 * configure.in: Remove new- prefix from toplevel
7070 bootstrap targets.
7071 * configure: Regenerate.
7072
7073 2004-06-01 Paolo Bonzini <bonzini@gnu.org>
7074
7075 Merge this patch from the gcc tree:
7076
7077 2004-05-30 Andreas Jaeger <aj@suse.de>
7078 Jim Wilson <wilson@specifixinc.com>
7079
7080 * config-ml.in: Pass FFLAGS and ADAFLAGS for multilibs, handle F77
7081 like CC.
7082
7083 2004-06-01 Paolo Bonzini <bonzini@gnu.org>
7084
7085 * Makefile.tpl (all.normal): Rename to all.
7086 (all): Replace with a rule to pick the default
7087 target from configure.
7088 (all-gcc, configure-gcc): Use conditionals to
7089 do nothing when toplevel bootstrap is going on.
7090 (GCC directory bootstrap) [gcc-bootstrap]: Disable.
7091 (Toplevel bootstrap) [gcc-no-bootstrap]: Disable.
7092 * configure.in: Support --enable-bootstrap.
7093
7094 * Makefile.def: Remove new- prefix from toplevel
7095 bootstrap targets.
7096 * Makefile.tpl: Likewise.
7097
7098 * Makefile.def: Add bootstrap_stage 4. Add bootstrap2
7099 target.
7100
7101 * Makefile.tpl (Toplevel bootstrap): Pass $(BASE_FLAGS_TO_PASS)
7102 $(RECURSE_FLAGS) to recursive invocation of make.
7103
7104 * Makefile.in: Regenerate.
7105 * configure: Regenerate.
7106
7107 2004-05-27 Daniel Jacobowitz <dan@debian.org>
7108
7109 * configure.in: Fix sed invocation for GFORTRAN_FOR_TARGET.
7110 * configure: Regenerate.
7111
7112 2004-05-25 Daniel Jacobowitz <drow@false.org>
7113
7114 * Makefile.tpl (BUILD_EXPORTS, HOST_EXPORTS, GCC_HOST_EXPORTS)
7115 (STAGE_HOST_EXPORTS, BASE_TARGET_EXPORTS, RAW_CXX_TARGET_EXPORTS)
7116 (NORMAL_TARGET_EXPORTS): New macros. Use them in all the recursive
7117 targets.
7118 * Makefile.in: Regenerate.
7119
7120 2005-05-24 Paolo Bonzini <bonzini@gnu.org>
7121
7122 * configure.in: Test the ability to symlink directories.
7123 * configure: Regenerate.
7124
7125 * Makefile.def (bootstrap-stage): New definitions.
7126 * Makefile.tpl (configure-stage1-gcc,
7127 configure-stage2-gcc, configure-stage3-gcc,
7128 all-stage1-gcc, all-stage2-gcc, all-stage3-gcc,
7129 new-bootstrap, new-cleanstrap, new-restage1, new-restage2,
7130 new-restage3, compare): Autogenerate, see Makefile.in
7131 entry for behavioral changes.
7132 (distclean-stage1, new-stage1-start, new-stage1-end,
7133 new-stage1-bubble, distclean-stage2, new-stage2-start,
7134 new-stage2-end, new-stage2-bubble, distclean-stage3,
7135 new-stage3-start, new-stage3-end): New autogenerated targets.
7136 (objext, prebootstrap, BOOT_CFLAGS,
7137 POSTSTAGE1_FLAGS_TO_PASS): Move above the autogenerated
7138 targets.
7139
7140 * Makefile.in: Regenerate.
7141 (distclean-stage1, new-stage1-start, new-stage1-end,
7142 new-stage1-bubble, distclean-stage2, new-stage2-start,
7143 new-stage2-end, new-stage2-bubble, distclean-stage3,
7144 new-stage3-start, new-stage3-end): New targets.
7145 (all-stage1-gcc): Move prebootstrap dependency from here...
7146 (configure-stage1-gcc): ...to here.
7147 (new-bootstrap): Use bubble targets.
7148 (new-cleanstrap, new-restage1, new-restage2, new-restage3):
7149 Use per-stage distclean targets.
7150 (configure-stage1-gcc, configure-stage2-gcc,
7151 configure-stage3-gcc, all-stage1-gcc,
7152 all-stage2-gcc, all-stage3-gcc, new-bootstrap):
7153 Use new-stageN-start to prepare the tree.
7154
7155 2004-05-23 Paolo Bonzini <bonzini@gnu.org>
7156
7157 * Makefile.def (host_modules): add libcpp.
7158 * Makefile.tpl: Add dependencies on and for libcpp.
7159 * Makefile.in: Regenerate.
7160 * configure.in: Add libcpp host module.
7161 * configure: Regenerate.
7162
7163 2004-05-17 Zack Weinberg <zack@codesourcery.com>
7164
7165 * Makefile.def, Makefile.tpl, configure.in: Remove all mention
7166 of libf2c.
7167 * configure, Makefile.in: Regenerate.
7168
7169 2004-05-13 Diego Novillo <dnovillo@redhat.com>
7170
7171 Merge from tree-ssa-20020619-branch.
7172
7173 * Makefile.def: Add libbanshee, libmudflap and libgfortran.
7174 * Makefile.tpl (BUILD_CONFIGDIRS): Add libbanshee.
7175 (HOST_GMPLIBS): Define.
7176 (HOST_GMPINC): Define.
7177 (TARGET_LIB_PATH): Add libmudflap.
7178 (GFORTRAN_FOR_TARGET): Define.
7179 (configure-build*): Export GFORTRAN.
7180 (configure-gcc): Export GMPLIBS and GMPINC.
7181 (all-gcc): Add maybe-all-libbanshee.
7182 (configure-target-libgfortran): Define.
7183 * Makefile.in: Regenerate.
7184 * configure.in (host_libs): Add libbanshee.
7185 (target_libraries): Add target-libmudflap and target-libgfortran.
7186 Add --with-libbanshee.
7187 Handle --disable-libmudflap.
7188 (*-*-freebsd*): Use with_gmp.
7189 Add $(libgcj) to noconfigdirs.
7190 * configure: Regenerate.
7191 * depcomp: New file.
7192 * MAINTAINERS: Add tree-ssa maintainers.
7193
7194 2004-04-28 Paolo Bonzini <bonzini@gnu.org>
7195
7196 * config/acx.m4: Fix fastcompare support for new-bootstrap.
7197 * configure: Regenerate.
7198
7199 2004-04-27 Paolo Bonzini <bonzini@gnu.org>
7200
7201 Revert:
7202 2004-04-26 Paolo Bonzini <bonzini@gnu.org>
7203
7204 * Makefile.def (flags_to_pass): Remove *dir variables that
7205 are passed to the modules via TOPLEVEL_CONFIGURE_ARGUMENTS,
7206 as well as prefix and exec_prefix.
7207 * Makefile.in: Regenerate.
7208
7209 2004-04-26 Paolo Bonzini <bonzini@gnu.org>
7210
7211 * Makefile.def (host_modules): Mark with the bootstrap
7212 flag packages on which gcc depends.
7213 * Makefile.tpl (all-bootstrap): Use it.
7214 * Makefile.in: Regenerate.
7215
7216 2004-04-26 Paolo Bonzini <bonzini@gnu.org>
7217
7218 * Makefile.def (flags_to_pass): Remove *dir variables that
7219 are passed to the modules via TOPLEVEL_CONFIGURE_ARGUMENTS,
7220 as well as prefix and exec_prefix.
7221 * Makefile.in: Regenerate.
7222
7223 2004-04-26 Paolo Bonzini <bonzini@gnu.org>
7224
7225 * configure.in: Invoke ACX_PROG_CMP_IGNORE_INITIAL.
7226 * configure: Regenerate.
7227 * config/acx.m4: Mutuate ACX_PROG_CMP_IGNORE_INITIAL from gcc.
7228 * gcc/Makefile.tpl (compare): Use the result of the test.
7229 * gcc/Makefile.in: Regenerate.
7230
7231 2004-04-23 Paolo Bonzini <bonzini@gnu.org>
7232
7233 * Makefile.tpl (all-stage1-gcc, all-stage2-gcc, all-stage3-gcc):
7234 Always relocate gcc and prev-gcc to the original names, even
7235 if the build fails.
7236 (new-cleanstrap, new-restage1, new-restage2, new-restage3):
7237 New targets.
7238
7239 2004-04-19 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
7240
7241 * configure.in (mips*-*-irix5*): Enable ld.
7242 * configure: Regenerate.
7243
7244 2004-04-15 James E Wilson <wilson@specifixinc.com>
7245
7246 * Makefile.tpl (configure-[+module+], configure-gcc,
7247 configure-stage1-gcc, configure-stage2-gcc, configure-stage3-gcc):
7248 Set and export LDFLAGS.
7249 * Makefile.in: Regenerate.
7250
7251 2004-04-09 Nathanael Nerode <neroden@gcc.gnu.org>
7252
7253 PR bootstrap/14871
7254 * Makefile.tpl: If we don't have built-in-tree target tools,
7255 use the ones found by configure rather than hacking around with
7256 program_transform_name.
7257 * configure.in: Give Makefile.tpl the information necessary
7258 to do that.
7259 * Makefile.in: Regenerate.
7260 * configure: Regenerate.
7261
7262 2004-04-06 Nathanael Nerode <neroden@gcc.gnu.org>
7263
7264 PR bootstrap/14760
7265 * configure.in: When computing baseargs, strip *all* copies of
7266 offending options. Also, don't match/substitute the trailing space,
7267 so that this actually works when two similar options are separated by
7268 only one space.
7269 * configure: Regenerate.
7270
7271 2004-04-06 David Edelsohn <edelsohn@gnu.org>
7272
7273 * configure.in (powerpc-*-aix*): Remove target-libada from noconfigdirs.
7274 (rs6000-*-aix*): Same.
7275 * configure: Regenerate.
7276
7277 2004-03-25 Stan Shebs <shebs@apple.com>
7278
7279 Remove MPW support, no longer used.
7280 * mpw-README, mpw-build.in, mpw-config.in, mpw-configure,
7281 mpw-install: Remove files.
7282 * src-release (DEVO_SUPPORT): Remove names of removed files.
7283 * MAINTAINERS: Likewise.
7284
7285 2004-03-24 Nathanael Nerode <neroden@gcc.gnu.org>
7286
7287 * Makefile.tpl (top level bootstrap support): Remove now-unneeded
7288 STRICT_WARN, WARN_CFLAGS flags passed down to make.
7289 * Makefile.in: Regenerate.
7290
7291 * configure.in (top level bootstrap support): Rework --enable-werror
7292 to set @stage2_werror_flag@.
7293 * configure: Regenerate.
7294 * Makefile.tpl (top level bootstrap support): Pass
7295 @stage2_werror_flag@ down to configure in stages 2 and 3.
7296 * Makefile.in: Regenerate.
7297
7298 2004-03-23 Nathanael Nerode <neroden@gcc.gnu.org>
7299
7300 * Makefile.tpl (new-bootstrap): Set CC and CC_FOR_BUILD in configure
7301 for stages 2 and 3 as well as in make. As a consequence, remove
7302 OUTPUT_OPTION (now detected by configure) from the flags passed down
7303 to make.
7304 * Makefile.in: Regenerate.
7305
7306 * Makefile.tpl (new-bootstrap): Fix typo.
7307 * Makefile.in: Regenerate.
7308
7309 2004-03-22 Nathanael Nerode <neroden@gcc.gnu.org>
7310
7311 * Makefile.tpl: Rearrange by moving recursive_targets rules
7312 into their proper sections.
7313 * Makefile.tpl (top level bootstrap support): Move disabling
7314 of coverage flags from 'make' to 'configure'; improve comments.
7315 * Makefile.in: Regenerate.
7316
7317 * Makefile.tpl (experimental top level bootstrap) Move stage1
7318 language setting from all- target to configure- target; disable
7319 intermodule optimization in stage 1; prevent gratuitous rebuilds
7320 of stage 1.
7321 * Makefile.in: Regenerate.
7322 * configure.in: Comma-separate stage 1 language list for top
7323 level bootstrap.
7324 * configure: Regenerate.
7325
7326 * Makefile.tpl: Clean up experimental top level bootstrap support:
7327 note known problems; set CONFIG_SHELL; don't set BUILD_CC; relocate
7328 prev-gcc in configure- targets as well as all- targets.
7329 * Makefile.in: Regenerate.
7330
7331 2004-03-17 Paolo Bonzini <bonzini@gnu.org>
7332
7333 * configure.in: Remove symbolic link section.
7334 * configure: Regenerate.
7335 * Makefile.tpl (links): Remove.
7336 * Makefile.in: Regenerate.
7337
7338 2004-03-15 Paolo Bonzini <bonzini@gnu.org>
7339 Nathanael Nerode <neroden@gcc.gnu.org>
7340
7341 * configure.in (DEFAULT_YACC, DEFAULT_M4, DEFAULT_LEX):
7342 Set with AC_CHECK_PROGS.
7343 * configure.in: Fix comment typo from last patch.
7344 * configure: Regenerate.
7345
7346 2004-03-15 Nathanael Nerode <neroden@gcc.gnu.org>
7347
7348 * Makefile.tpl: Introduce experimental top level bootstrap support.
7349 * Makefile.in: Regenerate.
7350 * configure.in: Introduce support for top level bootstrap.
7351 * configure: Regenerate.
7352
7353 2004-03-12 Eric Botcazou <ebotcazou@gcc.gnu.org>
7354 Paolo Bonzini <bonzini@gnu.org>
7355
7356 PR bootstrap/14522
7357 * configure.in: Cope with shells that do not support unquoted ^
7358 * configure: Regenerate.
7359
7360 2004-03-11 Eric Botcazou <ebotcazou@gcc.gnu.org>
7361 Paolo Bonzini <bonzini@gnu.org>
7362
7363 PR bootstrap/14522
7364 * configure.in: Cope with shell that do not support nesting
7365 quotes inside quoted backquote substitutions.
7366 * configure: Regenerate.
7367
7368 2004-03-10 Andrew Pinski <pinskia@physics.uc.edu>
7369
7370 PR bootstrap/14522
7371 * configure.in: Fix escaping of $.
7372 * configure: Regenerate.
7373
7374 2004-03-11 Nathanael Nerode <neroden@gcc.gnu.org>
7375
7376 * configure: Regenerate.
7377
7378 2004-03-08 Paolo Bonzini <bonzini@gnu.org>
7379
7380 PR ada/14131
7381 Move language detection to the top level.
7382 * configure.in: Find default values for the tools as
7383 soon as possible. Disable ada if GNAT is not found.
7384 Emit error message about missing languages. Expand
7385 --enable-languages=all for the gcc subdirectory.
7386
7387 2004-03-01 Richard Sandiford <rsandifo@redhat.com>
7388
7389 * configure.in (mips64*-*-linux*): Override mips*-*-linux* case
7390 and disable libgcj.
7391 * configure: Regenerated.
7392
7393 2004-02-28 Nathanael Nerode <neroden@gcc.gnu.org>
7394
7395 PR bootstrap/7087
7396 * Makefile.tpl: Guard XFOO sed statements better.
7397 * Makefile.tpl: Add dependency for configure-target-libada.
7398 * Makefile.in: Regenerate (incidentally fixes broken
7399 commit when libada-branch was merged).
7400
7401 2004-02-28 Andrew Cagney <cagney@redhat.com>
7402
7403 * src-release (CVS_NAMES): Define.
7404 (do-tar, do-tar): Prune $(CVS_NAMES).
7405
7406 2004-02-23 Andrew Cagney <cagney@redhat.com>
7407
7408 * texinfo/texinfo.tex: Update from version 2003-02-03.16 to
7409 2004-02-19.09.
7410
7411 2004-02-19 Nathanael Nerode <neroden@gcc.gnu.org>
7412
7413 PR bootstrap/11932
7414 * mkinstalldirs, install-sh: Import from automake CVS HEAD.
7415
7416 2004-02-19 Andrew Cagney <cagney@redhat.com>
7417
7418 * config.guess: Update from version 2003-06-12 to 2004-02-16.
7419 * config.sub: Update from version 2003-06-13 to 2004-02-16.
7420
7421 2004-02-11 David Edelsohn <edelsohn@gnu.org>
7422
7423 * configure.in (powerpc-*-aix*): Add target-libada to noconfigdirs.
7424 (rs6000-*-aix*): Same.
7425 * configure: Regenerate.
7426
7427 2004-02-11 Kelley Cook <kcook@gcc.gnu.org>
7428
7429 * configure.in (host): Add in missing $noconfigdirs to defines.
7430 * configure: Regenerate.
7431
7432 2004-02-10 Arnaud Charlet <charlet@act-europe.fr>,
7433 Nathanael Nerode <neroden@gcc.gnu.org>
7434
7435 PR ada/6637, PR ada/5911
7436 Merge with libada-branch:
7437 * configure.in, Makefile.tpl, Makefile.def: Add target-libada,
7438 with appropriate dependencies. Add --enable-libada configure switch.
7439 * configure, Makefile.in: Regenerate.
7440
7441 2004-02-05 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
7442
7443 * configure.in: Don't pass --with-stabs on IRIX 5 either.
7444 * configure: Regenerate.
7445
7446 2004-02-02 Jeff Johnston <jjohnstn@redhat.com>
7447
7448 * COPYING.NEWLIB: Update Red Hat license to 2004.
7449
7450 2004-01-23 DJ Delorie <dj@redhat.com>
7451
7452 * Makefile.def (target_modules) [libiberty]: Don't stage.
7453 * Makefile.in: Rebuilt.
7454
7455 2004-01-23 Jeff Johnston <jjohnstn@redhat.com>
7456
7457 * COPYING.NEWLIB: Update to include copyrights for new
7458 iconv code.
7459
7460 2004-01-15 Andrew Cagney <cagney@redhat.com>
7461
7462 * src-release: Update copyright year.
7463 (do-proto-toplev): Configure using i686-pc-linux-gnu.
7464 (NEWLIB_SUPPORT_DIRS): Delete macro.
7465 (newlib.tar.bz2): Delete rule.
7466
7467 2004-01-14 Loren J. Rittle <ljrittle@acm.org>
7468
7469 * Makefile.def (target_modules) [libtermcap, libiberty, zlib]: Stage.
7470 * Makefile.tpl (configure-target-[+module+]): Support stage.
7471 * Makefile.in: Rebuilt.
7472
7473 2003-01-14 Maciej W. Rozycki <macro@ds2.pg.gda.pl>
7474
7475 * gettext.m4: Quote names of macros to be defined by AC_DEFUN
7476 throughout.
7477
7478 2004-01-04 Nathanael Nerode <neroden@gcc.gnu.org>
7479
7480 * configure.in: Use ./config.cache, not config.cache.
7481 * configure: Regenerate.
7482 * Makefile.tpl: Special-casing not needed for GCC any more.
7483 * Makefile.in: Regenerate.
7484
7485 * configure.in: Don't share a cache file for host dirs.
7486 * configure: Regenerate.
7487
7488 * config-ml.in: Don't mess with the cache file.
7489
7490 2004-01-03 Nathanael Nerode <neroden@gcc.gnu.org>
7491
7492 * Makefile.tpl: Make GCC use a separate config.cache.
7493 * Makefile.in: Regenerate.
7494
7495 PR bootstrap/11932, PR bootstrap/11933
7496 (I don't know if it will fix either of them, but it relates
7497 to them.)
7498 * configure.in: Don't use shared config.cache for target
7499 directories.
7500 * configure: Regenerate.
7501
7502 2003-12-31 Roger Sayle <roger@eyesopen.com>
7503
7504 * configure.in (ia64*-*-hpux*): Disable building java libraries.
7505 * configure: Regenerated.
7506
7507 2003-12-21 Bernardo Innocenti <bernie@develer.com>
7508
7509 * configure.in (*-*-uclinux): Exclude newlib, libgloss and rda.
7510 * configure: Regenerated.
7511
7512 2003-12-19 Nathanael Nerode <neroden@gcc.gnu.org>
7513
7514 Port change over from GCC:
7515 2003-11-20 Kelley Cook <kcook@gcc.gnu.org>
7516 * Makefile.tpl (BASE_FLAGS_TO_PASS): Pass along CONFIG_SHELL.
7517 (configure-build-[+module+], configure-[+module+]): Likewise.
7518 (configure-target-[+module+], configure-gcc, config.status): Likewise.
7519 * Makefile.in: Regenerate.
7520
7521 2003-12-08 Thomas Fitzsimmons <fitzsim@redhat.com>
7522
7523 * configure.in (raw_libstdcxx_flags): Remove the leading space.
7524 * configure: Regenerate.
7525
7526 2003-11-27 Jeff Johnston <jjohnstn@redhat.com>
7527
7528 * COPYING.NEWLIB: Add license info for long long routines added to
7529 stdlib.
7530
7531 2003-11-14 Arnaud Charlet <charlet@act-europe.fr>
7532
7533 * Makefile.tpl (EXTRA_GCC_FLAGS): Pass BOOT_ADAFLAGS.
7534 * Makefile.in: Regenerate.
7535
7536 2003-10-20 Phil Edwards <phil@codesourcery.com>
7537
7538 * configure.in (*-*-vxworks): Add target-libiberty to noconfdirs.
7539 * configure: Regenerate.
7540
7541 2003-10-13 Nathanael Nerode <neroden@gcc.gnu.org>
7542
7543 * Makefile.tpl: Make GCC_FLAGS_TO_PASS a superset of
7544 HOST_FLAGS_TO_PASS.
7545 * Makefile.in: Regenerate.
7546
7547 2003-10-05 Mohan Embar <gnustuff@thisiscool.com>
7548
7549 * configure.in: Allow explicit specification of CFLAGS_FOR_BUILD.
7550 * configure: Rebuilt
7551 * Makefile.tpl: Use CFLAGS_FOR_BUILD computed by configure
7552 * Makefile.in: Rebuilt
7553
7554 2003-10-03 H.J. Lu <hongjiu.lu@intel.com>
7555
7556 * ltconfig (sys_lib_search_path_spec): Fix a typo for HPUX.
7557
7558 2003-10-01 Phil Edwards <pme@gcc.gnu.org>
7559
7560 * config-ml.in: Use ac_configure_args directly instead of
7561 ml_arguments. Only set ml_norecursion if --no[-]recursion is
7562 actually seen.
7563
7564 2003-10-01 Eric Botcazou <ebotcazou@libertysurf.fr>
7565
7566 * config-ml.in: Propagate INSTALL variables.
7567
7568 2003-09-21 Daniel Jacobowitz <drow@mvista.com>
7569
7570 * configure.in: Pass a computed --program-transform-name
7571 to subconfigures.
7572 * configure: Regenerated.
7573
7574 2003-09-20 Nathanael Nerode <neroden@gcc.gnu.org>
7575
7576 * Makefile.tpl: Don't pass down obsolete ENQUIRE variable.
7577 * Makefile.in: Regenerate.
7578
7579 * Makefile.tpl: Don't pass (unused) DLLTOOL or WINDRES to gcc.
7580 * Makefile.in: Regenerate.
7581
7582 2003-09-17 Daniel Jacobowitz <drow@mvista.com>
7583
7584 * configure.in (TOPLEVEL_CONFIGURE_ARGUMENTS, baseargs): Fix
7585 quoting.
7586 * configure: Regenerated.
7587
7588 2003-09-12 Michael Chastain <mec@shout.net>
7589
7590 Fix PR gdb/857.
7591 * src-release (do-proto-topleve): Remove junk files
7592 intl/config.cache, intl/config.status,
7593 intl/config.h, intl/stamp-h.
7594
7595 2003-09-14 Andrew Cagney <cagney@redhat.com>
7596
7597 * src-release (dejagnu.tar): New target.
7598 (dejagnu.tar.bz2): Recursively call "gdb-taz" rule.
7599 (do-djunpack): Use $(PACKAGE) for the package name.
7600
7601 2003-09-04 DJ Delorie <dj@redhat.com>
7602
7603 * configure: Regenerate.
7604
7605 2003-09-04 Robert Millan <robertmh@gnu.org>
7606
7607 * configure.in: Match GNU/KFreeBSD with new kfreebsd*-gnu triplet.
7608
7609 2003-09-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
7610
7611 * configure.in: Ensure arguments to sed are properly spaced.
7612 * configure: Regenerate.
7613
7614 2003-08-28 Daniel Jacobowitz <drow@mvista.com>
7615
7616 Merge from gcc:
7617 2003-07-20 Phil Edwards <pme@gcc.gnu.org>
7618 * install-sh: Update to newer upstream versions (associated with
7619 aclocal 1.7).
7620 * missing: Likewise, plus $1Help2man -> $1 typo fix.
7621
7622 2003-08-27 Daniel Jacobowitz <drow@mvista.com>
7623
7624 * configure.in: Set RAW_CXX_FOR_TARGET if unset.
7625 * configure: Regenerated.
7626
7627 2003-08-23 Phil Edwards <pme@gcc.gnu.org>
7628
7629 * configure.in: Use newline instead of semicolon when assuming
7630 shell arguments in a for loop.
7631 * configure: Regenerated.
7632
7633 2003-08-20 Geoffrey Keating <geoffk@apple.com>
7634
7635 PR 8180
7636 * configure.in: When testing with_libs and with_headers, treat
7637 'no' as unset. Based on a patch by Dan Kegel <dank@kegel.com>.
7638 * configure: Regenerate.
7639
7640 * configure.in (TOPLEVEL_CONFIGURE_ARGUMENTS): Quote properly for
7641 make, shell, etc.
7642 (baseargs): Likewise.
7643 * configure: Regenerate.
7644
7645 2003-08-19 Geoffrey Keating <geoffk@apple.com>
7646
7647 * configure.in: Disable libgcj for darwin not on powerpc.
7648 * configure: Rebuild.
7649
7650 2003-08-15 Michael Chastain <mec@shout.net>
7651
7652 * src-release (do-proto-toplev): Remove junk files
7653 dejagnu/example/calc/config.status,
7654 dejagnu/example/calc/config.log.
7655
7656 2003-08-14 Alexandre Duret-Lutz <adl@gnu.org>
7657
7658 * config-ml.in, symlink-tree: Add license.
7659
7660 2003-08-01 Nathanael Nerode <neroden@gcc.gnu.org>
7661
7662 Merge from gcc:
7663
7664 2003-08-01 Matt Kraai <kraai@alumni.cmu.edu>
7665 * Makefile.tpl (check, check-c++): Express dependencies using
7666 dependencies rather than commands.
7667 * Makefile.in: Regenerate.
7668
7669 2003-07-31 Geoffrey Keating <geoffk@apple.com>
7670 * Makefile.tpl (libsubdir): Use gcc instead of gcc-lib.
7671 * Makefile.in: Update.
7672
7673 2003-08-01 Andrew Cagney <cagney@redhat.com>
7674
7675 * configure.in (noconfigdirs): Do not add GDB when m32r-*-*.
7676 * configure: Ditto.
7677
7678 2003-07-30 Andreas Tobler <a.tobler@schweiz.ch>
7679
7680 * configure.in: Enable libgcj for darwin.
7681 * configure: Rebuild.
7682
7683 2003-07-29 Nathanael Nerode <neroden@gcc.gnu.org>
7684
7685 * mkinstalldirs: Import autoconf 2.57 / automake 1.7 version.
7686
7687 2003-07-27 Nathanael Nerode <neroden@gcc.gnu.org>
7688
7689 * Makefile.tpl: Use 'mkinstalldirs' rather than 'mkdir' when
7690 creating target and build subdirs to build all parent dirs as needed.
7691 * Makefile.in: Rebuild.
7692 * configure.in: Don't build dirs explicitly here.
7693 * configure: Rebuild.
7694
7695 2003-07-22 Alexandre Oliva <aoliva@redhat.com>
7696
7697 * Makefile.tpl (all-make): Depend on intl.
7698 * Makefile.in: Rebuilt.
7699
7700 2003-07-16 Nathanael Nerode <neroden@gcc.gnu.org>
7701
7702 * config.if: Remove unused libc_interface determination.
7703
7704 2003-07-14 Nathanael Nerode <neroden@gcc.gnu.org>
7705
7706 * Makefile.in: Regenerate, correctly this time.
7707
7708 2003-07-13 Nathanael Nerode <neroden@gcc.gnu.org>
7709
7710 * Makefile.tpl: Set INSTALL and friends using autoconf. Remove
7711 unused INSTALL_PROGRAM_ARGS.
7712 * configure.in: Use AC_PROG_INSTALL.
7713 * Makefile.in: Regenerate.
7714 * configure: Regenerate.
7715
7716 2003-07-10 Alexandre Oliva <aoliva@redhat.com>
7717
7718 * configure: Rebuilt.
7719 2001-09-26 Alexandre Oliva <aoliva@redhat.com>
7720 * configure.in (noconfigdirs) [am33_2.0-*-linux*]: Don't build
7721 newlib nor libgloss.
7722 Wed May 9 10:07:19 2001 Alexandre Oliva <aoliva@redhat.com>
7723 * configure.in (am33_2.0-*-linux*): Added.
7724
7725 2003-07-09 Bob Wilson <bob.wilson@acm.org>
7726
7727 * configure.in: Add ${libgcj} to noconfigdirs for xtensa-*-* targets.
7728 * configure: Regenerate.
7729
7730 2003-07-06 H.J. Lu <hongjiu.lu@intel.com>
7731
7732 * config-ml.in: Replace PWD with PWD_COMMAND.
7733 * Makefile.tpl: Likewise.
7734 * Makefile.in: Regenerated.
7735
7736 2003-06-27 Nathanael Nerode <neroden@gcc.gnu.org>
7737
7738 * configure.in: Clean up config-lang.in handling. Delete
7739 useless assignment to "subdirs".
7740 * configure: Regenerate.
7741
7742 2003-06-26 Nathanael Nerode <neroden@gcc.gnu.org>
7743
7744 * configure.in: Rename 'target_libs' to 'target_libraries'.
7745 Remove useless reference to 'target_libs'.
7746 * configure: Regenerate.
7747
7748 2003-06-23 Keith Seitz <kseitz@sources.redhat.com>
7749
7750 * Makefile.tpl: Add maybe-configure-itcl to configure-gdb.
7751 * Makefile.in: Regenerate.
7752
7753 2003-06-23 Nathanael Nerode <neroden@gcc.gnu.org>
7754
7755 * Makefile.def: Introduce flags_to_pass.
7756 * Makefile.tpl: Generate BASE_FLAGS_TO_PASS using it.
7757 * Makefile.in: Regenerate.
7758
7759 2003-06-23 Hans-Peter Nilsson <hp@bitrange.com>
7760
7761 * configure.in (noconfigdirs) <cris-*-*>: Disable target-newlib
7762 and target-libgloss.
7763 <d30v-*-*, fr30-*-*, i960-*-*, m32r-*-*>: Disable gdb.
7764 <h8300*-*-*>: Disable libf2c and ${libgcj}.
7765 * configure: Regenerate.
7766
7767 2003-06-17 Benjamin Kosnik <bkoz@redhat.com>
7768
7769 * configure.in: Update testsuite_flags to new location.
7770 * configure. Regenerate.
7771
7772 2003-06-18 Nathanael Nerode <neroden@gcc.gnu.org>
7773
7774 * Makefile.tpl: Remove BUILD_CC stuff.
7775 * Makefile.in: Regenerate.
7776
7777 2003-06-14 H.J. Lu <hongjiu.lu@intel.com>
7778
7779 * config.guess: Update to 2003-06-12 version.
7780 * config.sub: Update to 2003-06-13 version.
7781
7782 2003-06-12 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
7783
7784 * MAINTAINERS: Add myself as MIPS co-maintainer.
7785
7786 2003-06-12 H.J. Lu <hongjiu.lu@intel.com>
7787
7788 * config.guess: Update to 2003-06-06 version.
7789 * config.sub: Update to 2003-06-06 version.
7790
7791 2003-06-11 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
7792
7793 * configure.in: Don't pass --with-stabs for mips*-sgi-irix6*o32.
7794 * configure. Regenerate.
7795
7796 2003-06-10 Nathanael Nerode <neroden@gcc.gnu.org>
7797
7798 * configure.in: Disable serial configure by default.
7799 * configure: Regenerate.
7800 * Makefile.tpl: Abolish .NOTPARALLEL.
7801 * Makefile.in: Regenerate.
7802
7803 * Makefile.tpl: Replace {build,host,target}_canonical by
7804 {build,host,target}.
7805 * Makefile.in: Regenerate.
7806
7807 * Makefile.tpl: Fix stupid pasto.
7808 * Makefile.in: Regenerate.
7809
7810 2003-06-09 Nathanael Nerode <neroden@gcc.gnu.org>
7811
7812 * Makefile.tpl: Remove bogus conditional.
7813 * Makefile.in: Regenerate.
7814
7815 2003-06-03 Nathanael Nerode <neroden@gcc.gnu.org>
7816
7817 * Makefile.tpl: Make 'recursive targets' using autogen rather
7818 than shell loop. Remove duplicate 'clean' targets and false
7819 comments.
7820 * Makefile.def: Add systematic dependencies to 'recursive' targets.
7821 Add systematic method of specifying missing targets in subdirs.
7822 Add copyright boilerplate.
7823 * Makefile.in: Regenerate.
7824 * configure.in: Add 'recursive targets' to maybe list.
7825 * configure: Regenerate.
7826
7827 * Makefile.tpl: Rename [+target+] to [+make_target+].
7828 * Makefile.def: Rename 'target' to 'make_target'.
7829
7830 2003-05-30 Nick Clifton <nickc@redhat.com>
7831
7832 * README-maintainer-mode: Update URL for locating blessed config
7833 tools.
7834
7835 2003-05-29 Robert Millan <rmh@debian.org>
7836
7837 * ltconfig: Import this patch and modify for use with current
7838 version of ltconfig:
7839
7840 2003-05-21 Bruno Haible <bruno@clisp.org>
7841
7842 * libtool.m4 (AC_LIBTOOL_SYS_DYNAMIC_LINKER): Add support for
7843 GNU/FreeBSD.
7844
7845 2003-05-28 DJ Delorie <dj@redhat.com>
7846
7847 * Makefile.tpl: Make maybe-check-gcc .PHONY.
7848 * Makefile.in: Regenerate.
7849
7850 2003-05-28 Jeff Johnston <jjohnstn@redhat.com>
7851
7852 * COPYING.NEWLIB: Add license info for newlib/libc/sys/linux/stdlib.
7853
7854 2003-05-21 DJ Delorie <dj@redhat.com>
7855
7856 * Makefile.tpl (configure-target-libiberty): Depend only on gcc, not
7857 newlib or libgloss.
7858 * Makefile.in: Regenerate.
7859
7860 2003-05-21 DJ Delorie <dj@redhat.com>
7861
7862 * Makefile.tpl: Add missing empty maybe-check-gcc target.
7863 * Makefile.in: Regenerate.
7864
7865 2003-05-20 Maciej W. Rozycki <macro@ds2.pg.gda.pl>
7866
7867 * configure.in: Use curly braces in the definition of tooldir.
7868 * configure: Regenerate.
7869
7870 2003-05-19 Nathanael Nerode <neroden@gcc.gnu.org>
7871
7872 * configure.in: Switch more things to use maybe dependencies.
7873 * Makefile.tpl: Switch more things to use maybe dependencies.
7874 Factor out common code from autogen IF statements.
7875 * configure: Regenerate.
7876 * Makefile.in: Regenerate.
7877
7878 2003-05-14 Kelley Cook <kelleycook@wideopenwest.com>
7879
7880 * configure.in: Accept i[3456789]86 for machine type.
7881 * configure: Regenerate.
7882
7883 2003-05-18 Nathanael Nerode <neroden@gcc.gnu.org>
7884
7885 * configure.in: Switch more things to use maybe dependencies.
7886 Rearrange a little. Use GCC_TOPLEV_SUBDIRS.
7887 * configure: Regenerate.
7888 * Makefile.tpl: Switch more things to use maybe dependencies.
7889 * Makefile.in: Regenerate.
7890
7891 2003-05-16 Andreas Schwab <schwab@suse.de>
7892
7893 * Makefile.tpl (install-opcodes): Define.
7894 * Makefile.in: Rebuild.
7895
7896 2003-05-13 Andreas Jaeger <aj@suse.de>
7897
7898 * config.guess: Update to 2003-05-09 version.
7899 * config.sub: Update to 2003-05-09 version.
7900
7901 2003-05-13 Michael Eager <eager@mvista.com>
7902
7903 * configure.in: Correct sed script so that options in quotes are not
7904 deleted.
7905 * configure: Rebuild.
7906
7907 2003-05-12 Corinna Vinschen <corinna@vinschen.de>
7908
7909 * configure.in (FLAGS_FOR_TARGET): Remove $$s/newlib/libc/sys/cygwin
7910 and $$s/newlib/libc/sys/cygwin32 include paths.
7911 * configure: Ditto.
7912
7913 2003-05-05 H.J. Lu <hjl@gnu.org>
7914
7915 * config-ml.in: Restored from gcc repository.
7916
7917 2003-05-02 Chris Demetriou <cgd@broadcom.com>
7918
7919 * Makefile.tpl: Require "makeinfo" from texinfo 4.2 or later.
7920 * Makefile.in: Regenerate.
7921
7922 2003-04-27 Daniel Jacobowitz <drow@mvista.com>
7923
7924 * src-release (DEVO_SUPPORT): Add src-release, Makefile.tpl,
7925 and Makefile.def.
7926
7927 2003-04-27 Daniel Jacobowitz <drow@mvista.com>
7928
7929 * Makefile.tpl: Clean $(BUILD_SUBDIR).
7930 * Makefile.in: Regenerated.
7931
7932 2003-04-18 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
7933
7934 * Makefile.tpl (MAKEINFOFLAGS): Default to --split-size=5000000.
7935 * Makefile.in: Regenerate.
7936
7937 2003-04-18 Jakub Jelinek <jakub@redhat.com>
7938
7939 * configure.in (powerpc64*-*-linux*): Remove.
7940 * configure: Rebuilt.
7941
7942 2003-04-17 Phil Edwards <pme@gcc.gnu.org>
7943
7944 * Makefile.tpl (GCC_STRAP_TARGETS): New variable containing all the
7945 previous bootstrap targets, plus bubblestrap, quickstrap, cleanstrap,
7946 and restrap.
7947 * Makefile.in: Regenerate.
7948
7949 2003-04-16 Richard Earnshaw <rearnsha@arm.com>
7950
7951 * configure.in (arm-*-netbsdelf*): Enable building java libraries.
7952 * configure: Regenerated.
7953
7954 2003-04-11 Alexandre Oliva <aoliva@redhat.com>
7955
7956 * libtool.m4 (lt_cv_deplibs_check_method): Use pass_all on mips*.
7957 * */configure: Rebuilt.
7958
7959 2003-03-14 Nathanael Nerode <neroden@gcc.gnu.org>
7960
7961 * Makefile.tpl: Move .NOEXPORT, MAKEOVERRIDES back down.
7962 * Makefile.in: Regenerate.
7963
7964 2003-03-14 Michael Chastain <mec@shout.net>
7965
7966 * Makefile.in: Regenerate with correct Makefile.def.
7967
7968 2003-03-12 Nathanael Nerode <neroden@gcc.gnu.org>
7969
7970 * Makefile.tpl: Move .NOEXPORT, MAKEOVERRIDES up. Delete unused
7971 Make macro.
7972 * Makefile.in: Regenerate.
7973 * configure.in: Clean up gxx_include_dir logic.
7974 * configure: Regenerate.
7975
7976 2003-03-09 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
7977
7978 * configure.in (gxx_include_dir): Fix typo.
7979 * configure: Regenerated.
7980
7981 2003-03-06 Andrew Cagney <cagney@redhat.com>
7982
7983 * texinfo/texinfo.tex: Import version 2003-02-03.16.
7984
7985 2003-03-04 Daniel Jacobowitz <drow@mvista.com>
7986
7987 * configure.in: Include $(build_tooldir)/sys-include in
7988 FLAGS_FOR_TARGET.
7989 * configure: Regenerated.
7990
7991 2003-03-04 Nathanael Nerode <neroden@gcc.gnu.org>
7992
7993 * Makefile.tpl: Reindent.
7994 * Makefile.in: Regenerate.
7995 * configure.in: Reindent. Don't set unused variables.
7996 * configure: Regenerate.
7997
7998 * Makefile.tpl: Always pass down RANLIB.
7999 * Makefile.in: Regenerate.
8000
8001 * Makefile.tpl: Don't set unused enable_shared, enable_threads macros.
8002 * Makefile.in: Regenerate.
8003 * configure.in: Remove unused logic relating to --enable-shared
8004 and --enable-threads. Remove bogus comments. Remove redundant
8005 noconfigdirs.
8006 * configure: Regenerate.
8007
8008 * configure.in: Replace ${libstdcxx_version} by its value.
8009 Remove reference to mh-dgux.
8010 * configure: Regenerate.
8011
8012 2003-02-28 Nathanael Nerode <neroden@gcc.gnu.org>
8013
8014 * Makefile.tpl: Rearrange.
8015 * Makefile.in: Regenerate.
8016
8017 2003-02-25 Nick Clifton <nickc@redhat.com>
8018
8019 * configure: Remove site-file supprot - it is obsolete.
8020
8021 2003-02-24 Uwe Stieber <uwe@wwws.de>
8022
8023 * configure.in: Add support for kaOS as cross build target system.
8024 * configure: Regenerated.
8025
8026 2003-02-20 Sean McNeil <sean@blue.mcneil.com>
8027
8028 * Makefile.tpl: Add definition of CPPFLAGS to pass into
8029 configure-target-* as some target builds may require additional
8030 flags for preprocessor tests.
8031 * Makefile.in: Regenerated.
8032
8033 2003-02-19 Alexandre Oliva <aoliva@redhat.com>
8034
8035 * libtool.m4 (LD): Append -melf* option to LD on IRIX with GNU ld.
8036 * ltconfig: Handle it.
8037 * ltcf-cxx.sh: Use with_gnu_ld passed as a shell variable instead of
8038 auto-detecting it.
8039
8040 2003-02-19 Alexandre Oliva <aoliva@redhat.com>
8041
8042 * ltcf-cxx.sh: Replace $linker_flags with $compiler_flags wherever
8043 it is used as argument to $CC.
8044 * ltcf-gcj.sh: Likewise.
8045
8046 2003-02-19 Alexandre Oliva <aoliva@redhat.com>
8047
8048 * configure.in: Introduce --enable-maintainer-mode.
8049 * configure: Rebuilt.
8050 * Makefile.tpl (Makefile.in, configure): Enable dependencies only
8051 for maintainer mode.
8052 * Makefile.in: Rebuilt.
8053
8054 2003-02-19 Andrew Cagney <ac131313@redhat.com>
8055
8056 * configure: Regenerate using autoconf 2.13.
8057
8058 2003-02-19 Alan Modra <amodra@bigpond.net.au>
8059
8060 * config.guess: Import latest version.
8061 * config.sub: Import latest version.
8062
8063 2003-02-18 Jason Merrill <jason@redhat.com>
8064
8065 * Makefile.tpl (check-c++): Allow parallelism.
8066
8067 2003-02-17 Andrew Cagney <ac131313@redhat.com>
8068
8069 * configure: Regenerate using autoconf 000227.
8070
8071 2003-02-15 Geoffrey Keating <geoffk@apple.com>
8072
8073 * configure.in (*-*-darwin*): Rename from powerpc*-*-darwin*,
8074 don't configure target-libobjc.
8075 * configure: Regenerate.
8076
8077 2003-02-14 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
8078
8079 * Makefile.tpl (RANLIB): Define.
8080 * Makefile.in: Regenerate.
8081
8082 2003-02-06 Keith R Seitz <keiths@redhat.com>
8083
8084 * Makefile.def: Remove "snavigator", "grep", and "db" modules.
8085 * Makefile.tpl: Remove "all-snavigator" and "all-grep".
8086 * Makefile.in: Regenerated.
8087 * configure.in: Remove all traces of snavigator, db, and grep.
8088 * configure: Regenerated.
8089
8090 2003-01-31 Frank Ch. Eigler <fche@redhat.com>
8091
8092 * Makefile.tpl (all-sid): Add libiberty/bfd/opcodes dependencies.
8093 * Makefile.in: Regenerated.
8094
8095 2003-01-30 Alexandre Oliva <aoliva@redhat.com>
8096
8097 * config.if: Copy from GCC.
8098
8099 2003-01-27 Phil Edwards <pme@gcc.gnu.org>
8100
8101 * configure.in: Revert 24Jan change.
8102 * configure: Regenerate.
8103
8104 2003-01-23 Nathanael Nerode <neroden@gcc.gnu.org>
8105
8106 * configure.in: Revert previous change.
8107 * configure: Regenerate.
8108
8109 2003-01-23 Nathanael Nerode <neroden@gcc.gnu.org>
8110
8111 * configure.in: Make rda native-only.
8112 * configure: Regenerate.
8113
8114 2003-01-19 Nathanael Nerode <neroden@gcc.gnu.org>
8115
8116 * configure.in: Add missing \.
8117 * configure: Rebuilt.
8118
8119 2003-01-17 Jakub Jelinek <jakub@redhat.com>
8120
8121 * configure.in (baseargs): Avoid using \| in sed regular
8122 expressions.
8123 * configure: Rebuilt.
8124
8125 2003-01-16 Jakub Jelinek <jakub@redhat.com>
8126
8127 * configure.in (baseargs): Remove all supported forms of
8128 --cache-file, --srcdir, --host, --build and --target options
8129 from argument lists.
8130 * configure: Rebuilt.
8131
8132 2003-01-15 Alexandre Oliva <aoliva@redhat.com>
8133
8134 * configure.in (noconfigdirs): Don't skip gas on IRIX 6.
8135 * configure: Rebuilt.
8136
8137 2003-01-09 Nathanael Nerode <neroden@gcc.gnu.org>
8138
8139 * configure.in: Substitute TOPLEVEL_CONFIGURE_ARGUMENTS.
8140 * Makefile.tpl: Pass TOPLEVEL_CONFIGURE_ARGUMENTS to gcc.
8141 * Makefile.in: Regenerate.
8142 * configure: Regenerate.
8143
8144 2003-01-09 Christian Cornelssen <ccorn@cs.tu-berlin.de>
8145
8146 * Makefile.tpl (BASE_FLAGS_TO_PASS): Also pass DESTDIR.
8147 (install-info, dir.info): Prepend $(DESTDIR) to $(infodir).
8148 * Makefile.in: Regenerate.
8149
8150 2003-01-09 Alexandre Oliva <aoliva@redhat.com>
8151
8152 * configure.in: Remove Makefile in build, host and target modules
8153 unless configure was run with --no-recursion.
8154 * configure: Rebuilt.
8155
8156 2003-01-08 Chris Demetriou <cgd@broadcom.com>
8157
8158 * config.guess: Update to 2003-01-03 version.
8159 * config.sub: Update to 2003-01-03 version.
8160
8161 2003-01-07 Christopher Faylor <cgf@redhat.com>
8162
8163 * configure: Regenerate with proper autoconf 2.13.
8164
8165 2003-01-07 Christopher Faylor <cgf@redhat.com>
8166
8167 * configure.in: Add AC_PREREQ for consistency.
8168 * configure: Regenerate.
8169
8170 2003-01-06 Andrew Cagney <ac131313@redhat.com>
8171
8172 * configure.in (GDB_TK): Add tcl directories conditional on
8173 gdb/gdbtk directory being present.
8174 * configure: Regenerate.
8175
8176 2003-01-04 John David Anglin <dave.anglin@nrc.ca>
8177
8178 * configure.in (LD): Improve test for gcc. Try to set LD to the ld used
8179 by gcc if LD is not defined and we are not doing a Canadian Cross.
8180 * configure: Rebuilt.
8181
8182 2003-01-01 Daniel Jacobowitz <drow@mvista.com>
8183
8184 * src-release (ETC_SUPPORT): Add fdl.texi and texi2pod.pl.
8185
8186 2002-12-31 Tom Tromey <tromey@redhat.com>
8187
8188 * Makefile.in: Rebuilt.
8189 * Makefile.def (target_modules) [libffi]: Allow installation.
8190
8191 2002-12-31 Andreas Schwab <schwab@suse.de>
8192
8193 * configure.in: Fix use of $program_transform_name.
8194 * configure: Regenerated.
8195
8196 2002-12-30 Daniel Jacobowitz <drow@mvista.com>
8197
8198 * configure.in (baseargs): Don't remove first configure argument.
8199 * configure: Regenerated.
8200
8201 2002-12-29 Alexandre Oliva <aoliva@redhat.com>
8202
8203 * Makefile.tpl (local-distclean): Don't remove...
8204 (multilib.ts): ... this. Moved into...
8205 (multilib.out): ... this. Don't use sub-make.
8206 ($(BUILD_SUBDIR)/[+module+]/Makefile, [+module+]/Makefile,
8207 $(TARGET_SUBDIR)/[+module+]/Makefile, gcc/Makefile): Moved into...
8208 (configure-build-[+module+], configure-[+module+],
8209 configure-target-[+module+], configure-gcc): ... these. Test
8210 for Makefile existence. Drop config.status from dependencies.
8211 * Makefile.in: Rebuilt.
8212 * configure.in: Move gcc-version-trigger to the end of
8213 ac_configure_args. Add comments to maybedep.tmp and
8214 serdep.tmp. Introduce --disable-serial-configure. Remove
8215 nonopt from baseargs, matching and removing corresponding
8216 whitespace while at it.
8217 * configure: Rebuilt.
8218
8219 2002-12-28 Alexandre Oliva <aoliva@redhat.com>
8220
8221 * configure.in (host_configargs): Replace reference to
8222 no-longer-defined buildopts with --build=${build_alias}.
8223 * configure: Rebuilt.
8224
8225 2002-12-28 Alexandre Oliva <aoliva@redhat.com>
8226
8227 * Makefile.tpl ($(NOTPARALLEL)): Move to the end. Bring uses of
8228 program_transform_name to standard idiom.
8229 (AUTOGEN, AUTOCONF): Define.
8230 (Makefile.in): Use $(AUTOGEN).
8231 (Makefile): Depend on config.status, and use autoconf-style rule to
8232 build it. Move original commands to...
8233 (config.status): ... this new target.
8234 (configure): Add $(srcdir). Depend on config/acx.m4. Use
8235 $(AUTOCONF).
8236 * Makefile.in: Rebuilt.
8237
8238 2002-12-28 Nathanael Nerode <neroden@gcc.gnu.org>
8239
8240 * Makefile.tpl: Fix dramatic bustage due to change in
8241 program_transform_name.
8242 * Makefile.in: Regenerate.
8243
8244 * configure.in: Remove unnecessary PATH setting.
8245 * configure: Regnerate.
8246
8247 * configure.in: Don't default to unprefixed tools unless
8248 the native tools will work.
8249 * configure: Regenerate.
8250
8251 * configure.in: Convert to autoconf script. Blow away lots
8252 of now-redundant Makefile fragments.
8253 * configure: Generate using Autoconf.
8254 * Makefile.tpl: Rewrite to reflect autoconfiscation.
8255 * Makefile.in: Regenerate.
8256
8257 2002-12-27 Nathanael Nerode <neroden@gcc.gnu.org>
8258
8259 * configure: Remove unneeded 'export's. Make CC_FOR_TARGET,
8260 CXX_FOR_TARGET, GCJ_FOR_TARGET substituted in configure.in only.
8261
8262 * ChangeLog: Move a couple of entries from here to winsup/cygwin,
8263 where they belong.
8264
8265 2002-12-24 Andreas Schwab <schwab@suse.de>
8266
8267 * Makefile.tpl (multilib.out): Fix missing space.
8268 * Makefile.in: Regenerate.
8269
8270 2002-12-23 Nathanael Nerode <neroden@gcc.gnu.org>
8271
8272 * Makefile.tpl: Use shared multilib.out. Use move-if-change for it.
8273 Convert (cd foo; make) to (cd foo && make). Clean up multilib.out.
8274 * Makefile.in: Regenerate.
8275 * configure.in: Remove unnecessary leftovers.
8276
8277 2002-12-21 Geoffrey Keating <geoffk@apple.com>
8278
8279 * configure.in (extra_ranlibflags_for_target): New variable.
8280 (*-*-darwin): Add -c to ranlib commands.
8281 * configure (tooldir): Handle extra_ranlibflags_for_target.
8282
8283 2002-12-20 Jeff Johnston <jjohnstn@redhat.com>
8284
8285 * COPYING.NEWLIB: Updated.
8286 * COPYING.LIBGLOSS: Ditto.
8287
8288 2002-12-19 Nathanael Nerode <neroden@gcc.gnu.org>
8289
8290 * Makefile.tpl: Revert HJL's change.
8291 * Makefile.in: Regenerated.
8292 * configure.in: Put build_prefix before $(BUILD_SUBDIR) here, and
8293 always.
8294
8295 2002-12-19 Andreas Schwab <schwab@suse.de>
8296
8297 * Makefile.tpl, configure.in: Substitute libstdcxx_incdir.
8298 * Makefile.in: Regenerate.
8299
8300 2002-12-18 H.J. Lu <hjl@gnu.org>
8301
8302 * Makefile.tpl: Add @build_prefix@ before $(BUILD_SUBDIR).
8303 * Makefile.in: Regenerated.
8304
8305 * configure.in (build_prefix): New. Substitute.
8306
8307 2002-12-18 Nathanael Nerode <neroden@gcc.gnu.org>
8308
8309 * Makefile.tpl: Don't let real targets depend on phony targets.
8310 * Makefile.in: Regenerate.
8311
8312 * Makefile.tpl (do-info): Depend on maybe-all-texinfo, not all-texinfo.
8313 * Makefile.in: Regenerate.
8314
8315 2002-12-16 Jason Merrill <jason@redhat.com>
8316
8317 * Makefile.tpl (all-gcc): Use 'make quickstrap' if there was a
8318 previous 'make bootstrap'.
8319 * Makefile.in: Regenerate.
8320
8321 2002-12-17 Hans-Peter Nilsson <hp@bitrange.com>
8322
8323 * configure.in (noconfigdirs) [mmix-*-*]: Disable libgloss and gdb.
8324
8325 2002-12-13 Jason Merrill <jason@redhat.com>
8326
8327 * Makefile.tpl (check-gcc-c++): Renamed from check-c++. Don't run
8328 library tests.
8329 (check-c++): Just depend on it and check-target-libstdc++-v3.
8330 * Makefile.in: Regenerate.
8331
8332 2002-12-13 Nathanael Nerode <neroden@gcc.gnu.org>
8333
8334 * configure.in, Makefile.tpl, Makefile.def: Remove tclX.
8335 * Makefile.in: Regenerate.
8336
8337 2002-12-12 Jeff Johnston <jjohnstn@redhat.com>
8338
8339 * COPYING.NEWLIB: Update list of alternate Regent of California
8340 licenses and discuss official revoking of advertising clause.
8341 * COPYING.LIBGLOSS: Ditto.
8342
8343 2002-12-12 Alexandre Oliva <aoliva@redhat.com>
8344
8345 * Makefile.tpl (configure-target-rda): Depend on $(ALL_GCC_C).
8346 * Makefile.in: Rebuilt.
8347
8348 2002-12-10 Nathanael Nerode <neroden@gcc.gnu.org>
8349
8350 * configure: Fix bug put in by gremlins.
8351
8352 * Makefile.tpl: Substitute more autoconfily.
8353 * configure: Substitute more autoconfily.
8354 * Makefile.in: Regenerate.
8355
8356 2002-12-08 Andrew Cagney <ac131313@redhat.com>
8357
8358 * Makefile.tpl (all-sim): Depend on maybe-configure-gdb.
8359 * Makefile.in (all-sim): Ditto.
8360
8361 2002-12-06 DJ Delorie <dj@redhat.com>
8362
8363 * Makefile.tpl: Change configure dependencies to not have real
8364 targets depend on phony targets.
8365
8366 2002-12-05 Nathanael Nerode <neroden@gcc.gnu.org>
8367
8368 * configure.in: Revert unintentional change.
8369
8370 * src-release: Configure host subdirs.
8371
8372 * Makefile.tpl: Change dependency for */multilib.out so that
8373 it works when gcc isn't in the tree.
8374
8375 * configure.in: Substitute more.
8376 * configure: Run subconfigures from the Makefile.
8377 * Makefile.tpl: Run subconfigures from the Makefile; add a few
8378 convenience targets. Make sure gcc isn't rebuilt after bootstrap.
8379
8380 2002-12-03 Nathanael Nerode <neroden@gcc.gnu.org>
8381
8382 * Makefile.tpl: Add targets for configuring host subdirs in Makefile,
8383 and corresponding dependencies.
8384 * Makefile.in: Regenerate.
8385
8386 * configure.in (host_tools): Order binutils, gas and ld for
8387 convenience in running the testsuites.
8388
8389 * Makefile.tpl: Introduce rules to serialize subconfigure runs.
8390 * Makefile.in: Regenerate.
8391 * configure.in: Introduce rules to serialize subconfigure runs.
8392
8393 * configure.in: Introduce BASE_CC_FOR_TARGET.
8394 * Makefile.tpl: Reorganize and comment. Introduce HOST_CONFIGARGS.
8395 Realize configure-build-* targets. Realize configure-target-* targets.
8396 * Makefile.in: Regenerate.
8397
8398 2002-12-02 Nathanael Nerode <neroden@gcc.gnu.org>
8399
8400 * configure: Move gcc_version_trigger stuff from here...
8401 * configure.in: ...to here.
8402
8403 * configure.in: Separate subconfigure options added by this file from
8404 options given by the user. Add machinery to put args for host
8405 subconfigures into the Makefile.
8406
8407 * Makefile.tpl: Remove 'vault' targets.
8408 * Makefile.tpl: Reorder and comment dependencies.
8409 * Makefile.in: Regenerate.
8410
8411 2002-11-28 Geoffrey Keating <geoffk@apple.com>
8412
8413 * configure.in: Move host-specific darwin noconfigdirs into
8414 the host-specific section.
8415
8416 2002-12-02 Nathanael Nerode <neroden@gcc.gnu.org>
8417
8418 * Makefile.tpl: Restore bkorb's style patch, accidentally lost
8419 during replay.
8420 * Makefile.in: Regenerate.
8421
8422 (finishing slow-motion replay)
8423 * configure: Remove skip-this-dir support.
8424 * Makefile.tpl: Remove skip-this-dir support.
8425
8426 * Makefile.tpl: Remove leftover support for non-autoconfiscated
8427 subdirectories.
8428 * Makefile.in: Regenerate.
8429
8430 * Makefile.tpl: Strip out useless setting of 'dir'.
8431 * Makefile.in: Regenerate.
8432
8433 2002-12-02 Nathanael Nerode <neroden@gcc.gnu.org>
8434
8435 (finishing slow-motion replay)
8436 * configure.in: Fix deeply stupid bug.
8437
8438 * configure.in: Introduce RAW_CXX_FOR_TARGET and simplify embedded
8439 shell code in CXX_FOR_TARGET
8440 * Makefile.def: Introduce raw_cxx.
8441 * Makefile.tpl: Use raw_cxx to select between CXX_FOR_TARGET and
8442 RAW_CXX_FOR_TARGET.
8443 * Makefile.in: Regenerate.
8444
8445 2002-12-02 Nathanael Nerode <neroden@gcc.gnu.org>
8446
8447 (finishing slow-motion replay)
8448 * Makefile.tpl: Remove unnecessary ifs.
8449 * Makefile.in: Regenerate.
8450
8451 * Makefile.tpl: Implement soft dependency machinery. Maybe-ize
8452 dependencies. Maybe-ize build-libiberty. Create dummy install
8453 targets for 'no_install' modules.
8454 * configure: Move GDB_TK substitution to configure.in. Move
8455 build_modules stuff to configure.in.
8456 * configure.in: Implement soft dependency machinery. Maybe-ize
8457 GDB_TK, rearrange slightly. Move build_modules stuff from configure.
8458 * Makefile.in: Regenerate.
8459
8460 2002-12-01 Nathanael Nerode <neroden@gcc.gnu.org>
8461
8462 (continuing slow-motion replay)
8463 * Makefile.tpl: Make all-target, install-target behave similarly
8464 to all, install (only hitting configured targets). Eliminate
8465 unused macro defintions.
8466
8467 * Makefile.tpl: Add all-gcc: all-build-libiberty dependency when
8468 build != host.
8469
8470 * Makefile.tpl: Add all-gcc: all-libiberty dependency.
8471
8472 * ltcf-c.sh, ltcf-gcj.sh, Makefile.tpl: Correct BUILD/HOST confusion.
8473
8474 * configure.in: Produce lists of subdir targets we're actually
8475 configuring. Remove references to "dosrel".
8476 * Makefile.tpl: Let configure set which subdir targets are hit.
8477 Remove install-cross; clean up install; remove ALL. Remove
8478 references to "dosrel". Remove "EXTRA_TARGET_HOST" hackery.
8479 Autogenerate host module targets. Remove empty dependency lines
8480 and redundant dependency; rearrange slightly.
8481 * Makefile.def: Add host-side libtermcap, utils.
8482
8483 * Makefile.in: Regenerate.
8484
8485 2002-12-01 Nathanael Nerode <neroden@gcc.gnu.org>
8486
8487 (Continuing slow-motion replay)
8488 * Makefile.def: Add list of recursive targets to autogenerate.
8489 Add build_modules.
8490 * Makefile.tpl: Autogenerate do-* targets. Autogenerate *-target-*
8491 targets. Autogenerate *-build-* targets.
8492 * Makefile.in: Regenerate.
8493
8494 2002-11-30 Nathanael Nerode <neroden@gcc.gnu.org>
8495
8496 (Continuing slow-motion replay)
8497 * configure: More autoconf-style substitutions.
8498 * Makefile.tpl: More autoconf-style substitutions.
8499 * Makefile.in: Regenerate.
8500
8501 2002-11-30 Nathanael Nerode <neroden@gcc.gnu.org>
8502
8503 (Continuing slow-motion replay)
8504 * configure: Substitute more variables in a more autoconf-friendly
8505 way. Simplify slightly.
8506 * Makefile.tpl: Make more variables substitutable in an
8507 autoconf-friendly way.
8508 * Makefile.in: Regenerate.
8509
8510 2002-11-29 Nathanael Nerode <neroden@gcc.gnu.org>
8511
8512 (Continuing slow-motion replay)
8513 * configure.in (v810*): Remove special setting of tools.
8514
8515 * configure: Add support for extra required flags for ar or nm.
8516 * configure.in (aix4.3+): Use above support for target-specific
8517 issues, rather than using config/mt-aix43.
8518
8519 2002-11-29 Nathanael Nerode <neroden@gcc.gnu.org>
8520
8521 (Starting slow-motion replay merge from gcc 3.4 b-i-b branch)
8522 * configure: Remove 'removing', which doesn't work. Replace $subdir
8523 with . everywhere. Replace $subdirs with ''. Replace $makesrcdir
8524 with $srcdir. Reformat indentation. Substitute some variables
8525 formerly hard-coded in the Makefile for build=host.
8526 * Makefile.tpl: Autogenerate more; make more autoconf-friendly.
8527 * Makefile.def: Autogenerate more.
8528 * Makefile.in: Regenerate.
8529
8530 2002-11-13 Bruce Korb <bkorb@gnu.org>
8531
8532 * Makefile.tpl: syntactic cleanup
8533
8534 2002-11-04 Kevin Buettner <kevinb@redhat.com>
8535
8536 * Makefile.def (host_modules): Add rda.
8537 * Makefile.in: Regenerate.
8538 * configure.in (target_tool): Add target-rda to list.
8539
8540 2002-10-25 Phil Edwards <pme@gcc.gnu.org>
8541
8542 * Makefile.tpl (bootstrap): Add bubblestrap, quickstrap, cleanstrap,
8543 and restrap targets to this rule.
8544 * Makefile.in: Regenerate.
8545
8546 2002-10-24 Hans-Peter Nilsson <hp@bitrange.com>
8547
8548 * configure.in (i[3456]86-*-linux*): Add check to disable
8549 ${libgcj} for glibc1.
8550
8551 2002-10-07 Svein E. Seldal <Svein.Seldal@solidas.com>
8552
8553 * configure.in: Add tic4x target.
8554
8555 2002-10-03 Nathanael Nerode <neroden@gcc.gnu.org>
8556
8557 * Makefile.tpl: Make SET_LIB_PATH substitution more autoconfy.
8558 * Makefile.tpl: Make RPATH_ENVVAR substitution more autoconfy.
8559 * configure.in: Make SET_LIB_PATH substitution more autoconfy.
8560 * configure.in: Make RPATH_ENVVAR substitution more autoconfy.
8561 * Makefile.in: Regenerate.
8562
8563 2002-10-02 Nathanael Nerode <neroden@gcc.gnu.org>
8564
8565 * Makefile.tpl: Eliminate reference to all-gui, all-libproc.
8566 * Makefile.in: Regenerate.
8567
8568 * Makefile.def: Remove order dependency comments.
8569 * Makefile.tpl: Add explicit install-install dependencies.
8570 * Makefile.in: Regenerate.
8571
8572 * Makefile.tpl: Remove material now in src-release. (Finally!)
8573 * Makefile.in: Regenerate.
8574
8575 * configure: Restore my original patch by syncing with gcc version.
8576
8577 * Bring following over from gcc:
8578
8579 2002-09-30 Ulrich Weigand <uweigand@de.ibm.com>
8580
8581 * configure.in (s390*-*-linux*): Enable libgcj.
8582
8583 2002-10-02 Nathanael Nerode <neroden@gcc.gnu.org>
8584
8585 * Makefile.in: Regenerate. This really ought to fix things. :sigh:
8586
8587 2002-10-02 Alan Modra <amodra@bigpond.net.au>
8588
8589 * configure: Move stray lines back to where they belong.
8590
8591 2002-10-01 Nathanael Nerode <neroden@gcc.gnu.org>
8592
8593 * Makefile.tpl: Insert configure-target target, for src-release.
8594
8595 * configure: Finish reverting change which Andrew Cagney started
8596 reverting. Should fix bustage.
8597
8598 * src-release (BINUTILS_SUPPORT_DIRS): Add cpu directory.
8599 * src-release: New file. Contains material for making net
8600 releases for gdb, binutils, et al., formerly in Makefile.in.
8601
8602 2002-09-30 Nick Clifton <nickc@redhat.com>
8603
8604 * cpu: New top level directory. Intended to hold input files for
8605 CGEN which have FSF copyright assignment.
8606 * Makefile.in (BINUTILS_SUPPORT_DIRS): Add cpu directory.
8607
8608 2002-09-29 Andrew Cagney <ac131313@redhat.com>
8609
8610 Revert below (note that src does not contain Makefile.tpl):
8611 * Makefile.tpl: Make subsituted variables more autoconfy.
8612 * Makefile.in: Regenerate.
8613
8614 2002-09-29 Nathanael Nerode <neroden@gcc.gnu.org>
8615
8616 * configure: Revert accidentally applied changes.
8617
8618 * Makefile.tpl: Make more autoconf-friendly.
8619 * Makefile.in: Regenerate.
8620 * configure: Make substitution more autoconf-like.
8621
8622 2002-09-28 Richard Earnshaw <rearnsha@arm.com>
8623
8624 * configure.in (arm-*-coff, strongarm-*-coff, xscale-*-coff): Use a
8625 single entry to handle all these.
8626 (arm-*-elf, strongarm-*-elf, xscale-*-elf): Likewise. Also enable
8627 libjava on arm-*-elf.
8628
8629 2002-09-27 Geoffrey Keating <geoffk@apple.com>
8630
8631 * configure.in (powerpc-*-darwin*): Don't configure BFD, TK, or the
8632 things that depend on them.
8633
8634 2002-09-25 Nathanael Nerode <neroden@gcc.gnu.org>
8635
8636 * Makefile.tpl: Make subsituted variables more autoconfy.
8637 * Makefile.in: Regenerate.
8638 * configure: Make seds more autoconfy.
8639
8640 2002-09-25 Nathanael Nerode <neroden@gcc.gnu.org>
8641
8642 * Makefile.tpl: Rewrite substituted lines to look autoconfy.
8643 * Makefile.in: Regenerate.
8644 * configure.in: Rewrite sed statements to look autoconfy.
8645
8646 * Makefile.tpl: Autogenerate *-target-* lists, dependencies of
8647 all-target-foo on configure-target-foo.
8648 * Makefile.def: Ditto.
8649 * Makefile.in: Rebuild.
8650
8651 2002-09-22 Nathanael Nerode <neroden@gcc.gnu.org>
8652
8653 * Makefile.def: New file.
8654 * Makefile.tpl: New file.
8655 * Makefile.in: Generate from Makefile.tpl with 'autogen Makefile.def'.
8656
8657 * configure.in: Minor rearrangement. Simplify tests.
8658
8659 2002-09-23 Jason Thorpe <thorpej@wasabisystems.com>
8660
8661 * configure.in (with_headers): Skip copy if value is "yes".
8662 (with_libs): Likewise.
8663
8664 2002-09-20 Nathanael Nerode <neroden@gcc.gnu.org>
8665
8666 * configure.in (*-*-netbsd*): Use noconfigdirs, not skipdirs.
8667 * configure.in (sh*-*-pe*): Ditto.
8668 * configure.in (mips*-*-pe*): Ditto.
8669 * configure.in (*arm-wince-pe): Ditto.
8670
8671 * configure.in: Rearrange.
8672
8673 2002-09-12 Nick Clifton <nickc@redhat.com>
8674
8675 * Import these changes from the config master repository:
8676
8677 2002-09-05 Svein E. Seldal <Svein.Seldal@solidas.com>
8678
8679 * config.sub: Add tic4x target.
8680
8681 2002-09-03 Ben Elliston <bje@redhat.com>
8682
8683 * config.guess: Detect NSR-D machines for nsr-tandem-nsk.
8684 Reported by <Duncan_Stodart@insession.com>.
8685
8686 2002-09-10 Jeff Johnston <jjohnstn@redhat.com>
8687
8688 * COPYING.NEWLIB: More updates.
8689
8690 2002-09-09 Jeff Johnston <jjohnstn@redhat.com>
8691
8692 * COPYING.NEWLIB: Update.
8693
8694 2002-08-23 Andrew Cagney <ac131313@redhat.com>
8695
8696 * texinfo/texinfo.tex: Import version 2002-06-04.06.
8697
8698 * config.guess: Import version 2002-08-23.
8699 * config.sub: Import version 2002-08-22.
8700
8701 2002-08-20 Alexandre Oliva <aoliva@redhat.com>
8702
8703 * Makefile.in (GCC_FOR_TARGET): Prepend STAGE_CC_WRAPPER.
8704 * configure.in (CC_FOR_TARGET, GCJ_FOR_TARGET, CXX_FOR_TARGET,
8705 CXX_FOR_TARGET_FOR_RECURSIVE_MAKE): Likewise.
8706
8707 2002-08-06 Federico G. Schwindt <fgsch@olimpo.com.br>
8708
8709 * configure.in (hppa*-*-openbsd*): Treat like hppa*-*-*elf*.
8710
8711 2002-08-04 H.J. Lu (hjl@gnu.org)
8712
8713 * configure.in (mips*-*-linux*): Don't skip target-libffi.
8714
8715 2002-07-31 Alan Modra <amodra@bigpond.net.au>
8716
8717 * configure.in: Move generic linux case to end. Copy generic
8718 linux noconfigdirs to mips*-*-linux* entry and new
8719 powerpc64*-*-linux* entry. Add target-libffi for the latter.
8720
8721 2002-07-19 Chris Demetriou <cgd@broadcom.com>
8722
8723 * MAINTAINERS: Clarify on config.guess and config.sub, and add
8724 one instance of them which was missed to the list to update.
8725
8726 2002-07-16 Chris Demetriou <cgd@broadcom.com>
8727
8728 * config.guess: Update to 2002-07-09 version.
8729 * config.sub: Update to 2002-07-03 version.
8730
8731 2002-07-11 Nathanael Nerode <neroden@gcc.gnu.org>
8732
8733 * configure.in: Remove two redundant tests.
8734
8735 2002-07-11 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
8736
8737 * configure.in (mips*-*-irix6*o32): Enable stabs.
8738
8739 2002-07-08 Nathanael Nerode <neroden@gcc.gnu.org>
8740
8741 * configure.in: Don't build grez.
8742 * Makefile.in: Ditto.
8743
8744 * Makefile.in: Remove references to bsp, cygmon, libstub.
8745 * configure.in: Ditto.
8746
8747 * configure.in: Remove leftover reference to gdbtest.
8748
8749 2002-07-08 Phil Edwards <pme@gcc.gnu.org>
8750
8751 * configure.in (gxx_include_dir): Change to match versioned
8752 C++ headers if --enable-version-specific-runtime-libs is used.
8753
8754 2002-07-04 Steve Ellcey <sje@cup.hp.com>
8755
8756 * ltcf-cxx.sh (hpux*): Modify to support ia64-*-hpux*.
8757
8758 2002-07-03 Nathanael Nerode <neroden@gcc.gnu.org>
8759
8760 * configure.in: Make --without-x work.
8761
8762 2002-07-03 Nick Clifton <nickc@cambridge.redhat.com>
8763
8764 * contrib: New directory. Created to contain a copy of the
8765 texi2pod.pl script so that it is in the same place as the version in
8766 the FSF GCC sources.
8767
8768 2002-07-02 Nathanael Nerode <neroden@gcc.gnu.org>
8769
8770 * configure.in: Rearrange target Makefile fragment collection.
8771
8772 * Makefile.in: Don't try to build gdbtest, tgas, ispell, inet, or
8773 cvs[src].
8774 * configure.in: Ditto.
8775
8776 2002-07-01 Nathanael Nerode <neroden@gcc.gnu.org>
8777
8778 * Makefile.in: Eliminate 'apache' targets.
8779 * configure.in: Eliminate 'apache' targets.
8780
8781 * configure.in: Eliminate redundant tests. Reorganize.
8782
8783 * Makefile.in: Eliminate last reference to LIBGCC1_TEST.
8784
8785 * config-ml.in: Eliminate references to Cygnus configure.
8786
8787 * Makefile.in: Eliminate references to building emacs.
8788
8789 2002-07-01 Denis Chertykov <denisc@overta.ru>
8790
8791 * configure.in: Add support for ip2k.
8792
8793 2002-06-24 Ben Elliston <bje@redhat.com>
8794
8795 * configure.in (host_tools): Remove cgen.
8796
8797 * Makefile.in (all-cgen): Remove; runs from its source directory.
8798 (check-cgen, install-cgen, clean-cgen): Likewise.
8799 (all-opcodes): No not depend on all-cgen.
8800 (all-sim): Likewise.
8801
8802 2002-06-22 Nathanael Nerode <neroden@twcny.rr.com>
8803
8804 * configure.in: Fix AIX configury bug.
8805
8806 2002-06-19 Nathanael Nerode <neroden@twcny.rr.com>
8807
8808 * configure.in: Replace ${topsrcdir} with ${srcdir}.
8809
8810 * configure.in: Move definition of libstdcxx_flags right above
8811 usage, rather than way earlier.
8812
8813 * configure.in: Pull definition of is_cross_compiler earlier.
8814
8815 * configure.in: Rearrange a little.
8816
8817 * configure.in: Remove references to librx.
8818 * Makefile.in: Remove references to librx.
8819
8820 2002-06-19 Nathanael Nerode <neroden@twcny.rr.com>
8821
8822 * configure.in: Eliminate ${gasdir} variable.
8823
8824 2002-06-18 Dave Brolley <brolley@redhat.com>
8825
8826 * configure.in: Add support for frv.
8827 * config.sub: Add support for frv.
8828
8829 2002-06-12 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
8830
8831 * Makefile.in (CFLAGS_FOR_TARGET): Add -O2.
8832
8833 2002-06-08 Jason Thorpe <thorpej@wasabisystems.com>
8834
8835 * configure.in (vax-*-netbsd*): Re-enable gas.
8836
8837 2002-05-31 Nathanael Nerode <neroden@twcny.rr.com>
8838
8839 * Makefile.in: Replace HOST_PREFIX, HOST_PREFIX_1 with BUILD_PREFIX,
8840 BUILD_PREFIX_1, to correct nomenclature.
8841 * configure: Likewise.
8842
8843 * Makefile.in: Eliminate version-specific references to tcl8.1, tk8.1.
8844 * configure.in: Eliminate version-specific references to tcl8.1, tk8.1.
8845
8846 2002-05-31 Olaf Hering <olh@suse.de>
8847
8848 * config-ml.in: Propogate DESTDIR also.
8849
8850 2002-05-29 Jason Thorpe <thorpej@wasabisystems.com>
8851
8852 * configure.in (vax-*-netbsd*): Don't build gas for this
8853 platform.
8854
8855 2002-05-28 Marek Michalkiewicz <marekm@amelek.gda.pl>
8856
8857 * configure.in (noconfigdirs): Don't compile libiberty, libstdcxx
8858 and libgcj for AVR.
8859
8860 2002-05-28 Nick Clifton <nickc@cambridge.redhat.com>
8861
8862 * config.sub: Add DLX target.
8863
8864 2002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
8865
8866 * config.guess: Update to 2002-05-22 version.
8867 * config.sub: Likewise.
8868
8869 2002-05-16 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
8870
8871 * Makefile.in: Allow for PWDCMD to override hardcoded pwd.
8872 * config-ml.in: Likewise.
8873 * configure: Likewise.
8874 * configure.in: Likewise.
8875
8876 2002-05-13 Nathanael Nerode <neroden@twcny.rr.com>
8877
8878 * configure.in: Simplify makefile fragment collection.
8879
8880 * configure.in: Remove code to build emacs.
8881
8882 * configure.in : Remove --srcdir argument from targargs and buildargs
8883 (it's always overridden in the Makefile anyway). Rearrange a bit.
8884
8885 * configure: Move some logic to configure.in.
8886 * configure.in: Move some logic from configure.
8887
8888 2002-05-07 Jeff Johnston <jjohnstn@redhat.com>
8889
8890 * COPYING.LIBGLOSS: New file.
8891
8892 2002-05-07 Federico G. Schwindt <fgsch@olimpo.com.br>
8893
8894 * Makefile.in: Honour DESTDIR.
8895
8896 2002-05-05 Alexandre Oliva <aoliva@redhat.com>
8897
8898 * configure.in (noconfigdirs): Don't disable libgcj on
8899 sparc64-*-solaris* and sparcv9-*-solaris*.
8900
8901 2002-05-03 Alexandre Oliva <aoliva@redhat.com>
8902
8903 * configure.in: Revert 2002-04-18's patch; fixed in libjava.
8904
8905 2002-05-03 Thomas Fitzsimmons <fitzsim@redhat.com>
8906
8907 * configure.in (FLAGS_FOR_TARGET): Do not add
8908 -B$$r/$(TARGET_SUBDIR)/newlib/ when compiling newlib natively
8909 on i[3456]86-*-linux*.
8910
8911 2002-05-01 Thomas Fitzsimmons <fitzsim@redhat.com>
8912
8913 * configure.in (noconfigdirs): Replace [ ] with test.
8914
8915 * configure.in (noconfigdirs): Do not add target-newlib if
8916 target == i[3456]86-*-linux*, and host == target.
8917
8918 2002-04-29 Mark Mitchell <mark@codesourcery.com>
8919
8920 * config.guess: Updated to 2002-04-26's version.
8921 * config.sub: Updated to 2002-04-26's version.
8922
8923 2002-04-29 Nathanael Nerode <neroden@doctormoo.dyndns.org>
8924
8925 * configure.in: delete reference to absent file
8926
8927 * configure.in: replace '[' with 'test'
8928
8929 * configure.in: Eliminate references to gash.
8930 * Makefile.in: Eliminate references to gash.
8931
8932 * configure.in: remove useless references to 'pic' makefile fragments.
8933
8934 * configure.in: (*-*-windows*) Finish removing.
8935
8936 * configure.in: Eliminate redundant test for libgui.
8937
8938 2002-04-26 Joel Sherrill <joel@OARcorp.com>
8939
8940 * configure.in (h8300*-*-rtems*): Disable libf2c and libgcj.
8941 (sparc-*-elf*, sparc64-*-elf*): Disable libgcj.
8942
8943 2002-04-19 Nathanael Nerode <neroden@twcny.rr.com>
8944
8945 * configure.in: remove references to dead files
8946
8947 2002-04-18 Tom Tromey <tromey@redhat.com>
8948
8949 * configure.in: Disallow configuring libgcj when it is already
8950 installed and we're using Solaris 2.8 linker. Do enable libgcj on
8951 Solaris 2.8 by default. For PR libgcj/6158.
8952
8953 2002-04-17 Nathanael Nerode <neroden@twcny.rr.com>
8954
8955 * configure.in: Move default CC setting out of config/mh-* fragments
8956 directly into here.
8957
8958 2002-04-17 Nathanael Nerode <neroden@twcny.rr.com>
8959
8960 * configure.in: don't even try to configure or make a subdirectory
8961 if there's no configure script for it.
8962
8963 2002-04-15 Mark Mitchell <mark@codesourcery.com>
8964
8965 * MAINTAINERS: Remove chill maintainers.
8966 * Makefile.in (CHILLFLAGS): Remove.
8967 (CHILL_LIB): Remove.
8968 (TARGET_CONFIGDIRS): Remove libchill.
8969 (CHILL_FOR_TARGET): Remove.
8970 (BASE_FLAGS_TO_PASS): Don't pass CHILLFLAGS, CHILL_FOR_TARGET, or
8971 CHILL_LIB.
8972 (CONFIGURE_TARGET_MODULES): Remove configure-target-libchill.
8973 (CHECK_TARGET_MODULES): Likewise.
8974 (INSTALL_TARGET_MODULES): Likewise.
8975 (CLEAN_TARGET_MODULES): Likewise.
8976 (configure-target-libchill): Remove.
8977 (all-target-libchill): Remove.
8978 * configure.in (target_libs): Remove target-libchill.
8979 Do not compute CHILL_FOR_TARGET.
8980 * libchill: Remove directory.
8981
8982 2002-04-15 DJ Delorie <dj@redhat.com>
8983
8984 * Makefile.in, configure.in, configure: Sync with gcc, entries
8985 follow...
8986
8987 2002-04-08 Tom Tromey <tromey@redhat.com>
8988
8989 * configure.in: Add FLAGS_FOR_TARGET to GCJ_FOR_TARGET.
8990 Fixes PR libgcj/6068.
8991
8992 2002-03-30 Krister Walfridsson <cato@df.lth.se>
8993
8994 * configure.in (i*86-*-netbsdelf*): Don't disable libgcj.
8995
8996 2002-03-27 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
8997
8998 * configure.in (alpha*-dec-osf*): Enable libgcj.
8999
9000 2002-03-24 Nick Clifton <nickc@cambridge.redhat.com>
9001
9002 Fix for: PR bootstrap/3591, target/5676
9003 * configure.in (mcore-pe): Disable the configuration of
9004 libstdc++-v3 since exceptions are not supported.
9005
9006 2002-03-20 Anthony Green <green@redhat.com>
9007
9008 * configure.in: Enable libgcj for xscale-elf target.
9009
9010 2002-02-28 Alexandre Oliva <aoliva@redhat.com>
9011
9012 * configure.in (libstdcxx_flags): Don't add libstdc++-v3 flags for
9013 libjava.
9014 (CXX_FOR_TARGET): Explain why -shared-libgcc here.
9015
9016 2002-02-22 Alexandre Oliva <aoliva@redhat.com>
9017
9018 * configure.in (CXX_FOR_TARGET): Add -shared-libgcc for
9019 libstdc++-v3 and libjava.
9020
9021 2002-02-11 Adam Megacz <adam@xwt.org>
9022
9023 * gcc/Makefile.in: Removed libstdc++-v3 dependancy for libjava and
9024 boehm-gc
9025
9026 2002-02-09 Alexandre Oliva <aoliva@redhat.com>
9027
9028 * config.guess: Updated to 2002-01-30's version.
9029 * config.sub: Updated to 2002-02-01's version.
9030 Contribute sh64-elf.
9031 2000-12-01 Alexandre Oliva <aoliva@redhat.com>
9032 * configure.in: Added sh64-*-*.
9033
9034 2002-01-17 H.J. Lu <hjl@gnu.org>
9035
9036 * Makefile.in (all-fastjar): Also depend on all-libiberty.
9037 (all-target-fastjar): Also depend on all-target-libiberty.
9038
9039 Wed Dec 5 07:33:45 2001 Douglas B. Rupp <rupp@gnat.com>
9040
9041 * configure, configure.in: Use temp file for long sed commands.
9042
9043 2001-11-14 Hans-Peter Nilsson <hp@bitrange.com>
9044
9045 * configure.in (noconfigdirs) [h8300*-*-*, h8500-*-*]: Disable
9046 libf2c.
9047
9048 2001-11-03 Hans-Peter Nilsson <hp@bitrange.com>
9049
9050 * configure.in (noconfigdirs) [mmix-*-*]: Disable libgcj.
9051
9052 2001-10-11 Hans-Peter Nilsson <hp@axis.com>
9053
9054 * configure.in (noconfigdirs) [cris-*-*]: Disable libgcj.
9055
9056 2001-10-02 Joseph S. Myers <jsm28@cam.ac.uk>
9057
9058 * configure: Handle temporary files securely using mkdir.
9059
9060 2001-09-26 Will Cohen <wcohen@redhat.com>
9061
9062 * configure.in (*-*-linux*): Disable configuration of target-newlib
9063 and target-libgloss.
9064
9065 2001-09-26 Alexandre Oliva <aoliva@redhat.com>
9066
9067 * Makefile.in (EXTRA_TARGET_FLAGS): Pass RANLIB_FOR_TARGET for
9068 RANLIB.
9069
9070 2001-08-11 Graham Stott <grahams@redhat.com>
9071
9072 * Makefile.in (check-c++): Add missing semicolon.
9073
9074 2001-07-25 Andrew Haley <aph@cambridge.redhat.com>
9075
9076 * configure.in (sh-*-linux*): New.
9077
9078 2001-07-12 Stephane Carrez <Stephane.Carrez@worldnet.fr>
9079
9080 * configure.in (noconfigdirs): Don't compile libiberty, libstdcxx
9081 and libgcj on m68hc11/m68hc12.
9082
9083 2001-06-27 H.J. Lu (hjl@gnu.org)
9084
9085 * Makefile (CFLAGS_FOR_BUILD): New.
9086 (EXTRA_GCC_FLAGS): Add CFLAGS_FOR_BUILD.
9087
9088 2001-06-01 Hans-Peter Nilsson <hp@axis.com>
9089
9090 * configure.in (libstdcxx_flags): Do not try to execute
9091 libstdc++-v3/testsuite_flags until it exists.
9092
9093 2001-05-18 Benjamin Kosnik <bkoz@redhat.com>
9094
9095 * configure.in (libstdcxx_flags): Remove reference to libstdc++.INC.
9096
9097 2001-05-09 Jeffrey Oldham <oldham@codesourcery.com>
9098
9099 * ltcf-cxx.sh: Add -nostdlib to IRIX 6 archive_cmds.
9100
9101 Mon Apr 23 09:15:03 2001 Anthony Green <green@redhat.com>
9102
9103 * configure.in: Move *-chorusos target case to the proper switch.
9104 Disable libgcj.
9105
9106 2001-04-13 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
9107
9108 * Makefile.in (STAGE1_CFLAGS): Pass down.
9109
9110 2001-04-13 Alan Modra <amodra@one.net.au>
9111
9112 * config.guess: Add hppa64-linux support. Note for next import that
9113 this is already in the master file.
9114 * configure.in: Likewise. Accept `parisc' alias for `hppa'.
9115
9116 2001-03-22 Colin Howell <chowell@redhat.com>
9117
9118 * Makefile.in (DO_X): Do not backslash single-quotes in
9119 backquotes (two places).
9120
9121 2001-03-18 Laurynas Biveinis <lauras@softhome.net>
9122
9123 * Makefile.in (DO_X): Quote nested quotes.
9124
9125 2001-03-15 Laurynas Biveinis <lauras@softhome.net>
9126
9127 * Makefile.in (DO_X): Use double quotes for quoting
9128 "RANLIB=$${RANLIB}".
9129
9130 2001-03-09 Nicola Pero <n.pero@mi.flashnet.it>
9131
9132 * configure.in: Only use `lang_requires' for languages athat are
9133 actually enabled.
9134
9135 2001-03-07 Tom Tromey <tromey@redhat.com>
9136
9137 * configure.in: Allow config-lang.in to set `lang_requires' to list
9138 of other required languages.
9139
9140 2001-03-06 Laurynas Biveinis <lauras@softhome.net>
9141
9142 * Makefile.in: Remove RANLIB definition. Use RANLIB
9143 in RANLIB_FOR_TARGET, EXTRA_HOST_FLAGS, EXTRA_TARGET_FLAGS,
9144 EXTRA_GCC_FLAGS, $(DO_X) targets only when the RANLIB is set.
9145
9146 2001-02-28 Benjamin Kosnik <bkoz@redhat.com>
9147 Alexandre Oliva <aoliva@redhat.com>
9148
9149 * Makefile.in (check-c++): Use tabs, not spaces.
9150
9151 2001-02-19 Benjamin Kosnik <bkoz@redhat.com>
9152
9153 * Makefile.in (check-c++): New rule.
9154
9155 * configure.in (target_libs): Remove libg++.
9156 (noconfigdirs): Remove libg++.
9157 (noconfigdirs): Same.
9158 (noconfigdirs): Same.
9159 (noconfigdirs): Same.
9160
9161 * config-ml.in: Remove libg++ references.
9162
9163 * Makefile.in (TARGET_CONFIGDIRS): Remove libio, libstdc++, libg++.
9164 (ALL_TARGET_MODULES): Same.
9165 (configure-target-libg++): Remove.
9166 (all-target-libg++): Remove.
9167 (configure-target-libio): Remove.
9168 (all-target-libio): Remove.
9169 (check-target-libio): Remove.
9170 (.PHONY): Remove.
9171 (libg++.tar.bz2): Remove.
9172 (all-target-cygmon): Remove libio.
9173 (all-target-libstdc++): Remove.
9174 (configure-target-libstdc++): Remove.
9175 (TARGET_LIB_PATH): Remove libstdc++.
9176 (ALL_GCC_CXX): Remove libstdc++.
9177 (all-target-gperf): Correct.
9178
9179 2001-02-15 Anthony Green <green@redhat.com>
9180
9181 * configure: Introduce GCJ_FOR_TARGET.
9182 * configure.in: Ditto.
9183 * Makefile.in: Ditto.
9184
9185 2001-02-08 Chandrakala Chavva <cchavva@redhat.com>
9186
9187 * configure.in: for *-chorusos, don't config target-newlib and
9188 target-libgloss.
9189
9190 2001-02-04 Mark Mitchell <mark@codesourcery.com>
9191
9192 Remove V2 C++ library.
9193 * configure.in: Remove --enable-libstdcxx_v3 support.
9194
9195 2001-01-27 Richard Henderson <rth@redhat.com>
9196
9197 * configure.in (target_makefile_frag) [alpha*-*]: Use mt-alphaieee.
9198
9199 2001-01-26 Tom Tromey <tromey@redhat.com>
9200
9201 * configure.in: Allow libgcj to be built on Sparc Solaris.
9202
9203 2001-01-23 Bryce McKinlay <bryce@albatross.co.nz>
9204
9205 * configure.in: Enable libgcj on several additional platforms.
9206
9207 2001-01-22 Bryce McKinlay <bryce@albatross.co.nz>
9208
9209 * configure.in: Enable libgcj for linux targets.
9210
9211 2001-01-09 Mike Stump <mrs@wrs.com>
9212
9213 * Makefile.in (CONFIGURE_TARGET_MODULES): Pass back configuration
9214 failures of subdirectories.
9215
9216 2001-01-02 Laurynas Biveinis <lauras@softhome.net>
9217
9218 * configure: handle DOS-style absolute paths.
9219
9220 2001-01-02 Laurynas Biveinis <lauras@softhome.net>
9221
9222 * configure.in: remove supported directories from $noconfigdirs for DJGPP.
9223
9224 2000-12-18 Benjamin Kosnik <bkoz@redhat.com>
9225
9226 * Makefile.in (BASE_FLAGS_TO_PASS): Alphabetize.
9227 (libstdcxx_incdir): Pass down.
9228 * config.if: Remove expired bits for cxx_interface, add stub.
9229 (libstdcxx_incdir): Add variable for g++ include directory.
9230 * configure.in (gxx_include_dir): Use it.
9231
9232 2000-12-15 Andreas Jaeger <aj@suse.de>
9233
9234 * configure.in: Handle lang_dirs.
9235
9236 2000-12-13 Anthony Green <green@redhat.com>
9237
9238 * configure.in: Disable libgcj for any target not specifically
9239 listed. Disable libgcj for x86 and Alpha Linux until compatible
9240 with g++ abi.
9241
9242 2000-12-13 Mike Stump <mrs@wrs.com>
9243
9244 * Makefile.in (local-distclean): Also remove fastjar.
9245
9246 2000-12-10 Anthony Green <green@redhat.com>
9247
9248 * configure.in: Define libgcj. Disable libgcj target libraries for
9249 most targets.
9250
9251 2000-12-09 Alexandre Petit-Bianco <apbianco@cygnus.com>
9252
9253 * configure.in (target_libs): Revert 2000-12-08 patch.
9254 (noconfigdirs): Added target-libjava.
9255
9256 2000-12-09 Laurynas Biveinis <lauras@softhome.net>
9257
9258 * Makefile.in: handle DOS-style absolute paths.
9259
9260 2000-12-08 Alexandre Petit-Bianco <apbianco@cygnus.com>
9261
9262 * Makefile.in (TARGET_CONFIGDIRS): Wrong place. Removed note about
9263 libjava.
9264 * configure.in (target_libs): Removed `target-libjava'.
9265
9266 2000-12-08 Alexandre Petit-Bianco <apbianco@cygnus.com>
9267
9268 * Makefile.in (TARGET_CONFIGDIRS): Added note about libjava.
9269 (ALL_MODULES): Added fastjar.
9270 (NATIVE_CHECK_MODULES, INSTALL_MODULES, CLEAN_MODULES): Likewise.
9271 (all-target-libjava): all-fastjar replaces all-zip.
9272 (all-fastjar): Added.
9273 (configure-target-fastjar, all-target-fastjar): Likewise.
9274 * configure.in (host_tools): Added fastjar.
9275
9276 2000-12-07 Mike Stump <mrs@wrs.com>
9277
9278 * Makefile.in (local-distclean): Remove leftover built files.
9279
9280 2000-11-16 Fred Fish <fnf@be.com>
9281
9282 * configure.in (enable_libstdcxx_v3): Fix typo,
9283 libstd++ -> libstdc++.
9284
9285 2000-11-13 Joseph S. Myers <jsm28@cam.ac.uk>
9286
9287 * configure: Provide the original toplevel configure arguments
9288 (including $0) to subprocesses in the environment rather than
9289 through gcc/configargs.h.
9290
9291 2000-11-12 Mark Mitchell <mark@codesourcery.com>
9292
9293 * configure: Turn on libstdc++ V3 by default.
9294
9295 2000-10-16 Michael Meissner <meissner@redhat.com>
9296
9297 * configure (gcc/configargs.h): Only create if there is a build GCC
9298 directory created.
9299
9300 2000-10-05 Phil Edwards <pme@gcc.gnu.org>
9301
9302 * configure: Save configure arguments to gcc/configargs.h.
9303
9304 2000-10-04 Andris Pavenis <pavenis@latnet.lv>
9305
9306 * Makefile.in (bootstrap): avoid recursion if subdir missing
9307 (cross): ditto
9308 (do-proto-toplev): ditto
9309
9310 Wed Sep 13 11:11:29 2000 Jeffrey A Law (law@cygnus.com)
9311
9312 * configure.in: Do not build byacc for hppa64. Provide paths to the
9313 X11 libraries for hppa64.
9314
9315 2000-09-02 Anthony Green <green@cygnus.com>
9316
9317 * Makefile.in (all-gcc): Depend on all-zlib.
9318 (CLEAN_MODULES): Add clean-zlib.
9319 (ALL_MODULES): Add all-zlib.
9320 * configure.in (host_libs): Add zlib.
9321
9322 2000-08-25 Alexandre Oliva <aoliva@redhat.com>
9323
9324 * configure.in (FLAGS_FOR_TARGET): Use $target_configdirs and
9325 $targargs to tell whether newlib is going to be built.
9326
9327 * configure.in [disable-libstdcxx-v3] (libstdcxx_flags): Search
9328 $$r/TARGET_SUBDIR/libio for _G_config.h.
9329
9330 2000-08-14 Zack Weinberg <zack@wolery.cumb.org>
9331
9332 * configure.in (libstdcxx_flags): Remove -isystem $$s/libio/stdio.
9333
9334 * configure: Make enable_threads and enable_shared defaults
9335 explicit. Substitute enable_threads into generated Makefiles.
9336 * configure.in: Accept *-*-linux* not just *-*-linux-gnu*.
9337 * libtool.m4: Accept *-*-linux* not just *-*-linux-gnu*.
9338
9339 2000-08-02 Manfred Hollstein <manfredh@redhat.com>
9340
9341 * configure.in: Re-enable all references to libg++ and librx.
9342
9343 2002-04-09 Loren James Rittle <rittle@labs.mot.com>
9344
9345 * configure.in: Add *-*-freebsd* configurations.
9346
9347 2002-04-07 Andrew Cagney <ac131313@redhat.com>
9348
9349 * Makefile.in (do-tar-bz2): Delete rule. Replace with ...
9350 (do-tar, do-bz2): New rules.
9351 (taz): Update. Replace do-tar-bz2 with do-tar and do-bz2.
9352 (gdb-tar): New rule.
9353 (gdb-taz): Rewrite. Use gdb-tar and do-bz2.
9354 (insight_dejagnu.tar): New rule.
9355 (insight.tar): New rule.
9356 (gdb+dejagnu.tar): New rule.
9357 (gdb.tar): New rule.
9358
9359 2002-04-07 Andrew Cagney <ac131313@redhat.com>
9360
9361 * MAINTAINERS: Update dejagnu/
9362
9363 2002-03-16 Alexandre Oliva <aoliva@redhat.com>
9364
9365 * ltmain.sh (relink_command): Fix typo in previous change.
9366
9367 2002-03-15 Alexandre Oliva <aoliva@redhat.com>
9368
9369 * ltmain.sh (taglist): Initialized. Don't let `CC' tag out of it.
9370 (relink_command): Added --tag flags.
9371 (mode=install): If relinking fails; error out.
9372
9373 2002-03-12 Richard Henderson <rth@redhat.com>
9374
9375 * Makefile.in (NOTPARALLEL): New. Use it instead of explicit
9376 .NOTPARALLEL tag.
9377 (do-check): Rename from check.
9378 (check): Allow parallel check.
9379
9380 2002-03-11 Richard Henderson <rth@redhat.com>
9381
9382 * Makefile.in (.NOTPARALLEL): Add fake tag.
9383
9384 2002-03-07 H.J. Lu (hjl@gnu.org)
9385
9386 * configure.in: Enable gprof for mips*-*-linux*.
9387
9388 2002-02-28 Alexandre Oliva <aoliva@redhat.com>
9389
9390 * configure.in (libstdcxx_flags): Don't add libstdc++-v3 flags for
9391 libjava.
9392 (CXX_FOR_TARGET): Add -shared-libgcc for libstdc++-v3 and libjava.
9393
9394 2002-02-24 Andrew Cagney <ac131313@redhat.com>
9395
9396 * texinfo/texinfo.tex: Update to version 2002-02-14.08.
9397
9398 2002-02-23 Daniel Jacobowitz <drow@mvista.com>
9399
9400 * config.guess: Import from master sources, rev 1.232.
9401 * config.sub: Import from master sources, rev 1.246.
9402
9403 2002-02-23 Alexandre Oliva <aoliva@redhat.com>
9404
9405 * Makefile.in (MAKEINFO): Don't assume makeinfo will be built just
9406 because its Makefile is there; test for the executable instead.
9407
9408 2002-02-09 Alexandre Oliva <aoliva@redhat.com>
9409
9410 Contribute sh64-elf.
9411 2000-12-01 Alexandre Oliva <aoliva@redhat.com>
9412 * configure.in: Added sh64-*-*.
9413
9414 2002-02-04 Jeff Johnston <jjohnstn@redhat.com>
9415
9416 * COPYING.NEWLIB: Remove advertising clause from
9417 Berkeley and Red Hat licenses.
9418
9419 2002-02-01 Mo DeJong <supermo@bayarea.net>
9420
9421 * Makefile.in: Add all-tix to deps for all-snavigator
9422 so that tix is built when building snavigator.
9423
9424 2002-02-01 Ben Elliston <bje@redhat.com>
9425
9426 * config.guess: Import from master sources, rev 1.229.
9427 * config.sub: Import from master sources, rev 1.240.
9428
9429 2002-01-27 Daniel Jacobowitz <drow@mvista.com>
9430
9431 From Steve Ellcey <sje@cup.hp.com>:
9432 * libtool.m4 (HPUX_IA64_MODE): Set to 32 or 64 based on ABI.
9433 (lt_cv_deplibs_check_method, lt_cv_file_magic_cmd,
9434 lt_cv_file_magic_test_file): Set to appropriate values for HP-UX
9435 IA64.
9436 * ltcf-c.sh (archive_cmds, hardcode_*): Ditto.
9437 * ltconfig (shlibpath_*, dynamic_linker, library_names_spec,
9438 soname_spec, sys_lib_search_path_spec): Ditto.
9439
9440 2002-01-26 Jason Thorpe <thorpej@wasabisystems.com>
9441
9442 * configure.in (*-*-netbsd*): New. Skip target-newlib,
9443 target-libiberty, and target-libgloss. Skip Java-related
9444 libraries if not supported for NetBSD on target CPU.
9445
9446 2002-01-23 Nick Clifton <nickc@cambridge.redhat.com>
9447
9448 * configure.in: Import StrongARM and XScale target_configdirs from
9449 FSF GCC version.
9450
9451 2002-01-16 H.J. Lu (hjl@gnu.org)
9452
9453 * config.guess: Import from master sources, rev 1.225.
9454 * config.sub: Import from master sources, rev 1.238.
9455
9456 * MAINTAINERS: Updated notes on config.guess and config.sub.
9457
9458 2002-01-11 Steve Ellcey <sje@cup.hp.com>
9459
9460 * configure.in (ia64*-*-hpux*): New target for IA64 HP-UX,
9461 ld and gdb are not supported.
9462
9463 2002-01-07 Jeff Johnston <jjohnstn@redhat.com>
9464
9465 * Change reference to Cygnus Solutions to be Red Hat.
9466
9467 2002-01-07 Jeff Johnston <jjohnstn@redhat.com>
9468
9469 * COPYING.NEWLIB: Update generic copyright date.
9470
9471 2002-01-07 Mark Salter <msalter@redhat.com>
9472
9473 * configure.in: Remove target-bsp and target-cygmon from arm builds.
9474 Allow target-libgloss to be built for arm, strongarm, and xscale.
9475
9476 2002-01-03 Ben Elliston <bje@redhat.com>
9477
9478 * MAINTAINERS: Update URL for config.* scripts.
9479
9480 2001-12-18 Alan Modra <amodra@bigpond.net.au>
9481
9482 * config.sub: Import latest version.
9483 * config.guess: Likewise.
9484
9485 2001-12-13 Thomas Fitzsimmons <fitzsim@redhat.com>
9486
9487 * configure.in (FLAGS_FOR_TARGET): Remove -nostdinc and -isystem
9488 options for i[3456]86-pc-linux* native builds.
9489
9490 2001-12-05 Laurent Guerby <guerby@acm.org>
9491
9492 * MAINTAINERS: gcc adopts symlink-tree, refer more to
9493 libiberty.
9494
9495 Import this patch from gcc:
9496
9497 2000-12-09 Laurynas Biveinis <lauras@softhome.net>
9498
9499 * symlink-tree: handle DOS-style absolute paths.
9500
9501 2001-11-28 DJ Delorie <dj@redhat.com>
9502 Zack Weinberg <zack@codesourcery.com>
9503
9504 When build != host, create libiberty for the build machine.
9505
9506 * Makefile.in (TARGET_CONFIGARGS, BUILD_CONFIGARGS): Replace
9507 CONFIG_ARGUMENTS.
9508 (ALL_BUILD_MODULES_LIST, BUILD_CONFIGDIRS, BUILD_SUBDIR):
9509 New variables.
9510 (ALL_BUILD_MODULES, CONFIGURE_BUILD_MODULES): New variables
9511 and rules.
9512 (all.normal): Depend on ALL_BUILD_MODULES.
9513 (CONFIGURE_TARGET_MODULES rule): Use TARGET_CONFIGARGS.
9514 (all-build-libiberty): Depend on configure-build-libiberty.
9515
9516 * configure: Calculate and substitute proper value for
9517 ALL_BUILD_MODULES.
9518 * configure.in: Create the build subdirectory.
9519 Calculate and substitute TARGET_CONFIGARGS (formerly
9520 CONFIG_ARGUMENTS); also BUILD_SUBDIR and BUILD_CONFIGARGS (new).
9521
9522 2001-11-26 Geoffrey Keating <geoffk@redhat.com>
9523
9524 * config.sub: Update to version 1.232 on subversion.
9525
9526 2001-11-20 Nick Clifton <nickc@cambridge.redhat.com>
9527
9528 * Makefile.in (do-proto-toplev): Use msgfmt to generate .gmo
9529 files from .po files for a distribution.
9530
9531 2001-11-19 Hans-Peter Nilsson <hp@bitrange.com>
9532
9533 * COPYING.NEWLIB: Mention preserved notice in specific parts.
9534
9535 2001-11-13 Jeff Holcomb <jeffh@redhat.com>
9536
9537 Merged from net gcc:
9538 2001-07-30 Jeff Sturm <jsturm@one-pont.com>
9539 * ltcf-c.sh: Use $objext, not $ac_objext.
9540 2001-07-27 Mark Kettenis <kettenis@gnu.org>
9541 * ltcf-cxx.sh: Add support for GNU.
9542 2001-07-22 Timothy Wall <twall@redhat.com>
9543 * ltcf-c.sh: Don't disable shared libraries for AIX5/IA64. Preserve
9544 default settings if using GNU tools with that configuration.
9545 * ltcf-cxx.sh: Ditto.
9546 * ltcf-gcj.sh: Ditto.
9547 2001-07-21 Michael Chastain <chastain@redhat.com>
9548 * ltconfig: Set max_cmd_len to a maximum of 512Kb, as it seems some
9549 HPUX 11.0 systems have trouble with 1MB. Mark as gcc-local.
9550 * ltmain.sh: Mark as gcc-local.
9551
9552 2001-11-13 Jeff Holcomb <jeffh@redhat.com>
9553
9554 * Makefile.in (all-bison): Revert 2001-10-24.
9555 Don't depend on texinfo.
9556
9557 2001-11-12 Hans-Peter Nilsson <hp@bitrange.com>
9558
9559 * COPYING.NEWLIB: Add BSD-style license/copyright blurb for my work.
9560
9561 2001-11-08 Phil Edwards <pedwards@disaster.jaj.com>
9562
9563 * configure.in (--enable-languages): Be more permissive about
9564 syntax. Check for empty lists better. Warn about $LANGUAGES.
9565
9566 2001-11-06 Hans-Peter Nilsson <hp@bitrange.com>
9567
9568 * Makefile.in (MAKEINFO): Use "missing" for makeinfo older than 4.0.
9569
9570 2001-10-24 Jeff Holcomb <jeffh@redhat.com>
9571
9572 Makefile.in (all-bison): Don't depend on texinfo.
9573
9574 2001-10-03 Alan Modra <amodra@bigpond.net.au>
9575
9576 * gettext.m4: Test po/POTFILES.in exists before trying to read.
9577
9578 2001-09-29 Alexandre Oliva <aoliva@redhat.com>
9579
9580 * Makefile.in (configure-target-gperf): Depend on $(ALL_GCC_CXX).
9581
9582 2001-09-28 Hans-Peter Nilsson <hp@axis.com>
9583
9584 * config.sub, config.guess: Import latest from subversions.
9585
9586 2001-09-21 Alexandre Oliva <aoliva@redhat.com>
9587
9588 * Makefile.in (AS_FOR_TARGET, LD_FOR_TARGET,
9589 DLLTOOL_FOR_TARGET, WINDRES_FOR_TARGET, AR_FOR_TARGET,
9590 RANLIB_FOR_TARGET, NM_FOR_TARGET): Don't use double quotes to
9591 avoid quotes nesting problems.
9592 (NATIVE_CHECK_MODULES): Ditto, just for consistency.
9593 (DO_X): Export only variables that are set.
9594
9595 2001-09-19 Ben Elliston <bje@redhat.com>
9596
9597 * configure.in (sparc-sun-solaris2*): Don't use /usr/bin/which on
9598 Solaris when testing for the /usr/ucb/cc compiler; it has incorrect
9599 semantics. Use the shell built-in "type" command instead.
9600
9601 2001-09-15 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
9602
9603 * config.sub: Reverted the earlier change, this version is not the
9604 master file.
9605
9606 2001-09-14 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
9607
9608 * config.sub: Change machine triplets from mipsel*-* to mips*el-*.
9609 Add support for mips64.
9610
9611 2001-09-03 Jeff Holcomb <jeffh@redhat.com>
9612
9613 * configure.in: Enable libstdc++-v3 for h8300 targets.
9614
9615 2001-08-30 Eric Christopher <echristo@redhat.com>
9616 Jason Eckhardt <jle@redhat.com>
9617
9618 * config.sub: Add support for mipsisa32.
9619
9620 2001-08-30 Eric Christopher <echristo@redhat.com>
9621
9622 * config.sub, config.guess: Import latest from subversions.
9623
9624 2001-08-20 Alan Modra <amodra@bigpond.net.au>
9625
9626 * config.sub, config.guess: Import latest from subversions.
9627
9628 2001-07-26 DJ Delorie <dj@redhat.com>
9629
9630 * MAINTAINERS: Clarify libiberty merge rules and procedures.
9631
9632 2001-06-19 Alan Modra <amodra@bigpond.net.au>
9633
9634 * Makefile.in: Revert 2001-06-17.
9635 (VER): If AM_INIT_AUTOMAKE uses BFD_VERSION, get version from bfd/.
9636
9637 2001-06-17 H.J. Lu <hjl@gnu.org>
9638
9639 * Makefile.in (gas.tar.bz2): Pass TOOL=bfd PACKAGE=gas to make.
9640 (gas+binutils.tar.bz2): Likewise.
9641 (binutils.tar.bz2): Pass TOOL=bfd PACKAGE=binutils to make.
9642
9643 Fri Jun 8 11:14:02 2001 Andrew Cagney <cagney@b1.cygnus.com>
9644
9645 * Makefile.in (VER): When present, extract the version number from
9646 the file version.in.
9647
9648 2001-06-08 Alexandre Oliva <aoliva@redhat.com>, Jeff Sturm <jsturm@one-point.com>
9649
9650 * Makefile.in (AS_FOR_TARGET, LD_FOR_TARGET, NM_FOR_TARGET): If
9651 gcc/xgcc is built, use -print-prog-name to find out the program
9652 name to use.
9653
9654 2001-06-04 Mark Mitchell <mark@codesourcery.com>
9655
9656 * ltcf-c.sh (archive_cmds, archive_expsym_cmds) [solaris,
9657 with_gcc]: Use `gcc -shared' to build a shared library.
9658
9659 2001-06-04 John David Anglin <dave@hiauly1.hia.nrc.ca>
9660
9661 * ltcf-c.sh (archive_cmd) [hpux, with_gcc]: Use gcc to link shared
9662 archives.
9663
9664 2001-05-28 Simon Patarin <simon.patarin@inria.fr>
9665
9666 * ltcf-cxx.sh (osf3/osf4/osf5): Support creation of C++ shared
9667 libraries when using g++ with native linker.
9668
9669 2001-05-28 Alexandre Oliva <aoliva@redhat.com>
9670
9671 * ltconfig, ltmain.sh: Upgrade to libtool 1.4a 1.641.2.256.
9672
9673 2001-05-24 Tom Rix <trix@redhat.com>
9674
9675 * configure.in : enable ld for aix
9676
9677 2001-05-22 Alexandre Oliva <aoliva@redhat.com>
9678
9679 * ltcf-cxx.sh (allow_undefined_flag, no_undefined_flag)
9680 [aix4*|aix5*]: Prepend blank.
9681
9682 2001-05-20 Alexandre Oliva <aoliva@redhat.com>
9683
9684 * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh, ltcf-cxx.sh,
9685 ltcf-gcj.sh: Upgraded to libtool 1.4a 1.641.2.254. Rebuilt a number
9686 of subdir/configure scripts to use the new libtool.m4.
9687
9688 2001-05-14 H.J. Lu <hjl@gnu.org>
9689
9690 * config.if (libc_interface): Set to -libc6.2- for cross
9691 compiling to Linux/glibc 2.2.
9692
9693 2001-05-03 Alexandre Oliva <aoliva@redhat.com>
9694
9695 * configure.in (noconfigdirs) [*-cygwin*, *-mingw*, *-beos]: Disable
9696 libgcj.
9697
9698 2001-04-26 Alexandre Oliva <aoliva@redhat.com>
9699
9700 * configure.in (noconfigdirs): Don't reset it from scratch in the
9701 target case; only append to it.
9702
9703 2001-04-26 Alexandre Oliva <aoliva@redhat.com>
9704
9705 * configure.in (noconfigdirs) [hppa*-*-*, mips*-*-irix6*,
9706 sparc-*-solaris2.8]: Disable ${libgcj}.
9707
9708 2001-04-25 Alexandre Oliva <aoliva@redhat.com>
9709
9710 * configure.in (libgcj_saved): Copy from $libgcj.
9711 (libgcj): Zero out if --enable-libgcj; add to noconfigdirs is
9712 --disable-libgcj.
9713
9714 2001-04-20 Alexandre Oliva <aoliva@redhat.com>
9715
9716 * ltconfig, ltmain.sh, ltcf-cxx.sh: Upgraded to libtool 1.4a
9717 1.641.2.228.
9718
9719 2001-04-12 Alexandre Oliva <aoliva@redhat.com>
9720
9721 * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh, ltcf-cxx.sh,
9722 ltcf-gcj.sh: Upgraded to libtool 1.4a 1.641.2.226.
9723
9724 2001-04-01 Alexandre Oliva <aoliva@redhat.com>
9725
9726 * Makefile.in (CXX_FOR_TARGET_FOR_RECURSIVE_MAKE, RECURSE_FLAGS):
9727 New macros.
9728 (bootstrap, cross): Use RECURSE_FLAGS.
9729 * configure.in: Subst CXX_FOR_TARGET_FOR_RECURSIVE_MAKE.
9730
9731 2001-03-27 Alexandre Oliva <aoliva@redhat.com>
9732
9733 * configure.in (CXX_FOR_TARGET): Use xgcc for libstdc++-v3.
9734
9735 2001-03-23 Nick Clifton <nickc@redhat.com>
9736
9737 * README-maintainer-mode: Add note about inability to use "make
9738 distclean" in maintainer mode.
9739
9740 2001-03-22 Alexandre Oliva <aoliva@redhat.com>
9741
9742 Re-installed:
9743 2001-01-02 Laurynas Biveinis <lauras@softhome.net>
9744 * ltcf-c.sh: Clear ac_cv_prog_cc_pic for DJGPP. Do not add
9745 '-DPIC' to ac_cv_prog_cc_pic for DJGPP.
9746 * ltcf-cxx.sh: Likewise.
9747 * ltcf-gcj.sh: Likewise.
9748
9749 2001-03-22 Philip Blundell <philb@gnu.org>
9750
9751 * config.sub, config.guess: Import latest from subversions.
9752
9753 2001-03-22 Alexandre Oliva <aoliva@redhat.com>
9754
9755 * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh, ltcf-cxx.sh,
9756 ltcf-gcj.sh: Upgraded to libtool 1.4a 1.641.2.198.
9757
9758 2001-03-20 Michael Chastain <chastain@redhat.com>
9759
9760 * Makefile.in: all-m4 depends on all-texinfo.
9761
9762 2001-03-08 Alexandre Oliva <aoliva@redhat.com>
9763
9764 * Makefile.in (ALL_GCC, ALL_GCC_C, ALL_GCC_CXX): Set before use.
9765
9766 2001-02-22 Jeff Johnston <jjohnstn@redhat.com>
9767
9768 * COPYING.NEWLIB: Remove DJ Delorie's address because it is no
9769 longer valid.
9770
9771 2001-02-16 Nick Clifton <nickc@redhat.com>
9772
9773 * configure.in (noconfigdirs): Allow configuration of texinfo
9774 for Cygwin hosts.
9775
9776 2001-02-09 Martin Schwidefsky <schwidefsky@de.ibm.com>
9777
9778 * config.guess: Add linux target for S/390.
9779 * config.sub: Likewise.
9780 * configure.in: Likewise.
9781
9782 2001-02-06 Ben Elliston <bje@redhat.com>
9783
9784 * configure: Output host type to stdout, not stderr.
9785
9786 2001-02-04 Michael Sokolov <msokolov@ivan.Harhan.ORG>
9787
9788 * config.guess: Import from subversions.gnu.org (revision 1.181).
9789 * config.sub: Import from subversions.gnu.org (revision 1.199).
9790
9791 2001-01-30 Alan Modra <alan@linuxcare.com.au>
9792
9793 * config.guess: Handle hppa64-linux systems.
9794
9795 2001-01-27 Michael Sokolov <msokolov@ivan.Harhan.ORG>
9796
9797 * ltcf-cxx.sh (ac_cv_prog_cc_pic_works, ac_cv_prog_cc_static_works):
9798 Don't unset, it's non-portable and no longer necessary, set to empty
9799 instead.
9800
9801 2001-01-27 Michael Sokolov <msokolov@ivan.Harhan.ORG>, Alexandre Oliva <oliva@lsd.ic.unicamp.br>
9802
9803 * ltconfig: Shell portability fix for the tagname validity check.
9804
9805 2001-01-27 Michael Sokolov <msokolov@ivan.Harhan.ORG>
9806
9807 * ltcf-cxx.sh: Use parentheses around eval $ac_compile.
9808
9809 2001-01-27 Alexandre Oliva <aoliva@redhat.com>
9810
9811 * ltcf-c.sh (ld_shlibs) [aix5*]: Disable on unknown CPU types.
9812 * ltcf-cxx.sh, ltcf-gcj.sh: Likewise.
9813
9814 2001-01-24 Alexandre Oliva <aoliva@redhat.com>
9815
9816 * ltmain.sh (TAG disable-shared, TAG disable-static): Make sure we
9817 keep at least one of build_libtool_libs or build_old_libs set to
9818 yes.
9819
9820 2001-01-24 Alexandre Oliva <aoliva@redhat.com>
9821
9822 * ltcf-gcj.sh (lt_simple_link_test_code): Remove stray `(0)'.
9823 * libtool.m4 (_AC_LIBTOOL_GCJ): Pass $CPPFLAGS on.
9824
9825 2000-11-07 Philip Blundell <pb@futuretv.com>
9826
9827 * Makefile.in (ETC_SUPPORT): Also add configbuild.* and configdev.*.
9828
9829 2000-11-03 Philip Blundell <pb@futuretv.com>
9830
9831 * Makefile.in (ETC_SUPPORT): Add configure.texi and associated info
9832 files.
9833
9834 2001-01-15 Jeff Johnston <jjohnstn@redhat.com>
9835
9836 * COPYING.NEWLIB: Put into source repository.
9837
9838 2001-01-15 Ben Elliston <bje@redhat.com>
9839
9840 * configure.in (host_tools): Add sid.
9841 Always configure cgen.
9842 * Makefile.in (all-sid): New target.
9843 (check-sid, clean-sid, install-sid): Likewise.
9844
9845 2001-01-07 Andreas Jaeger <aj@suse.de>
9846
9847 * config.sub, config.guess: Update from subversions.
9848
9849 2000-12-12 Alexandre Oliva <aoliva@redhat.com>
9850
9851 * configure.in: Disable language-specific target libraries for
9852 languages that aren't enabled.
9853
9854 2000-11-24 Nick Clifton <nickc@redhat.com>
9855
9856 * configure.in (xscale-elf): Add target.
9857 (xscale-coff): Add target.
9858 (c4x, c5x, tic54x): Move after ARM targets.
9859
9860 2000-11-23 Alexandre Oliva <aoliva@redhat.com>
9861
9862 * ltcf-gcj.sh: Added file, required by 2000-11-18 merge.
9863
9864 2000-11-20 Ian Lance Taylor <ian@zembu.com>
9865
9866 * ltcf-cxx.sh: Added file, required by 2000-11-18 merge.
9867
9868 2000-11-18 Alexandre Oliva <aoliva@redhat.com>
9869
9870 * Makefile.in: Merge with GCC and libgcj.
9871 (ALL_GCC_C, ALL_GCC_CXX): New macros. Use them as dependencies of
9872 configure-target-<library> when their configure scripts need the C
9873 or C++ library to have already been built to work properly.
9874 (do_proto_toplev): Set them to an empty string.
9875
9876 2000-11-18 Alexandre Oliva <aoliva@redhat.com>
9877
9878 * Makefile.in (HOST_LIB_PATH, TARGET_LIB_PATH): New macros.
9879 (REALLY_SET_LIB_PATH): Use them.
9880
9881 2000-11-06 Christopher Faylor <cgf@cygnus.com>
9882
9883 * config.sub: Add support for Sun Chorus
9884
9885 2000-11-02 Per Lundberg <plundis@chaosdev.org>
9886
9887 * config.sub: Add support for the *-storm-chaos OS.
9888
9889 2000-10-30 Stephane Carrez <stcarrez@worldnet.fr>
9890
9891 * configure.in (noconfigdirs): Don't compile some
9892 of the libraries for 68HC11 & 68hc12 targets.
9893
9894 2000-09-30 Alexandre Oliva <aoliva@redhat.com>
9895
9896 * ltconfig, ltmain.sh, libtool.m4: Updated from libtool
9897 multi-language branch, to work around Solaris' /bin/sh bug. Rebuilt
9898 all affected `configure' scripts.
9899
9900 2000-09-25 Alexandre Oliva <aoliva@redhat.com>
9901
9902 * Makefile.in (DEVO_SUPPORT): Added gettext.m4, libtool.m4 and
9903 ltcf-c.sh.
9904
9905 2000-09-12 Philip Blundell <philb@gnu.org>
9906
9907 * config.sub, config.guess: Update from subversions.
9908
9909 2000-09-06 Alexandre Oliva <aoliva@redhat.com>
9910
9911 * Makefile.in (all-zlib): Added dummy target.
9912
9913 * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh: Updated from libtool
9914 multi-language branch.
9915
9916 2000-09-05 Alexandre Oliva <aoliva@redhat.com>
9917
9918 * Makefile.in (all-bootstrap): Added all-texinfo and all-zlib.
9919 (bootstrap*): Depend on all-bootstrap.
9920
9921 2000-09-02 Alexandre Oliva <aoliva@redhat.com>, DJ Delorie <dj@redhat.com>
9922
9923 * configure.in (FLAGS_FOR_TARGET): Use -nostdinc even for Canadian
9924 crosses, but add gcc/include to the header search path for them.
9925
9926 2000-08-31 Alexandre Oliva <aoliva@redhat.com>
9927
9928 * ltconfig, ltmain.sh: Updated from libtool multi-language branch.
9929 * libtool.m4, ltcf-c.sh: Copied from libtool multi-language branch.
9930 * gettext.m4: New file, extracted from aclocal.m4.
9931
9932 2000-08-22 Alexandre Oliva <aoliva@redhat.com>
9933
9934 * config-ml.in (CC, CXX): Avoid trailing whitespace.
9935 (LD_LIBRARY_PATH, SHLIB_PATH): Adjust for multilibs and export to
9936 sub-configures.
9937
9938 2000-08-20 Doug Evans <dje@casey.transmeta.com>
9939
9940 * Makefile.in (ALL_MODULES): Add all-cgen.
9941 (CROSS_CHECK_MODULES,INSTALL_MODULES,CLEAN_MODULES): Similarily.
9942 (all-cgen): New target.
9943 (all-opcodes,all-sim): Depend on all-cgen.
9944 * configure.in (host_tools): Add cgen.
9945 Only configure cgen if --enable-cgen-maint.
9946
9947 2000-08-17 Alexandre Oliva <aoliva@redhat.com>
9948
9949 * config-ml.in (CC, CXX): Don't introduce a leading space.
9950
9951 2000-08-16 Alexandre Oliva <aoliva@redhat.com>
9952
9953 * configure.in (libstdcxx_flags): Use
9954 libstdc++-v3/src/libstdc++.INC.
9955
9956 2000-08-15 Alexandre Oliva <aoliva@redhat.com>
9957
9958 * configure.in (libstdcxx_flags): Use libstdc++-v3/src/INCLUDES.
9959
9960 2000-08-11 Jason Merrill <jason@redhat.com>
9961
9962 * configure.in (CC_FOR_TARGET, CHILL_FOR_TARGET,
9963 CXX_FOR_TARGET): Add -B$$r/gcc/ here.
9964 (FLAGS_FOR_TARGET): Not here.
9965 (CHILL_FOR_TARGET, CXX_FOR_TARGET): Don't check the list of languages.
9966
9967 2000-08-07 DJ Delorie <dj@redhat.com>
9968
9969 * configure.in (FLAGS_FOR_TARGET): invert test for xgcc, should mean
9970 "if we're also building gcc, and it's a gcc that will run on the
9971 build machine, we want to use its includes instead of the system's
9972 default includes".
9973
9974 2000-08-03 Alexandre Oliva <aoliva@redhat.com>
9975
9976 * configure.in (libstdcxx_flags): Don't use `"'.
9977
9978 * config-ml.in: Adjust multilib search paths to the
9979 appropriate multilib tree.
9980
9981 2000-08-02 Alexandre Oliva <aoliva@redhat.com>
9982
9983 * configure.in (CHILL_FOR_TARGET, CXX_FOR_TARGET): Convert blanks to
9984 commas in $LANGUAGES.
9985
9986 2000-08-01 Alexandre Oliva <aoliva@redhat.com>
9987
9988 * configure.in (qCXX_FOR_TARGET): Use echo instead of expr.
9989
9990 2000-07-31 Alexandre Oliva <aoliva@redhat.com>
9991
9992 * configure.in (qCXX_FOR_TARGET): Quote `&' characters in
9993 CXX_FOR_TARGET for sed.
9994
9995 2000-07-30 Alexandre Oliva <aoliva@redhat.com>
9996
9997 * configure.in (CC_FOR_TARGET, CHILL_FOR_TARGET, CXX_FOR_TARGET):
9998 Do not override if already set in the environment or in configure.
9999 Don't duplicate $(FLAGS_FOR_TARGET) if it already appears in them.
10000 (FLAGS_FOR_TARGET): Don't use host directories on Canadian crosses.
10001
10002 2000-07-27 Alexandre Oliva <aoliva@redhat.com>
10003
10004 * Makefile.in (FLAGS_FOR_TARGET): New macro.
10005 (GCC_FOR_TARGET): Use it.
10006 (CC_FOR_TARGET, CXX_FOR_TARGET, CHILL_FOR_TARGET): Now defined...
10007 * configure.in: ... here.
10008 (FLAGS_FOR_TARGET): Define. Add ld build dir to -L path.
10009 (libstdcxx_flags): Define and append to CXX_FOR_TARGET.
10010
10011 2000-07-24 Alexandre Oliva <aoliva@redhat.com>
10012
10013 * Makefile.in (configure-target-libf2c): Depend on $(ALL_GCC).
10014 (configure-target-libchill, configure-target-libobjc): Likewise.
10015
10016 * configure.in: Use the same cache file for all target libs.
10017 * config-ml.in: But different cache files per multilib variant.
10018
10019 2000-07-23 Michael Sokolov <msokolov@ivan.Harhan.ORG>
10020
10021 * configure (topsrcdir): Don't use dirname.
10022
10023 2000-07-20 Jason Merrill <jason@redhat.com>
10024
10025 * configure.in: Remove all references to libg++ and librx.
10026
10027 * configure, configure.in, Makefile.in: Unify gcc and binutils.
10028
10029 2000-07-20 Hans-Peter Nilsson <hp@axis.com>
10030
10031 * config.sub: Update to subversions version 2000-07-06.
10032
10033 2000-07-12 Andrew Haley <aph@cygnus.com>
10034
10035 * configure.in (host_makefile_frag): Use mh-ia64pic on IA-64 hosts.
10036 (target_makefile_frag): Use mt-ia64pic on IA-64 targets.
10037
10038 2000-07-07 Phil Edwards <pme@sourceware.cygnus.com>
10039
10040 * symlink-tree: Check number of arguments.
10041
10042 2000-06-06 Andrew Cagney <cagney@b1.cygnus.com>
10043
10044 * texinfo/texinfo.tex: Update to version 2000-05-28.15.
10045
10046 2000-07-05 Jim Wilson <wilson@cygnus.com>
10047
10048 * Makefile.in (CXX_FOR_TARGET): Add libstdc++ to the library
10049 search path for a g++ extracted from the build tree. This
10050 will allow link tests run by configure scripts in
10051 subdirectories to succeed.
10052
10053 2000-07-01 Koundinya K <kk@ddeorg.soft.net>
10054
10055 * ltconfig: Add support for mips-dde-sysv4.2MP
10056
10057 2000-06-28 Corinna Vinschen <vinschen@cygnus.com>
10058
10059 * ltconfig: Check for host_os beeing one of `cygwin', `mingw' or
10060 `os2'. Force ac_cv_exeext to be ".exe" in that case.
10061
10062 2000-06-19 Timothy Wall <twall@cygnus.com>
10063
10064 * configure.in (noconfigdirs): Set noconfigdirs for tic54x target.
10065 * config.sub: Add tic54x target.
10066
10067 2000-06-07 Phillip Thomas <pthomas@suse.de>
10068
10069 * README-maintainer-mode: New file: Contains notes on using
10070 --enable-maintainer-mode with binutils.
10071
10072 2000-05-29 Andrew Cagney <cagney@b1.cygnus.com>
10073
10074 * texinfo/texinfo.tex: Update. Version from makeinfo 4.0.
10075
10076 2000-05-30 Andrew Cagney <cagney@b1.cygnus.com>
10077
10078 * config.sub: Import CVS version 1.167 Tue May 30 09:00:07 2000.
10079 * config.guess: Import CVS version 1.148 Tue May 30 09:00:06 2000
10080
10081 20000-05-21 H.J. Lu (hjl@gnu.org)
10082
10083 * Makefile.in (CC_FOR_TARGET): Make sure as/ld in the gcc
10084 directory are used if they exist. Make sure
10085 $(build_tooldir)/include is searched for header files,
10086 $(build_tooldir)/lib/ for library files.
10087 (GCC_FOR_TARGET): Likewise.
10088 (CXX_FOR_TARGET): Likewise.
10089
10090 2000-05-18 Jeffrey A Law (law@cygnus.com)
10091
10092 * configure.in (hppa*64*-*-*): Do build ld for this configuration.
10093
10094 2000-05-17 Alexandre Oliva <aoliva@cygnus.com>
10095
10096 * Makefile.in (configure-target-libiberty): Depend on
10097 configure-target-newlib.
10098
10099 2000-05-16 Alexandre Oliva <aoliva@cygnus.com>
10100
10101 * configure.in, Makefile.in: Merge all libffi-related
10102 configury stuff from the libgcj tree.
10103
10104 2000-05-16 Andrew Cagney <cagney@b1.cygnus.com>
10105
10106 Thu Apr 27 11:01:48 2000 Andrew Cagney <cagney@b1.cygnus.com>:
10107 * Makefile.in (do-tar-bz2, do-md5sum): Skip CVS directories.
10108
10109 2000-05-16 Andrew Cagney <cagney@b1.cygnus.com>
10110
10111 Wed Apr 26 17:03:53 2000 Andrew Cagney <cagney@b1.cygnus.com>:
10112 * Makefile.in (do-djunpack): New target. Update djunpack.bat with
10113 current version information. Add to proto-toplev directory.
10114 (gdb-taz): Build do-djunpack.
10115
10116 2000-05-15 David Edelsohn <edelsohn@gnu.org>
10117
10118 * configure.in: Special case powerpc*-*-aix* target_makefile_frag.
10119
10120 2000-05-13 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
10121
10122 * ltmain.sh: Preserve in relink_command any environment
10123 variables that may affect the linker behavior.
10124
10125 2000-05-12 Jeffrey A Law (law@cygnus.com)
10126
10127 * config.sub (basic_machine): Recognize hppa64 as a valid cpu type.
10128
10129 2000-05-10 Jim Wilson <wilson@cygnus.com>
10130
10131 * configure.in (ia64*-*-elf*): Add gdb and friends to noconfigdirs.
10132
10133 2000-05-08 Eli Zaretskii <eliz@is.elta.co.il>
10134
10135 * djunpack.bat: Change the Sed script to replace @V@ in fnchange.lst
10136 with the version name.
10137
10138 2000-05-01 Benjamin Kosnik <bkoz@cygnus.com>
10139
10140 * config.if: Tweak.
10141
10142 2000-04-23 Eli Zaretskii <eliz@is.elta.co.il>
10143
10144 * djunpack.bat: New file.
10145
10146 2000-04-19 Andrew Cagney <cagney@b1.cygnus.com>
10147
10148 * Makefile.in (taz, gdb-taz, gas.tar.bz2, binutils.tar.bz2,
10149 gas+binutils.tar.bz2, libg++.tar.bz2, gnats.tar.bz2, gdb.tar.bz2,
10150 dejagnu.tar.bz2, gdb+dejagnu.tar.bz2, insight.tar.bz2,
10151 insight+dejagnu.tar.bz2, newlib.tar.bz2): Pass MD5PROG to sub-make.
10152
10153 2000-04-16 Dave Pitts <dpitts@cozx.com>
10154
10155 * config.sub (case $basic_machine): Change default for "ibm-*"
10156 to "openedition".
10157
10158 2000-04-12 Andrew Cagney <cagney@b1.cygnus.com>
10159
10160 * Makefile.in (gdb-taz): New target. GDB specific archive.
10161 (do-md5sum): New target.
10162 (MD5PROG): Define.
10163 (PACKAGE): Default to TOOL.
10164 (VER): Default to a shell script.
10165 (taz): Rewrite target. Move real work to do-proto-toplev. Include
10166 md5 checksum generation.
10167 (do-proto-toplev): New target. Create $(PACKAGE)-$(VER) link.
10168 (do-tar-bz2): Delete creation of $(PACKAGE)-$(VER) link.
10169 (gdb.tar.bz2, dejagnu.tar.bz2, gdb+dejagnu.tar.bz2,
10170 insight.tar.bz2): Use gdb-taz to create archive.
10171
10172 2000-04-07 Andrew Cagney <cagney@b1.cygnus.com>
10173
10174 * configure (warn_cflags): Delete.
10175
10176 2000-04-05 Benjamin Kosnik <bkoz@cygnus.com>
10177 Martin v. Loewis <martin@loewis.home.cs.tu-berlin.de>
10178
10179 * configure.in (enable_libstdcxx_v3): Add.
10180 (target_libs): Add bits here to switch between libstdc++-v2 and
10181 libstdc++-v3.
10182 * config.if: And this file too.
10183 * Makefile.in: Add libstdc++-v3 targets.
10184
10185 2000-04-05 Michael Meissner <meissner@redhat.com>
10186
10187 * config.sub (d30v): Add d30v as a basic machine type.
10188
10189 2000-03-29 Jason Merrill <jason@casey.cygnus.com>
10190
10191 * configure.in: -linux-gnu*, not -linux-gnu.
10192
10193 2000-03-03 Andrew Cagney <cagney@b1.cygnus.com>
10194
10195 * Makefile.in (taz): Set PACKAGE to TOOL when not defined.
10196 (do-tar-bz2): Replace TOOL with PACKAGE.
10197 (gdb.tar.bz2): Remove GDBTK from GDB package.
10198 (gdb+dejagnu.tar.bz2, insight.tar.bz2, insight+dejagnu.tar.bz2,
10199 dejagnu.tar.bz2): New packages.
10200
10201 2000-02-27 Andreas Jaeger <aj@suse.de>
10202
10203 * configure.in: Add entry for mips*-*-linux*, move catch all
10204 *-*-*linux* entry below this one.
10205
10206 2000-02-27 Ian Lance Taylor <ian@zembu.com>
10207
10208 * ltconfig, ltmain.sh: Update to libtool 1.3.4.
10209
10210 2000-02-24 Nick Clifton <nickc@cygnus.com>
10211
10212 * config.sub: Support an OS of "wince".
10213
10214 2000-02-24 Andrew Cagney <cagney@b1.cygnus.com>
10215
10216 * config.guess, config.sub: Updated to match config's 2000-02-15
10217 version.
10218
10219 2000-02-23 Linas Vepstas <linas@linas.org>
10220
10221 * config.sub: Add support for Linux/IBM 370.
10222 * configure.in: Likewise.
10223
10224 2000-02-22 Nick Clifton <nickc@cygnus.com>
10225
10226 * configure.in: Add mips-pe, sh-pe and arm-wince-pe targets.
10227
10228 2000-02-20 Christopher Faylor <cgf@cygnus.com>
10229
10230 * config.guess: Guess "cygwin" rather than "cygwin32".
10231
10232 2000-02-16 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10233
10234 * configure (gcc_version): When setting, narrow search to
10235 lines containing `version_string'.
10236
10237 2000-02-15 Denis Chertykov <denisc@overta.ru>
10238
10239 * config.sub: Add support for avr target.
10240
10241 2000-02-01 Hans-Peter Nilsson <hp@bitrange.com>
10242
10243 * config.sub: Add mmix-knuth-mmixware.
10244
10245 2000-01-27 Christopher Faylor <cgf@redhat.com>
10246
10247 * Makefile.in (CC_FOR_TARGET): Add new winsup directory
10248 structure stuff to -L library search.
10249 (CXX_FOR_TARGET): Ditto.
10250 (CROSS_CHECK_MODULES): Fix spelling mistake.
10251
10252 2000-01-24 Mark Mitchell <mark@codesourcery.com>
10253
10254 * Makefile.in (CXX_FOR_TARGET): Use g++, not xgcc, to invoke
10255 the C++ compiler.
10256
10257 2000-01-12 Richard Henderson <rth@cygnus.com>
10258
10259 * configure.in: Don't build some bits for beos.
10260
10261 2000-01-12 Joel Sherrill (joel@OARcorp.com)
10262
10263 * Makefile.in (CC_FOR_TARGET): Use newlib libraries as well
10264 as include files.
10265
10266 2000-01-06 Geoff Keating <geoffk@cygnus.com>
10267
10268 * configure.in: Use mt-aix43 to handle *_TARGET defs,
10269 not mh-aix43.
10270
10271 1999-12-14 Richard Henderson <rth@cygnus.com>
10272
10273 * config.guess (alpha-osf, alpha-linux): Detect ev67.
10274 * config.sub: Accept alphaev[78], alphaev8.
10275
10276 1999-12-03 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
10277
10278 * config.guess, config.sub: Update from autoconf.
10279
10280 Tue Nov 23 00:57:41 1999 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
10281
10282 * config-ml.in (sparc*-*-*): Disable sparcv9 support if the
10283 necessary libraries are missing.
10284
10285 1999-10-25 Andreas Schwab <schwab@suse.de>
10286
10287 * configure: Fix quoting inside arguments of eval.
10288
10289 1999-10-21 Nick Clifton <nickc@cygnus.com>
10290
10291 * config-ml.in: Allow suppression of some ARM multilibs.
10292
10293 Tue Sep 7 23:33:57 1999 Linas Vepstas <linas@linas.org>
10294
10295 * config.guess: Add OS/390 match pattern.
10296 * config.sub: Add mvs, openedition targets.
10297 * configure.in (i370-ibm-opened*): New.
10298
10299 1999-09-04 Steve Chamberlain <sac@pobox.com>
10300
10301 * config.sub: Add support for configuring for pj.
10302
10303 1999-08-31 Nick Clifton <nickc@cygnus.com>
10304
10305 * config.sub (maybe_os): Add support for configuring for fr30.
10306
10307 1999-08-25 Nick Clifton <nickc@cygnus.com>
10308
10309 * configure.in: Do not configure or build ld for AIX
10310 platforms. ld is known to be broken on these platforms.
10311
10312 Wed Aug 25 01:12:25 1999 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
10313
10314 * config-ml.in: Pass compiler flag corresponding to multidirs to
10315 subdir configures.
10316
10317 1999-08-09 Ian Lance Taylor <ian@zembu.com>
10318
10319 * Makefile.in (LDFLAGS): Define.
10320
10321 1999-08-08 Mumit Khan <khan@xraylith.wisc.edu>
10322
10323 * configure.in (i[3456]-*-mingw32*): Don't put gprof in
10324 noconfigdirs.
10325 (*-*-cygwin*): Likewise.
10326
10327 1999-08-08 Ian Lance Taylor <ian@zembu.com>
10328
10329 * mkdep: New file.
10330 * Makefile.in (GAS_SUPPORT_DIRS): Add mkdep.
10331 (BINUTILS_SUPPORT_DIRS): Add mkdep.
10332
10333 From Eli Zaretskii <eliz@is.elta.co.il>:
10334 * configure (tmpfile): Change cONf$$ to cNf$$ to avoid an overly
10335 long file name when using DJGPP on MS-DOS.
10336
10337 Wed Aug 4 02:07:14 1999 Jeffrey A Law (law@cygnus.com)
10338
10339 * config.sub (vxworks case): Use os=-vxworks, not os=vxworks.
10340
10341 1999-07-30 Alan Modra <alan@spri.levels.unisa.edu.au>
10342
10343 * Makefile.in (check-target-libio): Remove all-target-libstdc++
10344 dependency as this causes "make check" to globally "make all"
10345
10346 Tue Jun 22 23:45:18 1999 Tom Tromey <tromey@cygnus.com>
10347
10348 * configure.in (target_libs): Added target-zlib.
10349 * Makefile.in (ALL_TARGET_MODULES): Added zlib.
10350 (CONFIGURE_TARGET_MODULES): Likewise.
10351 (CHECK_TARGET_MODULES): Likewise.
10352 (INSTALL_TARGET_MODULES): Likewise.
10353 (CLEAN_TARGET_MODULES): Likewise.
10354 (configure-target-zlib): New target.
10355 (all-target-zlib): Likewise.
10356 (all-target-libjava): Depend on all-target-zlib.
10357 (configure-target-libjava): Depend on configure-target-zlib.
10358
10359 * Makefile.in (configure-target-libjava): Depend on
10360 configure-target-newlib.
10361 (configure-target-boehm-gc): New target.
10362 (configure-target-qthreads): New target.
10363
10364 * configure.in (target_libs): Added target-qthreads.
10365 * Makefile.in (ALL_TARGET_MODULES): Added qthreads.
10366 (CONFIGURE_TARGET_MODULES): Likewise.
10367 (CHECK_TARGET_MODULES): Likewise.
10368 (INSTALL_TARGET_MODULES): Likewise.
10369 (CLEAN_TARGET_MODULES): Likewise.
10370 (all-target-qthreads): New target.
10371 (configure-target-libjava): Depend on configure-target-qthreads.
10372 (all-target-libjava): Depend on all-target-qthreads.
10373
10374 * Makefile.in (ALL_TARGET_MODULES): Added libjava, boehm-gc.
10375 (CONFIGURE_TARGET_MODULES): Likewise.
10376 (CHECK_TARGET_MODULES): Likewise.
10377 (INSTALL_TARGET_MODULES): Likewise.
10378 (CLEAN_TARGET_MODULES): Likewise.
10379 (all-target-libjava): New target.
10380 (all-target-boehm-gc): Likewise.
10381 * configure.in (target_libs): Added libjava, boehm-gc.
10382
10383 1999-07-22 Ian Lance Taylor <ian@zembu.com>
10384
10385 * Makefile.in (binutils.tar.bz2): Don't pass makeall.bat and
10386 configure.bat in SUPPORT_FILES.
10387 (gas+binutils.tar.bz2): Likewise.
10388
10389 * makeall.bat: Remove; obsolete.
10390
10391 1999-07-21 Ian Lance Taylor <ian@zembu.com>
10392
10393 From Mark Elbrecht:
10394 * configure.bat: Remove; obsolete.
10395
10396 1999-07-11 Ian Lance Taylor <ian@zembu.com>
10397
10398 * configure: Add -W -Wall to the default CFLAGS when compiling with
10399 gcc.
10400
10401 Thu Jul 8 12:32:23 1999 John David Anglin <dave@hiauly1.hia.nrc.ca>
10402
10403 * configure.in: Build ld, binutils & gas for hppa*-*-linux-gnu*.
10404
10405 1999-06-30 Mark Mitchell <mark@codesourcery.com>
10406
10407 * configure.in: Build ld on IRIX6.
10408
10409 1999-06-12 Ian Lance Taylor <ian@zembu.com>
10410
10411 * Makefile.in: Change distribution targets to use bzip2 instead of
10412 gzip.
10413 (TEXINFO_SUPPORT): Set to just texinfo/texinfo.tex.
10414 (taz): Don't use texinfo/gpl.texinfo or texinfo/lgpl.texinfo.
10415
10416 1999-06-04 Nick Clifton <nickc@cygnus.com>
10417
10418 * config.sub: Add mcore target.
10419
10420 1999-05-30 Cort Dougan <cort@cs.nmt.edu>
10421
10422 * config.guess (ppc-*-linux-gnu): Also use ld emul elf32ppclinux.
10423
10424 1999-05-25 H.J. Lu (hjl@gnu.org)
10425
10426 * config.guess (dummy): Changed to $dummy.
10427
10428 1999-05-24 Nick Clifton <nickc@cygnus.com>
10429
10430 * config.sub: Tidied up case statements.
10431
10432 1999-05-22 Ben Elliston <bje@cygnus.com>
10433
10434 * config.guess: Handle NEC UX/4800. Contributed by Jiro Takabatake
10435 <jiro@din.or.jp>.
10436
10437 * config.guess: Merge with FSF version. Future changes will be
10438 more accurately recorded in this ChangeLog.
10439 * config.sub: Likewise.
10440
10441 1999-05-20 Stephen L Moshier <moshier@world.std.com>
10442
10443 * Makefile.in (GCC_FOR_TARGET): Add -I$(build_tooldir)/include.
10444
10445 1999-04-30 Tom Tromey <tromey@cygnus.com>
10446
10447 * ltmain.sh: [mode link] Always use CC given by ltconfig.
10448
10449 1999-04-23 Tom Tromey <tromey@cygnus.com>
10450
10451 * ltconfig, ltmain.sh: Update to libtool 1.2f.
10452
10453 1999-04-20 Drew Moseley <dmoseley@cygnus.com>
10454
10455 * configure.in (noconfigdirs): Don't build libstub for arm-elf targets.
10456 (noconfigdirs): Don't build any bsp stuff for for arm-oabi targets.
10457 Bad merge removed these two changes.
10458
10459 Tue Apr 13 22:50:54 1999 Donn Terry (donn@interix.com)
10460 Martin Heller (Ing.-Buero_Heller@t-online.de)
10461
10462 * config.guess (interix Alpha): Add.
10463
10464 1999-04-11 Richard Henderson <rth@cygnus.com>
10465
10466 * configure.in (i?86-*-beos*): Do config gperf; don't config
10467 gdb, newlib, or libgloss.
10468
10469 1999-04-11 Alexandre Oliva <oliva@dcc.unicamp.br>
10470
10471 * config-ml.in: On mips*-*-*, if multidirs contains mabi=64, try to
10472 link a trivial program with -mabi=64. If it fails, remove mabi=64
10473 from multidirs.
10474
10475 1999-04-10 Philipp Thomas (kthomas@gwdg.de)
10476
10477 * config.sub: Set basic_machine to i586 when target_alias = k6-*.
10478
10479 1999-04-08 Nick Clifton <nickc@cygnus.com>
10480
10481 * config.sub: Add support for mcore targets.
10482
10483 1999-04-07 Michael Meissner <meissner@cygnus.com>
10484
10485 * configure.in (d30v-*): Use config/mt-d30v as makefile fragment,
10486 not mt-ospace, in order to shut up assembler warning about using
10487 symbols that are named the same as registers.
10488
10489 1999-04-07 Drew Moseley <dmoseley@cygnus.com>
10490
10491 * Makefile.in (all-target-cygmon): Added all-target-bsp to the
10492 dependency list for all-target-cygmon.
10493
10494 1999-04-05 Doug Evans <devans@casey.cygnus.com>
10495
10496 * config-ml.in: Check $host, not $target, for selective multilibs.
10497 (arm-*-*): Allow disabling of biendian, h/w fp, 26 bit apcs,
10498 thumb interworking, and underscore prefix multilibs.
10499
10500 1999-04-04 Ian Lance Taylor <ian@zembu.com>
10501
10502 * missing: Update to version from current automake.
10503
10504 Fri Apr 2 15:11:32 1999 H.J. Lu (hjl@gnu.org)
10505
10506 * configure (gxx_include_dir): Removed.
10507
10508 * configure.in (gxx_include_dir): Handle it.
10509 * Makefile.in: Likewise.
10510
10511 1999-03-29 Gavin Romig-Koch <gavin@cygnus.com>
10512
10513 * config.sub (mips64vr4111,mips64vr4111el) Add.
10514
10515 1999-03-21 Ben Elliston <bje@cygnus.com>
10516
10517 * config.guess: Correct typo for detecting ELF on FreeBSD.
10518
10519 Thu Mar 18 00:17:50 1999 Mark Elbrecht <snowball3@usa.net>
10520
10521 * configure.in (pc-msdosdjgpp): Set host_makefile_frag to
10522 config/mh-djgpp.
10523
10524 Thu Mar 11 18:37:23 1999 Drew Moseley <dmoseley@cygnus.com>
10525
10526 * Makefile.in (all-target-bsp): Added all-gcc all-binutils and
10527 all-target-newlib to dependency list for all-target-bsp.
10528
10529 Thu Mar 11 01:19:31 1999 Mumit Khan <khan@xraylith.wisc.edu>
10530
10531 * config.sub: Add i386-uwin support.
10532 * config.guess: Likewise.
10533
10534 Thu Mar 11 01:07:55 1999 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
10535
10536 * configure.in: cleanup, add mh-*pic handling for arm, special
10537 case powerpc*-*-aix*
10538
10539 Wed Mar 10 18:35:07 1999 Jeff Johnston <jjohnstn@cygnus.com>
10540
10541 * configure.in (noconfigdirs): Removed target-libgloss so libnosys.a
10542 can be built.
10543
10544 Wed Mar 10 17:39:09 1999 Drew Moseley <dmoseley@cygnus.com>
10545
10546 * configure.in: Added bsp support to arm-*-coff and arm-*-elf
10547 targets.
10548
10549 1999-03-02 Nick Clifton <nickc@cygnus.com>
10550
10551 * config.sub: Rename CYGNUS LOCAL to EGCS LOCAL
10552
10553 1999-02-28 Geoffrey Noer <noer@cygnus.com>
10554
10555 * config.sub: Check for "cygwin*" rather than "cygwin32*"
10556
10557 1999-02-24 Nick Clifton <nickc@cygnus.com>
10558
10559 * config.sub: Fix typo in arm recognition.
10560
10561 1999-02-24 Drew Moseley <dmoseley@cygnus.com>
10562
10563 * configure.in (noconfigdirs): Changed target_configdirs to
10564 include target-bsp only for m68k-*-elf* and m68k-*-coff*
10565 rather than m68k-*-* since it is not known to work on
10566 m68k-aout. Ditto for arm-*-*oabi.
10567
10568 1999-02-24 Stan Shebs <shebs@andros.cygnus.com>
10569
10570 * configure.in (*-*-windows*): Remove, no longer used.
10571
10572 1999-02-19 Ben Elliston <bje@cygnus.com>
10573
10574 * config.guess: Automatically recognise ELF on FreeBSD. From Niall
10575 Smart and improved by Andrew Cagney.
10576
10577 1999-02-18 Marc Espie <espie@cvs.openbsd.org>
10578
10579 * config.guess: Recognize openbsd-*-hppa.
10580
10581 1999-02-17 H.J. Lu (hjl@gnu.org)
10582
10583 * Makefile.in (REALLY_SET_LIB_PATH): Append $$$(RPATH_ENVVAR)
10584 only if it is not empty.
10585
10586 1999-02-17 Nick Clifton <nickc@cygnus.com>
10587
10588 Patch from: Scott Bambrough <scottb@corelcomputer.com>
10589
10590 * config.guess: Modified to recognize uname's armv* syntax.
10591
10592 * config.sub: Modified to recognize uname's armv* syntax.
10593
10594 1999-02-17 Mark Salter <msalter@cygnus.com>
10595
10596 * configure.in: Added target-bsp for sparclite.
10597
10598 1999-02-08 Richard Henderson <rth@cygnus.com>
10599
10600 * config.sub: Recognize alphapca5[67] and up to alphaev8.
10601
10602 1999-02-08 Nick Clifton <nickc@cygnus.com>
10603
10604 * configure.in: Add support for strongarm port.
10605 * config.sub: Add support for strongarm target.
10606
10607 1999-02-07 Mumit Khan <khan@xraylith.wisc.edu>
10608
10609 * configure.in (*-*-cygwin32*): Use config/mh-cygwin instead of
10610 the old name config/mh-cygwin32.
10611 Enable texinfo.
10612
10613 1999-02-04 Ian Lance Taylor <ian@cygnus.com>
10614
10615 * configure.in: Do build ld for ix86 Solaris.
10616
10617 1999-02-02 Jim Wilson <wilson@cygnus.com>
10618
10619 * Makefile.in (EXTRA_GCC_FLAGS): Set AR to $AR instead of
10620 $AR_FOR_TARGET. Likewise for RANLIB.
10621
10622 1999-02-02 Catherine Moore <clm@cygnus.com>
10623
10624 * config.sub (oabi): Recognize.
10625 * configure.in (arm-*-oabi): Handle.
10626
10627 1999-01-30 Robert Lipe (robertlipe@usa.net)
10628
10629 * config.guess: Improve detection of i686 on UnixWare 7.
10630
10631 1999-01-30 Mumit Khan <khan@xraylith.wisc.edu>
10632
10633 * config.guess: Add support for i386-pc-interix.
10634 * config.sub: Likewise.
10635 * configure.in: Likewise.
10636
10637 1999-01-18 Christopher Faylor <cgf@cygnus.com>
10638
10639 * Makefile.in: Remove unneeded all-target-libio from
10640 from all-target-winsup target since it is now unneeded.
10641 Add all-target-libtermcap in its place since it is now
10642 needed.
10643
10644 1998-12-30 Christopher Faylor <cgf@cygnus.com>
10645
10646 * configure.in: makefile stub for cygwin target is probably
10647 unnecessary. Remove it for now.
10648
10649 1998-12-30 Christopher Faylor <cgf@cygnus.com>
10650
10651 * configure.in: libtermcap.a should be built when cygwin is the
10652 target as well as the host.
10653 * config.guess: Allow mixed case in cygwin uname output.
10654 * Makefile.in: Add libtermcap target.
10655
10656 1998-12-23 Jeffrey A Law (law@cygnus.com)
10657
10658 * config.sub: Clean up handling of hppa2.0.
10659
10660 1998-12-22 Rodney Brown (rodneybrown@pmsc.com)
10661
10662 * config.guess: Use C code to identify more HP machines.
10663
10664 Thu Dec 17 01:22:30 1998 Jeffrey A Law (law@cygnus.com)
10665
10666 * config.sub: Handle hppa2.0.
10667
10668 Tue Dec 15 17:02:58 1998 Bob Manson <manson@charmed.cygnus.com>
10669
10670 * configure.in: Add cygmon for x86-coff and x86-elf. Configure
10671 cygmon for all sparclite targets, regardless of object format.
10672
10673 1998-12-15 Mark Salter <msalter@cygnus.com>
10674
10675 * configure.in: Added target-bsp for several target architectures.
10676
10677 * Makefile.in: Added rules for bsp.
10678
10679 Fri Dec 4 01:34:02 1998 Jeffrey A Law (law@cygnus.com)
10680
10681 * config.guess: Improve detection of hppa2.0 processors.
10682
10683 Fri Dec 4 01:33:05 1998 Niall Smart <nialls@euristix.ie>
10684
10685 * config.guess: Recognize FreeBSD using ELF automatically.
10686
10687 1998-11-26 Manfred Hollstein <manfred@s-direktnet.de>
10688
10689 * configure (skip-this-dir): Add handling for new shell script, which
10690 might be created by a sub-directory's configure to indicate, this particular
10691 directory is "unwanted".
10692 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): Likewise.
10693
10694 Wed Nov 18 18:28:45 1998 Geoffrey Noer <noer@cygnus.com>
10695
10696 * ltconfig: import from libtool, after changing libtool to
10697 account for the cygwin name change.
10698
10699 Wed Nov 18 18:09:14 1998 Geoffrey Noer <noer@cygnus.com>
10700
10701 * Makefile.in: CC_FOR_TARGET and CXX_FOR_TARGET should also
10702 include newlib/libc/sys/cygwin and newlib/libc/sys/cygwin32.
10703
10704 Wed Nov 18 20:13:29 1998 Christopher Faylor <cgf@cygnus.com>
10705
10706 * configure.in: Add libtermcap to list of cygwin dependencies.
10707
10708 1998-11-17 Geoffrey Noer <noer@cygnus.com>
10709
10710 * Makefile.in: modify CC_FOR_TARGET and CXX_FOR_TARGET so that
10711 they include winsup/include when it's a cygwin target.
10712
10713 1998-11-12 Tom Tromey <tromey@cygnus.com>
10714
10715 * configure.in (host_tools): Added zip.
10716 * Makefile.in (all-target-libjava): Depend on all-zip.
10717 (all-zip): New target.
10718 (ALL_MODULES): Added all-zip.
10719 (NATIVE_CHECK_MODULES): Added check-zip.
10720 (INSTALL_MODULES): Added install-zip.
10721 (CLEAN_MODULES): Added clean-zip.
10722
10723 1998-11-12 Geoffrey Noer <noer@cygnus.com>
10724
10725 * Makefile.in: lose "32" from comment about cygwin.
10726
10727 1998-11-05 Nick Clifton <nickc@cygnus.com>
10728
10729 * configure.in: Use -Os to build target libraries for the fr30.
10730
10731 1998-11-04 Dave Brolley <brolley@cygnus.com>
10732
10733 * config.sub: Add fr30.
10734
10735 1998-11-02 Geoffrey Noer <noer@cygnus.com>
10736
10737 * configure.in: drop "32" from config/mh-cygwin32. Check
10738 cygwin* instead of cygwin32*.
10739 * config.sub: Check cygwin* instead of cygwin32*.
10740
10741 1998-10-22 Robert Lipe <robertl@dgii.com>
10742
10743 * config.guess: Match any version of Unixware7.
10744
10745 1998-10-20 Syd Polk <spolk@cygnus.com>
10746
10747 * Makefile.in configure.in: Add the ability to use tcl8.1 and tk8.1
10748 if desired.
10749
10750 1998-10-18 Jeffrey A Law (law@cygnus.com)
10751
10752 * config.if (cxx_interface, libstdcxx_interface): Do not try to set
10753 these if the appropriate directories and files to not exist.
10754
10755 1998-10-14 Jeffrey A Law (law@cygnus.com)
10756
10757 * Makefile.in (DEVO_SUPPORT): Add config.if.
10758
10759 1998-10-13 Manfred Hollstein <manfred@s-direktnet.de>
10760
10761 * configure: Add pattern to replace "build_tooldir"'s
10762 definition in the generated Makefile with "tooldir"'s
10763 actual value.
10764
10765 Tue Oct 13 09:17:06 1998 Jeffrey A Law (law@cygnus.com)
10766
10767 * config.sub: Bring back lost sparcv9.
10768
10769 * Makefile.in (all-snvavigator): Remove all-flexlm dependency.
10770
10771 Mon Oct 12 12:09:44 1998 Jeffrey A Law (law@cygnus.com)
10772
10773 * Makefile.in (CHILL_FOR_TARGET): Mirror recent changes to
10774 CC_FOR_TARGET and friends.
10775
10776 Mon Oct 12 12:09:30 1998 Alexandre Oliva <oliva@dcc.unicamp.br>
10777
10778 * Makefile.in (build_tooldir): New variable, same as tooldir.
10779 (CC_FOR_TARGET, GCC_FOR_TARGET, CXX_FOR_TARGET): Add
10780 -B$(build_tooldir)/bin/.
10781 (BASE_FLAGS_TO_PASS): Pass build_tooldir down.
10782
10783 Wed Sep 30 22:20:50 1998 Robert Lipe <robertl@dgii.com>
10784
10785 * config.sub: Add support for i[34567]86-pc-udk.
10786 * configure.in: Likewise.
10787
10788 Wed Sep 30 19:23:48 1998 Geoffrey Noer <noer@cygnus.com>
10789
10790 * Makefile.in: add bzip2 package building bits for user
10791 tools module
10792 * configure.in: ditto
10793
10794 Wed Sep 30 03:00:05 1998 Jeffrey A Law (law@cygnus.com)
10795
10796 * Makefile.in (TARGET_CONFIGDIRS): Add libobjc.
10797 (ALL_TARGET_MODULES): Add all-target-libobjc.
10798 (CONFIGURE_TARGET_MODULES, CHECK_TARGET_MODULES): Similarly.
10799 (INSTALL_TARGET_MODULES, CLEAN_TARGET_MODULES): Similarly.
10800 (all-target-libchill): Add dependencies.
10801 * configure.in (target_libs): Add libchill.
10802
10803 1998-09-30 Manfred Hollstein <manfred@s-direktnet.de>
10804
10805 * configure.in (target_subdir): Remove duplicate line.
10806
10807 Tue Sep 29 22:45:41 1998 Felix Lee <flee@cygnus.com>
10808
10809 * Makefile.in (all-automake): fix dependencies.
10810
10811 Mon Sep 28 04:04:27 1998 Jeffrey A Law (law@cygnus.com)
10812
10813 * configure.in: Minor cleanups for building in the $(target_alias)
10814 subdir.
10815
10816 1998-09-22 Jim Wilson <wilson@cygnus.com>
10817
10818 * Makefile.in (bootstrap): Set r and s before make all. Use
10819 BASE_FLAGS_TO_PASS in make all.
10820 (cross): Likewise.
10821
10822 1998-09-20 Mark Mitchell <mark@markmitchell.com>
10823
10824 * Makefile.in (bootstrap): Pass TARGET_FLAGS_TO_PASS to `make all'.
10825
10826 Sun Sep 20 00:13:02 1998 Richard Henderson <rth@cygnus.com>
10827
10828 * config.sub: Fix typo in last change.
10829
10830 1998-09-19 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
10831
10832 * config.sub: Add support for C4x target.
10833 * configure.in: Likewise.
10834
10835 1998-09-13 David S. Miller <davem@pierdol.cobaltmicro.com>
10836
10837 * config.sub: Recognize sparcv9 just like sparc64.
10838
10839 Wed Sep 9 15:44:52 1998 Robert Lipe <robertl@dgii.com>
10840
10841 * config.guess: Match "Pent II" or "PentII" for OpenServer.
10842
10843 Tue Sep 8 01:18:39 1998 Jeffrey A Law (law@cygnus.com)
10844
10845 * config.guess: Correctly identify Pentium II sco boxes.
10846
10847 * config.guess: Fix "tr" code. From Weiwen Liu.
10848
10849 Sat Sep 5 13:56:52 1998 John Hughes <john@Calva.COM>
10850
10851 * configure.in: Do not assume x86-svr4 or x86-unixware can handle
10852 stabs.
10853
10854 Sat Sep 5 02:12:02 1998 Jeffrey A Law (law@cygnus.com)
10855
10856 * Makefile.in (TARGET_CONFIGDIRS): Add libchill.
10857 (ALL_TARGET_MODULES): Add all-target-libchill.
10858 (CONFIGURE_TARGET_MODULES, CHECK_TARGET_MODULES): Similarly.
10859 (INSTALL_TARGET_MODULES, CLEAN_TARGET_MODULES): Similarly.
10860 (all-target-libchill): Add dependencies.
10861 * configure.in (target_libs): Add libchill.
10862
10863 Sun Aug 30 22:27:02 1998 Lutz Wohlrab <lutz.wohlrab@informatik.tu-chemnitz.de>
10864
10865 * config.guess: Avoid assumptions about "tr" behaves when
10866 LANG is set to something other than English.
10867
10868 Sun Aug 30 22:14:44 1998 H.J. Lu (hjl@gnu.org)
10869
10870 * configure (gxx_include_dir): Changed to
10871 '${prefix}/include/g++'-${libstdcxx_interface}.
10872
10873 * config.if: New to determine the interfaces.
10874
10875 Sun Aug 30 21:15:19 1998 Mark Klein (mklein@dis.com)
10876
10877 * config.guess: Detect and handle MPE/IX.
10878 * config.sub: Deal with MPE/IX.
10879
10880 Sat Aug 29 14:32:55 1998 David Edelsohn <edelsohn@mhpcc.edu>
10881
10882 * configure.in: Use mh-aix43.
10883
10884 1998-07-29 Manfred Hollstein <manfred@s-direktnet.de>
10885
10886 * configure: Fix --without/--disable cases for gxx-include-dir.
10887
10888 Fri Aug 28 12:28:26 1998 Per Bothner <bothner@cygnus.com>
10889
10890 * mdata-sh: Imported. Needed for automake support.
10891
10892 Thu Aug 13 12:49:29 1998 H.J. Lu <hjl@gnu.org>
10893
10894 * Makefile.in (taz): Try "chmod -R og=u ." before
10895 "chmod og=u `find . -print`".
10896
10897 Fri Jul 31 09:38:33 1998 Catherine Moore <clm@cygnus.com>
10898
10899 * configure.in: Add arm-elf and thumb-elf support.
10900
10901 Mon Jul 27 16:23:58 1998 Doug Evans <devans@canuck.cygnus.com>
10902
10903 * Makefile.in: Undo previous patch.
10904
10905 Fri Jul 24 19:55:24 1998 Doug Evans <devans@canuck.cygnus.com>
10906
10907 * Makefile.in (INSTALL_TARGET): Move EXTRA_TARGET_HOST_INSTALL_MODULES
10908 to here ...
10909 (install-no-fixedincludes): and here
10910 (INSTALL_MODULES): ... from here.
10911
10912 Fri Jul 24 17:01:42 1998 Ian Lance Taylor <ian@cygnus.com>
10913
10914 * config.sub: Merge with FSF.
10915
10916 * config.guess: Merge with FSF.
10917
10918 Fri Jul 24 08:43:36 1998 Doug Evans <devans@canuck.cygnus.com>
10919
10920 * configure (extraconfigdirs): New variable.
10921 (SUBDIRS): Add extraconfigdirs and recurse on them too.
10922 * Makefile.in (all): Move higher in file.
10923 (EXTRA_TARGET_HOST_ALL_MODULES): New variable.
10924 (EXTRA_TARGET_HOST_{INSTALL,CHECK}_MODULES): New variables.
10925 (ALL_MODULES): Add EXTRA_TARGET_HOST_ALL_MODULES.
10926 (CROSS_CHECK_MODULES): Add EXTRA_TARGET_HOST_CHECK_MODULES.
10927 (INSTALL_MODULES): Add EXTRA_TARGET_HOST_INSTALL_MODULES.
10928
10929 1998-07-23 Brendan Kehoe <brendan@cygnus.com>
10930
10931 * Makefile.in (all-target-libjava): Depend on all-gcc and
10932 all-target-newlib.
10933 (configure-target-libjava): Depend on $(ALL_GCC).
10934
10935 Sat Jul 18 14:32:43 CDT 1998 Robert Lipe <robertl@dgii.com>
10936
10937 * config.guess: (*-pc-sco3.2v5) Add detection for Pentium II.
10938 (*-pc-unixware7) Add detection for Pentium II, Pentium Pro.
10939
10940 Fri Jul 17 13:30:18 1998 Ian Lance Taylor <ian@cygnus.com>
10941
10942 * ylwrap: Change absolute path checks to check for DOS style path
10943 names.
10944
10945 * ylwrap: Don't use a full path name if the source file is in the
10946 same directory. From hjl@lucon.org (H.J. Lu).
10947
10948 * config-ml.in: Default to being verbose, to match Feb 18 change to
10949 configure.
10950
10951 Thu Jul 16 12:29:51 1998 Ian Lance Taylor <ian@cygnus.com>
10952
10953 Brought over from egcs:
10954
10955 Sat Jun 27 22:46:32 1998 Jeffrey A Law (law@cygnus.com)
10956
10957 * configure.in (target_subdir): Set to ${target_alias} instead
10958 of "libraries".
10959
10960 Mon Sep 1 16:45:44 1997 Jim Wilson <wilson@cygnus.com>
10961
10962 * configure.in (target_subdir): Set to libraries if enable_multilib.
10963
10964 Wed Jul 15 01:00:54 1998 Ian Lance Taylor <ian@cygnus.com>
10965
10966 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): If there are any
10967 multilibs, force reconfiguration the first time we create
10968 multilib.out in a subdirectory, in case TARGET_SUBDIR is `.'.
10969
10970 Tue Jul 14 23:41:03 1998 Ian Lance Taylor <ian@cygnus.com>
10971
10972 * configure.in: Strip any --no option from CONFIG_ARGUMENTS, to
10973 avoid confusion with --no-recursion.
10974
10975 Tue Jul 14 15:37:41 1998 Geoffrey Noer <noer@cygnus.com>
10976
10977 * configure.in: Win32 hosts shouldn't use install -x
10978 * install-sh: remove -x option, and special .exe-handling
10979 hack.
10980
10981 Tue Jul 14 15:28:41 1998 Richard Henderson <rth@cygnus.com>
10982
10983 * config.guess: Recognize i586-pc-beos.
10984 * configure.in: Don't build some bits for beos.
10985
10986 Tue Jul 14 13:22:18 1998 Ian Lance Taylor <ian@cygnus.com>
10987
10988 * configure: If CC is set but CFLAGS is not, and CC is gcc, make
10989 CFLAGS default to -O2.
10990
10991 * ltmain.sh: Add some hacks to make SunOS --enable-shared work
10992 when using GNU ld.
10993
10994 Fri Jul 10 13:18:23 1998 Ian Lance Taylor <ian@cygnus.com>
10995
10996 * ltmain.sh: Correct install when using a different shell.
10997
10998 Tue Jul 7 15:24:38 1998 Ian Lance Taylor <ian@cygnus.com>
10999
11000 * ltconfig, ltmain.sh: Update to libtool 1.2b.
11001
11002 Thu Jul 2 13:57:36 1998 Klaus Kaempf <kkaempf@rmi.de>
11003
11004 * makefile.vms: Update to build binutils/makefile.vms. Add install
11005 target.
11006
11007 Wed Jul 1 16:45:21 1998 Ian Lance Taylor <ian@cygnus.com>
11008
11009 * ltconfig: Update to correct AIX handling.
11010
11011 Sat Jun 27 22:46:32 1998 Jeffrey A Law (law@cygnus.com)
11012
11013 * Makefile.in (BASE_FLAGS_TO_PASS): Add TARGET_SUBDIR.
11014
11015 * configure.in (target_subdir): Set to ${target_alias} instead
11016 of "libraries".
11017
11018 1998-06-26 Manfred Hollstein <manfred@s-direktnet.de>
11019
11020 * Makefile.in (BASE_FLAGS_TO_PASS): Add gcc_version_trigger.
11021 (Makefile): Depend on $(gcc_version_trigger).
11022
11023 * configure (gcc_version): Change default initializer to empty
11024 string.
11025 (gcc_version_trigger): New variable; pass this variable down
11026 to subdir configures to enable them checking gcc's version
11027 themselves. Emit make macros for both gcc_version vars.
11028 (topsrcdir): Initialize reliably.
11029 (recursion line): Remove --with-gcc-version=${gcc_version}.
11030
11031 1998-06-24 Manfred Hollstein <manfred@s-direktnet.de>
11032
11033 * configure (enable_version_specific_runtime_libs): Implement new flag
11034 --enable-version-specific-runtime-libs which installs C++ runtime stuff
11035 in $(libsubdir); emit definition in each generated Makefile.
11036 (gxx_include_dir): Initialize depending on
11037 $enable_version_specific_runtime_libs.
11038
11039 1998-06-24 Manfred Hollstein <manfred@s-direktnet.de>
11040
11041 * configure (gcc_version): Initialize properly depending on
11042 how and where configure is started.
11043 (recursion line): Pass a --with-gcc-version=${gcc_version}
11044 to configures in subdirs.
11045
11046 Wed Jun 24 16:01:59 1998 John Metzler <jmetzler@cygnus.com>
11047
11048 * configure.in (noconfigdirs): Add configure pattern for mips tx39
11049 cygmon
11050
11051 Tue Jun 23 22:42:32 1998 Mark Alexander <marka@cygnus.com>
11052
11053 * configure.in: Add cygmon and libstub support for mn10200.
11054
11055 1998-06-19 Manfred Hollstein <manfred@s-direktnet.de>
11056
11057 * configure (gcc_version): Add new variable describing the
11058 particular gcc version we're building.
11059 * Makefile.in (libsubdir): Add new macro for the directory
11060 in which the compiler finds executables, libraries, etc.
11061 (BASE_FLAGS_TO_PASS): Pass down gcc_version, target_alias
11062 and libsubdir.
11063
11064 Fri Jun 19 02:36:59 1998 Alexandre Oliva <oliva@dcc.unicamp.br>
11065
11066 * Makefile.in (local-clean): Remove *.log.
11067 (warning.log): Built with warn_summary from build.log.
11068 (mail-report.log): Run test_summary.
11069 (mail-report-with-warnings.log): Run test_summary including
11070 warning.log in the report.
11071
11072 Thu Jun 18 11:26:03 1998 Robert Lipe <robertl@dgii.com>
11073
11074 * config.guess: Detection of Pentium II for *-sco-3.2v5*.
11075
11076 Mon Jun 15 14:53:54 1998 Andrew Cagney <cagney@b1.cygnus.com>
11077
11078 * Makefile.in (grep): Grep no longer depends on libiberty.
11079
11080 Fri Jun 12 14:03:34 1998 Syd Polk <spolk@cygnus.com>
11081
11082 * Makefile.in: all-snavigator needs all-libgui.
11083
11084 Thu Jun 11 19:43:47 1998 Mark Alexander <marka@cygnus.com>
11085
11086 * configure.in: Add cygmon and libstub support for mn10300.
11087
11088 Wed Jun 10 11:19:47 1998 Ian Lance Taylor <ian@cygnus.com>
11089
11090 * missing: Update to version from automake 1.3.
11091
11092 * ltmain.sh: On installation, don't get confused if the same name
11093 appears more than once in the list of library names.
11094
11095 Wed Jun 3 14:51:42 1998 Ian Lance Taylor <ian@cygnus.com>
11096
11097 * config.sub: Accept m68060 and m5200 as CPU names.
11098
11099 Mon Jun 1 17:25:16 1998 Ian Lance Taylor <ian@cygnus.com>
11100
11101 * configure: Use && rather than using -a in test, because odd
11102 strings can confuse test.
11103 * configure.in: Likewise.
11104
11105 Thu May 28 19:31:13 1998 Ian Lance Taylor <ian@cygnus.com>
11106
11107 * ltconfig, ltmain.sh: Bring in Visual C++ support.
11108
11109 Sat May 23 23:44:13 1998 Alexandre Oliva <oliva@dcc.unicamp.br>
11110
11111 * Makefile.in (boostrap2-lean, bootstrap3-lean,
11112 bootstrap4-lean): New targets.
11113
11114 Mon May 11 23:55:56 1998 Jeffrey A Law (law@cygnus.com)
11115
11116 * mpw-* Delete. Not used.
11117
11118 Mon May 11 23:11:34 1998 Jeffrey A Law (law@cygnus.com)
11119
11120 * COPYING.LIB: Update FSF address.
11121
11122 Fri May 8 01:30:20 1998 Ian Lance Taylor <ian@cygnus.com>
11123
11124 * ltconfig, ltmain.sh: Update to libtool 1.2a.
11125
11126 * Makefile.in (GASB_SUPPORT_DIRS): Remove intl; already included via
11127 GAS_SUPPORT_DIRS.
11128
11129 Thu May 7 17:27:35 1998 Ian Lance Taylor <ian@cygnus.com>
11130
11131 * ltconfig, ltmain.sh: Avoid producing a version number if
11132 -version-info was not used.
11133
11134 Tue May 5 18:02:24 1998 Ian Lance Taylor <ian@cygnus.com>
11135
11136 * configure.in: Add --with-newlib to CONFIG_ARGUMENTS if we are
11137 building with newlib.
11138
11139 1998-04-30 Paul Eggert <eggert@twinsun.com>
11140
11141 * Makefile.in (EXTRA_GCC_FLAGS): Remove backslash at end;
11142 Solaris `make' causes it to continue to next definition.
11143
11144 Tue Apr 28 16:24:24 1998 Jason Molenda (crash@bugshack.cygnus.com)
11145
11146 * Makefile.in (install-gdbtk): Call this 'install-gdb' so that
11147 the right GUI libraries and files are installed along with GDB.
11148
11149 Tue Apr 28 18:11:24 1998 Ian Lance Taylor <ian@cygnus.com>
11150
11151 * configure.in: Change alpha to alpha* in several places.
11152
11153 Tue Apr 28 07:42:00 1998 Mark Alexander <marka@cygnus.com>
11154
11155 * config.sub: Recognize sparc86x.
11156
11157 Tue Apr 28 07:35:02 1998 Michael Meissner <meissner@cygnus.com>
11158
11159 * configure.in (--enable-target-optspace): Remove debug echo.
11160
11161 Thu Apr 23 21:31:16 1998 Jim Wilson <wilson@cygnus.com>
11162
11163 * configure: Set CXXFLAGS from CXXFLAGS, not CFLAGS.
11164
11165 Thu Apr 23 12:26:38 1998 Ian Lance Taylor <ian@cygnus.com>
11166
11167 * ltconfig: Update cygwin32 support.
11168
11169 * Makefile.in (GAS_SUPPORT_DIRS): Add intl.
11170 (BINUTILS_SUPPORT_DIRS, GASB_SUPPORT_DIRS): Likewise.
11171 (GDB_SUPPORT_DIRS): Likewise.
11172
11173 Wed Apr 22 12:30:10 1998 Michael Meissner <meissner@cygnus.com>
11174
11175 * configure.in (target_makefile_frag): If --enable-target-optspace,
11176 use -Os to compile target libraries rather than -O2. Default to
11177 using -Os for d10v and m32r if --{enable,disable}-target-optspace is
11178 not used.
11179 * configure.in (target_cflags): Ditto for d30v.
11180
11181 Tue Apr 21 23:06:54 1998 Tom Tromey <tromey@cygnus.com>
11182
11183 * Makefile.in (all-bfd): Depend on all-intl.
11184 (all-binutils): Likewise.
11185 (all-gas): Likewise.
11186 (all-gprof): Likewise.
11187 (all-ld): Likewise.
11188
11189 1998-04-19 Brendan Kehoe <brendan@cygnus.com>
11190
11191 * configure.in (host_tools): Fix typo, lbtool -> libtool.
11192
11193 Fri Apr 17 16:20:42 1998 Ian Lance Taylor <ian@cygnus.com>
11194
11195 * Makefile.in (all-bfd): Depend upon all-libiberty.
11196
11197 * ltconfig, ltmain.sh: Bring in newer cygwin32 support.
11198
11199 Fri Apr 17 12:22:22 1998 Bob Manson <manson@charmed.cygnus.com>
11200
11201 * Makefile.in: Add libstub.
11202
11203 * configure.in: Ditto. Build libstub for targets that have cygmon
11204 support.
11205
11206 Tue Apr 14 18:01:55 1998 Ian Lance Taylor <ian@cygnus.com>
11207
11208 * configure.in: Don't set PICFLAG on ix86-cygwin32.
11209
11210 Tue Apr 14 12:24:45 1998 J. Kean Johnston <jkj@sco.com>
11211
11212 * configure.in: Recognise i[3456]96-*-sysv5* as a valid host, and
11213 use mh-sysv5 if specified. Support gprof on SCO Open Server.
11214
11215 Tue Apr 14 11:33:51 1998 Krister Walfridsson <cato@df.lth.se>
11216
11217 * configure: Define DEFAULT_M4 by searching PATH.
11218 * Makfile.in: Use DEFAULT_M4.
11219
11220 Mon Apr 13 15:37:24 1998 Ian Lance Taylor <ian@cygnus.com>
11221
11222 * ltconfig: Add cygwin32 support.
11223
11224 * Makefile.in, configure.in: Add libtool as a native only directory
11225 to configure and build.
11226
11227 Sun Apr 12 20:58:46 1998 Jeffrey A Law (law@cygnus.com)
11228
11229 * Makefile.in (INSTALL_MODULES): Remove texinfo.
11230
11231 Wed Apr 8 13:18:56 1998 Philippe De Muyter <phdm@macqel.be>
11232
11233 * Makefile.in (EXTRA_GCC_FLAGS): XFOO lines shortened.
11234
11235 Thu Apr 2 14:48:44 1998 Geoffrey Noer <noer@cygnus.com>
11236
11237 * Makefile.in: add ash make rules
11238 * configure.in: add ash to native_only and host_tools lists
11239
11240 Thu Mar 26 12:53:20 1998 Tom Tromey <tromey@cygnus.com>
11241
11242 * Makefile.in (all-gettext, all-intl): New targets.
11243 (ALL_MODULES): Added all-gettext, all-intl.
11244 (CROSS_CHECK_MODULES): Added check-gettext, check-intl.
11245 (INSTALL_MODULES): Added install-gettext, install-intl.
11246 (CLEAN_MODULES): Added clean-gettext, clean-intl.
11247
11248 * configure.in (host_tools): Added gettext.
11249 (native_only): Likewise.
11250 (noconfigdirs) [various cases]: Likewise.
11251 (host_libs): Added intl.
11252
11253 Thu Mar 26 15:00:11 1998 Keith Seitz <keiths@onions.cygnus.com>
11254
11255 * configure: Do not disable building gdbtk for cygwin32 hosts.
11256
11257 Wed Mar 25 10:04:18 1998 Nick Clifton <nickc@cygnus.com>
11258
11259 * configure.in: Add thumb-coff target.
11260 * config.sub: Add thumb-coff target.
11261
11262 Wed Mar 25 11:49:12 1998 Jason Molenda (crash@bugshack.cygnus.com)
11263
11264 * Makefile.in: Revert yesterday's change.
11265 (all-target-winsup): all-target-librx stays out of here.
11266
11267 Tue Mar 24 16:58:29 1998 Jason Molenda (crash@bugshack.cygnus.com)
11268
11269 * Makefile.in (TARGET_CONFIGDIRS, ALL_TARGET_MODULES,
11270 CONFIGURE_TARGET_MODULES, CHECK_TARGET_MODULES,
11271 INSTALL_TARGET_MODULES, CLEAN_TARGET_MODULES, all-target-winsup):
11272 Remove references to librx and libg++.
11273
11274 Tue Mar 24 18:28:12 1998 Eric Mumpower <nocturne@cygnus.com>
11275
11276 * Makefile.in (BASE_FLAGS_TO_PASS): Pass $(lispdir) down to
11277 recursive makes
11278
11279 Tue Mar 24 11:37:45 1998 Ian Lance Taylor <ian@cygnus.com>
11280
11281 * Makefile.in (CC_FOR_TARGET): Use $(TARGET_SUBDIR) when passing -B
11282 for newlib directory.
11283 (CXX_FOR_TARGET): Likewise.
11284
11285 Mon Mar 23 11:30:21 1998 Jeffrey A Law (law@cygnus.com)
11286
11287 * ltconfig: Update after libtool/ltconfig.in change for
11288 hpux11.
11289
11290 Fri Mar 20 18:51:43 1998 Ian Lance Taylor <ian@cygnus.com>
11291
11292 * ltconfig, ltmain.sh: Update to libtool 1.2.
11293
11294 Fri Mar 20 09:32:14 1998 Manfred Hollstein <manfred@s-direktnet.de>
11295
11296 * Makefile.in (install-gcc): Don't specify LANGUAGES here.
11297 (install-gcc-cross): Instead, override LANGUAGES here.
11298
11299 1998-03-18 Dave Love <d.love@dl.ac.uk>
11300
11301 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): Set CONFIG_SITE to a
11302 non-existent file since /dev/null loses with bash 2.0/autoconf 2.12.
11303
11304 Wed Mar 18 09:24:59 1998 Nick Clifton <nickc@cygnus.com>
11305
11306 * configure.in: Add Thumb-pe target.
11307
11308 Tue Mar 17 16:59:00 1998 Syd Polk <spolk@cygnus.com>
11309
11310 * Makefile.in - changed sn targets to snavigator
11311 * configure.in - changed sn targets to snavigator
11312
11313 Tue Mar 17 10:33:28 1998 Manfred Hollstein <manfred@s-direktnet.de>
11314
11315 * config-ml.in: After building symlink tree call make distclean
11316 if a Makefile got linked into ${ml_dir}/${ml_libdir}; this happens
11317 to be the case for libiberty.
11318
11319 Tue Mar 17 10:22:37 1998 H.J. Lu (hjl@gnu.ai.mit.edu)
11320
11321 * configure: When making link, also check the current
11322 directory. The configure scripts may create one.
11323
11324 Fri Mar 6 01:02:03 1998 Richard Henderson <rth@cygnus.com>
11325
11326 * config.sub: Accept alphapca56 and alphaev6 properly.
11327
11328 Fri Mar 6 00:14:55 1998 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
11329
11330 * configure.in: Revert 3 Jan change for powerpc-linux-gnulibc1.
11331
11332 Mon Feb 23 15:09:18 1998 Bruno Haible <bruno@linuix.mathematik.uni-karlsruhe.de
11333
11334 * config.sub (sco5): Fix typo.
11335
11336 Mon Feb 23 14:46:06 1998 Ian Lance Taylor <ian@cygnus.com>
11337
11338 * Makefile.in (INSTALL_MODULES): Move install-tcl before
11339 install-itcl.
11340 (install-itcl): Remove dependency on install-tcl.
11341
11342 Mon Feb 23 09:53:28 1998 Mark Alexander <marka@cygnus.com>
11343
11344 * configure.in: Remove libgloss from noconfigdirs for MN10300.
11345
11346 Thu Feb 19 13:40:41 1998 Ian Lance Taylor <ian@cygnus.com>
11347
11348 * configure.in: Don't build libgui for a cygwin32 target when not on
11349 a cygwin32 host.
11350
11351 Wed Feb 18 12:29:00 1998 Jason Molenda (crash@bugshack.cygnus.com)
11352
11353 * configure (redirect): Set to null, so default behavior of
11354 configure is now --verbose.
11355
11356 1998-02-16 Dave Love <d.love@dl.ac.uk>
11357
11358 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): Run configure with
11359 CONFIG_SITE=/dev/null to forestall lossage with site configuration.
11360
11361 Mon Feb 16 12:23:53 1998 Manfred Hollstein <Manfred.Hollstein@ks.sel.alcatel.de>
11362
11363 * Makefile.in (BASE_FLAGS_TO_PASS, EXTRA_TARGET_FLAGS): Really add
11364 this change to sync Makefile.in with its ChangeLog entries.
11365
11366 Thu Feb 12 15:03:08 1998 H.J. Lu <hjl@gnu.org>
11367
11368 * ltmain.sh (mkdir): Check that the directory doesn't exist
11369 before we exit with error, so that we don't get races during
11370 parallel builds.
11371
11372 Sat Feb 7 15:19:18 1998 Ian Lance Taylor <ian@cygnus.com>
11373
11374 * ltconfig, ltmain.sh: Update from libtool 1.0i.
11375
11376 Fri Feb 6 01:33:52 1998 Manfred Hollstein <manfred@s-direktnet.de>
11377
11378 * Makefile.in (BASE_FLAGS_TO_PASS): Don't pass PICFLAG and
11379 PICFLAG_FOR_TARGET.
11380 (EXTRA_TARGET_FLAGS): Don't pass PICFLAG_FOR_TARGET.
11381
11382 * configure: Emit a definition for the new macro enable_shared
11383 into each Makefile.
11384
11385 Thu Feb 5 17:01:12 1998 Jason Molenda (crash@bugshack.cygnus.com)
11386
11387 * configure.in (host_tools, native_only): Add libtool.
11388
11389 Wed Feb 4 16:53:58 1998 Geoffrey Noer <noer@cygnus.com>
11390
11391 * configure.in: add target-gperf to noconfigdirs for Cygwin32.
11392 Fix typo in ming config comment.
11393
11394 Wed Feb 4 18:56:13 1998 Ian Lance Taylor <ian@cygnus.com>
11395
11396 * ltconfig, ltmain.sh: Update from libtool 1.0h.
11397
11398 Mon Feb 2 19:38:19 1998 Ian Lance Taylor <ian@cygnus.com>
11399
11400 * config.sub: Add tic30 cases, and map c30 to tic30.
11401
11402 Sun Feb 1 02:40:41 1998 Richard Henderson <rth@cygnus.com>
11403
11404 * Makefile.in (TARGET_CONFIGDIRS): Add libf2c.
11405 (ALL_TARGET_MODULES, CONFIGURE_TARGET_MODULES): Similarly
11406 (CHECK_TARGET_MODULES, INSTALL_TARGET_MODULES): Similarly
11407 (CLEAN_TARGET_MODULES): Similarly
11408 (all-target-libf2c): Add dependences.
11409 * configure.in (target_libs): Add libf2c.
11410
11411 Fri Jan 30 17:18:32 1998 Geoffrey Noer <noer@cygnus.com>
11412
11413 * configure.in: Remove expect from noconfigdirs when target
11414 is cygwin32. OK to build expect and dejagnu with Canadian
11415 Cross.
11416
11417 Wed Jan 28 12:58:49 1998 Ian Lance Taylor <ian@cygnus.com>
11418
11419 * configure.in: Do build expect, dejagnu, and cvssrc for a cygwin32
11420 host.
11421
11422 * config.guess: Use ${UNAME_MACHINE} rather than i386 for cygwin32
11423 and mingw32.
11424
11425 Wed Jan 28 10:26:37 1998 Manfred Hollstein <manfred@s-direktnet.de>
11426
11427 * Makefile.in (BASE_FLAGS_TO_PASS): Remove passing $(local_prefix)
11428 here as it is not defined in the toplevel Makefile.
11429
11430 Tue Jan 27 23:25:06 1998 Manfred Hollstein <manfred@s-direktnet.de>
11431
11432 * configure (package_makefile_rules_frag): New variable, which names
11433 a file with generic rules, ...
11434 Change comment to mention we now have FIVE parts.
11435 * configure: Undo last change.
11436
11437 Tue Jan 27 23:15:55 1998 Lassi A. Tuura <lat@iki.fi>
11438
11439 * config.guess: More accurate determination of HP processor types.
11440 * config.sub: More accurate determination of HP processor types.
11441
11442 Sat Jan 24 01:59:45 1998 Manfred Hollstein <manfred@s-direktnet.de>
11443
11444 * configure (package_makefile_frag): Move inserting the
11445 ${package_makefile_frag} to where it should be according
11446 to the comment.
11447
11448 Fri Jan 23 00:29:28 1998 Philip Blundell <pb@nexus.co.uk>
11449
11450 * config.guess: Add support for Linux/ARM.
11451
11452 Thu Jan 22 15:14:01 1998 Fred Fish <fnf@cygnus.com>
11453
11454 * .cvsignore: Remove *-info and *-install since they match
11455 release-info and mpw-install, which we don't want to just ignore.
11456
11457 Thu Jan 22 01:38:33 1998 Richard Henderson <rth@cygnus.com>
11458
11459 * configure.in: Revert 3 Jan change for alpha-linux-gnulibc1.
11460
11461 Sat Jan 17 21:28:08 1998 Pieter Nagel <pnagel@epiuse.co.za>
11462
11463 * Makefile.in (FLAGS_TO_PASS): Pass down gcc_include_dir and
11464 local_prefix to sub-make invocations.
11465
11466 Sat Jan 17 21:04:59 1998 H.J. Lu (hjl@gnu.org)
11467
11468 * configure.in: Check makefile fragments in the source
11469 directory.
11470
11471 Fri Jan 16 00:41:37 1998 Alexandre Oliva <oliva@dcc.unicamp.br>
11472
11473 * configure.in: Check whether host and target makefile
11474 fragments exist before adding them to *_makefile_frag.
11475
11476 Wed Jan 14 23:39:10 1998 Bob Manson <manson@charmed.cygnus.com>
11477
11478 * configure.in (target_configdirs): Add cygmon for sparc64-elf.
11479
11480 Wed Jan 14 12:48:07 1998 Keith Seitz <keiths@pizza.cygnus.com>
11481
11482 * configure.in: Make sure we only replace RPATH_ENVVAR on
11483 lines which begin with RPATH_ENVVAR, i.e. add "^" to the
11484 regexp to sed.
11485
11486 * Makefile.in (BASE_FLAGS_TO_PASS): Pass RRPATH_ENVVAR down
11487 to sub-makes.
11488
11489 1998-01-13 Lee Iverson (leei@ai.sri.com)
11490
11491 * config-ml.in (multi-do): LDFLAGS must include multilib
11492 designator.
11493
11494 Tue Jan 13 01:13:24 1998 Robert Lipe (robertl@dgii.com)
11495
11496 * config.guess: Recognize i[3456]-i586-UnixWare7-sysv5.
11497
11498 Sun Jan 4 01:06:55 1998 Mumit Khan <khan@xraylith.wisc.edu>
11499
11500 * config.sub: Add mingw32 support.
11501 * configure.in: Likewise.
11502
11503 Sat Jan 3 12:11:05 1998 Franz Sirl <franz.sirl-kernel@lauterbach.com>
11504
11505 * configure.in: Finalize support for {alpha|powerpc}*-*-linux-gnulibc1
11506
11507 Sun Dec 28 11:28:58 1997 Jeffrey A Law (law@cygnus.com)
11508
11509 * Makefile.in (INSTALL_TARGET): Do install-gcc first.
11510 * configure (gxx_include_dir): Provide a definition for subdirs
11511 which do not use autoconf.
11512
11513 Wed Dec 24 22:46:55 1997 Jeffrey A Law (law@cygnus.com)
11514
11515 * config.guess: Sync with egcs. Picks up new alpha support,
11516 BeOS & some additional linux support.
11517
11518 Tue Dec 23 12:44:24 1997 Jeffrey A Law (law@cygnus.com)
11519
11520 * config.guess: HP 9000/803 is a PA1.1 machine.
11521
11522 Mon Dec 22 02:39:24 1997 Richard Henderson <rth@cygnus.com>
11523
11524 * configure.in: It's alpha*-...
11525
11526 Sun Dec 21 16:53:12 1997 H.J. Lu (hjl@gnu.ai.mit.edu)
11527
11528 * configure.in (host_makefile_frag, target_makefile_frag):
11529 Handle multiple config files.
11530 (alpha-*-linux*): Treat alpha-*-linux* as alpha-*-linux* and
11531 alpha-*-*.
11532
11533 Thu Dec 18 13:13:03 1997 Doug Evans <devans@canuck.cygnus.com>
11534
11535 * mkdep: New file.
11536
11537 Wed Dec 17 09:53:02 1997 Michael Meissner <meissner@cygnus.com>
11538
11539 * configure.in (d30v-*-*): Allow configuring of libide, vmake, etc.
11540
11541 Tue Dec 16 17:36:05 1997 Ian Lance Taylor <ian@cygnus.com>
11542
11543 * Makefile.in: Add libgui directory.
11544 (GDB_TK): Add all-libgui.
11545 * configure.in: Add libgui directory.
11546 * configure: Add all-libgui to GDB_TK.
11547
11548 Mon Dec 15 16:12:28 1997 Nick Clifton <nickc@cygnus.com>
11549
11550 * config-ml.in (multidirs): Add m32r to multilib list.
11551
11552 Fri Dec 12 10:43:31 1997 Brendan Kehoe <brendan@canuck.cygnus.com>
11553
11554 * Makefile.in (all-target-gperf): Change dependency to
11555 all-target-libstdc++.
11556
11557 Thu Dec 11 23:30:51 1997 Fred Fish <fnf@ninemoons.com>
11558
11559 * config.guess: Add BeOS support.
11560
11561 Wed Dec 10 15:10:38 1997 Ian Lance Taylor <ian@cygnus.com>
11562
11563 Source directory cvs renamed to cvssrc:
11564 * configure.in (host_tools): Change cvs to cvssrc.
11565 (native_only): Likewise.
11566 (noconfigdirs) [various cases]: Likewise.
11567 * Makefile.in (ALL_MODULES): Change all-cvs to all-cvssrc.
11568 (CROSS_CHECK_MODULES): Change check-cvs to check-cvssrc.
11569 (INSTALL_MODULES): Change install-cvs to install-cvssrc.
11570 (CLEAN_MODULES): Change clean-cvs to clean-cvssrc.
11571 (all-cvssrc): Rename target from all-cvs.
11572
11573 Wed Dec 3 07:55:59 1997 Jeffrey A Law (law@cygnus.com)
11574
11575 * configure (gxx_include_dir): Fix thinko.
11576
11577 Tue Dec 2 10:55:34 1997 Jeffrey A Law (law@cygnus.com)
11578
11579 * Makefile.in (INSTALL_TARGET_CROSS): Define.
11580 (install-cross, install-gcc-cross): New targets.
11581
11582 Tue Dec 2 10:08:31 1997 Nick Clifton <nickc@cygnus.com>
11583
11584 * configure.in (noconfigdirs): Add support for Thumb target.
11585
11586 * config.sub (maybe_os): Add support for Thumb target.
11587
11588 Sun Nov 30 16:12:27 1997 Bob Manson <manson@charmed.cygnus.com>
11589
11590 * Makefile.in: Add rules for cygmon.
11591
11592 * configure.in: Build cygmon for sparc-elf and sparclite-aout.
11593
11594 Thu Nov 27 01:31:30 1997 Jeffrey A Law (law@cygnus.com)
11595
11596 * Makefile.in (INSTALL_TARGET): Do install-gcc first.
11597 * configure (gxx_include_dir): Provide a definition for subdirs
11598 which do not use autoconf.
11599
11600 Wed Nov 26 11:53:33 1997 Keith Seitz <keiths@onions.cygnus.com>
11601
11602 * Makefile.in, configure, configure.in, ChangeLog: merge with foundry's
11603 11/18/97 build
11604
11605 Wed Nov 26 16:08:50 1997 Jeffrey A Law (law@cygnus.com)
11606
11607 * From Franz Sirl.
11608 * config.guess (powerpc*-*-linux): Handle glibc2 beta release
11609 found on RedHat Linux systems.
11610
11611 Fri Nov 21 09:51:01 1997 Jeffrey A Law (law@cygnus.com)
11612
11613 * config.guess (alpha stuff): Merge with FSF to avoid incorrect
11614 guesses.
11615
11616 Thu Nov 13 11:38:37 1997 Jeffrey A Law (law@cygnus.com)
11617
11618 * configure.in (i[3456]86-ncr-sysv4.3*): Tweak.
11619
11620 Mon Nov 10 15:23:21 1997 H.J. Lu <hjl@gnu.ai.mit.edu>
11621
11622 * ltmain.sh: If mkdir fails, check whether the directory was created
11623 anyhow by some other process.
11624
11625 Mon Nov 10 14:38:03 1997 Michael Meissner <meissner@cygnus.com>
11626
11627 * configure.in (d30v-*-*): Configure all directories.
11628
11629 Sun Nov 9 17:36:20 1997 Michael Meissner <meissner@cygnus.com>
11630
11631 * configure.in (d30v-*-*): Configure newlib, libiberty directories
11632 for the D30V.
11633
11634 Sat Nov 8 14:42:59 1997 Michael Meissner <meissner@cygnus.com>
11635
11636 * configure.in (d30v-*-*): Configure target-libgloss on the D30V.
11637
11638 Fri Nov 7 10:34:09 1997 Rob Savoye <rob@darkstar.cygnus.com>
11639
11640 * include/libiberty.h: Add extern "C" { so it can be used with C++
11641 progrms.
11642 * include/remote-sim.h: Add extern "C" { so it can be used with C++
11643 programs.
11644
11645 Thu Oct 30 11:09:29 1997 Michael Meissner <meissner@cygnus.com>
11646
11647 * configure.in (d30v-*-*): Configure GCC now.
11648
11649 Mon Oct 27 13:17:24 1997 Stan Shebs <shebs@andros.cygnus.com>
11650
11651 * configure.in: Remove a "second pass" of tweaking noconfigdirs,
11652 is no longer needed.
11653
11654 Mon Oct 27 12:03:53 1997 Jason Merrill <jason@yorick.cygnus.com>
11655
11656 * Makefile.in: check-target-libio depends on all-target-libstdc++.
11657
11658 Sun Oct 26 11:48:27 1997 Manfred Hollstein (manfred@s-direktnet.de)
11659
11660 * Makefile.in (bootstrap-lean): Combined with `normal' bootstrap
11661 targets using "$@" to provide support for similar but not identical
11662 targets without having to duplicate code.
11663
11664 Mon Oct 20 15:28:49 1997 Klaus K"ampf <kkaempf@progis.de>
11665
11666 * makefile.vms: Fix to work with DEC C.
11667
11668 Tue Oct 7 23:58:57 1997 Gavin Koch <gavin@cygnus.com>
11669
11670 * config.sub: Add mips-tx39-elf to marketing names.
11671
11672 Tue Oct 7 14:24:41 1997 Ian Lance Taylor <ian@cygnus.com>
11673
11674 * ltmain.sh: Handle symlinks in generated script.
11675
11676 Wed Oct 1 13:11:27 1997 Ian Lance Taylor <ian@cygnus.com>
11677
11678 * configure: Handle autoconf style directory options: --bindir,
11679 --datadir, --includedir, --infodir, --libdir, --libexecdir,
11680 --mandir, --oldincludedir, --sbindir, --sharedstatedir,
11681 --sysconfdir.
11682 * Makefile.in (sbindir, libexecdir, sysconfdir): New variables.
11683 (sharedstatedir, localstatedir, oldincludedir): New variables.
11684 (BASE_FLAGS_TO_PASS): Pass down bindir, datadir, includedir,
11685 infodir, libdir, libexecdir, localstatedir, mandir, oldincludedir,
11686 sbindir, sharedstatedir, and sysconfdir.
11687
11688 Mon Sep 29 00:38:08 1997 Aaron Jackson <jackson@negril.msrce.howard.edu>
11689
11690 * Makefile.in (bootstrap-lean): New target.
11691
11692 Wed Sep 24 18:06:27 1997 Stu Grossman <grossman@babylon-5.cygnus.com>
11693
11694 * configure.in (d30v): Remove tcl, tk, expect, gdb, itcl, tix, db,
11695 sn, and gnuserv from noconfigdirs.
11696
11697 Wed Sep 24 15:18:32 1997 Ian Lance Taylor <ian@cygnus.com>
11698
11699 * ltmain.sh: Tweak shell pattern to avoid bug in NetBSD /bin/sh.
11700
11701 Thu Sep 18 23:58:27 1997 Jeffrey A Law (law@cygnus.com)
11702
11703 * Makefile.in (cross): New target.
11704
11705 Thu Sep 18 21:43:23 1997 Alexandre Oliva <oliva@dcc.unicamp.br>
11706 Jeff Law <law@cygnus.com>
11707
11708 * Makefile.in (bootstrap2, bootstrap3): New targets.
11709 (all-bootstrap): Remove outdated and confusing target.
11710 (bootstrap, bootstrap2, bootstrap3): Don't pass BOOT_CFLAGS down.
11711
11712 Thu Sep 18 15:37:42 1997 Andrew Cagney <cagney@b1.cygnus.com>
11713
11714 * configure (tooldir): enable_gdbtk=YES for cygwin32, NO for
11715 windows. Consistent with gdb/configure.
11716
11717 1997-09-15 02:37 Ulrich Drepper <drepper@cygnus.com>
11718
11719 * configure.in: Name Linux target fragment.
11720
11721 * configure: Rewrite so that project Makefile fragment is inserted
11722 first and appears last in the resulting Makefile.
11723
11724 Tue Sep 16 09:55:07 1997 Andrew Cagney <cagney@b1.cygnus.com>
11725
11726 * Makefile.in (install-itcl): Install tcl first.
11727
11728 Fri Sep 12 16:19:20 1997 Geoffrey Noer <noer@cygnus.com>
11729
11730 * configure.in: remove bison from noconfigdirs for Cygwin32 host
11731
11732 Thu Sep 11 16:40:46 1997 H.J. Lu (hjl@gnu.ai.mit.edu)
11733
11734 * Makefile.in (local-distclean): Also remove mh-frag mt-frag.
11735
11736 * configure.in (skipdirs): Add target-librx for Linux.
11737 (alpha-*-linux*): Use config/mh-elfalphapic and config/mt-elfalphapic.
11738
11739 Wed Sep 10 21:29:54 1997 Jeffrey A Law (law@cygnus.com)
11740
11741 * Makefile.in (bootstrap): New target.
11742
11743 Wed Sep 10 15:19:22 1997 Jeffrey A Law (law@cygnus.com)
11744
11745 * config.sub: Accept 'amigados' for backward compatability.
11746
11747 Mon Sep 8 20:46:20 1997 Ian Lance Taylor <ian@cygnus.com>
11748
11749 * config.guess: Merge with FSF.
11750
11751 Sun Sep 7 23:18:32 1997 Fred Fish <fnf@ninemoons.com>
11752
11753 * config.sub: Change 'amigados' to 'amigaos' to match current usage.
11754
11755 Sun Sep 7 15:55:28 1997 Gavin Koch <gavin@cygnus.com>
11756
11757 * config.sub: Add "marketing-names" patch.
11758
11759 Fri Sep 5 16:11:28 1997 Joel Sherrill (joel@OARcorp.com)
11760
11761 * configure.in (*-*-rtems*): Do not build libgloss for rtems.
11762
11763 Fri Sep 5 12:27:17 1997 Jeffrey A Law (law@cygnus.com)
11764
11765 * config.sub: Handle v850-elf.
11766
11767 Wed Sep 3 22:01:58 1997 Fred Fish <fnf@ninemoons.com>
11768
11769 * .cvsignore (*-install): Remove.
11770
11771 Wed Sep 3 12:15:24 1997 Chris Provenzano <proven@cygnus.com>
11772
11773 * ltconfig: Set CONFIG_SHELL in libtool.
11774 * ltmain.sh: Use CONFIG_SHELL instead of /bin/sh
11775
11776 Mon Sep 1 16:45:44 1997 Jim Wilson <wilson@cygnus.com>
11777
11778 * configure.in (target_subdir): Set to libraries if enable_multilib.
11779
11780 Wed Aug 27 16:15:11 1997 Jim Wilson <wilson@cygnus.com>
11781
11782 * config.guess: Update from gcc directory.
11783
11784 Tue Aug 26 16:46:46 1997 Andrew Cagney <cagney@b1.cygnus.com>
11785
11786 * Makefile.in (all-sim): Depends on all-readline.
11787
11788 Wed Aug 20 19:57:37 1997 Jason Merrill <jason@yorick.cygnus.com>
11789
11790 * Makefile.in (BISON, YACC): Use $$s.
11791 (all-bison): Depend on all-texinfo.
11792
11793 Tue Aug 19 01:41:32 1997 Jason Merrill <jason@yorick.cygnus.com>
11794
11795 * Makefile.in (BISON): Add -L flag.
11796 (YACC): Likewise.
11797
11798 Mon Aug 18 11:30:50 1997 Nick Clifton <nickc@cygnus.com>
11799
11800 * configure.in (noconfigdirs): Add support for v850e target.
11801
11802 * config.sub (maybe_os): Add support for v850e target.
11803
11804 Mon Aug 18 11:30:50 1997 Nick Clifton <nickc@cygnus.com>
11805
11806 * configure.in (noconfigdirs): Add support for v850ea target.
11807
11808 * config.sub (maybe_os): Add support for v850ea target.
11809
11810 Mon Aug 18 09:24:06 1997 Gavin Koch <gavin@cygnus.com>
11811
11812 * config.sub: Add mipstx39. Delete r3900.
11813
11814 Mon Aug 18 17:20:10 1997 Jason Molenda (crash@godzilla.cygnus.co.jp)
11815
11816 * Makefile.in (all-autoconf): Depends on all-texinfo.
11817
11818 Fri Aug 15 23:09:26 1997 Michael Meissner <meissner@cygnus.com>
11819
11820 * config-ml.in ({powerpc,rs6000}*-*-*): Update to current AIX and
11821 eabi targets.
11822
11823 Thu Aug 14 14:42:17 1997 Ian Lance Taylor <ian@cygnus.com>
11824
11825 * configure: Get CFLAGS and CXXFLAGS from Makefile, if possible.
11826
11827 * configure: When handling a Canadian Cross, handle YACC as well as
11828 BISON. Just set BISON to bison. When setting YACC, prefer bison.
11829 * Makefile.in (all-bison): Depend upon all-texinfo.
11830
11831 Tue Aug 12 20:09:48 1997 Jason Merrill <jason@yorick.cygnus.com>
11832
11833 * Makefile.in (BISON): bison, not byacc or bison -y.
11834 (YACC): bison -y or byacc or yacc.
11835 (various): Add *-bison as appropriate.
11836 (taz): No need to mess with BISON anymore.
11837
11838 Tue Aug 12 22:33:08 1997 Ian Lance Taylor <ian@cygnus.com>
11839
11840 * configure: If OSTYPE matches *win32*, try to find a good value for
11841 CONFIG_SHELL.
11842
11843 Sun Aug 10 14:41:11 1997 Ian Lance Taylor <ian@cygnus.com>
11844
11845 * Makefile.in (taz): Get the version number from AM_INIT_AUTOMAKE in
11846 configure.in if it is present.
11847
11848 Sat Aug 9 00:58:01 1997 Ian Lance Taylor <ian@cygnus.com>
11849
11850 * Makefile.in (LD_FOR_TARGET): Change ld.new to ld-new.
11851
11852 Fri Aug 8 16:30:13 1997 Doug Evans <dje@canuck.cygnus.com>
11853
11854 * config.sub: Recognize `arc' cpu.
11855 * configure.in: Likewise.
11856 * config-ml.in: Likewise.
11857
11858 Thu Aug 7 11:02:34 1997 Ian Lance Taylor <ian@cygnus.com>
11859
11860 * Makefile.in ($(INSTALL_X11_MODULES)): Depend upon installdirs.
11861
11862 Wed Aug 6 16:27:29 1997 Chris Provenzano <proven@cygnus.com>
11863
11864 * configure: Changed sed delimiter from ':' to '|' when
11865 attempting to substitute ${config_shell} for SHELL. On
11866 NT ${config_shell} may contain a ':' in it.
11867
11868 Wed Aug 6 12:29:05 1997 Jason Merrill <jason@yorick.cygnus.com>
11869
11870 * Makefile.in (EXTRA_GCC_FLAGS): Fix for non-bash shells.
11871
11872 Wed Aug 6 00:42:35 1997 Ian Lance Taylor <ian@cygnus.com>
11873
11874 * Makefile.in (AS_FOR_TARGET): Change as.new to as-new.
11875
11876 Tue Aug 5 14:08:51 1997 Ian Lance Taylor <ian@cygnus.com>
11877
11878 * Makefile.in (NM_FOR_TARGET): Change nm.new to nm-new.
11879
11880 * ylwrap: If the program is a relative path, force it to be
11881 absolute.
11882
11883 Tue Aug 5 12:12:44 1997 Andrew Cagney <cagney@b1.cygnus.com>
11884
11885 * configure (tooldir): Set BISON to `bison -y' and not just bison.
11886
11887 Mon Aug 4 22:59:02 1997 Andrew Cagney <cagney@b1.cygnus.com>
11888
11889 * Makefile.in (CC_FOR_TARGET): When winsup/Makefile present,
11890 correctly specify the target build directory $(TARGET_SUBDIR)/winsup
11891 for libraries.
11892
11893 Mon Aug 4 12:40:24 1997 Jason Merrill <jason@yorick.cygnus.com>
11894
11895 * Makefile.in (EXTRA_GCC_FLAGS): Fix handling of macros with values
11896 separated by spaces.
11897
11898 Thu Jul 31 19:49:49 1997 Ian Lance Taylor <ian@cygnus.com>
11899
11900 * ylwrap: New file.
11901 * Makefile.in (DEVO_SUPPORT): Add ylwrap.
11902
11903 * ltmain.sh: Handle /bin/sh at start of install program.
11904
11905 * Makefile.in (DEVO_SUPPORT): Add ltconfig, ltmain.sh, and missing.
11906
11907 * ltconfig, ltmain.sh: New files, from libtool 1.0.
11908 * missing: New file, from automake 1.2.
11909
11910 Thu Jul 24 12:57:56 1997 Ian Lance Taylor <ian@cygnus.com>
11911
11912 * Makefile.in: Treat tix like tk, putting it in X11_MODULES. Add
11913 check-tk to CHECK_X11_MODULES.
11914
11915 Wed Jul 23 17:03:29 1997 Ian Lance Taylor <ian@cygnus.com>
11916
11917 * config.sub: Merge with FSF.
11918
11919 Tue Jul 22 19:08:29 1997 Ian Lance Taylor <ian@cygnus.com>
11920
11921 * config.guess: Merge with FSF.
11922
11923 Tue Jul 22 14:50:42 1997 Robert Hoehne <robert.hoehne@Mathematik.TU-Chemnitz.DE>
11924
11925 * configure: Treat msdosdjgpp like go32.
11926 * configure.in: Likewise. Don't remove gprof for go32.
11927
11928 * configure: Change Makefile.tem2 to Makefile.tm2.
11929
11930 Mon Jul 21 10:31:26 1997 Stephen Peters <speters@cygnus.com>
11931
11932 * configure.in (noconfigdirs): For alpha-dec-osf*, don't ignore grep.
11933
11934 Tue Jul 15 14:33:03 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
11935
11936 * install-sh (chmodcmd): Set to null if the DST directory already
11937 exists. Same as Nov 11th change.
11938
11939 Mon Jul 14 11:01:15 1997 Martin M. Hunt <hunt@cygnus.com>
11940
11941 * configure (GDB_TK): Needs itcl and tix.
11942
11943 Mon Jul 14 00:32:10 1997 Jason Merrill <jason@yorick.cygnus.com>
11944
11945 * config.guess: Update from FSF.
11946
11947 Fri Jul 11 11:57:11 1997 Martin M. Hunt <hunt@cygnus.com>
11948
11949 * Makefile.in (GDB_TK): Depend on itcl and tix.
11950
11951 Fri Jul 4 13:25:31 1997 Ian Lance Taylor <ian@cygnus.com>
11952
11953 * Makefile.in (INSTALL_PROGRAM_ARGS): New variable.
11954 (INSTALL_PROGRAM): Use $(INSTALL_PROGRAM_ARGS).
11955 (INSTALL_SCRIPT): New variable.
11956 (BASE_FLAGS_TO_PASS): Pass down INSTALL_SCRIPT.
11957 * configure.in: If host is *-*-cygwin32*, set INSTALL_PROGRAM_ARGS
11958 to -x.
11959 * install-sh: Add support for -x option.
11960
11961 Mon Jun 30 15:51:30 1997 Ian Lance Taylor <ian@cygnus.com>
11962
11963 * configure.in, Makefile.in: Treat tix like itcl.
11964
11965 Thu Jun 26 13:59:19 1997 Ian Lance Taylor <ian@cygnus.com>
11966
11967 * Makefile.in (WINDRES): New variable.
11968 (WINDRES_FOR_TARGET): New variable.
11969 (BASE_FLAGS_TO_PASS): Add WINDRES_FOR_TARGET.
11970 (EXTRA_HOST_FLAGS): Add WINDRES.
11971 (EXTRA_TARGET_FLAGS): Add WINDRES.
11972 (EXTRA_GCC_FLAGS): Add WINDRES.
11973 ($(DO_X)): Pass down WINDRES.
11974 ($(CONFIGURE_TARGET_MODULES)): Set WINDRES when configuring.
11975 * configure: Treat WINDRES like DLLTOOL, and WINDRES_FOR_TARGET like
11976 DLLTOOL_FOR_TARGET.
11977
11978 Wed Jun 25 15:01:26 1997 Felix Lee <flee@cygnus.com>
11979
11980 * configure.in: configure sim before gdb for win32-x-ppc
11981
11982 Wed Jun 25 12:18:54 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
11983
11984 Move gperf into the toplevel, from libg++.
11985 * configure.in (target_tools): Add target-gperf.
11986 (native_only): Add target-gperf.
11987 * Makefile.in (all-target-gperf): New target, depend on
11988 all-target-libg++.
11989 (configure-target-gperf): Empty rule.
11990 (ALL_TARGET_MODULES): Add all-target-gperf.
11991 (CONFIGURE_TARGET_MODULES): Add configure-target-gperf.
11992 (CHECK_TARGET_MODULES): Add check-target-gperf.
11993 (INSTALL_TARGET_MODULES): Add install-target-gperf.
11994 (CLEAN_TARGET_MODULES): Add clean-target-gperf.
11995
11996 Mon Jun 23 10:51:53 1997 Jeffrey A Law (law@cygnus.com)
11997
11998 * config.sub (mn10200): Recognize new basic machine.
11999
12000 Thu Jun 19 14:16:42 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
12001
12002 * configure.in: Don't set ENABLE_MULTILIB, so we'll be passing
12003 --enable-multilib down to subdirs; setting TARGET_SUBDIR was enough.
12004
12005 Tue Jun 17 15:31:20 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
12006
12007 * configure.in: If we're building mips-sgi-irix6* native, turn on
12008 ENABLE_MULTILIB and set TARGET_SUBDIR.
12009
12010 Tue Jun 17 12:20:59 1997 Tom Tromey <tromey@cygnus.com>
12011
12012 * Makefile.in (all-sn): Depend on all-grep.
12013
12014 Mon Jun 16 11:11:10 1997 Ian Lance Taylor <ian@cygnus.com>
12015
12016 * configure.in: Use mh-ppcpic and mt-ppcpic for powerpc*-* targets.
12017
12018 * configure: Set CFLAGS and CXXFLAGS, and substitute them into
12019 Makefile. From Jeff Makey <jeff@cts.com>.
12020 * Makefile.in: Add comment for CFLAGS and CXXFLAGS.
12021
12022 * Makefile.in (DISTBISONFILES): Remove.
12023 (taz): Don't futz with DISTBISONFILES. Change BISON to use
12024 $(DEFAULT_YACC).
12025
12026 * configure.in: Build itl, db, sn, etc., when building for native
12027 cygwin32.
12028
12029 * Makefile.in (LD): New variable.
12030 (EXTRA_HOST_FLAGS): Pass down LD.
12031 ($(DO_X)): Likewise.
12032
12033 Mon Jun 16 11:10:35 1997 Philip Blundell <Philip.Blundell@pobox.com>
12034
12035 * Makefile.in (INSTALL): Use $(SHELL) when executing install-sh.
12036
12037 Fri Jun 13 10:22:56 1997 Bob Manson <manson@charmed.cygnus.com>
12038
12039 * configure.in (targargs): Strip out any supplied --build argument
12040 before adding our own. Always add --build.
12041
12042 Thu Jun 12 21:12:28 1997 Bob Manson <manson@charmed.cygnus.com>
12043
12044 * configure.in (targargs): Pass --build if we're doing
12045 a cross-compile.
12046
12047 Fri Jun 6 21:38:40 1997 Rob Savoye <rob@chinadoll.cygnus.com>
12048
12049 * configure: Use '|' instead of ":" as the separator in
12050 sed. Otherwise sed chokes on NT path names with drive
12051 designators. Also look for "?:*" as the leading characters in an
12052 absolute pathname.
12053
12054 Mon Jun 2 13:05:20 1997 Gavin Koch <gavin@cygnus.com>
12055
12056 * config.sub: Support for r3900.
12057
12058 Wed May 21 17:33:31 1997 Ian Lance Taylor <ian@cygnus.com>
12059
12060 * configure.in: Use install-sh, not install.sh.
12061
12062 Wed May 14 16:06:51 1997 Ian Lance Taylor <ian@cygnus.com>
12063
12064 * Makefile.in (taz): Improve check for BISON so it doesn't try to
12065 apply it twice.
12066
12067 Fri May 9 17:22:05 1997 Ian Lance Taylor <ian@cygnus.com>
12068
12069 * Makefile.in (INSTALL_MODULES): Put install-opcodes before
12070 install-binutils.
12071
12072 Thu May 8 17:29:50 1997 Ian Lance Taylor <ian@cygnus.com>
12073
12074 * Makefile.in: Add automake targets.
12075 * configure.in (host_tools): Add automake.
12076
12077 Tue May 6 15:49:52 1997 Ian Lance Taylor <ian@cygnus.com>
12078
12079 * configure: Default CXX to c++, not gcc.
12080 * Makefile.in (CXX): Set to c++, not gcc.
12081 (CXX_FOR_TARGET): When cross, transform c++, not gcc.
12082
12083 Thu May 1 10:11:43 1997 Geoffrey Noer <noer@cygnus.com>
12084
12085 * install-sh: try appending a .exe if source file doesn't
12086 exist
12087
12088 Wed Apr 30 12:05:36 1997 Jason Merrill <jason@yorick.cygnus.com>
12089
12090 * configure.in: Turn on multilib by default.
12091 (cross_only): Remove target-libiberty.
12092
12093 * Makefile.in (all-gcc): Don't depend on libiberty.
12094
12095 Mon Apr 28 18:39:45 1997 Michael Snyder <msnyder@cleaver.cygnus.com>
12096
12097 * config.guess: improve algorithm for recognizing Gnu Hurd x86.
12098
12099 Thu Apr 24 19:30:07 1997 Ian Lance Taylor <ian@cygnus.com>
12100
12101 * Makefile.in (DEVO_SUPPORT): Add mpw-install.
12102 (DISTBISONFILES): Add ld/Makefile.in
12103
12104 Tue Apr 22 17:17:28 1997 Geoffrey Noer <noer@pizza.cygnus.com>
12105
12106 * configure.in: if target is cygwin32 but host isn't cygwin32,
12107 don't configure gdb tcl tk expect, not just gdb.
12108
12109 Mon Apr 21 13:33:39 1997 Tom Tromey <tromey@cygnus.com>
12110
12111 * configure.in: Added gnuserv everywhere sn appears.
12112
12113 * Makefile.in (ALL_MODULES): Added all-gnuserv.
12114 (CROSS_CHECK_MODULES): Added check-gnuserv.
12115 (INSTALL_MODULES): Added install-gnuserv.
12116 (CLEAN_MODULES): Added clean-gnuserv.
12117 (all-gnuserv): New target.
12118
12119 Thu Apr 17 13:57:06 1997 Per Fogelstrom <pefo@openbsd.org>
12120
12121 * config.guess: Fixes for MIPS OpenBSD systems.
12122
12123 Tue Apr 15 12:21:07 1997 Ian Lance Taylor <ian@cygnus.com>
12124
12125 * Makefile.in (INSTALL_XFORM): Remove.
12126 (BASE_FLAGS_TO_PASS): Remove INSTALL_XFORM.
12127
12128 * mkinstalldirs: New file, copied from automake.
12129 * Makefile.in (installdirs): Rename from install-dirs. Use
12130 mkinstalldirs. Change all users.
12131 (DEVO_SUPPORT): Add mkinstalldirs.
12132
12133 Mon Apr 14 11:21:38 1997 Ian Lance Taylor <ian@cygnus.com>
12134
12135 * install-sh: Rename from install.sh.
12136 * Makefile.in (INSTALL): Change install.sh to install-sh.
12137 (DEVO_SUPPORT): Likewise.
12138
12139 * configure: Use ${config_shell} with ${moveifchange}. From Thomas
12140 Graichen <graichen@rzpd.de>.
12141
12142 Fri Apr 11 16:37:10 1997 Niklas Hallqvist <niklas@appli.se>
12143
12144 * config.guess: Recognize OpenBSD systems correctly.
12145
12146 Fri Apr 11 17:07:04 1997 Jason Molenda (crash@godzilla.cygnus.co.jp)
12147
12148 * README, Makefile.in (ETC_SUPPORT): Remove references to
12149 cfg-paper*, configure.{texi,man,info*}._
12150
12151 Sun Apr 6 18:47:57 1997 Andrew Cagney <cagney@kremvax.cygnus.com>
12152
12153 * Makefile.in (all.normal): Ensure that gcc is built after all
12154 the x11 - ie gdb - targets.
12155
12156 Tue Apr 1 16:28:50 1997 Klaus Kaempf <kkaempf@progis.de>
12157
12158 * makefile.vms: Don't run conf-a-gas.
12159
12160 Mon Mar 31 16:26:55 1997 Joel Sherrill <joel@oarcorp.com>
12161
12162 * configure.in (hppa1.1-*-rtems*): New target, like hppa-*-*elf*.
12163
12164 Sun Mar 30 12:38:27 1997 Fred Fish <fnf@cygnus.com>
12165
12166 * configure.in: Remove noconfigdirs case since gdb also
12167 configures and builds for tic80-coff.
12168
12169 Fri Mar 28 18:28:52 1997 Ian Lance Taylor <ian@cygnus.com>
12170
12171 * configure: Set cache_file to config.cache.
12172 * Makefile.in (local-distclean): Remove config.cache.
12173
12174 Wed Mar 26 18:49:39 1997 Ian Lance Taylor <ian@cygnus.com>
12175
12176 * COPYING: Update FSF address.
12177
12178 Wed Mar 26 10:38:25 1997 Michael Meissner <meissner@cygnus.com>
12179
12180 * configure.in (tic80-*-*): Remove G++ libraries and libgloss from
12181 noconfigdirs.
12182
12183 Mon Mar 24 15:02:39 1997 Ian Lance Taylor <ian@cygnus.com>
12184
12185 * Makefile.in (install-dirs): Don't crash if prefix, and hence
12186 MAKEDIRS, is empty.
12187
12188 Mon Mar 24 12:40:55 1997 Doug Evans <dje@canuck.cygnus.com>
12189
12190 * config.sub: Tweak mn10300 entry.
12191
12192 Fri Mar 21 15:35:27 1997 Michael Meissner <meissner@cygnus.com>
12193
12194 * configure.in (host_tools): Put sim before gdb, so gdb's
12195 configure.tgt can determine if the simulator was configured.
12196
12197 Sun Mar 16 16:07:08 1997 Fred Fish <fnf@cygnus.com>
12198
12199 * config.sub: Move BeOS $os case to be with other Cygnus
12200 local cases.
12201
12202 Sun Mar 16 01:34:55 1997 Martin Hunt <hunt@cygnus.com>
12203
12204 * config.sub: Remove misplaced comment that broke Linux.
12205
12206 Sat Mar 15 22:50:15 1997 Fred Fish <fnf@cygnus.com>
12207
12208 * config.sub: Add BeOS support.
12209
12210 Mon Mar 10 13:30:11 1997 Tom Tromey <tromey@cygnus.com>
12211
12212 * Makefile.in (CHECK_X11_MODULES): Don't run check-tk.
12213
12214 Wed Mar 5 12:09:29 1997 Martin <hunt@cygnus.com>
12215
12216 * configure.in (noconfigdirs): Remove tcl and tk from
12217 noconfigdirs for cygwin32 builds.
12218
12219 Fri Feb 28 18:20:15 1997 Fred Fish <fnf@cygnus.com>
12220
12221 * configure.in (tic80-*-*): Remove ld from noconfigdirs.
12222
12223 Thu Feb 27 14:57:26 1997 Ken Raeburn <raeburn@cygnus.com>
12224
12225 * Makefile.in (GAS_SUPPORT_DIRS, BINUTILS_SUPPORT_DIRS): Remove
12226 make-all.com, use makefile.vms instead.
12227
12228 Tue Feb 25 18:46:14 1997 Stan Shebs <shebs@andros.cygnus.com>
12229
12230 * config.sub: Accept -lnews*.
12231
12232 Tue Feb 25 13:19:14 1997 Andrew Cagney <cagney@kremvax.tpgi.com.au>
12233
12234 * configure.in (noconfigdirs): Disable target-newlib,
12235 target-examples and target-libiberty for d30v.
12236
12237 Fri Feb 21 17:56:25 1997 Martin M. Hunt <hunt@pizza.cygnus.com>
12238
12239 * configure.in (noconfigdirs): Enable ld for d30v.
12240
12241 Fri Feb 21 20:58:51 1997 Michael Meissner <meissner@cygnus.com>
12242
12243 * configure.in (tic80-*-*): Build compiler.
12244
12245 Sun Feb 16 15:41:09 1997 Andrew Cagney <cagney@critters.cygnus.com>
12246
12247 * configure.in (d30v-*): Remove sim directory from list of
12248 unsupported d30v directories
12249
12250 Tue Feb 18 17:32:42 1997 Martin M. Hunt <hunt@pizza.cygnus.com>
12251
12252 * config.sub, configure.in: Add d30v target cpu.
12253
12254 Thu Feb 13 22:04:44 1997 Klaus Kaempf <kkaempf@progis.de>
12255
12256 * makefile.vms: New file.
12257 * make-all.com: Remove.
12258
12259 Wed Feb 12 12:54:18 1997 Jim Wilson <wilson@cygnus.com>
12260
12261 * Makefile.in (EXTRA_GCC_FLAGS): Add LIBGCC2_DEBUG_CFLAGS.
12262
12263 Sat Feb 8 20:36:49 1997 Michael Meissner <meissner@cygnus.com>
12264
12265 * Makefile.in (all-itcl): The rule is all-itcl, not all-tcl.
12266
12267 Tue Feb 4 11:39:29 1997 Tom Tromey <tromey@cygnus.com>
12268
12269 * Makefile.in (ALL_MODULES): Added all-db.
12270 (CROSS_CHECK_MODULES): Addec check-db.
12271 (INSTALL_MODULES): Added install-db.
12272 (CLEAN_MODULES): Added clean-db.
12273
12274 Mon Feb 3 13:29:36 1997 Ian Lance Taylor <ian@cygnus.com>
12275
12276 * config.guess: Merge with latest FSF sources.
12277
12278 Tue Jan 28 09:20:37 1997 Tom Tromey <tromey@cygnus.com>
12279
12280 * Makefile.in (ALL_MODULES): Added all-itcl.
12281 (CROSS_CHECK_MODULES): Added check-itcl.
12282 (INSTALL_MODULES): Added install-itcl.
12283 (CLEAN_MODULES): Added clean-itcl.
12284
12285 Thu Jan 23 01:44:27 1997 Geoffrey Noer <noer@cygnus.com>
12286
12287 * configure.in: build gdb for mn10200
12288
12289 Fri Jan 17 15:32:15 1997 Doug Evans <dje@canuck.cygnus.com>
12290
12291 * Makefile.in (all-target-winsup): Depend on all-target-libio.
12292
12293 Mon Jan 13 22:46:54 1997 Michael Meissner <meissner@tiktok.cygnus.com>
12294
12295 * configure.in (tic80-*-*): Turn off most targets right now.
12296
12297 Fri Jan 3 16:04:03 1997 Ian Lance Taylor <ian@cygnus.com>
12298
12299 * Makefile.in (MAKEINFO): Check for the existence of the Makefile,
12300 rather than the makeinfo program.
12301 (do-info): Depend upon all-texinfo.
12302
12303 Tue Dec 31 16:00:31 1996 Ian Lance Taylor <ian@cygnus.com>
12304
12305 * configure.in: Remove uses of config/mh-linux.
12306
12307 * config.sub, config.guess: Merge with latest FSF sources.
12308
12309 Fri Dec 27 23:04:33 1996 Fred Fish <fnf@cygnus.com>
12310
12311 * config.sub (case $basic_machine): Add tic80 entries.
12312
12313 Fri Dec 27 12:07:59 1996 Ian Lance Taylor <ian@cygnus.com>
12314
12315 * config.sub, config.guess: Merge with latest FSF sources.
12316
12317 Wed Dec 18 22:46:39 1996 Stan Shebs <shebs@andros.cygnus.com>
12318
12319 * mpw-build.in: Build ld before gcc, use NewFolderRecursive.
12320 * mpw-config.in: Test for NewFolderRecursive.
12321 * mpw-install: Use symbolic name for startup filename.
12322 * mpw-README: Add various additional details.
12323
12324 Wed Dec 18 13:11:46 1996 Jim Wilson <wilson@cygnus.com>
12325
12326 * configure.in (mips*-sgi-irix6*): Remove binutils from noconfigdirs.
12327
12328 Wed Dec 18 10:29:31 1996 Jeffrey A Law (law@cygnus.com)
12329
12330 * configure.in: Do build gcc and the target libraries for
12331 the mn10200.
12332
12333 Wed Dec 4 16:53:05 1996 Geoffrey Noer <noer@cygnus.com>
12334
12335 * configure.in: don't avoid building gdb for mn10300 any more
12336 * Makefile.in: double-quote GCC_FOR_TARGET line in EXTRA_GCC_FLAGS
12337 instead of single-quoting it.
12338
12339 Tue Dec 3 23:26:50 1996 Jason Merrill <jason@yorick.cygnus.com>
12340
12341 * configure.in: Don't use --with-stabs on IRIX 6.
12342
12343 Tue Dec 3 09:05:25 1996 Doug Evans <dje@canuck.cygnus.com>
12344
12345 * configure.in (m32r): Build gdb, libg++ now.
12346
12347 Sun Dec 1 00:18:59 1996 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
12348
12349 * configure.in (mips*-sgi-irix6*): Remove gdb and related
12350 directories from noconfigdirs.
12351
12352 Tue Nov 26 11:45:33 1996 Kim Knuttila <krk@cygnus.com>
12353
12354 * config.sub (basic_machine): added mips16 configuration
12355
12356 Sat Nov 23 19:26:22 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12357
12358 * config.sub: Handle d10v-unknown.
12359
12360 Sat Nov 23 10:23:01 1996 Gavin Koch <gavin@cygnus.com>
12361
12362 * config.sub: Handle v850-unknown.
12363
12364 Thu Nov 21 16:19:44 1996 Geoffrey Noer <noer@cygnus.com>
12365
12366 * Makefile.in: add findutils
12367 * configure.in: add findutils to list of host_tools
12368
12369 Wed Nov 20 10:09:01 1996 Jeffrey A Law (law@cygnus.com)
12370
12371 * config.sub: Handle mn10200 and mn10300.
12372
12373 Tue Nov 19 16:35:14 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12374
12375 * configure.in (d10v-*): Do not build librx.
12376
12377 Mon Nov 18 13:28:41 1996 Jeffrey A Law (law@cygnus.com)
12378
12379 * configure.in (mn10300): Build everything except gdb & libgloss.
12380
12381 Wed Nov 13 14:59:46 1996 Per Bothner <bothner@deneb.cygnus.com>
12382
12383 * config.guess: Patch for Dansk Data Elektronik servers,
12384 from Niels Skou Olsen <nso@dde.dk>.
12385
12386 For ncr, use /bin/uname rather than uname, since GNU uname does not
12387 support -p. Suggested by Mark Mitchell <mmitchell@usa.net>.
12388
12389 Patch for MIPS R4000 running System V,
12390 from Eric S. Raymond <esr@snark.thyrsus.com>.
12391
12392 Fix thinko for nextstep.
12393
12394 Patch for OSF1 in i?86, from Dan Murphy <dlm@osf.org> via Harlan Stenn.
12395
12396 Sat Jun 24 18:58:17 1995 Morten Welinder <terra+@cs.cmu.edu>
12397 * config.guess: Guess mips-dec-mach_bsd4.3.
12398
12399 Thu Oct 10 04:07:04 1996 Harlan Stenn <harlan@pfcs.com>
12400 * config.guess (i?86-ncr-sysv*): Emit just enough of the minor
12401 release numbers.
12402 * config.guess (mips-mips-riscos*): Emit just enough of the
12403 release number.
12404
12405 Tue Oct 8 10:37:22 1996 Frank Vance <fvance@waii.com>
12406 * config.guess (sparc-auspex-sunos*): Added.
12407 (f300-fujitsu-*): Added.
12408
12409 Wed Sep 25 22:00:35 1996 Jeff Woolsey <woolsey@jlw.com>
12410 * config.guess: Recognize a Tadpole as a sparc.
12411
12412 Wed Nov 13 00:53:09 1996 David J. MacKenzie <djm@churchy.gnu.ai.mit.edu>
12413
12414 * config.guess: Don't assume that NextStep version is either 2 or
12415 3. NextStep 4 (aka OpenStep 4) has come out now.
12416
12417 Mon Nov 11 23:52:03 1996 David J. MacKenzie <djm@churchy.gnu.ai.mit.edu>
12418
12419 * config.guess: Support Cray T90 that reports itself as "CRAY TS".
12420 From Rik Faith <faith@cs.unc.edu>.
12421
12422 Fri Nov 8 11:34:58 1996 David J. MacKenzie <djm@geech.gnu.ai.mit.edu>
12423
12424 * config.sub: Contributions from bug-gnu-utils to:
12425 Support plain "hppa" (no version given) architecture, reported by
12426 OpenStep.
12427 OpenBSD like NetBSD.
12428 LynxOs is not a hardware supplier.
12429
12430 * config.guess: Contributions from bug-gnu-utils to add support for:
12431 OpenBSD like NetBSD.
12432 Stratus systems.
12433 More Pyramid systems.
12434 i[n>4]86 Intel chips.
12435 M680[n>4]0 Motorola chips.
12436 Use unknown instead of lynx for hardware manufacturer.
12437
12438 Mon Nov 11 10:09:08 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
12439
12440 * install.sh (chmodcmd): Set to null if the DST directory already
12441 exists.
12442
12443 Mon Nov 11 10:43:41 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12444
12445 * configure.in (powerpc*-{eabi,elf,linux,rtem,sysv,solaris}*): Do
12446 not use mt-ppc target Makefile fragment any more.
12447
12448 Sun Nov 3 19:17:07 1996 Stu Grossman (grossman@critters.cygnus.com)
12449
12450 * configure.in (*-*-windows): Exclude everything but those dirs
12451 needed to build windows.
12452
12453 Tue Oct 29 16:41:31 1996 Doug Evans <dje@canuck.cygnus.com>
12454
12455 * Makefile.in (all-target-winsup): Depend on all-target-librx.
12456
12457 Mon Oct 28 17:32:46 1996 Stu Grossman (grossman@critters.cygnus.com)
12458
12459 * configure.in: Exclude mmalloc from i386-windows.
12460
12461 Thu Oct 24 09:22:46 1996 Stu Grossman (grossman@critters.cygnus.com)
12462
12463 * Undo my previous change.
12464
12465 Thu Oct 24 12:12:04 1996 Ian Lance Taylor <ian@cygnus.com>
12466
12467 * Makefile.in (EXTRA_GCC_FLAGS): Pass down GCC_FOR_TARGET
12468 unconditionally.
12469 (MAKEOVERRIDES): Define (revert this part of October 18 change).
12470
12471 Thu Oct 24 09:02:07 1996 Stu Grossman (grossman@critters.cygnus.com)
12472
12473 * Makefile.in (FLAGS_TO_PASS): Add $(HOST_FLAGS) to allow the
12474 host to add it's own flags.
12475
12476 Tue Oct 22 15:20:26 1996 Ian Lance Taylor <ian@cygnus.com>
12477
12478 * configure: Handle GCC_FOR_TARGET like CC_FOR_TARGET.
12479
12480 Fri Oct 18 13:37:13 1996 Ian Lance Taylor <ian@cygnus.com>
12481
12482 * Makefile.in (CC_FOR_TARGET): Check for xgcc, not Makefile.
12483 (CXX_FOR_TARGET): Likewise.
12484 (GCC_FOR_TARGET): Define.
12485 (BASE_FLAGS_TO_PASS): Remove GCC_FOR_TARGET.
12486 (EXTRA_GCC_FLAGS): Define GCC_FOR_TARGET based on whether
12487 CC_FOR_TARGET was specified on the command line.
12488 (MAKEOVERRIDES): Don't define.
12489
12490 Thu Oct 17 10:27:56 1996 Doug Evans <dje@canuck.cygnus.com>
12491
12492 * configure.in (m32r): Fix spelling of libg++ libs.
12493
12494 Thu Oct 10 10:37:17 1996 Stan Shebs <shebs@andros.cygnus.com>
12495
12496 * config.sub (-apple*): Remove, now redundant.
12497
12498 Thu Oct 10 12:30:54 1996 Ian Lance Taylor <ian@cygnus.com>
12499
12500 * configure: Don't get confused by CPU-VENDOR-linux-gnu.
12501
12502 * configure: Rework yesterday's sed script patch.
12503
12504 * config.sub: Merge with FSF.
12505
12506 Wed Oct 9 17:24:59 1996 Per Bothner <bothner@deneb.cygnus.com>
12507
12508 * config.guess: Merge from FSF.
12509
12510 1996-09-12 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
12511 * config.guess: Use pc instead of unknown, for pc clone systems.
12512 Change linux to linux-gnu.
12513
12514 Mon Jul 15 23:51:11 1996 Karl Heuer <kwzh@gnu.ai.mit.edu>
12515 * config.guess: Avoid non-portable tr syntax.
12516
12517 Wed Oct 9 06:06:46 1996 Jeffrey A Law (law@cygnus.com)
12518
12519 * test-build.mk (HOLES): Add "xargs" for gdb.
12520
12521 * configure: Avoid hpux10.20 sed bug.
12522
12523 Tue Oct 8 08:32:48 1996 Stu Grossman (grossman@critters.cygnus.com)
12524
12525 * configure.in: Add support for windows host
12526 (that is a build done under the Microsoft build environment).
12527
12528 Tue Oct 8 10:39:08 1996 Ian Lance Taylor <ian@cygnus.com>
12529
12530 * Makefile.in: Replace all uses of srcroot with s, to shrink
12531 command line lengths.
12532
12533 Patches from Geoffrey Noer <noer@cygnus.com>:
12534 * configure.in: If configuring for newlib, pass --with-newlib to
12535 subdirectories.
12536 * Makefile.in (CC_FOR_TARGET): If winsup/Makefile exists, pass a
12537 -Bnewlib/ and -Lwinsup to gcc.
12538 (CXX_FOR_TARGET): Likewise.
12539
12540 Mon Oct 7 10:59:35 1996 Ian Lance Taylor <ian@cygnus.com>
12541
12542 * Makefile.in (ETC_SUPPORT): Add configure.
12543
12544 Fri Oct 4 12:22:58 1996 Angela Marie Thomas (angela@cygnus.com)
12545
12546 * configure.in: Use config/mh-dgux386 for i[345]86-dg-dgux
12547 host configuration file.
12548
12549 Thu Oct 3 09:28:25 1996 Jeffrey A Law (law@cygnus.com)
12550
12551 * configure.in: Break mn10x00 support into separate
12552 mn10200 and mn10300 configurations.
12553 * config.sub: Likewise.
12554
12555 Wed Oct 2 22:27:52 1996 Jeffrey A Law (law@cygnus.com)
12556
12557 * configure.in: Add lots of stuff to noconfigdirs for
12558 the mn10x00 targets.
12559
12560 * config.sub, configure.in: Add mn10x00 support.
12561
12562 Wed Oct 2 15:52:36 1996 Klaus Kaempf <kkaempf@progis.de>
12563
12564 * make-all.com: Call conf-a-gas, not config-a-gas.
12565
12566 Tue Oct 1 01:28:41 1996 James G. Smith <jsmith@cygnus.co.uk>
12567
12568 * configure.in (noconfigdirs): Don't build libgloss for arm-coff
12569 targets.
12570
12571 Mon Sep 30 14:24:01 1996 Stan Shebs <shebs@andros.cygnus.com>
12572
12573 * mpw-README: Add much more detail for native PowerMac.
12574 * mpw-install: New file.
12575 * mpw-configure: Add --norecursion and --help options.
12576 * mpw-config.in: Translate readme and install files when
12577 copying to objdir.
12578 * mpw-build.in: Don't always depend on byacc and flex.
12579 (install-only-top): New action.
12580
12581 Fri Sep 27 17:39:44 1996 Stu Grossman (grossman@critters.cygnus.com)
12582
12583 * configure.in: You can now configure GDB for the v850.
12584
12585 Tue Sep 24 19:05:12 1996 Stan Shebs <shebs@andros.cygnus.com>
12586
12587 * configure.in (noconfigdirs): Don't configure any C++ dirs
12588 if targeting D10V.
12589
12590 Tue Sep 17 12:15:31 1996 Ian Lance Taylor <ian@cygnus.com>
12591
12592 * config.sub: Recognize mips64vr5000.
12593
12594 Mon Sep 16 17:00:52 1996 Ian Lance Taylor <ian@cygnus.com>
12595
12596 * configure.in: Use a single line for host_tools and native_only.
12597
12598 Mon Sep 9 12:21:30 1996 Doug Evans <dje@canuck.cygnus.com>
12599
12600 * config.sub, configure.in: Add entries for m32r.
12601
12602 Thu Sep 5 13:52:47 1996 Tom Tromey <tromey@creche.cygnus.com>
12603
12604 * Makefile.in (inet-install): Don't run install-gzip.
12605
12606 Wed Sep 4 17:26:13 1996 Stu Grossman (grossman@critters.cygnus.com)
12607
12608 * configure.in: Don't config lots of things for *-*-windows*.
12609
12610 Sat Aug 31 11:45:57 1996 Stan Shebs <shebs@andros.cygnus.com>
12611
12612 * mpw-config.in: Test for mpw-true, true, and null-command scripts.
12613 (host_libs, host_tools): Copy from configure.in.
12614 * mpw-configure: Don't complain about directories not found.
12615
12616 Thu Aug 29 16:44:58 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12617
12618 * configure.in (i[345]86): Recognize i686 for pentium pro.
12619 (i[3456]86-*-dgux*): Use config/mh-sysv for the host configuration
12620 file.
12621
12622 * config.guess (i[345]86): Ditto.
12623
12624 Mon Aug 26 18:34:42 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
12625
12626 * configure.in (noconfigdirs): Removed gdb for D10V.
12627
12628 Thu Aug 22 17:13:52 1996 Jeffrey A Law (law@cygnus.com)
12629
12630 * configure.in: Remove ld, target-libio, target-libg++, and
12631 target-libstdc++ from noconfigdirs.
12632
12633 Wed Aug 21 18:56:38 1996 Fred Fish <fnf@cygnus.com>
12634
12635 * configure: Fix three locations where shell scripts were
12636 being run directly rather than with config_shell.
12637
12638 Tue Aug 20 13:08:47 1996 J.T. Conklin <jtc@hippo.cygnus.com>
12639
12640 * configure.in (v850-*-*): Set up initial $noconfigdirs.
12641 * config.sub (basic_machine): Recognize v850.
12642
12643 Thu Aug 15 12:19:33 1996 Stan Shebs <shebs@andros.cygnus.com>
12644
12645 * mpw-configure: Handle multiple enable/disable options and
12646 pass them down recursively, handle -c and -s flags appropriately
12647 depending on choice of compiler, add escape mechanism for
12648 quoted arguments to gC.
12649
12650 Mon Aug 12 13:15:13 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12651
12652 * configure.in (powerpc*-*-*): For eabi, system V.4, Linux, and
12653 solaris targets, use config/mt-ppc to set C{,XX}FLAGS_FOR_TARGETS
12654 so that -mrelocatable-lib and -mno-eabi are used.
12655
12656 * Makefile.in (CONFIGURE_TARGET_MODULES): If target compiler does
12657 not support --print-multi-lib, don't abort.
12658
12659 Thu Aug 8 12:18:59 1996 Klaus Kaempf <kkaempf@progis.de>
12660
12661 * make-all.com: Run config-a-gas.
12662 * setup.com: Don't copy subdirectory files around.
12663
12664 Tue Jul 30 17:49:31 1996 Brendan Kehoe <brendan@cygnus.com>
12665
12666 * configure.in (*-*-ose): Remove exclusion of libgloss for this
12667 target, it now compiles correctly.
12668
12669 Sat Jul 27 15:10:43 1996 Stan Shebs <shebs@andros.cygnus.com>
12670
12671 * mpw-config.in: Generate Mac include for elf/dwarf2.h.
12672
12673 Tue Jul 23 10:47:04 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
12674
12675 * configure.in (d10v-*-*): Remove ld from $noconfigdirs.
12676
12677 Mon Jul 22 13:28:51 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
12678
12679 * configure.in (native_only): Add prms.
12680
12681 Mon Jul 22 12:27:58 1996 Ian Lance Taylor <ian@cygnus.com>
12682
12683 * Makefile.in (GAS_SUPPORT_DIRS): Add make-all.com and setup.com.
12684 (BINUTILS_SUPPORT_DIRS): Likewise.
12685
12686 Thu Jul 18 12:55:40 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12687
12688 * configure.in (d10v-*-*): Don't configure ld or gdb until the
12689 d10v support is added.
12690
12691 Wed Jul 17 14:33:09 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
12692
12693 * configure.in (d10v-*-*): New target.
12694
12695 Mon Jul 15 11:53:00 1996 Jeffrey A Law (law@cygnus.com)
12696
12697 * config.guess (HP 9000/811): Recognize this as a PA1.1
12698 machine.
12699
12700 Fri Jul 12 23:21:17 1996 Ken Raeburn <raeburn@cygnus.com>
12701
12702 * Makefile.in (do-tar-gz): New target, split out from tail end of
12703 taz target. Run each command separately, don't use pipes.
12704 (taz): Use it.
12705
12706 Fri Jul 12 12:08:04 1996 Stan Shebs <shebs@andros.cygnus.com>
12707
12708 * mpw-configure: Look for g-mpw-make.sed in config/mpw.
12709 * mpw-build.in: No builds should depend on building byacc or flex,
12710 they are assumed to be installed already.
12711
12712 Fri Jul 12 09:52:52 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12713
12714 * Makefile.in (CONFIGURE_TARGET_MODULES): Set r environment
12715 variable that CC_FOR_TARGET needs.
12716
12717 Thu Jul 11 10:09:45 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12718
12719 * Makefile.in (CONFIGURE_TARGET_MODULES): Determine if the multlib
12720 options have changed since the last time the subdirectory was
12721 configured, and if it has, reconfigure.
12722 (CLEAN_TARGET_MODULES): Delete multilib.out and tmpmulti.out, which
12723 CONFIGURE_TARGET_MODULES uses to remember the old multilib options.
12724
12725 Wed Jul 10 18:56:59 1996 Doug Evans <dje@canuck.cygnus.com>
12726
12727 * Makefile.in (ALL_MODULES,CROSS_CHECK_MODULES,INSTALL_MODULES,
12728 CLEAN_MODULES): Add bash.
12729 (all-bash): New target.
12730
12731 Mon Jul 8 17:33:14 1996 Jim Wilson <wilson@cygnus.com>
12732
12733 * configure.in (mips-sgi-irix6*): Use mh-irix6 instead of mh-irix5.
12734
12735 Mon Jul 1 13:31:35 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12736
12737 * config.sub (basic_machine): Recognize d10v as a valid processor.
12738
12739 Fri Jun 28 12:14:35 1996 Stan Shebs <shebs@andros.cygnus.com>
12740
12741 * mpw-configure: Add support for --bindir.
12742 * mpw-build.in: Use a GCC-specific build script for GCC actions.
12743
12744 Wed Jun 26 17:20:12 1996 Geoffrey Noer <noer@cygnus.com>
12745
12746 * configure.in: add bash, time, gawk to list of hosttools and things
12747 to only build for native toolchains
12748
12749 Tue Jun 25 23:09:03 1996 Jason Molenda (crash@godzilla.cygnus.co.jp)
12750
12751 * Makefile.in (docdir): Remove.
12752
12753 Tue Jun 25 19:00:08 1996 Jason Molenda (crash@godzilla.cygnus.co.jp)
12754
12755 * Makefile.in (datadir): Set to $(prefix)/share.
12756
12757 Mon Jun 24 23:26:07 1996 Geoffrey Noer <noer@cygnus.com>
12758
12759 * configure.in: build diff and patch for cygwin32-hosted
12760 toolchains.
12761
12762 Mon Jun 24 15:01:12 1996 Joel Sherrill <joel@merlin.gcs.redstone.army.mil>
12763
12764 * config.sub: Accept -rtems*.
12765
12766 Sun Jun 23 22:41:54 1996 Geoffrey Noer <noer@cygnus.com>
12767
12768 * configure.in: enable dosrel for cygwin32-hosted builds,
12769 remove diff from the list of things not buildable
12770 via Canadian Cross
12771
12772 Sat Jun 22 11:39:01 1996 Jason Merrill <jason@yorick.cygnus.com>
12773
12774 * Makefile.in (TARGET_SUBDIR): Move comment to previous line so we
12775 don't get ". ".
12776
12777 Fri Jun 21 17:24:48 1996 Jim Wilson <wilson@cygnus.com>
12778
12779 * configure.in (mips*-sgi-irix6*): Set noconfigdirs appropriately.
12780
12781 Thu Jun 20 16:57:40 1996 Ken Raeburn <raeburn@cygnus.com>
12782
12783 * Makefile.in (taz): Handle case where tex3patch didn't even get
12784 checked out. Also, if it was found, put the symlink in a new util
12785 subdirectory.
12786
12787 Thu Jun 20 12:20:33 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12788
12789 * config.guess (*:Linux:*:*): Add support for PowerPC Linux.
12790
12791 Tue Jun 18 14:24:12 1996 Klaus Kaempf (kkaempf@progis.de)
12792
12793 * config.sub: Recognize -openvms.
12794 * configure.in (alpha*-*-*vms*): Set noconfigdirs.
12795 * make-all.com, setup.com: New files.
12796
12797 Mon Jun 17 16:34:46 1996 Jason Merrill <jason@yorick.cygnus.com>
12798
12799 * Makefile.in (taz): tex3patch moved to texinfo/util.
12800
12801 Sat Jun 15 17:13:25 1996 Geoffrey Noer <noer@cygnus.com>
12802
12803 * configure: enable_gdbtk=no for cygwin32-hosted toolchains
12804 * configure.in: remove make from disable-if-Can-Cross list
12805 enable gdb if ${host} and ${target} are cygwin32
12806
12807 Fri Jun 7 18:16:52 1996 Harlan Stenn <harlan@pfcs.com>
12808
12809 * config.guess (i?86-ncr-sysv*): Emit minor release numbers.
12810 Recognize the NCR 4850 machine and NCR Pentium-based platforms.
12811
12812 Wed Jun 5 00:09:17 1996 Per Bothner <bothner@wombat.gnu.ai.mit.edu>
12813
12814 * config.guess: Combine mips-mips-riscos cases, and use cpp to
12815 distinguish sysv/svr4/bsd variants.
12816 Based on a patch from Harlan Stenn <harlan@pfcs.com>.
12817
12818 Fri Jun 7 14:24:49 1996 Tom Tromey <tromey@creche.cygnus.com>
12819
12820 * configure.in: Added copyright notice.
12821 * move-if-change: Added copyright notice.
12822
12823 Thu Jun 6 16:27:05 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12824
12825 * configure.in (powerpcle-*-solaris*): Until we get shared
12826 libraries working, don't build gdb, sim, make, tcl, tk, or
12827 expect.
12828
12829 Tue Jun 4 20:41:45 1996 Per Bothner <bothner@deneb.cygnus.com>
12830
12831 * config.guess: Merge with FSF:
12832
12833 Mon Jun 3 08:49:14 1996 Karl Heuer <kwzh@gnu.ai.mit.edu>
12834 * config.guess (*:Linux:*:*): Add guess for sparc-unknown-linux.
12835
12836 Fri May 24 18:34:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
12837 * config.guess (AViiON:dgux:*:*): Fix typo in recognizing mc88110.
12838
12839 Fri Apr 12 20:03:59 1996 Per Bothner <bothner@spiff.gnu.ai.mit.edu>
12840 * config.guess: Combine two OSF1 rules.
12841 Also recognize field test versions. From mjr@zk3.dec.com.
12842 * config.guess (dgux): Use /usr/bin/uname rather than uname,
12843 because GNU uname does not support -p. From pmr@pajato.com.
12844
12845 Tue Jun 4 11:07:25 1996 Tom Tromey <tromey@csk3.cygnus.com>
12846
12847 * Makefile.in (MAKEDIRS): Removed $(tooldir).
12848
12849 Tue May 28 12:30:50 1996 Stan Shebs <shebs@andros.cygnus.com>
12850
12851 * mpw-README: Document GCCIncludes.
12852
12853 Sun May 26 15:16:27 1996 Fred Fish <fnf@cygnus.com>
12854
12855 * configure.in (alpha-*-linux*): Set enable_shared to yes.
12856
12857 Tue May 21 15:41:39 1996 Stan Shebs <shebs@andros.cygnus.com>
12858
12859 * mpw-configure: Handle --enable-FOO and --disable-FOO.
12860
12861 Mon May 20 10:12:29 1996 Geoffrey Noer <noer@cygnus.com>
12862
12863 * configure.in (*-*-cygwin32): Configure make.
12864
12865 Tue May 7 14:19:42 1996 Tom Tromey <tromey@snuffle.cygnus.com>
12866
12867 * Makefile.in (inet-install): Quote value of INSTALL_MODULES.
12868
12869 Fri May 3 08:57:17 1996 Tom Tromey <tromey@lisa.cygnus.com>
12870
12871 * Makefile.in (all-inet): Depend on all-perl.
12872
12873 * Makefile.in (inet-install): New target.
12874
12875 * Makefile.in (all-inet): Depend on all-tcl.
12876 (all-inet): Depend on all-send-pr.
12877
12878 Tue Apr 30 13:55:51 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12879
12880 * configure.in (powerpcle-*-solaris*): Turn off tk and tcl
12881 temporarily.
12882
12883 Thu Apr 25 11:48:20 1996 Ian Lance Taylor <ian@cygnus.com>
12884
12885 * configure.in: Don't configure --with-gnu-ld on AIX.
12886
12887 Thu Apr 25 06:33:36 1996 Michael Meissner <meissner@wogglebug.tiac.net>
12888
12889 * configure.in (powerpcle-*-solaris*): Turn off gdb temporarily.
12890
12891 Tue Apr 23 09:07:39 1996 Tom Tromey <tromey@creche.cygnus.com>
12892
12893 * Makefile.in (ALL_MODULES): Added all-inet.
12894 (CROSS_CHECK_MODULES): Added check-inet.
12895 (INSTALL_MODULES): Added install-inet.
12896 (CLEAN_MODULES): Added clean-inet.
12897 (all-indent): New target.
12898
12899 * configure.in (host_tools): Added inet.
12900 (native_only): Added inet.
12901 (noconfigdirs): Added inet.
12902
12903 Fri Apr 19 15:35:29 1996 Ian Lance Taylor <ian@cygnus.com>
12904
12905 * configure.in: Don't configure libgloss if we are not configuring
12906 newlib.
12907
12908 Wed Apr 17 19:30:01 1996 Rob Savoye <rob@chinadoll.cygnus.com>
12909
12910 * configure.in: Don't configure libgloss for unsupported
12911 architectures.
12912
12913 Tue Apr 16 11:17:05 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12914
12915 * Makefile.in (CLEAN_MODULES): Add clean-apache.
12916
12917 Mon Apr 15 15:09:05 1996 Tom Tromey <tromey@creche.cygnus.com>
12918
12919 * Makefile.in (ALL_MODULES): Include all-apache.
12920 (CROSS_CHECK_MODULES): Include check-apache.
12921 (INSTALL_MODULES): Include install-apache.
12922 (all-apache): New target.
12923
12924 * configure.in: Added apache everywhere perl is seen.
12925
12926 Mon Apr 15 14:59:13 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12927
12928 * Makefile.in: Add support for clean-{module} and
12929 clean-target-{module} rules.
12930
12931 Wed Apr 10 21:37:41 PDT 1996 Marilyn E. Sander <msander@cygnus.com>
12932
12933 * configure.in (*-*-ose) do not build libgloss.
12934
12935 Mon Apr 8 16:16:20 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12936
12937 * config.guess (prep*:SunOS:5.*:*): Turn into
12938 powerpele-unknown-solaris2.
12939
12940 Mon Apr 8 14:45:41 1996 Ian Lance Taylor <ian@cygnus.com>
12941
12942 * configure.in: Permit --enable-shared to specify a list of
12943 directories.
12944
12945 Fri Apr 5 08:17:57 1996 Jason Molenda (crash@phydeaux.cygnus.com)
12946
12947 * configure.in (host==solaris): Pass only the first word of $CC
12948 to /usr/bin/which when checking if we're using /usr/ccs/bin/cc.
12949
12950 Fri Apr 5 03:16:13 1996 Jason Molenda (crash@phydeaux.cygnus.com)
12951
12952 * Makefile.in (BASE_FLAGS_TO_PASS): pass down $(MAKE).
12953
12954 Thu Mar 28 14:11:11 1996 Tom Tromey <tromey@creche.cygnus.com>
12955
12956 * Makefile.in (ALL_MODULES): Include all-perl.
12957 (CROSS_CHECK_MODULES): Include check-perl.
12958 (INSTALL_MODULES): Include install-perl.
12959 (ALL_X11_MODULES): Include all-guile.
12960 (CHECK_X11_MODULES): Include check-guile.
12961 (INSTALL_X11_MODULES): Include install-guile.
12962 (all-perl): New target.
12963 (all-guile): New target.
12964
12965 * configure.in (host_tools): Include perl and guile.
12966 (native_only): Include perl and guile.
12967 (noconfigdirs): Don't build guile and perl; no ports have been
12968 done.
12969
12970 Tue Mar 26 21:18:50 1996 Andrew Cagney <cagney@kremvax.highland.com.au>
12971
12972 * configure (--enable-*): Handle quoted option lists such as
12973 --enable-sim-cflags='-g0 -O' better.
12974
12975 Thu Mar 21 11:53:08 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12976
12977 * Makefile.in ({,inst}all-target): New rule so we can make and
12978 install all of the target directories easily.
12979
12980 Wed Mar 20 18:10:57 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
12981
12982 * configure.in: Add missing global flag in sed substitution when
12983 deleting `target-' from ${configdirs}.
12984
12985 Thu Mar 14 19:15:06 1996 Ian Lance Taylor <ian@cygnus.com>
12986
12987 * Makefile.in (DO_X): Don't get confused if CC contains `=' in an
12988 option.
12989
12990 * configure.in (mips*-nec-sysvr4*): Use a host_makefile_frag of
12991 config/mh-necv4.
12992
12993 * install.sh: Correct misspelling of transformbasename.
12994
12995 * config.guess: Recognize mips-*-sysv*.
12996
12997 Mon Mar 11 15:36:42 1996 Dawn Perchik <dawn@critters.cygnus.com>
12998
12999 * config.sub: Recognize mon960.
13000
13001 Sun Mar 10 13:18:38 1996 Ian Lance Taylor <ian@cygnus.com>
13002
13003 * configure: Restore Canadian Cross handling of BISON and LEX,
13004 removed in Feb 20 change.
13005
13006 Fri Mar 8 20:07:09 1996 Per Bothner <bothner@kalessin.cygnus.com>
13007
13008 * README: Suggestions from Torbjorn Granlund <tege@matematik.su.se>:
13009 Mention make install. Remove the old copyright date as well the
13010 clumsy and rather pointless copyright on the README file.
13011
13012 Fri Mar 8 17:51:35 1996 Ian Lance Taylor <ian@cygnus.com>
13013
13014 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): If there is a
13015 Makefile after running symlink-tree, then run `make distclean' to
13016 avoid clobbering any generated files in srcdir.
13017
13018 Tue Mar 5 08:21:44 1996 J.T. Conklin <jtc@rtl.cygnus.com>
13019
13020 * configure.in (m68k-*-netbsd*): Build everything now.
13021
13022 Wed Feb 28 12:25:46 1996 Jason Merrill <jason@yorick.cygnus.com>
13023
13024 * Makefile.in (taz): Fix quoting.
13025
13026 Tue Feb 27 11:33:57 1996 Doug Evans <dje@charmed.cygnus.com>
13027
13028 * configure.in (sparclet-*-*): Build everything now.
13029
13030 Tue Feb 27 14:31:51 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
13031
13032 * configure.in (m68k-*-linux*): New host.
13033
13034 Mon Feb 26 14:32:44 1996 Ian Lance Taylor <ian@cygnus.com>
13035
13036 * configure: Check for bison before byacc.
13037
13038 Tue Feb 20 23:12:35 1996 Stu Grossman (grossman@critters.cygnus.com)
13039
13040 * Makefile.in configure: Change the way LEX and BISON/YACC are
13041 set. configure now defines DEFAULT_LEX and DEFAULT_YACC by
13042 searching PATH. These are used as fallbacks by Makefile.in if
13043 flex/bison/byacc aren't in objdir.
13044
13045 Mon Feb 19 11:45:30 1996 Ian Lance Taylor <ian@cygnus.com>
13046
13047 * Makefile.in: Make everything which depends upon all-bfd also
13048 depend upon all-opcodes, in case --with-commonbfdlib is used.
13049
13050 Thu Feb 15 19:50:50 1996 Michael Meissner <meissner@tiktok.cygnus.com>
13051
13052 * configure.in (host *-*-cygwin32): Don't build gdb if we are
13053 building NT native compilers on Unix.
13054
13055 Thu Feb 15 17:42:25 1996 Ian Lance Taylor <ian@cygnus.com>
13056
13057 * configure.in: Don't get CC from the host Makefile fragment if we
13058 can find gcc in PATH, or if this is a Canadian Cross. Move the
13059 Solaris test for /usr/ucb/cc to the post target script, just after
13060 the compiler sanity test.
13061
13062 Wed Feb 14 16:57:40 1996 Ian Lance Taylor <ian@cygnus.com>
13063
13064 * config.sub: Merge with FSF.
13065
13066 Tue Feb 13 14:27:48 1996 Ian Lance Taylor <ian@cygnus.com>
13067
13068 * Makefile.in (RPATH_ENVVAR): New variable.
13069 (REALLY_SET_LIB_PATH): Use it.
13070 * configure.in: On HP/UX, set RPATH_ENVVAR to SHLIB_PATH.
13071
13072 Mon Feb 12 15:28:49 1996 Doug Evans <dje@charmed.cygnus.com>
13073
13074 * config.sub, configure.in: Recognize sparclet cpu.
13075
13076 Mon Feb 12 15:33:59 1996 Christian Bauernfeind <chrisbfd@theorie3.physik.uni-erlangen.de>
13077
13078 * config.guess: Support m68k-cbm-sysv4.
13079
13080 Sat Feb 10 12:06:42 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
13081
13082 * config.guess (*:Linux:*:*): Guess m68k-unknown-linux and
13083 m68k-unknown-linuxaout from linker help string. Put quotes around
13084 $ld_help_string.
13085
13086 Thu Dec 7 09:03:24 1995 Tom Horsley <Tom.Horsley@mail.hcsc.com>
13087
13088 * config.guess (powerpc-harris-powerunix): Add guess for port
13089 to new target.
13090
13091 Thu Feb 8 15:37:52 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
13092
13093 * config.guess (UNAME_VERSION): Recognize X4.x as an OSF version.
13094
13095 Mon Feb 5 16:36:51 1996 Ian Lance Taylor <ian@cygnus.com>
13096
13097 * configure.in: If --enable-shared was used, set SET_LIB_PATH to
13098 $(REALLY_SET_LIB_PATH) in Makefile.
13099 * Makefile.in (SET_LIB_PATH): New variable.
13100 (REALLY_SET_LIB_PATH): New variable.
13101 ($(DO_X)): Use $(SET_LIB_PATH).
13102 (install.all, gcc-no-fixedincludes, $(ALL_MODULES)): Likewise.
13103 ($(NATIVE_CHECK_MODULES), $(CROSS_CHECK_MODULES)): Likewise.
13104 ($(INSTALL_MODULES), $(CONFIGURE_TARGET_MODULES)): Likewise.
13105 ($(ALL_TARGET_MODULES), $(CHECK_TARGET_MODULES)): Likewise.
13106 ($(INSTALL_TARGET_MODULES), $(ALL_X11_MODULES)): Likewise.
13107 ($(CHECK_X11_MODULES), $(INSTALL_X11_MODULES)): Likewise.
13108 (all-gcc, all-bootstrap, check-gcc, install-gcc): Likewise.
13109 (install-dosrel): Likewise.
13110 (all-opcodes): Depend upon all-libiberty.
13111
13112 Sun Feb 4 16:51:11 1996 Steve Chamberlain <sac@slash.cygnus.com>
13113
13114 * config.guess (*:CYGWIN*): New
13115
13116 Sat Feb 3 10:42:35 1996 Michael Meissner <meissner@tiktok.cygnus.com>
13117
13118 * Makefile.in (all-target-winsup): All all-target-libiberty.
13119
13120 Fri Feb 2 17:58:56 1996 Michael Meissner <meissner@tiktok.cygnus.com>
13121
13122 * configure.in (noconfigdirs): Add missing # in front of comment.
13123
13124 Thu Feb 1 14:38:13 1996 Geoffrey Noer <noer@cygnus.com>
13125
13126 * configure.in: add second pass to things added to noconfigdirs
13127 so *-gm-magic can exclude libgloss properly.
13128
13129 Thu Feb 1 11:10:16 1996 Stan Shebs <shebs@andros.cygnus.com>
13130
13131 * mpw-configure (extralibs_name, rez_name): Set correctly
13132 for MWC68K compiler.
13133
13134 * mpw-README: Add more info on the necessary build tools.
13135
13136 Thu Feb 1 10:22:38 1996 Steve Chamberlain <sac@slash.cygnus.com>
13137
13138 * configure.in, config.sub: Recognize cygwin32.
13139
13140 Wed Jan 31 14:17:10 1996 Richard Henderson <rth@tamu.edu>
13141
13142 * config.guess, config.sub: Recognize A/UX.
13143
13144 Wed Jan 31 13:52:14 1996 Ian Lance Taylor <ian@cygnus.com>
13145
13146 * config.sub: Merge with gcc/config.sub.
13147
13148 Thu Jan 25 11:01:10 1996 Raymond Jou <rjou@mexican.cygnus.com>
13149
13150 * mpw-build.in (do-binutils): Add build of stamps.
13151
13152 Thu Jan 25 17:05:26 1996 James G. Smith <jsmith@cygnus.co.uk>
13153
13154 * config.sub: Add recognition for mips64vr4100*-* targets.
13155
13156 Wed Jan 24 12:47:55 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
13157
13158 * test-build.mk: Add checking of `hpux9' rather than just `hpux'.
13159 Add creation of gconfigargs with `--enable-shared' turned on.
13160 ($(host)-stamp-stage2-configured): Pass $(gconfigargs).
13161 ($(host)-stamp-stage3-configured): Likewise.
13162 (HOLES): Add chatr and ldd.
13163 (i386-ncr-sysv4.3*): Add use of /usr/ccs/bin in the PATH and HOLE_DIRS.
13164
13165 Wed Jan 24 20:32:30 1996 Torbjorn Granlund <tege@noisy.matematik.su.se>
13166
13167 * configure: Pass --nfp to recursive configures.
13168
13169 Mon Jan 22 10:41:56 1996 Steve Chamberlain <sac@slash.cygnus.com>
13170
13171 * Makefile.in (DLLTOOL): New.
13172 (DLLTOOL_FOR_TARGET): New.
13173 (EXTRA_HOST_FLAGS): Pass down DLLTOOL.
13174 (EXTRA_TARGET_FLAGS): Ditto.
13175 (EXTRA_GCC_FLAGS): Ditto.
13176 (CONFIGURE_TARGET_MODULES): Ditto.
13177 (DO_X): Ditto.
13178 * configure: Add DLLTOOL.
13179
13180 Fri Jan 19 13:30:15 1996 Stan Shebs <shebs@andros.cygnus.com>
13181
13182 SCO OpenServer 5 changes from Robert Lipe <robertl@dgii.com>:
13183 * configure.in (i[345]86-*-sco3.2v5*): Use mh-sysv instead of
13184 mh-sco, since old workarounds no longer needed, and don't
13185 build ld, since libraries have weak symbols in COFF.
13186
13187 Sun Jan 14 23:01:31 1996 Fred Fish <fnf@cygnus.com>
13188
13189 * Makefile.in (CONFIGURE_TARGET_MODULES): Add missing ';'.
13190
13191 Fri Jan 12 15:25:35 1996 Ian Lance Taylor <ian@cygnus.com>
13192
13193 * configure.in: Make sure that ${CC} can be used to compile an
13194 executable.
13195
13196 Sat Jan 6 07:23:33 1996 Michael Meissner <meissner@wogglebug.tiac.net>
13197
13198 * Makefile.in (all-gdb): Depend on $(GDB_TK).
13199 * configure (GDB_TK): Set GDB_TK to either "all-tcl all-tk" or
13200 nothing depending on whether gdbtk is being built.
13201
13202 Wed Jan 3 17:54:41 1996 Doug Evans <dje@canuck.cygnus.com>
13203
13204 * Makefile.in (newlib.tar.gz): Delete building of newlib's info files.
13205
13206 Mon Jan 1 19:09:14 1996 Brendan Kehoe <brendan@rtl.cygnus.com>
13207
13208 * configure.in (noconfigdirs): Put ld or gas in this early, if the
13209 user specifically used --with-gnu-ld=no or --with-gnu-as=no.
13210
13211 Sat Dec 30 16:08:57 1995 Doug Evans <dje@canuck.cygnus.com>
13212
13213 * config-ml.in: Add support for
13214 --disable-{softfloat,m68881,m68000,m68020} on m68*-*-*.
13215 Simplify setting of multidirs from --disable-foo.
13216
13217 Fri Dec 29 07:56:11 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13218
13219 * Makefile.in (EXTRA_GCC_FLAGS): If any of the make variables
13220 LANGUAGES, BOOT_CFLAGS, STMP_FIXPROTO, LIMITS_H_TEST,
13221 LIBGCC1_TEST, LIBGCC2_CFLAGS, LIBGCC2_INCLUDES, and ENQUIRE are
13222 non-empty, pass them on to the GCC make.
13223 (all-bootstrap): New rule that is like all-gcc, except it executes
13224 the GCC bootstrap rule instead of the GCC all rule.
13225
13226 Wed Dec 27 15:51:48 1995 Doug Evans <dje@canuck.cygnus.com>
13227
13228 * config-ml.in (ml_realsrcdir): New, to account for ${subdir}.
13229
13230 Tue Dec 26 11:45:31 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13231
13232 * config.guess (AViiON:dgux:*:*): Update from FSF to add pentium
13233 DG/UX support.
13234
13235 Fri Dec 15 10:01:27 1995 Stan Cox <coxs@dg-rtp.dg.com>
13236
13237 * config.sub (i*86*) Change [345] to [3456]
13238
13239 Wed Dec 20 17:41:40 1995 Brendan Kehoe <brendan@lisa.cygnus.com>
13240
13241 * configure.in (noconfigdirs): Add gas or ld if --with-gnu-as=no or
13242 --with-gnu-ld=no.
13243
13244 Wed Dec 20 15:15:35 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13245
13246 * config-ml.in (rs6000*, powerpc*): Add switches to control which
13247 AIX multilibs get built.
13248
13249 Mon Dec 18 17:55:46 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13250
13251 * configure.in (i386-win32): Don't build expect if we're not
13252 building the tcl subdir.
13253
13254 Mon Dec 18 11:47:19 1995 Stan Shebs <shebs@andros.cygnus.com>
13255
13256 * Makefile.in: (configure-target-examples, all-target-examples):
13257 New targets, configure and build example programs.
13258
13259 Fri Dec 15 16:13:03 1995 Stan Shebs <shebs@andros.cygnus.com>
13260
13261 * mpw-configure: If an mpw-config.in generated a file mk.sed,
13262 use it as input to sedit the generated MPW makefile.
13263 * mpw-README: Add a suggestion about Gestalt.h.
13264
13265 Wed Dec 13 16:43:51 1995 Ian Lance Taylor <ian@cygnus.com>
13266
13267 * config.sub: Accept *-*-ieee*.
13268
13269 Tue Dec 12 11:52:57 1995 Ian Lance Taylor <ian@cygnus.com>
13270
13271 * Makefile.in (local-distclean): Remove $(TARGET_SUBDIR). From
13272 Ronald F. Guilmette <rfg@monkeys.com>.
13273
13274 Mon Dec 11 15:31:58 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13275
13276 * configure.in (host==powerpc-pe): Add many directories to noconfigdirs
13277 for powerpc-pe native.
13278 (target==i386-win32): add tcl, make to noconfigdirs if canadian cross.
13279 (target==powerpc-pe): duplicate i386-win32 entry.
13280
13281 Sat Dec 9 14:58:28 1995 Jim Wilson <wilson@chestnut.cygnus.com>
13282
13283 * configure.in (noconfigdirs): Exclude target-newlib for all versions
13284 of vxworks, not just vxworks5.1.
13285
13286 Mon Dec 4 12:05:40 1995 Stan Shebs <shebs@andros.cygnus.com>
13287
13288 * mpw-configure: Add support for exec-prefix.
13289
13290 Mon Dec 4 10:22:50 1995 Jeffrey A. Law <law@rtl.cygnus.com>
13291
13292 * config.guess: Recognize HP model 816 machines as having
13293 a PA1.1 processor.
13294
13295 Mon Dec 4 12:38:15 1995 Ian Lance Taylor <ian@cygnus.com>
13296
13297 * configure: Ignore new autoconf configure options.
13298
13299 Thu Nov 30 16:57:33 1995 Per Bothner <bothner@wombat.gnu.ai.mit.edu>
13300
13301 * config.guess: Recognize Pentium under SCO.
13302 From Robert Lipe <robertl@arnet.com>.
13303
13304 Wed Nov 29 13:49:08 1995 J.T. Conklin <jtc@rtl.cygnus.com>
13305
13306 * configure.in (noconfigdirs): Disable target-libio on v810-*-*.
13307
13308 Wed Nov 29 12:12:01 1995 Ian Lance Taylor <ian@cygnus.com>
13309
13310 * configure.in: Don't configure gas for alpha-dec-osf*.
13311
13312 Tue Nov 28 17:16:48 1995 Ian Lance Taylor <ian@cygnus.com>
13313
13314 * configure.in: Default to --with-stabs for some targets for which
13315 it makes sense: mips*-*-*, alpha*-*-osf*, i[345]86*-*-sysv4* and
13316 i[345]86*-*-unixware*.
13317
13318 Mon Nov 27 13:44:15 1995 Ian Lance Taylor <ian@cygnus.com>
13319
13320 * config-ml.in: Get list of multidirs using gcc --print-multi-lib
13321 rather than basing it on the target. Simplify handling of options
13322 controlling which directories to configure. Remove extraneous
13323 slash in multi-clean target.
13324
13325 Fri Nov 24 17:29:29 1995 Doug Evans <dje@deneb.cygnus.com>
13326
13327 * config-ml.in: Prefix more variables with ml_ so they don't collide
13328 with configure's.
13329
13330 Wed Nov 22 11:27:02 1995 Ian Lance Taylor <ian@cygnus.com>
13331
13332 * configure: Don't turn -v into --v.
13333
13334 Tue Nov 21 16:48:02 1995 Doug Evans <dje@deneb.cygnus.com>
13335
13336 * configure.in (targargs): Fix typo.
13337
13338 * Makefile.in (DEVO_SUPPORT): Add symlink-tree.
13339
13340 Tue Nov 21 14:08:28 1995 Ian Lance Taylor <ian@cygnus.com>
13341
13342 * configure.in: Strip --host and --target options from
13343 CONFIG_ARGUMENTS, and always configure for --host only. Add
13344 --with-cross-host option when building with a cross-compiler.
13345 * configure: Canonicalize the arguments put into config.status by
13346 always using `=' for an option with an argument. Pass a presumed
13347 --host or --target explicitly.
13348
13349 Fri Nov 17 17:50:30 1995 Stan Shebs <shebs@andros.cygnus.com>
13350
13351 * config.sub: Merge -macos*, -magic*, -pe*, and -win32 cases
13352 into general OS recognition case.
13353
13354 Fri Nov 17 17:42:25 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13355
13356 * configure.in (target_configdirs): add target-winsup only
13357 for win32 target systems.
13358
13359 Thu Nov 16 14:04:47 1995 Ian Lance Taylor <ian@cygnus.com>
13360
13361 * Makefile.in (all-target-libgloss): Depend upon
13362 configure-target-newlib, since when libgloss is built it looks to
13363 see if the newlib directory exists.
13364
13365 Wed Nov 15 14:47:52 1995 Ken Raeburn <raeburn@cygnus.com>
13366
13367 * Makefile.in (DEVO_SUPPORT): Use config-ml.in instead of
13368 cfg-ml-*.in.
13369
13370 Wed Nov 15 11:45:23 1995 Ian Lance Taylor <ian@cygnus.com>
13371
13372 * configure: Handle LD and LD_FOR_TARGET when configuring a
13373 Canadian Cross.
13374
13375 Tue Nov 14 14:56:11 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13376
13377 * configure.in (target_libs): add target-winsup.
13378 (target==i386-win32): add patch diff flex make to $noconfigdirs.
13379 (target==ppcle-pe): remove ld from $noconfigdirs.
13380
13381 Tue Nov 14 01:25:50 1995 Doug Evans <dje@canuck.cygnus.com>
13382
13383 * Makefile.in (CONFIGURE_TARGET_MODULES): Pass --with-target-subdir.
13384 Preserve relative path names in $srcdir. Build symlink tree if
13385 configuring cross target dir and srcdir=. (= no VPATH support).
13386 (configure-target-libg++): Depend on configure-target-librx.
13387 * cfg-ml-com.in, cfg-ml-pos.in: Deleted.
13388 * config-ml.in: New file.
13389 * symlink-tree: New file.
13390 * configure: Ensure srcdir="." if that's what it is.
13391
13392 Mon Nov 13 12:34:20 1995 Stan Shebs <shebs@andros.cygnus.com>
13393
13394 * mpw-README: Clarify some phrasing, add notes about CodeWarrior
13395 includes and FLEX_SKELETON setting.
13396 * mpw-configure (--with-gnu-ld): New option, controls whether
13397 to use PPCLink or ld with PowerMac GCC.
13398 * mpw-build.in (all-grez, do-grez, install-grez): New targets.
13399 * mpw-config.in: Configure grez if targeting Mac.
13400
13401 * config.sub: Accept pmac and pmac-mpw as names for PowerMacs,
13402 accept mpw and mac-mpw as names for m68k Macs, change macos7 to
13403 just macos.
13404 * configure.in: Configure grez resource compiler if targeting Mac.
13405 * Makefile.in (all-grez, install-grez): New targets.
13406
13407 Wed Nov 8 17:33:51 1995 Jason Merrill <jason@yorick.cygnus.com>
13408
13409 * configure: CXX defaults to gcc, not g++. If we find
13410 gcc in the path, set CC to gcc -O2.
13411
13412 Tue Nov 7 15:45:17 1995 Ian Lance Taylor <ian@cygnus.com>
13413
13414 * configure: Default ${build} correctly. Avoid picking up extra
13415 spaces when reading CC and CXX from Makefile. When doing a
13416 Canadian Cross, use plausible default values for numerous
13417 variables.
13418 * configure.in: When doing a Canadian Cross, don't try to
13419 configure tools whose configure script can't handle it.
13420
13421 Mon Nov 6 19:32:17 1995 Jim Wilson <wilson@chestnut.cygnus.com>
13422
13423 * cfg-ml-com.in (sh-*-*): Add m2 and ml/m2 to multidirs.
13424
13425 Sun Nov 5 00:15:41 1995 Per Bothner <bothner@kalessin.cygnus.com>
13426
13427 * configure: Remove dubious bug reporting address.
13428
13429 Fri Nov 3 08:17:54 1995 Per Bothner <bothner@kalessin.cygnus.com>
13430
13431 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): If subdir has
13432 configure script, run that instead of this directory's configure.
13433 In either case, print a message that we're configuring the sub-dir.
13434
13435 Thu Nov 2 23:23:36 1995 Per Bothner <bothner@kalessin.cygnus.com>
13436
13437 * configure.in: Before checking for the existence of various files,
13438 use sed to filter out "target-".
13439
13440 Thu Nov 2 13:24:56 1995 Ian Lance Taylor <ian@cygnus.com>
13441
13442 * Makefile.in (DO_X): Split rule to decrease command line length
13443 for systems with small ARG_MAX values. From phdm@info.ucl.ac.be
13444 (Philippe De Muyter).
13445
13446 Wed Nov 1 15:18:35 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13447
13448 * Makefile.in (all-patch): depend on all-libiberty.
13449
13450 Wed Nov 1 12:23:20 1995 Ian Lance Taylor <ian@cygnus.com>
13451
13452 * configure.in: If the only directory in target_configdirs which
13453 actually exists is libiberty, then set target_configdirs to empty,
13454 to avoid trying to build a target libiberty in a gas or gdb
13455 distribution.
13456
13457 Tue Oct 31 17:52:39 1995 J.T. Conklin <jtc@slave.cygnus.com>
13458
13459 * configure.in (host_makefile_frag): Use m68k-sun-sunos* instead
13460 of m68k-sun-* when selecting mh-sun3 to avoid matching NetBSD/sun3
13461 systems.
13462
13463 Tue Oct 31 16:57:32 1995 Jim Wilson <wilson@chestnut.cygnus.com>
13464
13465 * configure.in (copy_dirs): Use sys-include instead of include
13466 for --with-headers option.
13467
13468 Tue Oct 31 10:29:36 1995 steve chamberlain <sac@slash.cygnus.com>
13469
13470 * Makefile.in, configure.in: Make winsup builds work with
13471 new scheme.
13472
13473 Mon Oct 30 18:57:09 1995 Ian Lance Taylor <ian@cygnus.com>
13474
13475 * configure.in: Build the linker on AIX.
13476
13477 Mon Oct 30 12:27:16 1995 Per Bothner <bothner@kalessin.cygnus.com>
13478
13479 * Makefile.in (CC_FOR_TARGET, CXX_FOR_TARGET): Add $(TARGET_SUBDIR)
13480 where needed.
13481
13482 Mon Oct 30 12:45:25 1995 Doug Evans <dje@cygnus.com>
13483
13484 * Makefile.in (all-gcc): Fix typo.
13485
13486 Sat Oct 28 10:27:59 1995 Per Bothner <bothner@kalessin.cygnus.com>
13487
13488 * Makefile.in ($(CHECK_TARGET_MODULES)): Fix typo.
13489
13490 Fri Oct 27 23:14:12 1995 Per Bothner <bothner@kalessin.cygnus.com>
13491
13492 * configure.in: Rename libFOO to target-libFOO, and xiberty
13493 to target-xiberty, to provide more flexibility.
13494 (target_subdir): Define. Create if cross.
13495 Set TARGET_SUBDIR in Makefile to ${target_subdir}.
13496 * Makefile.in: Rename all-libFOO -> all-target-libFOO, all-xiberty
13497 -> all-target-libiberty, configure-libFOO -> configure-target-libFOO,
13498 check-libFOO -> check-target-libFOO, etc.
13499 ($(DO_X)): Iterate over TARGET_CONFIGDIRS after SUBDIRS.
13500 ($(CONFIGURE_TARGET_MODULES), $(CHECK_TARGET_MODULES),
13501 $(ALL_TARGET_MODULES), $(INSTALL_TARGET_MODULES)): Update accordingly.
13502 (configure-target-XXX): Depend on $(ALL_GCC), not all-gcc, to
13503 allow ALL_GCC="" to only configure.
13504 (DEVO_SUPPORT): Add cfg-ml-com.in and cfg-ml-pos.in.
13505 (ETC_SUPPORT, ETC_SUPPORT_PFX): Merge; update 'taz' accordingly.
13506 (LIBGXX_SUPPORT_DIRS): Remove xiberty.
13507
13508 Sat Oct 28 01:53:49 1995 Ken Raeburn <raeburn@cygnus.com>
13509
13510 * Makefile.in (taz): Build "info" in etc explicitly.
13511
13512 Fri Oct 27 09:32:30 1995 Stu Grossman (grossman@cygnus.com)
13513
13514 * configure.in: Make sure that CC is undefined (as opposed to
13515 null) if toplevel/config/mh-{host} doesn't define it. Fixes a
13516 problem with autoconf trying to configure on a host without GCC.
13517
13518 Thu Oct 26 22:35:01 1995 Stan Shebs <shebs@andros.cygnus.com>
13519
13520 * mpw-configure: Set host alias from choice of host compiler,
13521 only use generic MPW Makefile sed if present, edit a file
13522 named "hacked_Makefile.in" instead of "Makefile.in" if present.
13523 * mpw-README: Add problem notes about CW6 and CW7.
13524
13525 Thu Oct 26 05:45:10 1995 Ken Raeburn <raeburn@kr-pc.cygnus.com>
13526
13527 * Makefile.in (taz): Use ";" instead of ";;".
13528
13529 Wed Oct 25 15:18:24 1995 Per Bothner <bothner@kalessin.cygnus.com>
13530
13531 * Makefile.in (taz): Grep for '^diststuff:' or '^info:' in
13532 sub-directory Makefiles, instead of using DISTSTUFFDIRS and
13533 DISTDOCDIRS.
13534 (DISTSTUFFDIRS, DISTDOCDIRS): Removed - no longer used.
13535 (newlib.tar.gz): Don't pass DISTDOCDIRS to recursive make.
13536
13537 Wed Oct 25 14:43:55 1995 Per Bothner <bothner@kalessin.cygnus.com>
13538
13539 * Makefile.in (DISTDOCDIRS): Remove ld gprof bnutils gas libg++ gdb
13540 and gnats, because they are now subsumed by DISTSTUFFDIRS.
13541 Move bfd to DISTSTUFFDIRS.
13542
13543 Tue Oct 24 18:19:09 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13544
13545 * Makefile.in (X11_LIB): Removed.
13546 (X11_FLAGS_TO_PASS): pass only X11_EXTRA_CFLAGS and X11_EXTRA_LIBS.
13547
13548 * configure.in (host_makefile_frag): mh-aix & mh-sun removed.
13549
13550 Sun Oct 22 13:04:42 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13551
13552 * cfg-ml-com.in (powerpc*): Shorten some of the multilib directory
13553 names.
13554
13555 Fri Oct 20 18:02:10 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13556
13557 * cfg-ml-com.in (powerpc*-eabi*): Add mcall-aixdesc varients.
13558
13559 Thu Oct 19 10:40:57 1995 steve chamberlain <sac@slash.cygnus.com>
13560
13561 * configure.in (i[345]86-*-win32): Always build newlib.
13562 Don't configure cvs, autoconf or texinfo.
13563 * Makefile.in (LD_FOR_TARGET): New.
13564 (BASE_FLAGS_TO_PASS, EXTRA_TARGET_FLAGS, CONFIGURE_TARGET_MODULES):
13565 Pass down LD_FOR_TARGET.
13566
13567 Wed Oct 18 15:53:56 1995 steve chamberlain <sac@slash.cygnus.com>
13568
13569 * winsup: New directory.
13570 * Makefile.in: Build winsup.
13571 * configure.in: Winsup is configured when target is win32.
13572 Can only build win32 target GDB when native.
13573
13574 Mon Oct 16 09:42:31 1995 Jeffrey A Law (law@cygnus.com)
13575
13576 * config.guess: Recognize HP model 819 machines as having
13577 a PA 1.1 processor.
13578
13579 Mon Oct 16 10:49:43 1995 Ian Lance Taylor <ian@cygnus.com>
13580
13581 * configure: Fix sed loop which substitutes for CC and CXX to
13582 avoid bug found in various sed implementations.
13583
13584 Wed Oct 11 16:16:20 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13585
13586 * cfg-ml-com.in (powerpc-*-eabisim): Delete separate rule for
13587 simulator. Use standard powerpc-*-eabi*.
13588
13589 Mon Oct 9 17:21:56 1995 Ian Lance Taylor <ian@cygnus.com>
13590
13591 * configure.in: Stop putting gas and binutils in noconfigdirs for
13592 powerpc-*-aix* and rs6000-*-*.
13593
13594 Mon Oct 9 12:38:40 1995 Michael Meissner <meissner@cygnus.com>
13595
13596 * cfg-ml-com.in (powerpc*-*-eabisim*): Add support for building
13597 -mcall-aixdesc libraries.
13598
13599 Fri Oct 6 16:17:57 1995 Ken Raeburn <raeburn@cygnus.com>
13600
13601 Mon Sep 25 22:49:32 1995 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
13602
13603 * config.sub (arm | armel | armeb): Fix shell syntax.
13604
13605 Fri Oct 6 14:40:28 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13606
13607 * cfg-ml-com.in ({powerpc,rs6000}-ibm-aix*): Add multilibs for
13608 -msoft-float and -mcpu=common support.
13609 (powerpc*-*-eabisim*): Add support for building -mcall-aix
13610 libraries.
13611
13612 Thu Oct 5 13:26:37 1995 Brendan Kehoe <brendan@lisa.cygnus.com>
13613
13614 * configure.in: Allow configuration and build of emacs19 for the alpha.
13615
13616 Wed Oct 4 22:05:36 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13617
13618 * configure.in (CC): Get ^CC, not just any old CC, from
13619 ${host_makefile_frag}.
13620
13621 Wed Oct 4 21:55:00 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13622
13623 * configure.in (CC): Try to get CC from
13624 ${srcdir}/${host_makefile_frag}, not ${host_makefile_frag}.
13625
13626 Wed Oct 4 21:44:12 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13627
13628 * Makefile.in (TARGET_CONFIGDIRS): configure targetdirs
13629 only if it exists in $(srcdir).
13630
13631 Wed Oct 4 11:52:31 1995 Ian Lance Taylor <ian@cygnus.com>
13632
13633 * configure: If CC and CXX are not set in the environment, set
13634 them, based on either an existing Makefile or on searching for gcc
13635 in PATH. Substitute for CC and CXX in Makefile.
13636 * configure.in: Remove libm from target_libs. Separate
13637 target_configdirs from configdirs. If CC is not set in
13638 environment, try to get it from a host Makefile fragment. Rewrite
13639 changes of configdirs to use skipdirs instead. A few minor
13640 tweaks. Take directories out of target_configdirs as they are
13641 taken out of configdirs. Remove existing Makefile files from
13642 subdirectories. Substitute for TARGET_CONFIGDIRS and
13643 CONFIG_ARGUMENTS in Makefile.
13644 * Makefile.in (TARGET_CONFIGDIRS): New variable, automatically set
13645 by configure.in.
13646 (CONFIG_ARGUMENTS): Likewise.
13647 (CONFIGURE_TARGET_MODULES): New variable.
13648 ($(DO_X)): Loop over TARGET_CONFIGDIRS as well as SUBDIRS.
13649 ($(CONFIGURE_TARGET_MODULES)): New target.
13650 (configure-libg++, configure-libio): New targets.
13651 (all-libg++): Depend upon configure-libg++.
13652 (all-libio): Depend upon configure-libio.
13653 (configure-libgloss, all-libgloss): New targets.
13654 (configure-libstdc++): New target.
13655 (all-libstdc++): Depend upon configure-libstdc++.
13656 (configure-librx, all-librx): New targets.
13657 (configure-newlib): New target.
13658 (all-newlib): Depend upon configure-newlib
13659 (configure-xiberty): New target.
13660 (all-xiberty): Depend upon configure-xiberty.
13661
13662 Sat Sep 30 04:32:59 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13663
13664 * configure.in (host i[345]86-*-win32): Expand the
13665 noconfigdirs again.
13666
13667 Thu Sep 28 21:18:49 1995 Stan Shebs <shebs@andros.cygnus.com>
13668
13669 * mpw-configure: Fix sed command file name.
13670
13671 Thu Sep 28 17:39:56 1995 steve chamberlain <sac@slash.cygnus.com>
13672
13673 * configure.in (host i[345]86-*-win32): Reduce the
13674 noconfigdirs again.
13675
13676 Wed Sep 27 12:24:00 1995 Ian Lance Taylor <ian@cygnus.com>
13677
13678 * configure.in: Don't configure ld and gdb for powerpc*-*-winnt*
13679 or powerpc*-*-pe*, since they are not yet supported.
13680
13681 Tue Sep 26 14:30:01 1995 Stan Shebs <shebs@andros.cygnus.com>
13682
13683 Add PowerMac support and many other enhancements.
13684 * mpw-configure: New option --cc to select compiler to use,
13685 paste options set according to --cc into the generated
13686 Makefile, generate the Makefile by sed'ing the Unix Makefile.in
13687 if mpw-make.sed is present.
13688 * mpw-config.in: Don't test for gC1, test for mpw-touch,
13689 add forward includes for PowerPC include files.
13690 * mpw-build.in: Build using Makefile.PPC if present.
13691 (do-byacc, etc): Remove separate version resource builds.
13692 (do-gas): Build "stamps" before "all".
13693 (do-gcc): Build "stamps-h" and "stamps-c" before "all".
13694 * mpw-README: Update to reflect --cc option, PowerMac support,
13695 and recently-reported compatibility problems.
13696
13697 Fri Sep 22 12:15:42 1995 Doug Evans <dje@deneb.cygnus.com>
13698
13699 * cfg-ml-com.in (m68*-*-*): Only build multilibs for
13700 embedded m68k systems (-aout, -coff, -elf, -vxworks).
13701 (--with-multilib-top): Pass to recursive invocations.
13702
13703 Tue Sep 19 13:51:05 1995 J.T. Conklin <jtc@blues.cygnus.com>
13704
13705 * configure.in (noconfigdirs): Disable libg++ and libstdc++ on
13706 v810-*-*.
13707
13708 Mon Sep 18 23:08:26 1995 J.T. Conklin <jtc@rtl.cygnus.com>
13709
13710 * configure.in (noconfigdirs): Disable bfd, binutils, gas, gcc,
13711 gdb, ld and opcodes on v810-*-*.
13712
13713 Tue Sep 12 18:03:31 1995 Ian Lance Taylor <ian@cygnus.com>
13714
13715 * Makefile.in (DO_X): Change do-realclean to do-maintainer-clean.
13716 (local-maintainer-clean): New target.
13717 (maintainer-clean): New target.
13718 (realclean): Just depend upon maintainer-clean.
13719
13720 Fri Sep 8 17:11:14 1995 J.T. Conklin <jtc@rtl.cygnus.com>
13721
13722 * configure.in (noconfigdirs): Disable gdb on m68k-*-netbsd*.
13723
13724 Fri Sep 8 16:46:29 1995 Ian Lance Taylor <ian@cygnus.com>
13725
13726 * configure.in: Build ld in mips*-*-bsd* case.
13727
13728 Thu Sep 7 20:03:41 1995 Ken Raeburn <raeburn@cygnus.com>
13729
13730 * config.sub: Accept -lites* OS. From Ian Dall.
13731
13732 Fri Sep 1 08:06:58 1995 James G. Smith <jsmith@beauty.cygnus.com>
13733
13734 * config.sub: recognise mips64vr4300 and mips64vr4300el as valid
13735 targets.
13736
13737 Wed Aug 30 21:06:50 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13738
13739 * configure.in: treat i386-win32 canadian cross the same as
13740 i386-go32 canadian cross.
13741
13742 Thu Aug 24 14:53:20 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13743
13744 * cfg-ml-com.in (powerpc*-*-eabisim): Add support for PowerPC
13745 running under the simulator to build a reduced set of libraries.
13746 (powerpc-*-eabiaix): Add fine grained multilib support added to
13747 other powerpc targets yesterday.
13748
13749 Wed Aug 23 09:41:56 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13750
13751 * cfg-ml-com.in (powerpc*): Add support for -disable-biendian,
13752 -disable-softfloat, -disable-relocatable, -disable-aix, and
13753 -disable-sysv to control which multilib libraries get built.
13754
13755 Thu Aug 17 16:03:41 1995 Ken Raeburn <raeburn@kr-laptop.cygnus.com>
13756
13757 * configure: Add Makefile.tem to list of files to remove in trap
13758 handler.
13759
13760 Mon Aug 14 19:27:56 1995 Per Bothner <bothner@kalessin.cygnus.com>
13761
13762 * config.guess (*Linux*): Add missing "exit"s.
13763 Also, need specific check for alpha-unknown-linux (uses COFF).
13764
13765 Fri Aug 11 15:38:20 1995 Per Bothner <bothner@kalessin.cygnus.com>
13766
13767 * config.guess: Merge with FSF:
13768
13769 Wed Jun 28 17:57:27 1995 David Edelsohn <edelsohn@mhpcc.edu>
13770 * config.guess (AIX4): More robust release numbering discovery.
13771
13772 Thu Jun 22 19:01:24 1995 Kenneth Stailey (kstailey@eagle.dol-esa.gov)
13773 * config.guess (i386-sequent-ptx): Properly get version number.
13774
13775 Thu Jun 22 18:36:42 1995 Uwe Seimet (seimet@iris1.chemie.uni-kl.de)
13776 * config.guess (mips:*:4*:UMIPS): New case.
13777
13778 Mon Aug 7 09:21:35 1995 Doug Evans <dje@canuck.cygnus.com>
13779
13780 * configure.in (i386-go32 host): Fix typo (deja-gnu -> dejagnu).
13781 (i386-win32 host): Likewise. Don't build readline.
13782
13783 Sat Aug 5 09:51:49 1995 Fred Fish <fnf@rtl.cygnus.com>
13784
13785 * Makefile.in (GDBTK_SUPPORT_DIRS): Define and pass as part of
13786 SUPPORT_FILES to submakes.
13787
13788 Fri Aug 4 13:04:36 1995 Fred Fish <fnf@cygnus.com>
13789
13790 * Makefile.in (GDB_SUPPORT_DIRS): Add utils.
13791 (DEVO_SUPPORT): Add mpw-README, mpw-build.in, mpw-config.h and
13792 mpw-configure.
13793
13794 Wed Aug 2 16:32:40 1995 Ken Raeburn <raeburn@cygnus.com>
13795
13796 * configure.in (appdirs): Use =, not ==, in test expression when
13797 trying to build the text to print in the warning message for
13798 Solaris users.
13799
13800 Mon Jul 31 09:56:18 1995 steve chamberlain <sac@slash.cygnus.com>
13801
13802 * cfg-ml-com.in (z8k-*-coff): Add 'std' multilib build.
13803
13804 Fri Jul 28 00:16:31 1995 Jeffrey A. Law <law@rtl.cygnus.com>
13805
13806 * config.guess: Recognize lynx-2.3.
13807
13808 Thu Jul 27 15:47:59 1995 steve chamberlain <sac@slash.cygnus.com>
13809
13810 * config.sub (z8ksim): Deleted
13811 (z8k-*-coff): New, this is the one true name of the target.
13812
13813 Thu Jul 27 14:33:33 1995 Doug Evans <dje@canuck.cygnus.com>
13814
13815 * cfg-ml-pos.in (dotdot): Work around SunOS sed bug.
13816
13817 Thu Jul 27 13:31:05 1995 Fred Fish (fnf@cygnus.com)
13818
13819 * config.guess (*:Linux:*:*): First try asking the linker what the
13820 default object file format is (elf, aout, or coff). Then if this
13821 fails, try previous methods.
13822
13823 Thu Jul 27 11:28:17 1995 J.T. Conklin <jtc@rtl.cygnus.com>
13824
13825 * configure.in: Don't build newlib for *-*-vxworks5.1.
13826
13827 Thu Jul 27 11:18:47 1995 Brendan Kehoe <brendan@lisa.cygnus.com>
13828
13829 * configure.in: Don't build newlib for a29k-*-vxworks5.1.
13830 * test-build.mk: Add setting of --with-headers for a29k-vxworks5.1.
13831
13832 Tue Jul 25 21:25:39 1995 Doug Evans <dje@canuck.cygnus.com>
13833
13834 * cfg-ml-pos.in (MULTITOP): Trim excess trailing "/.".
13835
13836 Fri Jul 21 10:41:12 1995 Doug Evans <dje@canuck.cygnus.com>
13837
13838 * cfg-ml-com.in: New file.
13839 * cfg-ml-pos.in: New file.
13840
13841 Wed Jul 19 00:37:27 1995 Jeffrey A. Law <law@rtl.cygnus.com>
13842
13843 * COPYING.NEWLIB: Add HP free copyright to list.
13844
13845 Tue Jul 18 10:58:51 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13846
13847 * config.sub: Recognize -eabi* for the system, not just -eabi.
13848
13849 Mon Jul 3 13:44:51 1995 Steve Chamberlain <sac@slash.cygnus.com>
13850
13851 * Makfile.in (DLLTOOL_FOR_TARGET): New name, pass it down.
13852 * config.sub, configure.in (win32): New target and host.
13853
13854 Wed Jun 28 23:57:08 1995 Steve Chamberlain <sac@slash.cygnus.com>
13855
13856 * configure.in: Add i386-pe configuration.
13857
13858 Fri Jun 23 14:28:44 1995 Stan Shebs <shebs@andros.cygnus.com>
13859
13860 * mpw-build.in (install): Install GDB after LD.
13861
13862 Thu Jun 22 17:10:53 1995 Stan Shebs <shebs@andros.cygnus.com>
13863
13864 * mpw-config.in (elf/mips.h): Always forward-include, needed
13865 for GDB to build.
13866
13867 Wed Jun 21 15:17:30 1995 Rob Savoye <rob@darkstar.cygnus.com>
13868
13869 * testsuite: New directory for customer acceptance and whole tool
13870 chain tests.
13871
13872 Wed Jun 21 16:50:29 1995 Ken Raeburn <raeburn@cujo.cygnus.com>
13873
13874 * configure: If per-host line isn't found, but AC_OUTPUT is found
13875 and a configure script exists, run it instead.
13876
13877 Thu Jun 15 21:09:24 1995 Per Bothner <bothner@kalessin.cygnus.com>
13878
13879 * config.guess: Update from FSF, for alpha-dec-winnt3.5 and Crays.
13880
13881 Tue Jun 13 21:43:27 1995 Rob Savoye <rob@darkstar.cygnus.com>
13882
13883 * configure: Set build_{cpu,vendor,os,alias} to host values when
13884 --build isn't specified.
13885
13886 Mon Jun 5 18:26:36 1995 Jason Merrill <jason@phydeaux.cygnus.com>
13887
13888 * Makefile.in (PICFLAG, PICFLAG_FOR_TARGET): New macros.
13889 (FLAGS_TO_PASS): Pass them.
13890 (EXTRA_TARGET_FLAGS): Ditto.
13891
13892 Wed May 31 22:27:42 1995 Jim Wilson <wilson@chestnut.cygnus.com>
13893
13894 * Makefile.in (all-libg++): Depend on all-libstdc++.
13895
13896 Thu May 25 22:40:59 1995 J.T. Conklin <jtc@rtl.cygnus.com>
13897
13898 * configure.in (noconfigdirs): Enable all packages for
13899 i386-unknown-netbsd.
13900
13901 Sat May 20 13:22:31 1995 Angela Marie Thomas <angela@cirdan.cygnus.com>
13902
13903 * configure.in (noconfigdirs): Don't configure tk for i386-go32
13904 hosted builds (DOS builds)
13905
13906 Thu May 18 18:08:49 1995 Ken Raeburn <raeburn@kr-laptop.cygnus.com>
13907
13908 Changes for ARM based on patches from Richard Earnshaw:
13909 * config.sub: Handle armeb and armel.
13910 * configure.in: Omit arm linker only for riscix.
13911
13912 Thu May 11 17:23:26 1995 Per Bothner <bothner@kalessin.cygnus.com>
13913
13914 * config.guess: Update from FSF.
13915
13916 Tue May 9 15:52:05 1995 Michael Meissner <meissner@cygnus.com>
13917
13918 * config.sub: Recognize powerpcle as the little endian varient of
13919 the PowerPC. Recgonize ppc as a PowerPC variant, and ppcle as a
13920 powerpcle variant. Convert pentium into i586, not i486. Add p5
13921 alias for i586. Map new x86 variants p6, k5, nexgen into i586
13922 temporarily.
13923
13924 Tue May 2 16:29:41 1995 Jeff Law (law@snake.cs.utah.edu)
13925
13926 * configure.in (hppa*-*-lites*): Treat like hppa*-*-*elf*.
13927
13928 Sun Apr 30 21:38:09 1995 Jeff Law (law@snake.cs.utah.edu)
13929
13930 * config.sub: Accept -lites* as a basic system type.
13931
13932 Thu Apr 27 11:33:29 1995 Michael Meissner (meissner@cygnus.com)
13933
13934 * config.guess (*:Linux:*:*): Check for whether the pre-BFD linker is
13935 installed, and if so return linuxoldld as the system name.
13936
13937 Wed Apr 26 10:59:02 1995 Jeff Law (law@snake.cs.utah.edu)
13938
13939 * config.guess: Add hppa1.1-hp-lites support.
13940
13941 Tue Apr 25 11:08:11 1995 Rob Savoye <rob@darkstar.cygnus.com>
13942
13943 * configure.in: Don't build newlib for m68k-vxworks5.1.
13944
13945 Wed Apr 19 17:02:43 1995 Jim Wilson <wilson@chestnut.cygnus.com>
13946
13947 * configure.in (mips-sgi-irix6): Use mh-irix5.
13948
13949 Fri Apr 14 15:21:17 1995 Doug Evans <dje@chestnut.cygnus.com>
13950
13951 * Makefile.in (all-gcc): Depend on all-ld (for libgcc1-test).
13952
13953 Wed Apr 12 16:06:01 1995 Jason Merrill <jason@phydeaux.cygnus.com>
13954
13955 * test-build.mk: Enable building of shared libraries on IRIX 5 and
13956 OSF/1. Fix compiler flags.
13957 * build-all.mk: Support Linux and OSF/1 3.0. Fix compiler flags.
13958
13959 Tue Apr 11 18:55:40 1995 Doug Evans <dje@canuck.cygnus.com>
13960
13961 * configure.in: Recognize --with-newlib.
13962 (sparc-*-sunos4*): Build sim, dejagnu, expect, tcl if cross target.
13963
13964 Mon Apr 10 14:38:20 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13965
13966 * Makefile.in: move {all,check,install}-gdb from *_MODULES
13967 to *_X11_MODULES due to gdbtk needing X include files et al.
13968
13969 Mon Apr 10 11:42:22 1995 Stan Shebs <shebs@andros.cygnus.com>
13970
13971 Merge in support for Mac MPW as a host.
13972 (Old change descriptions retained for informational value.)
13973
13974 * mpw-config.in: Add generic include forwards for cpu-specific
13975 include files in aout and elf directories.
13976
13977 * mpw-configure: Added copyright.
13978 * mpw-config.in: Check for presence of required build tools.
13979 (target_libs): Add newlib.
13980 (target_tools): Add examples.
13981 (Read Me): Generate as "Read Me for MPW" instead.
13982 * mpw-build.in: Base sub-builds on all-foo instead of do-foo.
13983 (all-byacc, do-byacc, all-flex, do-flex, do-newlib): New actions.
13984 (do-gas, do-gcc, do-gdb, do-ld): Build Version.r first.
13985
13986 * mpw-configure: Remove subdir-specific makefile hackery,
13987 delete mk.tmp after using it.
13988
13989 * mpw-build.in (all): Display start and end times.
13990
13991 * mpw-configure (host_canonical): Set.
13992 (target_cpu): Always add to makefiles.
13993 (ARCHDEFS, EMUL): Add to makefile only if nonempty.
13994 (TM_FILE, XM_FILE, NM_FILE): No longer add to makefile.
13995 (mpw-mh-mpw): Look for in srcdir and srcroot.
13996 Use sed instead of mpw-edit-prefix to edit prefix definitions.
13997
13998 * mpw-build.in: (install-only): New target.
13999
14000 * mpw-configure (host_alias, target_alias): Rename from hostalias
14001 and targetalias, add into generated Makefile.
14002 (mk.tmp): If present, add into generated Makefile.
14003 * mpw-build.in (all-gas): Build config.h first before gas proper.
14004
14005 * mpw-configure (config.status): Write only if changed.
14006 * mpw-config.in (readline): Configure it (not built, just used for
14007 definitions).
14008
14009 * mpw-config.in (elf/mips.h): Add a forward include.
14010
14011 * mpw-config.in: Forward-include most .h files in include into
14012 extra-include.
14013 (readline): Don't build.
14014 mpw-build.in (install): Install GDB.
14015
14016 * mpw-configure (prefix, mpw_prefix): Handle it.
14017 * mpw-config.in (mmalloc, readline): Don't configure.
14018 * mpw-build.in (thisscript): Rename to ThisScript.
14019 Use mpw-build instead of BuildProgram everywhere.
14020 (mmalloc, readline): Don't build.
14021 * mpw-README: New file, basic documentation about the MPW port.
14022
14023 * mpw-config.in: Use forward-include to create include files.
14024
14025 * mpw-configure: Add more things to the top of each configured
14026 Makefile, including contents of config/mpw-mh-mpw.
14027 * mpw-config.in (extra-include): Create this directory and fill it
14028 with Posix-like include files when configuring.
14029
14030 * config.sub (apple, mac, mpw): Add various aliases.
14031
14032 * mpw-build.in: New file, top-level build script fragment for MPW.
14033 * mpw-configure: New file, configure script for MPW.
14034 * mpw-config.in: New file, config fragment for MPW.
14035
14036 Fri Apr 7 19:33:16 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
14037
14038 * configure.in (host_libs): Remove glob, since it is gone from the
14039 sources.
14040
14041 Fri Mar 31 11:36:17 1995 Jason Molenda (crash@phydeaux.cygnus.com)
14042
14043 * Makefile.in: define empty GDB_NLM_DEPS var.
14044
14045 * configure.in(target_makefile_frag): use config/mt-netware
14046 for netware targets.
14047
14048 Thu Mar 30 13:51:43 1995 Ian Lance Taylor <ian@cygnus.com>
14049
14050 * config.sub: Merge in recent FSF changes. Remove linux special
14051 cases.
14052
14053 Tue Mar 28 14:47:34 1995 Jason Molenda (crash@phydeaux.cygnus.com)
14054
14055 Revert this change:
14056
14057 Tue Mar 30 10:03:09 1993 Ian Lance Taylor (ian@cygnus.com)
14058
14059 * build-all.mk: Use CC=cc -Xs on Solaris.
14060
14061 Tue Mar 21 10:43:32 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
14062
14063 * glob/*: Removed. Schauer's 24 Feb 1994 readline change made us
14064 stop using it.
14065 * Makefile.in: Nuke all references to glob subdirectory.
14066
14067 Thu Mar 16 13:35:30 1995 Jason Merrill <jason@phydeaux.cygnus.com>
14068
14069 * configure.in: Fix --enable-shared logic in per-host.
14070
14071 Mon Mar 13 12:33:15 1995 Ian Lance Taylor <ian@cygnus.com>
14072
14073 * configure.in (*-hp-hpux[78]*): Use mh-hpux8.
14074
14075 Mon Mar 6 10:21:58 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
14076
14077 * configure.in (noconfigdirs): Don't build gas on AIX, for
14078 powerpc*-*-aix* as well as for rs6000*-*-aix*.
14079
14080 Wed Mar 1 12:51:53 1995 Ian Lance Taylor <ian@cygnus.com>
14081
14082 * configure: Fix --cache-file to work if the file argument is a
14083 relative path.
14084
14085 Tue Feb 28 17:36:07 1995 Ian Lance Taylor <ian@cygnus.com>
14086
14087 * configure: If the --cache-file is used, pass it down to
14088 configure in subdirectories.
14089
14090 Mon Feb 27 12:52:46 1995 Kung Hsu <kung@mexican.cygnus.com>
14091
14092 * config.sub: add vxworks29k configuration.
14093
14094 Fri Feb 10 16:12:26 1995 Ken Raeburn <raeburn@cujo.cygnus.com>
14095
14096 * Makefile.in (taz): Do "diststuff" part quietly.
14097
14098 Sun Feb 5 14:16:35 1995 Doug Evans <dje@canuck.cygnus.com>
14099
14100 * config.sub: Mini-merge with gcc/config.sub.
14101
14102 Sat Feb 4 12:11:35 1995 Jim Wilson <wilson@chestnut.cygnus.com>
14103
14104 * config.guess (IRIX): Sed - to _.
14105
14106 Fri Feb 3 11:54:42 1995 J.T. Conklin <jtc@rtl.cygnus.com>
14107
14108 * Makefile.in (source-vault, binary-vault): New targets.
14109
14110 Thu Jan 26 13:00:11 1995 Michael Meissner <meissner@cygnus.com>
14111
14112 * config.sub: Recognize -eabi as a basic system type.
14113
14114 Thu Jan 12 13:13:23 1995 Jason Merrill <jason@phydeaux.cygnus.com>
14115
14116 * configure.in (enable_shared stuff): Fix typo.
14117
14118 Thu Jan 12 01:36:51 1995 deanm@medulla.LABS.TEK.COM (Dean Messing)
14119
14120 * Makefile.in (BASE_FLAGS_TO_PASS): Fix typo in passing LIBCXXFLAGS*.
14121
14122 Wed Jan 11 16:29:53 1995 Jason Merrill <jason@phydeaux.cygnus.com>
14123
14124 * Makefile.in (LIBCXXFLAGS_FOR_TARGET): Add -fno-implicit-templates.
14125
14126 Mon Jan 9 12:48:01 1995 Jim Kingdon <kingdon@lioth.cygnus.com>
14127
14128 * configure.in (rs6000-*-*): Don't build gas.
14129
14130 Wed Jan 4 23:53:49 1995 Ian Lance Taylor <ian@tweedledumb.cygnus.com>
14131
14132 * Makefile.in: Use /x/x/ instead of /brokensed/brokensed/, to
14133 reduce command line length.
14134 (AS_FOR_TARGET): Check for as.new, not Makefile.
14135 (NM_FOR_TARGET): Check for nm.new, not Makefile.
14136
14137 Wed Jan 4 13:02:39 1995 Per Bothner <bothner@kalessin.cygnus.com>
14138
14139 * config.guess: Merge from FSF.
14140
14141 Thu Dec 15 17:11:37 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
14142
14143 * configure: Don't use $ when handling program_suffix.
14144
14145 Mon Dec 12 12:09:37 1994 Stu Grossman (grossman@cygnus.com)
14146
14147 * configure.in: Configure tk for hppa/hpux.
14148
14149 Fri Dec 2 15:55:38 1994 Per Bothner <bothner@kalessin.cygnus.com>
14150
14151 * Makefile.in (LIBGXX_SUPPORT_DIRS): Add libstdc++.
14152
14153 Tue Nov 29 19:37:56 1994 Per Bothner <bothner@kalessin.cygnus.com>
14154
14155 * Makefile.in: Move -fno-implicit-template from CXXFLAGS
14156 to LIBCXXFLAGS. Tests are better run without it.
14157
14158 Wed Nov 23 10:29:25 1994 Brendan Kehoe (brendan@lisa.cygnus.com)
14159
14160 * Makefile.in (all-ispell): Depend on all-emacs19 instead of all-emacs.
14161
14162 Mon Nov 21 11:14:01 1994 J.T. Conklin <jtc@rtl.cygnus.com>
14163
14164 * configure.in (*-*-netware*): Don't configure xiberty.
14165
14166 Mon Nov 14 08:49:15 1994 Stu Grossman (grossman@cygnus.com)
14167
14168 * configure.in: Remove tk from native_only list.
14169
14170 Fri Nov 11 15:31:26 1994 Bill Cox (bill@rtl.cygnus.com)
14171
14172 * build-all.mk: Add mips-ncd-elf target to sun4 targets
14173 for special NCD build.
14174
14175 Mon Nov 7 20:58:17 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
14176
14177 * Makefile.in (DEVO_SUPPORT): Remove configure.bat and
14178 makeall.bat, they're only useful for binutils snapshots.
14179 (binutils.tar.gz, gas+binutils.tar.gz): Add configure.bat and
14180 makeall.bat to specified SUPPORT_FILES.
14181
14182 Mon Nov 7 17:25:18 1994 Bill Cox (bill@cirdan.cygnus.com)
14183
14184 * build-all.mk: Add Ericsson targets to sun4 and solaris
14185 hosts. Add BNR's sun4 target to solaris host, so their
14186 build-from-source will be tested in-house first.
14187
14188 Sat Nov 5 18:43:30 1994 Jason Merrill (jason@phydeaux.cygnus.com)
14189
14190 * Makefile.in (LIBCFLAGS): New variable.
14191 (CFLAGS_FOR_TARGET): Ditto.
14192 (LIBCFLAGS_FOR_TARGET): Ditto.
14193 (LIBCXXFLAGS): Ditto.
14194 (CXXFLAGS_FOR_TARGET): Ditto.
14195 (LIBCXXFLAGS_FOR_TARGET): Ditto.
14196 (BASE_FLAGS_TO_PASS): Pass them.
14197 (EXTRA_TARGET_FLAGS): Ditto.
14198
14199 * configure.in: Support --enable-shared.
14200
14201 Sat Nov 5 15:44:00 1994 Per Bothner <bothner@kalessin.cygnus.com>
14202
14203 * configure.in (target_libs): Include libstdc++ again.
14204 * config.guess: Update from FSF (for FreeBSD).
14205
14206 Thu Nov 3 16:32:30 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
14207
14208 * Makefile.in (DEVO_SUPPORT): Include configure.bat and
14209 makeall.bat.
14210 (DISTDOCDIRS): Add `etc'.
14211 (ETC_SUPPORT_PFX): New variable.
14212 (taz): Include anything from etc starting with a word in
14213 ETC_SUPPORT_PFX.
14214
14215 Wed Oct 26 16:19:35 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
14216
14217 * config.sub: Update for recent FSF changes. Remove obsolete
14218 h8300hds entry. Add -windows* and -osx as basic os. Minor
14219 spacing changes.
14220
14221 Thu Oct 20 18:41:56 1994 Per Bothner <bothner@kalessin.cygnus.com>
14222
14223 * configure.in (target_libs): Remove libstdc++ for libg++-2.6.1.
14224
14225 * config.guess: Merge with FSF.
14226 * configure.in: Match on i?86-ncr-sysv4.3, not i?86-ncr-sysv43.
14227
14228 Thu Oct 20 19:26:56 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
14229
14230 * configure: Since the "trap 0" handler will override the exit
14231 status on many systems, only use it for "exit 1", and make it set
14232 a non-zero exit status; reset it before "exit 0". Also, check
14233 exit status of config.sub, and error out if it failed.
14234
14235 Wed Oct 19 18:49:55 1994 Rob Savoye (rob@cygnus.com)
14236
14237 * Makefile.in: (ALL_TARGET_MODULES,INSTALL_TARGET_MODULES) Build
14238 and install libgloss.
14239
14240 Tue Oct 18 15:25:24 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
14241
14242 * Makefile.in (all-binutils): Depend upon all-byacc.
14243
14244 * configure.in: Don't build emacs on Irix 5.
14245
14246 Mon Oct 17 16:22:12 1994 J.T. Conklin (jtc@phishhead.cygnus.com)
14247
14248 * configure.in (*-*-netware*): Add libio.
14249
14250 Thu Oct 13 15:51:20 1994 Jason Merrill (jason@phydeaux.cygnus.com)
14251
14252 * Makefile.in (ALL_TARGET_MODULES): Add libstdc++.
14253 (CHECK_TARGET_MODULES): Ditto.
14254 (INSTALL_TARGET_MODULES): Ditto.
14255 (TARGET_LIBS): Ditto.
14256 (all-libstdc++): Note dependencies.
14257
14258 Thu Oct 13 01:43:08 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
14259
14260 * Makefile.in (BINUTILS_SUPPORT_DIRS): Add gas.
14261
14262 Tue Oct 11 12:12:29 1994 Jason Merrill (jason@phydeaux.cygnus.com)
14263
14264 * Makefile.in (CXXFLAGS): Use -fno-implicit-templates instead of
14265 -fexternal-templates.
14266
14267 * configure.in (target_libs): Add libstdc++.
14268 (noconfigdirs): Add libstdc++ as appropriate.
14269
14270 Thu Oct 6 18:00:54 1994 Per Bothner (bothner@kalessin.cygnus.com)
14271
14272 * config.guess: Update from FSF.
14273
14274 Tue Oct 4 12:05:42 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
14275
14276 * configure: Use ${config_shell} when running ${configsub}.
14277
14278 Mon Oct 3 14:28:34 1994 Doug Evans <dje@canuck.cygnus.com>
14279
14280 * config.sub: No longer recognize h8300h.
14281
14282 Mon Oct 3 12:40:54 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
14283
14284 * config.sub: Remove extraneous differences between config.sub and
14285 gcc/config.sub.
14286
14287 Sat Oct 1 00:23:12 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
14288
14289 * Makefile.in (DISTSTUFFDIRS): Add gas.
14290
14291 Thu Sep 22 19:04:55 1994 Doug Evans (dje@canuck.cygnus.com)
14292
14293 * COPYING.NEWLIB: New file.
14294
14295 Mon Sep 19 18:25:40 1994 Per Bothner (bothner@kalessin.cygnus.com)
14296
14297 * config.guess (HP-UX): Patch from Harlan Stenn
14298 <harlan@landmark.com> to also emit release level.
14299
14300 Wed Sep 7 13:15:25 1994 Jim Wilson (wilson@sphagnum.cygnus.com)
14301
14302 * config.guess (sun4*:SunOS:*:*): Change '-JL' to '_JL'.
14303
14304 Tue Sep 6 23:23:18 1994 Per Bothner (bothner@kalessin.cygnus.com)
14305
14306 * config.sub: Merge nextstep cleanup from FSF.
14307
14308 Mon Sep 5 05:01:30 1994 Ken Raeburn (raeburn@kr-pc.cygnus.com)
14309
14310 * configure.in (arm-*-*): Don't configure ld for this target.
14311
14312 Thu Sep 1 09:35:00 1994 J.T. Conklin (jtc@phishhead.cygnus.com)
14313
14314 * configure.in (*-*-netware): don't configure libg++, libio,
14315 librx, or newlib.
14316
14317 Wed Aug 31 13:52:08 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14318
14319 * configure.in (alpha-dec-osf*): Use osf*, not osf1*. Don't
14320 configure ld--it works, but it doesn't support shared libraries.
14321
14322 Sun Aug 28 18:13:45 1994 Per Bothner (bothner@kalessin.cygnus.com)
14323
14324 * config.guess (*-unknown-freebsd*): Get rid of possible
14325 trailing "(Release)" in version string.
14326 Patch from Paul Richards <paul@isl.cf.ac.uk>.
14327
14328 Sat Aug 27 15:00:49 1994 Per Bothner (bothner@kalessin.cygnus.com)
14329
14330 * config.guess: Fix i486-ncr-sysv43 -> i486-ncr-sysv4.3.
14331 Fix type: *-next-neststep -> *-next-nextstep.
14332
14333 * config.guess: Merge from FSF:
14334
14335 Fri Aug 26 18:45:25 1994 Philippe De Muyter (phdm@info.ucl.ac.be)
14336
14337 * config.guess: Recognize powerpc-ibm-aix3.2.5.
14338
14339 Wed Apr 20 06:36:32 1994 Philippe De Muyter (phdm@info.ucl.ac.be)
14340
14341 * config.guess: Recognize UnixWare 1.1 (UNAME_SYSTEM is SYSTEM_V
14342 instead of UNIX_SV for UnixWare 1.0).
14343
14344 Sat Aug 27 01:56:30 1994 Stu Grossman (grossman@cygnus.com)
14345
14346 * Makefile.in (all-gdb): Add dependencies on all-gcc and all-ld
14347 to make gdb/nlm/* build after the compiler and linker.
14348
14349 Fri Aug 26 14:30:05 1994 Per Bothner (bothner@kalessin.cygnus.com)
14350
14351 * config.guess (netbsd, freebsd, linux): Accept any machine,
14352 not just i[34]86.
14353 (m68k-atari-sysv4): Relocate to match FSF version.
14354
14355 * config.guess: More merges from the FSF:
14356
14357 Add a space before function call or macro invocation.
14358
14359 Tue May 10 16:53:55 1994 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
14360
14361 * config.guess: Add trap cmd to remove dummy.c and dummy when
14362 interrupted.
14363
14364 Wed Apr 20 18:07:13 1994 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
14365
14366 * config.guess (dummy.c): Redirect stderr for `hostinfo' command.
14367 (dummy): Redirect stderr from compilation of dummy.c.
14368
14369 Sat Apr 9 14:59:28 1994 Christian Kranz (kranz@sent5.uni-duisburg.de)
14370
14371 * config.guess: Distinguish between NeXTStep 2.1 and 3.x.
14372
14373 Fri Aug 26 13:42:20 1994 Ken Raeburn (raeburn@kr-laptop.cygnus.com)
14374
14375 * configure: Accept and ignore --cache*, for compatibility with
14376 new autoconf.
14377
14378 Fri Aug 26 13:05:27 1994 Per Bothner (bothner@kalessin.cygnus.com)
14379
14380 * config.guess: Merge from FSF:
14381
14382 Thu Aug 25 20:28:51 1994 Richard Stallman <rms@mole.gnu.ai.mit.edu>
14383
14384 * config.guess (Pyramid*:OSx*:*:*): New case.
14385 (PATH): Add /.attbin at end for finding uname.
14386 (dummy.c): Handle i860-alliant-bsd. Follow whitespace conventions.
14387
14388 Wed Aug 17 18:21:02 1994 Tor Egge (tegge@pvv.unit.no)
14389
14390 * config.guess (M88*:DolphinOS:*:*): New case.
14391
14392 Thu Aug 11 17:00:13 1994 Stan Cox (coxs@dg-rtp.dg.com)
14393
14394 * config.guess (AViiON:dgux:*:*): Use TARGET_BINARY_INTERFACE
14395 to select whether to use ELF or COFF.
14396
14397 Sun Jul 24 16:20:53 1994 Richard Stallman <rms@mole.gnu.ai.mit.edu>
14398
14399 * config.guess: Recognize i860-stardent-sysv and i860-unknown-sysv.
14400
14401 Sun May 1 10:23:10 1994 Richard Stallman (rms@mole.gnu.ai.mit.edu)
14402
14403 * config.guess: Guess the OS version for HPUX.
14404
14405 Tue Mar 1 21:53:03 1994 Karl Heuer (kwzh@hal.gnu.ai.mit.edu)
14406
14407 * config.guess (UNAME_VERSION): Recognize aix3.2.4 and aix3.2.5.
14408
14409 Fri Aug 26 11:19:08 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14410
14411 * configure.in: Recognize --with-headers, --with-libs, and
14412 --without-newlib.
14413 * Makefile.in (all-xiberty): Depend upon all-ld.
14414
14415 Wed Aug 24 12:36:50 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14416
14417 * configure.in: Change i[34]86 to i[345]86.
14418
14419 Mon Aug 22 10:58:33 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14420
14421 * configure (version): A few more tweaks to help message.
14422
14423 Fri Aug 19 12:40:25 1994 Per Bothner (bothner@kalessin.cygnus.com)
14424
14425 * Makefile.in: Remove (for now) librx as a host library,
14426 now that we're building it for target.
14427
14428 Fri Aug 19 10:49:17 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14429
14430 * configure: Fix up help message; from karl@owl.hq.ileaf.com
14431 (Karl Berry).
14432
14433 Tue Aug 16 16:11:08 1994 Per Bothner (bothner@kalessin.cygnus.com)
14434
14435 * configure.in: Also configure librx.
14436
14437 Mon Aug 15 16:51:45 1994 Per Bothner (bothner@kalessin.cygnus.com)
14438
14439 * Makefile.in: Update various rules to reflect that librx
14440 is now needed for libg++.
14441
14442 Fri Aug 12 18:07:21 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14443
14444 * config.sub: Accept mips64orion and mips64orionel as a CPU name.
14445
14446 Mon Aug 8 11:36:17 1994 Stan Shebs (shebs@andros.cygnus.com)
14447
14448 * configure.in: Configure the examples directory.
14449
14450 Thu Aug 4 16:12:36 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14451
14452 * configure: Simplify Jun 2 1994 change.
14453
14454 Wed Aug 3 04:58:16 1994 D. V. Henkel-Wallace (gumby@cygnus.com)
14455
14456 * change CC to /usr/latest/bin/gcc for lynx host builds, since
14457 /bin/gcc isn't good enough to build gcc.
14458
14459 Wed Jul 27 09:07:14 1994 Fred Fish (fnf@cygnus.com)
14460
14461 * Makefile.in (GDB_SUPPORT_FILES): Remove
14462 (setup-dirs-gdb, gdb.tar.gz, make-gdb.tar.gz): Remove old rules.
14463 (gdb.tar.gz): Add new rule to use standard distribution building
14464 mechanism.
14465
14466 Mon Jul 25 11:10:06 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14467
14468 * configure.in: Warn about use of /usr/ucb/cc on Solaris. From
14469 Bill Cox <bill@cygnus.com>.
14470
14471 Sat Jul 23 12:19:46 1994 Per Bothner (bothner@kalessin.cygnus.com)
14472
14473 * config.guess: Recognize ISC. Patch from kwzh@gnu.ai.mit.edu.
14474
14475 Fri Jul 22 17:53:59 1994 Stu Grossman (grossman@cygnus.com)
14476
14477 * configure: Search current dir first in .gdbinit.
14478
14479 Fri Jul 22 11:28:30 1994 Per Bothner (bothner@kalessin.cygnus.com)
14480
14481 * config.sub: Recognize freebsd (merged from gcc config.sub).
14482
14483 Thu Jul 21 14:10:52 1994 Per Bothner (bothner@kalessin.cygnus.com)
14484
14485 * config.sub: Refer to NeXT's operating system as nextstep.
14486
14487 * config.sub (case $basic_machine): Re-order the cases, to match
14488 the order in the FSF version (which is mostly alphabethical).
14489 Merge in some additions and changes from the FSF.
14490
14491 Sat Jul 16 12:03:08 1994 Stan Shebs (shebs@andros.cygnus.com)
14492
14493 * config.guess: Recognize m68k-atari-sysv4 and m88k-harris-csux7.
14494 * config.sub: Recognize cxux7.
14495 * configure.in: Use mh-cxux for m88k-harris-cxux*.
14496
14497 Mon Jul 11 14:37:39 1994 Per Bothner (bothner@kalessin.cygnus.com)
14498
14499 * config.sub: Fix typo powerpc -> powerpc-*.
14500
14501 Sat Jul 9 13:03:43 1994 Michael Tiemann (tiemann@blues.cygnus.com)
14502
14503 * Makefile.in: `all-emacs19' depends on `all-byacc'.
14504
14505 * Makefile.in: Add all-emacs19 and install-emacs19 rules (in
14506 parallel with all-emacs and install-emacs). Top-level command
14507 `make all-emacs19 CC=gcc' now behaves as `make all-emacs CC=gcc'.
14508
14509 Thu Jun 30 16:53:42 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14510
14511 * test-build.mk ($(host)-stamp-stage2-installed): Remove
14512 $(relbindir)/make before doing ``make install'', and use
14513 $(GNU_MAKE) while doing it. Avoids problem on SunOS with
14514 installing over running make binary.
14515 ($(host)-stamp-stage3-installed): Likewise.
14516
14517 Tue Jun 28 13:43:25 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14518
14519 * config.guess: Recognize Mach.
14520
14521 Mon Jun 27 16:41:14 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14522
14523 * configure: Check ${exec_prefixoption}, not ${exec_prefix}, to
14524 see whether --exec-prefix was used.
14525
14526 Sun Jun 26 21:15:54 1994 Per Bothner (bothner@kalessin.cygnus.com)
14527
14528 * README: Explicitly mention libg++/README. (Zoo's idea.)
14529
14530 Tue Jun 21 12:45:55 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14531
14532 * Makefile.in: Add all-librx target similar to all-libproc.
14533
14534 Wed Jun 8 23:11:55 1994 Stu Grossman (grossman@cygnus.com)
14535
14536 * config.guess: Rearrange tests for Alpha-OSF1 to properly deal
14537 with post 1.2 uname bogosity.
14538
14539 Thu Jun 9 00:27:59 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14540
14541 * configure: Remove temporary files on receipt of a signal.
14542
14543 Tue Jun 7 12:06:24 1994 Ian Lance Taylor (ian@cygnus.com)
14544
14545 * configure: If there is a package_makefile_frag, remove
14546 ${subdir}/Makefile.tem after copying it in.
14547
14548 Mon Jun 6 21:35:02 1994 D. V. Henkel-Wallace (gumby@cygnus.com)
14549
14550 * build_all.mk: support rs6000 lynx identifies itself as
14551 rs6000-lynx-lynxos2.2.2. Also, use /usr/cygnus/progressive/bin/gcc
14552 since /bin/gcc is too feeble to compile a modern gcc.
14553
14554 Mon Jun 6 16:06:34 1994 Karen Christiansen (karen@cirdan.cygnus.com)
14555
14556 * brought devo/test-build.mk update-to-date with progressive/
14557 test-build.mk. Add lynx targets and hppa flag info.
14558
14559 Sat Jun 4 17:23:54 1994 Per Bothner (bothner@kalessin.cygnus.com)
14560
14561 * configure.in: Use mh-ncrsvr43. Patch from
14562 Tom McConnell <tmcconne@sedona.intel.com>.
14563
14564 Fri Jun 3 17:47:24 1994 Per Bothner (bothner@kalessin.cygnus.com)
14565
14566 * config.guess (i386-unknown-bsdi): No longer need to
14567 check #if defined(__bsdi__) && defined(__i386__).
14568
14569 Thu Jun 2 18:56:46 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14570
14571 * configure: Set program_transform_nameoption correctly.
14572
14573 Thu Jun 2 10:57:06 1994 Karen Christiansen (karen@cirdan.cygnus.com)
14574
14575 * brought build-all.mk update-to-date with progressive build-all.mk,
14576 added new targets and hppa info.
14577
14578 Thu Jun 2 00:12:44 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14579
14580 * configure: If config.guess result is a prefix of the user
14581 specified target, assume a native build and use the user specified
14582 target as the host alias. Remove SunOS patch suffix removal hack.
14583 * configure.in: Remove SunOS patch suffix removal hack.
14584
14585 * Makefile.in (CROSS_CHECK_MODULES): Remove check-flex, since it's
14586 in NATIVE_CHECK_MODULES.
14587
14588 Wed Jun 1 10:49:41 1994 Bill Cox (bill@rtl.cygnus.com)
14589
14590 * Makefile.in: Rename HOST_ONLY to NATIVE.
14591 * configure: Delete SunOs patch suffix from host_canonical
14592 and build_canonical variables that are prepended to Makefiles.
14593 * configure.in: Add comments for easier maintenance.
14594
14595 Tue May 31 19:39:47 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14596
14597 * Makefile.in: Add all-libproc target similar to all-gui.
14598
14599 Tue May 31 17:16:33 1994 Tom Lord (lord@cygnus.com)
14600
14601 * Makefile.in (CHECK_MODULES): split into
14602 HOST_ONLY_CHECK_MODULES and CROSS_CHECK_MODULES.
14603
14604 Tue May 31 16:36:36 1994 Paul Eggert (eggert@twinsun.com)
14605
14606 * config.guess (i386-unknown-bsdi): New system to guess.
14607
14608 Wed May 25 16:47:10 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14609
14610 * Makefile.in: Add all-gui target (but not yet build by "all").
14611
14612 Thu May 26 08:53:19 1994 Bill Cox (bill@rtl.cygnus.com)
14613
14614 * config.sub: Move deletion of patch suffix from here...
14615 * configure.in: To here, at Ian's suggestion. The top-
14616 level scripts might need to know of a patch level.
14617
14618 Wed May 25 09:15:54 1994 Bill Cox (bill@rtl.cygnus.com)
14619
14620 * config.sub: Strip off patch suffix so rtl is recognized
14621 as a sunos4.1.3 machine, even though it's been patched.
14622
14623 Fri May 20 08:25:49 1994 Steve Chamberlain (sac@deneb.cygnus.com)
14624
14625 * Makefile.in (INSTALL_LAST): Delete.
14626 (INSTALL_DOSREL): New.
14627
14628 Thu May 19 17:12:12 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14629
14630 * configure.in: Use ld for i[34]86-*-sysv4* and sparc-*-solaris2*.
14631 Don't set use_gnu_ld to no for *-*-sysv4; that only controls
14632 whether we pass down --with-gnu-ld anyhow.
14633
14634 Thu May 19 09:29:12 1994 Steve Chamberlain (sac@cygnus.com)
14635
14636 * Makefile.in (INSTALL_LAST): Change operation so it works
14637 on more flavors of make.
14638 * configure.in (go32): Don't build libg++ or libio.
14639
14640 Fri May 13 13:28:34 1994 Steve Chamberlain (sac@cygnus.com)
14641
14642 * Makefile.in (Move HOST_PREFIX_1 and friends up so
14643 they can be overriden by templates.
14644
14645 Sat May 7 16:46:44 1994 Steve Chamberlain (sac@cygnus.com)
14646
14647 * configure.in (target==go32): Don't build gdb.
14648 * dosrel: New directory.
14649
14650 Fri May 6 14:19:25 1994 Steve Chamberlain (sac@cygnus.com)
14651
14652 * configure.in (host==go32): Configure dosrel too.
14653 * Makefile.in (INTALL_TARGET): Call INSTALL_LAST last.
14654 (HOST_CC, HOST_PREFIX, HOST_PREFIX_1): Undefine, they should
14655 be set by incoming names or templates.
14656 (INSTALL_LAST): New rule.
14657
14658 Thu May 5 17:35:05 1994 Stan Shebs (shebs@andros.cygnus.com)
14659
14660 * config.sub (sparclitefrw, sparclitefrwcompat): Don't set the os.
14661
14662 Thu May 5 20:06:45 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
14663
14664 * configure.in (appdirs): New variable. Currently empty, but will
14665 be used in gas distribution. If nonempty, lists a set of
14666 directories at least one of which must get configured, or top
14667 level configuration is considered to have failed.
14668 (rs6000-*-lynxos*): Use new file name.
14669
14670 Thu May 5 13:38:36 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14671
14672 Eliminate XTRAFLAGS.
14673 * Makefile.in (CC_FOR_TARGET): If newlib exists, refer to the
14674 newlib include files using -idirafter, and also use -nostdinc.
14675 (CXX_FOR_TARGET): Likewise.
14676 (XTRAFLAGS): Removed.
14677 (BASE_FLAGS_TO_PASS): Remove XTRAFLAGS_FOR_TARGET.
14678 (EXTRA_HOST_FLAGS): Remove XTRAFLAGS.
14679 (EXTRA_TARGET_FLAGS, EXTRA_GCC_FLAGS): Likewise.
14680 ($(DO_X)): Don't pass down XTRAFLAGS.
14681
14682 Thu May 5 00:16:36 1994 Ken Raeburn (raeburn@kr-pc.cygnus.com)
14683
14684 * configure.in (mips*-dec-bsd*): New target; do build linker.
14685 (mips*-*-bsd*): New target; don't build linker.
14686
14687 Wed May 4 20:10:10 1994 D. V. Henkel-Wallace (gumby@cygnus.com)
14688
14689 * configure.in: support rs6000-*-lynxos* configuration.
14690 support sunos4 as a cross target.
14691
14692 * config.sub: look for lynx*, not lynx since the OS version may
14693 legitimately be part of the name.
14694
14695 Tue May 3 21:48:11 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
14696
14697 * configure.in (i[34]86-*-sco*): Move to be with other i386
14698 targets.
14699 (romp-*-*): New target. Skip various binary utilities.
14700 (vax-*-*): New target. Don't build newlib.
14701 (vax-*-vms): Renamed from *-*-vms. Don't build opcodes or newlib.
14702
14703 Thu Apr 28 15:03:05 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14704
14705 * configure.in: Only set host_makefile_frag if config
14706 directory exists.
14707
14708 Wed Apr 27 12:14:30 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14709
14710 * install.sh: If $dstdir exists, don't check whether each
14711 component does.
14712
14713 Tue Apr 26 18:11:33 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14714
14715 * test-build.mk (HOLES): Add sleep; used by rcs/src/conf.sh.
14716
14717 Mon Apr 25 15:06:34 1994 Stan Shebs (shebs@andros.cygnus.com)
14718
14719 * configure.in (*-*-lynxos*): Don't configure newlib for either
14720 native or cross Lynx.
14721
14722 Sat Apr 16 11:58:16 1994 Doug Evans (dje@canuck.cygnus.com)
14723
14724 * config.sub (sparc64-elf): Fix os.
14725 (z8k): Remove duplicate.
14726
14727 Thu Apr 14 23:33:17 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14728
14729 * Makefile.in (gcc-no-fixedincludes): Touch gcc/include/fixed, not
14730 gcc/stmp-fixproto, to try to prevent fixproto from being run.
14731
14732 Wed Apr 13 15:14:52 1994 Bill Cox (bill@cygnus.com)
14733
14734 * configure: Make file links cleanly even if Lynx fails on
14735 an NFS symlink (at least fail cleanly).
14736
14737 Mon Apr 11 10:58:56 1994 Jim Wilson (wilson@sphagnum.cygnus.com)
14738
14739 * test-build.mk (CC): For mips-sgi-irix4, change -XNh1500 to
14740 -XNh2000.
14741
14742 Sat Apr 9 15:10:45 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14743
14744 * configure: Unknown options are fatal again.
14745
14746 Fri Apr 8 12:01:41 1994 David J. Mackenzie (djm@cygnus.com)
14747
14748 * configure: Ignore --x-includes and --x-libraries, for Autoconf
14749 compatibility.
14750
14751 Thu Apr 7 17:31:43 1994 Doug Evans (dje@canuck.cygnus.com)
14752
14753 * build-all.mk: Add `clean' target.
14754
14755 Wed Apr 6 20:44:56 1994 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
14756
14757 * config.guess: Add SINIX support.
14758 * configure.in: Add mips-*-sysv4* support.
14759
14760 Mon Apr 4 17:41:44 1994 Doug Evans (dje@canuck.cygnus.com)
14761
14762 * build-all.mk: Document all useful targets.
14763 If canonhost is sparc-sun-solaris2.3, change it to sparc-sun-solaris2.
14764 If canonhost is mips-sgi-irix4.0.5H, change it to mips-sgi-irix4.
14765
14766 Thu Mar 31 04:55:57 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14767
14768 * configure: Support --silent, --quiet.
14769
14770 Wed Mar 30 21:37:38 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14771
14772 * configure: Support --disable-FEATURE.
14773
14774 Tue Mar 29 19:15:05 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14775
14776 * config.guess: Recognize NCR running SVR4.3.
14777
14778 Mon Mar 28 14:55:15 1994 Per Bothner (bothner@kalessin.cygnus.com)
14779
14780 * config.guess: Make BSDI generate i386-unknown-bsd386.
14781 Patch from Paul Eggert <eggert@twinsun.com>.
14782
14783 Mon Mar 28 12:54:52 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14784
14785 * configure.in (powerpc-*-aix*): Treat like rs6000-*-*.
14786
14787 Sat Mar 26 11:25:48 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14788
14789 * configure: Make unrecognized options give nonfatal warnings
14790 instead of fatal errors, and pass them to any subdirectory
14791 configures in case they recognize them.
14792 Make --x equivalent to --with-x.
14793
14794 Fri Mar 25 21:52:10 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14795
14796 * configure: Add --enable-* options. Clean up usage message and
14797 some comments.
14798
14799 Thu Mar 24 09:12:53 1994 Doug Evans (dje@canuck.cygnus.com)
14800
14801 * Makefile.in (NM_FOR_TARGET): Build tree version is now nm.new.
14802
14803 Sun Mar 20 11:28:22 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
14804
14805 * configure.in (hppa*-*-*): Enable binutils.
14806
14807 Sat Mar 19 11:50:16 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14808
14809 * config.sub: Recognize cisco.
14810
14811 Fri Mar 18 16:42:32 1994 Jason Merrill (jason@deneb.cygnus.com)
14812
14813 * Makefile.in (CXXFLAGS): Add -fexternal-templates.
14814
14815 Tue Mar 15 11:25:55 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14816
14817 * config.guess: about target *-hitachi-hiuxwe2, don't print more
14818 than one configuration name. Add comment.
14819
14820 Sun Mar 6 23:13:38 1994 Hisashi MINAMINO (minamino@sra.co.jp)
14821
14822 * config.guess: about target *-hitachi-hiuxwe2, fixed
14823 machine guessing order. [Hitachi's CPU_IS_HP_MC68K
14824 macro is incorrect.]
14825
14826 Sun Mar 13 09:10:08 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14827
14828 * Makefile.in (TAGS): Just build TAGS in each subdirectory, rather
14829 than the "make ls" stuff which used to be here.
14830
14831 Fri Mar 11 12:52:39 1994 Per Bothner (bothner@kalessin.cygnus.com)
14832
14833 * config.guess: Recognize i[34]86-unknown-freebsd.
14834 From Shawn M Carey <smcarey@rodan.syr.edu>.
14835
14836 Thu Mar 3 14:24:21 1994 Per Bothner (bothner@kalessin.cygnus.com)
14837
14838 * configure.in (noconfigdirs for alpha): Remove libg++ and libio.
14839
14840 Wed Mar 2 13:28:48 1994 Jim Kingdon (kingdon@deneb.cygnus.com)
14841
14842 * config.guess: Check for ptx.
14843
14844 Mon Feb 28 16:46:50 1994 Kung Hsu (kung@mexican.cygnus.com)
14845
14846 * config.sub: Add os9k checking.
14847
14848 Thu Feb 24 07:09:04 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
14849
14850 * config.guess: Handle OSF1 running on HPPA processors
14851
14852 Fri Feb 18 14:14:00 1994 Ken Raeburn (raeburn@rtl.cygnus.com)
14853
14854 * configure: If subdir configure fails, print out a message with
14855 subdirectory name, in case subdir's configure code didn't identify
14856 itself.
14857
14858 Fri Feb 18 12:50:15 1994 Doug Evans (dje@cygnus.com)
14859
14860 * configure.in: Remove embedded newlines from configdirs.
14861 Avoid mismatches of substrings. Fix matching strings at end
14862 of configdirs.
14863
14864 Fri Feb 11 15:33:33 1994 Stu Grossman (grossman at cygnus.com)
14865
14866 * config.guess: Add Lynx/rs6000 config support.
14867
14868 Tue Feb 8 13:41:09 1994 Ken Raeburn (raeburn@rtl.cygnus.com)
14869
14870 * configure.in (alpha-dec-osf1*, alpha*-*-*): Build gas.
14871
14872 Mon Feb 7 15:42:36 1994 Jeffrey A. Law (law@cygnus.com)
14873
14874 * configure.in (hppa*-*-osf*): Treat this just like most other
14875 PA configurations (eg no binutils or ld).
14876 (hppa*-*-*elf*): These configurations have binutils and ld.
14877
14878 Sun Feb 6 16:35:07 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
14879
14880 * config.sub (hiux): Fix typo. From m-kasahr@sramhc.sra.co.JP.
14881
14882 Sat Feb 5 01:00:33 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14883
14884 * configure.in (rs6000-*-*): Build gas.
14885
14886 Wed Feb 2 13:57:57 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
14887
14888 * Makefile.in: Avoid bug in losing hpux sed.
14889
14890 Wed Feb 2 14:53:05 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14891
14892 * Makefile.in, test-build.mk: Remove MUNCH_NM; it was only needed
14893 for GDB and GDB has been fixed to not need it.
14894
14895 Sun Jan 30 17:58:06 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
14896
14897 * config.guess: Recognize vax hosts.
14898
14899 Fri Jan 28 15:29:38 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
14900
14901 * configure (while loop): Don't use "break 2" inside case
14902 statement -- the case statement isn't an enclosing loop.
14903
14904 Mon Jan 24 18:40:06 1994 Per Bothner (bothner@kalessin.cygnus.com)
14905
14906 * config.guess: Clean up NeXT support, to allow nextstep
14907 on Intel machines. Make OS be nextstep.
14908
14909 Sun Jan 23 18:47:22 1994 Richard Kenner (kenner@vlsi1.ultra.nyu.edu)
14910
14911 * config.guess: Add alternate forms for Convex.
14912
14913 Thu Jan 20 16:13:41 1994 Stu Grossman (grossman at cygnus.com)
14914
14915 * configure: Completely rewrite option processing. Take
14916 advantage of pattern-matching to avoid invoking test frequently.
14917 Also clean up host and target defaulting logic.
14918
14919 Mon Jan 17 15:06:56 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
14920
14921 * Makefile.in: Replace all occurrances of "rootme" with "r" and
14922 "$${rootme}" with "$$r", to increase the likelihood that the do-*
14923 commands (plus user environment) will fit SCO limits.
14924
14925 Thu Jan 6 11:20:57 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14926
14927 * configure.in: Don't issue warnings about directories which are
14928 not being configured if -norecursion is set. Correct test for
14929 --with-gnu-as and --with-gnu-ld to not get confused by substring
14930 matches.
14931
14932 * configure.in: Don't build gas for alpha-dec-osf1*.
14933
14934 Tue Jan 4 17:10:19 1994 Stu Grossman (grossman at cygnus.com)
14935
14936 * configure: Back out Per's change of 12/19/1993. It changes the
14937 behavior of configure in unexpected and confusing ways.
14938
14939 Also, use different delim char when calculating
14940 program_transform_name so that the name can contain slashes.
14941
14942 Sat Jan 1 13:45:31 1994 Rob Savoye (rob@darkstar.cygnus.com)
14943
14944 * configure.in, config.sub: Add support for VSTa micro-kernel.
14945
14946 Sat Dec 25 20:00:47 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
14947
14948 * configure.in: Nuke hacks which were used to get a special
14949 version of GAS for HPPA configurations.
14950
14951 Sun Dec 19 20:40:44 1993 Per Bothner (bothner@kalessin.cygnus.com)
14952
14953 * configure: If only ${target_alias} is given, use that
14954 as the default for ${host_alias}.
14955 * configure: Add missing back-slashes before nested quotes.
14956
14957 Wed Dec 15 18:07:18 1993 david d `zoo' zuhn (zoo@andros.cygnus.com)
14958
14959 * Makefile.in (BASE_FLAGS_TO_PASS): add YACC=$(BISON)
14960
14961 Tue Dec 14 21:25:33 1993 Per Bothner (bothner@cygnus.com)
14962
14963 * config.guess: Recognize some Tektronix configurations.
14964 From Kaveh R. Ghazi <ghazi@noc.rutgers.edu>.
14965
14966 Sat Dec 11 11:18:00 1993 Steve Chamberlain (sac@thepub.cygnus.com)
14967
14968 * config.sub: Match any flavor of SH.
14969
14970 Thu Dec 2 17:16:58 1993 Ken Raeburn (raeburn@cujo.cygnus.com)
14971
14972 * configure.in: Don't try to configure newlib for Alpha.
14973
14974 Thu Dec 2 14:35:54 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14975
14976 * configure.in: Don't build ld for Irix 5. Don't build gas,
14977 libg++ or libio for any Alpha target.
14978
14979 * configure.in (mips*-sgi-irix5*): New target; use mh-irix5.
14980
14981 Wed Dec 1 17:00:33 1993 Jason Merrill (jason@deneb.cygnus.com)
14982
14983 * Makefile.in (GZIPPROG): Renamed from GZIP, which gzip uses for
14984 default arguments -- so it tried to compress itself.
14985
14986 Tue Nov 30 13:45:15 1993 david d `zoo' zuhn (zoo@andros.cygnus.com)
14987
14988 * configure.in (notsupp): ensure that a space is always at the end
14989 of the configdirs list, since the grep checks for an explicit space
14990
14991 Tue Nov 16 15:04:27 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
14992
14993 * configure.in (target i386-sysv4.2): don't build ld, since static
14994 versions of many libraries are not available.
14995
14996 Tue Nov 16 14:28:12 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
14997
14998 * config.guess: Recognize Apollos (using environment variables).
14999 * configure.in: Don't configure ld, binutils, or gprof for Apollo.
15000
15001 Thu Nov 11 12:03:50 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15002
15003 * config.guess: Recognize Sony news mips running newsos.
15004
15005 Wed Nov 10 16:57:00 1993 Mark Eichin (eichin@cygnus.com)
15006
15007 * Makefile.in (all-cygnus, build-cygnus): "fi else" needs to be
15008 "fi ; else" for bash.
15009
15010 Tue Nov 9 15:54:01 1993 Mark Eichin (eichin@cygnus.com)
15011
15012 * Makefile.in (BASE_FLAGS_TO_PASS): pass SHELL.
15013
15014 Fri Nov 5 08:07:27 1993 D. V. Henkel-Wallace (gumby@blues.cygnus.com)
15015
15016 * config.sub: accept unixware as an alias for svr4.2.
15017 Fix some inconsistancies with the gcc version.
15018
15019 Fri Nov 5 15:14:12 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15020
15021 * Makefile.in (DISTDOCDIRS): Add gdb.
15022
15023 Fri Nov 5 11:59:42 1993 Per Bothner (bothner@kalessin.cygnus.com)
15024
15025 * Makefile.in (DISTDOCDIRS): Add libg++ and libio.
15026
15027 Fri Nov 5 10:35:05 1993 Ken Raeburn (raeburn@rover.cygnus.com)
15028
15029 * Makefile.in (taz): Only build "info" in DISTDOCDIRS.
15030 (DISTDOCDIRS): Don't assume libg++ and gdb folks necessarily want
15031 this now.
15032
15033 Thu Nov 4 18:58:23 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15034
15035 * config.sub: Accept hiux* as an OS name.
15036
15037 * Makefile.in: Change RUNTEST_FLAGS back to RUNTESTFLAGS per
15038 etc/make-stds.texi. The underscore came from gcc, and dje now
15039 agrees that RUNTESTFLAGS is the correct name.
15040
15041 Thu Nov 4 10:49:01 1993 Per Bothner (bothner@kalessin.cygnus.com)
15042
15043 * install.sh: Remove 'set -e'. It makes any conditionals
15044 in the script useless.
15045
15046 * config.guess: Automatically recognize arm-acorn-riscix
15047 Patch from Richard Earnshaw (rwe11@cl.cam.ac.uk).
15048
15049 Thu Nov 04 08:08:04 1993 Jeffrey Wheat (cassidy@cygnus.com)
15050
15051 * Makefile.in: Change RUNTESTFLAGS to RUNTEST_FLAGS
15052
15053 Wed Nov 3 22:09:46 1993 Ken Raeburn (raeburn@rtl.cygnus.com)
15054
15055 * Makefile.in (DISTDOCDIRS): New variable.
15056 (taz): Edit local Makefile.in sooner, instead of proto-toplev
15057 Makefile.in later. Build "info" and "dvi" in DISTDOCDIRS.
15058
15059 Wed Nov 3 21:31:52 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15060
15061 * configure.in (hppa target): check the source directory for the
15062 pagas sub-directory
15063
15064 Wed Nov 3 11:12:22 1993 Doug Evans (dje@canuck.cygnus.com)
15065
15066 * config.sub: Allow -aout* and -elf*.
15067
15068 Wed Nov 3 11:08:33 1993 Ken Raeburn (raeburn@rtl.cygnus.com)
15069
15070 * configure.in: Don't build ld on i386-solaris2, same as for
15071 sparc-solaris2.
15072
15073 Tue Nov 2 14:21:25 1993 Per Bothner (bothner@kalessin.cygnus.com)
15074
15075 * Makefile.in (taz): Add texinfo/lgpl.texinfo (for libg++).
15076
15077 Tue Nov 2 13:38:30 1993 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
15078
15079 * configure.in: Configure gdb for alpha.
15080
15081 Mon Nov 1 10:42:54 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15082
15083 * Makefile.in (CXXFLAGS): Add -O.
15084
15085 Wed Oct 27 10:45:06 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15086
15087 * config.guess: added support for DG Aviion
15088
15089 Tue Oct 26 14:37:37 1993 Ken Raeburn (raeburn@rover.cygnus.com)
15090
15091 * configure.in: Produce warning message for subdirectories not
15092 configurable for this host/target combination. Don't try to
15093 configure gdb for vms.
15094
15095 Mon Oct 25 11:22:15 1993 Ken Raeburn (raeburn@rover.cygnus.com)
15096
15097 * Makefile.in (taz): Replace "byacc" with "bison -y" in the
15098 appropriate files before making "diststuff".
15099 (DISTBISONFILES): New var: list of files to be edited.
15100 (DISTSTUFFDIRS): Add binutils.
15101
15102 Fri Oct 22 20:32:15 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15103
15104 * config.sub: also handle mipsel and mips64el (for little endian mips)
15105
15106 Fri Oct 22 07:59:20 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15107
15108 * configure.in: Add * to end of all OS names.
15109
15110 Thu Oct 21 11:38:28 1993 Stan Shebs (shebs@rtl.cygnus.com)
15111
15112 * configure.in: Build newlib for LynxOS native.
15113
15114 Wed Oct 20 09:56:12 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15115
15116 * config.guess: Add support for delta 88k running SVR3.
15117
15118 * configure.in: Add comment about HP compiler vs. emacs.
15119
15120 Tue Oct 19 16:02:22 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15121
15122 * configure.in: don't build ld on solaris2 (not a viable option
15123 due to bugs in getpwnam & getpwuid)
15124
15125 Tue Oct 19 15:13:56 1993 Ken Raeburn (raeburn@rtl.cygnus.com)
15126
15127 * configure.in: Accept alpha-dec-osf1*, not just -osf1, since
15128 config.guess will produce a full version number.
15129
15130 Tue Oct 19 15:58:01 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
15131
15132 * configure.in: Build linker and binutils for alpha-dec-osf1.
15133
15134 Tue Oct 19 11:41:55 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15135
15136 * Makefile.in: Remove -O from CXXFLAGS for consistency with CFLAGS,
15137 and gdb/testsuite/Makefile.in.
15138
15139 Sat Oct 9 18:39:07 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15140
15141 * configure.in: recognize mips*- instead of mips-
15142
15143 Fri Oct 8 14:15:39 1993 Ken Raeburn (raeburn@cygnus.com)
15144
15145 * config.sub: Accept linux*coff and linux*elf as operating
15146 systems.
15147
15148 Thu Oct 7 12:57:19 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
15149
15150 * config.sub: Recognize mips64, and mips3 as an alias for it.
15151
15152 Wed Oct 6 13:54:21 1993 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
15153
15154 * configure.in: Remove alpha-dec-osf*, no longer necessary now that
15155 gdb knows how to handle OSF/1 shared libraries.
15156
15157 Tue Oct 5 11:55:04 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15158
15159 * configure.in: Recognize hppa*-*-hiux* (currently synonym for hpux).
15160 * config.guess: Recognize Hitachi's HIUX.
15161 * config.sub: Recognize h3050r* and hppahitachi.
15162 Remove redundant cases for hp9k[23]*.
15163
15164 Mon Oct 4 16:15:09 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15165
15166 * configure.in: default to '--with-gnu-as' and '--with-gnu-ld'
15167 if gas and ld are in the source tree and are in ${configdirs}.
15168 If ${use_gnu_as} or ${use_gnu_ld} are 'no', then don't set the
15169 --with options (but still pass them down on the command line,
15170 if they were explicitly specified).
15171
15172 Fri Sep 24 19:11:13 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15173
15174 * configure: substitute SHELL value in Makefile.in with
15175 ${CONFIG_SHELL}
15176
15177 Thu Sep 23 18:05:13 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
15178
15179 * configure.in: Build gas, ld, and binutils for *-*-sysv4* and
15180 *-*-solaris2* targets.
15181
15182 Sun Sep 19 17:01:41 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15183
15184 * Makefile.in: define M4, and pass it down to sub-makes;
15185 all-autoconf now depends on all-m4
15186
15187 Sat Sep 18 00:38:23 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15188
15189 * Makefile.in ({AR,RANLIB}_FOR_TARGET): make contingent on
15190 presence of {ar,ranlib} instead of a configured directory
15191
15192 Wed Sep 15 08:41:44 1993 Jim Kingdon (kingdon@cirdan.cygnus.com)
15193
15194 * config.guess: Accept 34?? as well as 33?? for NCR.
15195
15196 Mon Sep 13 12:28:43 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15197
15198 * configure.in: grab mt-hppa for HPPA targets; use 'gas ' instead
15199 of 'gas' in sed commands, since 'gash' is now in the tree as well.
15200
15201 Fri Sep 10 11:23:52 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15202
15203 * configure: grab values for $(CC) and $(CXX) from the
15204 environment, so that someone can do "CC=gcc configure; make" and
15205 have it work right (matching the way that autoconf works now)
15206
15207 * configure.in, Makefile.in: add support for gash, the tcl
15208 interface to Galaxy
15209
15210 * config.guess: add NetBSD variants (hp300, x86)
15211
15212 Thu Sep 9 16:48:52 1993 Jason Merrill (jason@deneb.cygnus.com)
15213
15214 * install.sh: Support -d option (in the manner of SunOS 4 install,
15215 as it is more deterministic than that of GNU install)
15216 (chmodcmd): Set file to mode 755 by default (should also do default
15217 chgrp and chown, but I don't feel like dealing with that now)
15218
15219 Tue Sep 7 11:59:39 1993 Doug Evans (dje@canuck.cygnus.com)
15220
15221 * config.sub: Remove h8300hhms alias.
15222
15223 Tue Aug 31 11:00:09 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15224
15225 * configure.in: Match *-*-solaris2* not *-sun-solaris2*.
15226
15227 Mon Aug 30 18:29:10 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15228
15229 * Makefile.in (gcc-no-fixedincludes): touch stmp-fixproto as well
15230 as stmp-fixinc
15231
15232 Wed Aug 25 16:35:59 1993 K. Richard Pixley (rich@sendai.cygnus.com)
15233
15234 * config.sub: recognize m88110-bug-coff.
15235
15236 Tue Aug 24 10:23:24 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15237
15238 * Makefile.in (all-libio): all dependencies on the toolchain used
15239 to build this (gcc, gas, ld, etc)
15240
15241 Fri Aug 20 17:24:24 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15242
15243 * config.guess: Deal with OSF/1 1.3 on alpha.
15244
15245 Thu Aug 19 11:43:04 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15246
15247 * install.sh: add some 'else true' clauses for portability
15248
15249 * configure.in: don't build libio for h8[35]00-*-* targets
15250
15251 Tue Aug 17 19:02:31 1993 Per Bothner (bothner@kalessin.cygnus.com)
15252
15253 * Makefile.in: Add support for new libio.
15254
15255 Sun Aug 15 20:48:55 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15256
15257 * install.sh: If one command fails, don't try the rest. Don't try
15258 to remove $dsttmp (via trap) unless we have already created it.
15259 If $src doesn't exist, detect it and exit with an error.
15260
15261 * config.guess: Recognize BSD on hp300.
15262
15263 Wed Aug 11 18:35:13 1993 Per Bothner (bothner@kalessin.cygnus.com)
15264
15265 * config.guess: Map (9000/[34]??:HP-UX:*:*) to m68k-hp-hpux.
15266 Bug report from "Hamish (H.I.) Macdonald" <hamish@bnr.ca>.
15267
15268 Wed Aug 11 15:37:51 1993 Jason Merrill (jason@deneb.cygnus.com)
15269
15270 * Makefile.in (all-send-pr): depends on all-prms
15271
15272 Wed Aug 11 16:56:03 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15273
15274 * config.guess: Fix typo (9000/8??:4.3bsd -> 9000/7??:4.3bsd).
15275
15276 Fri Aug 6 14:45:02 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
15277
15278 * config.guess: From michael@mercury.cs.mun.ca (Michael Rendell):
15279 Added test for mips-mips-riscos5.
15280
15281 Thu Aug 5 15:45:08 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15282
15283 * configure.in: use mh-hp300 for 68k HP hosts
15284
15285 Mon Aug 2 11:56:53 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15286
15287 * configure: add support for CONFIG_SHELL, so that you can use
15288 some alternate shell for evaluating configure scripts
15289
15290 Sun Aug 1 11:36:27 1993 Fred Fish (fnf@deneb.cygnus.com)
15291
15292 * Makefile.in (make-gdb.tar.gz): Sed bug reporting address
15293 in configure script to bug-gdb@prep.ai.mit.edu when building
15294 distribution archive.
15295 * Makefile.in (COMPRESS): Remove def.
15296 * Makefile.in (gdb.tar.gz, make-gdb.tar.gz): Renamed from
15297 gdb.tar.Z and make-gdb.tar.Z respectively.
15298 * Makefile.in (make-gdb.tar.gz): Now only build gzip'd archive.
15299 * Makefile.in (make-gdb.tar.gz): Minor changes to move closer
15300 to convergence with 'taz' target in Makefile.in.
15301
15302 Fri Jul 30 12:34:57 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15303
15304 * install.sh (dsttmp): use trap to ensure that tmp files go
15305 away on error conditions
15306
15307 Wed Jul 28 11:57:36 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15308
15309 * Makefile.in (BASE_FLAGS_TO_PASS): remove LOADLIBES
15310
15311 Tue Jul 27 12:43:40 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15312
15313 * Makefile.in (install-dirs): Deal with a prefix like /gnu;
15314 its parent is '/' not ''.
15315
15316 * Makefile.in (DEVO_SUPPORT): Add comments about ChangeLog.
15317
15318 Fri Jul 23 09:53:37 1993 Jason Merrill (jason@wahini.cygnus.com)
15319
15320 * configure: if ${newsrcdir}/configure doesn't exist, don't assume
15321 that ${newsrcdir}/configure.in does.
15322
15323 Tue Jul 20 11:28:50 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15324
15325 * test-build.mk: support for CONFIG_SHELL
15326
15327 Mon Jul 19 21:54:46 1993 Fred Fish (fnf@deneb.cygnus.com)
15328
15329 * config.sub (netware): Add as a basic system type.
15330
15331 Wed Jul 14 12:03:11 1993 K. Richard Pixley (rich@sendai.cygnus.com)
15332
15333 * Makefile.in (Makefile): depend on configure.in. Also drop the
15334 $(srcdir)/ from the dependency on Makefile.in.
15335
15336 Tue Jul 13 20:10:58 1993 Doug Evans (dje@canuck.cygnus.com)
15337
15338 * config.sub: Recognize h8300hhms as h8300h-hitachi-hms.
15339 (h8300hhms is temporary until multi-libraries are implemented).
15340 * configure.in: Handle h8300h too.
15341
15342 Sun Jul 11 17:35:27 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15343
15344 * config.guess: Recognize dpx/2 as m68k-bull-sysv3.
15345
15346 Thu Jul 8 18:26:12 1993 John Gilmore (gnu@cygnus.com)
15347
15348 * configure: Remove extraneous output when guessing host type.
15349 * config.guess: Remove extraneous output when guessing using C
15350 compiler rather than uname, or when guessing fails.
15351
15352 Wed Jul 7 17:58:14 1993 david d `zoo' zuhn (zoo at rtl.cygnus.com)
15353
15354 * Makefile.in: remove all.cross and install.cross targets
15355
15356 * configure: remove CROSS=-DCROSS_COMPILE and ALL=all.cross
15357 definitions
15358
15359 Tue Jul 6 10:39:44 1993 Steve Chamberlain (sac@phydeaux.cygnus.com)
15360
15361 * configure.in (target sh): Build gprof.
15362
15363 Thu Jul 1 16:52:56 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15364
15365 * config.sub: change -solaris to -solaris2
15366
15367 Thu Jul 1 15:46:16 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15368
15369 * configure.in: Use config/mh-riscos for mips-*-sysv*.
15370
15371 Wed Jun 30 09:31:58 1993 Ian Lance Taylor (ian@cygnus.com)
15372
15373 * configure: Correct error message for missing Makefile.in to
15374 print correct directory.
15375
15376 Tue Jun 29 13:52:16 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15377
15378 * install.sh: kludge around 386BSD shell bug
15379
15380 Tue Jun 29 13:06:49 1993 Per Bothner (bothner@rtl.cygnus.com)
15381
15382 * config.guess: Recognize NeXT.
15383 * config.guess: Recognize i486-ncr-sysv4.
15384 * Makefile.in (taz): rm $(TOOL)-$$VER before linking.
15385
15386 Tue Jun 29 12:50:57 1993 Ian Lance Taylor (ian@cygnus.com)
15387
15388 * Makefile.in (MAKEINFOFLAGS): New variable.
15389 (FLAGS_TO_PASS): Pass MAKEINFO as MAKEINFO MAKEINFOFLAGS.
15390 * build-all.mk, test-build.mk: Pass down --no-split as
15391 MAKEINFOFLAGS when hosted on DOS. Compile DOS hosted without -g.
15392
15393 Thu Jun 24 13:39:11 1993 Per Bothner (bothner@rtl.cygnus.com)
15394
15395 * Makefile.in (DEVO_SUPPORT): Add COPYING COPYING.LIB install.sh.
15396
15397 Wed Jun 23 12:59:21 1993 Per Bothner (bothner@rtl.cygnus.com)
15398
15399 * Makefile.in (libg++.tar.z): New rule.
15400 * Makefile.in (taz): Replace 'configure -rm' by 'make distclean'.
15401 * Makefile.in (taz): Only do a single chmod.
15402
15403 Fri Jun 18 12:03:10 1993 david d `zoo' zuhn (zoo at majipoor.cygnus.com)
15404
15405 * install.sh: don't use dirname anymore (replaced with sed usage)
15406
15407 Thu Jun 17 18:43:42 1993 Fred Fish (fnf@cygnus.com)
15408
15409 * Makefile.in: Change extension for gzip'd files from '.z' to
15410 '.gz' per new FSF standard usage.
15411
15412 Thu Jun 17 16:58:50 1993 david d `zoo' zuhn (zoo at majipoor.cygnus.com)
15413
15414 * configure: put quotes around the final value of program_transform_name
15415
15416 Tue Jun 15 16:48:51 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15417
15418 * Makefile.in: new install.sh support; update install-info rules
15419
15420 Wed Jun 9 12:31:34 1993 Ian Lance Taylor (ian@cygnus.com)
15421
15422 * configure.in: Build diff for crosses, but not for go32 host.
15423
15424 * configure.in: Build gprof only for native, and don't build it
15425 for mips-*-*, rs6000-*-*, or i[34]86-*-sco*.
15426
15427 Mon Jun 7 13:12:11 1993 david d `zoo' zuhn (zoo at deneb.cygnus.com)
15428
15429 * configure.in: don't build gas,ld,binutils on for *-*-sysv4
15430
15431 Mon Jun 7 11:40:11 1993 Brendan Kehoe (brendan@lisa.cygnus.com)
15432
15433 * configure.in (host_tools): Add prms.
15434
15435 Fri Jun 4 13:30:42 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15436
15437 * Makefile.in: install gcc, do installation of $(INSTALL_MODULES)
15438 with $(FLAGS_TO_PASS) on the command line
15439
15440 * config.sub: Recognize lynx and lynxos
15441
15442 Fri Jun 4 10:59:56 1993 Ian Lance Taylor (ian@cygnus.com)
15443
15444 * config.sub: Accept -ecoff*, not just -ecoff.
15445
15446 Thu Jun 3 17:38:54 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15447
15448 * Makefile.in (taz): Use .gz suffix instead of .z.
15449 (binutils.tar.gz, gas+binutils.tar.gz, gas.tar.gz): Fixed target
15450 names.
15451
15452 Thu Jun 3 00:27:06 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15453
15454 * Makefile.in (vault-install): add an 'else true' (for Ultrix)
15455
15456 Wed Jun 2 18:19:16 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15457
15458 * Makefile.in (install-no-fixedincludes): install gcc last, so
15459 that rebuilds that might happen during 'make install' don't get
15460 bogus gcc include files
15461
15462 Wed Jun 2 16:14:10 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15463
15464 Change from Utah for HPPA support:
15465 * config.guess: Recognize hppa1.x-hp-bsd.
15466
15467 Wed Jun 2 11:53:33 1993 Per Bothner (bothner@rtl.cygnus.com)
15468
15469 * config.guess: Add support for Motorola Delta 68k, up to r3v7.
15470 Patch from pot@fly.cnuce.cnr.it (Francesco Potorti`).
15471
15472 Tue Jun 1 17:48:42 1993 Rob Savoye (rob at darkstar.cygnus.com)
15473
15474 * config.sub: Add support for rom68k and bug boot monitors.
15475
15476 Mon May 31 09:36:37 1993 Jim Kingdon (kingdon@cygnus.com)
15477
15478 * Makefile.in: Make all-opcodes depend on all-bfd.
15479
15480 Thu May 27 08:05:31 1993 Ian Lance Taylor (ian@cygnus.com)
15481
15482 * config.guess: Added special check for i[34]86-univel-sysv4*.
15483
15484 Wed May 26 16:33:40 1993 Ian Lance Taylor (ian@cygnus.com)
15485
15486 * config.guess: For i[34]86-unknown-sysv4 use UNAME_MACHINE for
15487 the processor rather than assuming i486.
15488
15489 Wed May 26 09:40:18 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15490
15491 * config.guess: Recognize SunOS6 as Solaris3.
15492
15493 Tue May 25 23:03:11 1993 Per Bothner (bothner@cygnus.com)
15494
15495 * config.guess: Fix typo. Avoid #elif (not in K&R 1).
15496 Recognize SunOS 5.* only (and not [6-9].*) as being Solaris2.
15497
15498 Tue May 25 12:44:18 1993 Ian Lance Taylor (ian@cygnus.com)
15499
15500 * build-all.mk (all-cross): New target for Canadian Cross.
15501 Added Q2 go32 targets.
15502 * test-build.mk: Configure go32 cross sparclite-aout and
15503 mips-idt-ecoff -with-gnu-ld. Moved build binary directory from
15504 PARTIAL_HOLE_DIRS to BUILD_HOLES_DIRS.
15505
15506 Mon May 24 15:30:06 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15507
15508 * configure.in: fix Alpha GDB typo; also, don't build DejaGnu for
15509 GO32 hosted toolchains
15510
15511 Mon May 24 14:18:41 1993 Rob Savoye (rob at darkstar.cygnus.com)
15512
15513 * configure: change so "-exec-prefix" gets passed down rather
15514 than "-exec_prefix" so autoconf generated Makefiles get the
15515 exec_prefix set right.
15516
15517 Fri May 21 10:42:25 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15518
15519 * config.guess: get the Solaris2 minor version number
15520
15521 * Makefile.in: add standards.texi and make-stds.texi to ETC_SUPPORT
15522
15523 Fri May 21 06:20:52 1993 Brendan Kehoe (brendan@lisa.cygnus.com)
15524
15525 * config.guess: Recognize some Sequent platforms.
15526
15527 Thu May 20 14:33:48 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15528
15529 * Makefile.in: added the vault-install target
15530
15531 * configure.in: actually use the Sun3 makefile fragment that's in
15532 config, also added the release dir to configdirs
15533
15534 Thu May 20 14:19:18 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15535
15536 * Makefile.in (taz): Fix modes on stuff in $(TOOL) dir also.
15537
15538 Tue May 18 20:26:41 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15539
15540 * configure.in: remove some program from Alpha targetted toolchains
15541
15542 Tue May 18 15:23:19 1993 Ken Raeburn (raeburn@cygnus.com)
15543
15544 * Makefile.in (DISTSTUFFDIRS): Renamed from PROTODIRS. Add ld and
15545 gprof.
15546 (taz): Run "make diststuff" in those directories instead of "make
15547 proto-dir". Look for "VERSION=" only at start of line in subdir
15548 Makefile. Use "gzip -9" for compression.
15549 (TEXINFO_SUPPORT, DIST_SUPPORT, BINUTILS_SUPPORT_DIRS): New vars.
15550 (binutils.tar.z): New target.
15551
15552 Mon May 17 17:01:15 1993 Ken Raeburn (raeburn@deneb.cygnus.com)
15553
15554 * Makefile.in (taz): Include gpl.texinfo.
15555
15556 Fri May 14 06:48:38 1993 Ken Raeburn (raeburn@deneb.cygnus.com)
15557
15558 * Makefile.in (setup-dirs): Merged into "taz" target.
15559 (taz): Only do `proto-dir' stuff if a directory is actually needed
15560 for this target.
15561
15562 Wed May 12 13:09:44 1993 Ian Lance Taylor (ian@cygnus.com)
15563
15564 * Makefile.in (MUNCH_NM): New variable, defined to be $(NM).
15565 (FLAGS_TO_PASS): Pass down MUNCH_NM.
15566 (HOST_CC, HOST_PREFIX, HOST_PREFIX_1): New variables.
15567 (EXTRA_GCC_FLAGS): Pass down HOST_* variables.
15568 (gcc-no-fixedincludes): Correct for current gcc Makefile.
15569
15570 Tue May 11 10:14:25 1993 Fred Fish (fnf@cygnus.com)
15571
15572 * Makefile.in (make-gdb.tar.Z): Add configure, config.guess,
15573 config.sub, and move-if-change to gdb testsuite distribution
15574 archive, so the testsuite can be extracted, configured, and
15575 run separately from the gdb distribution. Blow away the Chill
15576 tests that require a Chill compiled executable, since GNU Chill
15577 is not yet publically available.
15578
15579 Mon May 10 17:22:26 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15580
15581 * test-build.mk: set environment variables in a single command,
15582 instead of a list of assignments and exports
15583
15584 * config.guess: recognize Alpha/OSF1 systems
15585
15586 Mon May 10 14:55:51 1993 K. Richard Pixley (rich@rtl.cygnus.com)
15587
15588 * configure: Change help message to prefer --options rather than
15589 -options.
15590
15591 Mon May 10 05:58:35 1993 Ken Raeburn (raeburn@kr-pc.cygnus.com)
15592
15593 * config.sub: Convergent Tech. "miniframe" uses m68010, sez
15594 zippy@ecst.csuchico.edu.
15595 * config.guess: Recognize miniframe.
15596
15597 Sun May 9 17:47:57 1993 Rob Savoye (rob at darkstar.cygnus.com)
15598
15599 * Makefile.in: Use srcroot to find runtest rather than rootme.
15600 Pass RUNTESTFLAGS and EXPECT down in BASE_FLAGS_TO_PASS.
15601
15602 Fri May 7 14:55:59 1993 Ian Lance Taylor (ian@cygnus.com)
15603
15604 * test-build.mk: Extensive additions to support building on a
15605 machine other than the host.
15606
15607 Wed May 5 08:35:04 1993 Ken Raeburn (raeburn@deneb.cygnus.com)
15608
15609 * configure (tooldir): Fix for i386-aix again.
15610
15611 Mon May 3 19:00:27 1993 Per Bothner (bothner@cygnus.com)
15612
15613 * configure, Makefile.in: Change definition of $(tooldir)
15614 to match the FSF.
15615
15616 Fri Apr 30 15:55:21 1993 Fred Fish (fnf@cygnus.com)
15617
15618 * config.guess: Recognize i[34]86/SVR4.
15619
15620 Fri Apr 30 15:52:46 1993 Steve Chamberlain (sac@thepub.cygnus.com)
15621
15622 * Makefile.in (all-gdb): gdb depends on sim.
15623
15624 Thu Apr 29 23:30:48 1993 Fred Fish (fnf@cygnus.com)
15625
15626 * Makefile.in (gdb.tar.Z): Make prototype gdb testsuite directory
15627 at the same time we make the prototype gdb directory.
15628 * Makefile.in (make-gdb.tar.Z): Make the testsuite distribution
15629 files at the same time as the gdb base release distribution.
15630
15631 Thu Apr 29 12:50:37 1993 Ian Lance Taylor (ian@cygnus.com)
15632
15633 * Makefile.in (check): Use individual check targets rather than
15634 DO_X rule.
15635 (check-gcc): Added.
15636
15637 Thu Apr 29 09:50:07 1993 Jim Kingdon (kingdon@cygnus.com)
15638
15639 * config.sub: Use sysv3.2 not sysv32 for canonical OS
15640 for System V release 3.2.
15641
15642 Thu Apr 29 10:33:22 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15643
15644 * config.sub: Recognize hppaosf.
15645 * configure.in: Do configure ld/binutils/gas for it.
15646
15647 Tue Apr 27 06:25:34 1993 Ken Raeburn (raeburn@kr-pc.cygnus.com)
15648
15649 * configure (tooldir): Alter syntax used to set this, for systems
15650 where "\$" isn't handled right, like i386-aix.
15651
15652 Thu Apr 22 08:17:35 1993 Ian Lance Taylor (ian@cygnus.com)
15653
15654 * configure: Pass program-transform-name, not
15655 program_transform_name, to recursive configures.
15656
15657 Thu Apr 22 02:58:21 1993 Ken Raeburn (raeburn@cygnus.com)
15658
15659 * Makefile.in (gas+binutils.tar.z): New rule for building snapshots
15660 of gas+ld+binutils.
15661
15662 Mon Apr 19 17:41:30 1993 Per Bothner (bothner@cygnus.com)
15663
15664 * config.guess: Recognize AIX3.2 as distinct from 3.1.
15665
15666 Sat Apr 17 17:19:50 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15667
15668 * configure.in: rename m88k-motorola-m88kbcs to m88k-motorola-sysv
15669
15670 Tue Apr 13 16:52:16 1993 Brendan Kehoe (brendan@lisa.cygnus.com)
15671
15672 * Makefile.in (PRMS): Set back to all-prms.
15673
15674 Sat Apr 10 12:04:07 1993 Ian Lance Taylor (ian@cygnus.com)
15675
15676 * test-build.mk: Pass -with-gnu-as for known MIPS native and MIPS
15677 targets, rather than for MIPS hosts.
15678
15679 Fri Apr 9 13:51:06 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15680
15681 * configure.in: add comment for --with-x default values
15682
15683 * config.guess: handle Motorola Delta88 box for SVR3 and SVR4.
15684
15685 * Makefile.in: add check-* targets for each of the directories in
15686 the tree. Add a definition of RUNTEST that will use the one we
15687 just built, if it exists. Pass this down via FLAGS_TO_PASS.
15688
15689 Thu Apr 8 09:21:30 1993 Ian Lance Taylor (ian@cygnus.com)
15690
15691 * configure.in: Removed obsolete references to bfd_target and
15692 target_makefile_frag.
15693
15694 * build-all.mk: Set assorted targets for Q2.
15695 * config.sub: Recognize z8k-sim and h8300-hms.
15696 * test-build.mk: Really don't pass host to configure.
15697 (HOLES): Added uname.
15698
15699 Wed Apr 7 15:48:19 1993 Ian Lance Taylor (ian@cygnus.com)
15700
15701 * configure: Handle an empty program-prefix, program-suffix or
15702 program-transform-name correctly.
15703
15704 Tue Apr 6 13:48:41 1993 Ian Lance Taylor (ian@cygnus.com)
15705
15706 * build-all.mk: -G 8 no longer required for MIPS targets.
15707 * test-build.mk: Don't pass host argument to configure; make it
15708 guess.
15709
15710 Tue Apr 6 10:36:53 1993 Fred Fish (fnf@cygnus.com)
15711
15712 * Makefile.in (gdb.tar.Z): Fix for building gzip'd distribution.
15713 * Makefile.in (COMPRESS): New macro, like GZIP.
15714
15715 Fri Apr 2 09:02:31 1993 Ian Lance Taylor (ian@cygnus.com)
15716
15717 * test-build.mk: Use -with-gnu-as for mips-sgi-irix4 as well.
15718
15719 * build-all.mk: Set GCC to gcc -O -G 8 for MIPS targets, since gcc
15720 with gas currently defaults to -G 0.
15721
15722 Thu Apr 1 08:25:42 1993 Ian Lance Taylor (ian@cygnus.com)
15723
15724 * Makefile.in (all-flex): flex depends on byacc.
15725
15726 * build-all.mk: If host not specified, use config.guess. Pass TAG
15727 to test-build.mk as RELEASE_TAG.
15728 * test-build.mk (configargs): New variable containing arguments to
15729 pass to configure. Set to -with-gnu-as on mips-dec-ultrix.
15730 (FLAGS_TO_PASS): Pass down RELEASE_TAG.
15731
15732 * config.guess: Use /bin/uname when checking -X argument on SCO,
15733 to avoid invoking GNU uname which doesn't understand -X.
15734
15735 * test-build.mk: Don't use /usr/unsupported/bin/as on AIX.
15736
15737 * configure.in: Build gas for mips-*-*.
15738
15739 Wed Mar 31 21:20:58 1993 K. Richard Pixley (rich@rtl.cygnus.com)
15740
15741 * Makefile.in (all.normal): insert missing backslash.
15742
15743 Wed Mar 31 12:31:56 1993 Ian Lance Taylor (ian@cygnus.com)
15744
15745 * build-all.mk: Bump -XNh value to 1500 to match gcc requirements.
15746
15747 * Makefile.in: Complete overhaul to merge many almost identical
15748 targets.
15749
15750 Tue Mar 30 20:17:01 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15751
15752 * Makefile.in (setup-dirs-gdb): Renamed from setup-dirs.
15753 (gdb.tar.Z): Adjusted.
15754
15755 * Makefile.in (setup-dirs, taz): New targets; should be general
15756 enough to adapt for gdb sometime. Build only .z file.
15757 (gas.tar.z): New target.
15758
15759 Tue Mar 30 10:03:09 1993 Ian Lance Taylor (ian@cygnus.com)
15760
15761 * build-all.mk: Use CC=cc -Xs on Solaris.
15762
15763 Thu Mar 25 15:14:30 1993 Fred Fish (fnf@cygnus.com)
15764
15765 * Makefile.in: Incorporate changes suggested by wilson@cygnus.com
15766 for handling BISON for FSF releases.
15767
15768 Thu Mar 25 06:19:48 1993 Ken Raeburn (raeburn@kr-pc.cygnus.com)
15769
15770 * configure: Actually implement the change zoo just documented.
15771
15772 Wed Mar 24 13:02:44 1993 david d `zoo' zuhn (zoo at poseidon.cygnus.com)
15773
15774 * configure: when using config.guess, only set target_alias when
15775 it's not already been set (ie, on the command line)
15776
15777 Mon Mar 22 23:07:39 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15778
15779 * Makefile.in: add installcheck target, set PRMS to install-prms
15780
15781 Sun Mar 21 16:46:12 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15782
15783 * configure: add support for package_makefile_fragment, handle the
15784 case where a directory has a configure.in file but no Makefile.in
15785 more gracefully (with an actual understandable error message, even);
15786 add support for --without (and add this to the usage message); also
15787 explicitly add a --host=${host_alias} to the command line when
15788 config.guess is used
15789
15790 Sun Mar 21 12:11:58 1993 Jim Wilson (wilson@sphagnum.cygnus.com)
15791
15792 * configure: Must use both --host and --target in recursive calls.
15793
15794 Thu Mar 18 12:31:35 1993 Ian Lance Taylor (ian@cygnus.com)
15795
15796 * Makefile.in: Change deja-gnu to dejagnu.
15797
15798 Mon Mar 15 15:44:35 1993 Ian Lance Taylor (ian@cygnus.com)
15799
15800 * configure.in (h8300-*-*, h8500-*-*): Don't build libg++.
15801
15802 Fri Mar 12 18:30:14 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15803
15804 * configure.in: canonicalize all instances to *-*-solaris2*,
15805 also strip out a number of tools to not build for go32 host
15806
15807 Wed Mar 10 12:08:27 1993 K. Richard Pixley (rich@rtl.cygnus.com)
15808
15809 * config.guess: add GPL.
15810
15811 * Makefile.in, config.guess, config.sub, configure: bump
15812 copyrights to 93.
15813
15814 Wed Mar 10 07:12:48 1993 Ian Lance Taylor (ian@cygnus.com)
15815
15816 * Makefile.in (do-info): Removed obsolete check for existence of
15817 localenv file.
15818
15819 * Makefile.in (MAKEOVERRIDES): Define to be empty.
15820
15821 Wed Mar 10 03:11:56 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15822
15823 * Makefile.in: a couple of 'else true' for decstation,
15824 support for TclX
15825
15826 * configure.in: configure tclX too; don't remove Tk on RS/6000 anymore
15827
15828 Tue Mar 9 16:06:12 1993 K. Richard Pixley (rich@cygnus.com)
15829
15830 * Makefile.in (setup-dirs): change invocation of make to $(MAKE).
15831
15832 Mon Mar 8 14:52:11 1993 Ken Raeburn (raeburn@cambridge)
15833
15834 * config.guess: Recognize i386-ibm-aix (PS/2).
15835 * configure.in: Use config/mh-aix386 file for it.
15836
15837 Mon Mar 8 11:12:43 1993 Ian Lance Taylor (ian@cygnus.com)
15838
15839 * Makefile.in (GCC_FOR_TARGET): Eliminated definition; use
15840 CC_FOR_TARGET instead.
15841 (BASE_FLAGS_TO_PASS): Pass GCC_FOR_TARGET=$(CC_FOR_TARGET).
15842
15843 Wed Mar 3 16:00:28 1993 Steve Chamberlain (sac@ok.cygnus.com)
15844
15845 * Makefile.in: Add sim to list of directories sent with gdb
15846
15847 Wed Mar 3 11:42:39 1993 Ken Raeburn (raeburn@cygnus.com)
15848
15849 * configure.in: Put back mips-dec-bsd* case.
15850
15851 Tue Mar 2 21:15:58 1993 Fred Fish (fnf@cygnus.com)
15852
15853 (Ultrix 2.2 support from Michael Rendell <michael@mercury.cs.mun.ca>)
15854 * configure.in (vax-*-ultrix2*): Add Ultrix 2.2 triplet.
15855 * config.guess: Change 'VAX*:ULTRIX:*:*' to 'VAX*:ULTRIX*:*:*'.
15856
15857 Tue Mar 2 18:11:03 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15858
15859 * configure.in: remove no-op mips-dec-bsd* in "case $target"
15860
15861 * Makefile.in (dir.info): only run gen-info-dir if it exists,
15862 (install-info): install dir.info only if it exists,
15863 (all-expect, install-expect): pass along X11_FLAGS_TO_PASS
15864
15865 Tue Mar 2 09:01:30 1993 Ken Raeburn (raeburn@cygnus.com)
15866
15867 * configure.in: For vms target, skip bfd, ld, binutils. Do build
15868 gas for mips-dec-bsd.
15869
15870 Tue Mar 2 08:35:24 1993 Ian Lance Taylor (ian@cygnus.com)
15871
15872 * configure (makesrcdir): If ${srcdir} is relative and not ".",
15873 and ${subdir} is not ".", set makesrcdir based on ${invsubdir}.
15874
15875 Tue Feb 23 14:18:28 1993 Mike Werner (mtw@poseidon.cygnus.com)
15876
15877 * configure.in: Added "dejagnu" to hosttools list.
15878
15879 Mon Feb 22 23:28:38 1993 Per Bothner (bothner@rtl.cygnus.com)
15880
15881 * config.sub, configure.in, config.guess: Add support
15882 for Bosx, an AIX variant from Bull.
15883 Patches from F.Pierresteguy@frcl.bull.fr.
15884
15885 Sun Feb 21 11:15:22 1993 Mike Werner (mtw@poseidon.cygnus.com)
15886
15887 * devo/dejagnu: Initial creation of devo/dejagnu.
15888 Migrated dejagnu testcases and support files for testing software
15889 tools to reside as subdirectories, currently called "testsuite",
15890 within the directory of the software tool. Migrated all programs,
15891 support libraries, etc. beloging to dejagnu proper from
15892 devo/deja-gnu to devo/dejagnu. These files were moved "as is"
15893 with no modifications. The changes to these files which will
15894 allow them to configure, build, and execute properly will be made
15895 in a future update.
15896
15897 Fri Feb 19 20:19:39 1993 Brendan Kehoe (brendan@lisa.cygnus.com)
15898
15899 * Makefile.in: Change send_pr to send-pr.
15900 * configure.in: Likewise.
15901 * send_pr: Renamed directory to send-pr.
15902
15903 Fri Feb 19 19:00:13 1993 Per Bothner (bothner@cygnus.com)
15904
15905 * Makefile.in: Add some extra semi-colons (needed if SHELL=bash).
15906
15907 Fri Feb 19 00:59:33 1993 John Gilmore (gnu@cygnus.com)
15908
15909 * README: Update for gdb-4.8 release.
15910 * Makefile.in (gdb.tar.Z): Add texinfo/tex3patch. Build
15911 gdb-xxx.tar.z (gzip'd) file also.
15912
15913 Thu Feb 18 09:16:17 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15914
15915 * Makefile.in: make all-diff depend on all-libiberty
15916
15917 Tue Feb 16 16:06:31 1993 K. Richard Pixley (rich@cygnus.com)
15918
15919 * config.guess: add vax-ultrix in the spirit of mips-ultrix.
15920
15921 Tue Feb 16 05:57:15 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15922
15923 * configure.in, Makefile.in: add hello, tar, gzip, recode, indent
15924
15925 Tue Feb 16 00:58:20 1993 John Gilmore (gnu@cygnus.com)
15926
15927 * Makefile.in (DEVO_SUPPORT): Remove etc directory
15928 (ETC_SUPPORT): Only add the files GDB wants from etc/.
15929 (gdb.tar.Z): Use ETC_SUPPORT. Use byacc when building the file.
15930
15931 Thu Feb 11 20:14:28 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15932
15933 * Makefile.in: makeinfo binary is in a new location
15934
15935 Tue Feb 9 12:42:27 1993 Ian Lance Taylor (ian@cygnus.com)
15936
15937 * config.sub: Accept -ecoff as an OS.
15938
15939 * Makefile.in: Various changes to eliminate a level of make
15940 recursion and reduce the required command line length.
15941 (BASE_FLAGS_TO_PASS): New variable holding flags passed to all
15942 sub-makes.
15943 (EXTRA_HOST_FLAGS, EXTRA_TARGET_FLAGS, EXTRA_GCC_FLAGS): New
15944 variables holding settings for specific sub-makes.
15945 (FLAGS_TO_PASS, TARGET_FLAGS_TO_PASS, GCC_FLAGS_TO_PASS): Rewrote
15946 in terms of BASE_FLAGS_TO_PASS.
15947 (TARGET_LIBS): New variable listing directories which use
15948 TARGET_FLAGS_TO_PASS.
15949 (subdir_do): Eliminated.
15950 (do-*): New set of targets to replace subdir_do.
15951 (various): All targets which used subdir_do now depend on do-*.
15952 (local-clean): Renamed from do_clean.
15953 (local-distclean): New target, dependency of distclean and
15954 realclean.
15955 (install-info): Don't create directories. Depend on dir.info
15956 rather than calling make recursively.
15957 (install-dir.info): Eliminated.
15958 (install-info-dirs): Create all info directories here.
15959 (dir.info): Depend upon do-install-info.
15960
15961 * test-build.mk (HOLES): Added false.
15962
15963 Sat Feb 6 14:05:09 1993 Per Bothner (bothner@rtl.cygnus.com)
15964
15965 * config.guess: Recognize BSDI and BSDJ (Jolitz 386bsd).
15966
15967 Thu Feb 4 20:49:18 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15968
15969 * Makefile.in (info): remove dependency on all-texinfo. The
15970 problem was really in texinfo/C, not at this level.
15971
15972 Thu Feb 4 13:38:41 1993 Ian Lance Taylor (ian@cygnus.com)
15973
15974 * Makefile.in (info): Added dependency on all-texinfo (PR 2112).
15975
15976 Thu Feb 4 01:50:53 1993 John Gilmore (gnu@cygnus.com)
15977
15978 * Makefile.in (make-gdb.tar.Z): Change BISON to 'bison -y' for
15979 GDB releases.
15980
15981 Wed Feb 3 17:22:16 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15982
15983 * configure: Include srcdir in message about target of link not
15984 being found. Don't convert `-' to `_' in `with' options being
15985 passed to subdirs.
15986
15987 Tue Feb 2 18:57:59 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15988
15989 * configure.in: add uudecode to host_tools
15990
15991 * Makefile.in: added {all,install}-uudecode targets, added them to
15992 the appropriate lists
15993
15994 Tue Feb 2 11:45:53 1993 Ian Lance Taylor (ian@cygnus.com)
15995
15996 * Makefile.in (all-gcc): Added dependency on all-gas.
15997
15998 * configure.in (mips-*-*): Build ld and binutils.
15999
16000 Mon Feb 1 12:35:41 1993 K. Richard Pixley (rich@rtl.cygnus.com)
16001
16002 * configure: check return code from mkdir, print error message and
16003 exit on failure.
16004
16005 Sat Jan 30 16:40:28 1993 John Gilmore (gnu@cygnus.com)
16006
16007 * Makefile.in (make-gdb.tar.Z): New location for texinfo.tex.
16008
16009 Thu Jan 28 15:09:59 1993 Ian Lance Taylor (ian@cygnus.com)
16010
16011 * test-build.mk (HOLES): Added tar, cpio and uudecode.
16012
16013 Wed Jan 27 16:50:32 1993 Jim Wilson (wilson@sphagnum.cygnus.com)
16014
16015 * config.sub (h8500): Recognize this as a cpu type.
16016
16017 Sat Jan 23 20:32:01 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16018
16019 * configure: source directory missing is no longer a warning
16020
16021 * configure.in: recognize irix[34]* instead of irix[34]
16022
16023 * Makefile.in: define and pass down X11_LIB
16024
16025 Sat Jan 23 13:49:40 1993 Per Bothner (bothner@cygnus.com)
16026
16027 * guess-systype: Renamed to ...
16028 * config.guess: ... by popular request.
16029 * configure.in, Makefile.in: Update accordingly.
16030
16031 Thu Jan 21 12:20:55 1993 Per Bothner (bothner@cygnus.com)
16032
16033 * guess-systype: Patches from John Eaton <jwe@che.utexas.edu>:
16034 + Add Convex, Cray/Unicos, and Encore/Multimax support.
16035 + Execute ./dummy instead of assuming . is in PATH.
16036
16037 Tue Jan 19 17:18:06 1993 Per Bothner (bothner@cygnus.com)
16038
16039 * guess-systype: New shell script. Attempts to guess the
16040 canonical host name of the executing host.
16041 Only a few hosts are supported so far.
16042 * configure: Call guess-systype if no host is specified.
16043
16044 Tue Jan 19 08:26:07 1993 Ian Lance Taylor (ian@cygnus.com)
16045
16046 * Makefile.in (gcc-no-fixedincludes): Made to work with current
16047 gcc Makefile.
16048
16049
16050 Fri Jan 15 10:27:02 1993 Ian Lance Taylor (ian@cygnus.com)
16051
16052 * Makefile.in (GCC_FLAGS_TO_PASS): New variable.
16053 (all-gcc, install-gcc, subdir_do): Use it.
16054
16055 Wed Jan 13 17:06:45 1993 Jim Wilson (wilson@sphagnum.cygnus.com)
16056
16057 * Makefile.in: Rename uninstalled gcc driver from gcc to xgcc.
16058
16059 Wed Jan 6 20:29:16 1993 Mike Werner (mtw@rtl.cygnus.com)
16060
16061 * Makefile.in: Removed explicit setting of SUBDIRS. SUBDIRS is now
16062 set exclusively by configure, using configure.in .
16063
16064 Wed Jan 6 13:44:11 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16065
16066 * test-build.mk: set $PATH for all builds
16067
16068 * Makefile.in: pass TARGET_FLAGS_TO_PASS for xiberty and libm
16069
16070 Wed Jan 6 11:02:10 1993 Fred Fish (fnf@cygnus.com)
16071
16072 * Makefile.in (GCC_FOR_TARGET): Supply a default that matches
16073 the one used in gcc/Makefile.in, so that a null expansion doesn't
16074 override the one needed to build gcc with a native cc.
16075
16076
16077 Tue Jan 5 07:55:12 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
16078
16079 * configure: Accept -with arguments.
16080
16081 Sun Jan 3 15:15:09 1993 Steve Chamberlain (sac@thepub.cygnus.com)
16082
16083 * Makefile.in: added h8300sim
16084
16085 Tue Dec 29 15:06:00 1992 Ian Lance Taylor (ian@cygnus.com)
16086
16087 * build-all.mk: If canonhost is i386-unknown-sco3.2v4, change it
16088 to i386-sco3.2v4. Set TARGETS and CFLAGS for i386-sco3.2v4.
16089 (all-cygnus, native, build-cygnus): Make
16090 $(canonhost)-stamp-3stage-done, not $(host)....
16091 * test-build.mk (stamp-3stage-compared): Use tail +10c for
16092 i386-sco3.2v4. Added else true to if command.
16093
16094 Mon Dec 28 12:08:56 1992 Ken Raeburn (raeburn@cygnus.com)
16095
16096 * config.sub: (from FSF) Sequent uses a BSD-like OS.
16097
16098 Mon Dec 28 08:32:06 1992 Minh Tran-Le (mtranle@paris.intellicorp.com)
16099
16100 * configure.in (i[34]86-*-isc*): added; uses mh-sysv.
16101
16102 Thu Dec 24 17:26:24 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16103
16104 * configure.in: don't remove binutils from Solaris builds
16105
16106 Thu Dec 24 14:08:38 1992 david d`zoo' zuhn (zoo@cygnus.com)
16107
16108 * Makefile.in: get rid of earlier definitions for *clean,
16109 also handle the recursive info rule better
16110
16111 Thu Dec 24 12:40:21 1992 Per Bothner (bothner@rtl.cygnus.com)
16112
16113 * Makefile.in (mostlyclean, distclean, realclean): Fix to
16114 do more-or-less the right thing.
16115
16116 Wed Dec 16 10:25:31 1992 Ian Lance Taylor (ian@cygnus.com)
16117
16118 * Makefile.in: Add lines defining CC and CXX, and use CXX rather
16119 than gcc in definitions of CXX_FOR_BUILD and CXX_FOR_TARGET.
16120
16121 Tue Dec 15 00:34:32 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16122
16123 * Makefile.in: change all $(host_cpu)-$(host_vendor)-$(host_os) to
16124 $(host_canonical).
16125
16126 * configure.in: split the configdirs list into 4 categories (native
16127 v. cross, library v. tool) and handle the cross-only and native-
16128 only in more reasonable (and correct!) way.
16129
16130 Mon Dec 14 17:04:22 1992 Stu Grossman (grossman at cygnus.com)
16131
16132 * configure.in (hppa*-*-*): Don't remove bfd and gdb from
16133 configdirs anymore.
16134
16135 Sun Dec 13 00:37:26 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16136
16137 * Makefile.in: extensive cleanup:: removed all of the explicit
16138 clean-* targets, collapsed many wrappers around subdir_do into
16139 one, added additional targets to satisfy standards.texi, deleted
16140 some old targets, some changes for consistency
16141
16142 Fri Dec 11 20:18:02 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16143
16144 * configure.in: handle some programs as cross-only, and others as
16145 native only
16146
16147 * test-build.mk: handle partial holes in a more generic manner
16148
16149 * Makefile.in: m4 depends on libiberty
16150
16151 Thu Dec 3 21:52:11 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16152
16153 * configure.in: add m4, textutils, fileutils, sed, shellutils,
16154 time, wdiff, and find to configdirs
16155
16156 * Makefile.in: all, clean, and install rules for the new programs
16157 added to configure.in
16158
16159 Mon Nov 30 14:54:34 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16160
16161 * configure.in: use mh-sun for all *-sun-* hosts
16162
16163 Fri Nov 27 18:35:54 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16164
16165 * Makefile.in: define flags for X11 include files and library file
16166 locations, pass them down to the programs that need this info
16167
16168 * build-all.mk: added a 'native' target, to 3stage the native toolchain
16169
16170 Sun Nov 22 18:59:13 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16171
16172 * configure.in: start building libg++ for HP-UX targets
16173
16174 Wed Nov 18 19:33:11 1992 John Gilmore (gnu@cygnus.com)
16175
16176 * README: Update references to files moved into etc/.
16177
16178 Sun Nov 15 09:36:08 1992 Fred Fish (fnf@cygnus.com)
16179
16180 * config.sub (i386sol2, i486sol2): i[34]86-unknown-solaris2.
16181 * configure.in (i[34]86-*-solaris2*): Use config/mh-sysv4.
16182
16183 Thu Nov 12 08:50:42 1992 Ian Lance Taylor (ian@cygnus.com)
16184
16185 * configure: accept dash as well as underscore in long option
16186 names for FSF compatibility.
16187
16188 Wed Nov 11 08:04:37 1992 Ian Lance Taylor (ian@cygnus.com)
16189
16190 * config.sub: added -sco3.2v4 support from FSF.
16191
16192 Sun Nov 8 21:14:30 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16193
16194 * configure.in: expand the section that adds or removes
16195 directories from the list of programs to build, to handle native
16196 vs. cross in addition to host v. native
16197
16198 Sat Nov 7 18:52:27 1992 Per Bothner (bothner@rtl.cygnus.com)
16199
16200 * Makefile.in: Replace C++ in macro names with CXX.
16201 This is less likely to break ...
16202
16203 Sat Nov 7 15:16:58 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16204
16205 * test-build.mk: add -w to GNU_MAKE
16206
16207 Fri Nov 6 23:10:37 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16208
16209 * config.sub: remove 'sparc'-->'sparc-sun' default transformation,
16210 add 'sparc' to list of recognized cpus. This needed to make
16211 'sparc-aout' expand to 'sparc-unknown-aout' instead of 'sparc-sun-aout'.
16212 Delete some redundant ose68 variants. Recognize -wrs as an os,
16213 then changes that into $CPU-wrs-vxworks.
16214
16215 * configure.in: remove most references to gdbtest, regularize
16216 target based program removal
16217
16218 * test-build.mk: import from p3 tree (many fixes and changes)
16219
16220 Fri Nov 6 20:59:00 1992 david d `zoo' zuhn (zoo@cygnus.com)
16221
16222 * Makefile.in: added rules to handle tcl, tk, and expect
16223
16224 * configure.in: handle those directories if they exist
16225
16226 Thu Nov 5 14:35:41 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16227
16228 * config.sub: removed bogus hppabsd and hppahpux names, since
16229 "hppa" is not a valid cpu (hppa1.1 or hppa1.0 are, though)
16230
16231 Thu Oct 29 00:12:41 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16232
16233 * Makefile.in: all-gcc now depends on all-binutils. all-libg++
16234 depends upon all-xiberty
16235
16236 * Makefile.in: changes from p3, including:
16237
16238 Thu Oct 8 15:00:17 1992 Ian Lance Taylor (ian@cygnus.com)
16239
16240 * Makefile.in (XTRAFLAGS): include newlib directories if
16241 newlib/Makefile exists, rather than if host != target.
16242
16243 Fri Sep 25 13:41:52 1992 Ian Lance Taylor (ian@cygnus.com)
16244
16245 * Makefile.in: added -nostdinc to XTRAFLAGS if we are using gcc
16246 from the same source tree and not building a cross-compiler. This
16247 matters for the libg++ configuration if reconfiguring a tree that
16248 has already been installed.
16249
16250 Thu Sep 10 10:35:51 1992 Ian Lance Taylor (ian@cygnus.com)
16251
16252 * Makefile.in: added -I for newlib/targ-include to XTRAFLAGS, to
16253 pick up the machine and system specific header files.
16254
16255 * Makefile.in: added AS_FOR_TARGET, passed down in
16256 TARGET_FLAGS_TO_PASS. Added CC_FOR_BUILD, which is intended to be
16257 the C compiler to use to create programs which are run in the
16258 build environment, set it to default to $(CC), and passed it down
16259 in FLAGS_TO_PASS and TARGET_FLAGS_TO_PASS.
16260
16261 Mon Sep 7 22:34:42 1992 Ian Lance Taylor (ian@cirdan.cygnus.com)
16262
16263 * Makefile.in: add $(host) = $(target) tests back to *_FOR_TARGET.
16264 We need them for unusual native builds, like systems without
16265 ranlib.
16266
16267 * configure: also define $(host_canonical) and
16268 $(target_canonical), which are the full, canonical names for the
16269 given host and target
16270
16271 Sun Nov 1 16:38:17 1992 Per Bothner (bothner@cygnus.com)
16272
16273 * Makefile.in: Added separate definitions for C++.
16274
16275 Fri Oct 30 11:37:52 1992 Fred Fish (fnf@cygnus.com)
16276
16277 * configure.in (configdirs): Add deja-gnu.
16278
16279 Fri Oct 23 00:39:18 1992 John Gilmore (gnu@cygnus.com)
16280
16281 * README: Update for configure.texi and gdb-4.7 release.
16282
16283 Wed Oct 21 21:54:27 1992 John Gilmore (gnu@cygnus.com)
16284
16285 * Makefile.in: Move "all" target to top of file.
16286 Previously, first target was ".PHONY" which caused BSD4.4 make
16287 to build .PHONY when make was run without arguments.
16288
16289 Mon Oct 19 01:17:54 1992 John Gilmore (gnu@cygnus.com)
16290
16291 * Makefile.in: Add COPYING.LIB to GDB releases, now that there's
16292 Library-copylefted code in libiberty.
16293
16294 Tue Oct 13 01:22:32 1992 John Gilmore (gnu@cygnus.com)
16295
16296 * config.sub: Replace m68kmote with plain old m68k.
16297
16298 Fri Oct 9 03:14:24 1992 John Gilmore (gnu@cygnus.com)
16299
16300 * Makefile.in: Remove space from blank line, avoid Make complaints.
16301
16302 Thu Oct 8 18:41:45 1992 Ken Raeburn (raeburn@cygnus.com)
16303
16304 * config.sub: Complain if no argument is given. Added support for
16305 386bsd as OS and target alias.
16306
16307 Thu Oct 8 15:07:22 1992 Ian Lance Taylor (ian@cygnus.com)
16308
16309 * Makefile.in (XTRAFLAGS): include newlib directories if
16310 newlib/Makefile exists, rather than if host != target.
16311
16312 Mon Oct 5 03:00:09 1992 Mark Eichin (eichin at tweedledumber.cygnus.com)
16313
16314 * config.sub: recognize sparclite-wrs-vxworks.
16315
16316 * Makefile.in (install-xiberty): added *-xiberty make rules (from
16317 p3.) Added clean-xiberty to clean.
16318
16319 Thu Oct 1 17:59:19 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16320
16321 * configure.in: use *-*-* instead of nested cases for host and target
16322
16323 Tue Sep 29 14:11:18 1992 Ian Lance Taylor (ian@cygnus.com)
16324
16325 * Makefile.in: added -nostdinc to XTRAFLAGS if we are using gcc
16326 from the same source tree and not building a cross-compiler. This
16327 matters for the libg++ configuration if reconfiguring a tree that
16328 has already been installed.
16329
16330 Sep 20 08:53:10 1992 Fred Fish (fnf@cygnus.com)
16331
16332 * config.sub (i486v/i486v4): Merge in from FSF version.
16333
16334 Fri Sep 18 00:32:00 1992 Mark Eichin (eichin@cygnus.com)
16335
16336 * configure: only set PWD if it is already set.
16337
16338 Thu Sep 17 23:05:53 1992 Mark Eichin (eichin@cygnus.com)
16339
16340 * configure: just set PWD=`pwd` at the top, since Ultrix sh
16341 doesn't have unset and all success paths (and most error paths)
16342 out set it anyway. (Note: should change all uses of ${PWD=`pwd`}
16343 to just ${PWD} to avoid confusion.)
16344
16345 Tue Sep 15 16:00:54 1992 Ian Lance Taylor (ian@cygnus.com)
16346
16347 * configure: always set $(tooldir) to $(libdir)/$(target_alias),
16348 even for a native compilation.
16349
16350 Tue Sep 15 02:22:56 1992 John Gilmore (gnu@cygnus.com)
16351
16352 Changes to make the gdb.tar.Z rule work better.
16353
16354 * Makefile.in (GDB_SUPPORT_DIRS): Add opcodes.
16355 (DEVO_SUPPORT): Add configure.texi.
16356 (bfd-ilrt.tar.Z): Remove ancient rule.
16357
16358 Thu Sep 10 10:43:19 1992 Ian Lance Taylor (ian@cygnus.com)
16359
16360 * Makefile.in: added -I for newlib/targ-include to XTRAFLAGS, to
16361 pick up the machine and system specific header files.
16362
16363 * configure.in, config.sub: added new target m68010-adobe-scout,
16364 with alias of adobe68k. Changed configure.in to check for
16365 -scout before -sco* to avoid a false match.
16366
16367 * Makefile.in: added AS_FOR_TARGET, passed down in
16368 TARGET_FLAGS_TO_PASS. Added CC_FOR_BUILD, which is intended to be
16369 the C compiler to use to create programs which are run in the
16370 build environment, set it to default to $(CC), and passed it down
16371 in FLAGS_TO_PASS and TARGET_FLAGS_TO_PASS.
16372
16373 Wed Sep 9 12:21:42 1992 Ian Lance Taylor (ian@cygnus.com)
16374
16375 * Makefile.in: added TARGET_FLAGS_TO_PASS, CC_FOR_TARGET,
16376 AR_FOR_TARGET, RANLIB_FOR_TARGET, NM_FOR_TARGET. Pass
16377 TARGET_FLAGS_TO_PASS, which defines CC, AR, RANLIB and NM as the
16378 FOR_TARGET variants, to newlib and libg++.
16379
16380 Tue Sep 8 17:28:30 1992 Ken Raeburn (raeburn@cambridge.cygnus.com)
16381
16382 * Makefile.in (all-gas, all-gdb): Require all-opcodes to be built
16383 first.
16384
16385 Wed Sep 2 02:50:05 1992 John Gilmore (gnu@cygnus.com)
16386
16387 * config.sub: Accept `elf' as an environment.
16388
16389 Tue Sep 1 15:48:30 1992 Steve Chamberlain (sac@thepub.cygnus.com)
16390
16391 * Makefile.in (all-opcodes): cd into the right directory
16392
16393 Sun Aug 30 21:12:11 1992 Ian Lance Taylor (ian@cygnus.com)
16394
16395 * configure: added -program_transform_name option, used as
16396 argument to sed when installing programs.
16397 configure.texi: added documentation for -program_prefix,
16398 -program_suffix and -program_transform_name.
16399
16400 Thu Aug 27 21:59:44 1992 John Gilmore (gnu@cygnus.com)
16401
16402 * config.sub: Accept i486 where i386 ok.
16403
16404 Thu Aug 27 13:04:42 1992 Brendan Kehoe (brendan@rtl.cygnus.com)
16405
16406 * config.sub: accept we32k
16407
16408 Mon Aug 24 14:05:14 1992 Ian Lance Taylor (ian@cygnus.com)
16409
16410 * config.sub, configure.in: accept OSE68000 and OSE68k.
16411
16412 * Makefile.in: don't create all directories for ``make install'';
16413 let the subdirectories create the ones they need.
16414
16415 Tue Aug 11 23:13:17 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16416
16417 * COPYING: new file, GPL v2
16418
16419 Tue Aug 4 01:12:43 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16420
16421 * Makefile.in: use the new gen-info-dir, which needs a template
16422 argument (which also lives in texinfo)
16423
16424 * configure.texi, standards.texi: fix INFO-DIR-ENTRY
16425
16426 Mon Aug 3 00:34:17 1992 Fred Fish (fnf@cygnus.com)
16427
16428 * config.sub (ncr3000): Change i386 to i486.
16429
16430 Thu Jul 23 00:12:17 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16431
16432 * Makefile.in: add install-rcs, install-grep to
16433 install-no-fixedincludes, removed install-bison and install-libgcc
16434
16435 Tue Jul 21 01:01:50 1992 david d `zoo' zuhn (zoo@cygnus.com)
16436
16437 * configure.in: grab the HPUX makefile fragment if on HPUX
16438
16439 Mon Jul 20 11:02:09 1992 D. V. Henkel-Wallace (gumby@cygnus.com)
16440
16441 * Makefile.in: eradicate bison spoor (ditto libgcc).
16442 configure.in: recognise m68{k,000}-ericsson-OSE.
16443 es1800 is alias for m68k-ericsson-OSE
16444
16445 Sun Jul 19 17:49:02 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16446
16447 * configure.in: rearrange the parts that remove programs from
16448 configdirs, based now on HOST==TARGET or by canonical triple.
16449
16450 Fri Jul 17 22:52:49 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16451
16452 * test-build.mk: recurse explicitly with -f test-build.mk when
16453 appropriate. predicate stage3 and comparison on the existence
16454 of gcc. That is, if gcc isn't around, we aren't three-staging.
16455 On very clean, also remove ...stamp-co. Build in-place before
16456 doing other builds.
16457
16458 Thu Jul 16 18:33:09 1992 Steve Chamberlain (sac@thepub.cygnus.com)
16459
16460 * Makefile.in, configure.in: add tgas
16461
16462 Thu Jul 16 16:05:28 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16463
16464 * Makefile.in: a number of changes merged in from progressive.
16465
16466 * configure.in: add libm.
16467
16468 * .cvsignore: ignore some stuff that comes from test-build.mk.
16469
16470 Tue Jul 7 00:24:52 1992 Fred Fish (fnf@cygnus.com)
16471
16472 * config.sub: Add es1800 (m68k-ericsson-es1800).
16473
16474 Tue Jun 30 20:24:41 1992 D. V. Henkel-Wallace (gumby@cygnus.com)
16475
16476 * configure: Add program_suffix (parallel to program_prefix)
16477 * Makefile.in: adjust directory-creating script for losing decstation
16478
16479 Mon Jun 22 23:43:48 1992 Per Bothner (bothner@cygnus.com)
16480
16481 * configure: Minor $subdir-related fixes.
16482
16483 Mon Jun 22 18:30:26 1992 Steve Chamberlain (sac@thepub.cygnus.com)
16484
16485 * configure: fix various problems with propogating
16486 makefile_target_frag in subdirs.
16487 * configure.in: config libgcc if its there
16488
16489 Fri Jun 19 15:19:40 1992 Stu Grossman (grossman at cygnus.com)
16490
16491 * config.sub: HPPA merge.
16492
16493 Sun Jun 14 10:29:19 1992 John Gilmore (gnu at cygnus.com)
16494
16495 * Makefile.in: Replace all-bison with all-byacc in all
16496 dependency lines for other tools (which now use byacc).
16497
16498 Fri Jun 12 22:21:57 1992 John Gilmore (gnu at cygnus.com)
16499
16500 * config.sub: Add sun4sol2 => sparc-sun-solaris2.
16501
16502 Thu Jun 4 12:07:32 1992 Mark Eichin (eichin@cygnus.com)
16503
16504 * Makefile.in: make gprof rules similar to byacc rules (instead of
16505 vestigal $(unsubdir) that didn't work...)
16506
16507 Thu Jun 4 00:37:05 1992 Per Bothner (bothner@rtl.cygnus.com)
16508
16509 * config.sub: Add support for Linux.
16510 * Makefile.in: Use $(FLAGS_TO_PASS) more consistently
16511 (at least for libg++).
16512
16513 Tue Jun 02 20:03:00 1992 david d `zoo' zuhn (zoo@cygnus.com)
16514
16515 * configure.texi: fix doc for the -nfp option to configure
16516
16517 Tue Jun 2 17:20:52 1992 Michael Tiemann (tiemann@cygnus.com)
16518
16519 * Makefile.in (all-binutils): ar needs flex, so depend on all-flex.
16520
16521 Sun May 31 15:04:08 1992 Mark Eichin (eichin at cygnus.com)
16522
16523 * config.sub: changed [^-]+ to [^-][^-]* so that it works under
16524 Sun sed. (BSD 4.3 sed doesn't handle [^-]+ either.)
16525 * configure.in: added solaris* host_makefile_frag hook.
16526
16527 Sun May 31 01:10:34 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16528
16529 * config.sub: changed recognition of m68000 so that various
16530 m68k types can be specified via m680[01234]0
16531
16532 Sat May 30 21:01:06 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16533
16534 * config.sub (basic_machine): fix sed so that '-foo' isn't
16535 completely substituted out while .+'-foo' loses the '-foo'
16536
16537 Wed May 27 23:18:52 1992 Michael Tiemann (tiemann@rtl.cygnus.com)
16538
16539 * config.sub ($os): Add -aout.
16540
16541 Fri May 22 14:00:02 1992 Per Bothner (bothner@cygnus.com)
16542
16543 * configure: If host_makefile_frag is absolute, don't
16544 prefix ${invsubdir} (relevant to libg++ auto-configure).
16545
16546 Thu May 21 18:00:09 1992 Michael Tiemann (tiemann@rtl.cygnus.com)
16547
16548 * Makefile.in (tooldir): Define it.
16549 (all-ld): Depend on all-flex.
16550
16551 Sun May 10 21:45:59 1992 Per Bothner (bothner@rtl.cygnus.com)
16552
16553 * Makefile.in (check): Fix libg++ special case.
16554
16555 Fri May 8 08:31:41 1992 K. Richard Pixley (rich@cygnus.com)
16556
16557 * configure: do not bury `pwd` into config.status, thus do fewer
16558 pwd's.
16559
16560 * configure: print the "Building in" message only when building in
16561 other than "." AND verbose.
16562
16563 * configure: remove -s, rework -v to better accomodate guested
16564 configures.
16565
16566 * standards.texi: updated to 3 may, fixed librid <-> libdir typo.
16567
16568 Fri May 1 18:00:50 1992 K. Richard Pixley (rich@cygnus.com)
16569
16570 * Makefile.in: macroize flags passed on recursion. remove
16571 fileutils.
16572
16573 Thu Apr 30 08:56:20 1992 K. Richard Pixley (rich@cygnus.com)
16574
16575 * configure: get makesrcdir right for subdirs deeper than 1.
16576
16577 * Makefile.in: pass INSTALL, INSTALL_DATA, INSTALL_PROGRAM on
16578 install.
16579
16580 Fri Apr 24 15:51:51 1992 K. Richard Pixley (rich@cygnus.com)
16581
16582 * Makefile.in: don't print subdir_do or recursion lines.
16583
16584 Fri Apr 24 15:22:04 1992 K. Richard Pixley (rich@cygnus.com)
16585
16586 * standards.texi: added menu item.
16587
16588 * Makefile.in: build and install standards.info.
16589
16590 * standards.texi: new file.
16591
16592 Wed Apr 22 18:06:55 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16593
16594 * configure: test for and move config.status pieces from
16595 ${subdir}/.
16596
16597 Wed Apr 22 14:38:34 1992 Fred Fish (fnf@cygnus.com)
16598
16599 * configure: Test for existance of files before trying to mv
16600 them, to avoid numerous non-existance messages.
16601
16602 Tue Apr 21 12:31:33 1992 K. Richard Pixley (rich@cygnus.com)
16603
16604 * configure: correct final line of config.status.
16605
16606 * configure: patch from eggert. Avoids a protection problem if
16607 the original Makefile.in is read only.
16608
16609 * configure: use move-if-change from gcc to create config.status.
16610 Some makefiles depend on config.status to tell if a directory
16611 has been reconfigured for a different host. This change
16612 prevents those directories from remaking everything in the case
16613 where the reconfig was only intended to rebuild a Makefile.
16614
16615 * configure: test for config.sub with "config.sub sun4" rather
16616 than "config.sub ${host_alias}". Otherwise we can't tell a bad
16617 host alias from a missing config.sub.
16618
16619 Mon Apr 20 18:16:36 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16620
16621 * Makefile.in: explicitly pass CFLAGS on recursion. no longer pass
16622 MINUS_G (this can be done with CFLAGS). Default CFLAGS to -g.
16623
16624 Fri Apr 17 18:27:51 1992 Per Bothner (bothner@cygnus.com)
16625
16626 * configure: mkdir ${subdir} as needed.
16627
16628 Wed Apr 15 17:37:22 1992 K. Richard Pixley (rich@cygnus.com)
16629
16630 * Makefile.in,configure.in: added autoconf.
16631
16632 Wed Apr 15 17:27:34 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16633
16634 * Makefile.in: no longer pass against on recursion.
16635
16636 * Makefile.in: added .NOEXPORT: so that stray makefile_frag
16637 definitions are not inherited.
16638
16639 * configure: correct makesrcdir when subdir is .
16640
16641 Tue Apr 14 11:56:09 1992 Per Bothner (bothner@cygnus.com)
16642
16643 * configure: Add support for 'subdirs' variable, which is
16644 like 'configdirs', except that configure doesn't re-invoke
16645 itself for subdirs, it just creates a Makefile for each subdir.
16646 * configure.texi: Document subdirs.
16647
16648 Mon Apr 13 18:50:16 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16649
16650 * configure.in: added flex to configdirs
16651
16652 Mon Apr 13 18:43:55 1992 K. Richard Pixley (rich@cygnus.com)
16653
16654 * Makefile.in: remove clean-stamps from clean.
16655
16656 Sat Apr 11 03:52:03 1992 John Gilmore (gnu at cygnus.com)
16657
16658 * configure.in: Add gdbtest to configdirs.
16659
16660 Fri Apr 10 23:11:49 1992 Fred Fish (fnf@cygnus.com)
16661
16662 * Makefile.in (MINUS_G): Add macro, default to -g, pass on
16663 to recursive makes.
16664 * configure.in: Recognize new ncr3000 config.
16665
16666 Wed Apr 8 23:08:12 1992 K. Richard Pixley (rich@cygnus.com)
16667
16668 * Makefile.in, configure.in: removed references to gdbm.
16669
16670 Tue Apr 7 16:48:20 1992 Per Bothner (bothner@cygnus.com)
16671
16672 * config.sub: Don't canonicalize os value
16673 newsos* to bsd (readline needs to check for newsos).
16674 (This fix was earlier made Jan 31, but got re-broken.)
16675
16676 Mon Apr 6 14:34:08 1992 Stu Grossman (grossman at cygnus.com)
16677
16678 * configure.in: sco is an os, not a vendor!
16679
16680 * configure: Quote $( better. Keep various shells happy.
16681
16682 Tue Mar 31 16:32:57 1992 K. Richard Pixley (rich@cygnus.com)
16683
16684 * Makefile.in: eliminate stamp-files.
16685
16686 Mon Mar 30 22:20:23 1992 K. Richard Pixley (rich@cygnus.com)
16687
16688 * Makefile.in: add send_pr. remove "force" from .stmp-gprof rule.
16689 Supress echoing of all the "if [ -d ... $(MAKE)" lines.
16690
16691 Wed Mar 25 15:20:04 1992 Stu Grossman (grossman@cygnus.com)
16692
16693 * config.sub: fix iris/iris3.
16694
16695 Wed Mar 25 10:34:19 1992 K. Richard Pixley (rich@cygnus.com)
16696
16697 * configure: re-add -rm.
16698
16699 Tue Mar 24 23:50:16 1992 K. Richard Pixley (rich@cygnus.com)
16700
16701 * Maskefile.in: add .stmp-rcs to all.
16702
16703 * configure.in: remove gas from rs6000 build, use aix host fragment.
16704
16705 Mon Mar 23 19:43:35 1992 K. Richard Pixley (rich@cygnus.com)
16706
16707 * configure: pass down site_option during recursion.
16708
16709 Thu Mar 19 16:49:36 1992 Stu Grossman (grossman at cygnus.com)
16710
16711 * Makefile.in (all.cross): Add .stmp-bfd .stmp-readline.
16712
16713 Wed Mar 18 15:29:33 1992 Mike Stump (mrs@cygnus.com)
16714
16715 * configure: Change exec_prefix so that it really defaults to prefix.
16716
16717 Sat Mar 14 17:20:38 1992 Fred Fish (fnf@cygnus.com)
16718
16719 * Makefile.in, configure.in: Add support for mmalloc library.
16720
16721 Fri Mar 13 18:44:18 1992 K. Richard Pixley (rich@cygnus.com)
16722
16723 * Makefile.in: add stmp dependencies for a few more things.
16724
16725 Thu Mar 12 04:56:24 1992 K. Richard Pixley (rich@cygnus.com)
16726
16727 * configure: adjusted error message on objdir/srcdir configure
16728 collision, per john's suggestion.
16729
16730 * Makefile.in: add libiberty stmp to all and all.cross.
16731
16732 Wed Mar 11 02:07:52 1992 K. Richard Pixley (rich@cygnus.com)
16733
16734 * Makefile.in: remove force dependencies, add grep to all.
16735
16736 Tue Mar 10 21:49:18 1992 K. Richard Pixley (rich@mars.cygnus.com)
16737
16738 * Makefile.in: drop flex. make stamp files work.
16739
16740 * configure: added test for conflicting configuration in srcdir,
16741 remove trailing slashes from srcdir. Otherwise emacs gdb mode
16742 gets cranky. use relative paths for configure and srcdir
16743 whenever possible. Send some error messages to stderr that were
16744 going to stdout.
16745
16746 Tue Mar 10 18:01:55 1992 Per Bothner (bothner@cygnus.com)
16747
16748 * Makefile.in: Fix libg++ rule to check for gcc directory
16749 before using gcc/gcc. Also pass XTRAFLAGS.
16750
16751 Thu Mar 5 21:45:07 1992 K. Richard Pixley (rich@sendai)
16752
16753 * Makefile.in: added stmp-files so that directories aren't polled
16754 when they are already built.
16755
16756 * configure.texi: fixed a node pointer problem.
16757
16758 Thu Mar 5 12:05:58 1992 Stu Grossman (grossman at cygnus.com)
16759
16760 * config.sub configure.in gdb/configure.in
16761 gdb/mips-tdep.c gdb/mipsread.c gdb/procfs.c gdb/signame.h
16762 gdb/tm-irix3.h gdb/tm-mips.h gdb/xm-irix4.h gdb/config/mt-irix3
16763 gdb/config/mh-irix4 texinfo/configure.in: Port to SGI Irix-4.x.
16764
16765 Wed Mar 4 02:57:46 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16766
16767 * configure: -recurring becomes -silent. corrected help message
16768 for -site= option.
16769
16770 * Makefile.in: mkdir $(exec_prefix) and $(tooldir).
16771
16772 Tue Mar 3 14:51:21 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16773
16774 * configure: when building Makefile for crosses, replace
16775 tooldir and program_prefix. default srcdir from location of
16776 config.sub. remove "for host in hosts" and "for target in
16777 targets" loops.
16778
16779 Wed Feb 26 19:48:25 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16780
16781 * Makefile.in: Do not pass bindir or mandir to cvs.
16782
16783 Wed Feb 26 18:04:40 1992 K. Richard Pixley (rich@cygnus.com)
16784
16785 * Makefile.in, configure.in: removed traces of namesubdir,
16786 -subdirs, $(subdir), $(unsubdir), some rcs triggers. Forced
16787 copyrights to '92, changed some from Cygnus to FSF.
16788
16789 * configure.texi: remove most references to multiple hosts,
16790 multiple targets, subdirs, etc.
16791
16792 * configure.man: removed rcsid. reference config.sub not
16793 config.subr.
16794
16795 * Makefile.in: mkdir $(infodir) on install-info.
16796
16797 Wed Feb 19 15:41:13 1992 John Gilmore (gnu at cygnus.com)
16798
16799 * configure.texi: Explain better about .gdbinit and about
16800 the environment that configure.in sections run in.
16801
16802 Fri Feb 7 07:55:00 1992 John Gilmore (gnu at cygnus.com)
16803
16804 * configure.in: Ultrix is only a decstation if it's a MIPS.
16805
16806 Fri Jan 31 21:54:51 1992 John Gilmore (gnu at cygnus.com)
16807
16808 * README: DOC.configure => cfg-paper.texi.
16809
16810 Fri Jan 31 21:48:18 1992 Stu Grossman (grossman at cygnus.com)
16811
16812 * config.sub (near case $os): Don't convert newsos* to bsd!
16813
16814 Fri Jan 31 02:27:32 1992 John Gilmore (gnu at cygnus.com)
16815
16816 * Makefile.in: Reinstall change from gdb-4.3 that reduces
16817 the number of copies of COPYING that go into the GDB tar file.
16818
16819 Thu Jan 30 16:17:30 1992 Stu Grossman (grossman at cygnus.com)
16820
16821 * bfd/configure.in, gdb/config/mh-i386sco,
16822 gdb/config/mt-i386v32, gdb/configure.in, readline/configure.in:
16823 Fix SCO configuration stuff.
16824
16825 Tue Jan 28 23:51:07 1992 Per Bothner (bothner at cygnus.com)
16826
16827 * Makefile.in: For libg++, make sure the -I pointing
16828 to the gcc directory goes *after* all the libg++-local -I flags.
16829 Also, move just-gcc dependency from just-libg++ to all-libg++.
16830
16831 Tue Jan 28 12:56:24 1992 Stu Grossman (grossman at cygnus.com)
16832
16833 * configure: Change -x to -f to keep Ultrix /bin/test happy.
16834
16835 Sat Jan 18 17:45:11 1992 Stu Grossman (grossman at cygnus.com)
16836
16837 * Makefile.in (make-gdb.tar.Z): Remove texinfo targets.
16838
16839 Sat Jan 18 17:03:21 1992 Fred Fish (fnf at cygnus.com)
16840
16841 * config.sub: Add stratus configuration frags. Also
16842 submitted to FSF.
16843
16844 Sat Jan 18 15:35:29 1992 Stu Grossman (grossman at cygnus.com)
16845
16846 * Makefile.in (DEV_SUPPORT): add configure.man.
16847
16848 * config.sub(Decode manufacturer-specific): add -none*.
16849
16850 Fri Jan 17 17:58:05 1992 Stu Grossman (grossman at cygnus.com)
16851
16852 * Makefile.in: remove form feeds to make Sun's make happy.
16853 (DEVO_SUPPORT): DOC.configure => cfg-paper.texi.
16854
16855 Sat Jan 4 16:11:44 1992 John Gilmore (gnu at cygnus.com)
16856
16857 * Makefile.in (AR_FLAGS): Make quieter.
16858
16859 Thu Jan 2 22:57:12 1992 John Gilmore (gnu at cygnus.com)
16860
16861 * configure.in: Add libg++.
16862 * configure: When verbose, don't output the command line at each
16863 level; it will be unremarkably the same as the previous version,
16864 which will be the same as what the user typed.
16865
16866 Fri Dec 27 16:26:47 1991 K. Richard Pixley (rich at cygnus.com)
16867
16868 * configure.in, Makefile.in: fix clean-info, add flex. add
16869 fileutils.
16870
16871 * configure: be less sensitive to spaces in Makefile.in. Do not
16872 look for sources in "..". Doing so breaks subdirectories that
16873 might have their own configure. If a subdir has it's own
16874 configure script, use it.
16875
16876 Thu Dec 26 16:30:26 1991 K. Richard Pixley (rich at cygnus.com)
16877
16878 * cfg-paper.texi: some changes suggested by rms.
16879
16880 Thu Dec 26 10:13:36 1991 Fred Fish (fnf at cygnus.com)
16881
16882 * config.sub: Merge in some small additions from the FSF version,
16883 taken from the gcc distribution, to bring the Cygnus and FSF
16884 versions into closer sync.
16885
16886 Fri Dec 20 11:34:18 1991 Fred Fish (fnf at cygnus.com)
16887
16888 * configure.in: Changed svr4 references to sysv4.
16889
16890 Thu Dec 19 15:54:29 1991 K. Richard Pixley (rich at cygnus.com)
16891
16892 * configure: added -V for version number option.
16893
16894 Wed Dec 18 15:39:34 1991 K. Richard Pixley (rich at cygnus.com)
16895
16896 * DOC.configure, cfg-paper.texi: revised, updated, and texinfo'd.
16897 renamed from DOC.configure to cfg-paper.texi.
16898
16899 Mon Dec 16 23:05:19 1991 K. Richard Pixley (rich at rtl.cygnus.com)
16900
16901 * configure, config.subr, config.sub: config.subr is now
16902 config.sub again.
16903
16904 Fri Dec 13 01:17:06 1991 K. Richard Pixley (rich at cygnus.com)
16905
16906 * configure.texi: new file, in progress.
16907
16908 * Makefile.in: build info file and install the man page for
16909 configure.
16910
16911 * configure.man: new file, first cut.
16912
16913 * configure: find config.subr again now that configuration "none"
16914 has gone. removed all traces of the -ansi option. removed all
16915 traces of the -languages option.
16916
16917 * config.subr: resync from rms.
16918
16919 1991-12-11 K. Richard Pixley (rich at rtl.cygnus.com)
16920
16921 * configure, config.sub, config.subr: merge config.sub into
16922 config.subr, call the result config.subr, remove config.sub, use
16923 config.subr.
16924
16925 * Makefile.in: revised install for dir.info.
16926
16927 1991-12-10 K. Richard Pixley (rich at rtl.cygnus.com)
16928
16929 * configure.in: add decstation host makefile frag.
16930
16931 * Makefile.in: BISON now bison -y again. also install-gcc on
16932 install. clean-gdbm on clean. infodir belongs in datadir.
16933 Make directories for info install. Build dir.info here then
16934 install it.
16935
16936 1991-12-09 K. Richard Pixley (rich at rtl.cygnus.com)
16937
16938 * Makefile.in: fix for bad directory tests.
16939
16940 1991-12-07 K. Richard Pixley (rich at rtl.cygnus.com)
16941
16942 * configure: \{1,2\} appears to be a sysv'ism. Use a different
16943 regexp. -srcdir relative was being handled incorrectly.
16944
16945 * Makefile.in: unwrapped some for loops so that parallel makes
16946 work again and so one can focus one's attention on a particular
16947 package.
16948
16949 1991-12-06 K. Richard Pixley (rich at rtl.cygnus.com)
16950
16951 * configure: added PWD as a stand in for `pwd` (for speed). use
16952 elif wherever possible. make -srcdir work without -objdir.
16953 -objdir= commented out.
16954
16955 1991-12-05 K. Richard Pixley (rich at rtl.cygnus.com)
16956
16957 * configure: +options become --options. -subdirs commented out.
16958 added -host, -datadir. Renamed -destdir to -prefix. Comment in
16959 Makefile now at top of generated Makefile. Removed cvs log
16960 entries. added -srcdir. create .gdbinit only if there is one
16961 in ${srcdir}.
16962
16963 * Makefile.in: idestdir and ddestdir go away. Added copyrights
16964 and shift gpl to v2. Added ChangeLog if it didn't exist. docdir
16965 and mandir now keyed off datadir by default.
16966
16967 1991-11-22 K. Richard Pixley (rich at rtl.cygnus.com)
16968
16969 * Freshly created ChangeLog.
16970
16971 \f
16972 Local Variables:
16973 mode: change-log
16974 left-margin: 8
16975 fill-column: 76
16976 version-control: never
16977 End: