]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - ChangeLog
ld: pru: Place exception-handling sections correctly
[thirdparty/binutils-gdb.git] / ChangeLog
1 2023-04-20 Nick Clifton <nickc@redhat.com>
2
3 * SECURITY.txt: New file.
4 * src-release.sh (DEVO_SUPPORT): Add SECURITY.txt.
5
6 2022-12-31 Nick Clifton <nickc@redhat.com>
7
8 * 2.40 binutils branch created.
9
10 2022-10-10 Nick Clifton <nickc@redhat.com>
11
12 * src-release.sh: Add "-r <date>" option to create reproducible
13 tarballs based upon a fixed timestamp of <date>.
14 * binutils/README-how-to-make-a-release: Add a line showing how to
15 use -r <date> when creating a binutils release.
16
17 2022-10-04 Nick Clifton <nickc@redhat.com>
18
19 * README-maintainer-mode: Add a minimum version of dejagnu
20 requirement.
21
22 2022-09-08 Nick Clifton <nickc@redhat.com>
23
24 * README-maintainer-mode: Update minimum version of gettext
25 required.
26
27 2022-07-08 Nick Clifton <nickc@redhat.com>
28
29 * 2.39 branch created.
30
31 2022-07-04 Nick Clifton <nickc@redhat.com>
32
33 * libiberty: Synchronize with GCC. Bring in:
34 2022-07-01 Nick Clifton <nickc@redhat.com>
35
36 PR demangler/105039
37 * rust-demangle.c (demangle_const): Add recursion limit.
38
39 2022-06-26 Simon Marchi <simon.marchi@efficios.com>
40
41 * configure.ac: Add AC_CONFIG_MACRO_DIRS call.
42 * configure: Re-generate.
43
44 2022-04-12 Nick Clifton <nickc@redhat.com>
45
46 * zlib: Rebase to the 1.2.12 release.
47
48 2022-04-08 Simon Marchi <simon.marchi@efficios.com>
49
50 * configure.ac: Add AC_SUBST(PKG_CONFIG_PATH).
51 * configure: Re-generate.
52 * Makefile.tpl (HOST_EXPORTS): Pass PKG_CONFIG_PATH.
53 (PKG_CONFIG_PATH): New.
54 * Makefile.in: Re-generate.
55
56 2022-03-15 Jose E. Marchesi <jose.marchesi@oracle.com>
57
58 * gprofng/src/gp-collect-app.cc (collect::check_args): Use
59 fallthrough comment instead of attribute.
60
61 2022-03-11 Vladimir Mezentsev <vladimir.mezentsev@oracle.com>
62
63 * Makefile.def: Add gprofng module.
64 * configure.ac: Add --enable-gprofng option.
65 * src-release.sh: Add gprofng.
66 * Makefile.in: Regenerate.
67 * configure: Regenerate.
68 * gprofng: New directory.
69
70 2022-01-22 Nick Clifton <nickc@redhat.com>
71
72 * 2.38 release branch created.
73
74 2022-01-17 Nick Clifton <nickc@redhat.com>
75
76 Update config.[guess|sub] from upstream:
77
78 2022-01-09 Idan Horowitz <idan.horowitz@gmail.com>
79
80 config.guess: recognize SerenityOS
81 * config.guess (*:SerenityOS:*:*): Recognize.
82 (timestamp): Update.
83
84 2022-01-03 Bernhard Voelker <mail@bernhard-voelker.de>
85
86 Fix GPLv3 license headers to use a comma instead of semicolon
87 See: https://www.gnu.org/licenses/gpl-3.0.html#howto
88
89 Update license headers automatically using the following script:
90
91 $ git grep -l 'Foundation; either version 3' \
92 | xargs sed -i '/Foundation; either version 3/ s/n; e/n, e/'
93
94 * config.guess: Adjust via the above command.
95 (timestamp): Update.
96 * config.sub: Likewise.
97 * doc/config.guess.1: Regenerate.
98 * doc/config.sub.1: Likewise.
99
100 2022-01-01 Dmitry V. Levin <ldv@altlinux.org>
101
102 Update copyright years
103 * config.guess: Update copyright years.
104 * config.sub: Likewise.
105
106 2021-12-25 Dmitry V. Levin <ldv@altlinux.org>
107
108 config.sub: alias armh to armv7l
109 ALT uses armh as an alias for armv7l-alt-linux-gnueabihf since 2012.
110
111 * config.sub (armh-unknown|armh-alt): Set cpu, vendor, and basic_os.
112 (timestamp): Update.
113
114 2021-12-24 Dmitry V. Levin <ldv@altlinux.org>
115
116 config.sub: alias aarch64le to aarch64
117 Apparently, QNX reports aarch64 as aarch64le on little-endian machines.
118
119 * config.sub (aarch64le-*): Set cpu to aarch64.
120 (timestamp): Update.
121
122 2021-12-13 Dmitry V. Levin <ldv@altlinux.org>
123
124 config.sub: fix typo in timestamp
125 * config.sub: Fix timestamp.
126
127 2021-11-30 Andreas F. Borchert <github@andreas-borchert.de>
128
129 config.guess: x86_64-pc-solaris2.11 is not properly recognized
130 config.guess guesses Solaris 11 to run on a 32-bit platform
131 despite Solaris 11 no longer supporting any 32-bit platform.
132
133 See the following code at lines 434 to 445:
134
135 | SUN_ARCH=i386
136 | # If there is a compiler, see if it is configured for 64-bit objects.
137 | # Note that the Sun cc does not turn __LP64__ into 1 like gcc does.
138 | # This test works for both compilers.
139 | if test "$CC_FOR_BUILD" != no_compiler_found; then
140 | if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \
141 | (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \
142 | grep IS_64BIT_ARCH >/dev/null
143 | then
144 | SUN_ARCH=x86_64
145 | fi
146 | fi
147
148 If "cc" is installed, i.e. the Oracle Studio compiler, this one is
149 chosen for $CC_FOR_BUILD. This compiler, the gcc provided by Oracle
150 and also gcc bootstrapped from sources on that platform with a default
151 configuration will by default generate 32-bit binaries -- even on
152 a 64-bit platform. And __amd64 will not be defined for compilations
153 targeting a 32-bit platform. This is different from the corresponding
154 behaviour on GNU/Linux systems where the local platform is targeted by
155 default.
156
157 Thus, as long as you do not add "-m64" or if you have a custom-built
158 gcc which defaults to 64 bit, you will get 32-bit binaries on Solaris
159 despite living on a 64-bit platform.
160
161 * config.guess (i86pc:SunOS:5.*:* || i86xen:SunOS:5.*:*): Adapt the
162 test by adding the "-m64" flag. This will work properly for Solaris
163 10 as well (the last Solaris release that supported x86 32-bit
164 platforms).
165
166 2021-10-27 Jordi Sanfeliu <jordi@fibranet.cat>
167
168 Recognize Fiwix
169 $ make check
170 cd testsuite && bash config-guess.sh && rm uname
171 PASS: config.guess checks (137 tests)
172 cd testsuite && bash config-sub.sh
173 PASS: config.sub checks (882 tests)
174 PASS: config.sub idempotency checks (819 tests)
175 PASS: config.sub canonicalise each config.guess testcase (137 tests)
176
177 * config.guess (i*86:Fiwix:*:*): Recognize.
178 * config.sub (fiwix*): Likewise.
179
180 2021-10-18 Kinshuk Dua <kinshukdua@gmail.com>
181
182 config.sub: Fix typo in comment
183 Fixes: 5e531d391852a54e7fab2d8ff55625fca514b305
184
185 2021-08-14 Nick Bowler <nbowler@draconx.ca>
186
187 config.sub: work around command assignment bug in some shells
188 When combining variable assignments with a shell command, some older
189 shells (notably heirloom-sh and presumably also Solaris 10 /bin/sh)
190 have a bug which causes the assignment to alter the current execution
191 environment whenever the command is a shell built-in. For example:
192
193 % dash -c 'x=good; x=bad echo >/dev/null; echo $x'
194 good
195
196 % jsh -c 'x=good; x=bad echo >/dev/null; echo $x'
197 bad
198
199 The config.sub script contains a few commands of the form:
200
201 IFS=- read ...
202
203 which triggers this bug, causing the IFS assignment to persist for the
204 remainder of the script. This can cause misbehaviour in certain cases,
205 for example:
206
207 % jsh config.sub i386-linux-gnu
208 config.sub: test: unknown operator gnu
209
210 % jsh config.sub i386-gnu/linux
211 sed: can't read s|gnu/linux|gnu|: No such file or directory
212 Invalid configuration `i386-gnu/linux': OS `' not recognized
213
214 * config.sub: Save and restore IFS explicitly to avoid shell bugs.
215 * doc/config.sub.1: Regenerate.
216
217 2021-08-04 Jeremy Soller <jackpot51@gmail.com>
218
219 config.sub: add Linux Relibc Target
220 $ make check
221 cd testsuite && bash config-guess.sh && rm uname
222 PASS: config.guess checks (136 tests)
223 cd testsuite && bash config-sub.sh
224 PASS: config.sub checks (881 tests)
225 PASS: config.sub idempotency checks (818 tests)
226 PASS: config.sub canonicalise each config.guess testcase (136 tests)
227
228 * config.sub (relibc*): Recognize.
229 * doc/config.sub.1: Regenerate.
230 * testsuite/config-sub.data (x86_64-linux-relibc): New test.
231
232 2021-07-06 Stephanos Ioannidis <root@stephanos.io>
233
234 config.sub: add Zephyr RTOS support
235 This adds the Zephyr RTOS targets in preparation for implementing the
236 Zephyr RTOS-specific toolchain support.
237
238 $ make check
239 cd testsuite && bash config-guess.sh && rm uname
240 PASS: config.guess checks (136 tests)
241 cd testsuite && bash config-sub.sh
242 PASS: config.sub checks (880 tests)
243 PASS: config.sub idempotency checks (817 tests)
244 PASS: config.sub canonicalise each config.guess testcase (136 tests)
245
246 * config.sub (zephyr*): Recognize.
247 * doc/config.sub.1: Regenerate.
248 * testsuite/config-sub.data: Add testcases for *-zephyr.
249
250 2021-07-03 Ozkan Sezer <sezero@users.sourceforge.net>
251
252 config.sub: disable shellcheck SC2006 / SC2268 warnings
253 This is in line with the recent config.guess change in commit
254 12fcf67c9108f4c4b581eaa302088782f0ee40ea
255
256 * config.sub (shellcheck disable): Add SC2006,SC2268.
257
258 Suggested-by: Jacob Bachmeyer <jcb@gnu.org>
259
260 2021-07-03 Ozkan Sezer <sezero@users.sourceforge.net>
261
262 config.sub: normalize the quoting in the `echo FOO | sed ...`
263 Some cases quote the argument to echo and some do not. At runtime
264 it probably does not matter because the substituted values will never
265 contain whitespace, but quoting them all would make shellcheck more
266 useful.
267
268 * config.sub: Consistently quote the argument of echo.
269 * doc/config.sub.1: Regenerate.
270
271 Suggested-by: Jacob Bachmeyer <jcb@gnu.org>
272
273 2021-07-02 Ozkan Sezer <sezero@users.sourceforge.net>
274
275 config.sub: replace POSIX $( ) with classic ` ` throughout
276 This is in line with the recent config.guess change in commit
277 d70c4fa934de164178054c3a60aaa0024ed07c91.
278
279 The patch was generated using patch-6.gawk script introduced in that
280 commit.
281
282 * config.sub: Revert POSIX command substitutions to classic form.
283
284 2021-06-04 Vineet Gupta <Vineet.Gupta1@synopsys.com>
285
286 Recognize arc32
287 This is the 32-bit variant of ARCv3 ISA (which is not compatible with the
288 32-bit ARCv2 ISA)
289
290 | make check
291 | cd testsuite && bash config-guess.sh && rm uname
292 | PASS: config.guess checks (136 tests)
293 | cd testsuite && bash config-sub.sh
294 | PASS: config.sub checks (864 tests)
295 | PASS: config.sub idempotency checks (801 tests)
296 | PASS: config.sub canonicalise each config.guess testcase (136 tests)
297
298 * config.guess (arc32:Linux:*:*): Recognize.
299 * config.sub (arc32): Likewise.
300
301 2021-05-27 Jacob Bachmeyer <jcb@gnu.org>
302
303 Remove automatic patch generators
304 These tools have served their purposes and need not be kept outside of
305 the repository history any longer. This patch as a diff also collects
306 the contents of the various tools in one convenient place.
307
308 * patch-1.gawk: Remove.
309 * patch-3.gawk: Likewise.
310 * patch-6.gawk: Likewise.
311
312 2021-05-26 Jacob Bachmeyer <jcb@gnu.org>
313
314 config.guess: manual fixups after previous automatic patch
315 The tool could not handle command substitutions that span lines, but
316 fortunately there were only two such substitutions in the script.
317
318 The test for which universe is active on Pyramid is rewritten into a
319 case block because it was the only use of a command substitution as an
320 argument to the test command, which would require quoting.
321
322 * config.guess: Rewrite "if" for Pyramid systems to "case".
323
324 2021-05-26 Jacob Bachmeyer <jcb@gnu.org>
325
326 config.guess: replace POSIX $( ) with classic ` ` throughout
327 The previous replacement of backticks with POSIX command substitutions
328 was ill-considered and illogical: this script recognizes many archaic
329 machine types that probably never had POSIX shells, therefore it needs
330 to be able to run successfully under pre-POSIX shells.
331
332 This patch was generated using the included GNU Awk program.
333
334 * config.guess: Revert POSIX command substitutions to classic form.
335 * patch-6.gawk: Store the tool that produced the automated patch.
336
337 2021-05-26 Jacob Bachmeyer <jcb@gnu.org>
338
339 config.guess: manual fixup after previous automated patches
340 This patch provides the special handling for the GNU system. As these
341 were two small and unique edits, they were not included in the scripts.
342
343 This patch also cleans up other minor issues that must be addressed
344 before reverting to classic command substitutions and updates
345 "shellcheck" directives to account for changes in this script and the
346 change in "shellcheck" towards reporting individual portability issues.
347
348 2021-05-26 Jacob Bachmeyer <jcb@gnu.org>
349
350 config.guess: automatic fixups after previous automated patch
351 This patch was generated using the following command:
352
353 sed -i config.guess \
354 -e '/="[^"]\+"\(-\|$\)/s/="\([^"([:space:])]\+\)"/=\1/' \
355 -e '/="[^"]\+"[[:alnum:]]/s/="\$\([^([:space:])]\+\)"/=${\1}/' \
356 -e \
357 '/\$(echo[^|]\+|/s/\([^[:space:]]\)[[:space:]]*|[[:space:]]*sed/\1 | sed/g'
358
359 * config.guess: Remove unneeded quotes in other variable assignments,
360 standardize spacing for "echo ... | sed" substitutions.
361
362 2021-05-26 Jacob Bachmeyer <jcb@gnu.org>
363
364 config.guess: remove unneeded quotes and factor command substitutions
365 This is further cleanup and simplifies some constructs that can confuse
366 Emacs' syntax highlighting while generally reducing required quoting.
367
368 This patch was generated using the included GNU Awk program.
369
370 * config.guess: Remove unneeded variable quotes and factor out command
371 substitutions when setting GUESS.
372 * patch-3.gawk: Store the tool that produced the automated patch.
373
374 2021-05-25 Jacob Bachmeyer <jcb@gnu.org>
375
376 config.guess: manual fixups after previous automatic patch
377 * config.guess: Adjust a few "leftover" cases that the tool could not
378 easily recognize and fixes comment indentation in a few other special
379 cases.
380
381 2021-05-25 Jacob Bachmeyer <jcb@gnu.org>
382
383 config.guess: use intermediate variable with uname results
384 This will allow quoting to be significantly simplified in another
385 pass through the file.
386
387 This patch was generated using the included GNU Awk program.
388
389 * config.guess: Use GUESS variable to hold results of uname analysis.
390 * patch-1.gawk: Store the tool that produced the automated patch.
391
392 2021-05-25 Jacob Bachmeyer <jcb@gnu.org>
393
394 config.guess: introduce intermediate variable with uname results
395 This will allow quoting to be significantly simplified in another
396 pass through the file.
397
398 * config.guess: Introduce GUESS variable to hold results of uname analysis.
399
400 2021-05-24 Dmitry V. Levin <ldv@altlinux.org>
401
402 config.guess: fix shellcheck warning SC2154
403 While, according to Plan 9 documentation, the environment variable
404 $cputype is set to the name of the kernel's CPU's architecture,
405 shellcheck warns that cputype is referenced but not assigned.
406 Be on the safe side and do not use cputype if it is not defined
407 or empty.
408
409 * config.guess (*:Plan9:*:*): Fix shellcheck warning SC2154.
410
411 2021-05-24 Dmitry V. Levin <ldv@altlinux.org>
412
413 config.guess: remove redundant quotes in case commands
414 According to the GNU Autoconf Portable Shell Programming manual,
415 the Bourne shell does not systematically split variables and back-quoted
416 expressions, in particular on the right-hand side of assignments and in
417 the argument of 'case'.
418
419 The change is made automatically using the following command:
420 $ sed -E -i 's/(\<case )"(\$[^"]+)"( in\>)/\1\2\3/' config.guess
421
422 * config.guess: Simplify case commands by removing quotes around the
423 argument.
424
425 Suggested-by: Jacob Bachmeyer <jcb@gnu.org>
426
427 2021-05-24 Dmitry V. Levin <ldv@altlinux.org>
428
429 config.guess: simplify exit status workaround on alphaev67-dec-osf5.1
430 Commit 29865ea8a5622cdd80b7a69a0afa78004b4cd311 introduced an exit trap
431 reset before exiting to avoid a spurious non-zero exit status on
432 alphaev67-dec-osf5.1. Simplify that code a bit by moving the exit trap
433 reset around.
434
435 * config.guess (alpha:OSF1:*:*): Reset exit trap earlier.
436 * doc/config.guess.1: Regenerate.
437
438 2021-10-29 Eli Zaretskii <eliz@gnu.org>
439
440 * gdb/doc/gdb.texinfo (Command Options): (Data): Document
441 '-memory-tag-violations'. Update the example.
442
443 2021-09-28 Andrew Burgess <andrew.burgess@embecosm.com>
444
445 * src-release.sh (GDB_SUPPPORT_DIRS): Add libbacktrace.
446
447 2021-09-27 Nick Alcock <nick.alcock@oracle.com>
448
449 PR libctf/27967
450 * libtool.m4 (LT_PATH_NM): Try BSDization flags with a user-provided
451 NM, if there is one. Run nm on itself, not on /dev/null, to avoid
452 errors from nms that refuse to work on non-regular files. Remove
453 other workarounds for this problem. Strip out blank lines from the
454 nm output.
455
456 2021-09-27 Nick Alcock <nick.alcock@oracle.com>
457
458 PR libctf/27967
459 * libtool.m4 (lt_cv_sys_global_symbol_pipe): Augment symcode for
460 Solaris 11.
461
462 2021-07-03 Nick Clifton <nickc@redhat.com>
463
464 * 2.37 release branch created.
465
466 2021-07-03 Nick Clifton <nickc@redhat.com>
467
468 * libiberty: Sync with gcc. Bring in:
469 2021-06-30 Gerald Pfeifer <gerald@pfeifer.com>
470
471 * make-temp-file.c (usrtmp): Remove.
472 (choose_tmpdir): Remove use of usrtmp.
473
474 2021-06-28 Indu Bhagat <indu.bhagat@oracle.com>
475
476 * simple-object.c (handle_lto_debug_sections): Copy over .BTF section.
477
478 2021-06-28 Indu Bhagat <indu.bhagat@oracle.com>
479 David Faust <david.faust@oracle.com>
480 Jose E. Marchesi <jose.marchesi@oracle.com>
481 Weimin Pan <weimin.pan@oracle.com>
482
483 * simple-object.c (handle_lto_debug_sections): Copy over .ctf
484 sections.
485
486 2021-06-05 John David Anglin <danglin@gcc.gnu.org>
487
488 PR target/100734
489 * configure.ac: Use libiberty snprintf and vsnprintf on
490 hppa*-*-hpux*.
491 * configure: Regenerate.
492
493 2021-05-06 Tom Tromey <tom@tromey.com>
494
495 * hashtab.c (htab_eq_string): New function.
496
497 2021-05-04 Eric Botcazou <ebotcazou@adacore.com>
498
499 * configure.ac: Make test for variables more robust.
500 * configure: Regenerate.
501
502 2021-05-03 H.J. Lu <hjl.tools@gmail.com>
503
504 PR bootstrap/99703
505 * configure: Regenerated.
506
507 2021-04-21 Andreas Schwab <schwab@linux-m68k.org>
508
509 PR demangler/100177
510 * rust-demangle.c (demangle_const_char): Properly print the
511 character value.
512
513 2021-03-31 Patrick Palka <ppalka@redhat.com>
514
515 PR c++/88115
516 * cp-demangle.c (d_dump, d_make_comp, d_expression_1)
517 (d_count_templates_scopes): Handle DEMANGLE_COMPONENT_VENDOR_EXPR.
518 (d_print_comp_inner): Likewise.
519 <case DEMANGLE_COMPONENT_EXTENDED_OPERATOR>: Revert r11-4926
520 change.
521 <case DEMANGLE_COMPONENT_UNARY>: Likewise.
522 * testsuite/demangle-expected: Adjust __alignof__ tests.
523
524 2021-03-16 Nick Clifton <nickc@redhat.com>
525
526 * sha1.c (sha1_process_bytes): Use memmove in place of memcpy.
527
528 2021-02-20 Mike Frysinger <vapier@gentoo.org>
529
530 * Makefile.in (ACLOCAL, ACLOCAL_AMFLAGS, $(srcdir)/aclocal.m4): Define.
531 (configure_deps): Rename to ...
532 (aclocal_deps): ... this. Replace aclocal.m4 with acinclude.m4.
533 ($(srcdir)/configure): Replace $(configure_deps) with
534 $(srcdir)/aclocal.m4.
535 * aclocal.m4: Move libiberty macros to acinclude.m4, then regenerate.
536 * acinclude.m4: New file.
537 * configure: Regenerate.
538
539 2021-02-19 Ayush Mittal <ayush.m@samsung.com>
540
541 * argv.c (expandargv): free allocated buffer if read fails.
542
543 2021-02-01 Martin Sebor <msebor@redhat.com>
544
545 * dyn-string.c (dyn_string_insert_cstr): Use memcpy instead of strncpy
546 to avoid -Wstringop-truncation.
547
548 2021-05-29 Mike Frysinger <vapier@gentoo.org>
549
550 * configure.ac: Add gnulib to configdirs for sim.
551 * configure: Regenerate.
552
553 2021-05-24 Maciej W. Rozycki <macro@orcam.me.uk>
554
555 * MAINTAINERS: Update path to readline config.{sub,guess} files.
556
557 2021-05-24 Maciej W. Rozycki <macro@orcam.me.uk>
558
559 * config.guess: Import from upstream.
560 * config.sub: Likewise.
561
562 2021-05-18 Mike Frysinger <vapier@gentoo.org>
563
564 * Makefile.def: Add configure-sim dependency on all-gnulib.
565 * Makefile.in: Regenerated.
566
567 2021-05-04 Nick Clifton <nickc@redhat.com>
568
569 * configure.ac (AC_PROG_CC): Replace with AC_PROG_CC_C99.
570 * configure: Regenerate.
571
572 2021-03-18 Nick Alcock <nick.alcock@oracle.com>
573
574 PR libctf/27482
575 * Makefile.def: Add install-bfd dependencies for install-libctf and
576 install-ld, and install-strip-bfd dependencies for
577 install-strip-libctf and install-strip-ld; move the install-ld
578 dependency on install-libctf to join it.
579 * Makefile.in: Regenerated.
580
581 2021-03-12 Mike Frysinger <vapier@gentoo.org>
582
583 * Makefile.def: Remove all-sim dependency on configure-gdb.
584 * Makefile.in: Regenerated.
585
586 2021-02-28 H.J. Lu <hongjiu.lu@intel.com>
587
588 PR binutils/26766
589 * Makefile.tpl (PGO_BUILD_TRAINING_FLAGS_TO_PASS): Add
590 PGO_BUILD_TRAINING=yes.
591 (PGO_BUILD_TRAINING_MFLAGS): New.
592 (all): Pass $(PGO_BUILD_TRAINING_MFLAGS) to the PGO build.
593
594 2021-02-09 Alan Modra <amodra@gmail.com>
595
596 * configure.ac: Delete arm*-*-symbianelf* entry.
597 * configure: Regenerate.
598
599 2021-01-26 Nick Alcock <nick.alcock@oracle.com>
600
601 * Makefile.def: Add install-libctf dependency to install-ld.
602 * Makefile.in: Regenerated.
603
604 2021-01-12 Mike Frysinger <vapier@gentoo.org>
605
606 * src-release.sh (do_proto_toplev): Rewrite indentation.
607
608 2021-01-11 H.J. Lu <hongjiu.lu@intel.com>
609
610 PR binutils/26766
611 * configure.ac:
612 * configure: Regenerated.
613
614 2021-01-11 H.J. Lu <hongjiu.lu@intel.com>
615
616 PR ld/27173
617 * configure: Regenerated.
618 * libtool.m4 (_LT_CMD_OLD_ARCHIVE): Check if AR works with
619 --plugin and rc before enabling --plugin.
620
621 2021-01-09 H.J. Lu <hongjiu.lu@intel.com>
622
623 PR binutils/26766
624 * Makefile.tpl (BUILD_CFLAGS): New.
625 (CFLAGS): Append $(BUILD_CFLAGS).
626 (CXXFLAGS): Likewise.
627 (PGO_BUILD_GEN_FLAGS_TO_PASS): New.
628 (PGO_BUILD_TRAINING_CFLAGS): Likewise.
629 (PGO_BUILD_TRAINING_CXXFLAGS): Likewise.
630 (PGO_BUILD_TRAINING_FLAGS_TO_PASS): Likewise.
631 (PGO_BUILD_TRAINING_MFLAGS): Likewise.
632 (PGO_BUILD_USE_FLAGS_TO_PASS): Likewise.
633 (PGO-TRAINING-TARGETS): Likewise.
634 (PGO_BUILD_TRAINING): Likewise.
635 (all): Add '+' to the command line for recursive make. Support
636 the PGO build.
637 * configure.ac: Add --enable-pgo-build[=lto].
638 AC_SUBST PGO_BUILD_GEN_CFLAGS, PGO_BUILD_USE_CFLAGS and
639 PGO_BUILD_LTO_CFLAGS. Enable the PGO build in Makefile.
640 * Makefile.in: Regenerated.
641 * configure: Likewise.
642
643 2021-01-09 H.J. Lu <hongjiu.lu@intel.com>
644
645 * Makefile.tpl (AR): Add @AR_PLUGIN_OPTION@
646 (RANLIB): Add @RANLIB_PLUGIN_OPTION@.
647 * configure.ac: Include config/gcc-plugin.m4.
648 AC_SUBST AR_PLUGIN_OPTION and RANLIB_PLUGIN_OPTION.
649 * libtool.m4 (_LT_CMD_OLD_ARCHIVE): Pass --plugin to AR and
650 RANLIB if possible.
651 * Makefile.in: Regenerated.
652 * configure: Likewise.
653
654 2021-01-09 Nick Clifton <nickc@redhat.com>
655
656 * 2.36 release branch crated.
657
658 2021-01-07 Samuel Thibault <samuel.thibault@gnu.org>
659
660 * libtool.m4: Match gnu* along with other GNU systems.
661
662 2021-01-07 Alan Modra <amodra@gmail.com>
663
664 * config.sub: Accept OS of eabi* and gnueabi*.
665
666 2021-01-05 Nick Alcock <nick.alcock@oracle.com>
667
668 * Makefile.def (libctf): No longer no_check. Checking depends on
669 all-ld.
670 * Makefile.in: Regenerated.
671
672 2021-01-05 Nick Clifton <nickc@redhat.com>
673
674 * libiberty: Sync with gcc. Bring in:
675 2021-01-04 Martin Liska <mliska@suse.cz>
676
677 * strverscmp.c: Convert to utf8 from iso8859.
678
679 2020-12-22 Jason Merrill <jason@redhat.com>
680
681 PR c++/67343
682 * cp-demangle.h (struct d_info): Add unresolved_name_state.
683 * cp-demangle.c (d_prefix): Add subst parm.
684 (d_nested_name): Pass it.
685 (d_unresolved_name): Split out from...
686 (d_expression_1): ...here.
687 (d_demangle_callback): Maybe retry with old sr mangling.
688 * testsuite/demangle-expected: Add test.
689
690 2020-12-21 Jason Merrill <jason@redhat.com>
691
692 * cp-demangle.c (d_expression_1): Recognize qualified-id
693 on RHS of dt/pt.
694 * testsuite/demangle-expected: Add test.
695
696 2020-12-21 Jason Merrill <jason@redhat.com>
697
698 * cp-demangle.c (d_unqualified_name): Clear is_expression.
699 * testsuite/demangle-expected: Add tests.
700
701 2020-11-25 Matthew Malcomson <matthew.malcomson@arm.com>
702
703 * configure: Regenerate.
704 * configure.ac: Avoid using sanitizer.
705
706 2020-11-13 Eduard-Mihai Burtescu <eddyb@lyken.rs>
707
708 * rust-demangle.c (struct rust_demangler): Add
709 skipping_printing and bound_lifetime_depth fields.
710 (eat): Add (v0-only).
711 (parse_integer_62): Add (v0-only).
712 (parse_opt_integer_62): Add (v0-only).
713 (parse_disambiguator): Add (v0-only).
714 (struct rust_mangled_ident): Add punycode{,_len} fields.
715 (parse_ident): Support v0 identifiers.
716 (print_str): Respect skipping_printing.
717 (print_uint64): Add (v0-only).
718 (print_uint64_hex): Add (v0-only).
719 (print_ident): Respect skipping_printing,
720 Support v0 identifiers.
721 (print_lifetime_from_index): Add (v0-only).
722 (demangle_binder): Add (v0-only).
723 (demangle_path): Add (v0-only).
724 (demangle_generic_arg): Add (v0-only).
725 (demangle_type): Add (v0-only).
726 (demangle_path_maybe_open_generics): Add (v0-only).
727 (demangle_dyn_trait): Add (v0-only).
728 (demangle_const): Add (v0-only).
729 (demangle_const_uint): Add (v0-only).
730 (basic_type): Add (v0-only).
731 (rust_demangle_callback): Support v0 symbols.
732 * testsuite/rust-demangle-expected: Add v0 testcases.
733
734 2020-11-13 Seija Kijin <doremylover456@gmail.com>
735
736 * strstr.c (strstr): Make implementation ANSI/POSIX compliant.
737
738 2020-11-11 Patrick Palka <ppalka@redhat.com>
739
740 PR c++/88115
741 * cp-demangle.c (d_print_comp_inner)
742 <case DEMANGLE_COMPONENT_EXTENDED_OPERATOR>: Don't print the
743 "operator " prefix for __alignof__.
744 <case DEMANGLE_COMPONENT_UNARY>: Always print parens around the
745 operand of __alignof__.
746 * testsuite/demangle-expected: Test demangling for __alignof__.
747
748 2020-11-09 Christophe Lyon <christophe.lyon@linaro.org>
749
750 * pex-win32.c (pex_win32_exec_child): Initialize orig_err.
751
752 2020-10-06 Martin Liska <mliska@suse.cz>
753
754 PR lto/97290
755 * simple-object-elf.c (simple_object_elf_copy_lto_debug_sections):
756 Use sh_link of a .symtab_shndx section.
757
758 2021-01-05 Alan Modra <amodra@gmail.com>
759
760 * config.guess: Import from upstream.
761 * config.sub: Likewise.
762
763 2020-12-16 Martin Liska <mliska@suse.cz>
764 Tom de Vries <tdevries@suse.de>
765
766 * gdb/debuginfod-support.c (struct user_data): Remove has_printed
767 field. Add meter field.
768 (progressfn): Print progress using meter.
769
770 2020-12-02 Enze Li <lienze2010@hotmail.com>
771
772 * .gitignore: Add gnu global outputs.
773
774 2020-12-02 Simon Marchi <simon.marchi@polymtl.ca>
775
776 * .gitignore: Sync with gcc.
777
778 2020-10-26 Andreas Rammhold <andreas@rammhold.de>
779
780 * src-release.sh: Use sha256sum instead of md5sum.
781
782 2020-10-14 Andrew Burgess <andrew.burgess@embecosm.com>
783
784 * Makefile.in: Rebuild.
785 * Makefile.def: Make distclean-gnulib depend on distclean-gdb and
786 distclean-gdbserver.
787
788 2020-07-24 Aaron Merey <amerey@redhat.com>
789
790 * configure: Rebuild.
791 * configure.ac: Remove AC_DEBUGINFOD.
792
793 2020-07-04 Nick Clifton <nickc@redhat.com>
794
795 Binutils 2.35 branch created.
796
797 2020-04-21 Stephen Casner <casner@acm.org>
798
799 PR 25830
800 * configure.ac (noconfigdirs): Exclude gdb & gprof for pdp11.
801 * configure: Rebuild.
802
803 2020-03-12 Tom Tromey <tom@tromey.com>
804
805 * Makefile.in: Rebuild.
806 * Makefile.def (gdbserver): Depend on gdbsupport.
807
808 2020-03-12 Tom Tromey <tom@tromey.com>
809
810 * Makefile.in: Rebuild.
811 * Makefile.def (gdbsupport): Don't depend on bfd.
812
813 2020-03-12 Tom Tromey <tom@tromey.com>
814
815 * Makefile.in: Rebuild.
816 * Makefile.def (gdbsupport): Depend on intl.
817
818 2020-02-17 Tom Tromey <tom@tromey.com>
819
820 * configure: Rebuild.
821 * configure.ac (configdirs): Add gnulib and gdbsupport when building
822 gdbserver.
823
824 2020-02-14 Tom Tromey <tom@tromey.com>
825
826 * Makefile.in: Rebuild.
827 * Makefile.def: Make gdbserver require gnulib and libiberty.
828
829 2020-02-07 Tom Tromey <tom@tromey.com>
830 Pedro Alves <palves@redhat.com>
831
832 * src-release.sh (GDB_SUPPORT_DIRS): Add gdbserver.
833 * gdbserver: New directory, moved from gdb/gdbserver.
834 * configure.ac (host_tools): Add gdbserver.
835 Only build gdbserver on certain systems.
836 * Makefile.in, configure: Rebuild.
837 * Makefile.def (host_modules, dependencies): Add gdbserver.
838 * MAINTAINERS: Add gdbserver.
839
840 2020-01-28 Sergio Durigan Junior <sergiodj@redhat.com>
841
842 * src-release.sh (getver): Look for gdbsupport's
843 create-version.sh script at the current directory if tool is
844 "gdb".
845
846 2020-01-19 Simon Marchi <simon.marchi@polymtl.ca>
847
848 * remote-sim.c (gdbsim_target::wait): Return
849 sim_data->remote_sim_ptid instead of inferior_ptid.
850
851 2020-01-18 Nick Clifton <nickc@redhat.com>
852
853 Binutils 2.34 branch created.
854
855 2020-01-18 Nick Clifton <nickc@redhat.com>
856
857 Synchronize top level configure files with master version:
858
859 2020-01-01 Ben Elliston <bje@gnu.org>
860
861 * config.guess: Update copyright years.
862 * config.sub: Likewise.
863
864 2019-12-21 Ben Elliston <bje@gnu.org>
865
866 * config.guess (set_cc_for_build): Prevent multiple calls by
867 checking if $tmp is already set. We can't check CC_FOR_BUILD as
868 the user may set it externally. Thanks to Torbjörn Granlund for
869 the bug report.
870
871 2019-12-21 Torbjörn Granlund <tg@gmplib.org>
872
873 * config.guess (alpha:Linux:*:*): Guard against missing
874 /proc/cpuinfo by redirecting standard error to /dev/null.
875
876 2019-09-12 Daniel Bittman <danielbittman1@gmail.com>
877
878 * config.guess (*:Twizzler:*:*): New.
879 * config.sub (-twizzler*): New.
880
881 2019-07-24 Ben Elliston <bje@gnu.org>
882
883 * config.guess (mips:OSF1:*.*): Whitespace cleanup.
884
885 2019-06-30 Ben Elliston <bje@gnu.org>
886
887 * config.sub (case $os): Match nsk* and powerunix. Don't later
888 match nsk* and set os=nsk which removes the OS version number.
889
890 2019-06-30 Ben Elliston <bje@gnu.org>
891
892 * config.sub: Recognise os108*.
893
894 2019-06-26 Ben Elliston <bje@gnu.org>
895
896 * config.sub (hp300): Set $os to hpux.
897
898 2019-06-26 Ben Elliston <bje@gnu.org>
899
900 * config.sub (vsta): Move into alphabetical order.
901
902 2019-06-10 Ben Elliston <bje@gnu.org>
903
904 * config.guess (*:OS108:*:*): Recognise new OS.
905
906 2019-05-28 Ben Elliston <bje@gnu.org>
907
908 * config.guess (*:Darwin:*:*): Run xcode-select to determine if a
909 system compiler is installed. If not, do not run set_cc_for_build,
910 as the default cc will open a dialog box asking to install
911 Xcode. If no C compiler is available, guess based on uname -p and
912 uname -m.
913
914 2019-05-28 Ben Elliston <bje@gnu.org>
915
916 * config.guess (*:Darwin:*:*): Simplify UNAME_PROCESSOR.
917
918 2020-01-17 Simon Marchi <simon.marchi@efficios.com>
919
920 * Makefile.def: Add dependencies of all-gdbsupport on all-bfd.
921 * Makefile.in: Re-generate.
922
923 2020-01-14 Tom Tromey <tom@tromey.com>
924
925 * src-release.sh (GDB_SUPPORT_DIRS): Add gdbsupport.
926 * MAINTAINERS: Add gdbsupport.
927 * configure: Rebuild.
928 * configure.ac (configdirs): Add gdbsupport.
929 * gdbsupport: New directory, move from gdb/gdbsupport.
930 * Makefile.def (host_modules, dependencies): Add gnulib.
931 * Makefile.in: Rebuild.
932
933 2020-01-09 Aaron Merey <amerey@redhat.com>
934
935 * config/debuginfod.m4: New file. Add macro AC_DEBUGINFOD. Adds
936 new configure option --with-debuginfod.
937 * configure: Regenerate.
938 * configure.ac: Call AC_DEBUGINFOD.
939
940 2019-12-26 Christian Biesinger <cbiesinger@google.com>
941
942 * .gitignore: Add perf.data and perf.data.old.
943
944 2019-10-17 Sergio Durigan Junior <sergiodj@redhat.com>
945
946 * src-release.sh (GDB_SUPPORT_DIRS): Add libctf.
947
948 2019-10-17 Alan Modra <amodra@gmail.com>
949
950 PR 29
951 * src-release.sh (getver): Replace "head -1" with "head -n 1".
952
953 2019-07-30 Nick Alcock <nick.alcock@oracle.com>
954
955 * Makefile.def (host_modules): libctf is no longer no_install.
956 * Makefile.in: Regenerated.
957
958 2019-07-13 Nick Alcock <nick.alcock@oracle.com>
959
960 * Makefile.def (dependencies): all-ld depends on all-libctf.
961 * Makefile.in: Regenerated.
962
963 2019-09-09 Phil Blundell <pb@pbcl.net>
964
965 binutils 2.33 branch created
966
967 2019-08-19 Tom Tromey <tom@tromey.com>
968
969 * configure: Rebuild.
970 * configure.ac: Add --with-static-standard-libraries.
971
972 2019-08-09 Nick Clifton <nickc@redhat.com>
973
974 * libiberty: Sync with gcc. Bring in:
975 2019-08-08 Martin Liska <mliska@suse.cz>
976
977 PR bootstrap/91352
978 * lrealpath.c (is_valid_fd): New function.
979
980 2019-07-24 Martin Liska <mliska@suse.cz>
981
982 PR lto/91228
983 * simple-object-elf.c (simple_object_elf_copy_lto_debug_sections):
984 Find first '\0' starting from gnu_lto + 1.
985
986 2019-07-12 Ren Kimura <rkx1209dev@gmail.com>
987
988 * simple-object-elf.c (simple_object_elf_match): Check zero value shstrndx.
989 This fixes a Bug 90924.
990
991 2019-07-22 Martin Liska <mliska@suse.cz>
992
993 * simple-object-elf.c (simple_object_elf_copy_lto_debug_sections):
994 Do not search for gnu_lto_v1, but search for first '\0'.
995
996 2019-07-18 Eduard-Mihai Burtescu <eddyb@lyken.rs>
997
998 * cplus-dem.c: Include rust-demangle.h.
999 * rust-demangle.c: Include rust-demangle.h.
1000 * rust-demangle.h: New file.
1001
1002 2019-05-31 Michael Forney <mforney@mforney.org>
1003
1004 * cp-demangle.c: Don't define CP_DYNAMIC_ARRAYS if __STDC_NO_VLA__
1005 is non-zero.
1006
1007 2019-04-30 Ben L <bobsayshilol@live.co.uk>
1008
1009 * d-demangle.c (dlang_parse_assocarray): Correctly handle error result.
1010 * testsuite/d-demangle-expected: Add testcase.
1011
1012 * d-demangle.c (dlang_parse_tuple): Correctly handle error result.
1013 * testsuite/d-demangle-expected: Add testcase.
1014
1015 * d-demangle.c (dlang_parse_structlit): Correctly handle error result.
1016 * testsuite/d-demangle-expected: Add testcase.
1017
1018 * d-demangle.c (dlang_parse_arrayliteral): Correctly handle error result.
1019 * testsuite/d-demangle-expected: Add testcase.
1020
1021 * d-demangle.c (dlang_parse_integer): Fix stack underflow.
1022 * testsuite/d-demangle-expected: Add testcase.
1023
1024 * cp-demangle (d_print_comp_inner): Guard against a NULL 'typed_name'.
1025 * testsuite/demangle-expected: Add testcase.
1026
1027 * cp-demangle.c (d_encoding): Guard against NULL return values from
1028 d_right (dc).
1029 * testsuite/demangle-expected: Add testcase.
1030
1031 2019-04-29 Ben L <bobsayshilol@live.co.uk>
1032
1033 * cp-demangle.c (d_expression_1): Don't peek ahead unless the current
1034 char is valid.
1035 * testsuite/demangle-expected: Add testcase.
1036
1037 2019-04-10 Nick Clifton <nickc@redhat.com>
1038
1039 PR 89394
1040 * cp-demangle.c (cplus_demangle_fill_name): Reject negative
1041 lengths.
1042 (d_count_templates_scopes): Replace num_templates and num_scopes
1043 parameters with a struct d_print_info pointer parameter. Adjust
1044 body of the function accordingly. Add recursion counter and check
1045 that the recursion limit is not reached.
1046 (d_print_init): Pass dpi parameter to d_count_templates_scopes.
1047 Reset recursion counter afterwards, unless the recursion limit was
1048 reached.
1049
1050 2019-07-13 Joel Brobecker <brobecker@adacore.com>
1051
1052 * src-release (getver): If $tool/gdbsupport/create-version.sh
1053 exists, use that to determine the version number.
1054
1055 2019-06-21 Andreas Schwab <schwab@linux-m68k.org>
1056
1057 * src-release.sh (GDB_SUPPORT_DIRS): Add gnulib.
1058
1059 2019-06-14 Tom Tromey <tom@tromey.com>
1060
1061 * MAINTAINERS: Add gnulib.
1062 * gnulib: New directory, move from gdb/gnulib.
1063 * configure.ac (host_libs): Add gnulib.
1064 * configure: Rebuild.
1065 * Makefile.def (host_modules, dependencies): Add gnulib.
1066 * Makefile.in: Rebuild.
1067
1068 2019-06-03 Nick Clifton <nickc@redhat.com>
1069
1070 Revert:
1071 2019-05-29 Nick Clifton <nickc@redhat.com>
1072
1073 * configure.ac (noconfigdirs): Add libctf if the target does not use
1074 the ELF file format.
1075 * configure: Regenerate.
1076
1077 2019-05-29 Nick Clifton <nickc@redhat.com>
1078
1079 * src-release.sh (do_proto_toplev): Add libctf to list of
1080 directories that can be disabled.
1081
1082 2019-05-29 Nick Clifton <nickc@redhat.com>
1083
1084 * configure.ac (noconfigdirs): Add libctf if the target does not use
1085 the ELF file format.
1086 * configure: Regenerate.
1087
1088 2019-05-28 Nick Alcock <nick.alcock@oracle.com>
1089
1090 * Makefile.def (dependencies): configure-libctf depends on all-bfd
1091 and all its deps.
1092 * Makefile.in: Regenerated.
1093
1094 2019-05-28 Nick Alcock <nick.alcock@oracle.com>
1095
1096 * MAINTAINERS: Add libctf.
1097
1098 2019-05-28 Nick Alcock <nick.alcock@oracle.com>
1099
1100 * Makefile.def (host_modules): Add libctf.
1101 * Makefile.def (dependencies): Likewise.
1102 libctf depends on zlib, libiberty, and bfd.
1103 * Makefile.in: Regenerated.
1104 * configure.ac (host_libs): Add libctf.
1105 * configure: Regenerated.
1106
1107 2019-05-23 Jose E. Marchesi <jose.marchesi@oracle.com>
1108
1109 * config.guess: Synchronize with config project master sources.
1110 * config.sub: Likewise.
1111 * readline/support/config.guess: Likewise.
1112 * readline/support/config.sub: Likewise.
1113
1114 2019-04-10 Nick Clifton <nickc@redhat.com>
1115
1116 * libiberty: Sync with gcc. Bring in:
1117 2019-04-10 Nick Clifton <nickc@redhat.com>
1118
1119 PR 89394
1120 * cp-demangle.c (cplus_demangle_fill_name): Reject negative
1121 lengths.
1122 (d_count_templates_scopes): Replace num_templates and num_scopes
1123 parameters with a struct d_print_info pointer parameter. Adjust
1124 body of the function accordingly. Add recursion counter and check
1125 that the recursion limit is not reached.
1126 (d_print_init): Pass dpi parameter to d_count_templates_scopes.
1127 Reset recursion counter afterwards, unless the recursion limit was
1128 reached.
1129
1130 2018-06-24 Nick Clifton <nickc@redhat.com>
1131
1132 2.32 branch created.
1133
1134 2019-01-14 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
1135
1136 Merge from GCC:
1137 PR target/88535
1138 * config.guess: Import upstream version 2019-01-03.
1139 * config.sub: Import upstream version 2019-01-01.
1140
1141 2019-01-10 Nick Clifton <nickc@redhat.com>
1142
1143 * libiberty: Sync with gcc. Bring in:
1144 2019-01-09 Sandra Loosemore <sandra@codesourcery.com>
1145
1146 PR other/16615
1147
1148 * cp-demangle.c: Mechanically replace "can not" with "cannot".
1149 * floatformat.c: Likewise.
1150 * strerror.c: Likewise.
1151
1152 2018-12-22 Jason Merrill <jason@redhat.com>
1153
1154 Remove support for demangling GCC 2.x era mangling schemes.
1155 * cplus-dem.c: Remove cplus_mangle_opname, cplus_demangle_opname,
1156 internal_cplus_demangle, and all subroutines.
1157 (libiberty_demanglers): Remove entries for ancient GNU (pre-3.0),
1158 Lucid, ARM, HP, and EDG demangling styles.
1159 (cplus_demangle): Remove 'work' variable. Don't call
1160 internal_cplus_demangle.
1161
1162 2019-01-03 Дилян Палаузов <dilyan.palauzov@aegee.org>
1163
1164 * configure.ac: Don't configure readline if --with-system-readline is
1165 used.
1166 * configure: Re-generate.
1167
1168 2018-10-31 Joseph Myers <joseph@codesourcery.com>
1169
1170 Merge from GCC:
1171 PR bootstrap/82856
1172 * multilib.am: New file. From automake.
1173
1174 2018-09-12 Sergio Durigan Junior <sergiodj@redhat.com>
1175
1176 * src-release.sh (GDB_SUPPORT_DIRS): Add "contrib".
1177
1178 2018-07-16 Nick Clifton <nickc@redhat.com>
1179
1180 * src-release.sh (DEVO_SUPPORT): Add test-driver and ar-lib.
1181
1182 2018-07-06 Sebastian Huber <sebastian.huber@embedded-brains.de>
1183
1184 * config.sub: Sync with upstream version 2018-07-03.
1185
1186 2018-07-05 Sebastian Huber <sebastian.huber@embedded-brains.de>
1187
1188 * config.guess: Sync with upstream version 2018-06-26.
1189 * config.sub: Sync with upstream version 2018-07-02.
1190
1191 2018-06-29 Alexandre Oliva <oliva@adacore.com>
1192
1193 * configure.ac: Introduce support for @unless/@endunless.
1194 * Makefile.tpl (dep-kind): Rewrite with cond; return
1195 postbootstrap in some cases.
1196 (make-postboot-dep, postboot-targets): New.
1197 (dependencies): Do not output postbootstrap dependencies at
1198 first. Output non-target ones changed for configure to depend
1199 on stage_last @if gcc-bootstrap, and the original deps @unless
1200 gcc-bootstrap.
1201 * configure.in, Makefile.in: Rebuilt.
1202
1203 2018-06-24 Nick Clifton <nickc@redhat.com>
1204
1205 * configure: Regenerate.
1206
1207 2018-06-19 Simon Marchi <simon.marchi@ericsson.com>
1208
1209 * libtool.m4: Use AC_LANG_SOURCE.
1210 * configure.ac: Remove AC_PREREQ, use AC_LANG_SOURCE.
1211 * README-maintainer-mode: Update version requirements.
1212 * ar-lib: New file.
1213 * test-driver: New file.
1214 * configure: Re-generate.
1215
1216 2018-06-18 Eric Botcazou <ebotcazou@adacore.com>
1217
1218 * Makefile.def (fortran): Add check-target-libgomp-fortran.
1219 * Makefile.tpl (check-target-libgomp-fortran): New phony target.
1220 * Makefile.in: Regenerate.
1221
1222 * configure: Regenerate.
1223
1224 2018-06-18 Simon Marchi <simon.marchi@ericsson.com>
1225
1226 * configure.ac: Sync with GCC, remove MPX-related things.
1227
1228 2018-05-01 Nick Clifton <nickc@redhat.com>
1229
1230 * config.guess: Synchronize with config project master sources.
1231 * config.sub: Likewise.
1232
1233 2018-05-01 Francois H. Theron <francois.theron@netronome.com>
1234
1235 * configure.ac: Added "nfp" target.
1236 * configure: Regenerate.
1237
1238 2018-02-13 Maciej W. Rozycki <macro@mips.com>
1239
1240 * configure.ac <wasm32-*-*> (noconfigdirs): Add `ld'.
1241 * configure: Regenerate.
1242
1243 2018-01-30 Nick Clifton <nickc@redhat.com>
1244
1245 * src-release.sh (do_proto_toplev): Add patterns for more junk files
1246 to delete before creating the tarball.
1247
1248 2018-01-29 Nick Clifton <nickc@redhat.com>
1249
1250 * src-release.sh (do_proto_toplev): Strip patch remnant files from
1251 the sources before creating the tarball.
1252
1253 2018-01-13 Nick Clifton <nickc@redhat.com>
1254
1255 * src-release.sh: Update copyright notice. Change reference to devo
1256 to be a reference to root.
1257
1258 2018-01-10 Nick Clifton <nickc@redhat.com>
1259
1260 * config-ml.in: Sync with gcc sources.
1261 * config.guess: Likewise.
1262 * config.sub: Likewise.
1263 * configure.ac: Likewise.
1264 * configure: Regenerate.
1265
1266 2017-12-14 Nick Clifton <nickc@redhat.com>
1267
1268 * COPYING.LIBGLOSS: Update address of FSF in copyright notice.
1269
1270 2017-12-12 Stafford Horne <shorne@gmail.com>
1271
1272 * configure.ac: Remove logic adding gdb to noconfigsdirs for or1k.
1273 * configure: Regenerate.
1274
1275 2017-09-15 Nick Clifton <nickc@redhat.com>
1276
1277 * src-release.sh (LZIPPROG): New define. Provides the name of the
1278 lzip program.
1279 (do_lz): New function. Compresses a tarball using the lzip
1280 program.
1281 (do_compress): Add support for lzip compression.
1282 (usage): Mention -l option.
1283 (build_release): Support -l option to invoke lzip compression.
1284
1285 2017-09-15 Alan Modra <amodra@gmail.com>
1286
1287 * src-release.sh (do_proto_toplev): Revert last patch. Enable or
1288 disable binutils, gas, gdb, gold, gprof, ld, libdecnumber, readline,
1289 and sim depending on $tool and $support_files. Echo configure line.
1290
1291 2017-09-14 Matt Rice <ratmice@gmail.com>
1292
1293 * src-release.sh (do_proto_toplev): Enable gold during release process.
1294
1295 2017-04-13 Andrew Jenner <andrew@codesourcery.com>
1296
1297 * config.sub: Sync with master version in config project.
1298
1299 2017-04-03 Andrew Jenner <andrew@codesourcery.com>
1300
1301 * config.sub: Handle ia16 in $basic_machine.
1302
1303 bfd/
1304 * config.bfd: Handle ia16.
1305
1306 gas/
1307 * configure.tgt: Handle ia16.
1308
1309 ld/
1310 * configure.tgt: Handle ia16.
1311
1312 2017-03-22 Nick Clifton <nickc@redhat.com>
1313
1314 * config.sub: Sync with master version in config project.
1315 * config.guess: Likewise.
1316
1317 2017-01-23 Nick Clifton <nickc@redhat.com>
1318
1319 * configure.ac: Update year in copyright notice.
1320 Sync from FSF GCC mainline, bringing in the following patches.
1321 * Makefile.def: Likewise.
1322 * Makefile.tpl: Likewise.
1323 * configure: Regenerate.
1324 * Makefile.in: Regenerate.
1325
1326 2016-12-21 Jakub Jelinek <jakub@redhat.com>
1327
1328 * configure.ac: Don't bootstrap libmpx unless --with-build-config
1329 includes bootstrap-mpx.
1330
1331 2016-12-01 Matthias Klose <doko@ubuntu.com>
1332
1333 * configure.ac: Don't use pkg-config to check for bdw-gc.
1334
1335 2016-11-30 Matthias Klose <doko@ubuntu.com>
1336
1337 * Makefile.def: Remove reference to boehm-gc target module.
1338 * configure.ac: Include pkg.m4, check for --with-target-bdw-gc
1339 options and for the bdw-gc pkg-config module.
1340
1341 2016-11-15 Matthias Klose <doko@ubuntu.com>
1342
1343 * config-ml.in: Remove references to GCJ.
1344 * configure.ac: Likewise.
1345
1346 2016-09-30 Jakub Jelinek <jakub@redhat.com>
1347
1348 * configure.ac: Add target-libffi to target_libraries.
1349 Readd libgcj target disablings, modified to only target-libffi.
1350 Readd target addition of go to unsupported languages.
1351
1352 2016-09-30 Andrew Haley <aph@redhat.com>
1353
1354 * Makefile.def: Remove libjava.
1355 * Makefile.tpl: Likewise.
1356 * configure.ac: Likewise.
1357
1358 2016-09-26 Anton Kolesov <Anton.Kolesov@synopsys.com>
1359
1360 * configure.ac: Disable "sim" directory for arc*-*-*.
1361
1362 2016-09-12 Maciej W. Rozycki <macro@imgtec.com>
1363
1364 * configure.ac: Check for the minimum in-tree MPFR version
1365 handled.
1366
1367 2016-12-31 Alan Modra <amodra@gmail.com>
1368
1369 * config.sub: Import from upstream.
1370
1371 2016-12-08 Alan Modra <amodra@gmail.com>
1372
1373 * configure: Regenerate.
1374
1375 2016-12-02 Josh Conner <joshconner@google.com>
1376
1377 * configure.ac: Add fuchsia to targets that use ELF.
1378 * configure: Regenerated.
1379
1380 2016-11-07 Doug Evans <dje@google.com>
1381
1382 * config.sub: Sync with upstream version 2016-11-03.
1383 git://git.sv.gnu.org/config.git
1384 * config.guess: Sync with upstream version 2016-10-02.
1385
1386 2016-09-27 Simon Marchi <simon.marchi@polymtl.ca>
1387
1388 * .gitignore: Add archives and make stamps.
1389
1390 2016-07-20 Yan-Ting Lin <currygt52@gmail.com>
1391
1392 * configure.ac (nds32*-*-*): Remove entry to enable gdb.
1393 * configure: Regenerated.
1394
1395 2016-06-28 Walter Lee <walt@tilera.com>
1396
1397 * configure.ac (tilepro-*-*): Add gdb to noconfigdirs.
1398 * configure: Regenerate.
1399
1400 2016-05-28 Alan Modra <amodra@gmail.com>
1401
1402 * Makefile.tpl (configure): Depend on m4 files included.
1403 * Makefile.in: Regenerate.
1404
1405 2016-05-27 Nick Clifton <nickc@redhat.com>
1406
1407 * config.guess (Alpha OSF1): Fix typo introduced during the most
1408 recent synchronization update.
1409
1410 2016-05-23 Nick Clifton <nickc@redhat.com>
1411
1412 * Import these patches from the gcc mainline:
1413
1414 2016-05-16 Jakub Sejdak <jakub.sejdak@phoesys.com>
1415
1416 * config.guess: Import version 2016-04-02 (newest).
1417 * config.sub: Import version 2016-05-10 (newest).
1418
1419 2016-04-19 Nick Clifton <nickc@redhat.com>
1420
1421 * Import this patch from the GCC mainline:
1422
1423 2016-04-13 Segher Boessenkool <segher@kernel.crashing.org>
1424
1425 PR bootstrap/70173
1426 * Makefile.tpl (local-distclean): Delete the libcc1, gnattools,
1427 and gotools directories. Delete the stage_final file.
1428 * Makefile.in: Regenerate.
1429
1430 2016-03-17 Cary Coutant <ccoutant@gmail.com>
1431
1432 * configure.ac: Add mips and s390 to the gold target check.
1433 * configure: Regenerate.
1434
1435 2016-02-10 Nick Clifton <nickc@redhat.com>
1436
1437 Import these patches from the GCC mainline:
1438
1439 2016-01-12 Andris Pavenis <andris.pavenis@iki.fi>
1440
1441 * configure.ac: Enable LTO for DJGPP
1442 * configure: Regenerate
1443
1444 2016-01-24 Mikhail Maltsev <maltsevm@gmail.com>
1445
1446 PR bootstrap/69329
1447 * Makefile.tpl (BASE_FLAGS_TO_PASS): Add LSAN_OPTIONS.
1448 * Makefile.in: Regenerate.
1449
1450 2016-01-25 Aditya Kumar <aditya.k7@samsung.com>
1451 Sebastian Pop <s.pop@samsung.com>
1452
1453 * Makefile.in: Regenerate.
1454 * Makefile.tpl: Export ISLVER.
1455 * configure: Regenerate.
1456 * config/isl.m4: Detect isl-0.15.
1457
1458 2016-01-29 Sebastian Pop <s.pop@samsung.com>
1459
1460 * config/isl.m4: Add comments about isl-0.16.
1461 * configure: Regenerate.
1462
1463 2016-01-12 H.J. Lu <hongjiu.lu@intel.com>
1464
1465 Sync with GCC
1466 2015-11-26 David Edelsohn <dje.gcc@gmail.com>
1467
1468 * m4/libtool.m4 (export_symbols_cmds) [AIX]: Add global TLS "L"
1469 symbols.
1470
1471 2016-01-12 Bernd Edlinger <bernd.edlinger@hotmail.de>
1472
1473 PR bootstrap/69134
1474 * Makefile.def (mpfr): Disable assembler.
1475 * Makefile.in: Regenerate.
1476
1477 2016-01-11 Nick Clifton <nickc@redhat.com>
1478
1479 Import the following changes from the GCC mainline:
1480
1481 2015-11-13 Tsvetkova Alexandra <aleksandra.tsvetkova@intel.com>
1482
1483 * configure.ac: Enable libmpx by default.
1484 * configure: Regenerated.
1485
1486 2015-11-19 Martin Liska <mliska@suse.cz>
1487
1488 * .gitignore: Add .clang-format to ignored files.
1489 * Makefile.tpl: Add clang-format.
1490 * Makefile.in: Regenerate.
1491
1492 2015-12-01 Andreas Tobler <andreast@gcc.gnu.org>
1493
1494 PR libffi/65726
1495 * Makefile.def (lang_env_dependencies): Make libffi depend
1496 on cxx.
1497 * Makefile.in: Regenerate.
1498
1499 2015-12-02 Ian Lance Taylor <iant@google.com>
1500
1501 PR go/66147
1502 * Makefile.tpl (HOST_EXPORTS): Add XGCC_FLAGS_FOR_TARGET.
1503 * Makefile.in: Regenerate.
1504
1505 2015-12-17 Nathan Sidwell <nathan@acm.org>
1506
1507 * config/isl.m4 (ISL_CHECK_VERSION): Add gmp libs.
1508 * configure: Regenerate.
1509
1510 2015-12-17 Sebastian Pop <s.pop@samsung.com>
1511
1512 * Makefile.in: Replace ISL with isl.
1513 * Makefile.tpl: Same.
1514 * config/isl.m4: Same.
1515 * configure.ac: Same.
1516 * contrib/download_prerequisites: Same.
1517 * configure: Regenerate.
1518
1519 2016-01-01 Ben Elliston <bje@gnu.org>
1520
1521 * config.guess: Import version 2016-01-01.
1522 * config.sub: Likewise.
1523
1524 2015-11-20 Tristan Gingold <gingold@adacore.com>
1525
1526 * configure.ac: Add aarch64-*-darwin* and arm-*-darwin*.
1527 * configure: Regenerate.
1528
1529 2015-10-21 Nick Clifton <nickc@redhat.com>
1530
1531 PR gas/19109
1532 * configure.ac: Note the 'none' is an acceptable argument to
1533 --enable-compressed-debug-sections.
1534 * configure: Regenerate.
1535
1536 2015-10-20 H.J. Lu <hongjiu.lu@intel.com>
1537
1538 PR gas/19109
1539 * configure.ac: Add
1540 --enable-compressed-debug-sections={all,gas,gold,ld}.
1541 * configure: Regenerated.
1542
1543 2015-09-30 Nick Clifton <nickc@redhat.com>
1544
1545 Import the following patches from the GCC mainline:
1546
1547 2015-08-23 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
1548
1549 PR libfortran/54572
1550 * Makefile.def: Make libgfortran depend on libbacktrace.
1551 * Makefile.in: Regenerate.
1552
1553 2015-08-12 Tom de Vries <tom@codesourcery.com>
1554
1555 PR other/67092
1556 PR other/67098
1557 * configure.ac: Remove --with_host_libstdcxx support.
1558 * configure: Regenerate.
1559
1560 2015-08-10 Thomas Schwinge <thomas@codesourcery.com>
1561 Jakub Jelinek <jakub@redhat.com>
1562
1563 * configure.ac (noconfigdirs): Don't add "target-libgomp" for target
1564 nvptx*-*-*.
1565 * configure: Regenerate.
1566
1567 2015-08-07 H.J. Lu <hongjiu.lu@intel.com>
1568
1569 Sync with GCC
1570 2015-07-28 Ben Elliston <bje@gnu.org>
1571
1572 * config.sub, config.guess: Import from upstream.
1573
1574 2015-08-06 Yaakov Selkowitz <yselkowi@redhat.com>
1575
1576 * Makefile.def (libiconv): Define bootstrap=true.
1577 Mark pdf/html/info as missing.
1578 (configure-gcc): Depend on all-libiconv.
1579 (all-gcc): Ditto.
1580 (configure-libcpp): Ditto.
1581 (all-libcpp): Ditto.
1582 (configure-intl): Ditto.
1583 (all-intl): Ditto.
1584 * Makefile.in: Regenerate.
1585
1586 2015-07-27 H.J. Lu <hongjiu.lu@intel.com>
1587
1588 Sync with GCC
1589 2015-07-24 Michael Darling <darlingm@gmail.com>
1590
1591 PR other/66259
1592 * config-ml.in: Reflects renaming of configure.in to configure.ac
1593 * configure: Likewise
1594 * configure.ac: Likewise
1595
1596 2015-07-14 H.J. Lu <hongjiu.lu@intel.com>
1597
1598 * Makefile.in: Regenerated.
1599
1600 Sync with GCC
1601 2015-05-21 Jason Merrill <jason@redhat.com>
1602
1603 * Makefile.tpl: Update comments.
1604
1605 2015-04-22 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
1606
1607 * Makefile.tpl: Remove surplus whitespace throughout.
1608
1609 2015-03-25 Martin Liska <mliska@suse.cz>
1610 Yury Gribov <y.gribov@samsung.com>
1611
1612 * Makefile.tpl: Fix ln source location for vimrc file.
1613
1614 2015-07-14 H.J. Lu <hongjiu.lu@intel.com>
1615
1616 Sync with GCC
1617 2015-05-16 James Bowman <james.bowman@ftdichip.com>
1618
1619 * configure.ac: FT32 target added.
1620 * configure: Regenerate.
1621
1622 2015-07-14 H.J. Lu <hongjiu.lu@intel.com>
1623
1624 Sync with GCC
1625 2015-06-02 Jason Merrill <jason@redhat.com>
1626
1627 PR bootstrap/66319
1628 * configure.ac: Use -std=gnu++98.
1629
1630 2015-05-28 Mike Frysinger <vapier@gentoo.org>
1631
1632 * configure.ac (--vtable-verify): Use AS_HELP_STRING for help.
1633 * configure: Regenerate.
1634
1635 2015-05-11 Paulo Matos <paulo@matos-sorge.com>
1636
1637 * configure.ac: Fix typo.
1638 * configure: Regenerate.
1639
1640 2015-05-03 Matthias Klose <doko@ubuntu.com>
1641
1642 * configure.ac: Match $host configured with triplets.
1643 * configure: Regenerate.
1644
1645 2015-04-17 Jakub Jelinek <jakub@redhat.com>
1646
1647 PR bootstrap/62077
1648 * configure.ac (--enable-stage1-checking): Default to
1649 release,misc,gimple,rtlflag,tree,types if --disable-checking
1650 or --enable-checking is not specified and DEV-PHASE is not
1651 experimental.
1652 * configure: Regenerated.
1653
1654 2015-03-27 Uros Bizjak <ubizjak@gmail.com>
1655
1656 Install back PR target/47230 fix (Revert the revert).
1657
1658 2015-06-30 H.J. Lu <hongjiu.lu@intel.com>
1659
1660 * configure.ac (ospace_frag): Enable for i?86*-*-elfiamcu
1661 target.
1662 * configure: Regenerate.
1663
1664 2015-05-13 John David Anglin <dave.anglin@bell.net>
1665
1666 * configure.ac: Disable configuration of GDB for HPUX targets.
1667 * configure: Regenerate.
1668
1669 2015-05-01 H.J. Lu <hongjiu.lu@intel.com>
1670
1671 PR ld/18355
1672 * Makefile.def: Add extra_configure_flags to host zlib.
1673 * configure.ac (extra_host_zlib_configure_flags): New. Set
1674 to --enable-host-shared When bfd is to be built as shared
1675 library. AC_SUBST.
1676 * Makefile.in: Regenerated.
1677
1678 2015-04-15 Mike Frysinger <vapier@gentoo.org>
1679 Hans-Peter Nilsson <hp@axis.com>
1680
1681 Adjust src-release.sh for sim using the gdb create-version.sh.
1682 * src-release.sh (tar_compress): If there's a fifth parameter,
1683 use that in the getver call instead of $tool.
1684 (sim_release): Pass gdb as fifth parameter to tar_compress.
1685 (SIM_SUPPORT_DIRS): Add gdb/common/create-version.sh.
1686
1687 2015-04-14 Max Ostapenko <m.ostapenko@partner.samsung.com>
1688
1689 * Makefile.tpl (EXTRA_HOST_EXPORTS): New variables.
1690 (EXTRA_BOOTSTRAP_FLAGS): Likewise.
1691 (check-[+module+]): Add EXTRA_HOST_EXPORTS and EXTRA_BOOTSTRAP_FLAGS.
1692 * Makefile.in: Regenerate.
1693
1694 2015-04-01 H.J. Lu <hongjiu.lu@intel.com>
1695
1696 * configure.ac: Add --with-system-zlib.
1697 * configure: Regenerated.
1698
1699 2015-03-31 H.J. Lu <hongjiu.lu@intel.com>
1700
1701 * src-release.sh: Don't configure with --with-target-subdir=.
1702 --disable-multilib.
1703
1704 2015-03-31 H.J. Lu <hongjiu.lu@intel.com>
1705
1706 * src-release.sh (DEVO_SUPPORT): Replace src-release with
1707 src-release.sh.
1708
1709 2015-03-30 Ed Schouten <ed@nuxi.nl>
1710
1711 * config.sub: Update from upstream, to 2015-03-04 version.
1712 * config.guess: Likewise.
1713
1714 2015-03-30 H.J. Lu <hongjiu.lu@intel.com>
1715
1716 * Makefile.def (dependencies): Add all-zlib to all-bfd.
1717 * Makefile.in: Regenerated.
1718
1719 2015-03-28 H.J. Lu <hongjiu.lu@intel.com>
1720
1721 * src-release.sh (do_proto_toplev): Configure with --target
1722 --with-target-subdir and --disable-multilib.
1723 (BINUTILS_SUPPORT_DIRS): Add zlib.
1724 (GAS_SUPPORT_DIRS): Likewise.
1725 (GDB_SUPPORT_DIRS): Likewise.
1726 (SIM_SUPPORT_DIRS): Likewise.
1727
1728 2015-03-17 H.J. Lu <hongjiu.lu@intel.com>
1729
1730 * configure.ac (target_configdirs): Exclude target-zlib if
1731 target-libjava isn't built.
1732 * configure: Regenerated.
1733
1734 2015-03-17 H.J. Lu <hongjiu.lu@intel.com>
1735
1736 Sync with GCC
1737 2014-06-13 Thomas Schwinge <thomas@codesourcery.com>
1738
1739 * config-ml.in: Robustify ac_configure_args parsing.
1740
1741 2015-03-16 H.J. Lu <hongjiu.lu@intel.com>
1742
1743 * Makefile.def: Updated from GCC trunk.
1744 * Makefile.tpl: Likewise.
1745 * configure.ac: Likewise.
1746 * Makefile.in: Regenerated.
1747 * configure: Likewise.
1748
1749 2015-01-28 James Bowman <james.bowman@ftdichip.com>
1750
1751 * configure.ac: Add FT32 support.
1752 * configure: Regenerate.
1753
1754 2015-01-12 Anthony Green <green@moxielogic.com>
1755
1756 * configure.ac: Don't disable gprof for moxie.
1757 * configure: Rebuild.
1758
1759 2015-01-03 Andrew Pinski <apinski@cavium.com>
1760
1761 * Makefile.def (flags_to_pass): Pass OBJCOPY_FOR_TARGET also.
1762 * Makefile.tpl (HOST_EXPORTS): Add OBJCOPY_FOR_TARGET.
1763 (BASE_TARGET_EXPORTS): Add OBJCOPY.
1764 (OBJCOPY_FOR_TARGET): New variable.
1765 (EXTRA_TARGET_FLAGS): Add OBJCOPY.
1766 * Makefile.in: Regenerate.
1767 * configure.ac: Check for already installed target objcopy.
1768 Also GCC_TARGET_TOOL on objcopy.
1769 * configure: Regenerate.
1770
1771 2015-01-02 Hans-Peter Nilsson <hp@bitrange.com>
1772
1773 * config.sub: Update from upstream, to 2015-01-01 version.
1774 * config.guess: Ditto.
1775
1776 2014-12-06 Eric Botcazou <ebotcazou@adacore.com>
1777
1778 * config.sub: Update from upstream config repo.
1779
1780 2014-11-24 H.J. Lu <hongjiu.lu@intel.com>
1781
1782 * libtool.m4: Updated from GCC trunk.
1783
1784 2014-11-16 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1785
1786 * config.guess: Update from upstream config repo.
1787 * config.sub: Ditto.
1788
1789 2014-11-16 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1790
1791 * move-if-change: Update from upstream gnulib.
1792
1793 2014-11-16 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1794
1795 * compile: Sync with upstream Automake.
1796 * depcomp: Ditto.
1797 * install-sh: Ditto.
1798 * missing: Ditto.
1799 * mkinstalldirs: Ditto.
1800 * ylwrap: Ditto.
1801
1802 2014-10-15 Tristan Gingold <gingold@adacore.com>
1803
1804 * src-release.sh (do_proto_toplev): Configure with --target.
1805
1806 2014-10-03 Jing Yu <jingyu@google.com>
1807
1808 * configure.ac: Add aarch64 to list of targets that support gold.
1809 * configure: Regenerate.
1810
1811 2014-09-12 Andrew Bennett <andrew.bennett@imgtec.com>
1812
1813 * configure.ac: Add mips*-img-elf* target triple.
1814 * configure: Regenerate.
1815
1816 2014-09-06 Kuan-Lin Chen <kuanlinchentw@gmail.com>
1817 * configure: Disable gdb for nds32*-*-* until supported.
1818 * configure.ac: Disable gdb for nds32*-*-* until supported.
1819
1820 2014-09-05 Joel Brobecker <brobecker@adacore.com>
1821
1822 * configure: Regenerate.
1823
1824 2014-08-27 Will Newton <will.newton@linaro.org>
1825
1826 * src-release.sh: New file.
1827 * src-release: Remove file.
1828
1829 2014-07-27 Joel Sherrill <joel.sherrill@oarcorp.com>
1830
1831 GDB not supported for or1k*-*-rtems*
1832 * configure.ac (or1k*-*-rtems*): gdb not supported. The ordering
1833 of the stanzas results in this not being caught by or1k*-*-* later.
1834 * configure. Regenerated.
1835
1836 2014-07-25 Samuel Bronson <naesten@gmail.com>
1837
1838 * .gitattributes: New file for use with git-merge-changelog.
1839
1840 2014-07-21 Joel Sherrill <joel.sherrill@oarcorp.com>
1841
1842 Disable gdb for or1k*-*-* until supported
1843 * configure.ac (or1k*-*-*): Disable gdb.
1844 * configure: Regenerated.
1845
1846 2014-05-14 Sandra Loosemore <sandra@codesourcery.com>
1847
1848 * configure.ac (target_makefile_frag): Set for nios2-*-elf*.
1849 * configure: Regenerated.
1850
1851 2014-03-26 Jakub Jelinek <jakub@redhat.com>
1852
1853 PR sanitizer/56781
1854 * Makefile.def: Set bootstrap=true; for host fixincludes.
1855 * configure.ac: Don't bootstrap host fixincludes unless
1856 --with-build-config=bootstrap-{a,ub}san.
1857 * Makefile.in: Regenerated.
1858 * configure: Regenerated.
1859
1860 2014-03-21 Jakub Jelinek <jakub@redhat.com>
1861
1862 * configure.ac: Move BUILD_CONFIG set up earlier. Add
1863 --enable-vtable-verify option parsing. Don't add
1864 target-libsanitizer to bootstrap_target_libs unless
1865 --with-build-config=bootstrap-asan or
1866 --with-build-config=bootstrap-ubsan. Don't add target-libvtv
1867 to bootstrap_target_libs unless --enable-vtable-verify.
1868 * configure: Regenerated.
1869
1870 2014-03-07 Jakub Jelinek <jakub@redhat.com>
1871
1872 PR bootstrap/58572
1873 * Makefile.tpl (POSTSTAGE1_CXX_EXPORT): Use -isystem instead of
1874 -I for libstdc++-v3 includes if $(LEAN).
1875 * Makefile.in: Regenerated.
1876
1877 2014-02-24 Walter Lee <walt@tilera.com>
1878
1879 * configure.ac (tilepro-*-*) Change to tilepro*-*-*.
1880 (tilegx-*-*): Change to tilegx*-*-*.
1881 * configure: Regenerate.
1882
1883 2014-05-01 Richard Sandiford <rdsandiford@googlemail.com>
1884
1885 * config.sub, config.guess: Import from upstream.
1886
1887 2014-04-04 Eric Botcazou <ebotcazou@adacore.com>
1888
1889 PR bootstrap/60620
1890 * Makefile.def (dependencies): Make gnattools depend on libstdc++-v3.
1891 * Makefile.in: Regenerate.
1892
1893 2014-03-28 Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
1894
1895 * Makefile.def (dependencies): Make all-ld depend on all-binutils
1896 for WINDRES_FOR_TARGET in default-manifest.o rule.
1897 * Makefile.in: Regenerate.
1898
1899 2014-02-04 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
1900
1901 PR target/59788
1902 * ltmain.sh (opt_duplicate_compiler_generated_deps): Enable on
1903 *solaris2*.
1904
1905 2013-12-19 Keven Boell <keven.boell@intel.com>
1906
1907 * cp-namespace.c (cp_lookup_nested_symbol): Enable
1908 nested lookups for fortran modules.
1909 * dwarf2read.c (read_module): Add fortran module to
1910 the symbol table.
1911 (add_partial_symbol, add_partial_module): Add fortran
1912 module to the partial symbol table.
1913 (new_symbol_full): Create full symbol for fortran module.
1914 * f-exp.y (yylex): Add new module domain to be parsed.
1915 * symtab.h: New domain for fortran modules.
1916
1917 2013-12-19 Keven Boell <keven.boell@intel.com>
1918
1919 * f-exp.y (yylex): Add domain array to enable lookup
1920 in multiple domains. Loop over lookup domains and try
1921 to find requested symbol. Add STRUCT_DOMAIN to lookup
1922 domains to be able to query for user defined types.
1923
1924 2013-12-13 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
1925
1926 * configure.ac: Add user-friendly check for native x86_64-linux
1927 multilibs.
1928 * configure: Regenerate.
1929
1930 2013-11-23 Alan Modra <amodra@gmail.com>
1931
1932 * config.sub, config.guess: Import from upstream.
1933
1934 2013-11-07 Thomas Schwinge <thomas@codesourcery.com>
1935
1936 * Makefile.in: Regenerate.
1937
1938 * Makefile.tpl: Fix typo.
1939 * Makefile.in: Regenerate partially.
1940
1941 2013-11-04 Balaji V. Iyer <balaji.v.iyer@intel.com>
1942
1943 * configure.ac: Added libcilkrts to noconfig list when C++ is not
1944 supported.
1945 * configure: Regenerated.
1946
1947 2013-10-30 Jason Merrill <jason@redhat.com>
1948
1949 * Makefile.tpl (STAGE1_CONFIGURE_FLAGS): Pass
1950 --disable-build-format-warnings.
1951
1952 2013-10-29 Balaji V. Iyer <balaji.v.iyer@intel.com>
1953
1954 * Makefile.def: Add libcilkrts to target_modules. Make libcilkrts
1955 depend on libstdc++ and libgcc.
1956 * configure: Regenerate.
1957 * configure.ac: Added libcilkrts to target binaries. Also, restrict
1958 libcilkrts for POSIX and i*86, and x86_64 architectures.
1959 * Makefile.in: Added libcilkrts related fields to support building it.
1960
1961 2013-10-26 Jeff Law <law@redhat.com>
1962
1963 * Makefile.def (target_modules): Remove libmudflap
1964 (languages): Remove check-target-libmudflap).
1965 * Makefile.in: Rebuilt.
1966 * Makefile.tpl (check-target-libmudflap-c++): Remove.
1967 * configure.ac (target_libraries): Remove target-libmudflap.
1968 Remove checks which disabled libmudflap on some systems.
1969 * configure: Rebuilt.
1970 * libmudflap: Directory removed.
1971
1972 2013-10-16 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1973
1974 * configure.ac: Update from GCC.
1975 * configure: Regenerate.
1976
1977 2013-10-15 Hans-Peter Nilsson <hp@axis.com>
1978
1979 * src-release (do-proto-toplevel): Support subdir-path-prefixed
1980 files in SUPPORT_FILES.
1981 (SIM_SUPPORT_DIRS): New variable.
1982 (sim.tar.bz2): New rule.
1983
1984 2013-10-08 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1985
1986 * configure.ac: Update from GCC.
1987 * configure: Regenerate.
1988
1989 2013-10-01 Jeff Johnston <jjohnstn@redhat.com>
1990
1991 * COPYING.NEWLIB: Update with new copyright.
1992
1993 2013-09-21 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1994
1995 * configure.ac: Update from GCC.
1996 * configure: Regenerate.
1997
1998 2013-09-20 Alan Modra <amodra@gmail.com>
1999
2000 * libtool.m4 (_LT_ENABLE_LOCK <ld -m flags>): Remove non-canonical
2001 ppc host match. Support little-endian powerpc linux hosts.
2002
2003 2013-08-16 Joel Brobecker <brobecker@adacore.com>
2004
2005 * src-release (VER): When using $(TOOL)/common/create-version.sh,
2006 strip the "-cvs" suffix from the version number if present.
2007
2008 2013-08-12 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2009
2010 * configure.ac: Sync with GCC repo.
2011 * Makefile.def: Ditto.
2012 * configure: Regenerate.
2013 * Makefile.in: Ditto.
2014
2015 2013-07-22 Joel Brobecker <brobecker@adacore.com>
2016
2017 * src-release (VER): Use $(TOOL)/common/create-version.sh
2018 if it exists.
2019
2020 2013-06-22 Richard Sandiford <rdsandiford@googlemail.com>
2021
2022 * configure.ac (mips*-*-bsd*, mips*-*-ultrix*, mips*-*-osf*)
2023 (mips*-*-ecoff*, mips*-*-pe*, mips*-*-irix* [v4 and earlier])
2024 (mips*-*-lnews*, mips*-*-riscos*): Add gas and ld to noconfigdirs.
2025 * configure: Regenerate.
2026
2027 2013-06-01 George Thomas <george.thomas@atmel.com>
2028
2029 * include/opcode/avr.h: Rename AVR_ISA_XCH to AVR_ISA_RMW. Remove
2030 from AVR_ISA_XMEGA and add new AVR_ISA_XMEGAU
2031
2032 2013-05-06 Sandra Loosemore <sandra@codesourcery.com>
2033
2034 * COPYING.NEWLIB: Add Altera Corporation copyright.
2035
2036 2013-04-29 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2037
2038 * config.guess: Update from config repo.
2039 * config.sub: Ditto.
2040
2041 2013-04-22 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2042
2043 * Makefile.def: Sync with GCC.
2044 * Makefile.in: Regenerate.
2045
2046 2013-04-22 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2047
2048 * configure.ac: Sync with GCC.
2049 * configure: Regenerate.
2050
2051 2013-03-22 Mike Frysinger <vapier@gentoo.org>
2052
2053 * src-release (VER): Change bfd/configure.in sed to use the new
2054 `bfd/configure --version` output.
2055
2056 2013-02-15 Yufeng Zhang <yufeng.zhang@arm.com>
2057
2058 * configure.ac: Sync with GCC repo.
2059 * configure: Ditto.
2060
2061 2013-02-05 Ian Lance Taylor <iant@google.com>
2062
2063 PR go/55969
2064 * configure.ac: Disable libgo on some systems where it does not
2065 work.
2066 * configure: Rebuild.
2067
2068 2013-02-05 Alan Modra <amodra@gmail.com>
2069
2070 * configure: Regenerate after syncing config/.
2071
2072 2013-01-15 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2073
2074 * configure.ac: Sync with GCC repo.
2075 * configure: Ditto.
2076 * Makefile.def: Ditto.
2077 * Makefile.in: Ditto.
2078
2079 2013-01-11 Joel Brobecker <brobecker@adacore.com>
2080
2081 Sync with GCC, merge:
2082
2083 2013-01-09 Jason Merrill <jason@redhat.com>
2084
2085 * .gitignore: Import from gdb repository.
2086
2087 2013-01-11 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2088
2089 * config.sub: Update from config repo.
2090
2091 2013-01-11 Eric Botcazou <ebotcazou@adacore.com>
2092
2093 * Makefile.tpl (BOOT_ADAFLAGS): Remove -gnata.
2094 * Makefile.in: Regenerate.
2095
2096 2013-01-09 H.J. Lu <hongjiu.lu@intel.com>
2097
2098 * Makefile.def (configure-gcc): Depend on all-gmp.
2099 (all-gcc): Remove dependency on all-gmp.
2100 * Makefile.in: Regenerated.
2101
2102 2013-01-08 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2103
2104 * config.guess: Update from config repo.
2105 * config.sub: Ditto.
2106
2107 2013-01-07 Jeff Johnston <jjohnstn@redhat.com>
2108
2109 * COPYING.LIBGLOSS: Remove license for mips/lsi33k-stub.h which no longer
2110 exists and replace the new bfin license in its location.
2111
2112 2013-01-07 H.J. Lu <hongjiu.lu@intel.com>
2113
2114 PR gas/14899
2115 * Makefile.def (dependencies): Make all-binutils, all-gprof,
2116 all-ld and all-gold depend on all-gas.
2117 * Makefile.in: Regenerated.
2118
2119 2012-12-29 Ben Elliston <bje@gnu.org>
2120
2121 * config.guess: Update to 2012-12-29 version.
2122 * config.sub: Likewise.
2123
2124 2012-12-20 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2125
2126 * Makefile.def (install-target-libgo): Depend on
2127 install-target-libatomic. Merged from GCC repo.
2128 * Makefile.in: Regenerate.
2129
2130 2012-12-17 Jeff Johnston <jjohnstn@redhat.com>
2131
2132 * COPYING.LIBGLOSS: Add license for bfin libgloss.
2133
2134 2012-12-16 Thomas Schwinge <thomas@codesourcery.com>
2135
2136 * configure.ac (ENABLE_GOLD): Consider *-*-gnu* targets ELF.
2137 * configure: Regenerate.
2138
2139 2012-12-11 H.J. Lu <hongjiu.lu@intel.com>
2140
2141 * Makefile.def (target_modules): Add bootstrap=true and
2142 raw_cxx=true to libsanitizer.
2143 * configure.ac (bootstrap_target_libs): Add libsanitizer.
2144 * Makefile.in: Regenerated.
2145 * configure: Likewise.
2146
2147 2012-12-08 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2148
2149 * config.sub: Merge from config repo.
2150
2151 2012-11-30 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2152
2153 * configure.ac: Merge from GCC.
2154 * Makefile.tpl: Ditto.
2155 * Makefile.in: Ditto.
2156 * configure: Ditto.
2157
2158 2012-11-28 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2159
2160 * configure.ac (noconfigdirs): Merge from GCC.
2161 * configure: Regenerate.
2162
2163 2012-11-19 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2164
2165 * config.sub (arm): Merge from upstream: Handle armv[6-8] targets.
2166
2167 2012-11-14 Roland McGrath <mcgrathr@google.com>
2168
2169 * configure.ac (ENABLE_GOLD): Consider *-*-nacl* targets ELF.
2170 * configure: Regenerate.
2171
2172 2012-11-13 Richard Henderson <rth@redhat.com>
2173
2174 * configure.ac: Move libsanitizer logic to subdirectory.
2175 * configure: Regenerate.
2176
2177 2012-11-13 Dodji Seketeli <dodji@redhat.com>
2178
2179 * configure.ac: Enable libsanitizer just on x86 linux for now.
2180 * configure: Re-generate.
2181
2182 2012-11-13 David Edelsohn <dje.gcc@gmail.com>
2183
2184 * configure.ac: Merge libquadmath sections.
2185 * configure: Regenerate.
2186
2187 2012-11-12 Wei Mi <wmi@google.com>
2188
2189 * configure.ac: Add libsanitizer to target_libraries.
2190 * Makefile.def: Ditto.
2191 * configure: Regenerate.
2192 * Makefile.in: Regenerate.
2193
2194 2012-11-03 H.J. Lu <hongjiu.lu@intel.com>
2195
2196 * configure: Regenerated.
2197
2198 2012-11-03 Robert Mason <rbmj@verizon.net>
2199
2200 * configure.ac: add --disable-libstdcxx configure option
2201 and handle defaulted state only for VxWorks, ARM-wince-pe and AVR.
2202
2203 2012-10-24 Corinna Vinschen <corinna@vinschen.de>
2204
2205 * configure.ac (FLAGS_FOR_TARGET,target=cygwin): Fix for building
2206 against Mingw64 w32api.
2207 * configure: Regenerate.
2208
2209 2012-10-23 Eric Botcazou <ebotcazou@adacore.com>
2210
2211 PR bootstrap/54820
2212 * configure.ac (have_static_libs): Force 'no' for GCC version < 4.5.
2213 * configure: Regenerate.
2214
2215 2012-10-22 Eric Botcazou <ebotcazou@adacore.com>
2216
2217 PR bootstrap/54820
2218 * Makefile.tpl (STAGE1_FLAGS_TO_PASS): New variable.
2219 (all-[+prefix+][+module+]): Pass stage1_args to sub-makes.
2220 (all-stage[+id+]-[+prefix+][+module+]): Likewise, if prev is false.
2221 (clean-stage[+id+]-[+prefix+][+module+]): Likewise, if prev is false.
2222 (host_modules): Set stage1_args to STAGE1_FLAGS_TO_PASS.
2223 * Makefile.in: Regenerate.
2224 * configure.ac (have_static_libs): New variable and associated check.
2225 (stage1-ldflags): Move to after stage1_libs and set to -static-libstdc++
2226 -static-libgcc if stage1_libs is empty and have_static_libs is yes.
2227 * configure: Regenerate.
2228
2229 2012-10-10 David Holsgrove <david.holsgrove@xilinx.com>
2230
2231 * config.guess, config.sub: Include updated version from
2232 config-patches. Adds microblaze little endian support.
2233
2234 2012-09-28 Ian Lance Taylor <iant@google.com>
2235
2236 * Makefile.def: Make all-target-libgo depend on
2237 all-target-libbacktrace.
2238 * Makefile.in: Rebuild.
2239
2240 2012-09-26 Ian Lance Taylor <iant@google.com>
2241
2242 * Makefile.def: Make all-gcc depend on all-libbacktrace.
2243 * Makefile.in: Rebuild.
2244
2245 2012-09-06 Diego Novillo <dnovillo@google.com>
2246
2247 * configure.ac: Bump minimum GMP version to 4.2.3.
2248 * configure: Re-generate.
2249
2250 2012-09-05 Georg-Johann Lay <avr@gjlay.de>
2251
2252 PR target/54461
2253 * configure.ac (noconfigdirs,target=avr-*-*): Add target-newlib,
2254 target-libgloss if not configured --with-avrlibc=no.
2255 * configure: Regenerate.
2256
2257 2012-09-04 Jason Merrill <jason@redhat.com>
2258
2259 * configure.ac: Fix --enable-languages=all.
2260
2261 2012-09-03 Richard Guenther <rguenther@suse.de>
2262
2263 PR bootstrap/54138
2264 * configure.ac: Re-organize ISL / CLOOG checks to allow
2265 disabling with either --without-isl or --without-cloog.
2266 * configure: Regenerated.
2267
2268 2012-09-03 Georg-Johann Lay <avr@gjlay.de>
2269
2270 * configure.ac (noconfigdirs,target=avr): Add target-libquadmath.
2271 * configure: Regenerate.
2272
2273 2012-09-21 Steve Ellcey <sellcey@mips.com>
2274
2275 * configure.ac: Add mips*-mti-elf* target.
2276 * configure: Regenerate.
2277
2278 2012-09-19 Ian Lance Taylor <iant@google.com>
2279
2280 * configure.ac (host_libs): Add libbacktrace.
2281 (target_libraries): Add libbacktrace.
2282 * Makefile.def (host_modules): Add libbacktrace.
2283 (target_modules): Likewise.
2284 * configure, Makefile.in: Rebuild.
2285
2286 2012-09-15 Jiong Wang <jiwang@tilera.com>
2287
2288 * configure.ac (ENABLE_GOLD): support tilegx*
2289 * configure: rebuild
2290
2291 2012-09-14 David Edelsohn <dje.gcc@gmail.com>
2292
2293 PR target/38607
2294 Merge upstream change.
2295 * libtool.m4 (_LT_COMPILER_PIC): Add -fPIC to GCC and GXX for AIX.
2296
2297 * configure.ac: Add target-libquadmath to noconfigdirs for AIX.
2298 Add libgomp*.o to compare_exclusions for AIX.
2299 * configure: Regenerate.
2300
2301 2012-08-26 H.J. Lu <hongjiu.lu@intel.com>
2302
2303 PR binutils/4970
2304 * Makefile.def (host_modules): Rmove lib_path=.libs from bfd
2305 and opcodes.
2306 * Makefile.in: Regenerated.
2307
2308 2012-08-14 Diego Novillo <dnovillo@google.com>
2309
2310 Merge from cxx-conversion branch.
2311
2312 * Makefile.tpl (STAGE[+id+]_CXXFLAGS): Remove
2313 POSTSTAGE1_CONFIGURE_FLAGS.
2314 * Makefile.in: Regenerate.
2315 * configure.ac (ENABLE_BUILD_WITH_CXX): Remove. Update all users.
2316 Force C++ when bootstrapping.
2317 * configure: Regenerate.
2318
2319 2012-07-06 Richard Guenther <rguenther@suse.de>
2320
2321 * Makefile.def (cloog): Pass $(HOST_GMPINC) and $(HOST_ISLINC)
2322 as CPPFLAGS, pass path to built gmp as LDFLAGS, always use
2323 --with-gmp=system.
2324 * Makefile.in: Regenerated.
2325 * configure: Likewise.
2326
2327 2012-07-06 Richard Guenther <rguenther@suse.de>
2328
2329 * configure.ac (extra_isl_gmp_configure_flags): Initialize and subst.
2330 * Makefile.def (isl): Use extra_isl_gmp_configure_flags and
2331 supply V=1 as extra_make_flags.
2332 * configure: Regenerated.
2333 * Makefile.in: Likewise.
2334
2335 2012-07-03 Richard Guenther <rguenther@suse.de>
2336
2337 * Makfile.def (isl): Remove not necessary extra_exports and
2338 extra_make_flags.
2339 (cloog): Use $$CPPFLAGS instead of ${CPPFLAGS}.
2340 * Makefile.in: Regenerated.
2341
2342 2012-07-03 Richard Guenther <rguenther@suse.de>
2343
2344 * Makefile.def (cloog): Add V=1 to extra_make_flags.
2345 * configure.ac: If either the ISL or the CLooG check failed
2346 do not try to build in-tree versions.
2347 * Makefile.in: Regenerated.
2348 * configure: Regenerated.
2349
2350 2012-07-02 Richard Guenther <rguenther@suse.de>
2351 Michael Matz <matz@suse.de>
2352 Tobias Grosser <tobias@grosser.es>
2353 Sebastian Pop <sebpop@gmail.com>
2354
2355 * Makefile.def: Add ISL host module, remove PPL host module.
2356 Adjust ClooG host module to use the proper ISL.
2357 * Makefile.tpl: Pass ISL include flags instead of PPL ones.
2358 * configure.ac: Include config/isl.m4. Add ISL host library,
2359 remove PPL. Remove PPL configury, add ISL configury, adjust
2360 ClooG configury.
2361 * Makefile.in: Regenerated.
2362 * configure: Likewise.
2363
2364 2012-07-02 Richard Guenther <rguenther@suse.de>
2365
2366 Merge from graphite branch
2367 2011-07-21 Tobias Grosser <tobias@grosser.es>
2368
2369 * configure: Regenerated.
2370 * config/cloog.m4: Remove support for CLooG-ppl and CLooG-parma,
2371 both cloog.org and legacy versions. The only supported version will
2372 be CLooG with the isl backend.
2373
2374 2011-07-21 Tobias Grosser <tobias@grosser.es>
2375
2376 * configure: Regenerated.
2377 * configure.ac: Require cloog isl 0.17.0
2378
2379 2011-07-21 Tobias Grosser <tobias@grosser.es>
2380
2381 * configure: Regenerated.
2382 * config/cloog.m4: Do not define CLOOG_ORG
2383
2384 2012-06-29 Steven Bosscher <steven@gcc.gnu.org>
2385
2386 * configure.ac: Skip C if explicitly selected.
2387 * configure: Regenerate.
2388
2389 2012-06-28 Christophe Lyon <christophe.lyon@st.com>
2390
2391 * configure.ac (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Make sure
2392 they contain -O2.
2393 * configure: Regenerate.
2394
2395 2012-06-20 Jason Merrill <jason@redhat.com>
2396
2397 * Makefile.tpl (check-target-libgomp-c++): New.
2398 (check-target-libitm-c++): New.
2399 * Makefile.def (c++): Add them.
2400 * Makefile.in: Regenerate.
2401
2402 2012-05-16 Olivier Hainque <hainque@adacore.com>
2403
2404 * Makefile.tpl (gcc-no-fixedincludes): Rename into ...
2405 (gcc-install-no-fixedincludes): Now forwarder to local target in gcc/
2406 (install-no-fixedincludes): Adjust accordingly.
2407 * Makefile.in: Regenerate.
2408
2409 2012-05-09 Nick Clifton <nickc@redhat.com>
2410 Paul Smith <psmith@gnu.org>
2411
2412 PR bootstrap/50461
2413 * configure.ac (mpfr-dir): When using in-tree MPFR sources
2414 allow for the fact that from release v3.1.0 of MPFR the source
2415 files were moved into a src sub-directory.
2416 * configure: Regenerate.
2417
2418 2012-05-07 Janne Blomqvist <jb@gcc.gnu.org>
2419
2420 * configure.ac: Bump minimum MPFR version to 2.4.0.
2421 * configure: Regenerated.
2422
2423 2012-05-01 Richard Henderson <rth@redhat.com>
2424
2425 * Makefile.def (libatomic): New target_module.
2426 * configure.ac (target_libraries): Add libatomic.
2427 (noconfigdirs): Check if libatomic is supported.
2428 * Makefile.in, configure: Rebuild.
2429
2430 2012-05-15 H.J. Lu <hongjiu.lu@intel.com>
2431
2432 Merge upstream change
2433 * libtool.m4 (_LT_ENABLE_LOCK): Support x32.
2434
2435 2011-11-21 Andreas Tobler <andreast@fgznet.ch>
2436
2437 * libtool.m4: Additional FreeBSD 10 fixes.
2438
2439 2012-06-28 Christophe Lyon <christophe.lyon@st.com>
2440
2441 * configure.ac (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Make sure
2442 they contain -O2.
2443 * configure: Regenerate.
2444
2445 2012-05-14 Catherine Moore <clm@codesourcery.com>
2446
2447 * NEWS: Mention PowerPC VLE port.
2448
2449 2012-05-11 Mike Frysinger <vapier@gentoo.org>
2450
2451 * MAINTAINERS (config/): Move to intl/ section.
2452 (compile; depcomp; install-sh; missing; ylwrap): Likewise.
2453
2454 2012-05-09 Nick Clifton <nickc@redhat.com>
2455 Paul Smith <psmith@gnu.org>
2456
2457 PR bootstrap/50461
2458 * configure.ac (mpfr-dir): When using in-tree MPFR sources
2459 allow for the fact that from release v3.1.0 of MPFR the source
2460 files were moved into a src sub-directory.
2461 * configure: Regenerate.
2462
2463 2012-05-02 Roland McGrath <mcgrathr@google.com>
2464
2465 * configure.ac (ENABLE_GOLD): Consider *-*-nacl* targets ELF.
2466 * configure: Regenerate.
2467
2468 2012-04-25 Joel Brobecker <brobecker@adacore.com>
2469
2470 * config.sub: Update to 2012-04-18 version from official repo.
2471
2472 2012-03-19 Tristan Gingold <gingold@adacore.com>
2473
2474 * configure.ac (ia64*-*-*vms*): Add support for ld.
2475 * configure: Regenerate.
2476
2477 2012-03-14 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2478
2479 * configure.ac (enable_libgomp): Remove *-*-irix6*.
2480 (unsupported_languages): Remove mips-sgi-irix6.*.
2481 (noconfigdirs): Don't add ${libgcj} for mips*-*-irix6*.
2482 (with_stabs): Remove.
2483 * configure: Regenerate.
2484
2485 2012-03-12 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2486
2487 * configure.ac (enable_libgomp): Remove *-*-osf*.
2488 (with_stabs): Remove alpha*-*-osf*.
2489 * configure: Regenerate.
2490
2491 2012-03-09 Jeff Johnston <jjohnstn@redhat.com>
2492
2493 * COPYING.NEWLIB: Modify DJ Delorie license to include
2494 modification rights in clause as permitted by DJ Delorie.
2495 * COPYING.LIBGLOSS: Ditto.
2496
2497 2012-03-09 Jeff Johnston <jjohnstn@redhat.com>
2498
2499 * COPYING.NEWLIB: Remove two unused licenses.
2500
2501 2012-03-05 Tristan Gingold <gingold@adacore.com>
2502
2503 * configure.ac: Enable gdb and readline for ia64*-*-*vms*.
2504 * configure: Regenerate.
2505
2506 2012-02-21 Joern Rennecke <joern.rennecke@embecosm.com>
2507
2508 * COPYING.NEWLIB: Add Adapteva notice.
2509 * COPYING.LIBGLOSS: Add Adapteva notice.
2510
2511 2011-12-18 Eric Botcazou <ebotcazou@adacore.com>
2512
2513 * configure: Regenerate.
2514
2515 2011-12-15 Jeff Johnston <jjohnstn@redhat.com>
2516
2517 * COPYING.LIBGLOSS: Add GPL with exception license.
2518
2519 2011-11-09 Roland McGrath <mcgrathr@google.com>
2520
2521 * configure.ac: Add tool checks for READELF and READELF_FOR_TARGET.
2522 * configure: Rebuild.
2523 * Makefile.def (flags_to_pass): Add READELF_FOR_TARGET.
2524 * Makefile.tpl (READELF, READELF_FOR_TARGET): New variables.
2525 (HOST_EXPORTS): Add READELF, READELF_FOR_TARGET.
2526 (BASE_FLAGS_TO_PASS): Add READELF_FOR_TARGET.
2527 (BASE_TARGET_EXPORTS, EXTRA_HOST_FLAGS, EXTRA_TARGET_FLAGS):
2528 Add READELF.
2529 * Makefile.in: Rebuild.
2530
2531 2011-11-08 Richard Henderson <rth@redhat.com>
2532
2533 * configure.ac: Test for libitm directory present first.
2534
2535 * configure.ac: Adjust srcdir for running libitm/configure.tgt.
2536
2537 * configure.ac: Test libitm/configure.tgt to disable libitm.
2538 * configure: Rebuild.
2539
2540 2011-11-02 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2541
2542 * Makefile.tpl (EXTRA_GCC_FLAGS): Remove LIBGCC2_CFLAGS,
2543 LIBGCC2_DEBUG_CFLAGS, LIBGCC2_INCLUDES.
2544 * Makefile.in: Regenerate.
2545
2546 2011-11-01 DJ Delorie <dj@redhat.com>
2547
2548 * configure.ac (rl78-*-*) New case.
2549 * configure: Regenerate.
2550
2551 2011-11-01 DJ Delorie <dj@redhat.com>
2552
2553 * config.sub: Update to version 2011-10-29 (added rl78)
2554
2555 2011-10-27 Nick Clifton <nickc@redhat.com>
2556
2557 * config.sub: Import these changes from the config project:
2558
2559 2011-10-08 Joern Rennecke <joern.rennecke@embecosm.com>
2560 Ben Elliston <bje@gnu.org>
2561
2562 * config.sub (epiphany): New.
2563
2564 2011-09-09 Linas Vepstas <linasvepstas@gmail.com>
2565 Ben Elliston <bje@gnu.org>
2566
2567 * config.sub (hexagon, hexagon-*): New.
2568
2569 2011-08-23 Roland McGrath <mcgrathr@google.com>
2570
2571 * config.sub: Rename 32eb to be32, 32el to le32, 64el to le64, and
2572 64eb to be64.
2573
2574 2011-08-16 Roland McGrath <mcgrathr@google.com>
2575
2576 * config.sub (32eb, 32el, 64eb, 64el): New (pseudo-)CPUs.
2577 (nacl): Grok as alias for 32el-unknown-nacl.
2578
2579 2011-08-19 Joel Brobecker <brobecker@adacore.com>
2580
2581 * src-release (GDB_SUPPORT_DIRS): Add 'cpu'.
2582
2583 2011-08-14 Yao Qi <yao@codesourcery.com>
2584
2585 Merge from gcc:
2586
2587 2011-08-14 Yao Qi <yao@codesourcery.com>
2588 * configure.ac (tic6x-*-*): Remove gdb from noconfigdirs.
2589 * configure: Regenerate.
2590
2591 2011-07-26 Ian Lance Taylor <iant@google.com>
2592
2593 Merge from gcc:
2594
2595 2011-07-26 Ian Lance Taylor <iant@google.com>
2596 * configure.ac: Set have_compiler based on whether gcc directory
2597 exists, rather than on whether gcc is in configdirs.
2598 * configure: Rebuild.
2599
2600 2011-07-20 David Edelsohn <dje.gcc@gmail.com>
2601 * Makefile.tpl (POSTSTAGE1_CONFIGURE_FLAGS): Add libsupc++ to
2602 link directories.
2603 * Makefile.in: Rebuild.
2604
2605 2011-07-20 Ian Lance Taylor <iant@google.com>
2606 PR bootstrap/49787
2607 * configure.ac: Move --enable-bootstrap handling earlier in file.
2608 If --enable-bootstrap and either --enable-build-with-cxx or
2609 --enable-build-poststage1-with-cxx, enable C++ automatically.
2610 * configure: Rebuild.
2611
2612 2011-07-19 Ian Lance Taylor <iant@google.com>
2613 * configure.ac: Add --enable-build-poststage1-with-cxx. If set,
2614 make C++ a boot_language. Set and substitute
2615 POSTSTAGE1_CONFIGURE_FLAGS.
2616 * Makefile.tpl (POSTSTAGE1_CONFIGURE_FLAGS): New variable.
2617 (STAGE[+id+]_CONFIGURE_FLAGS): Add $(POSTSTAGE1_CONFIGURE_FLAGS).
2618 * configure, Makefile.in: Rebuild.
2619
2620 2011-07-16 Jason Merrill <jason@redhat.com>
2621 * Makefile.def (language=c++): Add check-c++0x and
2622 check-target-libmudflap-c++.
2623 * Makefile.tpl (check-target-libmudflap-c++): New.
2624 * Makefile.in: Regenerate.
2625
2626 2011-07-16 Matthias Klose <doko@ubuntu.com>
2627 * Makefile.tpl (EXTRA_CONFIGARGS_LIBJAVA): Define.
2628 * Makefile.def (target_modules/libjava): Pass
2629 $(EXTRA_CONFIGARGS_LIBJAVA).
2630 * configure.ac: Pass --disable-static in EXTRA_CONFIGARGS_LIBJAVA,
2631 if not configured with --enable-static-libjava.
2632 * Makefile.in: Regenerate.
2633 * configure: Likewise.
2634
2635 2011-06-22 Hans-Peter Nilsson <hp@axis.com>
2636 PR regression/47836
2637 PR bootstrap/23656
2638 PR other/47733
2639 PR bootstrap/49247
2640 PR c/48825
2641 * configure.ac (target_libraries): Remove target-libiberty.
2642 Remove case-statement setting skipdirs=target-libiberty for
2643 multiple targets. Remove checking target_configdirs and
2644 removing target-libiberty but keeping target-libgcc if
2645 otherwise empty.
2646 * Makefile.def (target_modules): Don't add libiberty.
2647 (dependencies): Remove all traces of target-libiberty.
2648 * configure, Makefile.in: Regenerate.
2649
2650 2011-07-22 Jason Merrill <jason@redhat.com>
2651
2652 * Makefile.def (language=c++): Add check-c++0x and
2653 check-target-libmudflap-c++.
2654 * Makefile.tpl (check-target-libmudflap-c++): New.
2655 * Makefile.in: Regenerate.
2656
2657 2011-07-18 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2658
2659 * configure: Regenerate.
2660
2661 2011-07-07 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2662
2663 PR target/39150
2664 * configure.ac (i[3456789]86-*-solaris2*): Also accept
2665 x86_64-*-solaris2.1[0-9]*.
2666 * configure: Regenerate.
2667
2668 2011-06-13 Walter Lee <walt@tilera.com>
2669
2670 * configure.ac (tilepro-*-*) New case.
2671 (tilegx-*-*): Likewise.
2672 * configure: Regenerate.
2673
2674 2011-06-06 Nick Clifton <nickc@redhat.com>
2675
2676 * config.sub: Sync from upstream.
2677
2678 2011-05-08 Doug Kwan <dougkwan@google.com>
2679
2680 Merge from gcc:
2681
2682 2011-05-08 Doug Kwan <dougkwan@google.com>
2683
2684 * configure.ac: Propagate LDFLAGS_FOR_TARGET.
2685 * configure: Regenerated.
2686 * Makefile.tpl (LDFLAGS_FOR_TARGET): Use LDFLAGS_FOR_TARGET
2687 value from configure.
2688 * Makefile.in: Regenerated.
2689
2690 2011-05-05 Joseph Myers <joseph@codesourcery.com>
2691
2692 * configure.ac (alpha*-dec-osf*, i[[3456789]]86-*-rdos*,
2693 sh*-*-pe|mips*-*-pe|arm-wince-pe, sparc-*-sunos4*, *-*-aix*,
2694 *-*-beos*, *-*-chorusos, *-*-dragonfly*, *-*-freebsd*, *-*-linux*
2695 | *-*-gnu* | *-*-k*bsd*-gnu | *-*-kopensolaris*-gnu, *-*-lynxos*,
2696 *-*-mingw*, *-*-netbsd*, *-*-netware*, *-*-tpf*, *-*-uclinux*,
2697 *-*-vxworks*): Disable newlib and libgloss in separate case
2698 statement.
2699 (i[[3456789]]86-*-linux*): Move logic allowing newlib to be built
2700 to separate case statement.
2701 (*-*-chorusos, *-*-dragonfly*, *-*-freebsd*, *-*-netbsd*,
2702 *-*-netware*, *-*-tpf*, *-*-uclinux*, *-*-vxworks*,
2703 alpha*-dec-osf*, alpha*-*-linux*, am33_2.0-*-linux*, sh-*-linux*,
2704 sh*-*-pe|mips*-*-pe|*arm-wince-pe, arm-*-coff, arm-*-elf* |
2705 arm*-*-eabi*, arm*-*-linux-gnueabi, arm*-*-symbianelf*, avr-*-*,
2706 bfin-*-*, cris-*-* | crisv32-*-*, frv-*-*, i[[3456789]]86-*-coff |
2707 i[[3456789]]86-*-elf, i[[3456789]]86-w64-mingw*,
2708 i[[3456789]]86-*-mingw*, x86_64-*-mingw*,
2709 i[[3456789]]86-*-interix*, i[[3456789]]86-*-beos*,
2710 i[[3456789]]86-*-rdos*, m32r-*-*,
2711 m68hc11-*-*|m6811-*-*|m68hc12-*-*|m6812-*-*, m68k-*-elf*, m68*-*-*
2712 | fido-*-*, powerpc-*-aix*, powerpc-*-beos*, powerpc-*-eabi,
2713 powerpc-*-eabi* | powerpcle-*-eabi* | powerpc-*-rtems*,
2714 rs6000-*-lynxos*, rs6000-*-aix*, mips*-*-linux*, sparclet-*-aout*
2715 | sparc86x-*-*, sparc-*-elf*, sparc64-*-elf*, sparclite-*-*,
2716 sparc-*-sunos4*, sparc-*-solaris* | sparc64-*-solaris* |
2717 sparcv9-*-solaris*, *-*-linux* | *-*-gnu* | *-*-k*bsd*-gnu |
2718 *-*-kopensolaris*-gnu, *-*-lynxos*, *-*-*): Don't disable newlib
2719 and libgloss in main case over targets. Remove most empty cases
2720 in main case over targets.
2721 * configure: Regenerate.
2722
2723 2011-05-04 Joseph Myers <joseph@codesourcery.com>
2724
2725 * configure.ac: Remove code setting special library locations for
2726 hppa*64*-*-hpux11*. Remove code setting compiler for
2727 sparc-sun-solaris2*.
2728 * configure: Regenerate.
2729
2730 2011-05-04 Joseph Myers <joseph@codesourcery.com>
2731
2732 * configure.ac: Separate libgloss_dir settings from general case
2733 over targets.
2734 * configure: Regenerate.
2735
2736 2011-04-28 Joseph Myers <joseph@codesourcery.com>
2737
2738 * configure.ac (*-*-dragonfly*, *-*-freebsd*, *-*-netbsd*,
2739 alpha*-dec-osf*, alpha*-*-linux*, alpha*-*-*, sh-*-linux*,
2740 arm-*-elf* | arm*-*-eabi*, arm*-*-linux-gnueabi, frv-*-*): Remove
2741 cases in libgcj-disabling case statement.
2742 (hppa*64*-*-linux*): Set unsupported_languages instead of
2743 disabling target-zlib.
2744 (hppa*64*-*-*): Restrict case in libgcj-disabling case statement
2745 to hppa*64*-*-hpux*.
2746 (hppa*-*-*): Restrict case in libgcj-disabling case statement to
2747 hppa*-*-hpux*.
2748 (ia64*-*-elf*, ia64*-**-hpux*, i[[3456789]]86-*-elf,
2749 i[[3456789]]86-*-linux*, *-*-cygwin*, i[[3456789]]86-*-interix*,
2750 i[[3456789]]86-*-solaris2*, m32r-*-*, m68k-*-elf*, m68*-*-* |
2751 fido-*-*, powerpc-*-eabi, powerpc-*-eabi* | powerpcle-*-eabi* |
2752 powerpc-*-rtems*, mips*-*-linux*, mips*-*-*, sh-*-* | sh64-*-*,
2753 sparc-*-elf*, sparc64-*-elf*, sparc-*-solaris* |
2754 sparc64-*-solaris* | sparcv9-*-solaris*, *-*-linux* | *-*-gnu* |
2755 *-*-k*bsd*-gnu | *-*-kopensolaris*-gnu, *-*-*): Remove cases in
2756 libgcj-disabling case statement.
2757 * configure: Regenerate.
2758
2759 2011-04-28 Joseph Myers <joseph@codesourcery.com>
2760
2761 * configure.ac: Disable Java for targets not supporting libffi.
2762 (*-*-chorusos, *-*-kaos*, am33_2.0-*-linux*, sh*-*-pe|mips*-*-pe):
2763 Remove cases in Java-disabling statement.
2764 (*arm-wince-pe): Change to arm-wince-pe.
2765 (arc-*-*, arm-*-coff, arm-*-pe*, arm-*-riscix*, avr-*-*): Remove
2766 cases in Java-disabling statement.
2767 (bfin-*-*): Don't disable Java again.
2768 (c4x-*-* | tic4x-*-*, tic54x-*-*, cr16-*-*, d10v-*-*, d30v-*-*,
2769 fr30-*-elf*, moxie-*-*, h8300*-*-*, h8500-*-*, hppa1.1-*-osf* |
2770 hppa1.1-*-bsd*, hppa*-*-*elf* | hppa*-*-lites* | hppa*-*-openbsd*,
2771 hppa*-*-pro*, i960-*-*, i[[3456789]]86-*-coff,
2772 i[[3456789]]86-*-pe, i[[3456789]]86-*-sco3.2v5*,
2773 i[[3456789]]86-*-sco*, i[[3456789]]86-*-sysv4*,
2774 i[[3456789]]86-*-beos*, i[[3456789]]86-*-rdos*,
2775 m68hc11-*-*|m6811-*-*|m68hc12-*-*|m6812-*-*): Remove cases in
2776 Java-disabling statement.
2777 (mmix-*-*): Don't disable Java again.
2778 (mt-*-*, powerpc*-*-winnt* | powerpc*-*-pe*, powerpcle-*-solaris*,
2779 powerpc-*-beos*, rs6000-*-lynxos*, rs6000-*-*, m68k-apollo-*,
2780 microblaze*, mips*-sde-elf*, mips*-*-irix5*, mips*-*-bsd*,
2781 sparclet-*-aout* | sparc86x-*-*, sparclite-*-*, sparc-*-sunos4*,
2782 tic6x-*-*, v810-*-*, vax-*-*): Remove cases in Java-disabling
2783 statement.
2784 * configure: Regenerate.
2785
2786 2011-04-28 Joseph Myers <joseph@codesourcery.com>
2787
2788 Merge from GCC:
2789
2790 2011-04-18 Jack Howarth <howarth@bromo.med.uc.edu>
2791
2792 PR lto/48086
2793 * configure.ac: Re-enable LTO on *-apple-darwin9*.
2794 * configure: Regenerate.
2795
2796 2011-04-28 Joseph Myers <joseph@codesourcery.com>
2797
2798 * configure.ac: Separate cases disabling Java and Java libraries
2799 from general case over targets.
2800 * configure: Regenerate.
2801
2802 2011-04-06 Joseph Myers <joseph@codesourcery.com>
2803
2804 * configure.ac (build_tools): Remove build-byacc.
2805 (host_libs): Remove mmalloc.
2806 (host_tools): Remove byacc make patch prms send-pr ash bash bzip2
2807 autoconf automake libtool diff rcs fileutils shellutils time
2808 textutils wdiff find uudecode hello tar gzip indent recode release
2809 sed perl gawk findutils gettext zip.
2810 (libgcj): Remove target-qthreads.
2811 (target_tools): Remove target-examples target-gperf.
2812 (YACC): Don't handle building byacc.
2813 * configure: Regenerate.
2814 * Makefile.def (ash, autoconf, automake, bash, byacc, bzip2, diff,
2815 dosutils, examples, fileutils, find, findutils, gawk, gettext,
2816 gnuserv, gperf, gzip, hello, indent, libtool, make, mmalloc,
2817 patch, perl, prms, qthreads, rcs, recode, release, sed, send-pr,
2818 shellutils, tar, textutils, time, uudecode, wdiff, zip): Don't
2819 handle building components.
2820 * Makefile.in: Regenerate.
2821
2822 2011-04-05 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
2823
2824 * config.sub: Sync from upstream.
2825
2826 2011-04-01 Joseph Myers <joseph@codesourcery.com>
2827
2828 * configure.ac (avr-*-*): Add comment about why libssp is disabled.
2829 (microblaze*): Don't disable libssp.
2830 * configure: Regenerate.
2831
2832 2011-04-01 Joseph Myers <joseph@codesourcery.com>
2833
2834 * configure.ac: Remove code setting CONFIG_SHELL, config_shell and
2835 moveifchange.
2836 * configure: Regenerate.
2837 * Makefile.tpl: Use @SHELL@ not @config_shell@.
2838 * Makefile.in: Regenerate.
2839
2840 2011-04-01 Joseph Myers <joseph@codesourcery.com>
2841
2842 * configure.ac (*-*-sysv4*): Don't enable libgomp.
2843 (alpha*-*-*vms*, i[[34567]]86-*-sco3.2v5*, mn10300-*-*,
2844 powerpc-*-chorusos*, powerpc*-*-eabi*, powerpc*-*-sysv*,
2845 powerpc*-*-kaos*, s390x-ibm-tpf*, sparc64-*-elf*, v850*-*-*,
2846 xtensa*-*-elf*, *-*-beos*, *-*-elf*, *-*-netware*, *-*-rtems*,
2847 *-*-sysv[[45]]*, *-*-vxworks*, *-wrs-windiss): Remove
2848 md_exec_prefix cases.
2849 * configure: Regenerate.
2850
2851 2011-04-01 Joseph Myers <joseph@codesourcery.com>
2852
2853 * configure.ac: Separate cases disabling target-libssp,
2854 target-libiberty, target-libstdc++-v3 and Fortran from general
2855 case over targets.
2856 * configure: Regenerate.
2857
2858 2011-04-01 Joseph Myers <joseph@codesourcery.com>
2859
2860 * configure.ac (*-*-chorusos): Don't disable libgcj.
2861 (*-*-freebsd[[12]] | *-*-freebsd[[12]].* | *-*-freebsd*aout*):
2862 Remove case.
2863 (*-*-kaos*): Don't disable GCC libraries, zlib or fastjar.
2864 (arm-*-coff): Don't disable libgcj.
2865 (arm*-*-linux-gnueabi): Remove useless assignment.
2866 (arm-*-riscix*): Don't disable libgcj.
2867 (bfin-*-*): Don't enable target-bsp and target-cygmon depending on
2868 configuration.
2869 (c4x-*-* | tic4x-*-*): Don't disable GCC libraries.
2870 (c54x*-*-*): Remove case.
2871 (tic54x-*-*): Don't disable GCC or GCC libraries.
2872 (cris-*-* | crisv32-*-*): Don't handle *-*-aout. Change *-*-elf
2873 to *.
2874 (d10v-*-*): Don't disable GCC libraries.
2875 (d30v-*-*): Don't disable libgcj.
2876 (h8500-*-*): Don't disable GCC libraries.
2877 (i960-*-*): Don't disable libgcj.
2878 (i[[3456789]]86-*-linux*): Don't handle *-*-*libc1*.
2879 (i[[3456789]]86-*-sco3.2v5*, i[[3456789]]86-*-sco*,
2880 i[[3456789]]86-*-sysv4*, i[[3456789]]86-*-beos*): Don't disable
2881 libgcj.
2882 (m68k-*-coff*): Remove case.
2883 (mmix-*-*): Don't disable libgloss on host.
2884 (mn10200-*-*, mn10300-*-*): Remove cases.
2885 (powerpc*-*-winnt* | powerpc*-*-pe*, powerpcle-*-solaris*,
2886 powerpc-*-beos*, m68k-apollo-*, mips*-*-irix5*, mips*-*-bsd*):
2887 Don't disable libgcj.
2888 (romp-*-*): Remove case.
2889 (sparclite-*-*, sparc-*-sunos4*): Don't disable libgcj.
2890 (sparc-*-solaris2.[[0-6]] | sparc-*-solaris2.[[0-6]].*): Remove
2891 case.
2892 (v810-*-*): Don't disable GCC libraries.
2893 (v850*-*-*, vax-*-vms, xtensa*-*-*): Remove cases.
2894 (ip2k-*-*): Don't disable GCC libraries.
2895 * configure: Regenerate.
2896
2897 2011-03-28 Joseph Myers <joseph@codesourcery.com>
2898
2899 * configure.ac (i[[3456789]]86-*-msdosdjgpp*): Don't disable
2900 libffi on host.
2901 (x86_64-*-mingw*, i[[3456789]]86-*-mingw32*): Don't disable newlib
2902 on host.
2903 (c54x*-*-* | tic54x-*-*): Don't disable newlib on host.
2904 * configure: Regenerate.
2905
2906 2011-03-26 John Marino <binutils@marino.st>
2907
2908 * configure.ac: Add support for *-*-dragonfly*
2909 * configure: Regenerate.
2910
2911 2011-03-25 Joseph Myers <joseph@codesourcery.com>
2912
2913 * configure.ac (native_only): Remove.
2914 (i[[3456789]]86-*-msdosdjgpp*): Don't disable expect dejagnu
2915 send-pr uudecode guile gnuserv on host.
2916 (x86_64-*-mingw*): Don't disable expect dejagnu autoconf automake
2917 send-pr rcs guile perl texinfo libtool on host.
2918 (i[[3456789]]86-*-mingw32*): Don't disable expect dejagnu autoconf
2919 automake send-pr rcs guile perl texinfo libtool on host.
2920 (*-*-cygwin*, *-*-netbsd*): Remove host cases.
2921 (*-*-kaos*): Don't disable target-examples target-gperf on target.
2922 (alpha*-dec-osf*): Don't disable fileutils on target.
2923 (sh*-*-pe|mips*-*-pe|*arm-wince-pe): Don't disable target-examples
2924 texinfo send-pr expect dejagnu on target.
2925 (arm-*-elf* | arm*-*-eabi*, arm*-*-linux-gnueabi): Don't disable
2926 target-qthreads on target.
2927 (hppa*-hp-hpux11*, hppa*-*-*): Don't disable shellutils on target.
2928 (ia64*-*-elf*, ia64*-*-*vms*): Don't disable mmalloc on target.
2929 (i[[3456789]]86-w64-mingw*, i[[3456789]]86-*-mingw*,
2930 x86_64-*-mingw*): Don't disable expect on target.
2931 (*-*-cygwin*): Don't disable target-gperf on target.
2932 (powerpc*-*-winnt* | powerpc*-*-pe*): Don't disable make expect
2933 gnuserv on target.
2934 (powerpcle-*-solaris*): Don't disable make expect gnuserv on
2935 target.
2936 * configure: Regenerate.
2937
2938 2011-03-25 Joseph Myers <joseph@codesourcery.com>
2939
2940 * configure.ac (target_tools): Remove target-groff.
2941 (native_only): Remove target-groff.
2942 (hppa*64*-*-*): Don't disable byacc.
2943 (i[[3456789]]86-*-mingw32*): Remove commented-out noconfigdirs
2944 setting.
2945 (*-*-kaos*): Don't skip target-librx and target-groff.
2946 (*-*-netware*): Don't skip target-libmudflap.
2947 (*-*-tpf*): Don't skip target-libmudflap.
2948 (sh*-*-pe|mips*-*-pe|*arm-wince-pe): Don't condition configured
2949 directories on the host.
2950 (ia64*-*-*vms*): Don't skip tix.
2951 (sh-*-* | sh64-*-*): Don't condition skipped directories on the
2952 host.
2953 * configure: Regenerate.
2954
2955 2011-03-24 Paolo Bonzini <pbonzini@redhat.com>
2956
2957 * configure.ac: Remove references to mt-mep, mt-netware,
2958 mt-wince.
2959 * Makefile.def: Add all-utils soft dependencies.
2960 * Makefile.tpl: Remove GDB_NLM_DEPS.
2961 * configure: Regenerate.
2962 * Makefile.in: Regenerate.
2963
2964 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2965
2966 Sync from GCC:
2967
2968 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2969
2970 * configure.ac: Do not include mh-x86omitfp.
2971 * configure: Regenerate.
2972
2973 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2974
2975 * configure.ac: Remove empty cases.
2976 * configure: Regenerate.
2977
2978 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2979
2980 * Makefile.def: Add dependency from termcap to gdb.
2981 * Makefile.in: Regenerate.
2982
2983 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2984
2985 * configure.ac: Remove all mentions of mh-sysv4 and mh-solaris.
2986 * configure: Regenerate.
2987 * Makefile.def: Remove all mentions of X11_FLAGS_TO_PASS.
2988 * Makefile.tpl: Likewise.
2989 * Makefile.in: Regenerate.
2990
2991 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2992
2993 * configure.ac: Remove all mentions of tentative_cc.
2994 * configure: Regenerate.
2995
2996 2011-03-16 Jack Howarth <howarth@bromo.med.uc.edu>
2997
2998 PR lto/48086
2999 * configure.ac: Re-enable LTO on *-apple-darwin9.
3000 * configure: Regenerate.
3001
3002 2011-03-24 Joseph Myers <joseph@codesourcery.com>
3003
3004 * configure.ac (i[[3456789]]86-*-vsta, i[[3456789]]86-*-go32*,
3005 i[[3456789]]86-*-beos*, powerpc-*-beos*, m68k-hp-hpux*,
3006 m68k-apollo-sysv*, m68k-apollo-bsd*, m88k-dg-dgux*,
3007 m88k-harris-cxux*, m88k-motorola-sysv*, mips*-dec-ultrix*,
3008 mips*-nec-sysv4*, mips*-sgi-irix4*, mips*-*-sysv4*, mips*-*-sysv*,
3009 i370-ibm-opened*, i[[3456789]]86-*-sysv5*, i[[3456789]]86-*-dgux*,
3010 i[[3456789]]86-ncr-sysv4.3*, i[[3456789]]86-ncr-sysv4*,
3011 i[[3456789]]86-*-sco3.2v5*, i[[3456789]]86-*-sco*,
3012 i[[3456789]]86-*-udk*, vax-*-ultrix2*, m68k-sun-sunos*,
3013 hppa*-*-hiux*, *-*-hiux*, rs6000-*-lynxos*, *-*-sysv4*,
3014 *-*-rhapsody*): Remove host cases.
3015 * configure: Regenerate.
3016
3017 2011-03-24 Joseph Myers <joseph@codesourcery.com>
3018
3019 * configure.ac (ppc*-*-pe): Remove host case.
3020 (strongarm-*-coff | xscale-*-coff, strongarm-*-elf* |
3021 xscale-*-elf*, thumb-*-coff, thumb-*-elf, thumb-*-pe, ep9312-*-elf
3022 | ep9312-*-coff, parisc*64*-*-linux*, ppc*-*-pe): Remove target
3023 cases.
3024 * configure: Regenerate.
3025
3026 2011-03-24 Joseph Myers <joseph@codesourcery.com>
3027
3028 * config.sub: Update to version 2011-03-23.
3029
3030 2011-03-22 Joseph Myers <joseph@codesourcery.com>
3031
3032 * configure.ac (arm-semi-aof, crx-*-*, parisc*-*-linux*,
3033 i370-*-opened*, i[[3456789]]86-moss-msdos | i[[3456789]]86-*-moss*
3034 | i[[3456789]]86-*-uwin*, mcore-*-pe*): Remove empty cases.
3035 * configure: Regenerate.
3036
3037 2011-03-22 Joseph Myers <joseph@codesourcery.com>
3038
3039 * config-ml.in: Don't handle arc-*-elf*.
3040 * configure.ac (arc-*-*, crx-*-*, i[[3456789]]86-*-pe,
3041 m68hc11-*-*|m6811-*-*|m68hc12-*-*|m6812-*-*, mcore-*-pe*): Don't
3042 handle GCC libraries.
3043 * configure: Regenerate.
3044
3045 2011-03-21 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3046
3047 PR bootstrap/48120:
3048 * configure.ac (pwllib): Use LIBS instead of LDFLAGS.
3049 Add -lstdc++ -lm to LIBS.
3050 * configure: Regenerate.
3051
3052 2011-03-18 David Edelsohn <dje.gcc@gmail.com>
3053
3054 * config.guess: Update to version 2011-02-02
3055 * config.sub: Update to version 2011-02-24
3056
3057 2011-03-03 Sebastian Pop <sebastian.pop@amd.com>
3058
3059 * configure.ac: Adjust test of with_ppl.
3060 * configure: Regenerated.
3061
3062 2011-03-02 Sebastian Pop <sebastian.pop@amd.com>
3063
3064 * configure.ac: Add -lpwl to ppllibs.
3065 * config/cloog.m4: Add -lisl to clooglibs.
3066 * configure: Regenerated.
3067
3068 2011-02-13 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3069
3070 Import from Libtool and gnulib:
3071
3072 2011-01-27 Gerald Pfeifer <gerald@pfeifer.com>
3073
3074 Prepare for supporting FreeBSD 10.
3075 * config.rpath: Remove handling of freebsd1* which soon would
3076 match FreeBSD 10.0.
3077
3078 2011-01-20 Gerald Pfeifer <gerald@pfeifer.com> (tiny change)
3079
3080 Remove support for FreeBSD 1.x.
3081 * libtool.m4 (_LT_LINKER_SHLIBS)
3082 (_LT_SYS_DYNAMIC_LINKER): Remove handling of freebsd1* which
3083 soon would incorrectly match FreeBSD 10.0.
3084
3085 2011-02-12 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3086
3087 PR binutils/12283
3088 * MAINTAINERS (mkinstalldirs): Comes from Automake.
3089 (move-if-change): Comes from gnulib.
3090 * move-if-change: Import version from gnulib.
3091
3092 2011-02-12 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3093
3094 Sync from GCC:
3095
3096 2011-02-12 Alexandre Oliva <aoliva@redhat.com>
3097
3098 PR lto/47225
3099 * Makefile.def (lto-plugin): Double dash for enable-shared.
3100 (configure-gcc): Depend on all-lto-plugin.
3101 * Makefile.in: Rebuilt.
3102
3103 2011-02-11 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3104
3105 * configure.ac: Remove extra bracket.
3106 * configure: Regenerate.
3107
3108 2011-02-06 Kai Tietz <kai.tietz@onevision.com>
3109
3110 PR lto/47225
3111 * Makefile.def: Add dependency for install-gcc
3112 on install-lto-plugin.
3113 * Makfile.in: Regenerated
3114
3115 2011-01-25 Jakub Jelinek <jakub@redhat.com>
3116
3117 * configure.ac: If with_ppl is no, move setting with_cloog=no
3118 after CLOOG_REQUESTED check.
3119 * configure: Regenerated.
3120
3121 2011-01-25 Sebastian Pop <sebastian.pop@amd.com>
3122
3123 * configure.ac: Call AC_MSG_ERROR when PPL 0.11 is not present and
3124 CLooG has been requested.
3125 * configure: Regenerated.
3126
3127 2011-01-25 Sebastian Pop <sebastian.pop@amd.com>
3128
3129 * configure: Regenerated.
3130 * configure.ac: Check for version 0.11 (or later revision) of PPL.
3131
3132 2011-01-25 Tobias Grosser <grosser@fim.uni-passau.de>
3133
3134 * configure: Regenerated.
3135 * configure.ac: Use CLOOG_CHECK_VERSION(0,16,1).
3136
3137 2011-01-07 Jan Hubicka <jh@suse.cz>
3138
3139 PR lto/47225
3140 * Makefile.in: Regenerate.
3141 * Makefile.def (lto-plugin): Always pass enable-shared to the plugin
3142 configure.
3143
3144 2011-01-31 Alexandre Oliva <aoliva@redhat.com>
3145
3146 PR libgcj/44341
3147 * configure.ac: Discard --with-* flags for host when configuring
3148 target libraries for cross build.
3149 * configure: Rebuilt.
3150
3151 2011-01-21 Andreas Schwab <schwab@redhat.com>
3152
3153 Sync from GCC:
3154
3155 2011-01-21 Andreas Schwab <schwab@redhat.com>
3156
3157 * configure.ac: Use AS_HELP_STRING throughout.
3158 * configure: Regenerate.
3159
3160 2011-01-18 Jie Zhang <jie.zhang@analog.com>
3161
3162 * configure.ac (bfin-*-*): Remove gdb from noconfigdirs.
3163 * configure: Regenerate.
3164
3165 2010-12-10 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
3166
3167 * ltmain.sh (relink): Use absolute path when hardcoding with -L.
3168
3169 2011-01-13 Joel Brobecker <brobecker@adacore.com>
3170
3171 * configure.ac: Remove readline, mmalloc, and gdb from noconfigdirs
3172 for ia64-hpux.
3173 * configure: Regenerate.
3174
3175 2011-01-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3176
3177 Sync from GCC:
3178 2010-12-22 Hariharan Sandanagobalane <hariharan@picochip.com>
3179
3180 * configure.ac: (picochip): Disable libiberty.
3181 * configure: Regenerate.
3182
3183 2010-12-18 Jeff Johnston <jjohnstn@redhat.com>
3184
3185 * COPYING.LIBGLOSS: Remove the GPL for fr30 target.
3186
3187 2010-12-10 Ian Lance Taylor <iant@google.com>
3188
3189 PR bootstrap/46819
3190 * configure.ac: For --disable-libgcj clear libgcj_saved.
3191 * configure: Rebuild.
3192
3193 2010-12-10 Tobias Burnus <burnus@net-b.de>
3194
3195 PR fortran/46540
3196 * configure.ac: Add --disable-libquadmath and
3197 --disable-libquadmath-support.
3198 * configure: Regenerate.
3199
3200 2010-12-10 Tristan Gingold <gingold@adacore.com>
3201
3202 * src-release (ETC_SUPPORT): add gnu-oids.texi
3203
3204 2010-12-03 Hans-Peter Nilsson <hp@axis.com>
3205
3206 PR libffi/46792
3207 * configure.ac (cris-*-elf, crisv32-*-elf): Disable target-libffi.
3208 * configure: Regenerate.
3209
3210 2010-12-02 Ian Lance Taylor <iant@google.com>
3211
3212 * configure.ac: Always set default for poststage1_ldflags to
3213 -static-libstdc++ -static-libgcc.
3214
3215 2010-12-02 Jeff Johnston <jjohnstn@redhat.com>
3216
3217 * COPYING.NEWLIB: Add National Semiconductor notice.
3218
3219 2010-11-29 Andreas Schwab <schwab@redhat.com>
3220
3221 * configure.ac: Move comment to remove extra space in last argument
3222 of GCC_TARGET_TOOL.
3223
3224 2010-11-26 Alexandre Oliva <aoliva@redhat.com>
3225
3226 PR other/46026
3227 * configure.ac (CXX_FOR_TARGET): Add -funconfigured-libstdc++-v3.
3228 * Makefile.def (CXX_FOR_TARGET): Removed from flags_to_pass.
3229 * Makefile.tpl (CXX_FOR_TARGET_FLAG_TO_PASS): New.
3230 (BASE_FLAGS_TO_PASS): Use it.
3231 * configure: Rebuilt.
3232 * Makefile.in: Rebuilt.
3233
3234 2010-11-23 H.J. Lu <hongjiu.lu@intel.com>
3235
3236 PR binutils/12258
3237 * configure.ac: Correct comments for --enable-gold/--enable-ld.
3238 Properly check default linker.
3239 * configure: Regnerated.
3240
3241 2010-11-23 Matthias Klose <doko@ubuntu.com>
3242
3243 * configure.ac: For --enable-gold, handle value `default' instead of
3244 `both*'. New configure option --{en,dis}able-ld.
3245 * configure: Regenerate.
3246
3247 2010-11-20 Ian Lance Taylor <iant@google.com>
3248
3249 * configure.ac: Only disable a language library if no language needs
3250 it. Don't let --disable-libgcj uncondtionally disable libffi.
3251 * configure: Rebuild.
3252
3253 2010-11-20 Paolo Bonzini <bonzini@gnu.org>
3254
3255 * configure: Regenerate.
3256
3257 2010-11-20 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3258
3259 PR other/46202
3260 * configure.ac: Fix just-built in-tree STRIP name to be
3261 binutils/strip-new.
3262 * configure: Regenerate.
3263 * Makefile.def (install-strip-gcc, install-strip-binutils)
3264 (install-strip-opcodes, install-strip-ld, install-strip-itcl)
3265 (install-strip-sid): Mirror dependencies on non-strip variants
3266 of these targets on the respective -strip prerequisites.
3267 * Makefile.tpl (install-strip, install-strip-host)
3268 (install-strip-target): New targets.
3269 (install-strip-[+module+], install-strip-target-[+module+]):
3270 New targets.
3271 * Makefile.in: Regenerate.
3272
3273 2010-11-19 Ian Lance Taylor <iant@google.com>
3274 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3275
3276 * configure.ac: Add target-libgo to target_libraries. Set
3277 and substitute GOC_FOR_BUILD and GOC_FOR_TARGET.
3278 * Makefile.tpl (BUILD_EXPORTS): Add GOC and GOCFLAGS.
3279 (HOST_EXPORTS): Add GOC.
3280 (BASE_TARGET_EXPORTS): Add GOC.
3281 (GOC_FOR_BUILD, GOCFLAGS, GOC_FOR_TARGET): New variables.
3282 (GOCFLAGS_FOR_TARGET): New variable.
3283 (EXTRA_HOST_FLAGS): Add GOC.
3284 (EXTRA_TARGET_FLAGS): Add GOC and GOCFLAGS.
3285 * Makefile.def (target_modules): Add libgo.
3286 (flags_to_pass): Add GOC_FOR_TARGET and GOCFLAGS_FOR_TARGET.
3287 (dependencies): Add dependency from configure-target-libgo to
3288 configure-target-libffi and all-target-libstdc++-v3. Add
3289 dependencies from all-target-libgo to all-target-libffi.
3290 (languages): Add go.
3291 * configure: Rebuild.
3292 * Makefile.in: Rebuild.
3293
3294 2010-11-19 Ian Lance Taylor <iant@google.com>
3295
3296 * config-ml.in: Add Go support: treat GOC and GOCFLAGS like other
3297 compiler/flag environment variables.
3298
3299 2010-11-18 Ian Lance Taylor <iant@google.com>
3300
3301 * configure.ac: Check for lang_requires_boot_languages in
3302 config-lang.in files.
3303 * configure: Rebuild.
3304
3305 2010-11-17 Mike Frysinger <vapier@gentoo.org>
3306
3307 * .gitignore: New file.
3308
3309 2010-11-16 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
3310 Tobias Burnus <burnus@net-b.de>
3311
3312 PR fortran/32049
3313 * Makefile.def: Add libquadmath; build it with language=fortran.
3314 * configure.ac: Add libquadmath.
3315 * Makefile.tpl: Handle multiple libs in check-[+language+].
3316 * Makefile.in: Regenerate.
3317 * configure: Regenerate.
3318
3319 2010-11-15 Andreas Schwab <schwab@redhat.com>
3320
3321 * configure.ac: Fix spelling in option names.
3322 * configure: Regenerated.
3323
3324 2010-11-13 Georg-Johann Lay <georgjohann@web.de>
3325
3326 PR bootstrap/39622
3327 * configure.ac (FLAGS_FOR_TARGET): Add include-fixed path.
3328 * configure: Regenerated.
3329
3330 2010-11-12 Tobias Grosser <grosser@fim.uni-passau.de>
3331
3332 * config/cloog.m4: Add -enable-cloog-backend=(isl|ppl|ppl-legacy) to
3333 define the cloog backend to use. Furthermore, only pass the ppllibs to
3334 the configure checks, if necessary.
3335 * configure: Regenerate.
3336
3337 2010-11-12 Tobias Grosser <grosser@fim.uni-passau.de>
3338
3339 * config/cloog.m4: Use CLooG predefined macro to check for CLooG PPL.
3340 * configure: regenerate
3341
3342 2010-11-12 Tobias Grosser <grosser@fim.uni-passau.de>
3343
3344 * config/cloog.m4: Fix typo. verison -> version.
3345 * configure: Regenerate.
3346
3347 2010-11-12 Tobias Grosser <grosser@fim.uni-passau.de>
3348
3349 * config/cloog.m4: Pass ppl libraries to the CLooG version check.
3350 * configure: Regenerate.
3351
3352 2010-11-11 Andreas Simbuerger <simbuerg@fim.uni-passau.de>
3353
3354 * configure.ac: Support official CLooG.org versions.
3355 * configure: Regenerate.
3356 * config/cloog.m4: New.
3357
3358 2010-11-05 Michael Eager <eager@eagercon.com>
3359
3360 * COPYING.LIBGLOSS: Correct typo in microblaze.
3361 * COPYING.NEWLIB: Same.
3362
3363 2010-11-04 Iain Sandoe <iains@gcc.gnu.org>
3364
3365 * configure.ac (*-*-darwin*): Use mh-darwin for all Darwin variants.
3366 * configure: Regenerate.
3367
3368 2010-11-03 Ian Lance Taylor <iant@google.com>
3369 Dave Korn <dave.korn.cygwin@gmail.com>
3370
3371 PR lto/46273
3372 * configure.ac: Remove libelf tests. Build lto-plugin on ELF always
3373 and on other supported platforms whenever LTO is enabled.
3374 * configure: Rebuild.
3375
3376 2010-11-02 Alan Modra <amodra@gmail.com>
3377
3378 PR binutils/12110
3379 * configure.ac: Error when source path contains spaces.
3380 * configure: Regenerate.
3381
3382 2010-10-20 Ian Lance Taylor <iant@google.com>
3383
3384 * Makefile.def (target_modules): Set lib_path to src/.libs for
3385 libstdc++-v3 module.
3386 * Makefile.tpl: Fix typo in TARGET_LIB_PATH comment.
3387 * Makefile.in: Rebuild.
3388
3389 2010-10-08 Bernd Schmidt <bernds@codesourcery.com>
3390 Joseph Myers <joseph@codesourcery.com>
3391
3392 * COPYING.LIBGLOSS: Add National Semiconductor and CodeSourcery
3393 notices.
3394 * COPYING.NEWLIB: Add Texas Instruments notice.
3395
3396 2010-10-07 Dave Korn <dave.korn.cygwin@gmail.com>
3397
3398 * configure.ac (build_lto_plugin): New shell variable.
3399 (--enable-lto): Turn on by default for all non-ELF platforms that
3400 have had LTO support added so far. Set build_lto_plugin appropriately
3401 for both ELF and non-ELF.
3402 (configdirs): Add lto-plugin or not based on build_lto_plugin.
3403 * configure: Regenerate.
3404
3405 2010-10-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3406
3407 PR bootstrap/45326
3408 PR bootstrap/45174
3409 * configure.ac: Honor initial values of $build_configargs,
3410 $host_configargs, $target_configargs. Mark the precious, so
3411 environment settings get recorded.
3412 * configure: Regenerate.
3413
3414 2010-10-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3415
3416 Sync from GCC:
3417
3418 2010-09-30 Michael Eager <eager@eagercon.com>
3419
3420 * configure.ac (microblaze): Add target-libssp to noconfigdirs.
3421 * configure: Regenerate.
3422
3423 2010-09-21 Iain Sandoe <iains@gcc.gnu.org>
3424
3425 * configure.ac (enable-lto): Add Darwin to the list of supported lto
3426 targets and amend comment.
3427 * configure: Regenerate.
3428
3429 2010-09-03 Jack Howarth <howarth@bromo.med.uc.edu>
3430
3431 * configure.ac: Enable LTO by default on Darwin.
3432 * configure: Regenerate.
3433
3434 2010-07-23 Marc Glisse <marc.glisse@normalesup.org>
3435
3436 PR bootstrap/44455
3437 * configure.ac (extra_mpfr_configure_flags): Copy from
3438 extra_mpc_gmp_configure_flags.
3439 * configure: Re-generated.
3440
3441 2010-09-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3442
3443 Sync from GCC:
3444
3445 PR bootstrap/45796
3446 * Makefile.def (info-gcc, dvi-gcc, pdf-gcc, html-gcc):
3447 Depend on all-build-libiberty.
3448 * Makefile.in: Regenerate.
3449
3450 2010-09-27 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3451
3452 Sync from GCC:
3453
3454 PR bootstrap/44621
3455 * configure.ac: Fix unportable shell quoting.
3456 * configure: Regenerate.
3457
3458 2010-07-26 Naveen.H.S <naveen.S@kpitcummins.com>
3459
3460 * configure.ac: Support all v850 targets.
3461 * configure: Regenerate.
3462
3463 2010-07-17 Jack Howarth <howarth@bromo.med.uc.edu>
3464
3465 PR target/44862
3466 * Makefile.tpl (POSTSTAGE1_CXX_EXPORT):
3467 Provide -B option to allow for link spec %s substitutions for
3468 libstdc++.a on darwin.
3469 * Makefile.in: Regenerate.
3470
3471 2010-06-10 Alexandre Oliva <aoliva@redhat.com>
3472
3473 * Makefile.def (configure-gcc): Depend on all-libelf.
3474 * Makefile.in: Rebuild.
3475
3476 2010-06-01 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3477
3478 * config.sub, config.guess: Update from upstream sources.
3479
3480 2010-06-01 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3481
3482 Sync from GCC:
3483
3484 2010-05-05 Sebastian Pop <sebastian.pop@amd.com>
3485 * configure.ac: Allow all the versions greater than 0.10 of PPL.
3486 * configure: Regenerated.
3487
3488 2010-04-20 Eric Botcazou <ebotcazou@adacore.com>
3489 * configure.ac (BUILD_CONFIG): Redirect output to /dev/null.
3490 * configure: Regenerate.
3491
3492 2010-04-17 Ralf Cors<E9>pius <ralf.corsepius@rtems.org>
3493 * configure.ac (*-*-rtems*): Add target-libiberty to $skipdirs.
3494 * configure: Regenerate.
3495
3496 2010-04-16 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3497 * configure.ac: Check for elf_getshdrstrndx or elf_getshstrndx
3498 separately.
3499 * configure: Regenerate.
3500
3501 2010-04-13 Steve Ellcey <sje@cup.hp.com>
3502 * configure: Regenerate after change to elf.m4.
3503
3504 2010-04-02 Sebastian Pop <sebastian.pop@amd.com>
3505 * configure.ac: Add brackets around AC_TRY_COMPILE alternative.
3506 * configure: Regenerated.
3507
3508 2010-04-02 Sebastian Pop <sebastian.pop@amd.com>
3509 * configure.ac: Print "buggy but acceptable" when CLooG
3510 revision is less than 9.
3511 * configure: Regenerated.
3512
3513 2010-05-26 Dave Korn <dave.korn.cygwin@gmail.com>
3514
3515 Merge from gcc:
3516
3517 2010-05-18 Steven Bosscher <steven@gcc.gnu.org>
3518 * configure.ac (--enable-lto): All *-apple-darwin* now support LTO.
3519 * configure: Regenerate.
3520
3521 2010-05-07 Steven Bosscher <steven@gcc.gnu.org>
3522 * configure.ac (--enable-lto): Add x86_64-apple-darwin* as
3523 a platform that supports LTO.
3524 * configure: Regenerate.
3525
3526 2010-04-27 Dave Korn <dave.korn.cygwin@gmail.com>
3527 PR lto/42776
3528 * configure.ac (--enable-lto): Refactor handling so libelf tests
3529 are only performed inside then-clause of ACX_ELF_TARGET_IFELSE,
3530 and allow LTO to be explicitly enabled on non-ELF platforms that
3531 are known to support it inside else-clause.
3532 * configure: Regenerate.
3533
3534 2010-04-27 Roland McGrath <roland@redhat.com>
3535 H.J. Lu <hongjiu.lu@intel.com>
3536
3537 * configure.ac (--enable-gold): Support both, both/gold and
3538 both/bfd to add gold to configdirs without removing ld.
3539 * configure: Regenerated.
3540
3541 * Makefile.def: Add install-gold dependency to install-ld.
3542 * Makefile.in: Regenerated.
3543
3544 2010-04-14 Tristan Gingold <gingold@adacore.com>
3545
3546 * configure.ac (alpha*-*-*vms*): Remove ld from noconfigdirs.
3547 * configure: Regenerate.
3548
3549 2010-04-08 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3550
3551 Merge from gcc:
3552 PR bootstrap/43615
3553 PR bootstrap/43328
3554 Revert:
3555 2010-03-31 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3556 * configure.ac: Do not pass --enable-multilib nor
3557 --disable-multilib in baseargs. Accept explicitly passed
3558 --enable_multilib.
3559 * configure: Regenerate.
3560
3561 2010-03-31 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3562
3563 PR bootstrap/43328
3564 * configure.ac: Do not pass --enable-multilib nor
3565 --disable-multilib in baseargs. Accept explicitly passed
3566 --enable_multilib.
3567 * configure: Regenerate.
3568
3569 2010-03-23 Joseph Myers <joseph@codesourcery.com>
3570
3571 * configure.ac (tic6x-*-*): New case.
3572 * configure: Regenerate.
3573
3574 2010-03-23 Joseph Myers <joseph@codesourcery.com>
3575
3576 Merge from gcc:
3577 2010-03-19 Jack Howarth <howarth@bromo.med.uc.edu>
3578 PR ada/42554
3579 * configure.ac: Only pass -c to ranlib for darwin9 and earlier.
3580 * configure: Regenerate.
3581
3582 2010-03-23 Joseph Myers <joseph@codesourcery.com>
3583
3584 * config.sub: Update to version 2010-03-22.
3585 * config.guess: Update to version 2009-12-30.
3586
3587 2010-03-14 Joseph Myers <joseph@codesourcery.com>
3588
3589 Merge from gcc:
3590 2010-01-11 Richard Guenther <rguenther@suse.de>
3591 PR lto/41569
3592 * Makefile.def (all-lto-plugin): Depend on all-gcc.
3593 * Makefile.in: Regenerated.
3594
3595 2010-03-01 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3596
3597 PR libstdc++/32499
3598 * configure.ac (RANLIB): Default to true.
3599 (STRIP): Likewise.
3600 (RANLIB_FOR_TARGET): Remove superfluous : argument.
3601 * configure: Regenerate.
3602
3603 2010-02-17 Nick Clifton <nickc@redhat.com>
3604
3605 PR 11238
3606 * Makefile.tpl (local-distclean): Also remove config.cache files in
3607 sub-directories as there may not be Makefiles present in the
3608 sub-directories.
3609 * Makefile.tpl: Use "-exec rm {}" rather than "-delete" to delete
3610 the config.cache files found by the find command.
3611
3612 * Makefile.in: Regenerate.
3613 * configure.ac: Revert previous delta.
3614 * configure: Regenerate.
3615
3616 2010-02-15 Nick Clifton <nickc@redhat.com>
3617
3618 PR 11238
3619 * configure.ac: Delete config.cache files in sub-directories when
3620 deleting Makefiles.
3621 * configure: Regenerate.
3622
3623 2010-02-15 Nick Clifton <nickc@redhat.com>
3624
3625 * configure.ac: Sync from gcc.
3626 * configure: Regenerate.
3627
3628 2010-01-31 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3629
3630 Sync from gcc:
3631 * configure.ac: Add "recommended" version checks for GMP/MPC.
3632 Update recommended GMP/MPFR/MPC versions.
3633 * configure: Regenerate.
3634
3635 2010-01-25 Joern Rennecke <amylaar@spamcop.net>
3636
3637 gcc PR libstdc++/36101, gcc PR libstdc++/42813
3638 * configure.ac (bootstrap_target_libs): Make inclusion of
3639 target-libgomp conditional on libgomb being in target_configdirs.
3640 * configure: Regenerate.
3641
3642 2010-01-23 Joern Rennecke <amylaar@spamcop.net>
3643
3644 gcc PR libstdc++/36101, gcc PR libstdc++/42813
3645 * configure.ac (bootstrap_target_libs): Include target-libgomp.
3646 * configure: Regenerate.
3647
3648 2010-01-22 Joern Rennecke <amylaar@spamcop.net>
3649
3650 gcc PR libstdc++/36101, gcc PR libstdc++/42813
3651 * configure.ac (target_configdirs): Substitute.
3652 * Makefile.def: Bootstrap target module libgomp.
3653 Add dependency of all-target-libstdc++-v3 on configure-target-libgomp.
3654 * Makefile.tpl (TARGET_CONFIGDIRS): New makefile variable.
3655 (BASE_TARGET_EXPORTS): Export TARGET_CONFIGDIRS.
3656 * configure, Makefile.in: Regenerate.
3657
3658 2009-12-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3659
3660 * libtool.m4: Sync from git Libtool.
3661 * ltmain.sh: Likewise.
3662 * ltoptions.m4: Likewise.
3663 * ltversion.m4: Likewise.
3664 * lt~obsolete.m4: Likewise.
3665
3666 2010-01-07 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3667 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
3668
3669 PR bootstrap/42424
3670 * configure.ac: Include libtool m4 files.
3671 (_LT_CHECK_OBJDIR): Call it.
3672 (extra_mpc_mpfr_configure_flags, extra_mpc_gmp_configure_flags,
3673 gmplibs, ppllibs, clooglibs): Use $lt_cv_objdir.
3674
3675 * configure: Regenerate.
3676
3677 2010-01-07 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3678
3679 PR bootstrap/41818
3680 * Makefile.tpl (BASE_TARGET_EXPORTS): Only add TARGET_LIB_PATH
3681 to $(RPATH_ENVVAR) if bootstrapping. Fix typo in comment.
3682 * Makefile.in: Regenerate.
3683
3684 2009-12-18 Ben Elliston <bje@au.ibm.com>
3685
3686 * config.sub, config.guess: Update from upstream sources.
3687
3688 2009-12-17 Jeff Johnston <jjohnstn@redhat.com>
3689
3690 * COPYING.NEWLIB: Update copyright date.
3691 * COPYING.LIBGLOSS: Ditto.
3692
3693 2009-12-07 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3694
3695 PR middle-end/30447
3696 PR middle-end/30789
3697 PR other/40302
3698
3699 * configure.ac: Require MPC.
3700 * configure: Regenerate.
3701
3702 * configure.ac: Update minimum MPC version to 0.8.
3703 * configure: Regenerate.
3704
3705 2009-11-20 Paolo Bonzini <bonzini@gnu.org>
3706
3707 * config.guess: Sync with upstream and gcc.
3708 * config.sub: Sync with upstream and gcc.
3709
3710 2009-11-16 Alexandre Oliva <aoliva@redhat.com>
3711
3712 * Makefile.def: Restore host and target settings for gmp.
3713 * Makefile.in: Rebuild.
3714
3715 2009-11-16 Alexandre Oliva <aoliva@redhat.com>
3716
3717 * configure.ac: Add libelf to host_libs. Enable in-tree configury
3718 of ppl and cloog. Fix in-tree configury of libelf, skip tests.
3719 Fix portability of test of C++ as bootstrap language. Add
3720 ppl/src/ppl-config.o to the bootstrap compare exclusion list.
3721 * configure: Rebuild.
3722 * Makefile.def: Drop host and target settings from gmp, mpfr, ppl,
3723 and cloog. Fix in-tree ppl configuration. Introduce libelf
3724 in-tree building.
3725 * Makefile.tpl (POSTSTAGE1_CXX_EXPORT): New.
3726 (POSTSTAGE1_HOST_EXPORTS): Use it.
3727 (STAGE[+id+]_CXXFLAGS): New.
3728 (BASE_FLAGS_TO_PASS): Pass it down.
3729 (configure-stage[+id+]-[+prefix+][+module+]): Use it. Add
3730 extra_exports.
3731 (all-stage[+id+]-[+prefix+][+module+]): Likewise.
3732 (configure-[+prefix+][+module+], all-[+prefix+][+module+]): Add
3733 extra_exports.
3734 * Makefile.in: Rebuild.
3735
3736 2009-11-06 Ozkan Sezer <sezeroz@gmail.com>
3737
3738 * configure.ac (FLAGS_FOR_TARGET): Add -L and -isystem
3739 paths for *-w64-mingw* and x86_64-*mingw*.
3740 * configure: Regenerated.
3741
3742 2009-10-30 Kai Tietz <kai.tietz@onevision.com>
3743
3744 * configure.ac: Disable target-winsup & co for
3745 x86_64-*-mingw* and *-w64-mingw* targets.
3746 * configure: Regenerated.
3747
3748 2009-10-23 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3749
3750 * configure.ac (CLooG test): Use = with test.
3751 * configure: Regenerate.
3752
3753 2009-10-22 Richard Guenther <rguenther@suse.de>
3754
3755 * configure.ac: Do not set LIBS for ppl/cloog checks. Disable
3756 cloog if the ppl version check failed. Move flags saving
3757 before setting in libelf check.
3758 * configure: Regenerate.
3759
3760 2009-10-21 Richard Guenther <rguenther@suse.de>
3761
3762 * configure.ac: Adjust the ppl and cloog configure to work as
3763 documented. Disable cloog if ppl was disabled. Omit the version
3764 checks if they were disabled.
3765 * configure: Re-generate.
3766
3767 2009-10-13 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3768
3769 * configure.ac: Add 'lto' to enable_languages, not
3770 new_enable_languages, and only if not already present.
3771 * configure: Regenerate.
3772
3773 2009-10-06 Ian Lance Taylor <iant@google.com>
3774
3775 * Makefile.def: check-gold depends upon all-gas.
3776 * Makefile.in: Rebuild.
3777
3778 2009-10-03 2009-02-05 Rafael Avila de Espindola <espindola@google.com>
3779
3780 * Makefile.def: all-lto-plugin depends on all-libiberty.
3781 set bootstrap=true for lto-plugin.
3782 Add lto-plugin.
3783 * Makefile.in: Regenerate.
3784 * configure.ac (host_libs): Add lto-plugin.
3785 * configure: Regenerate.
3786
3787 2009-10-03 Diego Novillo <dnovillo@google.com>
3788
3789 * Makefile.tpl (HOST_EXPORTS): Add LIBELFLIBS and LIBELFINC.
3790 (HOST_LIBELFLIBS): Define.
3791 (HOST_LIBELFINC): Define.
3792 * Makefile.in: Regenerate.
3793 * configure.ac: Add --enable-lto.
3794 Add --with-libelf, --with-libelf-include and --with-libelf-lib.
3795 If --enable-lto is used, add 'lto' to new_enable_languages.
3796 If --enable-lto is used and gold is enabled, add
3797 lto-plugin to configdirs.
3798 * configure: Regenerate.
3799
3800 2009-10-03 Simon Baldwin <simonb@google.com>
3801
3802 * configure.ac: If --with-system-zlib, suppress local zlib and
3803 pass --with-system-zlib to subdir configure scripts.
3804 * configure: Regenerate.
3805
3806 2009-10-01 Loren J. Rittle <ljrittle@acm.org>
3807 Paolo Bonzini <bonzini@gnu.org>
3808
3809 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Use $$s rather than
3810 $(srcdir).
3811 * Makefile.in: Rebuilt.
3812
3813 2009-09-29 Paolo Bonzini <bonzini@gnu.org>
3814
3815 Sync from gcc:
3816 2009-09-26 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3817
3818 * configure.ac: Update minimum MPC version to 0.7.
3819 * configure: Regenerate.
3820
3821 2009-09-25 Nick Clifton <nickc@redhat.com>
3822
3823 * configure.ac: Pass any --cache-file=/dev/null option on to
3824 subconfigures.
3825 * configure: Regenerate.
3826
3827 2009-09-23 Nick Clifton <nickc@redhat.com>
3828
3829 * config.sub, config.guess: Update from upstream sources.
3830
3831 2009-09-22 Loren J. Rittle <ljrittle@acm.org>
3832
3833 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Remove stray $$r/.
3834 * Makefile.in: Rebuilt.
3835
3836 2009-09-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3837
3838 PR bootstrap/32272
3839 * configure.ac: Error out if $srcdir isn't '.' but contains
3840 host-${host_noncanonical}.
3841 * configure: Regenerate.
3842
3843 2009-09-21 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3844
3845 * configure.ac: If bootstrapping a combined tree with
3846 --enable-gold, require c++ in stage1_languages.
3847 * configure: Regenerate.
3848
3849 * configure.ac: Also add target_libs of stage1_languages to
3850 bootstrap_target_libs.
3851 * configure: Regenerate.
3852
3853 * configure.ac: Diagnose --enable-build-with-cxx bootstrap
3854 with --enable-languages not containing c++.
3855 * configure: Regenerate.
3856
3857 2009-09-16 Jie Zhang <jie.zhang@analog.com>
3858
3859 * configure.ac: Disable java and boehm-gc for bfin-*-*.
3860 * configure: Regenerate.
3861
3862 2009-09-08 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3863
3864 * configure.ac: Do not use $extrasub for replacing @if/@endif
3865 parts in Makefile; instead, use additional arguments to
3866 AC_CONFIG_COMMANDS to do the replacement manually, with several
3867 sed invocations, to avoid HP-UX sed command limits.
3868 * configure: Regenerate.
3869
3870 2009-09-04 Alexandre Oliva <aoliva@redhat.com>
3871
3872 * configure.ac (with-build-config): Document. Handle without.
3873 Handle missing argument.
3874 * configure: Rebuilt.
3875
3876 2009-09-03 Alexandre Oliva <aoliva@redhat.com>
3877
3878 * configure.ac (--with-build-config): New. Set BUILD_CONFIG.
3879 Default to bootstrap-debug only if compare-debug works.
3880 * configure: Rebuilt.
3881 * Makefile.tpl: Make BUILD_CONFIG configure-configurable.
3882 * Makefile.in: Rebuilt.
3883
3884 2009-09-01 Alexandre Oliva <aoliva@redhat.com>
3885
3886 * Makefile.tpl (BUILD_CONFIG): Default to bootstrap-debug.
3887 * Makefile.in: Rebuilt.
3888
3889 2009-09-02 Paolo Bonzini <bonzini@gnu.org>
3890
3891 * Makefile.tpl (AWK): Fix typo.
3892 * Makefile.in: Regenerate.
3893
3894 2009-09-02 Paolo Bonzini <bonzini@gnu.org>
3895
3896 * configure.ac: Detect awk and sed.
3897 * Makefile.def (flags_to_pass): Add AWK and SED.
3898 * Makefile.tpl (AWK, SED): New.
3899 (BASE_FLAGS_TO_PASS): Add AWK and SED.
3900 * configure: Regenerate.
3901 * Makefile.in: Regenerate.
3902
3903 2009-09-01 Tristan Gingold <gingold@adacore.com>
3904
3905 * setup.com: Ported to Itanium VMS. Can also build using DCL scripts.
3906 Remove logical names.
3907
3908 2009-08-31 Dave Korn <dave.korn.cygwin@gmail.com>
3909
3910 * ltmain.sh (func_normal_abspath): New function.
3911 (func_relative_path): Likewise.
3912 (func_mode_help): Document new -bindir option for link mode.
3913 (func_mode_link): Add new -bindir option, and use it to place
3914 output DLL if specified.
3915
3916 2009-08-24 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3917
3918 * configure.ac (AC_PREREQ): Bump to 2.64.
3919
3920 2009-08-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3921
3922 * README-maintainer-mode: Point directly to upstream locations
3923 for autoconf, automake, libtool, gettext, instead of copies on
3924 sources.redhat.com. Document required versions.
3925 * configure.ac: Do not substitute datarootdir, htmldir,
3926 pdfdir, docdir. Do not process --with-datarootdir,
3927 --with-htmldir, --with-pdfdir, --with-docdir.
3928 * configure: Regenerate.
3929
3930 * configure: Regenerate.
3931
3932 * compile: Sync from Automake 1.11.
3933 * depcomp: Likewise.
3934 * install-sh: Likewise.
3935 * missing: Likewise.
3936 * mkinstalldirs: Likewise.
3937 * ylwrap: Likewise.
3938
3939 2009-08-19 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3940
3941 * configure.ac: Call AC_DISABLE_OPTION_CHECKING.
3942 (baseargs): Add --disable-option-checking.
3943 * configure: Regenerate.
3944
3945 * Makefile.def (configure-target-libiberty): Depend on
3946 all-binutils and all-ld.
3947 (configure-target-newlib): Likewise.
3948 * Makefile.in: Regenerate.
3949
3950 2009-08-19 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3951
3952 Sync with GCC, merge:
3953
3954 2009-07-31 Christian Bruel <christian.bruel@st.com>
3955
3956 * configure.ac (sh*-*-elf): Don't add target-libgloss to noconfigdirs.
3957 * configure: Regenerate.
3958
3959 2009-07-06 Ian Lance Taylor <iant@google.com>
3960
3961 * configure.ac: Add missing comma in AC_ARG_WITH(boot-libs).
3962 * configure: Rebuild.
3963
3964 2009-06-26 Steve Ellcey <sje@cup.hp.com>
3965
3966 PR bootstrap/40338
3967 * configure.ac (comparestring): Create new variable.
3968 * Makefile.tpl (comparestring): Use to skip some comparisions.
3969 * configure: Regenerate.
3970 * Makefile.in: Regenerate.
3971
3972 2009-06-23 Ian Lance Taylor <iant@google.com>
3973
3974 * configure.ac: Add --enable-build-with-cxx. When set, add c++ to
3975 boot_languages. Only bootstrap target libraries listed in
3976 target_libs for some boot language. Add --with-stage1-ldflags,
3977 --with-stage1-libs, --with-boot-ldflags, --with-boot-libs. Remove
3978 with_host_libstdcxx from ppllibs. Only add -fkeep-inline-functions
3979 if not building with C++.
3980 * Makefile.def: For target_module libstdc++-v3, set bootstrap=true.
3981 * Makefile.tpl (STAGE1_LDFLAGS, STAGE1_LIBS): New variables.
3982 (POSTSTAGE1_LDFLAGS, POSTSTAGE1_LIBS): New variables.
3983 (HOST_EXPORTS): Add STAGE1_LDFLAGS to LDFLAGS. Export HOST_LIBS.
3984 (POSTSTAGE1_HOST_EXPORTS): Set CXX and CXX_FOR_BUILD. Add
3985 POSTSTAGE1_LDFLAGS to LDFLAGS. Export HOST_LIBS.
3986 (POSTSTAGE1_FLAGS_TO_PASS): Likewise.
3987 * configure, Makefile.in: Rebuild.
3988
3989 2009-06-08 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3990
3991 * configure.ac: Detect MPC in default directory.
3992 * configure: Regenerate.
3993
3994 2009-06-02 Richard Sandiford <r.sandiford@uk.ibm.com>
3995
3996 * configure.ac (powerpc-*-aix*, rs6000-*-aix*): Add target-newlib
3997 to noconfdirs.
3998 * configure: Regenerate.
3999
4000 2009-05-29 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4001
4002 * Makefile.def: Add MPC support and dependencies.
4003 * configure.ac: Likewise. Reorganize GMP/MPFR checks.
4004
4005 * Makefile.in, configure: Regenerate.
4006
4007 2009-05-24 Nicolas Roche <roche@adacore.com>
4008
4009 * Makefile.tpl (compare-target): Skip ./ada/*tools directories.
4010 * Makefile.in: Regenerate.
4011
4012 2009-05-21 Dave Korn <dave.korn.cygwin@gmail.com>
4013
4014 * configure.ac (cygwin noconfigdirs): Remove libgcj.
4015 * configure: Regenerate.
4016
4017 2009-05-07 Dave Korn <dave.korn.cygwin@gmail.com>
4018
4019 * configure.ac ($with_ppl): Default to no if not supplied.
4020 ($with_cloog): Likewise.
4021 configure: Regenerate.
4022
4023 2009-04-24 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4024
4025 PR bootstrap/39739
4026 * configure.ac (extra_mpfr_configure_flags): Set and AC_SUBST.
4027 * Makefile.def (module=mpfr): Use extra_mpfr_configure_flags.
4028
4029 * configure, Makefile.in: Regenerate.
4030
4031 2009-04-14 Jakub Jelinek <jakub@redhat.com>
4032
4033 * configure.ac: Change copyright header to refer to version
4034 3 of the GNU General Public License and to point readers at the
4035 COPYING3 file and the FSF's license web page.
4036 * Makefile.def: Likewise.
4037 * Makefile.tpl: Likewise.
4038 * Makefile.in: Regenerate.
4039
4040 2009-04-09 Jack Howarth <howarth@bromo.med.uc.edu>
4041
4042 * configure.ac: Restore match for darwin9 or later. Use double
4043 brackets since regeneration eats one pair.
4044 * configure: Regenerate.
4045
4046 2009-08-18 Christopher Faylor <me+cygwin@cgf.cx>
4047
4048 * MAINTAINERS: Perform some obvious fixups.
4049
4050 2009-08-17 Ben Elliston <bje@au.ibm.com>
4051
4052 * config.sub, config.guess: Update from upstream sources.
4053
4054 2009-08-06 Michael Eager <eager@eagercon.com>
4055
4056 * configure.ac: Add Microblaze target.
4057 * configure: Regenerate.
4058
4059 2009-07-02 Tristan Gingold <gingold@adacore.com>
4060
4061 * configure.ac: Do not exclude gas for i386-*-darwin.
4062 Add a case for x86_64-*-darwin.
4063 * configure: Regenerate.
4064
4065 2009-06-26 Doug Evans <dje@sebabeach.org>
4066
4067 * Makefile.def (host_modules): Add cgen.
4068 * Makefile.in: Regenerate.
4069 * configure.ac (host_tools): Add cgen.
4070 * configure: Regenerate.
4071
4072 2009-06-17 Michael Eager <eager@eagercon.com>
4073
4074 * COPYING.LIBGLOSS: Add Xilinx license.
4075
4076 2009-06-15 Ryan Mansfield <rmansfield@qnx.com>
4077
4078 * configure.ac: Define is_elf for QNX Neutrino targets.
4079 * configure: Regenerate.
4080
4081 2009-06-03 Jerome Guitton <guitton@adacore.com>
4082 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4083
4084 * Makefile.tpl (all): Avoid a trailing backslash.
4085 * Makefile.in: Regenerate.
4086
4087 2009-06-03 Ben Elliston <bje@au.ibm.com>
4088
4089 * config.sub, config.guess: Update from upstream sources.
4090
4091 2009-06-02 Alexandre Oliva <aoliva@redhat.com>
4092
4093 * Makefile.tpl ([+compare-target+]): Compare all stage
4094 directories, rather than just gcc.
4095 * Makefile.in: Rebuilt.
4096
4097 2009-05-28 Doug Kwan <dougkwan@google.com>
4098
4099 * configure.ac: Support gold for target arm*-*-*.
4100 * configure: Regenerate.
4101
4102 2009-05-27 Alexandre Oliva <aoliva@redhat.com>
4103
4104 * Makefile.tpl (all): Avoid harmless warning in make all when
4105 gcc-bootstrap is enabled but stage_last does not exist.
4106 * Makefile.in: Rebuilt.
4107
4108 2009-05-25 Tristan Gingold <gingold@adacore.com>
4109
4110 * setup.com: Complete the file with configuration and build.
4111
4112 2009-05-18 Alexandre Oliva <aoliva@redhat.com>
4113
4114 PR other/40159
4115 * Makefile.tpl (all): Don't assume gcc-bootstrap and
4116 gcc-no-bootstrap are mutually exclusive.
4117 * Makefile.in: Rebuilt.
4118
4119 2009-05-18 Alexandre Oliva <aoliva@redhat.com>
4120
4121 PR other/40159
4122 * Makefile.tpl (all): Don't end with unconditional success.
4123 * Makefile.in: Rebuilt.
4124
4125 2009-05-12 Alexandre Oliva <aoliva@redhat.com>
4126
4127 PR target/37137
4128 * Makefile.def (flags_to_pass): Remove redundant and incomplete
4129 STAGE1_CFLAGS, STAGE2_CFLAGS, STAGE3_CFLAGS, and STAGE4_CFLAGS.
4130 Add FLAGS_FOR_TARGET and BUILD_CONFIG.
4131 (bootstrap_stage): Remove bootstrap-debug custom stages. Turn
4132 stage_configureflags, stage_cflags and stage_libcflags into
4133 explicit Makefile macros.
4134 * Makefile.tpl (HOST_EXPORTS, EXTRA_HOST_FLAGS): Pass GCJ and
4135 GFORTRAN.
4136 (POSTSTAGE1_HOST_EXPORTS): Add XGCC_FLAGS_FOR_TARGET and TFLAGS to
4137 CC. Set CC_FOR_BUILD from CC.
4138 (BASE_TARGET_EXPORTS, RAW_CXX_TARGET_EXPORTS,
4139 NORMAL_TARGET_EXPORTS): Move SYSROOT_CFLAGS_FOR_TARGET and
4140 DEBUG_PREFIX_CFLAGS_FOR_TARGET from CFLAGS and CXXFLAGS to
4141 XGCC_FLAGS_FOR_TARGET. Add it along with TFLAGS to CC, CXX, GCJ,
4142 and GFORTRAN.
4143 (TFLAGS, STAGE_CFLAGS, STAGE_TFLAGS, STAGE_CONFIGURE_FLAGS): New.
4144 (_LIBCFLAGS): Renamed to _TFLAGS.
4145 (do-compare-debug, do-compare3-debug): Drop.
4146 (CC, GCC_FOR_TARGET, CXX_FOR_TARGET, RAW_CXX_FOR_TARGET,
4147 GCJ_FOR_TARGET, GFORTRAN_FOR_TARGET): Remove FLAGS_FOR_TARGET.
4148 (FLAGS_FOR_TARGET, SYSROOT_CFLAGS_FOR_TARGET,
4149 DEBUG_PREFIX_CFLAGS_FOR_TARGET): Move down.
4150 (XGCC_FLAGS_FOR_TARGET): New.
4151 (BASE_FLAGS_TO_PASS): Pass STAGEid_CFLAGS, STAGEid_TFLAGS and TFLAGS.
4152 (EXTRA_HOST_FLAGS): Pass GCJ and GFORTRAN.
4153 (POSTSTAGE1_FLAGS_TO_PASS): Move SYSROOT_CFLAGS_FOR_TARGET and
4154 DEBUG_PREFIX_CFLAGS_FOR_TARGET from CFLAGS, CXXFLAGS, LIBCFLAGS,
4155 LIBCXXFLAGS to XGCC_FLAGS_FOR_TARGET. Add it along with TFLAGS
4156 to CC, CXX, GCJ, and GFORTRAN. Pass XGCC_FLAGS_FOR_TARGET and
4157 TFLAGS.
4158 (BUILD_CONFIG): Include if requested.
4159 (all): Set TFLAGS on bootstrap.
4160 (configure-stageid-prefixmodule): Pass TFLAGS, adjust FLAGS.
4161 (all-stageid-prefixmodule): Likewise.
4162 (do-clean, distclean-stageid): Set TFLAGS.
4163 (restrap): Fix whitespace.
4164 * Makefile.in: Rebuilt.
4165
4166 2009-04-25 Eric Botcazou <ebotcazou@adacore.com>
4167
4168 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Add GNATBIND.
4169 (POSTSTAGE1_FLAGS_TO_PASS): Pick up exported value for GNATBIND.
4170 * Makefile.in: Regenerate.
4171
4172 2009-04-24 Eli Zaretskii <eliz@gnu.org>
4173
4174 * config.guess (pc:*:*:*): Return i586-pc-msdosdjgpp, for
4175 consistency with config.sub. (Update from upstream sources.)
4176
4177 2009-04-21 Joseph Myers <joseph@codesourcery.com>
4178
4179 * texinfo/texinfo.tex: Update to version 2009-03-28.05.
4180
4181 2009-04-17 Ben Elliston <bje@au.ibm.com>
4182
4183 * config.sub, config.guess: Update from upstream sources.
4184
4185 2009-04-15 Anthony Green <green@moxielogic.com>
4186
4187 * configure.ac: Add moxie support.
4188 * configure: Rebuilt.
4189
4190 2009-04-09 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4191
4192 * configure.ac: Bump minimum GMP/MPFR versions to 4.2 and 2.3.1.
4193 * configure: Regenerate.
4194
4195 2009-04-09 H.J. Lu <hongjiu.lu@intel.com>
4196
4197 PR gas/10039
4198 * configure.ac: Require texinfo 4.7.
4199 * configure: Regenerated.
4200
4201 2009-04-09 Steve Ellcey <sje@cup.hp.com>
4202
4203 * Makefil.def (languages): New entries.
4204 * Makefile.tpl (check-gcc-*): New generic target.
4205 * Makefile.in: Regenerate.
4206
4207 2009-03-27 Eli Zaretskii <eliz@gnu.org>
4208
4209 * djunpack.bat: Use ".." quoting in Sed command, for the sake of
4210 Windows builds of Sed.
4211
4212 2009-03-18 Tom Tromey <tromey@redhat.com>
4213
4214 * configure: Rebuild.
4215 * configure.ac (host_libs): Add libiconv.
4216 * Makefile.in: Rebuild.
4217 * Makefile.def (host_modules): Add libiconv.
4218 (configure-gdb, all-gdb): Depend on libiconv.
4219
4220 2009-03-16 Tristan Gingold <gingold@adacore.com>
4221
4222 * configure.ac: Treat gdb as supported on x86_64-darwin.
4223 * configure: Regenerate.
4224
4225 2009-03-16 Joseph Myers <joseph@codesourcery.com>
4226
4227 Merge from GCC:
4228
4229 2009-03-16 Joseph Myers <joseph@codesourcery.com>
4230
4231 * configure.ac (--with-host-libstdcxx): New option.
4232 * configure: Regenerate.
4233
4234 2009-01-29 Robert Millan <rmh@aybabtu.com>
4235
4236 * configure.ac: Recognize GNU/kOpenSolaris (*-*-kopensolaris*-gnu).
4237 * configure: Regenerate.
4238
4239 2009-01-12 Sebastian Pop <sebastian.pop@amd.com>
4240
4241 PR tree-optimization/38515
4242 * configure.ac (cloog-polylib): Removed.
4243 (with_ppl, with_cloog): Test for "no".
4244 * configure: Regenerated.
4245
4246 2009-03-01 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4247
4248 Backport from git Libtool:
4249
4250 2009-01-19 Robert Millan <rmh@aybabtu.com>
4251 Support GNU/kOpenSolaris.
4252 * libltdl/m4/libtool.m4 (_LT_SYS_DYNAMIC_LINKER)
4253 (_LT_CHECK_MAGIC_METHOD, _LT_COMPILER_PIC, _LT_LINKER_SHLIBS)
4254 (_LT_LANG_CXX_CONFIG) [kopensolaris*-gnu]: Recognize
4255 GNU/kOpenSolaris.
4256
4257 2009-02-05 Andreas Schwab <schwab@suse.de>
4258
4259 * Makefile.tpl (stage_last): Define $r and $s before using
4260 $(RECURSE_FLAGS_TO_PASS).
4261 * Makefile.in: Regenerate
4262
4263 2009-01-21 Jeff Johnston <jjohnstn@redhat.com>
4264
4265 * COPYING.NEWLIB: Add ARM license.
4266
4267 2009-01-16 Alan Modra <amodra@bigpond.net.au>
4268
4269 * Makefile.def (configure-opcodes): Depend on configure-libiberty.
4270 (all-opcodes): Depend on all-libiberty.
4271 * Makefile.in: Regenerate.
4272
4273 2009-01-15 Douglas B Rupp <rupp@gnat.com>
4274
4275 * configure.ac (ia64*-*-*vms*): Add case with no gdb or ld support.
4276 * configure: Regenerate.
4277
4278 2008-12-18 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4279
4280 Backport link test fix from upstream Libtool:
4281
4282 * libltdl.m4 (_LT_SYS_DYNAMIC_LINKER, _LT_LINKER_SHLIBS):
4283 Add cache variables to tests that require the linker to work.
4284 For shlibpath_overrides_runpath, this also changes the semantics
4285 to let the result from the C compiler take precedence.
4286 compiler take precedence.
4287
4288 2008-12-02 Ben Elliston <bje@au.ibm.com>
4289
4290 * config.sub, config.guess: Update from upstream sources.
4291
4292 2008-12-17 Jeff Johnston <jjohnstn@redhat.com>
4293
4294 * COPYING.NEWLIB: Updated.
4295 * COPYING.LIBGLOSS: Ditto.
4296
4297 2008-12-16 Paolo Bonzini <bonzini@gnu.org>
4298
4299 Sync with GCC:
4300
4301 2008-12-12 Sebastian Pop <sebastian.pop@amd.com>
4302
4303 * configure.ac (ppllibs): Add by default the lib flags.
4304 * configure: Regenerate.
4305
4306 2008-12-04 Jack Howarth <howarth@bromo.med.uc.edu>
4307
4308 * configure.ac: Add double brackets on darwin[912].
4309 * configure: Regenerate.
4310
4311 2008-12-02 Jack Howarth <howarth@bromo.med.uc.edu>
4312
4313 * configure.ac: Expand to darwin10 and later.
4314 * configure: Regenerate.
4315
4316 2008-12-02 Andreas Schwab <schwab@suse.de>
4317
4318 * Makefile.def: configure-target-boehm-gc depends on
4319 all-target-libstdc++-v3.
4320 * Makefile.in: Regenerate.
4321
4322 2008-12-02 Ben Elliston <bje@au.ibm.com>
4323
4324 * config.sub, config.guess: Update from upstream sources.
4325
4326 2008-11-27 Joseph Myers <joseph@codesourcery.com>
4327
4328 Merge from GCC:
4329
4330 2007-12-02 Matthias Klose <doko@ubuntu.com>
4331
4332 * config-ml.in: Remove 64bit configure tests.
4333
4334 2008-05-14 Rafael Espindola <espindola@google.com>
4335
4336 * config-ml.in: don't handle --enable-shared and --enable-static.
4337
4338 2008-09-02 Sebastian Pop <sebastian.pop@amd.com>
4339 Tobias Grosser <grosser@fim.uni-passau.de>
4340 Jan Sjodin <jan.sjodin@amd.com>
4341 Harsha Jagasia <harsha.jagasia@amd.com>
4342 Dwarakanath Rajagopal <dwarak.rajagopal@amd.com>
4343 Konrad Trifunovic <konrad.trifunovic@inria.fr>
4344 Adrien Eliche <aeliche@isty.uvsq.fr>
4345
4346 Merge from graphite branch.
4347 * configure: Regenerate.
4348 * Makefile.in: Regenerate.
4349 * configure.ac (host_libs): Add ppl and cloog.
4350 Add checks for PPL and CLooG.
4351 * Makefile.def (ppl, cloog): Added modules and dependences.
4352 * Makefile.tpl (PPLLIBS, PPLINC, CLOOGLIBS, CLOOGINC): New.
4353 (HOST_PPLLIBS, HOST_PPLINC, HOST_CLOOGLIBS, HOST_CLOOGINC): New.
4354
4355 2008-09-03 Richard Guenther <rguenther@suse.de>
4356
4357 * configure.ac: Always pass -DCLOOG_PPL_BACKEND to the
4358 cloog test.
4359 * configure: Re-generate.
4360
4361 2008-09-03 Sebastian Pop <sebastian.pop@amd.com>
4362
4363 * configure.ac (--with-cloog-polylib): New.
4364 (--disable-cloog-version-check): New.
4365 (--disable-ppl-version-check): New.
4366 * configure: Re-generate.
4367
4368 2008-09-05 Richard Guenther <rguenther@suse.de>
4369
4370 * configure.ac: Initialize clooglibs to -lcloog.
4371 * configure: Re-generate.
4372
4373 2008-10-13 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4374
4375 * configure.ac (MPFR check): Bump minimum version to 2.3.0 and
4376 recommended version to 2.3.2.
4377
4378 * configure: Regenerate.
4379
4380 2008-10-31 Ben Elliston <bje@au.ibm.com>
4381
4382 * configure.ac (spu-*-*): Remove special case.
4383 * configure: Regenerate.
4384
4385 Complete comment text from GCC version of:
4386
4387 2008-08-31 Aaron W. LaFramboise <aaronavay62@aaronwl.com>
4388
4389 * configure.ac (RPATH_ENVVAR): Use PATH on Windows.
4390 (GCC_SHLIB_SUBDIR): New.
4391 * Makefile.tpl (HOST_LIB_PATH_gcc): Use GCC_SHLIB_SUBDIR.
4392 * configure: Regenerate.
4393 * Makefile.in: Regenerate.
4394
4395 2008-11-27 Tristan Gingold <gingold@adacore.com>
4396
4397 * configure.ac: Build gdb for i?86-*-darwin*
4398 * configure: Regenerated.
4399
4400 2008-11-14 Daniel Jacobowitz <dan@codesourcery.com>
4401
4402 PR bootstrap/38014
4403 PR bootstrap/37923
4404
4405 Revert:
4406
4407 2008-10-24 Daniel Jacobowitz <dan@codesourcery.com>
4408
4409 * Makefile.tpl (HOST_EXPORTS): Correct CPPFLAGS typo.
4410 * Makefile.in: Regenerated.
4411
4412 2008-10-22 Daniel Jacobowitz <dan@codesourcery.com>
4413
4414 PR gdb/921
4415 PR gdb/1646
4416 PR gdb/2175
4417 PR gdb/2176
4418
4419 * Makefile.def (flags_to_pass): Add CPPFLAGS_FOR_BUILD and CPPFLAGS.
4420 * Makefile.tpl (BUILD_EXPORTS): Set CPPFLAGS.
4421 (EXTRA_BUILD_FLAGS): Correct typo. Pass CPPFLAGS.
4422 (HOST_EXPORTS): Pass CPPFLAGS.
4423 (CPPFLAGS_FOR_BUILD, CPPFLAGS, CPPFLAGS_FOR_TARGET): Define.
4424 (LDFLAGS_FOR_TARGET): Initialize from configure script.
4425 (EXTRA_TARGET_FLAGS): Set CPPFLAGS.
4426 * Makefile.in, configure: Regenerated.
4427 * configure.ac: Set CPPFLAGS_FOR_TARGET, LDFLAGS_FOR_TARGET,
4428 and CPPFLAGS_FOR_BUILD.
4429
4430 2008-10-29 Stefan Schulze Frielinghaus <xxschulz@de.ibm.com>
4431
4432 * configure.ac [spu-*-*]: Do not set skipdirs.
4433 * configure: Re-generate.
4434
4435 2008-10-24 Daniel Jacobowitz <dan@codesourcery.com>
4436
4437 * Makefile.tpl (HOST_EXPORTS): Correct CPPFLAGS typo.
4438 * Makefile.in: Regenerated.
4439
4440 2008-10-22 Daniel Jacobowitz <dan@codesourcery.com>
4441
4442 PR gdb/921
4443 PR gdb/1646
4444 PR gdb/2175
4445 PR gdb/2176
4446
4447 * Makefile.def (flags_to_pass): Add CPPFLAGS_FOR_BUILD and CPPFLAGS.
4448 * Makefile.tpl (BUILD_EXPORTS): Set CPPFLAGS.
4449 (EXTRA_BUILD_FLAGS): Correct typo. Pass CPPFLAGS.
4450 (HOST_EXPORTS): Pass CPPFLAGS.
4451 (CPPFLAGS_FOR_BUILD, CPPFLAGS, CPPFLAGS_FOR_TARGET): Define.
4452 (LDFLAGS_FOR_TARGET): Initialize from configure script.
4453 (EXTRA_TARGET_FLAGS): Set CPPFLAGS.
4454 * Makefile.in, configure: Regenerated.
4455 * configure.ac: Set CPPFLAGS_FOR_TARGET, LDFLAGS_FOR_TARGET,
4456 and CPPFLAGS_FOR_BUILD.
4457
4458 2008-09-29 Peter O'Gorman <pogma@thewrittenword.com>
4459
4460 * libtool.m4: Update to libtool 2.2.6.
4461 * lt~obsolete.m4: Update to libtool 2.2.6.
4462 * ltmain.sh: Update to libtool 2.2.6.
4463 * ltsugar.m4: Update to libtool 2.2.6.
4464 * ltversion.m4: Update to libtool 2.2.6.
4465 * ltoptions.m4: Update to libtool 2.2.6.
4466 * ltgcc.m4: Update to match changes from libtool 2.2.6.
4467
4468 2008-08-31 Aaron W. LaFramboise <aaronavay62@aaronwl.com>
4469
4470 * configure.ac (RPATH_ENVVAR): Use PATH on Windows.
4471 (GCC_SHLIB_SUBDIR): New.
4472 * Makefile.tpl (HOST_LIB_PATH_gcc): Use GCC_SHLIB_SUBDIR.
4473 * configure: Regenerate.
4474 * Makefile.in: Regenerate.
4475
4476 2008-08-28 Tristan Gingold <gingold@adacore.com>
4477
4478 * configure.ac (powerpc-*-darwin*, i?86-*-darwin*,x86_64-*-darwin9):
4479 Enable bfd, binutils and opcodes.
4480 * configure: Regenerate.
4481
4482 2008-08-16 Nicolas Roche <roche@adacore.com>
4483
4484 * Makefile.tpl: Add BOOT_ADAFLAGS.
4485 * Makefile.in: Regenerate.
4486
4487 2008-08-16 Richard Sandiford <rdsandiford@googlemail.com>
4488
4489 * configure.ac (mips*-*-*linux*, mips*-*-gnu*): Use mt-mips-gnu.
4490 * configure: Regenerate.
4491
4492 2008-07-30 Paolo Bonzini <bonzini@gnu.org>
4493
4494 Sync with gcc:
4495 2008-07-30 Paolo Bonzini <bonzini@gnu.org>
4496
4497 * configure.ac: Add makefile fragments for hpux.
4498 * Makefile.def (flags_to_pass): Add ADA_CFLAGS.
4499 * Makefile.tpl (HOST_EXPORTS): Pass ADA_CFLAGS.
4500 * configure: Regenerate.
4501 * Makefile.in: Regenerate.
4502
4503 2008-06-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4504
4505 * Makefile.tpl ($(srcdir)/configure): Update dependencies.
4506 * Makefile.in: Regenerate.
4507 * configure: Regenerate.
4508
4509 2008-06-18 Ian Lance Taylor <iant@google.com>
4510
4511 * src-release (BINUTILS_SUPPORT_DIRS): Remove mkdep and depcomp.
4512
4513 * src-release (BINUTILS_SUPPORT_DIRS): Add depcomp.
4514
4515 2008-06-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4516
4517 * configure: Regenerate.
4518
4519 2008-06-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4520
4521 * configure.ac: Set TOPLEVEL_CONFIGURE_ARGUMENTS early, when
4522 "$@" is still intact with both Autoconf 2.59 and 2.62.
4523 * configure: Regenerate.
4524
4525 2008-06-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4526
4527 * Makefile.tpl: Fix comment errors.
4528 * Makefile.in: Regenerate.
4529
4530 2008-06-13 Julian Brown <julian@codesourcery.com>
4531
4532 * configure.ac (arm*-*-linux-gnueabi): Don't disable building
4533 of libobjc for ARM EABI Linux.
4534 * configure: Regenerate.
4535
4536 2008-06-12 David S. Miller <davem@davemloft.net>
4537 David Edelsohn <edelsohn@gnu.org>
4538
4539 * configure.ac: Add powerpc*-*-* to gold supported targets.
4540 * configure: Regenerate.
4541
4542 2008-06-08 Joseph Myers <joseph@codesourcery.com>
4543
4544 PR tree-optimization/36218
4545 * Makefile.def (flags_to_pass): Add LDFLAGS_FOR_BUILD.
4546 * Makefile.tpl (EXTRA_BUILD_FLAGS): Define.
4547 (all prefix="build-"): Pass them to build-system sub-makes.
4548 * Makefile.in: Regenerate.
4549
4550 2008-05-16 Daniel Jacobowitz <dan@codesourcery.com>
4551
4552 * src-release (DEVO_SUPPORT): Add ChangeLog, MAINTAINERS,
4553 README-maintainer-mode, lt~obsolete.m4, ltgcc.m4, depcomp,
4554 mkdep, and compile. Update comments.
4555 (ETC_SUPPORT): Add ChangeLog and update comments.
4556
4557 2008-05-11 Ian Lance Taylor <iant@google.com>
4558
4559 * src-release (BINUTILS_SUPPORT_DIRS): Add elfcpp and gold.
4560
4561 2008-04-18 Paolo Bonzini <bonzini@gnu.org>
4562
4563 Sync with gcc:
4564 2008-04-18 Paolo Bonzini <bonzini@gnu.org>
4565
4566 PR bootstrap/35457
4567 * configure.ac: Include override.m4.
4568 * configure: Regenerate.
4569
4570 2008-04-18 Paolo Bonzini <bonzini@gnu.org>
4571
4572 * Makefile.tpl (restrap): Call `make all' using double-colon rules.
4573 * Makefile.in: Regenerate.
4574
4575 2008-04-11 Eric B. Weddington <eweddington@cso.atmel.com>
4576
4577 * configure.ac: Do not build libssp for the AVR.
4578 * configure: Regenerate.
4579
4580 2008-04-18 Nick Clifton <nickc@redhat.com>
4581
4582 * MAINTAINERS: Replace reference to configure.in with reference to
4583 configure.ac.
4584
4585 2008-04-18 M R Swami Reddy <MR.Swami.Reddy@nsc.com>
4586
4587 * configure.ac (cr16-*-*): Add case for cr16 target and include gdb
4588 as nonconfigurable directories list.
4589 * configure: Regenerate.
4590
4591 2008-04-14 David S. Miller <davem@davemloft.net>
4592
4593 * configure.ac: Add sparc*-*-* to gold supported targets.
4594 * configure: Regenerate.
4595
4596 2008-04-14 Ben Elliston <bje@au.ibm.com>
4597
4598 * config.sub, config.guess: Update from upstream sources.
4599
4600 2008-04-12 Hans-Peter Nilsson <hp@axis.com>
4601
4602 * Makefile.tpl <gcc>: Error early unless at least GNU make 3.80.
4603 * Makefile.in: Regenerate.
4604
4605 2008-04-07 Ian Lance Taylor <iant@google.com>
4606
4607 * Makefile.def: check-gold depends upon all-binutils.
4608 * Makefile.in: Regenerate.
4609
4610 2008-04-04 Nick Clifton <nickc@redhat.com>
4611
4612 PR binutils/4334
4613 * configure.ac: Run ACX_CHECK_CYGWIN_CAT_WORKS for cygwin hosted
4614 builds.
4615 * configure: Regenerate.
4616
4617 2008-04-04 NightStrike <NightStrike@gmail.com>
4618
4619 PR other/35151
4620 * configure.ac: Combine rules for mingw32 and mingw64.
4621 * configure: Regenerate.
4622
4623 2008-03-27 Paolo Bonzini <bonzini@gnu.org>
4624
4625 * Makefile.tpl (PICFLAG, PICFLAG_FOR_TARGET): Remove.
4626 * Makefile.in: Regenerate.
4627
4628 2008-03-20 Ian Lance Taylor <iant@google.com>
4629
4630 * configure.ac: Add support for --enable-gold.
4631 * Makefile.def: Add gold as a directory like ld.
4632 * configure, Makefile.in: Regenerate.
4633
4634 2008-03-19 Andreas Krebbel <krebbel1@de.ibm.com>
4635
4636 * opcodes/s390-mkopc.c (s390_opcode_cpu_val): S390_OPCODE_Z10 added.
4637 (s390_cond_extensions): Reduced extensions to the compare related.
4638 (main): z10 cpu type option added.
4639 (expandConditionalJump): Renamed to ...
4640 (insertExpandedMnemonic): ... this.
4641
4642 * opcodes/s390-opc.c: Re-group the operand format makros.
4643 (INSTR_RIE_RRPU, INSTR_RIE_RRP0, INSTR_RIE_RUPI,
4644 INSTR_RIE_R0PI, INSTR_RIE_RUPU, INSTR_RIE_R0PU, INSTR_RIE_R0IU,
4645 INSTR_RIE_R0I0, INSTR_RIE_R0UU, INSTR_RIE_R0U0,
4646 INSTR_RIE_RRUUU, INSTR_RIS_RURDI, INSTR_RIS_R0RDI, INSTR_RIS_RURDU,
4647 INSTR_RIS_R0RDU, INSTR_RRF_U0RR, INSTR_RRF_00RR, INSTR_RRS_RRRDU,
4648 INSTR_RRS_RRRD0, INSTR_RXY_URRD, INSTR_SIY_IRD, INSTR_SIL_RDI,
4649 INSTR_SIL_RDU): New instruction formats added.
4650 (MASK_RIE_RRPU, MASK_RIE_RRP0, MASK_RIE_RUPI, MASK_RIE_R0PI,
4651 MASK_RIE_RUPU, MASK_RIE_R0PU, MASK_RIE_R0IU, MASK_RIE_R0I0,
4652 MASK_RIE_R0UU, MASK_RIE_R0U0, MASK_RIE_RRUUU, MASK_RIS_RURDI,
4653 MASK_RIS_R0RDI, MASK_RIS_RURDU, MASK_RIS_R0RDU, MASK_RRF_U0RR,
4654 MASK_RRF_00RR, MASK_RRS_RRRDU, MASK_RRS_RRRD0, MASK_RXY_URRD,
4655 MASK_SIY_IRD, MASK_SIL_RDI, MASK_SIL_RDU): New instruction format
4656 masks added.
4657 (s390_opformats): New formats added "ris", "rrs", "sil".
4658 * opcodes/s390-opc.txt: Add the conditional jumps with the
4659 extensions removed from automatic expansion in s390-mkopc.c manually.
4660 (asi - trtre): Add new System z10 EC instructions.
4661 * include/opcode/s390.h (s390_opcode_cpu_val): S390_OPCODE_Z10 added.
4662
4663 2008-03-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4664
4665 * configure.ac: m4_include config/proginstall.m4.
4666 * configure: Regenerate.
4667
4668 2008-03-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4669
4670 Backport from upstream Libtool:
4671
4672 2007-10-12 Eric Blake <ebb9@byu.net>
4673
4674 Deal with Autoconf 2.62's semantic change in m4_append.
4675 * ltsugar.m4 (lt_append): Replace broken versions of
4676 m4_append.
4677 (lt_if_append_uniq): Don't require separator to be overquoted,
4678 and avoid broken m4_append.
4679 (lt_dict_add): Fix typo.
4680 * libtool.m4 (_LT_DECL): Don't overquote separator.
4681
4682 2008-03-13 David Edelsohn <edelsohn@gnu.org>
4683
4684 * config.rpath: Add AIX 6 support.
4685
4686 2008-03-13 Paolo Bonzini <bonzini@gnu.org>
4687
4688 * Makefile.def (stageprofile). Remove -fprofile-generate
4689 from stage_libcflags.
4690 * Makefile.in: Regenerate.
4691
4692 2008-03-13 Ben Elliston <bje@au.ibm.com>
4693
4694 * config.sub, config.guess: Update from upstream sources.
4695
4696 2008-03-06 Florian Krohm <fkrohm@us.ibm.com>
4697
4698 * s390-opc.c (INSTR_RSL_R0RD): Fix operands.
4699 * s390-opc.txt (cmpsc): Duplicate entry removed.
4700 (dxr, sqdr, sqer, cxfbr, cdfbr, cefbr, lzer, lzdr, lzxr,
4701 cegbr, cdgbr, cxgbr, cegr, cdgr, cxgr, cxfr, cdfr, cefr, fixr, fidr,
4702 fier, cu42, cu41): Fix operand format.
4703
4704 2008-02-20 Paolo Bonzini <bonzini@gnu.org>
4705
4706 PR bootstrap/32009
4707 PR bootstrap/32161
4708
4709 * configure.ac (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Compute here.
4710 * configure: Regenerate.
4711
4712 * Makefile.def: Define stage_libcflags for all bootstrap stages.
4713 * Makefile.tpl (BOOT_LIBCFLAGS, STAGE2_LIBCFLAGS, STAGE3_LIBCFLAGS,
4714 STAGE4_LIBCFLAGS): New.
4715 (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Subst from autoconf, without
4716 $(SYSROOT_CFLAGS_FOR_TARGET) and $(DEBUG_PREFIX_CFLAGS_FOR_TARGET).
4717 (BASE_TARGET_EXPORTS): Append them here to C{,XX}FLAGS.
4718 (EXTRA_TARGET_FLAGS): Append them here to {LIB,}C{,XX}FLAGS.
4719 (configure-stage[+id+]-[+prefix+][+module+]): Pass stage_libcflags
4720 for target modules. Don't export LIBCFLAGS.
4721 (all-stage[+id+]-[+prefix+][+module+]): Pass stage_libcflags; pass
4722 $(BASE_FLAGS_TO_PASS) where [+args+] was passed, and [+args+] after
4723 the overridden CFLAGS_FOR_TARGET and CXXFLAGS_FOR_TARGET.
4724 (invocations of `all'): Replace $(TARGET_FLAGS_TO_PASS) with
4725 $(EXTRA_TARGET_FLAGS), $(FLAGS_TO_PASS) with $(EXTRA_HOST_FLAGS).
4726 * Makefile.in: Regenerate.
4727
4728 2008-02-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4729
4730 PR libgcj/33085
4731 * libtool.m4 (_LT_COMPILER_PIC) [ mingw, cygwin ] <GCJ>:
4732 Do not use -DDLL_EXPORT. Backport from upstream.
4733
4734 2008-02-14 Nick Clifton <nickc@redhat.com>
4735
4736 Import this patch from gcc:
4737 2008-01-24 David Edelsohn <edelsohn@gnu.org>
4738
4739 * libtool.m4: Backport AIX 6 support from ToT Libtool.
4740
4741 2008-02-02 Hans-Peter Nilsson <hp@axis.com>
4742
4743 * configure.ac: Enable fortran for cris-*-elf and crisv32-*-elf.
4744 * configure: Regenerate.
4745
4746 2008-01-31 Marc Gauthier <marc@tensilica.com>
4747
4748 * configure.ac (xtensa*-*-*): Recognize processor variants.
4749 * configure: Regenerate.
4750
4751 2008-01-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4752
4753 PR bootstrap/34922
4754 * configure.ac (PARSE_ARGS): Push suitable setting of
4755 ac_subdirs_all, for `./configure --help=recursive'.
4756 Handle `+' in generic toplevel directory disabling.
4757 * configure: Regenerate.
4758
4759 2008-01-23 Ben Elliston <bje@au.ibm.com>
4760
4761 * config.sub, config.guess: Update from upstream sources.
4762
4763 2008-01-08 Ben Elliston <bje@au.ibm.com>
4764
4765 * config.sub, config.guess: Update from upstream sources.
4766
4767 2007-12-19 Jeff Johnston <jjohnstn@redhat.com>
4768
4769 * COPYING.LIBGLOSS: Update default copyright.
4770
4771 2007-12-19 Jeff Johnston <jjohnstn@redhat.com>
4772
4773 * COPYING.NEWLIB: Update default copyright.
4774
4775 2007-12-17 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4776
4777 * configure.ac: Change required MPFR from 2.2.0 -> 2.2.1.
4778 Change recommended MPFR from 2.2.1 > 2.3.0.
4779 * configure: Regenerate.
4780
4781 2007-12-13 Richard Sandiford <rsandifo@nildram.co.uk>
4782
4783 * Makefile.tpl (CFLAGS_FOR_TARGET): Add -g.
4784 (CXXFLAGS_FOR_TARGET): Add -O2 -g.
4785 * Makefile.in: Regenerate.
4786
4787 2007-12-10 Andreas Tobler <a.tobler@schweiz.org>
4788
4789 * configure.ac: Enable libjava for x86_64-*-darwin9.
4790 * configure: Regenerate.
4791
4792 2007-12-05 Ben Elliston <bje@au.ibm.com>
4793
4794 * config.sub, config.guess: Update from upstream sources.
4795
4796 2007-11-28 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4797
4798 * config-ml.in: Robustify against white space in absolute file
4799 names.
4800
4801 * config-ml.in (multi-clean): Substitute ${Makefile}.
4802 Remove superfluous ${Makefile} in list.
4803
4804 2007-10-23 Daniel Jacobowitz <dan@codesourcery.com>
4805
4806 * Makefile.def (dependencies): Make configure-gdb depend on
4807 all-intl.
4808 * Makefile.in: Regenerated.
4809
4810 2007-10-15 Patrick Mansfield <patmans@us.ibm.com>
4811
4812 * Makefile.def: To avoid problems running with parallel makes,
4813 build newlib before libgloss so that target specific header
4814 files are availble.
4815 * Makefile.in: Regenerate.
4816
4817 2007-10-11 Daniel Jacobowitz <dan@codesourcery.com>
4818
4819 * Makefile.def (dependencies): Add all-gdb -> all-libdecnumber.
4820 * Makefile.in: Regenerate.
4821
4822 2007-10-11 Daniel Jacobowitz <dan@codesourcery.com>
4823
4824 * src-release (GDB_SUPPORT_DIRS): Add libdecnumber.
4825 * libdecnumber: New directory, imported from GCC.
4826
4827 2007-10-08 Mike Frysinger <vapier@gentoo.org>
4828
4829 * configure.ac (CFLAGS_FOR_BUILD, CXXFLAGS_FOR_BUILD,
4830 LDFLAGS_FOR_BUILD): Default them to host flags only for $host = $build.
4831 Set default CXXFLAGS_FOR_BUILD to CXXFLAGS, not CFLAGS. Set default
4832 LDFLAGS_FOR_BUILD to LDFLAGS, not CFLAGS.
4833 * configure: Regenerate.
4834
4835 2007-10-01 Paolo Bonzini <bonzini@gnu.org>
4836
4837 * Makefile.tpl (AR_FOR_BUILD, AS_FOR_BUILD, CXX_FOR_BUILD,
4838 DLLTOOL_FOR_BUILD, GCJ_FOR_BUILD, GFORTRAN_FOR_BUILD,
4839 LDFLAGS_FOR_BUILD, LD_FOR_BUILD, NM_FOR_BUILD, RANLIB_FOR_BUILD,
4840 WINDMC_FOR_BUILD, WINDRES_FOR_BUILD): Use autoconf substitutions.
4841 * configure.ac: Default them to host tools for $host = $build.
4842 Subst them.
4843
4844 * configure: Regenerate.
4845 * Makefile.in: Regenerate.
4846
4847 2007-09-20 Richard Sandiford <rsandifo@nildram.co.uk>
4848
4849 * configure.ac (mipsisa*-*-elfoabi*): New stanza.
4850 * configure: Regenerate.
4851
4852 2007-09-19 Benjamin Kosnik <bkoz@redhat.com>
4853
4854 * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Move libgomp before
4855 libstdc++.
4856 * Makefile.def: Add libgomp config as a maybe dependency for libstdc++.
4857 * configure: Regenerate.
4858 * Makefile.in: Regenerate.
4859
4860 2007-09-17 Andreas Schwab <schwab@suse.de>
4861
4862 * configure.ac: Raise minimum makeinfo version to 4.6.
4863 * configure: Regenerate.
4864
4865 2007-09-15 Alan Modra <amodra@bigpond.net.au>
4866
4867 * configure.ac: Correct makeinfo version check.
4868 * configure: Regenerate.
4869
4870 2007-09-14 Richard Sandiford <richard@codesourcery.com>
4871
4872 * configure.ac (mips*-sde-elf*): New stanza. Add target-libiberty
4873 to $skipdirs and only disable gprof for newlib. Use the normal
4874 mips*-elf* handling in other respects.
4875 * configure: Regnerate.
4876
4877 2007-09-12 David Daney <ddaney@avtrex.com>
4878
4879 * configure.ac: Remove mips64*-*-linux* noconfigdirs section, thus
4880 enabling libgcj.
4881 * configure: Regenerate.
4882
4883 2007-09-12 Richard Guenther <rguenther@suse.de>
4884
4885 * configure.ac (--enable-stage1-checking): If neither --enable-checking
4886 nor --disable-checking is provided also turn on yes and types
4887 checking for stage1.
4888 * configure: Re-generate.
4889
4890 2007-09-11 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
4891
4892 PR target/33281
4893 * configure.ac: Use config/mh-mingw on mingw.
4894 * configure: Regenerate.
4895
4896 2007-09-10 Rask Ingemann Lambertsen <rask@sygehus.dk>
4897
4898 PR other/32154
4899 * configure.ac: For libgloss targets, point the linker to the linker
4900 script, startup code and simulator library.
4901 * configure: Regenerate.
4902
4903 2007-09-09 Andrew Haley <aph@redhat.com>
4904
4905 * configure.ac (noconfigdirs): Remove target-libffi and
4906 target-libjava.
4907
4908 2007-08-29 Nick Clifton <nickc@redhat.com>
4909
4910 * config.sub, config.guess: Update from upstream sources.
4911
4912 2007-08-21 Richard Guenther <rguenther@suse.de>
4913
4914 * configure.ac: Add types checking to stage1 checking flags.
4915 * configure: Regenerate.
4916
4917 2007-08-18 Paul Brook <paul@codesourcery.com>
4918 Joseph Myers <joseph@codesourcery.com>
4919
4920 * Makefile.tpl (DEBUG_PREFIX_CFLAGS_FOR_TARGET): New.
4921 (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Include it.
4922 * Makefile.in: Regenerate.
4923 * configure.ac (--with-debug-prefix-map): New.
4924 * configure: Regenerate.
4925
4926 2007-08-17 Richard Sandiford <richard@codesourcery.com>
4927 Nigel Stephens <nigel@mips.com>
4928
4929 * configure.ac (mips*-sde-elf*): New stanza. Use config/mt-sde
4930 as target_makefile_frag.
4931 * configure: Regenerate.
4932
4933 2007-08-16 Alexandre Oliva <aoliva@redhat.com>
4934
4935 * Makefile.def (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS):
4936 Add to flags_to_pass. Adjust uses of BOOT_CFLAGS.
4937 (bootstrap2-debug, bootstrap-debug): New bootstrap stages.
4938 * Makefile.tpl (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS): New.
4939 (do-compare, do-compare3, do-compare-debug): New.
4940 ([+compare-target+]): Use them.
4941
4942 2007-08-16 Alexandre Oliva <aoliva@redhat.com>
4943
4944 * Makefile.def (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS):
4945 Add to flags_to_pass. Adjust uses of BOOT_CFLAGS.
4946 (bootstrap2-debug, bootstrap-debug): New bootstrap stages.
4947 * Makefile.tpl (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS): New.
4948 (do-compare, do-compare3, do-compare-debug): New.
4949 ([+compare-target+]): Use them.
4950
4951 2007-08-13 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4952 Ben Elliston <bje@au.ibm.com>
4953
4954 * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS, baseargs): Pass
4955 --silent if $silent.
4956 * configure: Regenerate.
4957
4958 2007-08-12 Daniel Jacobowitz <dan@codesourcery.com>
4959
4960 * src-release (DEVO_SUPPORT): Add COPYING3 and COPYING3.LIB.
4961
4962 2007-07-17 Nick Clifton <nickc@redhat.com>
4963
4964 * COPYING3: New file. Contains version 3 of the GNU General
4965 Public License.
4966 * COPYING3.LIB: New file. Contains version 3 of the GNU
4967 Lesser General Public License.
4968
4969 2007-07-11 Bernd Schmidt <bernd.schmidt@analog.com>
4970
4971 * configure.ac: Fix my previous change to really match GCC.
4972 * configure: Regenerate.
4973
4974 2007-07-11 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4975
4976 * configure.ac: Rewrite 'configure --help' strings to look nicer.
4977 * configure: Regenerate.
4978
4979 2007-07-11 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4980
4981 * configure.ac: Add some missing m4 quotation.
4982 * configure: Regenerate.
4983
4984 2007-07-09 Kai Tietz <kai.tietz@onevision.com>
4985
4986 * Makefile.def: Add windmc tool to build.
4987 * Makefile.tpl: Likewise.
4988 * configure.ac: Likewise.
4989 * Makefile.in: Regenerate.
4990 * configure: Regenerate.
4991
4992 2007-07-05 H.J. Lu <hongjiu.lu@intel.com>
4993
4994 * lt~obsolete.m4: New. Import from 20070318 libtool.
4995
4996 2007-06-29 Bernd Schmidt <bernd.schmidt@analog.com>
4997
4998 * configure.ac: Don't add target-libmudflap to noconfigdirs for
4999 uclinux and linux-uclibc targets.
5000 * configure: Regenerate.
5001
5002 2007-06-28 DJ Delorie <dj@redhat.com>
5003
5004 * configure.ac (arm*-*-linux-gnueabi): Don't build libgloss if we're
5005 not building newlib.
5006 * configure: Regenerated.
5007
5008 2007-06-22 Daniel Jacobowitz <dan@codesourcery.com>
5009
5010 * src-release (DEVO_SUPPORT): Correct typos.
5011
5012 2007-06-18 Daniel Jacobowitz <dan@codesourcery.com>
5013
5014 * Makefile.def: Add dependency from configure-gdb to all-bfd.
5015 * Makefile.in: Regenerated.
5016
5017 2007-06-14 Paolo Bonzini <bonzini@gnu.org>
5018
5019 * Makefile.tpl (cleanstrap): Don't delete the toplevel Makefile.
5020 (distclean-stage[+id+]): Possibly delete stage_last.
5021 * Makefile.in: Regenerate.
5022
5023 2007-06-07 Ben Elliston <bje@au.ibm.com>
5024
5025 * config.sub, config.guess: Update from upstream sources.
5026
5027 2007-06-07 Ben Elliston <bje@au.ibm.com>
5028
5029 * Makefile.tpl: Fix spelling error.
5030 * Makefile.in: Regenerate.
5031
5032 2007-06-04 Paolo Bonzini <bonzini@gnu.org>
5033
5034 Sync with gcc:
5035 2007-05-30 Jakub Jelinek <jakub@redhat.com>
5036
5037 PR bootstrap/29382
5038 * configure.ac: Don't use -fkeep-inline-functions for GCC < 3.3.1.
5039 * configure: Rebuilt.
5040
5041 2007-06-01 Steve Ellcey <sje@cup.hp.com>
5042
5043 * libtool.m4 (LT_CMD_MAX_LEN): Try using getconf to set
5044 lt_cv_sys_max_cmd_len.
5045
5046 2007-05-31 Paolo Bonzini <bonzini@gnu.org>
5047
5048 * ltgcc.m4: Update from GCC.
5049
5050 2007-05-25 Andreas Tobler <a.tobler@schweiz.org>
5051
5052 * ltmain.sh: Fix Darwin verstring, remove ${wl}.
5053
5054 2007-05-24 Steve Ellcey <sje@cup.hp.com>
5055
5056 * ltmain.sh: Update from GCC.
5057 * libtool.m4: Update from GCC.
5058 * ltsugar.m4: New. Update from GCC.
5059 * ltversion.m4: New. Update from GCC.
5060 * ltoptions.m4: New. Update from GCC.
5061 * ltconfig: Remove.
5062 * ltcf-c.sh: Remove.
5063 * ltcf-cxx.sh: Remove.
5064 * ltcf-gcj.sh: Remove.
5065 * src-release: Update with new libtool file list.
5066
5067 2007-05-16 Paolo Bonzini <bonzini@gnu.org>
5068
5069 * Makefile.def (bootstrap_stage): Replace stage_make_flags with
5070 stage_cflags.
5071 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS, POSTSTAGE1_FLAGS_TO_PASS):
5072 Remove CFLAGS/LIBCFLAGS.
5073 (configure-stage[+id+]-[+prefix+][+module+],
5074 all-stage[+id+]-[+prefix+][+module+]): Pass it from [+stage_cflags+].
5075 * Makefile.in: Regenerate.
5076
5077 2007-04-14 Steve Ellcey <sje@cup.hp.com>
5078
5079 * config-ml.in: Update from GCC.
5080
5081 2007-04-09 Daniel Jacobowitz <dan@codesourcery.com>
5082
5083 * src-release (do-proto-toplev): Process the support directories before
5084 the tool directory.
5085
5086 2007-03-21 Richard Sandiford <richard@codesourcery.com>
5087
5088 * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Fix m4 quoting
5089 of glob. Quote arguments with single quotes too.
5090 * configure: Regenerate.
5091
5092 2007-03-12 Brooks Moses <brooks.moses@codesourcery.com>
5093
5094 * Makefile.def (fixincludes): Remove unneeded "missing" lines.
5095 * Makefile.in: Regenerate
5096
5097 2007-03-07 Andreas Schwab <schwab@suse.de>
5098
5099 * configure: Regenerate.
5100
5101 2007-03-01 Brooks Moses <brooks.moses@codesourcery.com>
5102
5103 * configure.ac: Add "--with-pdfdir" configure option,
5104 which defines pdfdir variable.
5105 * Makefile.def (target=fixincludes): Add install-pdf to
5106 missing targets.
5107 (recursive_targets): Add install-pdf target.
5108 (flags_to_pass): Add pdfdir.
5109 * Makefile.tpl: Add pdfdir handling, add do-install-pdf
5110 target.
5111 * configure: Regenerate
5112 * Makefile.in: Regenerate
5113
5114 2007-02-28 Eric Christopher <echristo@apple.com>
5115
5116 Revert:
5117 2006-12-07 Mike Stump <mrs@apple.com>
5118
5119 * Makefile.def (dependencies): Add dependency for
5120 install-target-libssp and install-target-libgomp on
5121 install-gcc.
5122 * Makefile.in: Regenerate.
5123
5124 2007-02-27 Matt Kraai <kraai@ftbfs.org>
5125
5126 * configure: Regenerate.
5127 * configure.ac: Move statements after variable declarations.
5128
5129 2007-02-19 Joseph Myers <joseph@codesourcery.com>
5130
5131 * configure.ac: Adjust for loop syntax.
5132 * configure: Regenerate.
5133
5134 2007-02-18 Alexandre Oliva <aoliva@redhat.com>
5135
5136 * configure: Rebuilt.
5137
5138 2007-02-18 Alexandre Oliva <aoliva@redhat.com>
5139
5140 * configure.ac: Drop multiple occurrences of --enable-languages,
5141 and fix its quoting.
5142 * configure: Rebuilt.
5143
5144 2007-02-17 Mark Mitchell <mark@codesourcery.com>
5145 Nathan Sidwell <nathan@codesourcery.com>
5146 Vladimir Prus <vladimir@codesourcery.com
5147 Joseph Myers <joseph@codesourcery.com>
5148
5149 * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Fix quoting.
5150 * configure: Regenerate.
5151
5152 2007-02-13 Daniel Jacobowitz <dan@codesourcery.com>
5153
5154 * configure.ac (target_libraries): Move libgcc before libiberty.
5155 * configure: Regenerated.
5156
5157 2007-02-13 Paolo Bonzini <bonzini@gnu.org>
5158
5159 * configure: Regenerate again?
5160
5161 2007-02-13 Paolo Bonzini <bonzini@gnu.org>
5162
5163 * configure: Reapply PR30748 fix which was lost in the previous commit.
5164
5165 2007-02-13 Daniel Jacobowitz <dan@codesourcery.com>
5166 Paolo Bonzini <bonzini@gnu.org>
5167
5168 PR bootstrap/30753
5169 * configure.ac: Remove obsolete build / host tests. Use AC_PROG_CC
5170 unconditionally. Use AC_PROG_CXX. Use ACX_TOOL_DIRS to find $prefix.
5171 * configure: Regenerated.
5172
5173 2007-02-10 Paolo Bonzini <bonzini@gnu.org>
5174
5175 * configure: Regenerate.
5176
5177 2007-02-09 Daniel Jacobowitz <dan@codesourcery.com>
5178
5179 PR bootstrap/30748
5180 * configure.ac: Correct syntax for Solaris ksh.
5181 * configure: Regenerated.
5182
5183 2007-02-09 Paolo Bonzini <bonzini@gnu.org>
5184
5185 * Makefile.def: Sync with GCC.
5186 * Makefile.tpl: Sync with GCC.
5187 * Makefile.in: Regenerate.
5188 * configure: Regenerate.
5189
5190 2007-02-09 Daniel Jacobowitz <dan@codesourcery.com>
5191
5192 * Makefile.tpl (build_alias, host_alias, target_alias): Use
5193 noncanonical equivalents.
5194 * configure.in: Rename to...
5195 * configure.ac: ...this. Update AC_PREREQ. Prevent error for
5196 AS_FOR_TARGET. Set build_noncanonical, host_noncanonical, and
5197 target_noncanonical. Use them. Rewrite removal of configure
5198 arguments for autoconf 2.59. Discard variable settings. Force
5199 program_transform_name for native tools.
5200
5201 * Makefile.in: Regenerated.
5202 * configure: Regenerated with autoconf 2.59.
5203
5204 * src-release (DEVO_SUPPORT, do-proto-toplev): Expect configure.ac.
5205
5206 2007-02-08 Jeff Johnston <jjohnstn@redhat.com>
5207
5208 * COPYING.LIBGLOSS: Reformat default Red Hat
5209 license to fit within 80 columns.
5210 * COPYING.NEWLIB: Ditto.
5211
5212 2007-02-05 Dave Brolley <brolley@redhat.com>
5213
5214 * Contribute the following changes:
5215 2006-11-28 DJ Delorie <dj@redhat.com>
5216
5217 * configure.in: Fix typo for mep's target_makefile_frag.
5218 * configure: Regenerated.
5219
5220 2005-04-22 Richard Sandiford <rsandifo@redhat.com>
5221
5222 * configure.in (mep*): Add -mlibrary to FLAGS_FOR_TARGET.
5223 * configure: Regenerate.
5224
5225 2001-09-19 DJ Delorie <dj@redhat.com>
5226
5227 * configure.in (target_makefile_frag): use mt-mep
5228
5229 2001-06-12 Don Howard <dhoward@redhat.com>
5230
5231 * configure.in: Remove gdb from MeP skip list.
5232
5233 2001-04-05 DJ Delorie <dj@redhat.com>
5234
5235 * configure.in (noconfigdirs): Remove gcc from MeP skip list.
5236
5237 2001-03-20 Ben Elliston <bje@redhat.com>
5238
5239 * configure.in (noconfigdirs): Add gcc and gdb for MeP.
5240
5241 2001-03-19 Ben Elliston <bje@redhat.com>
5242
5243 * config.sub (mep, mep-*): Add.
5244
5245 2007-01-31 Andreas Schwab <schwab@suse.de>
5246
5247 * Makefile.tpl (LDFLAGS): Substitute it.
5248 * Makefile.in: Regenerate.
5249
5250 2007-01-11 Paolo Bonzini <bonzini@gnu.org>
5251
5252 * configure.in: Change == to = in test command.
5253 * configure: Regenerate.
5254
5255 2007-01-11 Paolo Bonzini <bonzini@gnu.org>
5256 Nick Clifton <nickc@redhat.com>
5257 Kaveh R. Ghazi <ghazi@caip.rutgets.edu>
5258
5259 * configure.in (build_configargs, host_configargs, target_configargs):
5260 Remove build/host/target parameters.
5261 (host_libs): Add gmp and mpfr.
5262 (GMP tests): Reorganize to allow in-tree GMP/MPFR.
5263 * Makefile.def (gmp, mpfr): New.
5264 (gcc): Remove target.
5265 * Makefile.tpl (build_os, build_vendor, host_os, host_vendor,
5266 target_os, target_vendor): New.
5267 (configure): Add host_alias/target_alias arguments. Adjust invocations.
5268 * configure: Regenerate.
5269 * Makefile.in: Regenerate.
5270
5271 2007-01-11 Matt Fago <fago@earthlink.net>
5272
5273 * configure.in: Try to link to functions only in mpfr 2.2.x
5274 to improve robustness of configure tests.
5275 * configure: Regenerate.
5276
5277 2007-01-08 Kai Tietz <kai.tietz@onevision.com>
5278
5279 * configure.in: Add support for an x86_64-mingw* target.
5280 * configure: Regenerate.
5281
5282 2007-01-05 Daniel Jacobowitz <dan@codesourcery.com>
5283
5284 * Makefile.tpl (all-target): Correct @if conditional for target
5285 modules.
5286 * configure.in: Omit libiberty if building only target libgcc.
5287 * configure, Makefile.in: Regenerated.
5288
5289 2007-01-04 Paolo Bonzini <bonzini@gnu.org>
5290
5291 * configure.in: Use DEV-PHASE to detect the default for --enable-werror.
5292 * configure: Regenerate.
5293
5294 2007-01-03 Daniel Jacobowitz <dan@codesourcery.com>
5295
5296 * Makefile.def (target_modules): Add libgcc.
5297 (lang_env_dependencies): Remove default items. Use no_c and no_gcc.
5298 * Makefile.tpl (clean-target-libgcc): Delete.
5299 (configure-target-[+module+]): Emit --disable-bootstrap dependencies
5300 on gcc even for bootstrapped modules. Rewrite handling of
5301 lang_env_dependencies to loop over target_modules.
5302 * configure.in (target_libraries): Add target-libgcc.
5303 * Makefile.in, configure: Regenerated.
5304
5305 2006-12-29 Paolo Bonzini <bonzini@gnu.org>
5306
5307 Sync with gcc:
5308 2006-12-29 Paolo Bonzini <bonzini@gnu.org>
5309
5310 * configure.in: Reorganize recognition of languages. Add
5311 --enable-stage1-languages. Show supported languages for the chosen
5312 target rather than all recognized languages.
5313 * configure: Regenerate.
5314
5315 2006-12-29 Paolo Bonzini <bonzini@gnu.org>
5316
5317 * Makefile.tpl (GCC_STRAP_TARGETS, all-prebootstrap): Remove.
5318 * Makefile.in: Regenerate.
5319
5320 2006-12-29 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5321
5322 * configure.in: Warn that MPFR 2.2.0 is buggy.
5323 * configure: Regenerate.
5324
5325 2006-12-27 Ian Lance Taylor <iant@google.com>
5326
5327 * configure.in: When removing Makefiles to force a reconfigure, also
5328 remove prev-DIR*/Makefile.
5329 * configure: Regenerate.
5330
5331 2006-12-23 Kazu Hirata <kazu@codesourcery.com>
5332
5333 * config.bfd: Recognize fido.
5334
5335 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
5336
5337 Sync with gcc:
5338
5339 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
5340
5341 * configure.in: Remove "$build" case for powerpc-*-darwin* since
5342 it only affects bootstrap and could be tested on "$host" as well.
5343 * configure: Regenerate.
5344 * config/mh-ppc-darwin: Add to the stage1 cflags here.
5345
5346 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
5347
5348 PR bootstrap/29544
5349 * Makefile.def (flags_to_pass): Add STAGE1_CHECKING.
5350 (bootstrap_stage): Add STAGE1_CHECKING to stage1 configure flags,
5351 move here comment from Makefile.tpl.
5352 * Makefile.tpl: Move some definitions higher in the file.
5353 (STAGE1_CHECKING): New.
5354 * configure.in: Add --enable-stage1-checking.
5355 * configure: Regenerate.
5356 * Makefile.in: Regenerate.
5357
5358 2006-12-03 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5359
5360 * configure.in: Update error message for missing GMP/MPFR.
5361
5362 * configure: Regenerate.
5363
5364 2006-12-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5365
5366 * configure.in: Update MPFR version in error message.
5367
5368 * configure: Regenerate.
5369
5370 2006-11-26 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5371
5372 * configure.in (--with-mpfr-dir, --with-gmp-dir): Remove flags.
5373 (--with-mpfr-include, --with-mpfr-lib, --with-gmp-include,
5374 --with-gmp-lib): New flags.
5375
5376 * configure: Regenerate.
5377
5378 2006-12-12 Andreas Tobler <a.tobler@schweiz.org>
5379
5380 PR bootstrap/30134
5381 * configure.in: Correct x86 darwin support for libjava to powerpc
5382 and i?86 only.
5383 * configure: Regenerate.
5384
5385 2006-12-11 Alan Modra <amodra@bigpond.net.au>
5386
5387 * configure.in: Handle spu makefile frag.
5388 * Makefile.tpl (MAINT): Define
5389 (MAINTAINER_MODE_FALSE, MAINTAINER_MODE_TRUE): Define.
5390 * configure: Regenerate.
5391 * Makefile.in: Regenerate.
5392
5393 2006-12-11 Ben Elliston <bje@au.ibm.com>
5394
5395 * config.sub, config.guess: Update from upstream sources.
5396
5397 2006-12-11 Ben Elliston <bje@au.ibm.com>
5398
5399 * configure.in: Sync with GCC (spu-*-*).
5400 * configure: Sync with GCC.
5401
5402 2006-12-07 Mike Stump <mrs@apple.com>
5403
5404 * Makefile.def (dependencies): Add dependency for
5405 install-target-libssp and install-target-libgomp on
5406 install-gcc.
5407 * Makefile.in: Regenerate.
5408
5409 2006-11-16 Paolo Bonzini <bonzini@gnu.org>
5410
5411 * Makefile.tpl (clean-target-libgcc): Test for gcc Makefile presence.
5412 (unstage): Test for stage_last presence.
5413
5414 PR bootstrap/29802
5415 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Add HOST_SUBDIR in STAGE_PREFIX.
5416 * Makefile.in: Regenerate.
5417
5418 2006-11-14 DJ Delorie <dj@redhat.com>
5419
5420 * Makefile.tpl (clean-stage*): Sync with GCC (clean).
5421 * Makefile.in: Sync with GCC.
5422 * configure.in: Sync with GCC (mpfr, gmp).
5423 * configure: Sync with GCC.
5424
5425 2006-11-08 Jie Zhang <jie.zhang@analog.com>
5426
5427 * configure.in: Remove target-libgloss from noconfigdirs for
5428 bfin-*-*.
5429 * configure: Regenerated.
5430
5431 2006-10-27 Jeff Johnston <jjohnstn@redhat.com>
5432
5433 * COPYING.NEWLIB: Add spu license.
5434 * COPYING.LIBGLOSS: Ditto.
5435
5436 2006-10-17 Brooks Moses <bmoses@stanford.edu>
5437
5438 * Makefile.def: Added pdf target handling.
5439 * Makefile.tpl: Added pdf target handling.
5440 * Makefile.in: Regenerated.
5441
5442 2006-10-11 Jeff Johnston <jjohnstn@redhat.com>
5443
5444 * COPYING.NEWLIB: Updated.
5445 * COPYING.LIBGLOSS: Ditto.
5446
5447 2006-09-27 Dave Brolley <brolley@redhat.com>
5448
5449 * configure.in (RUNTEST): Look for 'runtest' in the source tree by using
5450 $s instead of $r.
5451 * configure: Regenerated.
5452
5453 2006-09-26 Ben Elliston <bje@au.ibm.com>
5454
5455 * config.sub, config.guess: Update from upstream sources.
5456
5457 2006-09-20 Thiemo Seufer <ths@mips.com>
5458
5459 * configure.in: Remove redundant handling of mips*-dec-bsd*. Likewise
5460 for mipstx39-*-*. Disable libgloss for mips64*-*-linux*.
5461 * configure: Regenerate.
5462
5463 2006-08-30 Corinna Vinschen <corinna@vinschen.de>
5464
5465 * configure.in: Never build newlib for a Mingw host.
5466 Never build newlib as Mingw target library.
5467 Test the existence of winsup/cygwin for building a Cygwin newlib,
5468 rather than just winsup.
5469 Add winsup/mingw and winsup/w32api paths to FLAGS_FOR_TARGET if
5470 building a Mingw target.
5471 * configure: Regenerate.
5472
5473 2006-08-15 Thiemo Seufer <ths@mips.com>
5474 Nigel Stephens <nigel@mips.com>
5475 David Ung <davidu@mips.com>
5476
5477 * config.sub: Add support for sde as alias of mipsisa32-sde-elf.
5478
5479 2006-07-25 Paolo Bonzini <bonzini@gnu.org>
5480
5481 Sync from GCC:
5482 2006-07-04 Eric Botcazou <ebotcazou@libertysurf.fr>
5483
5484 PR bootstrap/18058
5485 * configure.in: Add -fkeep-inline-functions to CFLAGS for stage 1
5486 if the bootstrap compiler is a GCC version that supports it.
5487 * configure: Regenerate.
5488
5489 2006-07-22 Daniel Jacobowitz <dan@codesourcery.com>
5490
5491 * configure.in: Allow mingw32 and cygwin targets to build cross-gdb.
5492 * configure: Regenerated.
5493
5494 2006-07-18 Paolo Bonzini <bonzini@gnu.org>
5495
5496 * Makefile.tpl (configure-stageN-MODULE): Pass --with-build-libsubdir
5497 for stages after the first.
5498
5499 2006-07-17 Jakub Jelinek <jakub@redhat.com>
5500
5501 * Makefile.def: Add dependencies for configure-opcodes
5502 on configure-intl and all-opcodes on all-intl.
5503 * Makefile.in: Regenerated.
5504
5505 2006-07-04 Peter O'Gorman <peter@pogma.com>
5506
5507 * ltconfig: chmod 644 before ranlib during install.
5508
5509 2006-07-03 Paolo Bonzini <bonzini@gnu.org>
5510
5511 * configure.in: Fix thinkos in previous check-in.
5512 * configure: Regenerate.
5513
5514 2006-07-03 Paolo Bonzini <bonzini@gnu.org>
5515
5516 Sync from gcc:
5517
5518 2007-07-03 Paolo Bonzini <bonzini@gnu.org>
5519
5520 PR other/27063
5521 * configure.in: Test subdir_requires and give an appropriate
5522 error message.
5523 * configure: Regenerate.
5524
5525 2006-06-16 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
5526
5527 PR target/27540
5528 * configure.in: Only enable libgomp on IRIX 6.
5529 * configure: Regenerate.
5530
5531 2006-06-20 David Ayers <d.ayers@inode.at>
5532
5533 PR bootstrap/28072
5534 * configure.in: Add target-boehm-gc to noconfigdirs depending on
5535 whether target-libjava is being configured instead of whether the
5536 java front end is enabled.
5537 * configure: Regenerate.
5538
5539 2006-06-15 Mark Shinwell <shinwell@codesourcery.com>
5540
5541 * include/elf/arm.h: Correct names of R_ARM_LDC_G{0,1,2}
5542 to R_ARM_LDC_SB_G{0,1,2} respectively.
5543
5544 2006-06-15 Paolo Bonzini <bonzini@gnu.org>
5545
5546 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Export CFLAGS and LDFLAGS
5547 too.
5548 * Makefile.in: Regenerate.
5549
5550 2006-06-13 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
5551
5552 Sync from gcc:
5553
5554 2006-06-12 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
5555 * configure.in: Don't enable libgomp on hpux10.
5556 * configure: Rebuilt.
5557
5558 2006-06-13 David Ayers <d.ayers@inode.at>
5559
5560 Sync from gcc:
5561
5562 2006-06-12 David Ayers <d.ayers@inode.at>
5563
5564 PR bootstrap/27963
5565 PR target/19970
5566 * configure.in: Remove target-boehm-gc from noconfigdirs where
5567 ${libgcj} is specified.
5568 * configure: Regenerate.
5569
5570 2006-06-08 Jeff Johnston <jjohnstn@redhat.com>
5571
5572 Sync from gcc:
5573
5574 2005-01-12 David Edelsohn <edelsohn@gnu.org>
5575 Andreas Schwab <schwab@suse.de>
5576
5577 PR bootstrap/18033
5578 * config-ml.in: Eval option if surrounded by single quotes.
5579
5580 2006-06-07 Carlos O'Donell <carlos@codesourcery.com>
5581
5582 Sync from gcc:
5583
5584 2006-06-06 David Ayers <d.ayers@inode.at>
5585
5586 PR libobjc/13946
5587 * Makefile.def: Add dependencies for libobjc which boehm-gc.
5588 * Makefile.in: Regenerate.
5589 * configure.in: Add --enable-objc-gc at toplevel and have it
5590 enable boehm-gc for Objective-C.
5591 Remove target-boehm-gc from libgcj.
5592 Add target-boehm-gc to target_libraries.
5593 Add target-boehm-gc to noconfigdirs where ${libgcj}
5594 is specified.
5595 Assert that boehm-gc is supported when requested for Objective-C.
5596 Only build boehm-gc if needed either for Java or Objective-C.
5597 * configure: Regenerate.
5598
5599 2006-06-05 Paolo Bonzini <bonzini@gnu.org>
5600
5601 PR 27674
5602 * Makefile.tpl (configure-[+prefix+][+module+],
5603 all-[+prefix+][+module+]): Depend on stage_current if bootstrapping.
5604 Remove rule to unstage bootstrapped modules.
5605 (stage_current): New.
5606 * Makefile.in: Regenerate.
5607
5608 2006-05-20 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
5609 Andreas Tobler <a.tobler@schweiz.ch>
5610
5611 * configure.in: Enable libgcj for hppa*-hp-hpux11*.
5612 * configure: Rebuilt.
5613
5614 Revert
5615 2006-01-31 Richard Guenther <rguenther@suse.de>
5616 Paolo Bonzini <bonzini@gnu.org>
5617
5618 * Makefile.def (target_modules): Add libgcc-math target module.
5619 * configure.in (target_libraries): Add libgcc-math target library.
5620 (--enable-libgcc-math): New configure switch.
5621 * Makefile.in: Re-generate.
5622 * configure: Re-generate.
5623
5624 2006-06-05 Jeff Johnston <jjohnstn@redhat.com>
5625
5626 * config-ml.in: Alter CCASFLAGS to include special
5627 multilib options the same as is done for CFLAGS.
5628
5629 2006-05-31 Daniel Jacobowitz <dan@codesourcery.com>
5630
5631 * Makefile.def: Added dependencies from sim and gdb on intl, and
5632 added configure dependencies to everything with an all dependency
5633 on intl.
5634 * gettext.m4: Removed.
5635 * src-release (DEVO_SUPPORT): Don't mention gettext.m4.
5636 (GDB_SUPPORT_DIRS): Add intl.
5637 * Makefile.in: Regenerated.
5638
5639 2006-05-25 Daniel Jacobowitz <dan@codesourcery.com>
5640
5641 * src-release (DEVO_SUPPORT): Add config.rpath.
5642
5643 2006-05-25 Paolo Bonzini <bonzini@gnu.org>
5644
5645 * Makefile.def (bfd, opcodes): Fix lib_path.
5646 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Replace ADAC with ADAFLAGS.
5647 (restrap): Move under "@if gcc-bootstrap". Fix typo.
5648 * Makefile.in: Regenerate.
5649
5650 2006-05-24 Mark Shinwell <shinwell@codesourcery.com>
5651
5652 * configure.in: Enable gprof for cross builds.
5653 * configure: Regenerate.
5654
5655 2006-05-17 Daniel Jacobowitz <dan@codesourcery.com>
5656
5657 * src-release (MAKEINFOFLAGS): Define.
5658 (do-proto-toplev): Pass MAKEINFOFLAGS to submakes.
5659
5660 2006-05-14 Ben Elliston <bje@au.ibm.com>
5661
5662 * config.sub, config.guess: Update from upstream sources.
5663
5664 2006-05-12 Ben Elliston <bje@au.ibm.com>
5665
5666 * config.sub, config.guess: Update from upstream sources.
5667
5668 2006-05-04 Steve Ellcey <sje@cup.hp.com>
5669
5670 * blt, iwidgets, mmalloc: Remove directories.
5671
5672 2006-05-01 DJ Delorie <dj@redhat.com>
5673
5674 * configure.in: Restore CFLAGS if GMP isn't present.
5675 * configure: Regenerate.
5676
5677 2006-04-18 DJ Delorie <dj@redhat.com>
5678
5679 * configure.in (m32c): Build libstdc++-v3. Pass flags to
5680 reference libgloss so that libssp can be built in a combined
5681 tree.
5682 * configure: Regenerate.
5683
5684 2006-04-10 Ben Elliston <bje@au.ibm.com>
5685
5686 * contrib: Remove directory.
5687
5688 2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
5689
5690 * Makefile.tpl: Add install-html target.
5691 * Makefile.def: Add install-html target.
5692 * Makefile.in: Regenerate.
5693 * configure.in: Add --with-datarootdir, --with-docdir,
5694 and --with-htmldir options.
5695 * configure: Regenerate.
5696
5697 2006-03-31 Ben Elliston <bje@au.ibm.com>
5698
5699 PR binutils/1860
5700 * configure.in: Require makeinfo 4.4 or higher.
5701 * configure: Regenerate.
5702
5703 2006-03-14 Paolo Bonzini <bonzini@gnu.org>
5704
5705 * Makefile.in: Regenerate.
5706
5707 2006-03-14 Paolo Bonzini <bonzini@gnu.org>
5708
5709 Sync with gcc:
5710 2006-03-10 Aldy Hernandez <aldyh@redhat.com>
5711
5712 * configure.in: Handle --disable-<component> generically.
5713 * configure: Regenerate.
5714
5715 2006-02-21 Rafael Avila de Espindola <rafael.espindola@gmail.com>
5716
5717 * Makefile.tpl (BUILD_CONFIGDIRS): Remove.
5718 (TARGET_CONFIGDIRS): Remove.
5719 * configure.in: Remove AC_SUBST(target_configdirs).
5720 * Makefile.in, configure: Regenerated.
5721
5722
5723 2006-03-01 H.J. Lu <hongjiu.lu@intel.com>
5724
5725 PR libgcj/17311
5726 * ltmain.sh: Don't use "$finalize_rpath" for compile.
5727
5728 2006-02-20 Paolo Bonzini <bonzini@gnu.org>
5729
5730 PR bootstrap/25670
5731
5732 * Makefile.tpl ([+compare-target+]): Print explanation messages.
5733
5734 * Makefile.def (ADAFLAGS, BOOT_ADAFLAGS, LANGUAGES): New flags_to_pass.
5735 * Makefile.tpl (BASE_FLAGS_TO_PASS): Support optional flags_to_pass.
5736 (EXTRA_GCC_FLAGS): Remove ADAFLAGS, BOOT_ADAFLAGS, LANGUAGES,
5737 BUILD_PREFIX, BUILD_PREFIX_1.
5738 * configure.in: (BUILD_PREFIX, BUILD_PREFIX_1): Don't substitute.
5739
5740 * Makefile.def (bootstrap stage 1): Pass LIBCFLAGS too.
5741 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Override LIBCFLAGS too.
5742
5743 * Makefile.tpl (configure-stage[+id+]-[+prefix+][+module+],
5744 all-stage[+id+]-[+prefix+][+module+], : Use $(current_stage) instead
5745 of `cat stage_current`. Always provide the `r' and `s' variables.
5746 (clean-stage[+id+]-[+prefix+][+module+]): Likewise, and make it into
5747 a single shell execution.
5748 (configure-[+prefix+][+module+], all-[+prefix+][+module+]): For
5749 bootstrapped modules, make the stage1 module if the build was not
5750 started yet, else build the current stage.
5751 (all-host, all-target): Omit bootstrapped modules (if bootstrapping).
5752 (all-build, all-host, all-target, [+make_target+]-host,
5753 [+make_target+]-target): Do not use \-continued lines.
5754 (target modules): Depend on stage_last, not all-gcc, if bootstrapping.
5755 (current_stage, restrap, stage_last): New.
5756
5757 * Makefile.in: Regenerate.
5758 * configure: Regenerate.
5759
5760 2006-02-14 Paolo Bonzini <bonzini@gnu.org>
5761
5762 Sync from gcc:
5763
5764 2006-01-31 Richard Guenther <rguenther@suse.de>
5765 Paolo Bonzini <bonzini@gnu.org>
5766
5767 * Makefile.def (target_modules): Add libgcc-math target module.
5768 * configure.in (target_libraries): Add libgcc-math target library.
5769 (--enable-libgcc-math): New configure switch.
5770 * Makefile.in: Re-generate.
5771 * configure: Re-generate.
5772 * libgcc-math: New toplevel directory.
5773
5774 2006-01-18 Richard Henderson <rth@redhat.com>
5775 Jakub Jelinek <jakub@redhat.com>
5776 Diego Novillo <dnovillo@redhat.com>
5777
5778 * libgomp: New directory.
5779 * Makefile.def: Add target_module libgomp.
5780 * Makefile.in: Regenerate.
5781 * configure.in (target_libraries): Add target-libgomp.
5782 * configure: Regenerate.
5783
5784 2006-02-14 Paolo Bonzini <bonzini@gnu.org>
5785 Andreas Schwab <schwab@suse.de>
5786
5787 * configure: Regenerate.
5788
5789 2006-01-16 Paolo Bonzini <bonzini@gnu.org>
5790
5791 * configure.in: Set with_gnu_as, with_gnu_ld, with_newlib earlier.
5792 Set md_exec_prefix. Use ACX_CHECK_INSTALLED_TARGET_TOOL to find
5793 the assembler, linker and binutils.
5794 * configure: Regenerate.
5795
5796 2006-01-16 Nick Clifton <nickc@redhat.com>
5797
5798 * config.sub, config.guess: Sync from config repository.
5799
5800 2006-01-05 Alexandre Oliva <aoliva@redhat.com>
5801
5802 * Makefile.tpl (clean-stage[+id+]-[+prefix+][+module+]): Remove
5803 @ from continuation.
5804 * Makefile.in: Rebuilt.
5805
5806 2006-01-04 Paolo Bonzini <bonzini@gnu.org>
5807
5808 Sync from gcc:
5809
5810 2006-01-04 Paolo Bonzini <bonzini@gnu.org>
5811
5812 PR bootstrap/24252
5813
5814 * Makefile.def (flags_to_pass): Add STAGE1_CFLAGS and STAGE1_LANGUAGES.
5815 * Makefile.tpl (OBJDUMP): New.
5816 (EXTRA_HOST_FLAGS): Add it.
5817 (EXTRA_GCC_FLAGS): Remove flags already specified in flags_to_pass.
5818
5819 * Makefile.tpl (stage[+id+]-start, stage[+id+]-end): Do not try
5820 to use symbolic links between directories. Avoid race conditions
5821 or make them harmless.
5822 * configure.in: Do not try to use symbolic links between directories.
5823
5824 * Makefile.def (LEAN): Pass.
5825 * Makefile.tpl (LEAN): Define.
5826 (stage[+id+]-start): Accept that the previous directory does not
5827 exist, if the bootstrap is lean.
5828 (stage[+id+]-bubble): Invoke lean bootstrap commands after
5829 stage[+id+]-start. Use a makefile variable and an `if' instead of a
5830 configure substitution.
5831 ([+compare-target+]): Likewise.
5832 ([+bootstrap-target+]-lean): New.
5833 * configure.in: Remove lean bootstrap support from here.
5834
5835 * Makefile.in: Regenerate.
5836 * configure: Regenerate.
5837
5838 2006-01-02 Andreas Schwab <schwab@suse.de>
5839
5840 * configure.in: When reconfiguring remove Makefile in
5841 all stage directories.
5842 * configure: Regenerate.
5843
5844 2005-12-27 Leif Ekblad <leif@rdos.net>
5845
5846 * configure.in: Add support for RDOS target.
5847 * configure: Regenerate.
5848
5849 2005-12-27 Nick Clifton <nickc@redhat.com>
5850
5851 PR binutils/1990
5852 * libtool.m4: Synchronize with version in GCC sources.
5853
5854 2005-12-20 Paolo Bonzini <bonzini@gnu.org>
5855
5856 Revert Ada-related part of the previous change.
5857
5858 * Makefile.def (ADAFLAGS, BOOT_ADAFLAGS, ADAFLAGS_FOR_TARGET):
5859 Do not pass.
5860 * Makefile.tpl (BOOT_ADAFLAGS): Do not define.
5861 * Makefile.in: Regenerate.
5862 * configure.in: Do not include mt-ppc-aix target fragment.
5863 * configure: Regenerate.
5864
5865 2005-12-19 Paolo Bonzini <bonzini@gnu.org>
5866
5867 * configure.in: Select appropriate fragments for PowerPC/AIX.
5868 * configure: Regenerate.
5869
5870 * Makefile.def (flags_to_pass): Add ADAFLAGS, BOOT_ADAFLAGS,
5871 BOOT_CFLAGS, BOOT_LDFLAGS.
5872 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Handle BOOT_ADAFLAGS,
5873 BOOT_CFLAGS, BOOT_LDFLAGS.
5874 (TARGET_FLAGS_TO_PASS): Handle ADAFLAGS_FOR_TARGET.
5875 (stage[+id+]-bubble): Pass flags recursively to the comparison target.
5876 (stage): Fail if we cannot complete the work.
5877 * Makefile.in: Regenerate.
5878
5879 2005-12-16 Jeff Johnston <jjohnstn@redhat.com>
5880
5881 * COPYING.NEWLIB: Update copyright year for default
5882 copyright.
5883
5884 2005-12-15 Paolo Bonzini <bonzini@gnu.org>
5885
5886 * Makefile.tpl (all, do-[+make_target+], do-check, install,
5887 install-host-nogcc): Don't invoke $(stage) at the end.
5888 * Makefile.in: Regenerate.
5889
5890 2005-12-14 Paolo Bonzini <bonzini@gnu.org>
5891
5892 * configure.in: Flip the top-level bootstrap switch.
5893 * configure: Regenerate.
5894
5895 Merge from gcc:
5896
5897 2005-12-14 Daniel Jacobowitz <dan@codesourcery.com>
5898
5899 * Makefile.tpl: Throughout the file, use : $(MAKE) along with
5900 $(stage) and $(unstage).
5901 (EXTRA_TARGET_FLAGS): Correct double-quoting.
5902 (all): Remove stray semicolon.
5903 (local-distclean): Don't handle multilib.tmp and multilib.out.
5904 (install.all): Set $s for consistency.
5905 (configure-[+prefix+][+module+]): Instead of [+deps+], handle
5906 check_multilibs setting. Always make the install directory.
5907 (configure-stage[+id+]-[+prefix+][+module+]): Likewise.
5908 Correct @if/@endif.
5909 (all-stage[+id+]-[+prefix+][+module+]): Correct @if/@endif.
5910 ($(TARGET_SUBDIR)/[+module+]/multilib.out): Remove.
5911 (stage[+id+]-start, stage[+id+]-end): Stage $(TARGET_SUBDIR).
5912 (multilib.out): Remove.
5913 * Makefile.in: Regenerated.
5914
5915 2005-12-12 Nathan Sidwell <nathan@codesourcery.com>
5916
5917 * config.sub: Replace ms1 arch with mt. Allow ms1 as alias.
5918 * configure.in: Replace ms1 arch with mt.
5919 * configure: Rebuilt.
5920
5921 2005-12-05 Paolo Bonzini <bonzini@gnu.org>
5922
5923 Sync with gcc:
5924
5925 2005-12-12 Nathan Sidwell <nathan@codesourcery.com>
5926
5927 * config.sub: Replace ms1 arch with mt. Allow ms1 as alias.
5928 * configure.in: Replace ms1 arch with mt.
5929 * configure: Rebuilt.
5930
5931 2005-12-05 Paolo Bonzini <bonzini@gnu.org>
5932
5933 Sync with gcc:
5934
5935 2005-12-05 Paolo Bonzini <bonzini@gnu.org>
5936
5937 * configure.in (CONFIGURED_BISON, CONFIGURED_YACC, CONFIGURED_M4,
5938 CONFIGURED_FLEX, CONFIGURED_LEX, CONFIGURED_MAKEINFO): Remove
5939 "CONFIGURED_" from the AC_CHECK_PROGS invocation. Move below.
5940 Find in-tree tools if available.
5941 (EXPECT, RUNTEST, LIPO, STRIP): Find them and substitute them.
5942 (CONFIGURED_*_FOR_TARGET): Don't set nor substitute.
5943 (*_FOR_TARGET): Set them with GCC_TARGET_TOOL.
5944 (COMPILER_*_FOR_TARGET): New.
5945 * Makefile.tpl (HOST_EXPORTS): Add *_FOR_TARGET symbols that gcc needs.
5946 (BASE_TARGET_EXPORTS): Use COMPILER_*_FOR_TARGET symbols.
5947 (CONFIGURED_*, USUAL_*): Remove.
5948 (BISON, YACC, FLEX, LEX, M4, MAKEINFO, EXPECT, RUNTEST, LIPO,
5949 STRIP): Use autoconf substitutions.
5950 (COMPILER_AS_FOR_TARGET, COMPILER_LD_FOR_TARGET,
5951 COMPILER_NM_FOR_TARGET): New.
5952 (EXTRA_HOST_FLAGS): Pass LIPO and STRIP.
5953
5954 (all): Make all-host and all-target in parallel.
5955 (do-[+make_target+], do-check, install, [+compare-target+]): Ensure
5956 that $$r and $$s are set before invoking a recursive make.
5957 (stage[+id+]-bubble): Likewise, and invoke the comparison at the end.
5958 ([+bootstrap-target+]): Inline most of the `all' target.
5959
5960 2005-11-29 Ben Elliston <bje@au.ibm.com>
5961
5962 * Makefile.tpl (clean-target-libgcc): Invoke clean-target-libgcc
5963 from the gcc build directory.
5964 * Makefile.in: Regenerate.
5965
5966 2005-11-29 Ben Elliston <bje@au.ibm.com>
5967
5968 * Makefile.def: Add new libdecnumber host_module. Make all-gcc
5969 depend on all-libdecnumber.
5970 * configure.in (host_libs): Include libdecnumber.
5971 * Makefile.in: Regenerate.
5972 * configure: Likewise.
5973
5974 2005-11-21 Kean Johnston <jkj@sco.com>
5975
5976 * config.sub, config.guess: Sync from upstream sources.
5977
5978 2005-11-11 Daniel Jacobowitz <dan@codesourcery.com>
5979
5980 * Makefile.def: Remove gdb dependencies for gdbtk.
5981 * Makefile.tpl (CONFIGURE_GDB_TK, INSTALL_GDB_TK): New variables.
5982 (configure-gdb, install-gdb): New rules.
5983 * configure.in: Set CONFIGURE_GDB_TK and INSTALL_GDB_TK.
5984 * Makefile.in, configure: Regenerated.
5985
5986 2005-10-22 Paolo Bonzini <bonzini@gnu.org>
5987
5988 PR bootstrap/24297
5989 * Makefile.tpl (do-[+make-target+], do-check, install,
5990 stage[+id+]-bubble, [+compare-target+]): Ensure $$r and $$s
5991 are set before recursing.
5992 * Makefile.in: Regenerate.
5993
5994 2005-10-20 Eric Botcazou <ebotcazou@adacore.com>
5995
5996 PR bootstrap/18939
5997 * Makefile.def (gcc) <target>: Fix thinko.
5998 * Makefile.in: Regenerate.
5999
6000 2005-10-17 Bernd Schmidt <bernd.schmidt@analog.com>
6001
6002 * configure.in (bfin-*-*): Use test, not brackets, in if statement.
6003 * configure: Regenerate.
6004
6005 2005-10-09 Kazu Hirata <kazu@codesourcery.com>
6006
6007 * configure.in (arm-*-linux-gnueabi): Add to noconfigdirs
6008 target-libffi, target-qthreads, target-libjava, and
6009 targetlibobjc.
6010 * configure: Regenerate.
6011
6012 2005-10-06 Daniel Jacobowitz <dan@codesourcery.com>
6013
6014 * Makefile.def (flags_to_pass): Add OBJDUMP_FOR_TARGET.
6015 * Makefile.tpl (BASE_TARGET_EXPORTS): Add OBJDUMP.
6016 (OBJDUMP_FOR_TARGET, CONFIGURED_OBJDUMP_FOR_TARGET)
6017 (USUAL_OBJDUMP_FOR_TARGET): New.
6018 (EXTRA_TARGET_FLAGS): Add OBJDUMP.
6019 * configure.in: Check for $OBJDUMP_FOR_TARGET.
6020 * configure, Makefile.in: Regenerated.
6021
6022 2005-10-05 Paolo Bonzini <bonzini@gnu.org>
6023
6024 * Makefile.tpl (all) [gcc-no-bootstrap]: Make prebootstrap packages
6025 before other host packages.
6026
6027 2005-10-05 Paolo Bonzini <bonzini@gnu.org>
6028
6029 PR bootstrap/22340
6030
6031 * configure.in (default_target): Remove.
6032 * Makefile.tpl (all): Do not use prerequisites as subroutines
6033 (all) [gcc-bootstrap]: Bootstrap gcc first if it was not done yet.
6034 (do-[+make_target+], check, install, [+bootstrap_target+]): Do not
6035 use prerequisites as subroutines.
6036 (check-host, check-target): New.
6037 (bootstrap configure & all targets): Do not use stage*-start
6038 if the directory layout is already ok.
6039 (non-bootstrap configure & all targets): Prepend a $(unstage).
6040 (stage[+id+]-bubble): Do that here. Do not use NOTPARALLEL.
6041 (NOTPARALLEL): Remove.
6042 (unstage, stage variables): New variables.
6043 (unstage, stage targets): Simply expand to those variables.
6044
6045 * configure: Regenerate.
6046 * Makefile.in: Regenerate.
6047
6048 2005-10-04 James E Wilson <wilson@specifix.com>
6049
6050 * Makefile.def (lang_env_dependencies): Add libmudflap.
6051 * Makefile.in: Regenerate.
6052
6053 2005-10-03 Catherine Moore <clm@cm00re.com>
6054
6055 * configure.in (bfin-*-*): Support bfin.
6056 * configure: Regenerated.
6057
6058 2005-09-30 H.J. Lu <hongjiu.lu@intel.com>
6059
6060 * configure.in (*-*-darwin*): Build bfd, binutils and opcodes.
6061 * configure: Regenerated.
6062
6063 2005-09-28 Geoffrey Keating <geoffk@apple.com>
6064
6065 * Makefile.tpl (BASE_TARGET_EXPORTS): Add LIPO, STRIP.
6066 (LIPO_FOR_TARGET): New.
6067 (CONFIGURED_LIPO_FOR_TARGET): New.
6068 (USUAL_LIPO_FOR_TARGET): New.
6069 (STRIP_FOR_TARGET): New.
6070 (CONFIGURED_STRIP_FOR_TARGET): New.
6071 (USUAL_STRIP_FOR_TARGET): New.
6072 * Makefile.def (flags_to_pass): Add LIPO_FOR_TARGET and
6073 STRIP_FOR_TARGET.
6074 * configure.in: Set LIPO_FOR_TARGET, STRIP_FOR_TARGET,
6075 CONFIGURED_LIPO_FOR_TARGET, CONFIGURED_STRIP_FOR_TARGET.
6076 * Makefile.in: Regenerate.
6077 * configure: Regenerate.
6078
6079 2005-09-19 David Edelsohn <edelsohn@gnu.org>
6080
6081 * configure.in (powerpc-*-aix*): Add target-libssp to noconfigdirs.
6082 (rs6000-*-aix*): Same.
6083 * configure: Regenerate.
6084
6085 2005-09-14 Francois-Xavier Coudert <coudert@clipper.ens.fr>
6086
6087 * configure.in: Recognize f95 in the --enable-languages option,
6088 and substitute it for fortran, issuing a warning.
6089 * configure: Regenerate.
6090
6091 2005-09-07 Ben Elliston <bje@au.ibm.com>
6092
6093 Import from Autoconf sources:
6094
6095 2005-09-06 Paul Eggert <eggert@cs.ucla.edu>
6096 * move-if-change: Don't output "$2 is unchanged"; suggested by Ben
6097 Elliston. Handle weird characters correctly.
6098
6099 2005-08-30 Phil Edwards <phil@codesourcery.com>
6100
6101 * configure.in (*-*-vxworks*): Add target-libstdc++-v3 to noconfigdirs.
6102 * configure: Regenerated.
6103
6104 2005-08-20 Richard Earnshaw <richard.earnshaw@arm.com>
6105
6106 * Makefile.def (libssp): Add to lang_env_dependencies.
6107 * Makefile.in: Regenerate.
6108
6109 2005-08-17 Christian Groessler <chris@groessler.org>
6110
6111 * Makefile.tpl: (USUAL_CC_FOR_TARGET): Add missing trailing slash.
6112 * Makefile.in: Regenerate.
6113
6114 2005-08-12 Paolo Bonzini <bonzini@gnu.org>
6115
6116 * configure.in: Replace NCN_STRICT_CHECK_TOOL with
6117 NCN_STRICT_CHECK_TOOLS, and likewise for NCN_STRICT_CHECK_TARGET_TOOLS.
6118 Look for alternate names of the target cc and c++
6119 * configure: Regenerate.
6120
6121 2005-08-08 Paolo Bonzini <bonzini@gnu.org>
6122
6123 * configure.in (CC_FOR_TARGET, CXX_FOR_TARGET, GCJ_FOR_TARGET,
6124 GCC_FOR_TARGET, RAW_CXX_FOR_TARGET, GFORTRAN_FOR_TARGET): Find
6125 them with NCN_STRICT_CHECK_TARGET_TOOL, like the other target
6126 tools; remove code to manually set them.
6127 (Target tools): Look in the environment for them.
6128 * Makefile.tpl (CC_FOR_TARGET, CXX_FOR_TARGET, GCJ_FOR_TARGET,
6129 GCC_FOR_TARGET, RAW_CXX_FOR_TARGET, GFORTRAN_FOR_TARGET): Redefine.
6130 (AS_FOR_TARGET, LD_FOR_TARGET, NM_FOR_TARGET): Look into gcc
6131 build directory.
6132 (CONFIGURED_CC_FOR_TARGET, CONFIGURED_CXX_FOR_TARGET,
6133 CONFIGURED_GCJ_FOR_TARGET, CONFIGURED_GCC_FOR_TARGET,
6134 CONFIGURED_GFORTRAN_FOR_TARGET, USUAL_CC_FOR_TARGET,
6135 USUAL_CXX_FOR_TARGET, USUAL_GCJ_FOR_TARGET, USUAL_GCC_FOR_TARGET,
6136 USUAL_RAW_CXX_FOR_TARGET, USUAL_GFORTRAN_FOR_TARGET): New.
6137 (CXX_FOR_TARGET_FOR_RECURSIVE_MAKE,
6138 RAW_CXX_FOR_TARGET_FOR_RECURSIVE_MAKE, RECURSE_FLAGS): Delete.
6139 * configure: Regenerate.
6140 * Makefile.in: Regenerate.
6141
6142 2005-07-27 Mark Mitchell <mark@codesourcery.com>
6143
6144 * Makefile.tpl (EXTRA_TARGET_FLAGS): Set LDFLAGS=LDFLAGS_FOR_TARGET.
6145 * Makefile.def (flags_to_pass): Add LDFLAGS_FOR_TARGET.
6146 * Makefile.in: Regenerated.
6147
6148 2005-07-26 Mark Mitchell <mark@codesourcery.com>
6149
6150 * Makefile.tpl (SYSROOT_CFLAGS_FOR_TARGET): New variable.
6151 (CFLAGS_FOR_TARGET): Use it.
6152 (CXXFLAGS_FOR_TARGET): Likewise.
6153 * Makefile.in: Regenerated.
6154 * configure.in (--with-build-sysroot): New option.
6155 * configure: Regenerated.
6156
6157 2005-07-24 Paolo Bonzini <bonzini@gnu.org>
6158
6159 * Makefile.tpl: Wrap install between unstage and stage
6160 * Makefile.in: Regenerate.
6161
6162 2005-07-16 Kelley Cook <kcook@gcc.gnu.org>
6163
6164 * all files: Update FSF address.
6165
6166 2005-07-14 Jim Blandy <jimb@redhat.com>
6167
6168 * configure.in: Add cases for Renesas m32c.
6169 * configure: Regenerated.
6170
6171 2005-07-14 Kelley Cook <kcook@gcc.gnu.org>
6172
6173 * COPYING, compile, config-ml.in, config.guess,
6174 config.sub, install-sh, missing, mkinstalldirs,
6175 symlink-tree, ylwrap: Sync from upstream sources.
6176
6177 2005-07-13 Eric Christopher <echristo@redhat.com>
6178
6179 * configure.in: Add toplevel noconfigdir support for tpf.
6180 * configure: Regenerate.
6181
6182 2005-07-11 Jakub Jelinek <jakub@redhat.com>
6183
6184 * Makefile.def (target_modules): Add libssp.
6185 * configure.in (target_libraries): Add target-libssp.
6186 * configure: Rebuilt.
6187 * Makefile.in: Rebuilt.
6188
6189 2005-07-11 Paolo Bonzini <bonzini@gnu.org>
6190
6191 PR ada/22340
6192
6193 * Makefile.def: Sync with gcc.
6194 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Fix pasto.
6195 * Makefile.in: Regenerate.
6196
6197 2005-07-07 Andreas Schwab <schwab@suse.de>
6198
6199 * Makefile.def (flags_to_pass): Add CFLAGS_FOR_BUILD.
6200 * Makefile.tpl (EXTRA_GCC_FLAGS): Don't pass CFLAGS_FOR_BUILD here.
6201 * Makefile.in: Regenerated.
6202
6203 2005-07-07 Kazu Hirata <kazu@codesourcery.com>
6204
6205 * configure.in: Add --enable-libssp and --disable-libssp.
6206 * configure: Regenerate with autoconf-2.13.
6207
6208 2005-07-06 Geoffrey Keating <geoffk@apple.com>
6209
6210 * configure.in: Don't build sim or rda when targetting darwin.
6211 * configure: Regenerate.
6212
6213 2005-07-04 Ben Elliston <bje@gnu.org>
6214
6215 * src-release (do-proto-toplev): Remove dejagnu bits.
6216 (DEJAGNU_SUPPORT_DIRS): Remove.
6217 (dejagnu.tar.bz2, dejagnu.tar): Likewise.
6218 (GDBD_SUPPORT_DIRS): Likewise.
6219 (gdb+dejagnu.tar.bz2, gdb+dejagnu.tar): Likewise.
6220 (INSIGHTD_SUPPORT_DIRS): Likewise.
6221 (insight+dejagnu.tar.bz2, insight+dejagnu.tar): Likewise.
6222
6223 2005-06-30 Ben Elliston <bje@gnu.org>
6224
6225 * setup.com (mpw): Remove unused directive.
6226
6227 2005-06-22 Paolo Bonzini <bonzini@gnu.org>
6228
6229 * Makefile.def (stagefeedback): Come after profile.
6230 Define profiledbootstrap target.
6231 * Makefile.tpl (profiledbootstrap): Remove.
6232 (stageprofile-end): Zap stagefeedback.
6233 (stagefeedback-start): Copy all .gcda files, not only GCC's.
6234 * Makefile.in: Regenerate.
6235
6236 2005-06-13 Zack Weinberg <zack@codesourcery.com>
6237
6238 * depcomp: Update from automake CVS. Add 'ia64hp' stanza.
6239 In 'cpp' stanza, support '#line' as well as '# '.
6240
6241 2005-06-07 Hans-Peter Nilsson <hp@axis.com>
6242
6243 * configure.in (unsupported_languages): New macro.
6244 <mmix-knuth-mmixware>: Set unsupported_languages. Name explicit
6245 non-ported target libraries in noconfigdirs.
6246 <cris-*, crisv32-*> Ditto, except for non-aout, non-elf,
6247 non-linux-gnu. Remove libgcj_ex_libffi.
6248 <lang_frag loop>: Set add_this_lang=no if the language is in
6249 unsupported_languages.
6250 * configure: Regenerate.
6251
6252 2005-06-04 Tobias Schl"uter <tobias.schlueter@physik.uni-muenchen.de>
6253
6254 * configure.in: Fix typo in handling of --with-mpfr-dir.
6255 * configure: Regenerate.
6256
6257 2005-06-02 Jim Blandy <jimb@redhat.com>
6258
6259 * config.sub: Add cases for the Renesas m32c. (This patch has been
6260 accepted into the master sources.)
6261
6262 2005-06-02 Aldy Hernandez <aldyh@redhat.com>
6263 Michael Snyder <msnyder@redhat.com>
6264 Stan Cox <scox@redhat.com>
6265
6266 * configure.in: Set noconfigdirs for ms1.
6267
6268 * configure: Regenerate.
6269
6270 2005-05-25 Paolo Bonzini <bonzini@gnu.org>
6271
6272 * Makefile.tpl (stage[+id+]-start): Iterate over target module as well.
6273 (Dependencies): Consider target modules for bootstrap dependencies.
6274 Make target bootstrap modules depend on each stage's gcc.
6275 * Makefile.in: Regenerate.
6276
6277 2005-05-20 Paolo Bonzini <bonzini@gnu.org>
6278
6279 * Makefile.def (configure-gcc): Depend on binutils having been built.
6280 (all-gcc): No need to do it here.
6281 * Makefile.in: Regenerate.
6282
6283 2005-05-19 Paul Brook <paul@codesourcery.com>
6284
6285 * configure.in: Rewrite misleading error message when requested
6286 language cannot be built.
6287 * configure: Regenerate.
6288
6289 2005-05-15 Daniel Jacobowitz <dan@codesourcery.com>
6290
6291 * ylwrap: Import from Automake 1.9.5.
6292
6293 2005-05-04 Mike Stump <mrs@apple.com>
6294
6295 * configure.in: Always pass --target to target configures as
6296 otherwise rebuilds that do --recheck will fail.
6297 * configure: Rebuilt.
6298
6299 2005-05-04 Paolo Bonzini <bonzini@gnu.org>
6300
6301 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Rename from
6302 STAGE_HOST_EXPORTS.
6303 (configure, all): Add bootstrap support.
6304 (Host modules, target modules): Pass post-stage1 flags and exports.
6305 (Top-level bootstrap): Remove bootstrap rules, expanded elsewhere.
6306 * Makefile.in: Regenerate.
6307
6308 2005-04-29 Paolo Bonzini <bonzini@gnu.org>
6309
6310 Sync from gcc:
6311
6312 2005-04-22 Bernd Schmidt <bernd.schmidt@analog.com>
6313
6314 * config.sub: Update from master copy.
6315
6316 2005-04-19 Hans-Peter Nilsson <hp@axis.com>
6317
6318 * configure.in <crisv32-*-*, cris-*-*>: New local variable
6319 libgcj_ex_libffi. Have specific match for *-*-linux*. Separate
6320 matches for "*-*-aout" and "*-*-elf". Don't disable libffi for
6321 "*-*-elf" and "*-*-linux*".
6322 * configure: Regenerate.
6323
6324 2005-04-06 Paolo Bonzini <bonzini@gnu.org>
6325
6326 * Makefile.tpl (BUILD_CONFIGARGS): Include --with-build-subdir.
6327 (TARGET_CONFIGARGS): Include --with-target-subdir.
6328 (configure, all): New macros. Use them throughout.
6329
6330 2005-04-05 Paolo Bonzini <bonzini@gnu.org>
6331
6332 * Makefile.tpl: Sync with gcc.
6333 * Makefile.in: Regenerate.
6334
6335 2005-03-30 J"orn Rennecke <joern.rennecke@st.com>
6336
6337 * config/mh-mingw32: Delete.
6338 * configure.in: Don't use it.
6339 * configure: Regenerate.
6340
6341 2005-03-31 Paolo Bonzini <bonzini@gnu.org>
6342
6343 * Makefile.def (bfd, opcodes, libstdc++-v3, libmudflap): Set lib_path.
6344 * Makefile.tpl (SET_LIB_PATH, REALLY_SET_LIB_PATH): Remove.
6345 (HOST_EXPORTS, STAGE_HOST_EXPORTS, TARGET_EXPORTS): Set $(RPATH_ENVVAR).
6346 (HOST_LIB_PATH): Generate from Makefile.def.
6347 (TARGET_LIB_PATH): Likewise.
6348 (Old bootstrap targets): Include TARGET_LIB_PATH into RPATH_ENVVAR.
6349 * Makefile.in: Regenerate.
6350 * configure.in (set_lib_path, SET_LIB_PATH, SET_GCC_LIB_PATH): Remove.
6351 (RPATH_ENVVAR): Include Darwin case.
6352 * configure: Regenerate.
6353
6354 2005-03-25 Paolo Bonzini <bonzini@gnu.org>
6355
6356 * configure.in (RPATH_ENVVAR): Set to DYLD_LIBRARY_PATH on Darwin.
6357 * configure: Regenerate.
6358
6359 2005-03-21 Zack Weinberg <zack@codesourcery.com>
6360
6361 * Makefile.def: Remove libstdcxx_incdir, libsubdir, gxx_include_dir,
6362 gcc_version, and gcc_version_trigger from set of flags to pass.
6363 * Makefile.tpl: Remove definitions of above variables.
6364 (config.status): Remove dependency on $(gcc_version_trigger).
6365 * Makefile.in: Regenerate.
6366 * configure.in: Do not reference config/gcc-version.m4 nor
6367 config/gxx-include-dir.m4. Do not invoke TL_AC_GCC_VERSION nor
6368 TL_AC_GXX_INCLUDE_DIR. Do not set gcc_version_trigger.
6369 * configure: Regenerate.
6370
6371 2005-03-16 Manfred Hollstein <manfred.h@gmx.net>
6372 Andrew Pinski <pinskia@physics.uc.edu>
6373
6374 * Makefile.tpl (check-[+module+]): Fix shell statement inside if ... fi.
6375 * Makefile.in: Regenerate.
6376
6377 2005-03-01 Alexandre Oliva <aoliva@redhat.com>
6378
6379 PR libgcj/20160
6380 * ltmain.sh: Avoid creating archives with components that have
6381 duplicate basenames.
6382
6383 2005-02-28 Andrew Pinski <pinskia@physics.uc.edu>
6384
6385 PR bootstrap/20250
6386 * Makefile.tpl (HOST target installs): Fix copy and pasto, use install
6387 instead of check.
6388 * Makefile.in: Regenerate.
6389
6390 2005-02-28 Paolo Bonzini <bonzini@gnu.org>
6391
6392 Sync from gcc.
6393
6394 2005-02-28 Paolo Bonzini <bonzini@gnu.org>
6395
6396 PR bootstrap/17383
6397 * Makefile.def (target_modules): Remove "stage", now unnecessary.
6398 * Makefile.tpl (HOST_SUBDIR): New substitution.
6399 (STAGE_HOST_EXPORTS, EXPECT, HOST_LIB_PATH, USUAL_AR_FOR_TARGET,
6400 USUAL_AS_FOR_TARGET, USUAL_DLLTOOL_FOR_TARGET, USUAL_GCC_FOR_TARGET,
6401 USUAL_LD_FOR_TARGET, USUAL_NM_FOR_TARGET, USUAL_OBJDUMP_FOR_TARGET,
6402 USUAL_RANLIB_FOR_TARGET, USUAL_WINDRES_FOR_TARGET): Use it.
6403 (Host modules, Bootstrapped modules): Use it.
6404 (Build modules, Target modules): Do not create symlink trees,
6405 always configure out-of-srcdir.
6406 (distclean): Try removing $(host_subdir) with rm before using rm -rf.
6407 * configure.in (FLAGS_FOR_TARGET, CC_FOR_TARGET, GCJ_FOR_TARGET,
6408 GFORTRAN_FOR_TARGET, CXX_FOR_TARGET, RAW_CXX_FOR_TARGET): Use
6409 $(HOST_SUBDIR). Create a symlink for host_subdir.
6410
6411 * Makefile.in: Regenerate.
6412 * configure: Regenerate.
6413
6414 Merged from libada-gnattools-branch:
6415 2004-11-28 Nathanael Nerode <neroden@gcc.gnu.org>
6416
6417 * Makefile.def: Add gnattools as a module, depending on target-libada.
6418 * Makefile.in: Regenerate.
6419 * configure.in: Include gnattools in host_tools; disable it if ada
6420 is disabled.
6421 * configure: Regenerate.
6422
6423 2005-02-23 Nick Clifton <nickc@redhat.com>
6424
6425 * configure: Regenerate.
6426
6427 2005-02-22 Paul Schlie <schlie@comcast.net>
6428
6429 * configure.in: Allow darwin targeted ports to build tk, itcl and
6430 libgui.
6431
6432 2005-02-21 Eric Botcazou <ebotcazou@libertysurf.fr>
6433
6434 PR libgcj/10353
6435 * configure.in (noconfigdirs) <sparc-*-solaris2.[0-6]>: Add libgcj.
6436 * configure: Regenerate.
6437
6438 2005-02-08 Andrew Cagney <cagney@gnu.org>
6439
6440 * MAINTAINERS: Delete reference to dejagnu/ and mmalloc/ from the
6441 gdb/ section. Update GDB's URL.
6442
6443 2005-01-31 Andrew Cagney <cagney@gnu.org>
6444
6445 * gettext.m4: Only set ENABLE_NLS when gettext is present.
6446
6447 2005-01-29 Hans-Peter Nilsson <hp@axis.com>
6448
6449 * configure.in (noconfigdirs) <crisv32-*-*>: Match like cris-*-*.
6450 <crisv32-*-*, cris-*-*>: Only disable target-newlib and
6451 target-libgloss when not *-*-elf and *-*-aout.
6452 * configure: Regenerate.
6453
6454 2005-01-27 Andrew Cagney <cagney@gnu.org>
6455
6456 * gettext.m4: Don't use NONE as a default for CATOBJEXT.
6457
6458 2005-01-24 Andrew Cagney <cagney@gnu.org>
6459
6460 * gettext.m4: Only fall back to ../intl/ when it's present.
6461
6462 2005-01-17 Kelley Cook <kcook@gcc.gnu.org>
6463
6464 * install-sh, config.sub: Import from upstream.
6465
6466 2005-01-17 Kelley Cook <kcook@gcc.gnu.org>
6467
6468 PR bootstrap/18222
6469 * Makefile.def: Pass CPPFLAGS_FOR_TARGET.
6470 * Makefile.tpl: Define target CPPFLAGS on CPPFLAGS_FOR_TARGET.
6471 * Makefile.in: Regenerate.
6472
6473 2005-01-03 Paolo Bonzini <bonzini@gnu.org>
6474
6475 Revert 2004-12-28 Makefile changes, a better fix will be
6476 applied to mainline and src after GCC 4.0 branches.
6477
6478 2004-12-28 Paolo Bonzini <bonzini@gnu.org>
6479
6480 PR bootstrap/17383
6481
6482 * Makefile.def (target_modules): Remove stage parameter,
6483 it is always true now.
6484 * Makefile.tpl (configure-build-[+module+],
6485 configure-target-[+module+]): Always build symlink tree
6486 for the directory and for include. BUILD_SUBDIR and
6487 TARGET_SUBDIR cannot be . anymore.
6488 * Makefile.in: Regenerate.
6489
6490 2004-12-25 David Edelsohn <edelsohn@gnu.org>
6491
6492 Revert 2004-12-08 Makefile changes.
6493
6494 2004-12-16 Andrew Stubbs <andrew.stubbs@st.com>
6495
6496 * configure.in (sh64-*-*): Reenable gprof.
6497 * configure: Regenerate.
6498
6499 2004-12-09 Jim Blandy <jimb@redhat.com>
6500
6501 * MAINTAINERS: List 'depcomp' as part of automake.
6502
6503 2004-12-08 David Edelsohn <edelsohn@gnu.org>
6504
6505 * Makefile.def (flags_to_pass): Add PICFLAG_FOR_TARGET.
6506 * Makefile.tpl (EXTRA_HOST_FLAGS): Add PICFLAG.
6507 (EXTRA_TARGET_FLAGS): Add PICFLAG.
6508 * Makefile.in: Regenerate.
6509
6510 2004-12-07 Matt Kraai <kraai@ftbfs.org>
6511
6512 * Makefile.tpl: Generate normal dependencies if the LHS module is
6513 not bootstrapped.
6514 * Makefile.in: Regenerate.
6515
6516 2004-12-03 Richard Sandiford <rsandifo@redhat.com>
6517
6518 * configure.in: Include config/gxx-include-dir.m4. Use
6519 TL_AC_GXX_INCLUDE_DIR. Remove some now-redundant AC_SUBSTs.
6520 * configure: Regenerate.
6521
6522 2004-12-03 Richard Sandiford <rsandifo@redhat.com>
6523
6524 * config.if: Delete.
6525 * configure.in: Set libstdcxx_incdir directly.
6526 * configure: Regenerate.
6527 * MAINTAINERS: Remove mention of config.if.
6528 * src-release (DEVO_SUPPORT): Remove config.if.
6529
6530 2004-12-02 Eric Christopher <echristo@redhat.com>
6531
6532 * Makefile.tpl (clean-target-libgcc): Add stmp-dirs to list
6533 of things to remove.
6534 * Makefile.in: Regenerate.
6535
6536 2004-12-02 Richard Sandiford <rsandifo@redhat.com>
6537
6538 * configure.in: Clear gcc_version_trigger if the file doesn't exist.
6539 * configure: Regenerate.
6540
6541 2004-12-02 Richard Sandiford <rsandifo@redhat.com>
6542
6543 * configure.in: Include config/gcc-version.m4. Use TL_AC_GCC_VERSION
6544 to set gcc_version_trigger. Remove some now-redundant AC_SUBSTs.
6545 * configure: Regenerate.
6546
6547 2004-11-26 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
6548
6549 * configure.in (hppa*-*-linux*): Don't add libgcj to noconfigdirs.
6550 (hppa*64*-*-*): Delete incorrect comment.
6551 * configure: Rebuilt.
6552
6553 2004-11-15 Kelley Cook <kcook@gcc.gnu.org>
6554
6555 * install-sh, compile: Import from automake.
6556
6557 2004-11-15 Kelley Cook <kcook@gcc.gnu.org>
6558
6559 * config.guess, config.sub: Import from savannnah.
6560
6561 2004-11-12 Mike Stump <mrs@apple.com>
6562
6563 * Makefile.def: Add html support.
6564 * Makefile.tpl: Likewise.
6565 * Makefile.in: Regenerate.
6566
6567 2004-11-11 Geoffrey Keating <geoffk@apple.com>
6568
6569 PR 18423
6570 * configure.in: Remove all instances of build-fixincludes from
6571 noconfigdirs.
6572 (build_configargs): Supply --target to subdirectories.
6573 * configure: Regenerate.
6574
6575 * Makefile.def: Make gcc install depend on fixincludes install.
6576 * Makefile.in: Regenerate.
6577
6578 2004-11-08 Hans-Peter Nilsson <hp@bitrange.com>
6579
6580 * configure.in (noconfigdirs) [mmix-*-*]: Disable
6581 target-libgfortran.
6582 * configure: Regenerate.
6583
6584 2004-11-07 David Edelsohn <edelsohn@gnu.org>
6585
6586 * config-ml.in: Pass FCFLAGS for multilibs, handle GFORTRAN
6587 like CC.
6588
6589 2004-11-05 Paolo Bonzini <bonzini@gnu.org>
6590
6591 * Makefile.def (host fixincludes): Specify missing targets.
6592 * Makefile.in: Regenerate.
6593
6594 2004-11-04 H.J. Lu <hongjiu.lu@intel.com>
6595
6596 PR other/17783
6597 * configure.in: Set up LD_LIBRARY_PATH by default for gcc.
6598 * configure: Regenerated.
6599
6600 2004-11-04 Daniel Jacobowitz <dan@debian.org>
6601
6602 * configure.in (arm-*-oabi*, thumb-*-oabi*): Remove.
6603 * configure: Regenerated.
6604
6605 2004-10-28 Eric B. Weddington <ericw@evcohs.com>
6606
6607 PR target/18151
6608 * configure.in (case ${target}): Do not build fixincludes for avr.
6609 * configure: Regenerated.
6610
6611 2004-10-26 Paolo Bonzini <bonzini@gnu.org>
6612
6613 * configure.in (case ${target}): Do not build fixincludes
6614 on platforms where it is not used.
6615 * configure: Regenerated.
6616
6617 2004-10-23 Daniel Jacobowitz <dan@debian.org>
6618
6619 * configure.in: Use an absolute path to install-sh.
6620 * configure: Regenerated.
6621
6622 2004-10-19 Andrew Cagney <cagney@gnu.org>
6623
6624 * src-release (do-djunpack, do-md5sum): Install the generated file
6625 directly into the proto-toplev/ directory.
6626
6627 2004-10-19 Andrew Cagney <cagney@gnu.org>
6628
6629 * src-release (GDB_SUPPORT_DIRS): Remove utils and intl.
6630
6631 2004-10-12 Kelley Cook <kcook@gcc.gnu.org>
6632
6633 * configure.in (*-*-cygwin*): Supress warning if newlib not present.
6634 * configure: Regenerate.
6635
6636 2004-10-06 Paolo Bonzini <bonzini@gnu.org>
6637
6638 Fix wrong conflict resolution in:
6639
6640 2004-08-16 Paolo Bonzini <bonzini@gnu.org>
6641
6642 * Makefile.in: Regenerate.
6643 * Makefile.tpl (Autogenerated `all-*' targets): Invoke $(TARGET-*)
6644 in the recursive `make', instead of hardwiring `all'.
6645 (Autogenerated TARGET-* variables): New.
6646
6647 2004-10-05 Ulrich Weigand <uweigand@de.ibm.com>
6648
6649 Merged from GCC / libtool upstream:
6650 2004-10-02 P.J. Darcy <darcypj@us.ibm.com>
6651 * ltcf-c.sh (tpf*): Add ld_shlibs=yes.
6652 * ltcf-cxx.sh (tpf*): Likewise.
6653 * ltconfig (tpf*): Add TPF OS configuration support.
6654
6655 2004-09-30 Tomer Levi <Tomer.Levi@nsc.com>
6656
6657 * configure.in: Enable target-libgloss for crx-*-*.
6658 * configure: Regenerate.
6659
6660 2004-09-24 Michael Roth <mroth@nessie.de>
6661
6662 * configure.in (--without-headers): Add missing double quotes.
6663 * configure: Regenerate.
6664
6665 2004-09-24 Kelley Cook <kcook@gcc.gnu.org>
6666
6667 * ylwrap: Revert to previous version.
6668
6669 2004-09-23 H.J. Lu <hongjiu.lu@intel.com>
6670
6671 PR bootstrap/17369
6672 * Makefile.tpl (REALLY_SET_LIB_PATH): Add @SET_GCC_LIB_PATH@.
6673 (HOST_EXPORTS]): Add @SET_GCC_LIB_PATH@. Set and export
6674 SET_GCC_LIB_PATH_CMD.
6675 (BASE_TARGET_EXPORTS): Likewise.
6676 * Makefile.in: Regenerated.
6677
6678 * configure.in (SET_GCC_LIB_PATH): Set and substitute.
6679 * configure: Regenerated.
6680
6681 2004-09-23 Kelley Cook <kcook@gcc.gnu.org>
6682
6683 * config.guess: New upstream version
6684 * compile, depcomp, install-sh, ylwrap: Likewise.
6685
6686 2004-09-19 Roger Sayle <roger@eyesopen.com>
6687
6688 * config/mh-x86omitfp: New host makefile fragment. Add
6689 -fomit-frame-pointer to the default BOOT_CFLAGS.
6690 * configure.in: Use it to speed up bootstrap on some IA-32 hosts.
6691 * configure: Regenerate.
6692
6693 2004-09-15 Andrew Pinski <pinskia@physics.uc.edu>
6694
6695 PR target/11572
6696 * configure.in (*-*-darwin*): Renable libobjc.
6697 * configure: Regenerate.
6698
6699 2004-09-09 Daniel Berlin <dberlin@dberlin.org>
6700
6701 * Makefile.def: Remove libbanshee.
6702 * Makefile.tpl: Ditto.
6703 * configure.in: Ditto.
6704 * Makefile.in: Regen.
6705 * configure: Ditto.
6706
6707 2004-09-07 Paolo Bonzini <bonzini@gnu.org>
6708
6709 * missing: Import latest version from master repository.
6710
6711 2004-09-04 Nick Clifton <nickc@redhat.com>
6712
6713 * config.sub: Import latest version from master repository.
6714 * config.guess: Likewise.
6715 This includes these changes:
6716
6717 2004-08-27 Hans-Peter Nilsson <hp@axis.com>
6718
6719 * config.sub: Handle crisv32, alias etraxfs.
6720 * config.guess (crisv32:Linux:*:*): Handle.
6721
6722 2004-08-13 Brad Smith <brad@comstyle.com>
6723
6724 * config.guess (*:OpenBSD:*:*): Remove defunct MIPS machines.
6725 (sgi:OpenBSD:*:*): Emit mips64, not mipseb.
6726
6727 2004-08-11 Paul Eggert <eggert@cs.ucla.edu>
6728
6729 * config.guess (*:Darwin:*:*): If uname -p reports "unknown",
6730 assume the processor is a powerpc. This is because coreutils
6731 uname (at least versions 4.5.7 through 5.2.1) outputs "unknown"
6732 in this case, due to a MacOS X bug that causes
6733 sysctl ((int[]) {CTL_HW, HW_MACHINE_ARCH}, 2, buffer, &bufsize, 0, 0)
6734 to return a negative number.
6735 Problem reported by Petter Reinholdtsen in:
6736 http://lists.gnu.org/archive/html/bug-gnu-utils/2003-02/msg00201.html
6737
6738 2004-07-19 Ben Elliston <bje@gnu.org>
6739
6740 * config.guess (S7501:*:4.0:3.0): Handle NCR System V UNIX machine.
6741
6742 2004-06-24 Ben Elliston <bje@gnu.org>
6743
6744 * config.guess: Update copyright years.
6745 * config.sub: Likewise.
6746
6747 2004-06-22 Robert Millan <robertmh@gnu.org>
6748
6749 * config.guess (*:FreeBSD:*:*): Remove check for glibc (unneeded
6750 since GNU/kFreeBSD systems match *:GNU/*:*:* instead).
6751
6752 2004-06-22 Stanley F. Quayle <stan@stanq.com>
6753
6754 * config.guess (*:*VMS:*:*): New entry. Replaces
6755 Alpha:OpenVMS:*. Recognize and advertise all VMS flavors as dec
6756 manufacturer.
6757
6758 2004-06-22 Ben Elliston <bje@gnu.org>
6759
6760 * config.guess: Cray fixes from Wendy Palm <wendyp@cray.com>.
6761 * config.sub: Likewise.
6762
6763 2004-06-22 Ben Elliston <bje@gnu.org>
6764
6765 Reported by Hans-Peter Nilsson <hp@bitrange.com>:
6766 * config.sub: Correctly handle mmix-knuth and mmix-knuth-mmixware.
6767
6768 2004-06-11 Ben Elliston <bje@gnu.org>
6769
6770 * config.guess (pegasos:OpenBSD:*:*): Remove.
6771
6772 2004-06-11 Ben Elliston <bje@gnu.org>
6773
6774 From Wouter Verhelst <wouter@grep.be>:
6775 * config.guess (M68*:*:R3V[5678]:*): Detect R3V8.
6776
6777 2004-06-11 Ben Elliston <bje@gnu.org>
6778
6779 * config.guess (luna88k:OpenBSD:*:*): New.
6780
6781 2004-03-12 Kazuhiro Inaoka <inaoka.kazuhiro@renesas.com>
6782
6783 * config.guess (m32r*:Linux:*:*): New case.
6784 * config.sub: Handle m32rle.
6785
6786 2004-03-12 Ben Elliston <bje@wasabisystems.com>
6787
6788 From Jens Petersen <petersen@redhat.com>:
6789 * config.sub: Handle sparcv8.
6790
6791 2004-03-03 Ben Elliston <bje@wasabisystems.com>
6792
6793 From Tom Smith <smith@cag.lkg.hp.com>:
6794 * config.guess: Version suffixes are equally significant on Tru64
6795 V4.* and V5.*, so do not ignore them on V5.*. Handle a version
6796 prefix of "P" (patched kernel).
6797
6798 2004-02-23 Tal Agmon <Tal.Agmon@nsc.com>
6799
6800 * config.sub: Add support for National Semiconductor CRX target.
6801
6802 2004-09-03 Jan Beulich <jbeulich@novell.com>
6803
6804 * configure.in: Remove target-libstdc++-v3 from noconfigdirs for
6805 *-*-netware, but add target-libmudflap.
6806 Consolidate *-*-netware targets (of which really only i?86 exists)
6807 into a single entry.
6808 * configure: Likewise.
6809
6810 2004-09-01 Paolo Bonzini <bonzini@gnu.org>
6811
6812 * Makefile.tpl (sorry): Remove.
6813 (clean-stage[+id+], clean-stage[+id+]-module): New targets.
6814 (cleanstrap targets): Depend on distclean, not distclean-stage1.
6815 (do-clean): Clean per-stage directories too.
6816 (do-distclean): Run distclean-stage1 too.
6817 (.NOTPARALLEL): Enable during toplevel bootstrap.
6818 (stage[+id+]-bubble): Enable parallel execution during
6819 the recursive invocation.
6820 * Makefile.in: Regenerate.
6821
6822 Sync from gcc (moving the Makefile.in change to Makefile.tpl):
6823
6824 2004-08-31 Robert Bowdidge <bowdidge@apple.com>
6825
6826 * Makefile.in: Move BOOT_CFLAGS above host makefile fragment include.
6827 * configure.in: add test for powerpc-*-darwin* to specify makefile frag
6828 * configure: regenerate
6829 * config/mh-ppc-darwin: create file, override BOOT_CFLAGS for
6830 -mdynamic-no-pic
6831
6832 2004-08-31 Paolo Bonzini <bonzini@gnu.org>
6833
6834 * Makefile.tpl: Move BOOT_CFLAGS above host makefile fragment
6835 include.
6836 * configure.in: Fix indentation.
6837 * configure: Regenerate.
6838
6839 2004-08-31 Paolo Bonzini <bonzini@gnu.org>
6840
6841 * Makefile.def (build_modules): Add fixincludes.
6842 (dependencies): Make gcc depend on fixincludes.
6843 * configure.in (build_tools): Add fixincludes.
6844 (build_configdirs): Always include build_libs.
6845 * Makefile.in: Regenerate.
6846 * configure: Regenerate.
6847
6848 2004-08-30 Paolo Bonzini <bonzini@gnu.org>
6849
6850 * Makefile.def (bootstrap stages): Add 'lean' parameter.
6851 * Makefile.tpl (configure-stageN-*, all-stageN-*): Turned into
6852 phony targets; do not generate timestamp files.
6853 (distclean-stageN): Remove references to their timestamp files.
6854 (restageN, touch-stageN): Remove.
6855 (stageN-bubble): Rewritten.
6856 (compare): Support lean bootstraps.
6857 * Makefile.in: Regenerate.
6858
6859 * configure.in: Only warn when bootstrapping but
6860 build != host or build != target. Support lean bootstraps.
6861 * configure: Regenerate.
6862
6863 Sync from gcc:
6864 2004-08-26 Phil Edwards <phil@codesourcery.com>
6865
6866 * configure.in: Give a better error message if GMP/MPFR are missing
6867 and a language needing them has been requested.
6868 * configure: Regenerated.
6869
6870 2004-08-25 Phil Edwards <phil@codesourcery.com>
6871
6872 * configure.in: Print a list of available language front-ends if
6873 a requested one is missing. Tidy stray tab characters.
6874 * configure: Regenerated.
6875
6876 2004-08-17 Paolo Bonzini <bonzini@gnu.org>
6877
6878 * Makefile.in: Regenerate.
6879 * configure: Regenerate.
6880
6881 * Makefile.def (bootstrap-stage): Rename extra_*_flags to
6882 stage_*_flags.
6883 * Makefile.tpl (configure-[+module+], all-[+module+]): Exit
6884 for bootstrapped modules if toplevel bootstrap is going.
6885 (GCC bootstrap): Generate per-stage targets for all bootstrapped
6886 modules. Adjust for changes in Makefile.def. Enable several
6887 rules even in non-bootstrap mode, just to avoid peppering the
6888 template with unnecessary "@if/@endif gcc-bootstrap" pairs.
6889 (stage-[+prev+]-bubble): Remove.
6890
6891 * Makefile.def (Dependencies): Depend on all-build-bison,
6892 all-build-flex, all-build-byacc, all-build-texinfo, rather
6893 than the host variations.
6894 * Makefile.tpl (BUILD_DIR_PREFIX): Remove. Replace throughout
6895 with BUILD_SUBDIR.
6896 (BISON): Update for recent Bisons.
6897 (YACC): Fix typo.
6898 (cross): Depend on all-build.
6899 (all): Do not depend on all-build.
6900 (prebootstrap): Remove.
6901 (dep-kind): Accept separate prefixes for MODULE and ON variables.
6902 (Prebootstrap dependencies): Add them to the per-stage targets
6903 and to all-prebootstrap.
6904 * configure.in (build_configdirs): Always enable build_tools.
6905 (BUILD_DIR_PREFIX): Remove.
6906
6907 * Makefile.def (gcc): Add target variable.
6908 (gdb, expect, guile, tk, tix): Replace with_x with extra_make_flags.
6909 * Makefile.tpl (Autogenerated `all-*' targets): Invoke $(TARGET-*)
6910 in the recursive `make', instead of hardwiring `all'.
6911 (Autogenerated TARGET-* variables): New.
6912
6913 2004-08-17 Robert Millan <robertmh@gnu.org>
6914
6915 * configure.in: In noconfigdirs check, match GNU/k*BSD with GNU/Linux
6916 (instead of FreeBSD).
6917 * configure: Regenerate.
6918
6919 2004-08-12 Nathanael Nerode <neroden@gcc.gnu.org>
6920
6921 * Makefile.def, configure.in, src-release: Remove useless, bogus
6922 references to tix.
6923 * Makefile.in, configure: Regenerate.
6924
6925 * src-release: Stop distributing mmalloc with gdb (which doesn't
6926 use it).
6927 * Makefile.def: GDB doesn't depend on mmalloc anymore.
6928 * Makefile.in: Regenerate.
6929
6930 2004-08-09 Mark Mitchell <mark@codesourcery.com>
6931
6932 * configure.in (arm*-*-eabi*): New target.
6933 * configure: Regenerate.
6934
6935 2004-08-01 Robert Millan <robertmh@gnu.org>
6936
6937 * configure.in: Turn mt-linux into mt-gnu. Use mt-gnu and enable
6938 libmudflap for all GNU-based systems (with Glibc).
6939 * configure: Regenerate.
6940
6941 2004-08-06 Paolo Bonzini <bonzini@gnu.org>
6942
6943 * Makefile.def (bfd, opcodes, gcc, zlib): Mark as bootstrap module.
6944 (bison, byacc, flex, texinfo): Do not mark as bootstrap module.
6945 (Dependencies): New section.
6946 * Makefile.tpl (Dependencies): Generate from Makefile.def.
6947 (configure-target-[+module+]): Depend on maybe-all-gcc
6948 (all-prebootstrap): New name of all-bootstrap. Changed throughout.
6949 (toplevel profiledbootstrap): Fix dependencies.
6950 * Makefile.in: Regenerate.
6951
6952 2004-08-03 Mark Mitchell <mark@codesourcery.com>
6953
6954 * configure.in (arm*-*-symbianelf*): Add ${libgcj} and
6955 target-libiberty to noconfigdirs.
6956
6957 2004-08-03 Paul Brook <paul@codesourcery.com>
6958
6959 * configure.in: Check for MPFR as well as GMP.
6960 * configure: Regenerate.
6961
6962 2004-08-03 Paolo Bonzini <bonzini@gnu.org>
6963
6964 * Makefile.def (host-modules): Add gcc.
6965 * Makefile.in: Regenerate.
6966 * Makefile.tpl (sorry): New rule.
6967 (configure-host, all-host, [+make_target+]-host, do-check,
6968 install-host): Do not add gcc as a special case.
6969 (host modules): Add a small special-casing for gcc. Export
6970 extra_make_flags through the environment.
6971 (maybe-configure-gcc, configure-gcc, maybe-all-gcc, all-gcc,
6972 maybe-check-gcc, check-gcc, maybe-install-gcc, install-gcc,
6973 other recursive targets for gcc): Remove.
6974
6975 (all, do-[+make_target+], do-check): Wrap between unstage and stage.
6976 (stage, unstage): New rules.
6977 (stage[+id+]-start, stage[+id+]-end, [+compare-target+],
6978 distclean-stage[+id+]): Use stage_current.
6979 ([+bootstrap-target+], profiledbootstrap): Do not invoke manually
6980 the stage*-start rules.
6981
6982 2004-07-19 Robert Millan <robertmh@gnu.org>
6983
6984 Synced from gcc:
6985
6986 2004-04-26 Robert Millan <robertmh@gnu.org>
6987
6988 Add patches from libtool CVS.
6989 * libtool.m4: Add kfreebsd*-gnu and knetbsd*-gnu.
6990 * ltconfig: Likewise.
6991 * ltcf-c.sh: Likewise.
6992 * ltcf-cxx.sh: Likewise.
6993 * ltcf-gcj.sh: Likewise.
6994
6995 2004-07-12 Paolo Bonzini <bonzini@gnu.org>
6996
6997 * configure.in: Add noconfigdirs for crx-*-*.
6998 * configure: Regenerate.
6999
7000 2004-07-12 Paolo Bonzini <bonzini@gnu.org>
7001
7002 Synced from gcc:
7003
7004 2004-07-09 Loren J. Rittle <ljrittle@acm.org>
7005
7006 * configure.in: Build libmudflap by default on FreeBSD.
7007 * configure: Regenerated.
7008
7009 2004-07-09 Mark Mitchell <mark@codesourcery.com>
7010
7011 * configure.in: Do not build libmudflap by default on non-GNU/Linux
7012 systems.
7013 * configure: Regenerated.
7014
7015 2004-07-08 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
7016
7017 PR target/16344
7018 * Makefile.tpl (profiledbootstrap): Build runtime libraries with
7019 feedback based compiler.
7020 * Makefile.in: Rebuilt.
7021
7022 2004-07-05 Phil Edwards <phil@codesourcery.com>
7023
7024 * configure.in: Do not prepend $srcdir to /dev/null in
7025 makefile fragments.
7026 * configure: Regenerate.
7027
7028 2004-07-08 Alexandre Oliva <aoliva@redhat.com>
7029
7030 * Makefile.def (host_modules): Set bootstrap=true for flex.
7031 * Makefile.tpl (all-gcc): Depend on texinfo and flex.
7032 * Makefile.in: Rebuilt.
7033
7034 2004-07-01 Paolo Bonzini <bonzini@gnu.org>
7035
7036 * Makefile.def (build_modules): Add bison, byacc, flex,
7037 m4, texinfo.
7038 (flags_to_pass): Add FLEX.
7039 * Makefile.tpl (BUILD_DIR_PREFIX, BASE_EXPORTS): New.
7040 (BUILD_EXPORTS, HOST_EXPORTS, BASE_TARGET_EXPORTS): Include it.
7041 (DEFAULT_YACC, USUAL_YACC, DEFAULT_LEX, USUAL_LEX, DEFAULT_M4,
7042 DEFAULT_MAKEINFO): Remove.
7043 (CONFIGURED_YACC, CONFIGURED_FLEX, CONFIGURED_BISON,
7044 CONFIGURED_LEX, CONFIGURED_M4, CONFIGURED_MAKEINFO): Substitute.
7045 (YACC, FLEX, BISON, LEX, M4, MAKEINFO): Define to look into
7046 objdir or else use configured tool.
7047 (all-build): New.
7048 (all): Depend on it.
7049 (Build module dependencies): Add.
7050 * Makefile.in: Regenerate.
7051 * configure.in: Better support for multiple build modules,
7052 matching what is done for host/target modules. Do not look
7053 for "plausible" locations of build tools if Canadian cross.
7054 Use autoconf's AC_PROG_CC to find a C compiler. Define
7055 BUILD_DIR_PREFIX. Look for flex, makeinfo and m4.
7056 * configure: Regenerate.
7057
7058 2004-06-22 Paolo Bonzini <bonzini@gnu.org>
7059
7060 * Makefile.tpl (HOST_EXPORTS): Fix pasto.
7061 * Makefile.in: Regenerate.
7062
7063 2004-06-22 Paolo Bonzini <bonzini@gnu.org>
7064
7065 * Makefile.tpl (configure-build-[+module+],
7066 configure-[+module+], configure-target-[+module+]): Pass
7067 [+extra_configure_args+].
7068 (all-build-[+module+], all-[+module+], check-[+module+],
7069 install-[+module+], [+make_target+]-[+module+],
7070 all-target-[+module+], check-target-[+module+],
7071 install-target-[+module+], [+make_target+]-target-[+module+]):
7072 Pass [+extra_make_args+].
7073 (HOST_EXPORTS): Include the former GCC_HOST_EXPORTS.
7074 (GCC_HOST_EXPORTS): Remove.
7075 (configure-gcc, all-gcc, GCC_STRAP_TARGETS, profiledbootstrap,
7076 cross, check-gcc, check-gcc-c++, install-gcc,
7077 gcc-no-fixedincludes, [+make_target+]-gcc, stage[+id+]-bubble):
7078 Replace GCC_HOST_EXPORTS with HOST_EXPORTS.
7079 * Makefile.in: Regenerate.
7080
7081 2004-06-21 Christopher Faylor <cgf@alum.bu.edu>
7082
7083 * configure.in: Check for srcdir/winsup rather than build directory
7084 winsup.
7085 * configure: Regenerate.
7086
7087 2004-06-17 Corinna Vinschen <vinschen@redhat.com>
7088
7089 * configure.in: Don't build Cygwin native newlib if winsup
7090 directory is missing. Emit warning instead.
7091 * configure: Regenerate.
7092
7093 2004-06-09 Paolo Bonzini <bonzini@gnu.org>
7094
7095 * Makefile.tpl (touch-stage[+id+]): New.
7096 (restage[+prev+]): Depend on touch-stage[+id+].
7097
7098 * Makefile.tpl (RECURSE_FLAGS_TO_PASS): New.
7099 Use it throughout.
7100
7101 * Makefile.def: Add profile and feedback bootstrap stages.
7102 Remove next field from bootstrap stages.
7103 * Makefile.tpl (LN, LN_S): Substitute.
7104 (stageN-start, stageN-end): Use double-colon rules, to
7105 provide a hook for additional setup commands.
7106 (distclean-stageN-gcc, restageN): Create dependencies from
7107 [+prev+], not from [+next+].
7108 (stageN-bubble): Add commands for successive stages from
7109 [+prev+], using double-colon rules.
7110 (all-stageN-gcc): Fix typo.
7111 (stagefeedback-start, profiledbootstrap): New.
7112 * Makefile.in: Regenerate.
7113 * configure.in: Call ACX_PROG_LN.
7114 * configure: Regenerate.
7115
7116 2004-06-03 Paolo Bonzini <bonzini@gnu.org>
7117
7118 * configure.in: Fix --enable-bootstrap breakage introduced in trees
7119 without gcc.
7120 * configure: Regenerate.
7121
7122 2004-06-01 Paolo Bonzini <bonzini@gnu.org>
7123
7124 * Makefile.tpl: Fix typo.
7125 * Makefile.in: Regenerate.
7126
7127 2004-06-01 Paolo Bonzini <bonzini@gnu.org>
7128
7129 * configure.in: Remove new- prefix from toplevel
7130 bootstrap targets.
7131 * configure: Regenerate.
7132
7133 2004-06-01 Paolo Bonzini <bonzini@gnu.org>
7134
7135 Merge this patch from the gcc tree:
7136
7137 2004-05-30 Andreas Jaeger <aj@suse.de>
7138 Jim Wilson <wilson@specifixinc.com>
7139
7140 * config-ml.in: Pass FFLAGS and ADAFLAGS for multilibs, handle F77
7141 like CC.
7142
7143 2004-06-01 Paolo Bonzini <bonzini@gnu.org>
7144
7145 * Makefile.tpl (all.normal): Rename to all.
7146 (all): Replace with a rule to pick the default
7147 target from configure.
7148 (all-gcc, configure-gcc): Use conditionals to
7149 do nothing when toplevel bootstrap is going on.
7150 (GCC directory bootstrap) [gcc-bootstrap]: Disable.
7151 (Toplevel bootstrap) [gcc-no-bootstrap]: Disable.
7152 * configure.in: Support --enable-bootstrap.
7153
7154 * Makefile.def: Remove new- prefix from toplevel
7155 bootstrap targets.
7156 * Makefile.tpl: Likewise.
7157
7158 * Makefile.def: Add bootstrap_stage 4. Add bootstrap2
7159 target.
7160
7161 * Makefile.tpl (Toplevel bootstrap): Pass $(BASE_FLAGS_TO_PASS)
7162 $(RECURSE_FLAGS) to recursive invocation of make.
7163
7164 * Makefile.in: Regenerate.
7165 * configure: Regenerate.
7166
7167 2004-05-27 Daniel Jacobowitz <dan@debian.org>
7168
7169 * configure.in: Fix sed invocation for GFORTRAN_FOR_TARGET.
7170 * configure: Regenerate.
7171
7172 2004-05-25 Daniel Jacobowitz <drow@false.org>
7173
7174 * Makefile.tpl (BUILD_EXPORTS, HOST_EXPORTS, GCC_HOST_EXPORTS)
7175 (STAGE_HOST_EXPORTS, BASE_TARGET_EXPORTS, RAW_CXX_TARGET_EXPORTS)
7176 (NORMAL_TARGET_EXPORTS): New macros. Use them in all the recursive
7177 targets.
7178 * Makefile.in: Regenerate.
7179
7180 2005-05-24 Paolo Bonzini <bonzini@gnu.org>
7181
7182 * configure.in: Test the ability to symlink directories.
7183 * configure: Regenerate.
7184
7185 * Makefile.def (bootstrap-stage): New definitions.
7186 * Makefile.tpl (configure-stage1-gcc,
7187 configure-stage2-gcc, configure-stage3-gcc,
7188 all-stage1-gcc, all-stage2-gcc, all-stage3-gcc,
7189 new-bootstrap, new-cleanstrap, new-restage1, new-restage2,
7190 new-restage3, compare): Autogenerate, see Makefile.in
7191 entry for behavioral changes.
7192 (distclean-stage1, new-stage1-start, new-stage1-end,
7193 new-stage1-bubble, distclean-stage2, new-stage2-start,
7194 new-stage2-end, new-stage2-bubble, distclean-stage3,
7195 new-stage3-start, new-stage3-end): New autogenerated targets.
7196 (objext, prebootstrap, BOOT_CFLAGS,
7197 POSTSTAGE1_FLAGS_TO_PASS): Move above the autogenerated
7198 targets.
7199
7200 * Makefile.in: Regenerate.
7201 (distclean-stage1, new-stage1-start, new-stage1-end,
7202 new-stage1-bubble, distclean-stage2, new-stage2-start,
7203 new-stage2-end, new-stage2-bubble, distclean-stage3,
7204 new-stage3-start, new-stage3-end): New targets.
7205 (all-stage1-gcc): Move prebootstrap dependency from here...
7206 (configure-stage1-gcc): ...to here.
7207 (new-bootstrap): Use bubble targets.
7208 (new-cleanstrap, new-restage1, new-restage2, new-restage3):
7209 Use per-stage distclean targets.
7210 (configure-stage1-gcc, configure-stage2-gcc,
7211 configure-stage3-gcc, all-stage1-gcc,
7212 all-stage2-gcc, all-stage3-gcc, new-bootstrap):
7213 Use new-stageN-start to prepare the tree.
7214
7215 2004-05-23 Paolo Bonzini <bonzini@gnu.org>
7216
7217 * Makefile.def (host_modules): add libcpp.
7218 * Makefile.tpl: Add dependencies on and for libcpp.
7219 * Makefile.in: Regenerate.
7220 * configure.in: Add libcpp host module.
7221 * configure: Regenerate.
7222
7223 2004-05-17 Zack Weinberg <zack@codesourcery.com>
7224
7225 * Makefile.def, Makefile.tpl, configure.in: Remove all mention
7226 of libf2c.
7227 * configure, Makefile.in: Regenerate.
7228
7229 2004-05-13 Diego Novillo <dnovillo@redhat.com>
7230
7231 Merge from tree-ssa-20020619-branch.
7232
7233 * Makefile.def: Add libbanshee, libmudflap and libgfortran.
7234 * Makefile.tpl (BUILD_CONFIGDIRS): Add libbanshee.
7235 (HOST_GMPLIBS): Define.
7236 (HOST_GMPINC): Define.
7237 (TARGET_LIB_PATH): Add libmudflap.
7238 (GFORTRAN_FOR_TARGET): Define.
7239 (configure-build*): Export GFORTRAN.
7240 (configure-gcc): Export GMPLIBS and GMPINC.
7241 (all-gcc): Add maybe-all-libbanshee.
7242 (configure-target-libgfortran): Define.
7243 * Makefile.in: Regenerate.
7244 * configure.in (host_libs): Add libbanshee.
7245 (target_libraries): Add target-libmudflap and target-libgfortran.
7246 Add --with-libbanshee.
7247 Handle --disable-libmudflap.
7248 (*-*-freebsd*): Use with_gmp.
7249 Add $(libgcj) to noconfigdirs.
7250 * configure: Regenerate.
7251 * depcomp: New file.
7252 * MAINTAINERS: Add tree-ssa maintainers.
7253
7254 2004-04-28 Paolo Bonzini <bonzini@gnu.org>
7255
7256 * config/acx.m4: Fix fastcompare support for new-bootstrap.
7257 * configure: Regenerate.
7258
7259 2004-04-27 Paolo Bonzini <bonzini@gnu.org>
7260
7261 Revert:
7262 2004-04-26 Paolo Bonzini <bonzini@gnu.org>
7263
7264 * Makefile.def (flags_to_pass): Remove *dir variables that
7265 are passed to the modules via TOPLEVEL_CONFIGURE_ARGUMENTS,
7266 as well as prefix and exec_prefix.
7267 * Makefile.in: Regenerate.
7268
7269 2004-04-26 Paolo Bonzini <bonzini@gnu.org>
7270
7271 * Makefile.def (host_modules): Mark with the bootstrap
7272 flag packages on which gcc depends.
7273 * Makefile.tpl (all-bootstrap): Use it.
7274 * Makefile.in: Regenerate.
7275
7276 2004-04-26 Paolo Bonzini <bonzini@gnu.org>
7277
7278 * Makefile.def (flags_to_pass): Remove *dir variables that
7279 are passed to the modules via TOPLEVEL_CONFIGURE_ARGUMENTS,
7280 as well as prefix and exec_prefix.
7281 * Makefile.in: Regenerate.
7282
7283 2004-04-26 Paolo Bonzini <bonzini@gnu.org>
7284
7285 * configure.in: Invoke ACX_PROG_CMP_IGNORE_INITIAL.
7286 * configure: Regenerate.
7287 * config/acx.m4: Mutuate ACX_PROG_CMP_IGNORE_INITIAL from gcc.
7288 * gcc/Makefile.tpl (compare): Use the result of the test.
7289 * gcc/Makefile.in: Regenerate.
7290
7291 2004-04-23 Paolo Bonzini <bonzini@gnu.org>
7292
7293 * Makefile.tpl (all-stage1-gcc, all-stage2-gcc, all-stage3-gcc):
7294 Always relocate gcc and prev-gcc to the original names, even
7295 if the build fails.
7296 (new-cleanstrap, new-restage1, new-restage2, new-restage3):
7297 New targets.
7298
7299 2004-04-19 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
7300
7301 * configure.in (mips*-*-irix5*): Enable ld.
7302 * configure: Regenerate.
7303
7304 2004-04-15 James E Wilson <wilson@specifixinc.com>
7305
7306 * Makefile.tpl (configure-[+module+], configure-gcc,
7307 configure-stage1-gcc, configure-stage2-gcc, configure-stage3-gcc):
7308 Set and export LDFLAGS.
7309 * Makefile.in: Regenerate.
7310
7311 2004-04-09 Nathanael Nerode <neroden@gcc.gnu.org>
7312
7313 PR bootstrap/14871
7314 * Makefile.tpl: If we don't have built-in-tree target tools,
7315 use the ones found by configure rather than hacking around with
7316 program_transform_name.
7317 * configure.in: Give Makefile.tpl the information necessary
7318 to do that.
7319 * Makefile.in: Regenerate.
7320 * configure: Regenerate.
7321
7322 2004-04-06 Nathanael Nerode <neroden@gcc.gnu.org>
7323
7324 PR bootstrap/14760
7325 * configure.in: When computing baseargs, strip *all* copies of
7326 offending options. Also, don't match/substitute the trailing space,
7327 so that this actually works when two similar options are separated by
7328 only one space.
7329 * configure: Regenerate.
7330
7331 2004-04-06 David Edelsohn <edelsohn@gnu.org>
7332
7333 * configure.in (powerpc-*-aix*): Remove target-libada from noconfigdirs.
7334 (rs6000-*-aix*): Same.
7335 * configure: Regenerate.
7336
7337 2004-03-25 Stan Shebs <shebs@apple.com>
7338
7339 Remove MPW support, no longer used.
7340 * mpw-README, mpw-build.in, mpw-config.in, mpw-configure,
7341 mpw-install: Remove files.
7342 * src-release (DEVO_SUPPORT): Remove names of removed files.
7343 * MAINTAINERS: Likewise.
7344
7345 2004-03-24 Nathanael Nerode <neroden@gcc.gnu.org>
7346
7347 * Makefile.tpl (top level bootstrap support): Remove now-unneeded
7348 STRICT_WARN, WARN_CFLAGS flags passed down to make.
7349 * Makefile.in: Regenerate.
7350
7351 * configure.in (top level bootstrap support): Rework --enable-werror
7352 to set @stage2_werror_flag@.
7353 * configure: Regenerate.
7354 * Makefile.tpl (top level bootstrap support): Pass
7355 @stage2_werror_flag@ down to configure in stages 2 and 3.
7356 * Makefile.in: Regenerate.
7357
7358 2004-03-23 Nathanael Nerode <neroden@gcc.gnu.org>
7359
7360 * Makefile.tpl (new-bootstrap): Set CC and CC_FOR_BUILD in configure
7361 for stages 2 and 3 as well as in make. As a consequence, remove
7362 OUTPUT_OPTION (now detected by configure) from the flags passed down
7363 to make.
7364 * Makefile.in: Regenerate.
7365
7366 * Makefile.tpl (new-bootstrap): Fix typo.
7367 * Makefile.in: Regenerate.
7368
7369 2004-03-22 Nathanael Nerode <neroden@gcc.gnu.org>
7370
7371 * Makefile.tpl: Rearrange by moving recursive_targets rules
7372 into their proper sections.
7373 * Makefile.tpl (top level bootstrap support): Move disabling
7374 of coverage flags from 'make' to 'configure'; improve comments.
7375 * Makefile.in: Regenerate.
7376
7377 * Makefile.tpl (experimental top level bootstrap) Move stage1
7378 language setting from all- target to configure- target; disable
7379 intermodule optimization in stage 1; prevent gratuitous rebuilds
7380 of stage 1.
7381 * Makefile.in: Regenerate.
7382 * configure.in: Comma-separate stage 1 language list for top
7383 level bootstrap.
7384 * configure: Regenerate.
7385
7386 * Makefile.tpl: Clean up experimental top level bootstrap support:
7387 note known problems; set CONFIG_SHELL; don't set BUILD_CC; relocate
7388 prev-gcc in configure- targets as well as all- targets.
7389 * Makefile.in: Regenerate.
7390
7391 2004-03-17 Paolo Bonzini <bonzini@gnu.org>
7392
7393 * configure.in: Remove symbolic link section.
7394 * configure: Regenerate.
7395 * Makefile.tpl (links): Remove.
7396 * Makefile.in: Regenerate.
7397
7398 2004-03-15 Paolo Bonzini <bonzini@gnu.org>
7399 Nathanael Nerode <neroden@gcc.gnu.org>
7400
7401 * configure.in (DEFAULT_YACC, DEFAULT_M4, DEFAULT_LEX):
7402 Set with AC_CHECK_PROGS.
7403 * configure.in: Fix comment typo from last patch.
7404 * configure: Regenerate.
7405
7406 2004-03-15 Nathanael Nerode <neroden@gcc.gnu.org>
7407
7408 * Makefile.tpl: Introduce experimental top level bootstrap support.
7409 * Makefile.in: Regenerate.
7410 * configure.in: Introduce support for top level bootstrap.
7411 * configure: Regenerate.
7412
7413 2004-03-12 Eric Botcazou <ebotcazou@gcc.gnu.org>
7414 Paolo Bonzini <bonzini@gnu.org>
7415
7416 PR bootstrap/14522
7417 * configure.in: Cope with shells that do not support unquoted ^
7418 * configure: Regenerate.
7419
7420 2004-03-11 Eric Botcazou <ebotcazou@gcc.gnu.org>
7421 Paolo Bonzini <bonzini@gnu.org>
7422
7423 PR bootstrap/14522
7424 * configure.in: Cope with shell that do not support nesting
7425 quotes inside quoted backquote substitutions.
7426 * configure: Regenerate.
7427
7428 2004-03-10 Andrew Pinski <pinskia@physics.uc.edu>
7429
7430 PR bootstrap/14522
7431 * configure.in: Fix escaping of $.
7432 * configure: Regenerate.
7433
7434 2004-03-11 Nathanael Nerode <neroden@gcc.gnu.org>
7435
7436 * configure: Regenerate.
7437
7438 2004-03-08 Paolo Bonzini <bonzini@gnu.org>
7439
7440 PR ada/14131
7441 Move language detection to the top level.
7442 * configure.in: Find default values for the tools as
7443 soon as possible. Disable ada if GNAT is not found.
7444 Emit error message about missing languages. Expand
7445 --enable-languages=all for the gcc subdirectory.
7446
7447 2004-03-01 Richard Sandiford <rsandifo@redhat.com>
7448
7449 * configure.in (mips64*-*-linux*): Override mips*-*-linux* case
7450 and disable libgcj.
7451 * configure: Regenerated.
7452
7453 2004-02-28 Nathanael Nerode <neroden@gcc.gnu.org>
7454
7455 PR bootstrap/7087
7456 * Makefile.tpl: Guard XFOO sed statements better.
7457 * Makefile.tpl: Add dependency for configure-target-libada.
7458 * Makefile.in: Regenerate (incidentally fixes broken
7459 commit when libada-branch was merged).
7460
7461 2004-02-28 Andrew Cagney <cagney@redhat.com>
7462
7463 * src-release (CVS_NAMES): Define.
7464 (do-tar, do-tar): Prune $(CVS_NAMES).
7465
7466 2004-02-23 Andrew Cagney <cagney@redhat.com>
7467
7468 * texinfo/texinfo.tex: Update from version 2003-02-03.16 to
7469 2004-02-19.09.
7470
7471 2004-02-19 Nathanael Nerode <neroden@gcc.gnu.org>
7472
7473 PR bootstrap/11932
7474 * mkinstalldirs, install-sh: Import from automake CVS HEAD.
7475
7476 2004-02-19 Andrew Cagney <cagney@redhat.com>
7477
7478 * config.guess: Update from version 2003-06-12 to 2004-02-16.
7479 * config.sub: Update from version 2003-06-13 to 2004-02-16.
7480
7481 2004-02-11 David Edelsohn <edelsohn@gnu.org>
7482
7483 * configure.in (powerpc-*-aix*): Add target-libada to noconfigdirs.
7484 (rs6000-*-aix*): Same.
7485 * configure: Regenerate.
7486
7487 2004-02-11 Kelley Cook <kcook@gcc.gnu.org>
7488
7489 * configure.in (host): Add in missing $noconfigdirs to defines.
7490 * configure: Regenerate.
7491
7492 2004-02-10 Arnaud Charlet <charlet@act-europe.fr>,
7493 Nathanael Nerode <neroden@gcc.gnu.org>
7494
7495 PR ada/6637, PR ada/5911
7496 Merge with libada-branch:
7497 * configure.in, Makefile.tpl, Makefile.def: Add target-libada,
7498 with appropriate dependencies. Add --enable-libada configure switch.
7499 * configure, Makefile.in: Regenerate.
7500
7501 2004-02-05 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
7502
7503 * configure.in: Don't pass --with-stabs on IRIX 5 either.
7504 * configure: Regenerate.
7505
7506 2004-02-02 Jeff Johnston <jjohnstn@redhat.com>
7507
7508 * COPYING.NEWLIB: Update Red Hat license to 2004.
7509
7510 2004-01-23 DJ Delorie <dj@redhat.com>
7511
7512 * Makefile.def (target_modules) [libiberty]: Don't stage.
7513 * Makefile.in: Rebuilt.
7514
7515 2004-01-23 Jeff Johnston <jjohnstn@redhat.com>
7516
7517 * COPYING.NEWLIB: Update to include copyrights for new
7518 iconv code.
7519
7520 2004-01-15 Andrew Cagney <cagney@redhat.com>
7521
7522 * src-release: Update copyright year.
7523 (do-proto-toplev): Configure using i686-pc-linux-gnu.
7524 (NEWLIB_SUPPORT_DIRS): Delete macro.
7525 (newlib.tar.bz2): Delete rule.
7526
7527 2004-01-14 Loren J. Rittle <ljrittle@acm.org>
7528
7529 * Makefile.def (target_modules) [libtermcap, libiberty, zlib]: Stage.
7530 * Makefile.tpl (configure-target-[+module+]): Support stage.
7531 * Makefile.in: Rebuilt.
7532
7533 2003-01-14 Maciej W. Rozycki <macro@ds2.pg.gda.pl>
7534
7535 * gettext.m4: Quote names of macros to be defined by AC_DEFUN
7536 throughout.
7537
7538 2004-01-04 Nathanael Nerode <neroden@gcc.gnu.org>
7539
7540 * configure.in: Use ./config.cache, not config.cache.
7541 * configure: Regenerate.
7542 * Makefile.tpl: Special-casing not needed for GCC any more.
7543 * Makefile.in: Regenerate.
7544
7545 * configure.in: Don't share a cache file for host dirs.
7546 * configure: Regenerate.
7547
7548 * config-ml.in: Don't mess with the cache file.
7549
7550 2004-01-03 Nathanael Nerode <neroden@gcc.gnu.org>
7551
7552 * Makefile.tpl: Make GCC use a separate config.cache.
7553 * Makefile.in: Regenerate.
7554
7555 PR bootstrap/11932, PR bootstrap/11933
7556 (I don't know if it will fix either of them, but it relates
7557 to them.)
7558 * configure.in: Don't use shared config.cache for target
7559 directories.
7560 * configure: Regenerate.
7561
7562 2003-12-31 Roger Sayle <roger@eyesopen.com>
7563
7564 * configure.in (ia64*-*-hpux*): Disable building java libraries.
7565 * configure: Regenerated.
7566
7567 2003-12-21 Bernardo Innocenti <bernie@develer.com>
7568
7569 * configure.in (*-*-uclinux): Exclude newlib, libgloss and rda.
7570 * configure: Regenerated.
7571
7572 2003-12-19 Nathanael Nerode <neroden@gcc.gnu.org>
7573
7574 Port change over from GCC:
7575 2003-11-20 Kelley Cook <kcook@gcc.gnu.org>
7576 * Makefile.tpl (BASE_FLAGS_TO_PASS): Pass along CONFIG_SHELL.
7577 (configure-build-[+module+], configure-[+module+]): Likewise.
7578 (configure-target-[+module+], configure-gcc, config.status): Likewise.
7579 * Makefile.in: Regenerate.
7580
7581 2003-12-08 Thomas Fitzsimmons <fitzsim@redhat.com>
7582
7583 * configure.in (raw_libstdcxx_flags): Remove the leading space.
7584 * configure: Regenerate.
7585
7586 2003-11-27 Jeff Johnston <jjohnstn@redhat.com>
7587
7588 * COPYING.NEWLIB: Add license info for long long routines added to
7589 stdlib.
7590
7591 2003-11-14 Arnaud Charlet <charlet@act-europe.fr>
7592
7593 * Makefile.tpl (EXTRA_GCC_FLAGS): Pass BOOT_ADAFLAGS.
7594 * Makefile.in: Regenerate.
7595
7596 2003-10-20 Phil Edwards <phil@codesourcery.com>
7597
7598 * configure.in (*-*-vxworks): Add target-libiberty to noconfdirs.
7599 * configure: Regenerate.
7600
7601 2003-10-13 Nathanael Nerode <neroden@gcc.gnu.org>
7602
7603 * Makefile.tpl: Make GCC_FLAGS_TO_PASS a superset of
7604 HOST_FLAGS_TO_PASS.
7605 * Makefile.in: Regenerate.
7606
7607 2003-10-05 Mohan Embar <gnustuff@thisiscool.com>
7608
7609 * configure.in: Allow explicit specification of CFLAGS_FOR_BUILD.
7610 * configure: Rebuilt
7611 * Makefile.tpl: Use CFLAGS_FOR_BUILD computed by configure
7612 * Makefile.in: Rebuilt
7613
7614 2003-10-03 H.J. Lu <hongjiu.lu@intel.com>
7615
7616 * ltconfig (sys_lib_search_path_spec): Fix a typo for HPUX.
7617
7618 2003-10-01 Phil Edwards <pme@gcc.gnu.org>
7619
7620 * config-ml.in: Use ac_configure_args directly instead of
7621 ml_arguments. Only set ml_norecursion if --no[-]recursion is
7622 actually seen.
7623
7624 2003-10-01 Eric Botcazou <ebotcazou@libertysurf.fr>
7625
7626 * config-ml.in: Propagate INSTALL variables.
7627
7628 2003-09-21 Daniel Jacobowitz <drow@mvista.com>
7629
7630 * configure.in: Pass a computed --program-transform-name
7631 to subconfigures.
7632 * configure: Regenerated.
7633
7634 2003-09-20 Nathanael Nerode <neroden@gcc.gnu.org>
7635
7636 * Makefile.tpl: Don't pass down obsolete ENQUIRE variable.
7637 * Makefile.in: Regenerate.
7638
7639 * Makefile.tpl: Don't pass (unused) DLLTOOL or WINDRES to gcc.
7640 * Makefile.in: Regenerate.
7641
7642 2003-09-17 Daniel Jacobowitz <drow@mvista.com>
7643
7644 * configure.in (TOPLEVEL_CONFIGURE_ARGUMENTS, baseargs): Fix
7645 quoting.
7646 * configure: Regenerated.
7647
7648 2003-09-12 Michael Chastain <mec@shout.net>
7649
7650 Fix PR gdb/857.
7651 * src-release (do-proto-topleve): Remove junk files
7652 intl/config.cache, intl/config.status,
7653 intl/config.h, intl/stamp-h.
7654
7655 2003-09-14 Andrew Cagney <cagney@redhat.com>
7656
7657 * src-release (dejagnu.tar): New target.
7658 (dejagnu.tar.bz2): Recursively call "gdb-taz" rule.
7659 (do-djunpack): Use $(PACKAGE) for the package name.
7660
7661 2003-09-04 DJ Delorie <dj@redhat.com>
7662
7663 * configure: Regenerate.
7664
7665 2003-09-04 Robert Millan <robertmh@gnu.org>
7666
7667 * configure.in: Match GNU/KFreeBSD with new kfreebsd*-gnu triplet.
7668
7669 2003-09-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
7670
7671 * configure.in: Ensure arguments to sed are properly spaced.
7672 * configure: Regenerate.
7673
7674 2003-08-28 Daniel Jacobowitz <drow@mvista.com>
7675
7676 Merge from gcc:
7677 2003-07-20 Phil Edwards <pme@gcc.gnu.org>
7678 * install-sh: Update to newer upstream versions (associated with
7679 aclocal 1.7).
7680 * missing: Likewise, plus $1Help2man -> $1 typo fix.
7681
7682 2003-08-27 Daniel Jacobowitz <drow@mvista.com>
7683
7684 * configure.in: Set RAW_CXX_FOR_TARGET if unset.
7685 * configure: Regenerated.
7686
7687 2003-08-23 Phil Edwards <pme@gcc.gnu.org>
7688
7689 * configure.in: Use newline instead of semicolon when assuming
7690 shell arguments in a for loop.
7691 * configure: Regenerated.
7692
7693 2003-08-20 Geoffrey Keating <geoffk@apple.com>
7694
7695 PR 8180
7696 * configure.in: When testing with_libs and with_headers, treat
7697 'no' as unset. Based on a patch by Dan Kegel <dank@kegel.com>.
7698 * configure: Regenerate.
7699
7700 * configure.in (TOPLEVEL_CONFIGURE_ARGUMENTS): Quote properly for
7701 make, shell, etc.
7702 (baseargs): Likewise.
7703 * configure: Regenerate.
7704
7705 2003-08-19 Geoffrey Keating <geoffk@apple.com>
7706
7707 * configure.in: Disable libgcj for darwin not on powerpc.
7708 * configure: Rebuild.
7709
7710 2003-08-15 Michael Chastain <mec@shout.net>
7711
7712 * src-release (do-proto-toplev): Remove junk files
7713 dejagnu/example/calc/config.status,
7714 dejagnu/example/calc/config.log.
7715
7716 2003-08-14 Alexandre Duret-Lutz <adl@gnu.org>
7717
7718 * config-ml.in, symlink-tree: Add license.
7719
7720 2003-08-01 Nathanael Nerode <neroden@gcc.gnu.org>
7721
7722 Merge from gcc:
7723
7724 2003-08-01 Matt Kraai <kraai@alumni.cmu.edu>
7725 * Makefile.tpl (check, check-c++): Express dependencies using
7726 dependencies rather than commands.
7727 * Makefile.in: Regenerate.
7728
7729 2003-07-31 Geoffrey Keating <geoffk@apple.com>
7730 * Makefile.tpl (libsubdir): Use gcc instead of gcc-lib.
7731 * Makefile.in: Update.
7732
7733 2003-08-01 Andrew Cagney <cagney@redhat.com>
7734
7735 * configure.in (noconfigdirs): Do not add GDB when m32r-*-*.
7736 * configure: Ditto.
7737
7738 2003-07-30 Andreas Tobler <a.tobler@schweiz.ch>
7739
7740 * configure.in: Enable libgcj for darwin.
7741 * configure: Rebuild.
7742
7743 2003-07-29 Nathanael Nerode <neroden@gcc.gnu.org>
7744
7745 * mkinstalldirs: Import autoconf 2.57 / automake 1.7 version.
7746
7747 2003-07-27 Nathanael Nerode <neroden@gcc.gnu.org>
7748
7749 * Makefile.tpl: Use 'mkinstalldirs' rather than 'mkdir' when
7750 creating target and build subdirs to build all parent dirs as needed.
7751 * Makefile.in: Rebuild.
7752 * configure.in: Don't build dirs explicitly here.
7753 * configure: Rebuild.
7754
7755 2003-07-22 Alexandre Oliva <aoliva@redhat.com>
7756
7757 * Makefile.tpl (all-make): Depend on intl.
7758 * Makefile.in: Rebuilt.
7759
7760 2003-07-16 Nathanael Nerode <neroden@gcc.gnu.org>
7761
7762 * config.if: Remove unused libc_interface determination.
7763
7764 2003-07-14 Nathanael Nerode <neroden@gcc.gnu.org>
7765
7766 * Makefile.in: Regenerate, correctly this time.
7767
7768 2003-07-13 Nathanael Nerode <neroden@gcc.gnu.org>
7769
7770 * Makefile.tpl: Set INSTALL and friends using autoconf. Remove
7771 unused INSTALL_PROGRAM_ARGS.
7772 * configure.in: Use AC_PROG_INSTALL.
7773 * Makefile.in: Regenerate.
7774 * configure: Regenerate.
7775
7776 2003-07-10 Alexandre Oliva <aoliva@redhat.com>
7777
7778 * configure: Rebuilt.
7779 2001-09-26 Alexandre Oliva <aoliva@redhat.com>
7780 * configure.in (noconfigdirs) [am33_2.0-*-linux*]: Don't build
7781 newlib nor libgloss.
7782 Wed May 9 10:07:19 2001 Alexandre Oliva <aoliva@redhat.com>
7783 * configure.in (am33_2.0-*-linux*): Added.
7784
7785 2003-07-09 Bob Wilson <bob.wilson@acm.org>
7786
7787 * configure.in: Add ${libgcj} to noconfigdirs for xtensa-*-* targets.
7788 * configure: Regenerate.
7789
7790 2003-07-06 H.J. Lu <hongjiu.lu@intel.com>
7791
7792 * config-ml.in: Replace PWD with PWD_COMMAND.
7793 * Makefile.tpl: Likewise.
7794 * Makefile.in: Regenerated.
7795
7796 2003-06-27 Nathanael Nerode <neroden@gcc.gnu.org>
7797
7798 * configure.in: Clean up config-lang.in handling. Delete
7799 useless assignment to "subdirs".
7800 * configure: Regenerate.
7801
7802 2003-06-26 Nathanael Nerode <neroden@gcc.gnu.org>
7803
7804 * configure.in: Rename 'target_libs' to 'target_libraries'.
7805 Remove useless reference to 'target_libs'.
7806 * configure: Regenerate.
7807
7808 2003-06-23 Keith Seitz <kseitz@sources.redhat.com>
7809
7810 * Makefile.tpl: Add maybe-configure-itcl to configure-gdb.
7811 * Makefile.in: Regenerate.
7812
7813 2003-06-23 Nathanael Nerode <neroden@gcc.gnu.org>
7814
7815 * Makefile.def: Introduce flags_to_pass.
7816 * Makefile.tpl: Generate BASE_FLAGS_TO_PASS using it.
7817 * Makefile.in: Regenerate.
7818
7819 2003-06-23 Hans-Peter Nilsson <hp@bitrange.com>
7820
7821 * configure.in (noconfigdirs) <cris-*-*>: Disable target-newlib
7822 and target-libgloss.
7823 <d30v-*-*, fr30-*-*, i960-*-*, m32r-*-*>: Disable gdb.
7824 <h8300*-*-*>: Disable libf2c and ${libgcj}.
7825 * configure: Regenerate.
7826
7827 2003-06-17 Benjamin Kosnik <bkoz@redhat.com>
7828
7829 * configure.in: Update testsuite_flags to new location.
7830 * configure. Regenerate.
7831
7832 2003-06-18 Nathanael Nerode <neroden@gcc.gnu.org>
7833
7834 * Makefile.tpl: Remove BUILD_CC stuff.
7835 * Makefile.in: Regenerate.
7836
7837 2003-06-14 H.J. Lu <hongjiu.lu@intel.com>
7838
7839 * config.guess: Update to 2003-06-12 version.
7840 * config.sub: Update to 2003-06-13 version.
7841
7842 2003-06-12 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
7843
7844 * MAINTAINERS: Add myself as MIPS co-maintainer.
7845
7846 2003-06-12 H.J. Lu <hongjiu.lu@intel.com>
7847
7848 * config.guess: Update to 2003-06-06 version.
7849 * config.sub: Update to 2003-06-06 version.
7850
7851 2003-06-11 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
7852
7853 * configure.in: Don't pass --with-stabs for mips*-sgi-irix6*o32.
7854 * configure. Regenerate.
7855
7856 2003-06-10 Nathanael Nerode <neroden@gcc.gnu.org>
7857
7858 * configure.in: Disable serial configure by default.
7859 * configure: Regenerate.
7860 * Makefile.tpl: Abolish .NOTPARALLEL.
7861 * Makefile.in: Regenerate.
7862
7863 * Makefile.tpl: Replace {build,host,target}_canonical by
7864 {build,host,target}.
7865 * Makefile.in: Regenerate.
7866
7867 * Makefile.tpl: Fix stupid pasto.
7868 * Makefile.in: Regenerate.
7869
7870 2003-06-09 Nathanael Nerode <neroden@gcc.gnu.org>
7871
7872 * Makefile.tpl: Remove bogus conditional.
7873 * Makefile.in: Regenerate.
7874
7875 2003-06-03 Nathanael Nerode <neroden@gcc.gnu.org>
7876
7877 * Makefile.tpl: Make 'recursive targets' using autogen rather
7878 than shell loop. Remove duplicate 'clean' targets and false
7879 comments.
7880 * Makefile.def: Add systematic dependencies to 'recursive' targets.
7881 Add systematic method of specifying missing targets in subdirs.
7882 Add copyright boilerplate.
7883 * Makefile.in: Regenerate.
7884 * configure.in: Add 'recursive targets' to maybe list.
7885 * configure: Regenerate.
7886
7887 * Makefile.tpl: Rename [+target+] to [+make_target+].
7888 * Makefile.def: Rename 'target' to 'make_target'.
7889
7890 2003-05-30 Nick Clifton <nickc@redhat.com>
7891
7892 * README-maintainer-mode: Update URL for locating blessed config
7893 tools.
7894
7895 2003-05-29 Robert Millan <rmh@debian.org>
7896
7897 * ltconfig: Import this patch and modify for use with current
7898 version of ltconfig:
7899
7900 2003-05-21 Bruno Haible <bruno@clisp.org>
7901
7902 * libtool.m4 (AC_LIBTOOL_SYS_DYNAMIC_LINKER): Add support for
7903 GNU/FreeBSD.
7904
7905 2003-05-28 DJ Delorie <dj@redhat.com>
7906
7907 * Makefile.tpl: Make maybe-check-gcc .PHONY.
7908 * Makefile.in: Regenerate.
7909
7910 2003-05-28 Jeff Johnston <jjohnstn@redhat.com>
7911
7912 * COPYING.NEWLIB: Add license info for newlib/libc/sys/linux/stdlib.
7913
7914 2003-05-21 DJ Delorie <dj@redhat.com>
7915
7916 * Makefile.tpl (configure-target-libiberty): Depend only on gcc, not
7917 newlib or libgloss.
7918 * Makefile.in: Regenerate.
7919
7920 2003-05-21 DJ Delorie <dj@redhat.com>
7921
7922 * Makefile.tpl: Add missing empty maybe-check-gcc target.
7923 * Makefile.in: Regenerate.
7924
7925 2003-05-20 Maciej W. Rozycki <macro@ds2.pg.gda.pl>
7926
7927 * configure.in: Use curly braces in the definition of tooldir.
7928 * configure: Regenerate.
7929
7930 2003-05-19 Nathanael Nerode <neroden@gcc.gnu.org>
7931
7932 * configure.in: Switch more things to use maybe dependencies.
7933 * Makefile.tpl: Switch more things to use maybe dependencies.
7934 Factor out common code from autogen IF statements.
7935 * configure: Regenerate.
7936 * Makefile.in: Regenerate.
7937
7938 2003-05-14 Kelley Cook <kelleycook@wideopenwest.com>
7939
7940 * configure.in: Accept i[3456789]86 for machine type.
7941 * configure: Regenerate.
7942
7943 2003-05-18 Nathanael Nerode <neroden@gcc.gnu.org>
7944
7945 * configure.in: Switch more things to use maybe dependencies.
7946 Rearrange a little. Use GCC_TOPLEV_SUBDIRS.
7947 * configure: Regenerate.
7948 * Makefile.tpl: Switch more things to use maybe dependencies.
7949 * Makefile.in: Regenerate.
7950
7951 2003-05-16 Andreas Schwab <schwab@suse.de>
7952
7953 * Makefile.tpl (install-opcodes): Define.
7954 * Makefile.in: Rebuild.
7955
7956 2003-05-13 Andreas Jaeger <aj@suse.de>
7957
7958 * config.guess: Update to 2003-05-09 version.
7959 * config.sub: Update to 2003-05-09 version.
7960
7961 2003-05-13 Michael Eager <eager@mvista.com>
7962
7963 * configure.in: Correct sed script so that options in quotes are not
7964 deleted.
7965 * configure: Rebuild.
7966
7967 2003-05-12 Corinna Vinschen <corinna@vinschen.de>
7968
7969 * configure.in (FLAGS_FOR_TARGET): Remove $$s/newlib/libc/sys/cygwin
7970 and $$s/newlib/libc/sys/cygwin32 include paths.
7971 * configure: Ditto.
7972
7973 2003-05-05 H.J. Lu <hjl@gnu.org>
7974
7975 * config-ml.in: Restored from gcc repository.
7976
7977 2003-05-02 Chris Demetriou <cgd@broadcom.com>
7978
7979 * Makefile.tpl: Require "makeinfo" from texinfo 4.2 or later.
7980 * Makefile.in: Regenerate.
7981
7982 2003-04-27 Daniel Jacobowitz <drow@mvista.com>
7983
7984 * src-release (DEVO_SUPPORT): Add src-release, Makefile.tpl,
7985 and Makefile.def.
7986
7987 2003-04-27 Daniel Jacobowitz <drow@mvista.com>
7988
7989 * Makefile.tpl: Clean $(BUILD_SUBDIR).
7990 * Makefile.in: Regenerated.
7991
7992 2003-04-18 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
7993
7994 * Makefile.tpl (MAKEINFOFLAGS): Default to --split-size=5000000.
7995 * Makefile.in: Regenerate.
7996
7997 2003-04-18 Jakub Jelinek <jakub@redhat.com>
7998
7999 * configure.in (powerpc64*-*-linux*): Remove.
8000 * configure: Rebuilt.
8001
8002 2003-04-17 Phil Edwards <pme@gcc.gnu.org>
8003
8004 * Makefile.tpl (GCC_STRAP_TARGETS): New variable containing all the
8005 previous bootstrap targets, plus bubblestrap, quickstrap, cleanstrap,
8006 and restrap.
8007 * Makefile.in: Regenerate.
8008
8009 2003-04-16 Richard Earnshaw <rearnsha@arm.com>
8010
8011 * configure.in (arm-*-netbsdelf*): Enable building java libraries.
8012 * configure: Regenerated.
8013
8014 2003-04-11 Alexandre Oliva <aoliva@redhat.com>
8015
8016 * libtool.m4 (lt_cv_deplibs_check_method): Use pass_all on mips*.
8017 * */configure: Rebuilt.
8018
8019 2003-03-14 Nathanael Nerode <neroden@gcc.gnu.org>
8020
8021 * Makefile.tpl: Move .NOEXPORT, MAKEOVERRIDES back down.
8022 * Makefile.in: Regenerate.
8023
8024 2003-03-14 Michael Chastain <mec@shout.net>
8025
8026 * Makefile.in: Regenerate with correct Makefile.def.
8027
8028 2003-03-12 Nathanael Nerode <neroden@gcc.gnu.org>
8029
8030 * Makefile.tpl: Move .NOEXPORT, MAKEOVERRIDES up. Delete unused
8031 Make macro.
8032 * Makefile.in: Regenerate.
8033 * configure.in: Clean up gxx_include_dir logic.
8034 * configure: Regenerate.
8035
8036 2003-03-09 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
8037
8038 * configure.in (gxx_include_dir): Fix typo.
8039 * configure: Regenerated.
8040
8041 2003-03-06 Andrew Cagney <cagney@redhat.com>
8042
8043 * texinfo/texinfo.tex: Import version 2003-02-03.16.
8044
8045 2003-03-04 Daniel Jacobowitz <drow@mvista.com>
8046
8047 * configure.in: Include $(build_tooldir)/sys-include in
8048 FLAGS_FOR_TARGET.
8049 * configure: Regenerated.
8050
8051 2003-03-04 Nathanael Nerode <neroden@gcc.gnu.org>
8052
8053 * Makefile.tpl: Reindent.
8054 * Makefile.in: Regenerate.
8055 * configure.in: Reindent. Don't set unused variables.
8056 * configure: Regenerate.
8057
8058 * Makefile.tpl: Always pass down RANLIB.
8059 * Makefile.in: Regenerate.
8060
8061 * Makefile.tpl: Don't set unused enable_shared, enable_threads macros.
8062 * Makefile.in: Regenerate.
8063 * configure.in: Remove unused logic relating to --enable-shared
8064 and --enable-threads. Remove bogus comments. Remove redundant
8065 noconfigdirs.
8066 * configure: Regenerate.
8067
8068 * configure.in: Replace ${libstdcxx_version} by its value.
8069 Remove reference to mh-dgux.
8070 * configure: Regenerate.
8071
8072 2003-02-28 Nathanael Nerode <neroden@gcc.gnu.org>
8073
8074 * Makefile.tpl: Rearrange.
8075 * Makefile.in: Regenerate.
8076
8077 2003-02-25 Nick Clifton <nickc@redhat.com>
8078
8079 * configure: Remove site-file supprot - it is obsolete.
8080
8081 2003-02-24 Uwe Stieber <uwe@wwws.de>
8082
8083 * configure.in: Add support for kaOS as cross build target system.
8084 * configure: Regenerated.
8085
8086 2003-02-20 Sean McNeil <sean@blue.mcneil.com>
8087
8088 * Makefile.tpl: Add definition of CPPFLAGS to pass into
8089 configure-target-* as some target builds may require additional
8090 flags for preprocessor tests.
8091 * Makefile.in: Regenerated.
8092
8093 2003-02-19 Alexandre Oliva <aoliva@redhat.com>
8094
8095 * libtool.m4 (LD): Append -melf* option to LD on IRIX with GNU ld.
8096 * ltconfig: Handle it.
8097 * ltcf-cxx.sh: Use with_gnu_ld passed as a shell variable instead of
8098 auto-detecting it.
8099
8100 2003-02-19 Alexandre Oliva <aoliva@redhat.com>
8101
8102 * ltcf-cxx.sh: Replace $linker_flags with $compiler_flags wherever
8103 it is used as argument to $CC.
8104 * ltcf-gcj.sh: Likewise.
8105
8106 2003-02-19 Alexandre Oliva <aoliva@redhat.com>
8107
8108 * configure.in: Introduce --enable-maintainer-mode.
8109 * configure: Rebuilt.
8110 * Makefile.tpl (Makefile.in, configure): Enable dependencies only
8111 for maintainer mode.
8112 * Makefile.in: Rebuilt.
8113
8114 2003-02-19 Andrew Cagney <ac131313@redhat.com>
8115
8116 * configure: Regenerate using autoconf 2.13.
8117
8118 2003-02-19 Alan Modra <amodra@bigpond.net.au>
8119
8120 * config.guess: Import latest version.
8121 * config.sub: Import latest version.
8122
8123 2003-02-18 Jason Merrill <jason@redhat.com>
8124
8125 * Makefile.tpl (check-c++): Allow parallelism.
8126
8127 2003-02-17 Andrew Cagney <ac131313@redhat.com>
8128
8129 * configure: Regenerate using autoconf 000227.
8130
8131 2003-02-15 Geoffrey Keating <geoffk@apple.com>
8132
8133 * configure.in (*-*-darwin*): Rename from powerpc*-*-darwin*,
8134 don't configure target-libobjc.
8135 * configure: Regenerate.
8136
8137 2003-02-14 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
8138
8139 * Makefile.tpl (RANLIB): Define.
8140 * Makefile.in: Regenerate.
8141
8142 2003-02-06 Keith R Seitz <keiths@redhat.com>
8143
8144 * Makefile.def: Remove "snavigator", "grep", and "db" modules.
8145 * Makefile.tpl: Remove "all-snavigator" and "all-grep".
8146 * Makefile.in: Regenerated.
8147 * configure.in: Remove all traces of snavigator, db, and grep.
8148 * configure: Regenerated.
8149
8150 2003-01-31 Frank Ch. Eigler <fche@redhat.com>
8151
8152 * Makefile.tpl (all-sid): Add libiberty/bfd/opcodes dependencies.
8153 * Makefile.in: Regenerated.
8154
8155 2003-01-30 Alexandre Oliva <aoliva@redhat.com>
8156
8157 * config.if: Copy from GCC.
8158
8159 2003-01-27 Phil Edwards <pme@gcc.gnu.org>
8160
8161 * configure.in: Revert 24Jan change.
8162 * configure: Regenerate.
8163
8164 2003-01-23 Nathanael Nerode <neroden@gcc.gnu.org>
8165
8166 * configure.in: Revert previous change.
8167 * configure: Regenerate.
8168
8169 2003-01-23 Nathanael Nerode <neroden@gcc.gnu.org>
8170
8171 * configure.in: Make rda native-only.
8172 * configure: Regenerate.
8173
8174 2003-01-19 Nathanael Nerode <neroden@gcc.gnu.org>
8175
8176 * configure.in: Add missing \.
8177 * configure: Rebuilt.
8178
8179 2003-01-17 Jakub Jelinek <jakub@redhat.com>
8180
8181 * configure.in (baseargs): Avoid using \| in sed regular
8182 expressions.
8183 * configure: Rebuilt.
8184
8185 2003-01-16 Jakub Jelinek <jakub@redhat.com>
8186
8187 * configure.in (baseargs): Remove all supported forms of
8188 --cache-file, --srcdir, --host, --build and --target options
8189 from argument lists.
8190 * configure: Rebuilt.
8191
8192 2003-01-15 Alexandre Oliva <aoliva@redhat.com>
8193
8194 * configure.in (noconfigdirs): Don't skip gas on IRIX 6.
8195 * configure: Rebuilt.
8196
8197 2003-01-09 Nathanael Nerode <neroden@gcc.gnu.org>
8198
8199 * configure.in: Substitute TOPLEVEL_CONFIGURE_ARGUMENTS.
8200 * Makefile.tpl: Pass TOPLEVEL_CONFIGURE_ARGUMENTS to gcc.
8201 * Makefile.in: Regenerate.
8202 * configure: Regenerate.
8203
8204 2003-01-09 Christian Cornelssen <ccorn@cs.tu-berlin.de>
8205
8206 * Makefile.tpl (BASE_FLAGS_TO_PASS): Also pass DESTDIR.
8207 (install-info, dir.info): Prepend $(DESTDIR) to $(infodir).
8208 * Makefile.in: Regenerate.
8209
8210 2003-01-09 Alexandre Oliva <aoliva@redhat.com>
8211
8212 * configure.in: Remove Makefile in build, host and target modules
8213 unless configure was run with --no-recursion.
8214 * configure: Rebuilt.
8215
8216 2003-01-08 Chris Demetriou <cgd@broadcom.com>
8217
8218 * config.guess: Update to 2003-01-03 version.
8219 * config.sub: Update to 2003-01-03 version.
8220
8221 2003-01-07 Christopher Faylor <cgf@redhat.com>
8222
8223 * configure: Regenerate with proper autoconf 2.13.
8224
8225 2003-01-07 Christopher Faylor <cgf@redhat.com>
8226
8227 * configure.in: Add AC_PREREQ for consistency.
8228 * configure: Regenerate.
8229
8230 2003-01-06 Andrew Cagney <ac131313@redhat.com>
8231
8232 * configure.in (GDB_TK): Add tcl directories conditional on
8233 gdb/gdbtk directory being present.
8234 * configure: Regenerate.
8235
8236 2003-01-04 John David Anglin <dave.anglin@nrc.ca>
8237
8238 * configure.in (LD): Improve test for gcc. Try to set LD to the ld used
8239 by gcc if LD is not defined and we are not doing a Canadian Cross.
8240 * configure: Rebuilt.
8241
8242 2003-01-01 Daniel Jacobowitz <drow@mvista.com>
8243
8244 * src-release (ETC_SUPPORT): Add fdl.texi and texi2pod.pl.
8245
8246 2002-12-31 Tom Tromey <tromey@redhat.com>
8247
8248 * Makefile.in: Rebuilt.
8249 * Makefile.def (target_modules) [libffi]: Allow installation.
8250
8251 2002-12-31 Andreas Schwab <schwab@suse.de>
8252
8253 * configure.in: Fix use of $program_transform_name.
8254 * configure: Regenerated.
8255
8256 2002-12-30 Daniel Jacobowitz <drow@mvista.com>
8257
8258 * configure.in (baseargs): Don't remove first configure argument.
8259 * configure: Regenerated.
8260
8261 2002-12-29 Alexandre Oliva <aoliva@redhat.com>
8262
8263 * Makefile.tpl (local-distclean): Don't remove...
8264 (multilib.ts): ... this. Moved into...
8265 (multilib.out): ... this. Don't use sub-make.
8266 ($(BUILD_SUBDIR)/[+module+]/Makefile, [+module+]/Makefile,
8267 $(TARGET_SUBDIR)/[+module+]/Makefile, gcc/Makefile): Moved into...
8268 (configure-build-[+module+], configure-[+module+],
8269 configure-target-[+module+], configure-gcc): ... these. Test
8270 for Makefile existence. Drop config.status from dependencies.
8271 * Makefile.in: Rebuilt.
8272 * configure.in: Move gcc-version-trigger to the end of
8273 ac_configure_args. Add comments to maybedep.tmp and
8274 serdep.tmp. Introduce --disable-serial-configure. Remove
8275 nonopt from baseargs, matching and removing corresponding
8276 whitespace while at it.
8277 * configure: Rebuilt.
8278
8279 2002-12-28 Alexandre Oliva <aoliva@redhat.com>
8280
8281 * configure.in (host_configargs): Replace reference to
8282 no-longer-defined buildopts with --build=${build_alias}.
8283 * configure: Rebuilt.
8284
8285 2002-12-28 Alexandre Oliva <aoliva@redhat.com>
8286
8287 * Makefile.tpl ($(NOTPARALLEL)): Move to the end. Bring uses of
8288 program_transform_name to standard idiom.
8289 (AUTOGEN, AUTOCONF): Define.
8290 (Makefile.in): Use $(AUTOGEN).
8291 (Makefile): Depend on config.status, and use autoconf-style rule to
8292 build it. Move original commands to...
8293 (config.status): ... this new target.
8294 (configure): Add $(srcdir). Depend on config/acx.m4. Use
8295 $(AUTOCONF).
8296 * Makefile.in: Rebuilt.
8297
8298 2002-12-28 Nathanael Nerode <neroden@gcc.gnu.org>
8299
8300 * Makefile.tpl: Fix dramatic bustage due to change in
8301 program_transform_name.
8302 * Makefile.in: Regenerate.
8303
8304 * configure.in: Remove unnecessary PATH setting.
8305 * configure: Regnerate.
8306
8307 * configure.in: Don't default to unprefixed tools unless
8308 the native tools will work.
8309 * configure: Regenerate.
8310
8311 * configure.in: Convert to autoconf script. Blow away lots
8312 of now-redundant Makefile fragments.
8313 * configure: Generate using Autoconf.
8314 * Makefile.tpl: Rewrite to reflect autoconfiscation.
8315 * Makefile.in: Regenerate.
8316
8317 2002-12-27 Nathanael Nerode <neroden@gcc.gnu.org>
8318
8319 * configure: Remove unneeded 'export's. Make CC_FOR_TARGET,
8320 CXX_FOR_TARGET, GCJ_FOR_TARGET substituted in configure.in only.
8321
8322 * ChangeLog: Move a couple of entries from here to winsup/cygwin,
8323 where they belong.
8324
8325 2002-12-24 Andreas Schwab <schwab@suse.de>
8326
8327 * Makefile.tpl (multilib.out): Fix missing space.
8328 * Makefile.in: Regenerate.
8329
8330 2002-12-23 Nathanael Nerode <neroden@gcc.gnu.org>
8331
8332 * Makefile.tpl: Use shared multilib.out. Use move-if-change for it.
8333 Convert (cd foo; make) to (cd foo && make). Clean up multilib.out.
8334 * Makefile.in: Regenerate.
8335 * configure.in: Remove unnecessary leftovers.
8336
8337 2002-12-21 Geoffrey Keating <geoffk@apple.com>
8338
8339 * configure.in (extra_ranlibflags_for_target): New variable.
8340 (*-*-darwin): Add -c to ranlib commands.
8341 * configure (tooldir): Handle extra_ranlibflags_for_target.
8342
8343 2002-12-20 Jeff Johnston <jjohnstn@redhat.com>
8344
8345 * COPYING.NEWLIB: Updated.
8346 * COPYING.LIBGLOSS: Ditto.
8347
8348 2002-12-19 Nathanael Nerode <neroden@gcc.gnu.org>
8349
8350 * Makefile.tpl: Revert HJL's change.
8351 * Makefile.in: Regenerated.
8352 * configure.in: Put build_prefix before $(BUILD_SUBDIR) here, and
8353 always.
8354
8355 2002-12-19 Andreas Schwab <schwab@suse.de>
8356
8357 * Makefile.tpl, configure.in: Substitute libstdcxx_incdir.
8358 * Makefile.in: Regenerate.
8359
8360 2002-12-18 H.J. Lu <hjl@gnu.org>
8361
8362 * Makefile.tpl: Add @build_prefix@ before $(BUILD_SUBDIR).
8363 * Makefile.in: Regenerated.
8364
8365 * configure.in (build_prefix): New. Substitute.
8366
8367 2002-12-18 Nathanael Nerode <neroden@gcc.gnu.org>
8368
8369 * Makefile.tpl: Don't let real targets depend on phony targets.
8370 * Makefile.in: Regenerate.
8371
8372 * Makefile.tpl (do-info): Depend on maybe-all-texinfo, not all-texinfo.
8373 * Makefile.in: Regenerate.
8374
8375 2002-12-16 Jason Merrill <jason@redhat.com>
8376
8377 * Makefile.tpl (all-gcc): Use 'make quickstrap' if there was a
8378 previous 'make bootstrap'.
8379 * Makefile.in: Regenerate.
8380
8381 2002-12-17 Hans-Peter Nilsson <hp@bitrange.com>
8382
8383 * configure.in (noconfigdirs) [mmix-*-*]: Disable libgloss and gdb.
8384
8385 2002-12-13 Jason Merrill <jason@redhat.com>
8386
8387 * Makefile.tpl (check-gcc-c++): Renamed from check-c++. Don't run
8388 library tests.
8389 (check-c++): Just depend on it and check-target-libstdc++-v3.
8390 * Makefile.in: Regenerate.
8391
8392 2002-12-13 Nathanael Nerode <neroden@gcc.gnu.org>
8393
8394 * configure.in, Makefile.tpl, Makefile.def: Remove tclX.
8395 * Makefile.in: Regenerate.
8396
8397 2002-12-12 Jeff Johnston <jjohnstn@redhat.com>
8398
8399 * COPYING.NEWLIB: Update list of alternate Regent of California
8400 licenses and discuss official revoking of advertising clause.
8401 * COPYING.LIBGLOSS: Ditto.
8402
8403 2002-12-12 Alexandre Oliva <aoliva@redhat.com>
8404
8405 * Makefile.tpl (configure-target-rda): Depend on $(ALL_GCC_C).
8406 * Makefile.in: Rebuilt.
8407
8408 2002-12-10 Nathanael Nerode <neroden@gcc.gnu.org>
8409
8410 * configure: Fix bug put in by gremlins.
8411
8412 * Makefile.tpl: Substitute more autoconfily.
8413 * configure: Substitute more autoconfily.
8414 * Makefile.in: Regenerate.
8415
8416 2002-12-08 Andrew Cagney <ac131313@redhat.com>
8417
8418 * Makefile.tpl (all-sim): Depend on maybe-configure-gdb.
8419 * Makefile.in (all-sim): Ditto.
8420
8421 2002-12-06 DJ Delorie <dj@redhat.com>
8422
8423 * Makefile.tpl: Change configure dependencies to not have real
8424 targets depend on phony targets.
8425
8426 2002-12-05 Nathanael Nerode <neroden@gcc.gnu.org>
8427
8428 * configure.in: Revert unintentional change.
8429
8430 * src-release: Configure host subdirs.
8431
8432 * Makefile.tpl: Change dependency for */multilib.out so that
8433 it works when gcc isn't in the tree.
8434
8435 * configure.in: Substitute more.
8436 * configure: Run subconfigures from the Makefile.
8437 * Makefile.tpl: Run subconfigures from the Makefile; add a few
8438 convenience targets. Make sure gcc isn't rebuilt after bootstrap.
8439
8440 2002-12-03 Nathanael Nerode <neroden@gcc.gnu.org>
8441
8442 * Makefile.tpl: Add targets for configuring host subdirs in Makefile,
8443 and corresponding dependencies.
8444 * Makefile.in: Regenerate.
8445
8446 * configure.in (host_tools): Order binutils, gas and ld for
8447 convenience in running the testsuites.
8448
8449 * Makefile.tpl: Introduce rules to serialize subconfigure runs.
8450 * Makefile.in: Regenerate.
8451 * configure.in: Introduce rules to serialize subconfigure runs.
8452
8453 * configure.in: Introduce BASE_CC_FOR_TARGET.
8454 * Makefile.tpl: Reorganize and comment. Introduce HOST_CONFIGARGS.
8455 Realize configure-build-* targets. Realize configure-target-* targets.
8456 * Makefile.in: Regenerate.
8457
8458 2002-12-02 Nathanael Nerode <neroden@gcc.gnu.org>
8459
8460 * configure: Move gcc_version_trigger stuff from here...
8461 * configure.in: ...to here.
8462
8463 * configure.in: Separate subconfigure options added by this file from
8464 options given by the user. Add machinery to put args for host
8465 subconfigures into the Makefile.
8466
8467 * Makefile.tpl: Remove 'vault' targets.
8468 * Makefile.tpl: Reorder and comment dependencies.
8469 * Makefile.in: Regenerate.
8470
8471 2002-11-28 Geoffrey Keating <geoffk@apple.com>
8472
8473 * configure.in: Move host-specific darwin noconfigdirs into
8474 the host-specific section.
8475
8476 2002-12-02 Nathanael Nerode <neroden@gcc.gnu.org>
8477
8478 * Makefile.tpl: Restore bkorb's style patch, accidentally lost
8479 during replay.
8480 * Makefile.in: Regenerate.
8481
8482 (finishing slow-motion replay)
8483 * configure: Remove skip-this-dir support.
8484 * Makefile.tpl: Remove skip-this-dir support.
8485
8486 * Makefile.tpl: Remove leftover support for non-autoconfiscated
8487 subdirectories.
8488 * Makefile.in: Regenerate.
8489
8490 * Makefile.tpl: Strip out useless setting of 'dir'.
8491 * Makefile.in: Regenerate.
8492
8493 2002-12-02 Nathanael Nerode <neroden@gcc.gnu.org>
8494
8495 (finishing slow-motion replay)
8496 * configure.in: Fix deeply stupid bug.
8497
8498 * configure.in: Introduce RAW_CXX_FOR_TARGET and simplify embedded
8499 shell code in CXX_FOR_TARGET
8500 * Makefile.def: Introduce raw_cxx.
8501 * Makefile.tpl: Use raw_cxx to select between CXX_FOR_TARGET and
8502 RAW_CXX_FOR_TARGET.
8503 * Makefile.in: Regenerate.
8504
8505 2002-12-02 Nathanael Nerode <neroden@gcc.gnu.org>
8506
8507 (finishing slow-motion replay)
8508 * Makefile.tpl: Remove unnecessary ifs.
8509 * Makefile.in: Regenerate.
8510
8511 * Makefile.tpl: Implement soft dependency machinery. Maybe-ize
8512 dependencies. Maybe-ize build-libiberty. Create dummy install
8513 targets for 'no_install' modules.
8514 * configure: Move GDB_TK substitution to configure.in. Move
8515 build_modules stuff to configure.in.
8516 * configure.in: Implement soft dependency machinery. Maybe-ize
8517 GDB_TK, rearrange slightly. Move build_modules stuff from configure.
8518 * Makefile.in: Regenerate.
8519
8520 2002-12-01 Nathanael Nerode <neroden@gcc.gnu.org>
8521
8522 (continuing slow-motion replay)
8523 * Makefile.tpl: Make all-target, install-target behave similarly
8524 to all, install (only hitting configured targets). Eliminate
8525 unused macro defintions.
8526
8527 * Makefile.tpl: Add all-gcc: all-build-libiberty dependency when
8528 build != host.
8529
8530 * Makefile.tpl: Add all-gcc: all-libiberty dependency.
8531
8532 * ltcf-c.sh, ltcf-gcj.sh, Makefile.tpl: Correct BUILD/HOST confusion.
8533
8534 * configure.in: Produce lists of subdir targets we're actually
8535 configuring. Remove references to "dosrel".
8536 * Makefile.tpl: Let configure set which subdir targets are hit.
8537 Remove install-cross; clean up install; remove ALL. Remove
8538 references to "dosrel". Remove "EXTRA_TARGET_HOST" hackery.
8539 Autogenerate host module targets. Remove empty dependency lines
8540 and redundant dependency; rearrange slightly.
8541 * Makefile.def: Add host-side libtermcap, utils.
8542
8543 * Makefile.in: Regenerate.
8544
8545 2002-12-01 Nathanael Nerode <neroden@gcc.gnu.org>
8546
8547 (Continuing slow-motion replay)
8548 * Makefile.def: Add list of recursive targets to autogenerate.
8549 Add build_modules.
8550 * Makefile.tpl: Autogenerate do-* targets. Autogenerate *-target-*
8551 targets. Autogenerate *-build-* targets.
8552 * Makefile.in: Regenerate.
8553
8554 2002-11-30 Nathanael Nerode <neroden@gcc.gnu.org>
8555
8556 (Continuing slow-motion replay)
8557 * configure: More autoconf-style substitutions.
8558 * Makefile.tpl: More autoconf-style substitutions.
8559 * Makefile.in: Regenerate.
8560
8561 2002-11-30 Nathanael Nerode <neroden@gcc.gnu.org>
8562
8563 (Continuing slow-motion replay)
8564 * configure: Substitute more variables in a more autoconf-friendly
8565 way. Simplify slightly.
8566 * Makefile.tpl: Make more variables substitutable in an
8567 autoconf-friendly way.
8568 * Makefile.in: Regenerate.
8569
8570 2002-11-29 Nathanael Nerode <neroden@gcc.gnu.org>
8571
8572 (Continuing slow-motion replay)
8573 * configure.in (v810*): Remove special setting of tools.
8574
8575 * configure: Add support for extra required flags for ar or nm.
8576 * configure.in (aix4.3+): Use above support for target-specific
8577 issues, rather than using config/mt-aix43.
8578
8579 2002-11-29 Nathanael Nerode <neroden@gcc.gnu.org>
8580
8581 (Starting slow-motion replay merge from gcc 3.4 b-i-b branch)
8582 * configure: Remove 'removing', which doesn't work. Replace $subdir
8583 with . everywhere. Replace $subdirs with ''. Replace $makesrcdir
8584 with $srcdir. Reformat indentation. Substitute some variables
8585 formerly hard-coded in the Makefile for build=host.
8586 * Makefile.tpl: Autogenerate more; make more autoconf-friendly.
8587 * Makefile.def: Autogenerate more.
8588 * Makefile.in: Regenerate.
8589
8590 2002-11-13 Bruce Korb <bkorb@gnu.org>
8591
8592 * Makefile.tpl: syntactic cleanup
8593
8594 2002-11-04 Kevin Buettner <kevinb@redhat.com>
8595
8596 * Makefile.def (host_modules): Add rda.
8597 * Makefile.in: Regenerate.
8598 * configure.in (target_tool): Add target-rda to list.
8599
8600 2002-10-25 Phil Edwards <pme@gcc.gnu.org>
8601
8602 * Makefile.tpl (bootstrap): Add bubblestrap, quickstrap, cleanstrap,
8603 and restrap targets to this rule.
8604 * Makefile.in: Regenerate.
8605
8606 2002-10-24 Hans-Peter Nilsson <hp@bitrange.com>
8607
8608 * configure.in (i[3456]86-*-linux*): Add check to disable
8609 ${libgcj} for glibc1.
8610
8611 2002-10-07 Svein E. Seldal <Svein.Seldal@solidas.com>
8612
8613 * configure.in: Add tic4x target.
8614
8615 2002-10-03 Nathanael Nerode <neroden@gcc.gnu.org>
8616
8617 * Makefile.tpl: Make SET_LIB_PATH substitution more autoconfy.
8618 * Makefile.tpl: Make RPATH_ENVVAR substitution more autoconfy.
8619 * configure.in: Make SET_LIB_PATH substitution more autoconfy.
8620 * configure.in: Make RPATH_ENVVAR substitution more autoconfy.
8621 * Makefile.in: Regenerate.
8622
8623 2002-10-02 Nathanael Nerode <neroden@gcc.gnu.org>
8624
8625 * Makefile.tpl: Eliminate reference to all-gui, all-libproc.
8626 * Makefile.in: Regenerate.
8627
8628 * Makefile.def: Remove order dependency comments.
8629 * Makefile.tpl: Add explicit install-install dependencies.
8630 * Makefile.in: Regenerate.
8631
8632 * Makefile.tpl: Remove material now in src-release. (Finally!)
8633 * Makefile.in: Regenerate.
8634
8635 * configure: Restore my original patch by syncing with gcc version.
8636
8637 * Bring following over from gcc:
8638
8639 2002-09-30 Ulrich Weigand <uweigand@de.ibm.com>
8640
8641 * configure.in (s390*-*-linux*): Enable libgcj.
8642
8643 2002-10-02 Nathanael Nerode <neroden@gcc.gnu.org>
8644
8645 * Makefile.in: Regenerate. This really ought to fix things. :sigh:
8646
8647 2002-10-02 Alan Modra <amodra@bigpond.net.au>
8648
8649 * configure: Move stray lines back to where they belong.
8650
8651 2002-10-01 Nathanael Nerode <neroden@gcc.gnu.org>
8652
8653 * Makefile.tpl: Insert configure-target target, for src-release.
8654
8655 * configure: Finish reverting change which Andrew Cagney started
8656 reverting. Should fix bustage.
8657
8658 * src-release (BINUTILS_SUPPORT_DIRS): Add cpu directory.
8659 * src-release: New file. Contains material for making net
8660 releases for gdb, binutils, et al., formerly in Makefile.in.
8661
8662 2002-09-30 Nick Clifton <nickc@redhat.com>
8663
8664 * cpu: New top level directory. Intended to hold input files for
8665 CGEN which have FSF copyright assignment.
8666 * Makefile.in (BINUTILS_SUPPORT_DIRS): Add cpu directory.
8667
8668 2002-09-29 Andrew Cagney <ac131313@redhat.com>
8669
8670 Revert below (note that src does not contain Makefile.tpl):
8671 * Makefile.tpl: Make subsituted variables more autoconfy.
8672 * Makefile.in: Regenerate.
8673
8674 2002-09-29 Nathanael Nerode <neroden@gcc.gnu.org>
8675
8676 * configure: Revert accidentally applied changes.
8677
8678 * Makefile.tpl: Make more autoconf-friendly.
8679 * Makefile.in: Regenerate.
8680 * configure: Make substitution more autoconf-like.
8681
8682 2002-09-28 Richard Earnshaw <rearnsha@arm.com>
8683
8684 * configure.in (arm-*-coff, strongarm-*-coff, xscale-*-coff): Use a
8685 single entry to handle all these.
8686 (arm-*-elf, strongarm-*-elf, xscale-*-elf): Likewise. Also enable
8687 libjava on arm-*-elf.
8688
8689 2002-09-27 Geoffrey Keating <geoffk@apple.com>
8690
8691 * configure.in (powerpc-*-darwin*): Don't configure BFD, TK, or the
8692 things that depend on them.
8693
8694 2002-09-25 Nathanael Nerode <neroden@gcc.gnu.org>
8695
8696 * Makefile.tpl: Make subsituted variables more autoconfy.
8697 * Makefile.in: Regenerate.
8698 * configure: Make seds more autoconfy.
8699
8700 2002-09-25 Nathanael Nerode <neroden@gcc.gnu.org>
8701
8702 * Makefile.tpl: Rewrite substituted lines to look autoconfy.
8703 * Makefile.in: Regenerate.
8704 * configure.in: Rewrite sed statements to look autoconfy.
8705
8706 * Makefile.tpl: Autogenerate *-target-* lists, dependencies of
8707 all-target-foo on configure-target-foo.
8708 * Makefile.def: Ditto.
8709 * Makefile.in: Rebuild.
8710
8711 2002-09-22 Nathanael Nerode <neroden@gcc.gnu.org>
8712
8713 * Makefile.def: New file.
8714 * Makefile.tpl: New file.
8715 * Makefile.in: Generate from Makefile.tpl with 'autogen Makefile.def'.
8716
8717 * configure.in: Minor rearrangement. Simplify tests.
8718
8719 2002-09-23 Jason Thorpe <thorpej@wasabisystems.com>
8720
8721 * configure.in (with_headers): Skip copy if value is "yes".
8722 (with_libs): Likewise.
8723
8724 2002-09-20 Nathanael Nerode <neroden@gcc.gnu.org>
8725
8726 * configure.in (*-*-netbsd*): Use noconfigdirs, not skipdirs.
8727 * configure.in (sh*-*-pe*): Ditto.
8728 * configure.in (mips*-*-pe*): Ditto.
8729 * configure.in (*arm-wince-pe): Ditto.
8730
8731 * configure.in: Rearrange.
8732
8733 2002-09-12 Nick Clifton <nickc@redhat.com>
8734
8735 * Import these changes from the config master repository:
8736
8737 2002-09-05 Svein E. Seldal <Svein.Seldal@solidas.com>
8738
8739 * config.sub: Add tic4x target.
8740
8741 2002-09-03 Ben Elliston <bje@redhat.com>
8742
8743 * config.guess: Detect NSR-D machines for nsr-tandem-nsk.
8744 Reported by <Duncan_Stodart@insession.com>.
8745
8746 2002-09-10 Jeff Johnston <jjohnstn@redhat.com>
8747
8748 * COPYING.NEWLIB: More updates.
8749
8750 2002-09-09 Jeff Johnston <jjohnstn@redhat.com>
8751
8752 * COPYING.NEWLIB: Update.
8753
8754 2002-08-23 Andrew Cagney <ac131313@redhat.com>
8755
8756 * texinfo/texinfo.tex: Import version 2002-06-04.06.
8757
8758 * config.guess: Import version 2002-08-23.
8759 * config.sub: Import version 2002-08-22.
8760
8761 2002-08-20 Alexandre Oliva <aoliva@redhat.com>
8762
8763 * Makefile.in (GCC_FOR_TARGET): Prepend STAGE_CC_WRAPPER.
8764 * configure.in (CC_FOR_TARGET, GCJ_FOR_TARGET, CXX_FOR_TARGET,
8765 CXX_FOR_TARGET_FOR_RECURSIVE_MAKE): Likewise.
8766
8767 2002-08-06 Federico G. Schwindt <fgsch@olimpo.com.br>
8768
8769 * configure.in (hppa*-*-openbsd*): Treat like hppa*-*-*elf*.
8770
8771 2002-08-04 H.J. Lu (hjl@gnu.org)
8772
8773 * configure.in (mips*-*-linux*): Don't skip target-libffi.
8774
8775 2002-07-31 Alan Modra <amodra@bigpond.net.au>
8776
8777 * configure.in: Move generic linux case to end. Copy generic
8778 linux noconfigdirs to mips*-*-linux* entry and new
8779 powerpc64*-*-linux* entry. Add target-libffi for the latter.
8780
8781 2002-07-19 Chris Demetriou <cgd@broadcom.com>
8782
8783 * MAINTAINERS: Clarify on config.guess and config.sub, and add
8784 one instance of them which was missed to the list to update.
8785
8786 2002-07-16 Chris Demetriou <cgd@broadcom.com>
8787
8788 * config.guess: Update to 2002-07-09 version.
8789 * config.sub: Update to 2002-07-03 version.
8790
8791 2002-07-11 Nathanael Nerode <neroden@gcc.gnu.org>
8792
8793 * configure.in: Remove two redundant tests.
8794
8795 2002-07-11 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
8796
8797 * configure.in (mips*-*-irix6*o32): Enable stabs.
8798
8799 2002-07-08 Nathanael Nerode <neroden@gcc.gnu.org>
8800
8801 * configure.in: Don't build grez.
8802 * Makefile.in: Ditto.
8803
8804 * Makefile.in: Remove references to bsp, cygmon, libstub.
8805 * configure.in: Ditto.
8806
8807 * configure.in: Remove leftover reference to gdbtest.
8808
8809 2002-07-08 Phil Edwards <pme@gcc.gnu.org>
8810
8811 * configure.in (gxx_include_dir): Change to match versioned
8812 C++ headers if --enable-version-specific-runtime-libs is used.
8813
8814 2002-07-04 Steve Ellcey <sje@cup.hp.com>
8815
8816 * ltcf-cxx.sh (hpux*): Modify to support ia64-*-hpux*.
8817
8818 2002-07-03 Nathanael Nerode <neroden@gcc.gnu.org>
8819
8820 * configure.in: Make --without-x work.
8821
8822 2002-07-03 Nick Clifton <nickc@cambridge.redhat.com>
8823
8824 * contrib: New directory. Created to contain a copy of the
8825 texi2pod.pl script so that it is in the same place as the version in
8826 the FSF GCC sources.
8827
8828 2002-07-02 Nathanael Nerode <neroden@gcc.gnu.org>
8829
8830 * configure.in: Rearrange target Makefile fragment collection.
8831
8832 * Makefile.in: Don't try to build gdbtest, tgas, ispell, inet, or
8833 cvs[src].
8834 * configure.in: Ditto.
8835
8836 2002-07-01 Nathanael Nerode <neroden@gcc.gnu.org>
8837
8838 * Makefile.in: Eliminate 'apache' targets.
8839 * configure.in: Eliminate 'apache' targets.
8840
8841 * configure.in: Eliminate redundant tests. Reorganize.
8842
8843 * Makefile.in: Eliminate last reference to LIBGCC1_TEST.
8844
8845 * config-ml.in: Eliminate references to Cygnus configure.
8846
8847 * Makefile.in: Eliminate references to building emacs.
8848
8849 2002-07-01 Denis Chertykov <denisc@overta.ru>
8850
8851 * configure.in: Add support for ip2k.
8852
8853 2002-06-24 Ben Elliston <bje@redhat.com>
8854
8855 * configure.in (host_tools): Remove cgen.
8856
8857 * Makefile.in (all-cgen): Remove; runs from its source directory.
8858 (check-cgen, install-cgen, clean-cgen): Likewise.
8859 (all-opcodes): No not depend on all-cgen.
8860 (all-sim): Likewise.
8861
8862 2002-06-22 Nathanael Nerode <neroden@twcny.rr.com>
8863
8864 * configure.in: Fix AIX configury bug.
8865
8866 2002-06-19 Nathanael Nerode <neroden@twcny.rr.com>
8867
8868 * configure.in: Replace ${topsrcdir} with ${srcdir}.
8869
8870 * configure.in: Move definition of libstdcxx_flags right above
8871 usage, rather than way earlier.
8872
8873 * configure.in: Pull definition of is_cross_compiler earlier.
8874
8875 * configure.in: Rearrange a little.
8876
8877 * configure.in: Remove references to librx.
8878 * Makefile.in: Remove references to librx.
8879
8880 2002-06-19 Nathanael Nerode <neroden@twcny.rr.com>
8881
8882 * configure.in: Eliminate ${gasdir} variable.
8883
8884 2002-06-18 Dave Brolley <brolley@redhat.com>
8885
8886 * configure.in: Add support for frv.
8887 * config.sub: Add support for frv.
8888
8889 2002-06-12 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
8890
8891 * Makefile.in (CFLAGS_FOR_TARGET): Add -O2.
8892
8893 2002-06-08 Jason Thorpe <thorpej@wasabisystems.com>
8894
8895 * configure.in (vax-*-netbsd*): Re-enable gas.
8896
8897 2002-05-31 Nathanael Nerode <neroden@twcny.rr.com>
8898
8899 * Makefile.in: Replace HOST_PREFIX, HOST_PREFIX_1 with BUILD_PREFIX,
8900 BUILD_PREFIX_1, to correct nomenclature.
8901 * configure: Likewise.
8902
8903 * Makefile.in: Eliminate version-specific references to tcl8.1, tk8.1.
8904 * configure.in: Eliminate version-specific references to tcl8.1, tk8.1.
8905
8906 2002-05-31 Olaf Hering <olh@suse.de>
8907
8908 * config-ml.in: Propogate DESTDIR also.
8909
8910 2002-05-29 Jason Thorpe <thorpej@wasabisystems.com>
8911
8912 * configure.in (vax-*-netbsd*): Don't build gas for this
8913 platform.
8914
8915 2002-05-28 Marek Michalkiewicz <marekm@amelek.gda.pl>
8916
8917 * configure.in (noconfigdirs): Don't compile libiberty, libstdcxx
8918 and libgcj for AVR.
8919
8920 2002-05-28 Nick Clifton <nickc@cambridge.redhat.com>
8921
8922 * config.sub: Add DLX target.
8923
8924 2002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
8925
8926 * config.guess: Update to 2002-05-22 version.
8927 * config.sub: Likewise.
8928
8929 2002-05-16 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
8930
8931 * Makefile.in: Allow for PWDCMD to override hardcoded pwd.
8932 * config-ml.in: Likewise.
8933 * configure: Likewise.
8934 * configure.in: Likewise.
8935
8936 2002-05-13 Nathanael Nerode <neroden@twcny.rr.com>
8937
8938 * configure.in: Simplify makefile fragment collection.
8939
8940 * configure.in: Remove code to build emacs.
8941
8942 * configure.in : Remove --srcdir argument from targargs and buildargs
8943 (it's always overridden in the Makefile anyway). Rearrange a bit.
8944
8945 * configure: Move some logic to configure.in.
8946 * configure.in: Move some logic from configure.
8947
8948 2002-05-07 Jeff Johnston <jjohnstn@redhat.com>
8949
8950 * COPYING.LIBGLOSS: New file.
8951
8952 2002-05-07 Federico G. Schwindt <fgsch@olimpo.com.br>
8953
8954 * Makefile.in: Honour DESTDIR.
8955
8956 2002-05-05 Alexandre Oliva <aoliva@redhat.com>
8957
8958 * configure.in (noconfigdirs): Don't disable libgcj on
8959 sparc64-*-solaris* and sparcv9-*-solaris*.
8960
8961 2002-05-03 Alexandre Oliva <aoliva@redhat.com>
8962
8963 * configure.in: Revert 2002-04-18's patch; fixed in libjava.
8964
8965 2002-05-03 Thomas Fitzsimmons <fitzsim@redhat.com>
8966
8967 * configure.in (FLAGS_FOR_TARGET): Do not add
8968 -B$$r/$(TARGET_SUBDIR)/newlib/ when compiling newlib natively
8969 on i[3456]86-*-linux*.
8970
8971 2002-05-01 Thomas Fitzsimmons <fitzsim@redhat.com>
8972
8973 * configure.in (noconfigdirs): Replace [ ] with test.
8974
8975 * configure.in (noconfigdirs): Do not add target-newlib if
8976 target == i[3456]86-*-linux*, and host == target.
8977
8978 2002-04-29 Mark Mitchell <mark@codesourcery.com>
8979
8980 * config.guess: Updated to 2002-04-26's version.
8981 * config.sub: Updated to 2002-04-26's version.
8982
8983 2002-04-29 Nathanael Nerode <neroden@doctormoo.dyndns.org>
8984
8985 * configure.in: delete reference to absent file
8986
8987 * configure.in: replace '[' with 'test'
8988
8989 * configure.in: Eliminate references to gash.
8990 * Makefile.in: Eliminate references to gash.
8991
8992 * configure.in: remove useless references to 'pic' makefile fragments.
8993
8994 * configure.in: (*-*-windows*) Finish removing.
8995
8996 * configure.in: Eliminate redundant test for libgui.
8997
8998 2002-04-26 Joel Sherrill <joel@OARcorp.com>
8999
9000 * configure.in (h8300*-*-rtems*): Disable libf2c and libgcj.
9001 (sparc-*-elf*, sparc64-*-elf*): Disable libgcj.
9002
9003 2002-04-19 Nathanael Nerode <neroden@twcny.rr.com>
9004
9005 * configure.in: remove references to dead files
9006
9007 2002-04-18 Tom Tromey <tromey@redhat.com>
9008
9009 * configure.in: Disallow configuring libgcj when it is already
9010 installed and we're using Solaris 2.8 linker. Do enable libgcj on
9011 Solaris 2.8 by default. For PR libgcj/6158.
9012
9013 2002-04-17 Nathanael Nerode <neroden@twcny.rr.com>
9014
9015 * configure.in: Move default CC setting out of config/mh-* fragments
9016 directly into here.
9017
9018 2002-04-17 Nathanael Nerode <neroden@twcny.rr.com>
9019
9020 * configure.in: don't even try to configure or make a subdirectory
9021 if there's no configure script for it.
9022
9023 2002-04-15 Mark Mitchell <mark@codesourcery.com>
9024
9025 * MAINTAINERS: Remove chill maintainers.
9026 * Makefile.in (CHILLFLAGS): Remove.
9027 (CHILL_LIB): Remove.
9028 (TARGET_CONFIGDIRS): Remove libchill.
9029 (CHILL_FOR_TARGET): Remove.
9030 (BASE_FLAGS_TO_PASS): Don't pass CHILLFLAGS, CHILL_FOR_TARGET, or
9031 CHILL_LIB.
9032 (CONFIGURE_TARGET_MODULES): Remove configure-target-libchill.
9033 (CHECK_TARGET_MODULES): Likewise.
9034 (INSTALL_TARGET_MODULES): Likewise.
9035 (CLEAN_TARGET_MODULES): Likewise.
9036 (configure-target-libchill): Remove.
9037 (all-target-libchill): Remove.
9038 * configure.in (target_libs): Remove target-libchill.
9039 Do not compute CHILL_FOR_TARGET.
9040 * libchill: Remove directory.
9041
9042 2002-04-15 DJ Delorie <dj@redhat.com>
9043
9044 * Makefile.in, configure.in, configure: Sync with gcc, entries
9045 follow...
9046
9047 2002-04-08 Tom Tromey <tromey@redhat.com>
9048
9049 * configure.in: Add FLAGS_FOR_TARGET to GCJ_FOR_TARGET.
9050 Fixes PR libgcj/6068.
9051
9052 2002-03-30 Krister Walfridsson <cato@df.lth.se>
9053
9054 * configure.in (i*86-*-netbsdelf*): Don't disable libgcj.
9055
9056 2002-03-27 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
9057
9058 * configure.in (alpha*-dec-osf*): Enable libgcj.
9059
9060 2002-03-24 Nick Clifton <nickc@cambridge.redhat.com>
9061
9062 Fix for: PR bootstrap/3591, target/5676
9063 * configure.in (mcore-pe): Disable the configuration of
9064 libstdc++-v3 since exceptions are not supported.
9065
9066 2002-03-20 Anthony Green <green@redhat.com>
9067
9068 * configure.in: Enable libgcj for xscale-elf target.
9069
9070 2002-02-28 Alexandre Oliva <aoliva@redhat.com>
9071
9072 * configure.in (libstdcxx_flags): Don't add libstdc++-v3 flags for
9073 libjava.
9074 (CXX_FOR_TARGET): Explain why -shared-libgcc here.
9075
9076 2002-02-22 Alexandre Oliva <aoliva@redhat.com>
9077
9078 * configure.in (CXX_FOR_TARGET): Add -shared-libgcc for
9079 libstdc++-v3 and libjava.
9080
9081 2002-02-11 Adam Megacz <adam@xwt.org>
9082
9083 * gcc/Makefile.in: Removed libstdc++-v3 dependancy for libjava and
9084 boehm-gc
9085
9086 2002-02-09 Alexandre Oliva <aoliva@redhat.com>
9087
9088 * config.guess: Updated to 2002-01-30's version.
9089 * config.sub: Updated to 2002-02-01's version.
9090 Contribute sh64-elf.
9091 2000-12-01 Alexandre Oliva <aoliva@redhat.com>
9092 * configure.in: Added sh64-*-*.
9093
9094 2002-01-17 H.J. Lu <hjl@gnu.org>
9095
9096 * Makefile.in (all-fastjar): Also depend on all-libiberty.
9097 (all-target-fastjar): Also depend on all-target-libiberty.
9098
9099 Wed Dec 5 07:33:45 2001 Douglas B. Rupp <rupp@gnat.com>
9100
9101 * configure, configure.in: Use temp file for long sed commands.
9102
9103 2001-11-14 Hans-Peter Nilsson <hp@bitrange.com>
9104
9105 * configure.in (noconfigdirs) [h8300*-*-*, h8500-*-*]: Disable
9106 libf2c.
9107
9108 2001-11-03 Hans-Peter Nilsson <hp@bitrange.com>
9109
9110 * configure.in (noconfigdirs) [mmix-*-*]: Disable libgcj.
9111
9112 2001-10-11 Hans-Peter Nilsson <hp@axis.com>
9113
9114 * configure.in (noconfigdirs) [cris-*-*]: Disable libgcj.
9115
9116 2001-10-02 Joseph S. Myers <jsm28@cam.ac.uk>
9117
9118 * configure: Handle temporary files securely using mkdir.
9119
9120 2001-09-26 Will Cohen <wcohen@redhat.com>
9121
9122 * configure.in (*-*-linux*): Disable configuration of target-newlib
9123 and target-libgloss.
9124
9125 2001-09-26 Alexandre Oliva <aoliva@redhat.com>
9126
9127 * Makefile.in (EXTRA_TARGET_FLAGS): Pass RANLIB_FOR_TARGET for
9128 RANLIB.
9129
9130 2001-08-11 Graham Stott <grahams@redhat.com>
9131
9132 * Makefile.in (check-c++): Add missing semicolon.
9133
9134 2001-07-25 Andrew Haley <aph@cambridge.redhat.com>
9135
9136 * configure.in (sh-*-linux*): New.
9137
9138 2001-07-12 Stephane Carrez <Stephane.Carrez@worldnet.fr>
9139
9140 * configure.in (noconfigdirs): Don't compile libiberty, libstdcxx
9141 and libgcj on m68hc11/m68hc12.
9142
9143 2001-06-27 H.J. Lu (hjl@gnu.org)
9144
9145 * Makefile (CFLAGS_FOR_BUILD): New.
9146 (EXTRA_GCC_FLAGS): Add CFLAGS_FOR_BUILD.
9147
9148 2001-06-01 Hans-Peter Nilsson <hp@axis.com>
9149
9150 * configure.in (libstdcxx_flags): Do not try to execute
9151 libstdc++-v3/testsuite_flags until it exists.
9152
9153 2001-05-18 Benjamin Kosnik <bkoz@redhat.com>
9154
9155 * configure.in (libstdcxx_flags): Remove reference to libstdc++.INC.
9156
9157 2001-05-09 Jeffrey Oldham <oldham@codesourcery.com>
9158
9159 * ltcf-cxx.sh: Add -nostdlib to IRIX 6 archive_cmds.
9160
9161 Mon Apr 23 09:15:03 2001 Anthony Green <green@redhat.com>
9162
9163 * configure.in: Move *-chorusos target case to the proper switch.
9164 Disable libgcj.
9165
9166 2001-04-13 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
9167
9168 * Makefile.in (STAGE1_CFLAGS): Pass down.
9169
9170 2001-04-13 Alan Modra <amodra@one.net.au>
9171
9172 * config.guess: Add hppa64-linux support. Note for next import that
9173 this is already in the master file.
9174 * configure.in: Likewise. Accept `parisc' alias for `hppa'.
9175
9176 2001-03-22 Colin Howell <chowell@redhat.com>
9177
9178 * Makefile.in (DO_X): Do not backslash single-quotes in
9179 backquotes (two places).
9180
9181 2001-03-18 Laurynas Biveinis <lauras@softhome.net>
9182
9183 * Makefile.in (DO_X): Quote nested quotes.
9184
9185 2001-03-15 Laurynas Biveinis <lauras@softhome.net>
9186
9187 * Makefile.in (DO_X): Use double quotes for quoting
9188 "RANLIB=$${RANLIB}".
9189
9190 2001-03-09 Nicola Pero <n.pero@mi.flashnet.it>
9191
9192 * configure.in: Only use `lang_requires' for languages athat are
9193 actually enabled.
9194
9195 2001-03-07 Tom Tromey <tromey@redhat.com>
9196
9197 * configure.in: Allow config-lang.in to set `lang_requires' to list
9198 of other required languages.
9199
9200 2001-03-06 Laurynas Biveinis <lauras@softhome.net>
9201
9202 * Makefile.in: Remove RANLIB definition. Use RANLIB
9203 in RANLIB_FOR_TARGET, EXTRA_HOST_FLAGS, EXTRA_TARGET_FLAGS,
9204 EXTRA_GCC_FLAGS, $(DO_X) targets only when the RANLIB is set.
9205
9206 2001-02-28 Benjamin Kosnik <bkoz@redhat.com>
9207 Alexandre Oliva <aoliva@redhat.com>
9208
9209 * Makefile.in (check-c++): Use tabs, not spaces.
9210
9211 2001-02-19 Benjamin Kosnik <bkoz@redhat.com>
9212
9213 * Makefile.in (check-c++): New rule.
9214
9215 * configure.in (target_libs): Remove libg++.
9216 (noconfigdirs): Remove libg++.
9217 (noconfigdirs): Same.
9218 (noconfigdirs): Same.
9219 (noconfigdirs): Same.
9220
9221 * config-ml.in: Remove libg++ references.
9222
9223 * Makefile.in (TARGET_CONFIGDIRS): Remove libio, libstdc++, libg++.
9224 (ALL_TARGET_MODULES): Same.
9225 (configure-target-libg++): Remove.
9226 (all-target-libg++): Remove.
9227 (configure-target-libio): Remove.
9228 (all-target-libio): Remove.
9229 (check-target-libio): Remove.
9230 (.PHONY): Remove.
9231 (libg++.tar.bz2): Remove.
9232 (all-target-cygmon): Remove libio.
9233 (all-target-libstdc++): Remove.
9234 (configure-target-libstdc++): Remove.
9235 (TARGET_LIB_PATH): Remove libstdc++.
9236 (ALL_GCC_CXX): Remove libstdc++.
9237 (all-target-gperf): Correct.
9238
9239 2001-02-15 Anthony Green <green@redhat.com>
9240
9241 * configure: Introduce GCJ_FOR_TARGET.
9242 * configure.in: Ditto.
9243 * Makefile.in: Ditto.
9244
9245 2001-02-08 Chandrakala Chavva <cchavva@redhat.com>
9246
9247 * configure.in: for *-chorusos, don't config target-newlib and
9248 target-libgloss.
9249
9250 2001-02-04 Mark Mitchell <mark@codesourcery.com>
9251
9252 Remove V2 C++ library.
9253 * configure.in: Remove --enable-libstdcxx_v3 support.
9254
9255 2001-01-27 Richard Henderson <rth@redhat.com>
9256
9257 * configure.in (target_makefile_frag) [alpha*-*]: Use mt-alphaieee.
9258
9259 2001-01-26 Tom Tromey <tromey@redhat.com>
9260
9261 * configure.in: Allow libgcj to be built on Sparc Solaris.
9262
9263 2001-01-23 Bryce McKinlay <bryce@albatross.co.nz>
9264
9265 * configure.in: Enable libgcj on several additional platforms.
9266
9267 2001-01-22 Bryce McKinlay <bryce@albatross.co.nz>
9268
9269 * configure.in: Enable libgcj for linux targets.
9270
9271 2001-01-09 Mike Stump <mrs@wrs.com>
9272
9273 * Makefile.in (CONFIGURE_TARGET_MODULES): Pass back configuration
9274 failures of subdirectories.
9275
9276 2001-01-02 Laurynas Biveinis <lauras@softhome.net>
9277
9278 * configure: handle DOS-style absolute paths.
9279
9280 2001-01-02 Laurynas Biveinis <lauras@softhome.net>
9281
9282 * configure.in: remove supported directories from $noconfigdirs for DJGPP.
9283
9284 2000-12-18 Benjamin Kosnik <bkoz@redhat.com>
9285
9286 * Makefile.in (BASE_FLAGS_TO_PASS): Alphabetize.
9287 (libstdcxx_incdir): Pass down.
9288 * config.if: Remove expired bits for cxx_interface, add stub.
9289 (libstdcxx_incdir): Add variable for g++ include directory.
9290 * configure.in (gxx_include_dir): Use it.
9291
9292 2000-12-15 Andreas Jaeger <aj@suse.de>
9293
9294 * configure.in: Handle lang_dirs.
9295
9296 2000-12-13 Anthony Green <green@redhat.com>
9297
9298 * configure.in: Disable libgcj for any target not specifically
9299 listed. Disable libgcj for x86 and Alpha Linux until compatible
9300 with g++ abi.
9301
9302 2000-12-13 Mike Stump <mrs@wrs.com>
9303
9304 * Makefile.in (local-distclean): Also remove fastjar.
9305
9306 2000-12-10 Anthony Green <green@redhat.com>
9307
9308 * configure.in: Define libgcj. Disable libgcj target libraries for
9309 most targets.
9310
9311 2000-12-09 Alexandre Petit-Bianco <apbianco@cygnus.com>
9312
9313 * configure.in (target_libs): Revert 2000-12-08 patch.
9314 (noconfigdirs): Added target-libjava.
9315
9316 2000-12-09 Laurynas Biveinis <lauras@softhome.net>
9317
9318 * Makefile.in: handle DOS-style absolute paths.
9319
9320 2000-12-08 Alexandre Petit-Bianco <apbianco@cygnus.com>
9321
9322 * Makefile.in (TARGET_CONFIGDIRS): Wrong place. Removed note about
9323 libjava.
9324 * configure.in (target_libs): Removed `target-libjava'.
9325
9326 2000-12-08 Alexandre Petit-Bianco <apbianco@cygnus.com>
9327
9328 * Makefile.in (TARGET_CONFIGDIRS): Added note about libjava.
9329 (ALL_MODULES): Added fastjar.
9330 (NATIVE_CHECK_MODULES, INSTALL_MODULES, CLEAN_MODULES): Likewise.
9331 (all-target-libjava): all-fastjar replaces all-zip.
9332 (all-fastjar): Added.
9333 (configure-target-fastjar, all-target-fastjar): Likewise.
9334 * configure.in (host_tools): Added fastjar.
9335
9336 2000-12-07 Mike Stump <mrs@wrs.com>
9337
9338 * Makefile.in (local-distclean): Remove leftover built files.
9339
9340 2000-11-16 Fred Fish <fnf@be.com>
9341
9342 * configure.in (enable_libstdcxx_v3): Fix typo,
9343 libstd++ -> libstdc++.
9344
9345 2000-11-13 Joseph S. Myers <jsm28@cam.ac.uk>
9346
9347 * configure: Provide the original toplevel configure arguments
9348 (including $0) to subprocesses in the environment rather than
9349 through gcc/configargs.h.
9350
9351 2000-11-12 Mark Mitchell <mark@codesourcery.com>
9352
9353 * configure: Turn on libstdc++ V3 by default.
9354
9355 2000-10-16 Michael Meissner <meissner@redhat.com>
9356
9357 * configure (gcc/configargs.h): Only create if there is a build GCC
9358 directory created.
9359
9360 2000-10-05 Phil Edwards <pme@gcc.gnu.org>
9361
9362 * configure: Save configure arguments to gcc/configargs.h.
9363
9364 2000-10-04 Andris Pavenis <pavenis@latnet.lv>
9365
9366 * Makefile.in (bootstrap): avoid recursion if subdir missing
9367 (cross): ditto
9368 (do-proto-toplev): ditto
9369
9370 Wed Sep 13 11:11:29 2000 Jeffrey A Law (law@cygnus.com)
9371
9372 * configure.in: Do not build byacc for hppa64. Provide paths to the
9373 X11 libraries for hppa64.
9374
9375 2000-09-02 Anthony Green <green@cygnus.com>
9376
9377 * Makefile.in (all-gcc): Depend on all-zlib.
9378 (CLEAN_MODULES): Add clean-zlib.
9379 (ALL_MODULES): Add all-zlib.
9380 * configure.in (host_libs): Add zlib.
9381
9382 2000-08-25 Alexandre Oliva <aoliva@redhat.com>
9383
9384 * configure.in (FLAGS_FOR_TARGET): Use $target_configdirs and
9385 $targargs to tell whether newlib is going to be built.
9386
9387 * configure.in [disable-libstdcxx-v3] (libstdcxx_flags): Search
9388 $$r/TARGET_SUBDIR/libio for _G_config.h.
9389
9390 2000-08-14 Zack Weinberg <zack@wolery.cumb.org>
9391
9392 * configure.in (libstdcxx_flags): Remove -isystem $$s/libio/stdio.
9393
9394 * configure: Make enable_threads and enable_shared defaults
9395 explicit. Substitute enable_threads into generated Makefiles.
9396 * configure.in: Accept *-*-linux* not just *-*-linux-gnu*.
9397 * libtool.m4: Accept *-*-linux* not just *-*-linux-gnu*.
9398
9399 2000-08-02 Manfred Hollstein <manfredh@redhat.com>
9400
9401 * configure.in: Re-enable all references to libg++ and librx.
9402
9403 2002-04-09 Loren James Rittle <rittle@labs.mot.com>
9404
9405 * configure.in: Add *-*-freebsd* configurations.
9406
9407 2002-04-07 Andrew Cagney <ac131313@redhat.com>
9408
9409 * Makefile.in (do-tar-bz2): Delete rule. Replace with ...
9410 (do-tar, do-bz2): New rules.
9411 (taz): Update. Replace do-tar-bz2 with do-tar and do-bz2.
9412 (gdb-tar): New rule.
9413 (gdb-taz): Rewrite. Use gdb-tar and do-bz2.
9414 (insight_dejagnu.tar): New rule.
9415 (insight.tar): New rule.
9416 (gdb+dejagnu.tar): New rule.
9417 (gdb.tar): New rule.
9418
9419 2002-04-07 Andrew Cagney <ac131313@redhat.com>
9420
9421 * MAINTAINERS: Update dejagnu/
9422
9423 2002-03-16 Alexandre Oliva <aoliva@redhat.com>
9424
9425 * ltmain.sh (relink_command): Fix typo in previous change.
9426
9427 2002-03-15 Alexandre Oliva <aoliva@redhat.com>
9428
9429 * ltmain.sh (taglist): Initialized. Don't let `CC' tag out of it.
9430 (relink_command): Added --tag flags.
9431 (mode=install): If relinking fails; error out.
9432
9433 2002-03-12 Richard Henderson <rth@redhat.com>
9434
9435 * Makefile.in (NOTPARALLEL): New. Use it instead of explicit
9436 .NOTPARALLEL tag.
9437 (do-check): Rename from check.
9438 (check): Allow parallel check.
9439
9440 2002-03-11 Richard Henderson <rth@redhat.com>
9441
9442 * Makefile.in (.NOTPARALLEL): Add fake tag.
9443
9444 2002-03-07 H.J. Lu (hjl@gnu.org)
9445
9446 * configure.in: Enable gprof for mips*-*-linux*.
9447
9448 2002-02-28 Alexandre Oliva <aoliva@redhat.com>
9449
9450 * configure.in (libstdcxx_flags): Don't add libstdc++-v3 flags for
9451 libjava.
9452 (CXX_FOR_TARGET): Add -shared-libgcc for libstdc++-v3 and libjava.
9453
9454 2002-02-24 Andrew Cagney <ac131313@redhat.com>
9455
9456 * texinfo/texinfo.tex: Update to version 2002-02-14.08.
9457
9458 2002-02-23 Daniel Jacobowitz <drow@mvista.com>
9459
9460 * config.guess: Import from master sources, rev 1.232.
9461 * config.sub: Import from master sources, rev 1.246.
9462
9463 2002-02-23 Alexandre Oliva <aoliva@redhat.com>
9464
9465 * Makefile.in (MAKEINFO): Don't assume makeinfo will be built just
9466 because its Makefile is there; test for the executable instead.
9467
9468 2002-02-09 Alexandre Oliva <aoliva@redhat.com>
9469
9470 Contribute sh64-elf.
9471 2000-12-01 Alexandre Oliva <aoliva@redhat.com>
9472 * configure.in: Added sh64-*-*.
9473
9474 2002-02-04 Jeff Johnston <jjohnstn@redhat.com>
9475
9476 * COPYING.NEWLIB: Remove advertising clause from
9477 Berkeley and Red Hat licenses.
9478
9479 2002-02-01 Mo DeJong <supermo@bayarea.net>
9480
9481 * Makefile.in: Add all-tix to deps for all-snavigator
9482 so that tix is built when building snavigator.
9483
9484 2002-02-01 Ben Elliston <bje@redhat.com>
9485
9486 * config.guess: Import from master sources, rev 1.229.
9487 * config.sub: Import from master sources, rev 1.240.
9488
9489 2002-01-27 Daniel Jacobowitz <drow@mvista.com>
9490
9491 From Steve Ellcey <sje@cup.hp.com>:
9492 * libtool.m4 (HPUX_IA64_MODE): Set to 32 or 64 based on ABI.
9493 (lt_cv_deplibs_check_method, lt_cv_file_magic_cmd,
9494 lt_cv_file_magic_test_file): Set to appropriate values for HP-UX
9495 IA64.
9496 * ltcf-c.sh (archive_cmds, hardcode_*): Ditto.
9497 * ltconfig (shlibpath_*, dynamic_linker, library_names_spec,
9498 soname_spec, sys_lib_search_path_spec): Ditto.
9499
9500 2002-01-26 Jason Thorpe <thorpej@wasabisystems.com>
9501
9502 * configure.in (*-*-netbsd*): New. Skip target-newlib,
9503 target-libiberty, and target-libgloss. Skip Java-related
9504 libraries if not supported for NetBSD on target CPU.
9505
9506 2002-01-23 Nick Clifton <nickc@cambridge.redhat.com>
9507
9508 * configure.in: Import StrongARM and XScale target_configdirs from
9509 FSF GCC version.
9510
9511 2002-01-16 H.J. Lu (hjl@gnu.org)
9512
9513 * config.guess: Import from master sources, rev 1.225.
9514 * config.sub: Import from master sources, rev 1.238.
9515
9516 * MAINTAINERS: Updated notes on config.guess and config.sub.
9517
9518 2002-01-11 Steve Ellcey <sje@cup.hp.com>
9519
9520 * configure.in (ia64*-*-hpux*): New target for IA64 HP-UX,
9521 ld and gdb are not supported.
9522
9523 2002-01-07 Jeff Johnston <jjohnstn@redhat.com>
9524
9525 * Change reference to Cygnus Solutions to be Red Hat.
9526
9527 2002-01-07 Jeff Johnston <jjohnstn@redhat.com>
9528
9529 * COPYING.NEWLIB: Update generic copyright date.
9530
9531 2002-01-07 Mark Salter <msalter@redhat.com>
9532
9533 * configure.in: Remove target-bsp and target-cygmon from arm builds.
9534 Allow target-libgloss to be built for arm, strongarm, and xscale.
9535
9536 2002-01-03 Ben Elliston <bje@redhat.com>
9537
9538 * MAINTAINERS: Update URL for config.* scripts.
9539
9540 2001-12-18 Alan Modra <amodra@bigpond.net.au>
9541
9542 * config.sub: Import latest version.
9543 * config.guess: Likewise.
9544
9545 2001-12-13 Thomas Fitzsimmons <fitzsim@redhat.com>
9546
9547 * configure.in (FLAGS_FOR_TARGET): Remove -nostdinc and -isystem
9548 options for i[3456]86-pc-linux* native builds.
9549
9550 2001-12-05 Laurent Guerby <guerby@acm.org>
9551
9552 * MAINTAINERS: gcc adopts symlink-tree, refer more to
9553 libiberty.
9554
9555 Import this patch from gcc:
9556
9557 2000-12-09 Laurynas Biveinis <lauras@softhome.net>
9558
9559 * symlink-tree: handle DOS-style absolute paths.
9560
9561 2001-11-28 DJ Delorie <dj@redhat.com>
9562 Zack Weinberg <zack@codesourcery.com>
9563
9564 When build != host, create libiberty for the build machine.
9565
9566 * Makefile.in (TARGET_CONFIGARGS, BUILD_CONFIGARGS): Replace
9567 CONFIG_ARGUMENTS.
9568 (ALL_BUILD_MODULES_LIST, BUILD_CONFIGDIRS, BUILD_SUBDIR):
9569 New variables.
9570 (ALL_BUILD_MODULES, CONFIGURE_BUILD_MODULES): New variables
9571 and rules.
9572 (all.normal): Depend on ALL_BUILD_MODULES.
9573 (CONFIGURE_TARGET_MODULES rule): Use TARGET_CONFIGARGS.
9574 (all-build-libiberty): Depend on configure-build-libiberty.
9575
9576 * configure: Calculate and substitute proper value for
9577 ALL_BUILD_MODULES.
9578 * configure.in: Create the build subdirectory.
9579 Calculate and substitute TARGET_CONFIGARGS (formerly
9580 CONFIG_ARGUMENTS); also BUILD_SUBDIR and BUILD_CONFIGARGS (new).
9581
9582 2001-11-26 Geoffrey Keating <geoffk@redhat.com>
9583
9584 * config.sub: Update to version 1.232 on subversion.
9585
9586 2001-11-20 Nick Clifton <nickc@cambridge.redhat.com>
9587
9588 * Makefile.in (do-proto-toplev): Use msgfmt to generate .gmo
9589 files from .po files for a distribution.
9590
9591 2001-11-19 Hans-Peter Nilsson <hp@bitrange.com>
9592
9593 * COPYING.NEWLIB: Mention preserved notice in specific parts.
9594
9595 2001-11-13 Jeff Holcomb <jeffh@redhat.com>
9596
9597 Merged from net gcc:
9598 2001-07-30 Jeff Sturm <jsturm@one-pont.com>
9599 * ltcf-c.sh: Use $objext, not $ac_objext.
9600 2001-07-27 Mark Kettenis <kettenis@gnu.org>
9601 * ltcf-cxx.sh: Add support for GNU.
9602 2001-07-22 Timothy Wall <twall@redhat.com>
9603 * ltcf-c.sh: Don't disable shared libraries for AIX5/IA64. Preserve
9604 default settings if using GNU tools with that configuration.
9605 * ltcf-cxx.sh: Ditto.
9606 * ltcf-gcj.sh: Ditto.
9607 2001-07-21 Michael Chastain <chastain@redhat.com>
9608 * ltconfig: Set max_cmd_len to a maximum of 512Kb, as it seems some
9609 HPUX 11.0 systems have trouble with 1MB. Mark as gcc-local.
9610 * ltmain.sh: Mark as gcc-local.
9611
9612 2001-11-13 Jeff Holcomb <jeffh@redhat.com>
9613
9614 * Makefile.in (all-bison): Revert 2001-10-24.
9615 Don't depend on texinfo.
9616
9617 2001-11-12 Hans-Peter Nilsson <hp@bitrange.com>
9618
9619 * COPYING.NEWLIB: Add BSD-style license/copyright blurb for my work.
9620
9621 2001-11-08 Phil Edwards <pedwards@disaster.jaj.com>
9622
9623 * configure.in (--enable-languages): Be more permissive about
9624 syntax. Check for empty lists better. Warn about $LANGUAGES.
9625
9626 2001-11-06 Hans-Peter Nilsson <hp@bitrange.com>
9627
9628 * Makefile.in (MAKEINFO): Use "missing" for makeinfo older than 4.0.
9629
9630 2001-10-24 Jeff Holcomb <jeffh@redhat.com>
9631
9632 Makefile.in (all-bison): Don't depend on texinfo.
9633
9634 2001-10-03 Alan Modra <amodra@bigpond.net.au>
9635
9636 * gettext.m4: Test po/POTFILES.in exists before trying to read.
9637
9638 2001-09-29 Alexandre Oliva <aoliva@redhat.com>
9639
9640 * Makefile.in (configure-target-gperf): Depend on $(ALL_GCC_CXX).
9641
9642 2001-09-28 Hans-Peter Nilsson <hp@axis.com>
9643
9644 * config.sub, config.guess: Import latest from subversions.
9645
9646 2001-09-21 Alexandre Oliva <aoliva@redhat.com>
9647
9648 * Makefile.in (AS_FOR_TARGET, LD_FOR_TARGET,
9649 DLLTOOL_FOR_TARGET, WINDRES_FOR_TARGET, AR_FOR_TARGET,
9650 RANLIB_FOR_TARGET, NM_FOR_TARGET): Don't use double quotes to
9651 avoid quotes nesting problems.
9652 (NATIVE_CHECK_MODULES): Ditto, just for consistency.
9653 (DO_X): Export only variables that are set.
9654
9655 2001-09-19 Ben Elliston <bje@redhat.com>
9656
9657 * configure.in (sparc-sun-solaris2*): Don't use /usr/bin/which on
9658 Solaris when testing for the /usr/ucb/cc compiler; it has incorrect
9659 semantics. Use the shell built-in "type" command instead.
9660
9661 2001-09-15 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
9662
9663 * config.sub: Reverted the earlier change, this version is not the
9664 master file.
9665
9666 2001-09-14 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
9667
9668 * config.sub: Change machine triplets from mipsel*-* to mips*el-*.
9669 Add support for mips64.
9670
9671 2001-09-03 Jeff Holcomb <jeffh@redhat.com>
9672
9673 * configure.in: Enable libstdc++-v3 for h8300 targets.
9674
9675 2001-08-30 Eric Christopher <echristo@redhat.com>
9676 Jason Eckhardt <jle@redhat.com>
9677
9678 * config.sub: Add support for mipsisa32.
9679
9680 2001-08-30 Eric Christopher <echristo@redhat.com>
9681
9682 * config.sub, config.guess: Import latest from subversions.
9683
9684 2001-08-20 Alan Modra <amodra@bigpond.net.au>
9685
9686 * config.sub, config.guess: Import latest from subversions.
9687
9688 2001-07-26 DJ Delorie <dj@redhat.com>
9689
9690 * MAINTAINERS: Clarify libiberty merge rules and procedures.
9691
9692 2001-06-19 Alan Modra <amodra@bigpond.net.au>
9693
9694 * Makefile.in: Revert 2001-06-17.
9695 (VER): If AM_INIT_AUTOMAKE uses BFD_VERSION, get version from bfd/.
9696
9697 2001-06-17 H.J. Lu <hjl@gnu.org>
9698
9699 * Makefile.in (gas.tar.bz2): Pass TOOL=bfd PACKAGE=gas to make.
9700 (gas+binutils.tar.bz2): Likewise.
9701 (binutils.tar.bz2): Pass TOOL=bfd PACKAGE=binutils to make.
9702
9703 Fri Jun 8 11:14:02 2001 Andrew Cagney <cagney@b1.cygnus.com>
9704
9705 * Makefile.in (VER): When present, extract the version number from
9706 the file version.in.
9707
9708 2001-06-08 Alexandre Oliva <aoliva@redhat.com>, Jeff Sturm <jsturm@one-point.com>
9709
9710 * Makefile.in (AS_FOR_TARGET, LD_FOR_TARGET, NM_FOR_TARGET): If
9711 gcc/xgcc is built, use -print-prog-name to find out the program
9712 name to use.
9713
9714 2001-06-04 Mark Mitchell <mark@codesourcery.com>
9715
9716 * ltcf-c.sh (archive_cmds, archive_expsym_cmds) [solaris,
9717 with_gcc]: Use `gcc -shared' to build a shared library.
9718
9719 2001-06-04 John David Anglin <dave@hiauly1.hia.nrc.ca>
9720
9721 * ltcf-c.sh (archive_cmd) [hpux, with_gcc]: Use gcc to link shared
9722 archives.
9723
9724 2001-05-28 Simon Patarin <simon.patarin@inria.fr>
9725
9726 * ltcf-cxx.sh (osf3/osf4/osf5): Support creation of C++ shared
9727 libraries when using g++ with native linker.
9728
9729 2001-05-28 Alexandre Oliva <aoliva@redhat.com>
9730
9731 * ltconfig, ltmain.sh: Upgrade to libtool 1.4a 1.641.2.256.
9732
9733 2001-05-24 Tom Rix <trix@redhat.com>
9734
9735 * configure.in : enable ld for aix
9736
9737 2001-05-22 Alexandre Oliva <aoliva@redhat.com>
9738
9739 * ltcf-cxx.sh (allow_undefined_flag, no_undefined_flag)
9740 [aix4*|aix5*]: Prepend blank.
9741
9742 2001-05-20 Alexandre Oliva <aoliva@redhat.com>
9743
9744 * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh, ltcf-cxx.sh,
9745 ltcf-gcj.sh: Upgraded to libtool 1.4a 1.641.2.254. Rebuilt a number
9746 of subdir/configure scripts to use the new libtool.m4.
9747
9748 2001-05-14 H.J. Lu <hjl@gnu.org>
9749
9750 * config.if (libc_interface): Set to -libc6.2- for cross
9751 compiling to Linux/glibc 2.2.
9752
9753 2001-05-03 Alexandre Oliva <aoliva@redhat.com>
9754
9755 * configure.in (noconfigdirs) [*-cygwin*, *-mingw*, *-beos]: Disable
9756 libgcj.
9757
9758 2001-04-26 Alexandre Oliva <aoliva@redhat.com>
9759
9760 * configure.in (noconfigdirs): Don't reset it from scratch in the
9761 target case; only append to it.
9762
9763 2001-04-26 Alexandre Oliva <aoliva@redhat.com>
9764
9765 * configure.in (noconfigdirs) [hppa*-*-*, mips*-*-irix6*,
9766 sparc-*-solaris2.8]: Disable ${libgcj}.
9767
9768 2001-04-25 Alexandre Oliva <aoliva@redhat.com>
9769
9770 * configure.in (libgcj_saved): Copy from $libgcj.
9771 (libgcj): Zero out if --enable-libgcj; add to noconfigdirs is
9772 --disable-libgcj.
9773
9774 2001-04-20 Alexandre Oliva <aoliva@redhat.com>
9775
9776 * ltconfig, ltmain.sh, ltcf-cxx.sh: Upgraded to libtool 1.4a
9777 1.641.2.228.
9778
9779 2001-04-12 Alexandre Oliva <aoliva@redhat.com>
9780
9781 * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh, ltcf-cxx.sh,
9782 ltcf-gcj.sh: Upgraded to libtool 1.4a 1.641.2.226.
9783
9784 2001-04-01 Alexandre Oliva <aoliva@redhat.com>
9785
9786 * Makefile.in (CXX_FOR_TARGET_FOR_RECURSIVE_MAKE, RECURSE_FLAGS):
9787 New macros.
9788 (bootstrap, cross): Use RECURSE_FLAGS.
9789 * configure.in: Subst CXX_FOR_TARGET_FOR_RECURSIVE_MAKE.
9790
9791 2001-03-27 Alexandre Oliva <aoliva@redhat.com>
9792
9793 * configure.in (CXX_FOR_TARGET): Use xgcc for libstdc++-v3.
9794
9795 2001-03-23 Nick Clifton <nickc@redhat.com>
9796
9797 * README-maintainer-mode: Add note about inability to use "make
9798 distclean" in maintainer mode.
9799
9800 2001-03-22 Alexandre Oliva <aoliva@redhat.com>
9801
9802 Re-installed:
9803 2001-01-02 Laurynas Biveinis <lauras@softhome.net>
9804 * ltcf-c.sh: Clear ac_cv_prog_cc_pic for DJGPP. Do not add
9805 '-DPIC' to ac_cv_prog_cc_pic for DJGPP.
9806 * ltcf-cxx.sh: Likewise.
9807 * ltcf-gcj.sh: Likewise.
9808
9809 2001-03-22 Philip Blundell <philb@gnu.org>
9810
9811 * config.sub, config.guess: Import latest from subversions.
9812
9813 2001-03-22 Alexandre Oliva <aoliva@redhat.com>
9814
9815 * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh, ltcf-cxx.sh,
9816 ltcf-gcj.sh: Upgraded to libtool 1.4a 1.641.2.198.
9817
9818 2001-03-20 Michael Chastain <chastain@redhat.com>
9819
9820 * Makefile.in: all-m4 depends on all-texinfo.
9821
9822 2001-03-08 Alexandre Oliva <aoliva@redhat.com>
9823
9824 * Makefile.in (ALL_GCC, ALL_GCC_C, ALL_GCC_CXX): Set before use.
9825
9826 2001-02-22 Jeff Johnston <jjohnstn@redhat.com>
9827
9828 * COPYING.NEWLIB: Remove DJ Delorie's address because it is no
9829 longer valid.
9830
9831 2001-02-16 Nick Clifton <nickc@redhat.com>
9832
9833 * configure.in (noconfigdirs): Allow configuration of texinfo
9834 for Cygwin hosts.
9835
9836 2001-02-09 Martin Schwidefsky <schwidefsky@de.ibm.com>
9837
9838 * config.guess: Add linux target for S/390.
9839 * config.sub: Likewise.
9840 * configure.in: Likewise.
9841
9842 2001-02-06 Ben Elliston <bje@redhat.com>
9843
9844 * configure: Output host type to stdout, not stderr.
9845
9846 2001-02-04 Michael Sokolov <msokolov@ivan.Harhan.ORG>
9847
9848 * config.guess: Import from subversions.gnu.org (revision 1.181).
9849 * config.sub: Import from subversions.gnu.org (revision 1.199).
9850
9851 2001-01-30 Alan Modra <alan@linuxcare.com.au>
9852
9853 * config.guess: Handle hppa64-linux systems.
9854
9855 2001-01-27 Michael Sokolov <msokolov@ivan.Harhan.ORG>
9856
9857 * ltcf-cxx.sh (ac_cv_prog_cc_pic_works, ac_cv_prog_cc_static_works):
9858 Don't unset, it's non-portable and no longer necessary, set to empty
9859 instead.
9860
9861 2001-01-27 Michael Sokolov <msokolov@ivan.Harhan.ORG>, Alexandre Oliva <oliva@lsd.ic.unicamp.br>
9862
9863 * ltconfig: Shell portability fix for the tagname validity check.
9864
9865 2001-01-27 Michael Sokolov <msokolov@ivan.Harhan.ORG>
9866
9867 * ltcf-cxx.sh: Use parentheses around eval $ac_compile.
9868
9869 2001-01-27 Alexandre Oliva <aoliva@redhat.com>
9870
9871 * ltcf-c.sh (ld_shlibs) [aix5*]: Disable on unknown CPU types.
9872 * ltcf-cxx.sh, ltcf-gcj.sh: Likewise.
9873
9874 2001-01-24 Alexandre Oliva <aoliva@redhat.com>
9875
9876 * ltmain.sh (TAG disable-shared, TAG disable-static): Make sure we
9877 keep at least one of build_libtool_libs or build_old_libs set to
9878 yes.
9879
9880 2001-01-24 Alexandre Oliva <aoliva@redhat.com>
9881
9882 * ltcf-gcj.sh (lt_simple_link_test_code): Remove stray `(0)'.
9883 * libtool.m4 (_AC_LIBTOOL_GCJ): Pass $CPPFLAGS on.
9884
9885 2000-11-07 Philip Blundell <pb@futuretv.com>
9886
9887 * Makefile.in (ETC_SUPPORT): Also add configbuild.* and configdev.*.
9888
9889 2000-11-03 Philip Blundell <pb@futuretv.com>
9890
9891 * Makefile.in (ETC_SUPPORT): Add configure.texi and associated info
9892 files.
9893
9894 2001-01-15 Jeff Johnston <jjohnstn@redhat.com>
9895
9896 * COPYING.NEWLIB: Put into source repository.
9897
9898 2001-01-15 Ben Elliston <bje@redhat.com>
9899
9900 * configure.in (host_tools): Add sid.
9901 Always configure cgen.
9902 * Makefile.in (all-sid): New target.
9903 (check-sid, clean-sid, install-sid): Likewise.
9904
9905 2001-01-07 Andreas Jaeger <aj@suse.de>
9906
9907 * config.sub, config.guess: Update from subversions.
9908
9909 2000-12-12 Alexandre Oliva <aoliva@redhat.com>
9910
9911 * configure.in: Disable language-specific target libraries for
9912 languages that aren't enabled.
9913
9914 2000-11-24 Nick Clifton <nickc@redhat.com>
9915
9916 * configure.in (xscale-elf): Add target.
9917 (xscale-coff): Add target.
9918 (c4x, c5x, tic54x): Move after ARM targets.
9919
9920 2000-11-23 Alexandre Oliva <aoliva@redhat.com>
9921
9922 * ltcf-gcj.sh: Added file, required by 2000-11-18 merge.
9923
9924 2000-11-20 Ian Lance Taylor <ian@zembu.com>
9925
9926 * ltcf-cxx.sh: Added file, required by 2000-11-18 merge.
9927
9928 2000-11-18 Alexandre Oliva <aoliva@redhat.com>
9929
9930 * Makefile.in: Merge with GCC and libgcj.
9931 (ALL_GCC_C, ALL_GCC_CXX): New macros. Use them as dependencies of
9932 configure-target-<library> when their configure scripts need the C
9933 or C++ library to have already been built to work properly.
9934 (do_proto_toplev): Set them to an empty string.
9935
9936 2000-11-18 Alexandre Oliva <aoliva@redhat.com>
9937
9938 * Makefile.in (HOST_LIB_PATH, TARGET_LIB_PATH): New macros.
9939 (REALLY_SET_LIB_PATH): Use them.
9940
9941 2000-11-06 Christopher Faylor <cgf@cygnus.com>
9942
9943 * config.sub: Add support for Sun Chorus
9944
9945 2000-11-02 Per Lundberg <plundis@chaosdev.org>
9946
9947 * config.sub: Add support for the *-storm-chaos OS.
9948
9949 2000-10-30 Stephane Carrez <stcarrez@worldnet.fr>
9950
9951 * configure.in (noconfigdirs): Don't compile some
9952 of the libraries for 68HC11 & 68hc12 targets.
9953
9954 2000-09-30 Alexandre Oliva <aoliva@redhat.com>
9955
9956 * ltconfig, ltmain.sh, libtool.m4: Updated from libtool
9957 multi-language branch, to work around Solaris' /bin/sh bug. Rebuilt
9958 all affected `configure' scripts.
9959
9960 2000-09-25 Alexandre Oliva <aoliva@redhat.com>
9961
9962 * Makefile.in (DEVO_SUPPORT): Added gettext.m4, libtool.m4 and
9963 ltcf-c.sh.
9964
9965 2000-09-12 Philip Blundell <philb@gnu.org>
9966
9967 * config.sub, config.guess: Update from subversions.
9968
9969 2000-09-06 Alexandre Oliva <aoliva@redhat.com>
9970
9971 * Makefile.in (all-zlib): Added dummy target.
9972
9973 * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh: Updated from libtool
9974 multi-language branch.
9975
9976 2000-09-05 Alexandre Oliva <aoliva@redhat.com>
9977
9978 * Makefile.in (all-bootstrap): Added all-texinfo and all-zlib.
9979 (bootstrap*): Depend on all-bootstrap.
9980
9981 2000-09-02 Alexandre Oliva <aoliva@redhat.com>, DJ Delorie <dj@redhat.com>
9982
9983 * configure.in (FLAGS_FOR_TARGET): Use -nostdinc even for Canadian
9984 crosses, but add gcc/include to the header search path for them.
9985
9986 2000-08-31 Alexandre Oliva <aoliva@redhat.com>
9987
9988 * ltconfig, ltmain.sh: Updated from libtool multi-language branch.
9989 * libtool.m4, ltcf-c.sh: Copied from libtool multi-language branch.
9990 * gettext.m4: New file, extracted from aclocal.m4.
9991
9992 2000-08-22 Alexandre Oliva <aoliva@redhat.com>
9993
9994 * config-ml.in (CC, CXX): Avoid trailing whitespace.
9995 (LD_LIBRARY_PATH, SHLIB_PATH): Adjust for multilibs and export to
9996 sub-configures.
9997
9998 2000-08-20 Doug Evans <dje@casey.transmeta.com>
9999
10000 * Makefile.in (ALL_MODULES): Add all-cgen.
10001 (CROSS_CHECK_MODULES,INSTALL_MODULES,CLEAN_MODULES): Similarily.
10002 (all-cgen): New target.
10003 (all-opcodes,all-sim): Depend on all-cgen.
10004 * configure.in (host_tools): Add cgen.
10005 Only configure cgen if --enable-cgen-maint.
10006
10007 2000-08-17 Alexandre Oliva <aoliva@redhat.com>
10008
10009 * config-ml.in (CC, CXX): Don't introduce a leading space.
10010
10011 2000-08-16 Alexandre Oliva <aoliva@redhat.com>
10012
10013 * configure.in (libstdcxx_flags): Use
10014 libstdc++-v3/src/libstdc++.INC.
10015
10016 2000-08-15 Alexandre Oliva <aoliva@redhat.com>
10017
10018 * configure.in (libstdcxx_flags): Use libstdc++-v3/src/INCLUDES.
10019
10020 2000-08-11 Jason Merrill <jason@redhat.com>
10021
10022 * configure.in (CC_FOR_TARGET, CHILL_FOR_TARGET,
10023 CXX_FOR_TARGET): Add -B$$r/gcc/ here.
10024 (FLAGS_FOR_TARGET): Not here.
10025 (CHILL_FOR_TARGET, CXX_FOR_TARGET): Don't check the list of languages.
10026
10027 2000-08-07 DJ Delorie <dj@redhat.com>
10028
10029 * configure.in (FLAGS_FOR_TARGET): invert test for xgcc, should mean
10030 "if we're also building gcc, and it's a gcc that will run on the
10031 build machine, we want to use its includes instead of the system's
10032 default includes".
10033
10034 2000-08-03 Alexandre Oliva <aoliva@redhat.com>
10035
10036 * configure.in (libstdcxx_flags): Don't use `"'.
10037
10038 * config-ml.in: Adjust multilib search paths to the
10039 appropriate multilib tree.
10040
10041 2000-08-02 Alexandre Oliva <aoliva@redhat.com>
10042
10043 * configure.in (CHILL_FOR_TARGET, CXX_FOR_TARGET): Convert blanks to
10044 commas in $LANGUAGES.
10045
10046 2000-08-01 Alexandre Oliva <aoliva@redhat.com>
10047
10048 * configure.in (qCXX_FOR_TARGET): Use echo instead of expr.
10049
10050 2000-07-31 Alexandre Oliva <aoliva@redhat.com>
10051
10052 * configure.in (qCXX_FOR_TARGET): Quote `&' characters in
10053 CXX_FOR_TARGET for sed.
10054
10055 2000-07-30 Alexandre Oliva <aoliva@redhat.com>
10056
10057 * configure.in (CC_FOR_TARGET, CHILL_FOR_TARGET, CXX_FOR_TARGET):
10058 Do not override if already set in the environment or in configure.
10059 Don't duplicate $(FLAGS_FOR_TARGET) if it already appears in them.
10060 (FLAGS_FOR_TARGET): Don't use host directories on Canadian crosses.
10061
10062 2000-07-27 Alexandre Oliva <aoliva@redhat.com>
10063
10064 * Makefile.in (FLAGS_FOR_TARGET): New macro.
10065 (GCC_FOR_TARGET): Use it.
10066 (CC_FOR_TARGET, CXX_FOR_TARGET, CHILL_FOR_TARGET): Now defined...
10067 * configure.in: ... here.
10068 (FLAGS_FOR_TARGET): Define. Add ld build dir to -L path.
10069 (libstdcxx_flags): Define and append to CXX_FOR_TARGET.
10070
10071 2000-07-24 Alexandre Oliva <aoliva@redhat.com>
10072
10073 * Makefile.in (configure-target-libf2c): Depend on $(ALL_GCC).
10074 (configure-target-libchill, configure-target-libobjc): Likewise.
10075
10076 * configure.in: Use the same cache file for all target libs.
10077 * config-ml.in: But different cache files per multilib variant.
10078
10079 2000-07-23 Michael Sokolov <msokolov@ivan.Harhan.ORG>
10080
10081 * configure (topsrcdir): Don't use dirname.
10082
10083 2000-07-20 Jason Merrill <jason@redhat.com>
10084
10085 * configure.in: Remove all references to libg++ and librx.
10086
10087 * configure, configure.in, Makefile.in: Unify gcc and binutils.
10088
10089 2000-07-20 Hans-Peter Nilsson <hp@axis.com>
10090
10091 * config.sub: Update to subversions version 2000-07-06.
10092
10093 2000-07-12 Andrew Haley <aph@cygnus.com>
10094
10095 * configure.in (host_makefile_frag): Use mh-ia64pic on IA-64 hosts.
10096 (target_makefile_frag): Use mt-ia64pic on IA-64 targets.
10097
10098 2000-07-07 Phil Edwards <pme@sourceware.cygnus.com>
10099
10100 * symlink-tree: Check number of arguments.
10101
10102 2000-06-06 Andrew Cagney <cagney@b1.cygnus.com>
10103
10104 * texinfo/texinfo.tex: Update to version 2000-05-28.15.
10105
10106 2000-07-05 Jim Wilson <wilson@cygnus.com>
10107
10108 * Makefile.in (CXX_FOR_TARGET): Add libstdc++ to the library
10109 search path for a g++ extracted from the build tree. This
10110 will allow link tests run by configure scripts in
10111 subdirectories to succeed.
10112
10113 2000-07-01 Koundinya K <kk@ddeorg.soft.net>
10114
10115 * ltconfig: Add support for mips-dde-sysv4.2MP
10116
10117 2000-06-28 Corinna Vinschen <vinschen@cygnus.com>
10118
10119 * ltconfig: Check for host_os beeing one of `cygwin', `mingw' or
10120 `os2'. Force ac_cv_exeext to be ".exe" in that case.
10121
10122 2000-06-19 Timothy Wall <twall@cygnus.com>
10123
10124 * configure.in (noconfigdirs): Set noconfigdirs for tic54x target.
10125 * config.sub: Add tic54x target.
10126
10127 2000-06-07 Phillip Thomas <pthomas@suse.de>
10128
10129 * README-maintainer-mode: New file: Contains notes on using
10130 --enable-maintainer-mode with binutils.
10131
10132 2000-05-29 Andrew Cagney <cagney@b1.cygnus.com>
10133
10134 * texinfo/texinfo.tex: Update. Version from makeinfo 4.0.
10135
10136 2000-05-30 Andrew Cagney <cagney@b1.cygnus.com>
10137
10138 * config.sub: Import CVS version 1.167 Tue May 30 09:00:07 2000.
10139 * config.guess: Import CVS version 1.148 Tue May 30 09:00:06 2000
10140
10141 20000-05-21 H.J. Lu (hjl@gnu.org)
10142
10143 * Makefile.in (CC_FOR_TARGET): Make sure as/ld in the gcc
10144 directory are used if they exist. Make sure
10145 $(build_tooldir)/include is searched for header files,
10146 $(build_tooldir)/lib/ for library files.
10147 (GCC_FOR_TARGET): Likewise.
10148 (CXX_FOR_TARGET): Likewise.
10149
10150 2000-05-18 Jeffrey A Law (law@cygnus.com)
10151
10152 * configure.in (hppa*64*-*-*): Do build ld for this configuration.
10153
10154 2000-05-17 Alexandre Oliva <aoliva@cygnus.com>
10155
10156 * Makefile.in (configure-target-libiberty): Depend on
10157 configure-target-newlib.
10158
10159 2000-05-16 Alexandre Oliva <aoliva@cygnus.com>
10160
10161 * configure.in, Makefile.in: Merge all libffi-related
10162 configury stuff from the libgcj tree.
10163
10164 2000-05-16 Andrew Cagney <cagney@b1.cygnus.com>
10165
10166 Thu Apr 27 11:01:48 2000 Andrew Cagney <cagney@b1.cygnus.com>:
10167 * Makefile.in (do-tar-bz2, do-md5sum): Skip CVS directories.
10168
10169 2000-05-16 Andrew Cagney <cagney@b1.cygnus.com>
10170
10171 Wed Apr 26 17:03:53 2000 Andrew Cagney <cagney@b1.cygnus.com>:
10172 * Makefile.in (do-djunpack): New target. Update djunpack.bat with
10173 current version information. Add to proto-toplev directory.
10174 (gdb-taz): Build do-djunpack.
10175
10176 2000-05-15 David Edelsohn <edelsohn@gnu.org>
10177
10178 * configure.in: Special case powerpc*-*-aix* target_makefile_frag.
10179
10180 2000-05-13 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
10181
10182 * ltmain.sh: Preserve in relink_command any environment
10183 variables that may affect the linker behavior.
10184
10185 2000-05-12 Jeffrey A Law (law@cygnus.com)
10186
10187 * config.sub (basic_machine): Recognize hppa64 as a valid cpu type.
10188
10189 2000-05-10 Jim Wilson <wilson@cygnus.com>
10190
10191 * configure.in (ia64*-*-elf*): Add gdb and friends to noconfigdirs.
10192
10193 2000-05-08 Eli Zaretskii <eliz@is.elta.co.il>
10194
10195 * djunpack.bat: Change the Sed script to replace @V@ in fnchange.lst
10196 with the version name.
10197
10198 2000-05-01 Benjamin Kosnik <bkoz@cygnus.com>
10199
10200 * config.if: Tweak.
10201
10202 2000-04-23 Eli Zaretskii <eliz@is.elta.co.il>
10203
10204 * djunpack.bat: New file.
10205
10206 2000-04-19 Andrew Cagney <cagney@b1.cygnus.com>
10207
10208 * Makefile.in (taz, gdb-taz, gas.tar.bz2, binutils.tar.bz2,
10209 gas+binutils.tar.bz2, libg++.tar.bz2, gnats.tar.bz2, gdb.tar.bz2,
10210 dejagnu.tar.bz2, gdb+dejagnu.tar.bz2, insight.tar.bz2,
10211 insight+dejagnu.tar.bz2, newlib.tar.bz2): Pass MD5PROG to sub-make.
10212
10213 2000-04-16 Dave Pitts <dpitts@cozx.com>
10214
10215 * config.sub (case $basic_machine): Change default for "ibm-*"
10216 to "openedition".
10217
10218 2000-04-12 Andrew Cagney <cagney@b1.cygnus.com>
10219
10220 * Makefile.in (gdb-taz): New target. GDB specific archive.
10221 (do-md5sum): New target.
10222 (MD5PROG): Define.
10223 (PACKAGE): Default to TOOL.
10224 (VER): Default to a shell script.
10225 (taz): Rewrite target. Move real work to do-proto-toplev. Include
10226 md5 checksum generation.
10227 (do-proto-toplev): New target. Create $(PACKAGE)-$(VER) link.
10228 (do-tar-bz2): Delete creation of $(PACKAGE)-$(VER) link.
10229 (gdb.tar.bz2, dejagnu.tar.bz2, gdb+dejagnu.tar.bz2,
10230 insight.tar.bz2): Use gdb-taz to create archive.
10231
10232 2000-04-07 Andrew Cagney <cagney@b1.cygnus.com>
10233
10234 * configure (warn_cflags): Delete.
10235
10236 2000-04-05 Benjamin Kosnik <bkoz@cygnus.com>
10237 Martin v. Loewis <martin@loewis.home.cs.tu-berlin.de>
10238
10239 * configure.in (enable_libstdcxx_v3): Add.
10240 (target_libs): Add bits here to switch between libstdc++-v2 and
10241 libstdc++-v3.
10242 * config.if: And this file too.
10243 * Makefile.in: Add libstdc++-v3 targets.
10244
10245 2000-04-05 Michael Meissner <meissner@redhat.com>
10246
10247 * config.sub (d30v): Add d30v as a basic machine type.
10248
10249 2000-03-29 Jason Merrill <jason@casey.cygnus.com>
10250
10251 * configure.in: -linux-gnu*, not -linux-gnu.
10252
10253 2000-03-03 Andrew Cagney <cagney@b1.cygnus.com>
10254
10255 * Makefile.in (taz): Set PACKAGE to TOOL when not defined.
10256 (do-tar-bz2): Replace TOOL with PACKAGE.
10257 (gdb.tar.bz2): Remove GDBTK from GDB package.
10258 (gdb+dejagnu.tar.bz2, insight.tar.bz2, insight+dejagnu.tar.bz2,
10259 dejagnu.tar.bz2): New packages.
10260
10261 2000-02-27 Andreas Jaeger <aj@suse.de>
10262
10263 * configure.in: Add entry for mips*-*-linux*, move catch all
10264 *-*-*linux* entry below this one.
10265
10266 2000-02-27 Ian Lance Taylor <ian@zembu.com>
10267
10268 * ltconfig, ltmain.sh: Update to libtool 1.3.4.
10269
10270 2000-02-24 Nick Clifton <nickc@cygnus.com>
10271
10272 * config.sub: Support an OS of "wince".
10273
10274 2000-02-24 Andrew Cagney <cagney@b1.cygnus.com>
10275
10276 * config.guess, config.sub: Updated to match config's 2000-02-15
10277 version.
10278
10279 2000-02-23 Linas Vepstas <linas@linas.org>
10280
10281 * config.sub: Add support for Linux/IBM 370.
10282 * configure.in: Likewise.
10283
10284 2000-02-22 Nick Clifton <nickc@cygnus.com>
10285
10286 * configure.in: Add mips-pe, sh-pe and arm-wince-pe targets.
10287
10288 2000-02-20 Christopher Faylor <cgf@cygnus.com>
10289
10290 * config.guess: Guess "cygwin" rather than "cygwin32".
10291
10292 2000-02-16 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10293
10294 * configure (gcc_version): When setting, narrow search to
10295 lines containing `version_string'.
10296
10297 2000-02-15 Denis Chertykov <denisc@overta.ru>
10298
10299 * config.sub: Add support for avr target.
10300
10301 2000-02-01 Hans-Peter Nilsson <hp@bitrange.com>
10302
10303 * config.sub: Add mmix-knuth-mmixware.
10304
10305 2000-01-27 Christopher Faylor <cgf@redhat.com>
10306
10307 * Makefile.in (CC_FOR_TARGET): Add new winsup directory
10308 structure stuff to -L library search.
10309 (CXX_FOR_TARGET): Ditto.
10310 (CROSS_CHECK_MODULES): Fix spelling mistake.
10311
10312 2000-01-24 Mark Mitchell <mark@codesourcery.com>
10313
10314 * Makefile.in (CXX_FOR_TARGET): Use g++, not xgcc, to invoke
10315 the C++ compiler.
10316
10317 2000-01-12 Richard Henderson <rth@cygnus.com>
10318
10319 * configure.in: Don't build some bits for beos.
10320
10321 2000-01-12 Joel Sherrill (joel@OARcorp.com)
10322
10323 * Makefile.in (CC_FOR_TARGET): Use newlib libraries as well
10324 as include files.
10325
10326 2000-01-06 Geoff Keating <geoffk@cygnus.com>
10327
10328 * configure.in: Use mt-aix43 to handle *_TARGET defs,
10329 not mh-aix43.
10330
10331 1999-12-14 Richard Henderson <rth@cygnus.com>
10332
10333 * config.guess (alpha-osf, alpha-linux): Detect ev67.
10334 * config.sub: Accept alphaev[78], alphaev8.
10335
10336 1999-12-03 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
10337
10338 * config.guess, config.sub: Update from autoconf.
10339
10340 Tue Nov 23 00:57:41 1999 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
10341
10342 * config-ml.in (sparc*-*-*): Disable sparcv9 support if the
10343 necessary libraries are missing.
10344
10345 1999-10-25 Andreas Schwab <schwab@suse.de>
10346
10347 * configure: Fix quoting inside arguments of eval.
10348
10349 1999-10-21 Nick Clifton <nickc@cygnus.com>
10350
10351 * config-ml.in: Allow suppression of some ARM multilibs.
10352
10353 Tue Sep 7 23:33:57 1999 Linas Vepstas <linas@linas.org>
10354
10355 * config.guess: Add OS/390 match pattern.
10356 * config.sub: Add mvs, openedition targets.
10357 * configure.in (i370-ibm-opened*): New.
10358
10359 1999-09-04 Steve Chamberlain <sac@pobox.com>
10360
10361 * config.sub: Add support for configuring for pj.
10362
10363 1999-08-31 Nick Clifton <nickc@cygnus.com>
10364
10365 * config.sub (maybe_os): Add support for configuring for fr30.
10366
10367 1999-08-25 Nick Clifton <nickc@cygnus.com>
10368
10369 * configure.in: Do not configure or build ld for AIX
10370 platforms. ld is known to be broken on these platforms.
10371
10372 Wed Aug 25 01:12:25 1999 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
10373
10374 * config-ml.in: Pass compiler flag corresponding to multidirs to
10375 subdir configures.
10376
10377 1999-08-09 Ian Lance Taylor <ian@zembu.com>
10378
10379 * Makefile.in (LDFLAGS): Define.
10380
10381 1999-08-08 Mumit Khan <khan@xraylith.wisc.edu>
10382
10383 * configure.in (i[3456]-*-mingw32*): Don't put gprof in
10384 noconfigdirs.
10385 (*-*-cygwin*): Likewise.
10386
10387 1999-08-08 Ian Lance Taylor <ian@zembu.com>
10388
10389 * mkdep: New file.
10390 * Makefile.in (GAS_SUPPORT_DIRS): Add mkdep.
10391 (BINUTILS_SUPPORT_DIRS): Add mkdep.
10392
10393 From Eli Zaretskii <eliz@is.elta.co.il>:
10394 * configure (tmpfile): Change cONf$$ to cNf$$ to avoid an overly
10395 long file name when using DJGPP on MS-DOS.
10396
10397 Wed Aug 4 02:07:14 1999 Jeffrey A Law (law@cygnus.com)
10398
10399 * config.sub (vxworks case): Use os=-vxworks, not os=vxworks.
10400
10401 1999-07-30 Alan Modra <alan@spri.levels.unisa.edu.au>
10402
10403 * Makefile.in (check-target-libio): Remove all-target-libstdc++
10404 dependency as this causes "make check" to globally "make all"
10405
10406 Tue Jun 22 23:45:18 1999 Tom Tromey <tromey@cygnus.com>
10407
10408 * configure.in (target_libs): Added target-zlib.
10409 * Makefile.in (ALL_TARGET_MODULES): Added zlib.
10410 (CONFIGURE_TARGET_MODULES): Likewise.
10411 (CHECK_TARGET_MODULES): Likewise.
10412 (INSTALL_TARGET_MODULES): Likewise.
10413 (CLEAN_TARGET_MODULES): Likewise.
10414 (configure-target-zlib): New target.
10415 (all-target-zlib): Likewise.
10416 (all-target-libjava): Depend on all-target-zlib.
10417 (configure-target-libjava): Depend on configure-target-zlib.
10418
10419 * Makefile.in (configure-target-libjava): Depend on
10420 configure-target-newlib.
10421 (configure-target-boehm-gc): New target.
10422 (configure-target-qthreads): New target.
10423
10424 * configure.in (target_libs): Added target-qthreads.
10425 * Makefile.in (ALL_TARGET_MODULES): Added qthreads.
10426 (CONFIGURE_TARGET_MODULES): Likewise.
10427 (CHECK_TARGET_MODULES): Likewise.
10428 (INSTALL_TARGET_MODULES): Likewise.
10429 (CLEAN_TARGET_MODULES): Likewise.
10430 (all-target-qthreads): New target.
10431 (configure-target-libjava): Depend on configure-target-qthreads.
10432 (all-target-libjava): Depend on all-target-qthreads.
10433
10434 * Makefile.in (ALL_TARGET_MODULES): Added libjava, boehm-gc.
10435 (CONFIGURE_TARGET_MODULES): Likewise.
10436 (CHECK_TARGET_MODULES): Likewise.
10437 (INSTALL_TARGET_MODULES): Likewise.
10438 (CLEAN_TARGET_MODULES): Likewise.
10439 (all-target-libjava): New target.
10440 (all-target-boehm-gc): Likewise.
10441 * configure.in (target_libs): Added libjava, boehm-gc.
10442
10443 1999-07-22 Ian Lance Taylor <ian@zembu.com>
10444
10445 * Makefile.in (binutils.tar.bz2): Don't pass makeall.bat and
10446 configure.bat in SUPPORT_FILES.
10447 (gas+binutils.tar.bz2): Likewise.
10448
10449 * makeall.bat: Remove; obsolete.
10450
10451 1999-07-21 Ian Lance Taylor <ian@zembu.com>
10452
10453 From Mark Elbrecht:
10454 * configure.bat: Remove; obsolete.
10455
10456 1999-07-11 Ian Lance Taylor <ian@zembu.com>
10457
10458 * configure: Add -W -Wall to the default CFLAGS when compiling with
10459 gcc.
10460
10461 Thu Jul 8 12:32:23 1999 John David Anglin <dave@hiauly1.hia.nrc.ca>
10462
10463 * configure.in: Build ld, binutils & gas for hppa*-*-linux-gnu*.
10464
10465 1999-06-30 Mark Mitchell <mark@codesourcery.com>
10466
10467 * configure.in: Build ld on IRIX6.
10468
10469 1999-06-12 Ian Lance Taylor <ian@zembu.com>
10470
10471 * Makefile.in: Change distribution targets to use bzip2 instead of
10472 gzip.
10473 (TEXINFO_SUPPORT): Set to just texinfo/texinfo.tex.
10474 (taz): Don't use texinfo/gpl.texinfo or texinfo/lgpl.texinfo.
10475
10476 1999-06-04 Nick Clifton <nickc@cygnus.com>
10477
10478 * config.sub: Add mcore target.
10479
10480 1999-05-30 Cort Dougan <cort@cs.nmt.edu>
10481
10482 * config.guess (ppc-*-linux-gnu): Also use ld emul elf32ppclinux.
10483
10484 1999-05-25 H.J. Lu (hjl@gnu.org)
10485
10486 * config.guess (dummy): Changed to $dummy.
10487
10488 1999-05-24 Nick Clifton <nickc@cygnus.com>
10489
10490 * config.sub: Tidied up case statements.
10491
10492 1999-05-22 Ben Elliston <bje@cygnus.com>
10493
10494 * config.guess: Handle NEC UX/4800. Contributed by Jiro Takabatake
10495 <jiro@din.or.jp>.
10496
10497 * config.guess: Merge with FSF version. Future changes will be
10498 more accurately recorded in this ChangeLog.
10499 * config.sub: Likewise.
10500
10501 1999-05-20 Stephen L Moshier <moshier@world.std.com>
10502
10503 * Makefile.in (GCC_FOR_TARGET): Add -I$(build_tooldir)/include.
10504
10505 1999-04-30 Tom Tromey <tromey@cygnus.com>
10506
10507 * ltmain.sh: [mode link] Always use CC given by ltconfig.
10508
10509 1999-04-23 Tom Tromey <tromey@cygnus.com>
10510
10511 * ltconfig, ltmain.sh: Update to libtool 1.2f.
10512
10513 1999-04-20 Drew Moseley <dmoseley@cygnus.com>
10514
10515 * configure.in (noconfigdirs): Don't build libstub for arm-elf targets.
10516 (noconfigdirs): Don't build any bsp stuff for for arm-oabi targets.
10517 Bad merge removed these two changes.
10518
10519 Tue Apr 13 22:50:54 1999 Donn Terry (donn@interix.com)
10520 Martin Heller (Ing.-Buero_Heller@t-online.de)
10521
10522 * config.guess (interix Alpha): Add.
10523
10524 1999-04-11 Richard Henderson <rth@cygnus.com>
10525
10526 * configure.in (i?86-*-beos*): Do config gperf; don't config
10527 gdb, newlib, or libgloss.
10528
10529 1999-04-11 Alexandre Oliva <oliva@dcc.unicamp.br>
10530
10531 * config-ml.in: On mips*-*-*, if multidirs contains mabi=64, try to
10532 link a trivial program with -mabi=64. If it fails, remove mabi=64
10533 from multidirs.
10534
10535 1999-04-10 Philipp Thomas (kthomas@gwdg.de)
10536
10537 * config.sub: Set basic_machine to i586 when target_alias = k6-*.
10538
10539 1999-04-08 Nick Clifton <nickc@cygnus.com>
10540
10541 * config.sub: Add support for mcore targets.
10542
10543 1999-04-07 Michael Meissner <meissner@cygnus.com>
10544
10545 * configure.in (d30v-*): Use config/mt-d30v as makefile fragment,
10546 not mt-ospace, in order to shut up assembler warning about using
10547 symbols that are named the same as registers.
10548
10549 1999-04-07 Drew Moseley <dmoseley@cygnus.com>
10550
10551 * Makefile.in (all-target-cygmon): Added all-target-bsp to the
10552 dependency list for all-target-cygmon.
10553
10554 1999-04-05 Doug Evans <devans@casey.cygnus.com>
10555
10556 * config-ml.in: Check $host, not $target, for selective multilibs.
10557 (arm-*-*): Allow disabling of biendian, h/w fp, 26 bit apcs,
10558 thumb interworking, and underscore prefix multilibs.
10559
10560 1999-04-04 Ian Lance Taylor <ian@zembu.com>
10561
10562 * missing: Update to version from current automake.
10563
10564 Fri Apr 2 15:11:32 1999 H.J. Lu (hjl@gnu.org)
10565
10566 * configure (gxx_include_dir): Removed.
10567
10568 * configure.in (gxx_include_dir): Handle it.
10569 * Makefile.in: Likewise.
10570
10571 1999-03-29 Gavin Romig-Koch <gavin@cygnus.com>
10572
10573 * config.sub (mips64vr4111,mips64vr4111el) Add.
10574
10575 1999-03-21 Ben Elliston <bje@cygnus.com>
10576
10577 * config.guess: Correct typo for detecting ELF on FreeBSD.
10578
10579 Thu Mar 18 00:17:50 1999 Mark Elbrecht <snowball3@usa.net>
10580
10581 * configure.in (pc-msdosdjgpp): Set host_makefile_frag to
10582 config/mh-djgpp.
10583
10584 Thu Mar 11 18:37:23 1999 Drew Moseley <dmoseley@cygnus.com>
10585
10586 * Makefile.in (all-target-bsp): Added all-gcc all-binutils and
10587 all-target-newlib to dependency list for all-target-bsp.
10588
10589 Thu Mar 11 01:19:31 1999 Mumit Khan <khan@xraylith.wisc.edu>
10590
10591 * config.sub: Add i386-uwin support.
10592 * config.guess: Likewise.
10593
10594 Thu Mar 11 01:07:55 1999 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
10595
10596 * configure.in: cleanup, add mh-*pic handling for arm, special
10597 case powerpc*-*-aix*
10598
10599 Wed Mar 10 18:35:07 1999 Jeff Johnston <jjohnstn@cygnus.com>
10600
10601 * configure.in (noconfigdirs): Removed target-libgloss so libnosys.a
10602 can be built.
10603
10604 Wed Mar 10 17:39:09 1999 Drew Moseley <dmoseley@cygnus.com>
10605
10606 * configure.in: Added bsp support to arm-*-coff and arm-*-elf
10607 targets.
10608
10609 1999-03-02 Nick Clifton <nickc@cygnus.com>
10610
10611 * config.sub: Rename CYGNUS LOCAL to EGCS LOCAL
10612
10613 1999-02-28 Geoffrey Noer <noer@cygnus.com>
10614
10615 * config.sub: Check for "cygwin*" rather than "cygwin32*"
10616
10617 1999-02-24 Nick Clifton <nickc@cygnus.com>
10618
10619 * config.sub: Fix typo in arm recognition.
10620
10621 1999-02-24 Drew Moseley <dmoseley@cygnus.com>
10622
10623 * configure.in (noconfigdirs): Changed target_configdirs to
10624 include target-bsp only for m68k-*-elf* and m68k-*-coff*
10625 rather than m68k-*-* since it is not known to work on
10626 m68k-aout. Ditto for arm-*-*oabi.
10627
10628 1999-02-24 Stan Shebs <shebs@andros.cygnus.com>
10629
10630 * configure.in (*-*-windows*): Remove, no longer used.
10631
10632 1999-02-19 Ben Elliston <bje@cygnus.com>
10633
10634 * config.guess: Automatically recognise ELF on FreeBSD. From Niall
10635 Smart and improved by Andrew Cagney.
10636
10637 1999-02-18 Marc Espie <espie@cvs.openbsd.org>
10638
10639 * config.guess: Recognize openbsd-*-hppa.
10640
10641 1999-02-17 H.J. Lu (hjl@gnu.org)
10642
10643 * Makefile.in (REALLY_SET_LIB_PATH): Append $$$(RPATH_ENVVAR)
10644 only if it is not empty.
10645
10646 1999-02-17 Nick Clifton <nickc@cygnus.com>
10647
10648 Patch from: Scott Bambrough <scottb@corelcomputer.com>
10649
10650 * config.guess: Modified to recognize uname's armv* syntax.
10651
10652 * config.sub: Modified to recognize uname's armv* syntax.
10653
10654 1999-02-17 Mark Salter <msalter@cygnus.com>
10655
10656 * configure.in: Added target-bsp for sparclite.
10657
10658 1999-02-08 Richard Henderson <rth@cygnus.com>
10659
10660 * config.sub: Recognize alphapca5[67] and up to alphaev8.
10661
10662 1999-02-08 Nick Clifton <nickc@cygnus.com>
10663
10664 * configure.in: Add support for strongarm port.
10665 * config.sub: Add support for strongarm target.
10666
10667 1999-02-07 Mumit Khan <khan@xraylith.wisc.edu>
10668
10669 * configure.in (*-*-cygwin32*): Use config/mh-cygwin instead of
10670 the old name config/mh-cygwin32.
10671 Enable texinfo.
10672
10673 1999-02-04 Ian Lance Taylor <ian@cygnus.com>
10674
10675 * configure.in: Do build ld for ix86 Solaris.
10676
10677 1999-02-02 Jim Wilson <wilson@cygnus.com>
10678
10679 * Makefile.in (EXTRA_GCC_FLAGS): Set AR to $AR instead of
10680 $AR_FOR_TARGET. Likewise for RANLIB.
10681
10682 1999-02-02 Catherine Moore <clm@cygnus.com>
10683
10684 * config.sub (oabi): Recognize.
10685 * configure.in (arm-*-oabi): Handle.
10686
10687 1999-01-30 Robert Lipe (robertlipe@usa.net)
10688
10689 * config.guess: Improve detection of i686 on UnixWare 7.
10690
10691 1999-01-30 Mumit Khan <khan@xraylith.wisc.edu>
10692
10693 * config.guess: Add support for i386-pc-interix.
10694 * config.sub: Likewise.
10695 * configure.in: Likewise.
10696
10697 1999-01-18 Christopher Faylor <cgf@cygnus.com>
10698
10699 * Makefile.in: Remove unneeded all-target-libio from
10700 from all-target-winsup target since it is now unneeded.
10701 Add all-target-libtermcap in its place since it is now
10702 needed.
10703
10704 1998-12-30 Christopher Faylor <cgf@cygnus.com>
10705
10706 * configure.in: makefile stub for cygwin target is probably
10707 unnecessary. Remove it for now.
10708
10709 1998-12-30 Christopher Faylor <cgf@cygnus.com>
10710
10711 * configure.in: libtermcap.a should be built when cygwin is the
10712 target as well as the host.
10713 * config.guess: Allow mixed case in cygwin uname output.
10714 * Makefile.in: Add libtermcap target.
10715
10716 1998-12-23 Jeffrey A Law (law@cygnus.com)
10717
10718 * config.sub: Clean up handling of hppa2.0.
10719
10720 1998-12-22 Rodney Brown (rodneybrown@pmsc.com)
10721
10722 * config.guess: Use C code to identify more HP machines.
10723
10724 Thu Dec 17 01:22:30 1998 Jeffrey A Law (law@cygnus.com)
10725
10726 * config.sub: Handle hppa2.0.
10727
10728 Tue Dec 15 17:02:58 1998 Bob Manson <manson@charmed.cygnus.com>
10729
10730 * configure.in: Add cygmon for x86-coff and x86-elf. Configure
10731 cygmon for all sparclite targets, regardless of object format.
10732
10733 1998-12-15 Mark Salter <msalter@cygnus.com>
10734
10735 * configure.in: Added target-bsp for several target architectures.
10736
10737 * Makefile.in: Added rules for bsp.
10738
10739 Fri Dec 4 01:34:02 1998 Jeffrey A Law (law@cygnus.com)
10740
10741 * config.guess: Improve detection of hppa2.0 processors.
10742
10743 Fri Dec 4 01:33:05 1998 Niall Smart <nialls@euristix.ie>
10744
10745 * config.guess: Recognize FreeBSD using ELF automatically.
10746
10747 1998-11-26 Manfred Hollstein <manfred@s-direktnet.de>
10748
10749 * configure (skip-this-dir): Add handling for new shell script, which
10750 might be created by a sub-directory's configure to indicate, this particular
10751 directory is "unwanted".
10752 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): Likewise.
10753
10754 Wed Nov 18 18:28:45 1998 Geoffrey Noer <noer@cygnus.com>
10755
10756 * ltconfig: import from libtool, after changing libtool to
10757 account for the cygwin name change.
10758
10759 Wed Nov 18 18:09:14 1998 Geoffrey Noer <noer@cygnus.com>
10760
10761 * Makefile.in: CC_FOR_TARGET and CXX_FOR_TARGET should also
10762 include newlib/libc/sys/cygwin and newlib/libc/sys/cygwin32.
10763
10764 Wed Nov 18 20:13:29 1998 Christopher Faylor <cgf@cygnus.com>
10765
10766 * configure.in: Add libtermcap to list of cygwin dependencies.
10767
10768 1998-11-17 Geoffrey Noer <noer@cygnus.com>
10769
10770 * Makefile.in: modify CC_FOR_TARGET and CXX_FOR_TARGET so that
10771 they include winsup/include when it's a cygwin target.
10772
10773 1998-11-12 Tom Tromey <tromey@cygnus.com>
10774
10775 * configure.in (host_tools): Added zip.
10776 * Makefile.in (all-target-libjava): Depend on all-zip.
10777 (all-zip): New target.
10778 (ALL_MODULES): Added all-zip.
10779 (NATIVE_CHECK_MODULES): Added check-zip.
10780 (INSTALL_MODULES): Added install-zip.
10781 (CLEAN_MODULES): Added clean-zip.
10782
10783 1998-11-12 Geoffrey Noer <noer@cygnus.com>
10784
10785 * Makefile.in: lose "32" from comment about cygwin.
10786
10787 1998-11-05 Nick Clifton <nickc@cygnus.com>
10788
10789 * configure.in: Use -Os to build target libraries for the fr30.
10790
10791 1998-11-04 Dave Brolley <brolley@cygnus.com>
10792
10793 * config.sub: Add fr30.
10794
10795 1998-11-02 Geoffrey Noer <noer@cygnus.com>
10796
10797 * configure.in: drop "32" from config/mh-cygwin32. Check
10798 cygwin* instead of cygwin32*.
10799 * config.sub: Check cygwin* instead of cygwin32*.
10800
10801 1998-10-22 Robert Lipe <robertl@dgii.com>
10802
10803 * config.guess: Match any version of Unixware7.
10804
10805 1998-10-20 Syd Polk <spolk@cygnus.com>
10806
10807 * Makefile.in configure.in: Add the ability to use tcl8.1 and tk8.1
10808 if desired.
10809
10810 1998-10-18 Jeffrey A Law (law@cygnus.com)
10811
10812 * config.if (cxx_interface, libstdcxx_interface): Do not try to set
10813 these if the appropriate directories and files to not exist.
10814
10815 1998-10-14 Jeffrey A Law (law@cygnus.com)
10816
10817 * Makefile.in (DEVO_SUPPORT): Add config.if.
10818
10819 1998-10-13 Manfred Hollstein <manfred@s-direktnet.de>
10820
10821 * configure: Add pattern to replace "build_tooldir"'s
10822 definition in the generated Makefile with "tooldir"'s
10823 actual value.
10824
10825 Tue Oct 13 09:17:06 1998 Jeffrey A Law (law@cygnus.com)
10826
10827 * config.sub: Bring back lost sparcv9.
10828
10829 * Makefile.in (all-snvavigator): Remove all-flexlm dependency.
10830
10831 Mon Oct 12 12:09:44 1998 Jeffrey A Law (law@cygnus.com)
10832
10833 * Makefile.in (CHILL_FOR_TARGET): Mirror recent changes to
10834 CC_FOR_TARGET and friends.
10835
10836 Mon Oct 12 12:09:30 1998 Alexandre Oliva <oliva@dcc.unicamp.br>
10837
10838 * Makefile.in (build_tooldir): New variable, same as tooldir.
10839 (CC_FOR_TARGET, GCC_FOR_TARGET, CXX_FOR_TARGET): Add
10840 -B$(build_tooldir)/bin/.
10841 (BASE_FLAGS_TO_PASS): Pass build_tooldir down.
10842
10843 Wed Sep 30 22:20:50 1998 Robert Lipe <robertl@dgii.com>
10844
10845 * config.sub: Add support for i[34567]86-pc-udk.
10846 * configure.in: Likewise.
10847
10848 Wed Sep 30 19:23:48 1998 Geoffrey Noer <noer@cygnus.com>
10849
10850 * Makefile.in: add bzip2 package building bits for user
10851 tools module
10852 * configure.in: ditto
10853
10854 Wed Sep 30 03:00:05 1998 Jeffrey A Law (law@cygnus.com)
10855
10856 * Makefile.in (TARGET_CONFIGDIRS): Add libobjc.
10857 (ALL_TARGET_MODULES): Add all-target-libobjc.
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 1998-09-30 Manfred Hollstein <manfred@s-direktnet.de>
10864
10865 * configure.in (target_subdir): Remove duplicate line.
10866
10867 Tue Sep 29 22:45:41 1998 Felix Lee <flee@cygnus.com>
10868
10869 * Makefile.in (all-automake): fix dependencies.
10870
10871 Mon Sep 28 04:04:27 1998 Jeffrey A Law (law@cygnus.com)
10872
10873 * configure.in: Minor cleanups for building in the $(target_alias)
10874 subdir.
10875
10876 1998-09-22 Jim Wilson <wilson@cygnus.com>
10877
10878 * Makefile.in (bootstrap): Set r and s before make all. Use
10879 BASE_FLAGS_TO_PASS in make all.
10880 (cross): Likewise.
10881
10882 1998-09-20 Mark Mitchell <mark@markmitchell.com>
10883
10884 * Makefile.in (bootstrap): Pass TARGET_FLAGS_TO_PASS to `make all'.
10885
10886 Sun Sep 20 00:13:02 1998 Richard Henderson <rth@cygnus.com>
10887
10888 * config.sub: Fix typo in last change.
10889
10890 1998-09-19 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
10891
10892 * config.sub: Add support for C4x target.
10893 * configure.in: Likewise.
10894
10895 1998-09-13 David S. Miller <davem@pierdol.cobaltmicro.com>
10896
10897 * config.sub: Recognize sparcv9 just like sparc64.
10898
10899 Wed Sep 9 15:44:52 1998 Robert Lipe <robertl@dgii.com>
10900
10901 * config.guess: Match "Pent II" or "PentII" for OpenServer.
10902
10903 Tue Sep 8 01:18:39 1998 Jeffrey A Law (law@cygnus.com)
10904
10905 * config.guess: Correctly identify Pentium II sco boxes.
10906
10907 * config.guess: Fix "tr" code. From Weiwen Liu.
10908
10909 Sat Sep 5 13:56:52 1998 John Hughes <john@Calva.COM>
10910
10911 * configure.in: Do not assume x86-svr4 or x86-unixware can handle
10912 stabs.
10913
10914 Sat Sep 5 02:12:02 1998 Jeffrey A Law (law@cygnus.com)
10915
10916 * Makefile.in (TARGET_CONFIGDIRS): Add libchill.
10917 (ALL_TARGET_MODULES): Add all-target-libchill.
10918 (CONFIGURE_TARGET_MODULES, CHECK_TARGET_MODULES): Similarly.
10919 (INSTALL_TARGET_MODULES, CLEAN_TARGET_MODULES): Similarly.
10920 (all-target-libchill): Add dependencies.
10921 * configure.in (target_libs): Add libchill.
10922
10923 Sun Aug 30 22:27:02 1998 Lutz Wohlrab <lutz.wohlrab@informatik.tu-chemnitz.de>
10924
10925 * config.guess: Avoid assumptions about "tr" behaves when
10926 LANG is set to something other than English.
10927
10928 Sun Aug 30 22:14:44 1998 H.J. Lu (hjl@gnu.org)
10929
10930 * configure (gxx_include_dir): Changed to
10931 '${prefix}/include/g++'-${libstdcxx_interface}.
10932
10933 * config.if: New to determine the interfaces.
10934
10935 Sun Aug 30 21:15:19 1998 Mark Klein (mklein@dis.com)
10936
10937 * config.guess: Detect and handle MPE/IX.
10938 * config.sub: Deal with MPE/IX.
10939
10940 Sat Aug 29 14:32:55 1998 David Edelsohn <edelsohn@mhpcc.edu>
10941
10942 * configure.in: Use mh-aix43.
10943
10944 1998-07-29 Manfred Hollstein <manfred@s-direktnet.de>
10945
10946 * configure: Fix --without/--disable cases for gxx-include-dir.
10947
10948 Fri Aug 28 12:28:26 1998 Per Bothner <bothner@cygnus.com>
10949
10950 * mdata-sh: Imported. Needed for automake support.
10951
10952 Thu Aug 13 12:49:29 1998 H.J. Lu <hjl@gnu.org>
10953
10954 * Makefile.in (taz): Try "chmod -R og=u ." before
10955 "chmod og=u `find . -print`".
10956
10957 Fri Jul 31 09:38:33 1998 Catherine Moore <clm@cygnus.com>
10958
10959 * configure.in: Add arm-elf and thumb-elf support.
10960
10961 Mon Jul 27 16:23:58 1998 Doug Evans <devans@canuck.cygnus.com>
10962
10963 * Makefile.in: Undo previous patch.
10964
10965 Fri Jul 24 19:55:24 1998 Doug Evans <devans@canuck.cygnus.com>
10966
10967 * Makefile.in (INSTALL_TARGET): Move EXTRA_TARGET_HOST_INSTALL_MODULES
10968 to here ...
10969 (install-no-fixedincludes): and here
10970 (INSTALL_MODULES): ... from here.
10971
10972 Fri Jul 24 17:01:42 1998 Ian Lance Taylor <ian@cygnus.com>
10973
10974 * config.sub: Merge with FSF.
10975
10976 * config.guess: Merge with FSF.
10977
10978 Fri Jul 24 08:43:36 1998 Doug Evans <devans@canuck.cygnus.com>
10979
10980 * configure (extraconfigdirs): New variable.
10981 (SUBDIRS): Add extraconfigdirs and recurse on them too.
10982 * Makefile.in (all): Move higher in file.
10983 (EXTRA_TARGET_HOST_ALL_MODULES): New variable.
10984 (EXTRA_TARGET_HOST_{INSTALL,CHECK}_MODULES): New variables.
10985 (ALL_MODULES): Add EXTRA_TARGET_HOST_ALL_MODULES.
10986 (CROSS_CHECK_MODULES): Add EXTRA_TARGET_HOST_CHECK_MODULES.
10987 (INSTALL_MODULES): Add EXTRA_TARGET_HOST_INSTALL_MODULES.
10988
10989 1998-07-23 Brendan Kehoe <brendan@cygnus.com>
10990
10991 * Makefile.in (all-target-libjava): Depend on all-gcc and
10992 all-target-newlib.
10993 (configure-target-libjava): Depend on $(ALL_GCC).
10994
10995 Sat Jul 18 14:32:43 CDT 1998 Robert Lipe <robertl@dgii.com>
10996
10997 * config.guess: (*-pc-sco3.2v5) Add detection for Pentium II.
10998 (*-pc-unixware7) Add detection for Pentium II, Pentium Pro.
10999
11000 Fri Jul 17 13:30:18 1998 Ian Lance Taylor <ian@cygnus.com>
11001
11002 * ylwrap: Change absolute path checks to check for DOS style path
11003 names.
11004
11005 * ylwrap: Don't use a full path name if the source file is in the
11006 same directory. From hjl@lucon.org (H.J. Lu).
11007
11008 * config-ml.in: Default to being verbose, to match Feb 18 change to
11009 configure.
11010
11011 Thu Jul 16 12:29:51 1998 Ian Lance Taylor <ian@cygnus.com>
11012
11013 Brought over from egcs:
11014
11015 Sat Jun 27 22:46:32 1998 Jeffrey A Law (law@cygnus.com)
11016
11017 * configure.in (target_subdir): Set to ${target_alias} instead
11018 of "libraries".
11019
11020 Mon Sep 1 16:45:44 1997 Jim Wilson <wilson@cygnus.com>
11021
11022 * configure.in (target_subdir): Set to libraries if enable_multilib.
11023
11024 Wed Jul 15 01:00:54 1998 Ian Lance Taylor <ian@cygnus.com>
11025
11026 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): If there are any
11027 multilibs, force reconfiguration the first time we create
11028 multilib.out in a subdirectory, in case TARGET_SUBDIR is `.'.
11029
11030 Tue Jul 14 23:41:03 1998 Ian Lance Taylor <ian@cygnus.com>
11031
11032 * configure.in: Strip any --no option from CONFIG_ARGUMENTS, to
11033 avoid confusion with --no-recursion.
11034
11035 Tue Jul 14 15:37:41 1998 Geoffrey Noer <noer@cygnus.com>
11036
11037 * configure.in: Win32 hosts shouldn't use install -x
11038 * install-sh: remove -x option, and special .exe-handling
11039 hack.
11040
11041 Tue Jul 14 15:28:41 1998 Richard Henderson <rth@cygnus.com>
11042
11043 * config.guess: Recognize i586-pc-beos.
11044 * configure.in: Don't build some bits for beos.
11045
11046 Tue Jul 14 13:22:18 1998 Ian Lance Taylor <ian@cygnus.com>
11047
11048 * configure: If CC is set but CFLAGS is not, and CC is gcc, make
11049 CFLAGS default to -O2.
11050
11051 * ltmain.sh: Add some hacks to make SunOS --enable-shared work
11052 when using GNU ld.
11053
11054 Fri Jul 10 13:18:23 1998 Ian Lance Taylor <ian@cygnus.com>
11055
11056 * ltmain.sh: Correct install when using a different shell.
11057
11058 Tue Jul 7 15:24:38 1998 Ian Lance Taylor <ian@cygnus.com>
11059
11060 * ltconfig, ltmain.sh: Update to libtool 1.2b.
11061
11062 Thu Jul 2 13:57:36 1998 Klaus Kaempf <kkaempf@rmi.de>
11063
11064 * makefile.vms: Update to build binutils/makefile.vms. Add install
11065 target.
11066
11067 Wed Jul 1 16:45:21 1998 Ian Lance Taylor <ian@cygnus.com>
11068
11069 * ltconfig: Update to correct AIX handling.
11070
11071 Sat Jun 27 22:46:32 1998 Jeffrey A Law (law@cygnus.com)
11072
11073 * Makefile.in (BASE_FLAGS_TO_PASS): Add TARGET_SUBDIR.
11074
11075 * configure.in (target_subdir): Set to ${target_alias} instead
11076 of "libraries".
11077
11078 1998-06-26 Manfred Hollstein <manfred@s-direktnet.de>
11079
11080 * Makefile.in (BASE_FLAGS_TO_PASS): Add gcc_version_trigger.
11081 (Makefile): Depend on $(gcc_version_trigger).
11082
11083 * configure (gcc_version): Change default initializer to empty
11084 string.
11085 (gcc_version_trigger): New variable; pass this variable down
11086 to subdir configures to enable them checking gcc's version
11087 themselves. Emit make macros for both gcc_version vars.
11088 (topsrcdir): Initialize reliably.
11089 (recursion line): Remove --with-gcc-version=${gcc_version}.
11090
11091 1998-06-24 Manfred Hollstein <manfred@s-direktnet.de>
11092
11093 * configure (enable_version_specific_runtime_libs): Implement new flag
11094 --enable-version-specific-runtime-libs which installs C++ runtime stuff
11095 in $(libsubdir); emit definition in each generated Makefile.
11096 (gxx_include_dir): Initialize depending on
11097 $enable_version_specific_runtime_libs.
11098
11099 1998-06-24 Manfred Hollstein <manfred@s-direktnet.de>
11100
11101 * configure (gcc_version): Initialize properly depending on
11102 how and where configure is started.
11103 (recursion line): Pass a --with-gcc-version=${gcc_version}
11104 to configures in subdirs.
11105
11106 Wed Jun 24 16:01:59 1998 John Metzler <jmetzler@cygnus.com>
11107
11108 * configure.in (noconfigdirs): Add configure pattern for mips tx39
11109 cygmon
11110
11111 Tue Jun 23 22:42:32 1998 Mark Alexander <marka@cygnus.com>
11112
11113 * configure.in: Add cygmon and libstub support for mn10200.
11114
11115 1998-06-19 Manfred Hollstein <manfred@s-direktnet.de>
11116
11117 * configure (gcc_version): Add new variable describing the
11118 particular gcc version we're building.
11119 * Makefile.in (libsubdir): Add new macro for the directory
11120 in which the compiler finds executables, libraries, etc.
11121 (BASE_FLAGS_TO_PASS): Pass down gcc_version, target_alias
11122 and libsubdir.
11123
11124 Fri Jun 19 02:36:59 1998 Alexandre Oliva <oliva@dcc.unicamp.br>
11125
11126 * Makefile.in (local-clean): Remove *.log.
11127 (warning.log): Built with warn_summary from build.log.
11128 (mail-report.log): Run test_summary.
11129 (mail-report-with-warnings.log): Run test_summary including
11130 warning.log in the report.
11131
11132 Thu Jun 18 11:26:03 1998 Robert Lipe <robertl@dgii.com>
11133
11134 * config.guess: Detection of Pentium II for *-sco-3.2v5*.
11135
11136 Mon Jun 15 14:53:54 1998 Andrew Cagney <cagney@b1.cygnus.com>
11137
11138 * Makefile.in (grep): Grep no longer depends on libiberty.
11139
11140 Fri Jun 12 14:03:34 1998 Syd Polk <spolk@cygnus.com>
11141
11142 * Makefile.in: all-snavigator needs all-libgui.
11143
11144 Thu Jun 11 19:43:47 1998 Mark Alexander <marka@cygnus.com>
11145
11146 * configure.in: Add cygmon and libstub support for mn10300.
11147
11148 Wed Jun 10 11:19:47 1998 Ian Lance Taylor <ian@cygnus.com>
11149
11150 * missing: Update to version from automake 1.3.
11151
11152 * ltmain.sh: On installation, don't get confused if the same name
11153 appears more than once in the list of library names.
11154
11155 Wed Jun 3 14:51:42 1998 Ian Lance Taylor <ian@cygnus.com>
11156
11157 * config.sub: Accept m68060 and m5200 as CPU names.
11158
11159 Mon Jun 1 17:25:16 1998 Ian Lance Taylor <ian@cygnus.com>
11160
11161 * configure: Use && rather than using -a in test, because odd
11162 strings can confuse test.
11163 * configure.in: Likewise.
11164
11165 Thu May 28 19:31:13 1998 Ian Lance Taylor <ian@cygnus.com>
11166
11167 * ltconfig, ltmain.sh: Bring in Visual C++ support.
11168
11169 Sat May 23 23:44:13 1998 Alexandre Oliva <oliva@dcc.unicamp.br>
11170
11171 * Makefile.in (boostrap2-lean, bootstrap3-lean,
11172 bootstrap4-lean): New targets.
11173
11174 Mon May 11 23:55:56 1998 Jeffrey A Law (law@cygnus.com)
11175
11176 * mpw-* Delete. Not used.
11177
11178 Mon May 11 23:11:34 1998 Jeffrey A Law (law@cygnus.com)
11179
11180 * COPYING.LIB: Update FSF address.
11181
11182 Fri May 8 01:30:20 1998 Ian Lance Taylor <ian@cygnus.com>
11183
11184 * ltconfig, ltmain.sh: Update to libtool 1.2a.
11185
11186 * Makefile.in (GASB_SUPPORT_DIRS): Remove intl; already included via
11187 GAS_SUPPORT_DIRS.
11188
11189 Thu May 7 17:27:35 1998 Ian Lance Taylor <ian@cygnus.com>
11190
11191 * ltconfig, ltmain.sh: Avoid producing a version number if
11192 -version-info was not used.
11193
11194 Tue May 5 18:02:24 1998 Ian Lance Taylor <ian@cygnus.com>
11195
11196 * configure.in: Add --with-newlib to CONFIG_ARGUMENTS if we are
11197 building with newlib.
11198
11199 1998-04-30 Paul Eggert <eggert@twinsun.com>
11200
11201 * Makefile.in (EXTRA_GCC_FLAGS): Remove backslash at end;
11202 Solaris `make' causes it to continue to next definition.
11203
11204 Tue Apr 28 16:24:24 1998 Jason Molenda (crash@bugshack.cygnus.com)
11205
11206 * Makefile.in (install-gdbtk): Call this 'install-gdb' so that
11207 the right GUI libraries and files are installed along with GDB.
11208
11209 Tue Apr 28 18:11:24 1998 Ian Lance Taylor <ian@cygnus.com>
11210
11211 * configure.in: Change alpha to alpha* in several places.
11212
11213 Tue Apr 28 07:42:00 1998 Mark Alexander <marka@cygnus.com>
11214
11215 * config.sub: Recognize sparc86x.
11216
11217 Tue Apr 28 07:35:02 1998 Michael Meissner <meissner@cygnus.com>
11218
11219 * configure.in (--enable-target-optspace): Remove debug echo.
11220
11221 Thu Apr 23 21:31:16 1998 Jim Wilson <wilson@cygnus.com>
11222
11223 * configure: Set CXXFLAGS from CXXFLAGS, not CFLAGS.
11224
11225 Thu Apr 23 12:26:38 1998 Ian Lance Taylor <ian@cygnus.com>
11226
11227 * ltconfig: Update cygwin32 support.
11228
11229 * Makefile.in (GAS_SUPPORT_DIRS): Add intl.
11230 (BINUTILS_SUPPORT_DIRS, GASB_SUPPORT_DIRS): Likewise.
11231 (GDB_SUPPORT_DIRS): Likewise.
11232
11233 Wed Apr 22 12:30:10 1998 Michael Meissner <meissner@cygnus.com>
11234
11235 * configure.in (target_makefile_frag): If --enable-target-optspace,
11236 use -Os to compile target libraries rather than -O2. Default to
11237 using -Os for d10v and m32r if --{enable,disable}-target-optspace is
11238 not used.
11239 * configure.in (target_cflags): Ditto for d30v.
11240
11241 Tue Apr 21 23:06:54 1998 Tom Tromey <tromey@cygnus.com>
11242
11243 * Makefile.in (all-bfd): Depend on all-intl.
11244 (all-binutils): Likewise.
11245 (all-gas): Likewise.
11246 (all-gprof): Likewise.
11247 (all-ld): Likewise.
11248
11249 1998-04-19 Brendan Kehoe <brendan@cygnus.com>
11250
11251 * configure.in (host_tools): Fix typo, lbtool -> libtool.
11252
11253 Fri Apr 17 16:20:42 1998 Ian Lance Taylor <ian@cygnus.com>
11254
11255 * Makefile.in (all-bfd): Depend upon all-libiberty.
11256
11257 * ltconfig, ltmain.sh: Bring in newer cygwin32 support.
11258
11259 Fri Apr 17 12:22:22 1998 Bob Manson <manson@charmed.cygnus.com>
11260
11261 * Makefile.in: Add libstub.
11262
11263 * configure.in: Ditto. Build libstub for targets that have cygmon
11264 support.
11265
11266 Tue Apr 14 18:01:55 1998 Ian Lance Taylor <ian@cygnus.com>
11267
11268 * configure.in: Don't set PICFLAG on ix86-cygwin32.
11269
11270 Tue Apr 14 12:24:45 1998 J. Kean Johnston <jkj@sco.com>
11271
11272 * configure.in: Recognise i[3456]96-*-sysv5* as a valid host, and
11273 use mh-sysv5 if specified. Support gprof on SCO Open Server.
11274
11275 Tue Apr 14 11:33:51 1998 Krister Walfridsson <cato@df.lth.se>
11276
11277 * configure: Define DEFAULT_M4 by searching PATH.
11278 * Makfile.in: Use DEFAULT_M4.
11279
11280 Mon Apr 13 15:37:24 1998 Ian Lance Taylor <ian@cygnus.com>
11281
11282 * ltconfig: Add cygwin32 support.
11283
11284 * Makefile.in, configure.in: Add libtool as a native only directory
11285 to configure and build.
11286
11287 Sun Apr 12 20:58:46 1998 Jeffrey A Law (law@cygnus.com)
11288
11289 * Makefile.in (INSTALL_MODULES): Remove texinfo.
11290
11291 Wed Apr 8 13:18:56 1998 Philippe De Muyter <phdm@macqel.be>
11292
11293 * Makefile.in (EXTRA_GCC_FLAGS): XFOO lines shortened.
11294
11295 Thu Apr 2 14:48:44 1998 Geoffrey Noer <noer@cygnus.com>
11296
11297 * Makefile.in: add ash make rules
11298 * configure.in: add ash to native_only and host_tools lists
11299
11300 Thu Mar 26 12:53:20 1998 Tom Tromey <tromey@cygnus.com>
11301
11302 * Makefile.in (all-gettext, all-intl): New targets.
11303 (ALL_MODULES): Added all-gettext, all-intl.
11304 (CROSS_CHECK_MODULES): Added check-gettext, check-intl.
11305 (INSTALL_MODULES): Added install-gettext, install-intl.
11306 (CLEAN_MODULES): Added clean-gettext, clean-intl.
11307
11308 * configure.in (host_tools): Added gettext.
11309 (native_only): Likewise.
11310 (noconfigdirs) [various cases]: Likewise.
11311 (host_libs): Added intl.
11312
11313 Thu Mar 26 15:00:11 1998 Keith Seitz <keiths@onions.cygnus.com>
11314
11315 * configure: Do not disable building gdbtk for cygwin32 hosts.
11316
11317 Wed Mar 25 10:04:18 1998 Nick Clifton <nickc@cygnus.com>
11318
11319 * configure.in: Add thumb-coff target.
11320 * config.sub: Add thumb-coff target.
11321
11322 Wed Mar 25 11:49:12 1998 Jason Molenda (crash@bugshack.cygnus.com)
11323
11324 * Makefile.in: Revert yesterday's change.
11325 (all-target-winsup): all-target-librx stays out of here.
11326
11327 Tue Mar 24 16:58:29 1998 Jason Molenda (crash@bugshack.cygnus.com)
11328
11329 * Makefile.in (TARGET_CONFIGDIRS, ALL_TARGET_MODULES,
11330 CONFIGURE_TARGET_MODULES, CHECK_TARGET_MODULES,
11331 INSTALL_TARGET_MODULES, CLEAN_TARGET_MODULES, all-target-winsup):
11332 Remove references to librx and libg++.
11333
11334 Tue Mar 24 18:28:12 1998 Eric Mumpower <nocturne@cygnus.com>
11335
11336 * Makefile.in (BASE_FLAGS_TO_PASS): Pass $(lispdir) down to
11337 recursive makes
11338
11339 Tue Mar 24 11:37:45 1998 Ian Lance Taylor <ian@cygnus.com>
11340
11341 * Makefile.in (CC_FOR_TARGET): Use $(TARGET_SUBDIR) when passing -B
11342 for newlib directory.
11343 (CXX_FOR_TARGET): Likewise.
11344
11345 Mon Mar 23 11:30:21 1998 Jeffrey A Law (law@cygnus.com)
11346
11347 * ltconfig: Update after libtool/ltconfig.in change for
11348 hpux11.
11349
11350 Fri Mar 20 18:51:43 1998 Ian Lance Taylor <ian@cygnus.com>
11351
11352 * ltconfig, ltmain.sh: Update to libtool 1.2.
11353
11354 Fri Mar 20 09:32:14 1998 Manfred Hollstein <manfred@s-direktnet.de>
11355
11356 * Makefile.in (install-gcc): Don't specify LANGUAGES here.
11357 (install-gcc-cross): Instead, override LANGUAGES here.
11358
11359 1998-03-18 Dave Love <d.love@dl.ac.uk>
11360
11361 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): Set CONFIG_SITE to a
11362 non-existent file since /dev/null loses with bash 2.0/autoconf 2.12.
11363
11364 Wed Mar 18 09:24:59 1998 Nick Clifton <nickc@cygnus.com>
11365
11366 * configure.in: Add Thumb-pe target.
11367
11368 Tue Mar 17 16:59:00 1998 Syd Polk <spolk@cygnus.com>
11369
11370 * Makefile.in - changed sn targets to snavigator
11371 * configure.in - changed sn targets to snavigator
11372
11373 Tue Mar 17 10:33:28 1998 Manfred Hollstein <manfred@s-direktnet.de>
11374
11375 * config-ml.in: After building symlink tree call make distclean
11376 if a Makefile got linked into ${ml_dir}/${ml_libdir}; this happens
11377 to be the case for libiberty.
11378
11379 Tue Mar 17 10:22:37 1998 H.J. Lu (hjl@gnu.ai.mit.edu)
11380
11381 * configure: When making link, also check the current
11382 directory. The configure scripts may create one.
11383
11384 Fri Mar 6 01:02:03 1998 Richard Henderson <rth@cygnus.com>
11385
11386 * config.sub: Accept alphapca56 and alphaev6 properly.
11387
11388 Fri Mar 6 00:14:55 1998 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
11389
11390 * configure.in: Revert 3 Jan change for powerpc-linux-gnulibc1.
11391
11392 Mon Feb 23 15:09:18 1998 Bruno Haible <bruno@linuix.mathematik.uni-karlsruhe.de
11393
11394 * config.sub (sco5): Fix typo.
11395
11396 Mon Feb 23 14:46:06 1998 Ian Lance Taylor <ian@cygnus.com>
11397
11398 * Makefile.in (INSTALL_MODULES): Move install-tcl before
11399 install-itcl.
11400 (install-itcl): Remove dependency on install-tcl.
11401
11402 Mon Feb 23 09:53:28 1998 Mark Alexander <marka@cygnus.com>
11403
11404 * configure.in: Remove libgloss from noconfigdirs for MN10300.
11405
11406 Thu Feb 19 13:40:41 1998 Ian Lance Taylor <ian@cygnus.com>
11407
11408 * configure.in: Don't build libgui for a cygwin32 target when not on
11409 a cygwin32 host.
11410
11411 Wed Feb 18 12:29:00 1998 Jason Molenda (crash@bugshack.cygnus.com)
11412
11413 * configure (redirect): Set to null, so default behavior of
11414 configure is now --verbose.
11415
11416 1998-02-16 Dave Love <d.love@dl.ac.uk>
11417
11418 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): Run configure with
11419 CONFIG_SITE=/dev/null to forestall lossage with site configuration.
11420
11421 Mon Feb 16 12:23:53 1998 Manfred Hollstein <Manfred.Hollstein@ks.sel.alcatel.de>
11422
11423 * Makefile.in (BASE_FLAGS_TO_PASS, EXTRA_TARGET_FLAGS): Really add
11424 this change to sync Makefile.in with its ChangeLog entries.
11425
11426 Thu Feb 12 15:03:08 1998 H.J. Lu <hjl@gnu.org>
11427
11428 * ltmain.sh (mkdir): Check that the directory doesn't exist
11429 before we exit with error, so that we don't get races during
11430 parallel builds.
11431
11432 Sat Feb 7 15:19:18 1998 Ian Lance Taylor <ian@cygnus.com>
11433
11434 * ltconfig, ltmain.sh: Update from libtool 1.0i.
11435
11436 Fri Feb 6 01:33:52 1998 Manfred Hollstein <manfred@s-direktnet.de>
11437
11438 * Makefile.in (BASE_FLAGS_TO_PASS): Don't pass PICFLAG and
11439 PICFLAG_FOR_TARGET.
11440 (EXTRA_TARGET_FLAGS): Don't pass PICFLAG_FOR_TARGET.
11441
11442 * configure: Emit a definition for the new macro enable_shared
11443 into each Makefile.
11444
11445 Thu Feb 5 17:01:12 1998 Jason Molenda (crash@bugshack.cygnus.com)
11446
11447 * configure.in (host_tools, native_only): Add libtool.
11448
11449 Wed Feb 4 16:53:58 1998 Geoffrey Noer <noer@cygnus.com>
11450
11451 * configure.in: add target-gperf to noconfigdirs for Cygwin32.
11452 Fix typo in ming config comment.
11453
11454 Wed Feb 4 18:56:13 1998 Ian Lance Taylor <ian@cygnus.com>
11455
11456 * ltconfig, ltmain.sh: Update from libtool 1.0h.
11457
11458 Mon Feb 2 19:38:19 1998 Ian Lance Taylor <ian@cygnus.com>
11459
11460 * config.sub: Add tic30 cases, and map c30 to tic30.
11461
11462 Sun Feb 1 02:40:41 1998 Richard Henderson <rth@cygnus.com>
11463
11464 * Makefile.in (TARGET_CONFIGDIRS): Add libf2c.
11465 (ALL_TARGET_MODULES, CONFIGURE_TARGET_MODULES): Similarly
11466 (CHECK_TARGET_MODULES, INSTALL_TARGET_MODULES): Similarly
11467 (CLEAN_TARGET_MODULES): Similarly
11468 (all-target-libf2c): Add dependences.
11469 * configure.in (target_libs): Add libf2c.
11470
11471 Fri Jan 30 17:18:32 1998 Geoffrey Noer <noer@cygnus.com>
11472
11473 * configure.in: Remove expect from noconfigdirs when target
11474 is cygwin32. OK to build expect and dejagnu with Canadian
11475 Cross.
11476
11477 Wed Jan 28 12:58:49 1998 Ian Lance Taylor <ian@cygnus.com>
11478
11479 * configure.in: Do build expect, dejagnu, and cvssrc for a cygwin32
11480 host.
11481
11482 * config.guess: Use ${UNAME_MACHINE} rather than i386 for cygwin32
11483 and mingw32.
11484
11485 Wed Jan 28 10:26:37 1998 Manfred Hollstein <manfred@s-direktnet.de>
11486
11487 * Makefile.in (BASE_FLAGS_TO_PASS): Remove passing $(local_prefix)
11488 here as it is not defined in the toplevel Makefile.
11489
11490 Tue Jan 27 23:25:06 1998 Manfred Hollstein <manfred@s-direktnet.de>
11491
11492 * configure (package_makefile_rules_frag): New variable, which names
11493 a file with generic rules, ...
11494 Change comment to mention we now have FIVE parts.
11495 * configure: Undo last change.
11496
11497 Tue Jan 27 23:15:55 1998 Lassi A. Tuura <lat@iki.fi>
11498
11499 * config.guess: More accurate determination of HP processor types.
11500 * config.sub: More accurate determination of HP processor types.
11501
11502 Sat Jan 24 01:59:45 1998 Manfred Hollstein <manfred@s-direktnet.de>
11503
11504 * configure (package_makefile_frag): Move inserting the
11505 ${package_makefile_frag} to where it should be according
11506 to the comment.
11507
11508 Fri Jan 23 00:29:28 1998 Philip Blundell <pb@nexus.co.uk>
11509
11510 * config.guess: Add support for Linux/ARM.
11511
11512 Thu Jan 22 15:14:01 1998 Fred Fish <fnf@cygnus.com>
11513
11514 * .cvsignore: Remove *-info and *-install since they match
11515 release-info and mpw-install, which we don't want to just ignore.
11516
11517 Thu Jan 22 01:38:33 1998 Richard Henderson <rth@cygnus.com>
11518
11519 * configure.in: Revert 3 Jan change for alpha-linux-gnulibc1.
11520
11521 Sat Jan 17 21:28:08 1998 Pieter Nagel <pnagel@epiuse.co.za>
11522
11523 * Makefile.in (FLAGS_TO_PASS): Pass down gcc_include_dir and
11524 local_prefix to sub-make invocations.
11525
11526 Sat Jan 17 21:04:59 1998 H.J. Lu (hjl@gnu.org)
11527
11528 * configure.in: Check makefile fragments in the source
11529 directory.
11530
11531 Fri Jan 16 00:41:37 1998 Alexandre Oliva <oliva@dcc.unicamp.br>
11532
11533 * configure.in: Check whether host and target makefile
11534 fragments exist before adding them to *_makefile_frag.
11535
11536 Wed Jan 14 23:39:10 1998 Bob Manson <manson@charmed.cygnus.com>
11537
11538 * configure.in (target_configdirs): Add cygmon for sparc64-elf.
11539
11540 Wed Jan 14 12:48:07 1998 Keith Seitz <keiths@pizza.cygnus.com>
11541
11542 * configure.in: Make sure we only replace RPATH_ENVVAR on
11543 lines which begin with RPATH_ENVVAR, i.e. add "^" to the
11544 regexp to sed.
11545
11546 * Makefile.in (BASE_FLAGS_TO_PASS): Pass RRPATH_ENVVAR down
11547 to sub-makes.
11548
11549 1998-01-13 Lee Iverson (leei@ai.sri.com)
11550
11551 * config-ml.in (multi-do): LDFLAGS must include multilib
11552 designator.
11553
11554 Tue Jan 13 01:13:24 1998 Robert Lipe (robertl@dgii.com)
11555
11556 * config.guess: Recognize i[3456]-i586-UnixWare7-sysv5.
11557
11558 Sun Jan 4 01:06:55 1998 Mumit Khan <khan@xraylith.wisc.edu>
11559
11560 * config.sub: Add mingw32 support.
11561 * configure.in: Likewise.
11562
11563 Sat Jan 3 12:11:05 1998 Franz Sirl <franz.sirl-kernel@lauterbach.com>
11564
11565 * configure.in: Finalize support for {alpha|powerpc}*-*-linux-gnulibc1
11566
11567 Sun Dec 28 11:28:58 1997 Jeffrey A Law (law@cygnus.com)
11568
11569 * Makefile.in (INSTALL_TARGET): Do install-gcc first.
11570 * configure (gxx_include_dir): Provide a definition for subdirs
11571 which do not use autoconf.
11572
11573 Wed Dec 24 22:46:55 1997 Jeffrey A Law (law@cygnus.com)
11574
11575 * config.guess: Sync with egcs. Picks up new alpha support,
11576 BeOS & some additional linux support.
11577
11578 Tue Dec 23 12:44:24 1997 Jeffrey A Law (law@cygnus.com)
11579
11580 * config.guess: HP 9000/803 is a PA1.1 machine.
11581
11582 Mon Dec 22 02:39:24 1997 Richard Henderson <rth@cygnus.com>
11583
11584 * configure.in: It's alpha*-...
11585
11586 Sun Dec 21 16:53:12 1997 H.J. Lu (hjl@gnu.ai.mit.edu)
11587
11588 * configure.in (host_makefile_frag, target_makefile_frag):
11589 Handle multiple config files.
11590 (alpha-*-linux*): Treat alpha-*-linux* as alpha-*-linux* and
11591 alpha-*-*.
11592
11593 Thu Dec 18 13:13:03 1997 Doug Evans <devans@canuck.cygnus.com>
11594
11595 * mkdep: New file.
11596
11597 Wed Dec 17 09:53:02 1997 Michael Meissner <meissner@cygnus.com>
11598
11599 * configure.in (d30v-*-*): Allow configuring of libide, vmake, etc.
11600
11601 Tue Dec 16 17:36:05 1997 Ian Lance Taylor <ian@cygnus.com>
11602
11603 * Makefile.in: Add libgui directory.
11604 (GDB_TK): Add all-libgui.
11605 * configure.in: Add libgui directory.
11606 * configure: Add all-libgui to GDB_TK.
11607
11608 Mon Dec 15 16:12:28 1997 Nick Clifton <nickc@cygnus.com>
11609
11610 * config-ml.in (multidirs): Add m32r to multilib list.
11611
11612 Fri Dec 12 10:43:31 1997 Brendan Kehoe <brendan@canuck.cygnus.com>
11613
11614 * Makefile.in (all-target-gperf): Change dependency to
11615 all-target-libstdc++.
11616
11617 Thu Dec 11 23:30:51 1997 Fred Fish <fnf@ninemoons.com>
11618
11619 * config.guess: Add BeOS support.
11620
11621 Wed Dec 10 15:10:38 1997 Ian Lance Taylor <ian@cygnus.com>
11622
11623 Source directory cvs renamed to cvssrc:
11624 * configure.in (host_tools): Change cvs to cvssrc.
11625 (native_only): Likewise.
11626 (noconfigdirs) [various cases]: Likewise.
11627 * Makefile.in (ALL_MODULES): Change all-cvs to all-cvssrc.
11628 (CROSS_CHECK_MODULES): Change check-cvs to check-cvssrc.
11629 (INSTALL_MODULES): Change install-cvs to install-cvssrc.
11630 (CLEAN_MODULES): Change clean-cvs to clean-cvssrc.
11631 (all-cvssrc): Rename target from all-cvs.
11632
11633 Wed Dec 3 07:55:59 1997 Jeffrey A Law (law@cygnus.com)
11634
11635 * configure (gxx_include_dir): Fix thinko.
11636
11637 Tue Dec 2 10:55:34 1997 Jeffrey A Law (law@cygnus.com)
11638
11639 * Makefile.in (INSTALL_TARGET_CROSS): Define.
11640 (install-cross, install-gcc-cross): New targets.
11641
11642 Tue Dec 2 10:08:31 1997 Nick Clifton <nickc@cygnus.com>
11643
11644 * configure.in (noconfigdirs): Add support for Thumb target.
11645
11646 * config.sub (maybe_os): Add support for Thumb target.
11647
11648 Sun Nov 30 16:12:27 1997 Bob Manson <manson@charmed.cygnus.com>
11649
11650 * Makefile.in: Add rules for cygmon.
11651
11652 * configure.in: Build cygmon for sparc-elf and sparclite-aout.
11653
11654 Thu Nov 27 01:31:30 1997 Jeffrey A Law (law@cygnus.com)
11655
11656 * Makefile.in (INSTALL_TARGET): Do install-gcc first.
11657 * configure (gxx_include_dir): Provide a definition for subdirs
11658 which do not use autoconf.
11659
11660 Wed Nov 26 11:53:33 1997 Keith Seitz <keiths@onions.cygnus.com>
11661
11662 * Makefile.in, configure, configure.in, ChangeLog: merge with foundry's
11663 11/18/97 build
11664
11665 Wed Nov 26 16:08:50 1997 Jeffrey A Law (law@cygnus.com)
11666
11667 * From Franz Sirl.
11668 * config.guess (powerpc*-*-linux): Handle glibc2 beta release
11669 found on RedHat Linux systems.
11670
11671 Fri Nov 21 09:51:01 1997 Jeffrey A Law (law@cygnus.com)
11672
11673 * config.guess (alpha stuff): Merge with FSF to avoid incorrect
11674 guesses.
11675
11676 Thu Nov 13 11:38:37 1997 Jeffrey A Law (law@cygnus.com)
11677
11678 * configure.in (i[3456]86-ncr-sysv4.3*): Tweak.
11679
11680 Mon Nov 10 15:23:21 1997 H.J. Lu <hjl@gnu.ai.mit.edu>
11681
11682 * ltmain.sh: If mkdir fails, check whether the directory was created
11683 anyhow by some other process.
11684
11685 Mon Nov 10 14:38:03 1997 Michael Meissner <meissner@cygnus.com>
11686
11687 * configure.in (d30v-*-*): Configure all directories.
11688
11689 Sun Nov 9 17:36:20 1997 Michael Meissner <meissner@cygnus.com>
11690
11691 * configure.in (d30v-*-*): Configure newlib, libiberty directories
11692 for the D30V.
11693
11694 Sat Nov 8 14:42:59 1997 Michael Meissner <meissner@cygnus.com>
11695
11696 * configure.in (d30v-*-*): Configure target-libgloss on the D30V.
11697
11698 Fri Nov 7 10:34:09 1997 Rob Savoye <rob@darkstar.cygnus.com>
11699
11700 * include/libiberty.h: Add extern "C" { so it can be used with C++
11701 progrms.
11702 * include/remote-sim.h: Add extern "C" { so it can be used with C++
11703 programs.
11704
11705 Thu Oct 30 11:09:29 1997 Michael Meissner <meissner@cygnus.com>
11706
11707 * configure.in (d30v-*-*): Configure GCC now.
11708
11709 Mon Oct 27 13:17:24 1997 Stan Shebs <shebs@andros.cygnus.com>
11710
11711 * configure.in: Remove a "second pass" of tweaking noconfigdirs,
11712 is no longer needed.
11713
11714 Mon Oct 27 12:03:53 1997 Jason Merrill <jason@yorick.cygnus.com>
11715
11716 * Makefile.in: check-target-libio depends on all-target-libstdc++.
11717
11718 Sun Oct 26 11:48:27 1997 Manfred Hollstein (manfred@s-direktnet.de)
11719
11720 * Makefile.in (bootstrap-lean): Combined with `normal' bootstrap
11721 targets using "$@" to provide support for similar but not identical
11722 targets without having to duplicate code.
11723
11724 Mon Oct 20 15:28:49 1997 Klaus K"ampf <kkaempf@progis.de>
11725
11726 * makefile.vms: Fix to work with DEC C.
11727
11728 Tue Oct 7 23:58:57 1997 Gavin Koch <gavin@cygnus.com>
11729
11730 * config.sub: Add mips-tx39-elf to marketing names.
11731
11732 Tue Oct 7 14:24:41 1997 Ian Lance Taylor <ian@cygnus.com>
11733
11734 * ltmain.sh: Handle symlinks in generated script.
11735
11736 Wed Oct 1 13:11:27 1997 Ian Lance Taylor <ian@cygnus.com>
11737
11738 * configure: Handle autoconf style directory options: --bindir,
11739 --datadir, --includedir, --infodir, --libdir, --libexecdir,
11740 --mandir, --oldincludedir, --sbindir, --sharedstatedir,
11741 --sysconfdir.
11742 * Makefile.in (sbindir, libexecdir, sysconfdir): New variables.
11743 (sharedstatedir, localstatedir, oldincludedir): New variables.
11744 (BASE_FLAGS_TO_PASS): Pass down bindir, datadir, includedir,
11745 infodir, libdir, libexecdir, localstatedir, mandir, oldincludedir,
11746 sbindir, sharedstatedir, and sysconfdir.
11747
11748 Mon Sep 29 00:38:08 1997 Aaron Jackson <jackson@negril.msrce.howard.edu>
11749
11750 * Makefile.in (bootstrap-lean): New target.
11751
11752 Wed Sep 24 18:06:27 1997 Stu Grossman <grossman@babylon-5.cygnus.com>
11753
11754 * configure.in (d30v): Remove tcl, tk, expect, gdb, itcl, tix, db,
11755 sn, and gnuserv from noconfigdirs.
11756
11757 Wed Sep 24 15:18:32 1997 Ian Lance Taylor <ian@cygnus.com>
11758
11759 * ltmain.sh: Tweak shell pattern to avoid bug in NetBSD /bin/sh.
11760
11761 Thu Sep 18 23:58:27 1997 Jeffrey A Law (law@cygnus.com)
11762
11763 * Makefile.in (cross): New target.
11764
11765 Thu Sep 18 21:43:23 1997 Alexandre Oliva <oliva@dcc.unicamp.br>
11766 Jeff Law <law@cygnus.com>
11767
11768 * Makefile.in (bootstrap2, bootstrap3): New targets.
11769 (all-bootstrap): Remove outdated and confusing target.
11770 (bootstrap, bootstrap2, bootstrap3): Don't pass BOOT_CFLAGS down.
11771
11772 Thu Sep 18 15:37:42 1997 Andrew Cagney <cagney@b1.cygnus.com>
11773
11774 * configure (tooldir): enable_gdbtk=YES for cygwin32, NO for
11775 windows. Consistent with gdb/configure.
11776
11777 1997-09-15 02:37 Ulrich Drepper <drepper@cygnus.com>
11778
11779 * configure.in: Name Linux target fragment.
11780
11781 * configure: Rewrite so that project Makefile fragment is inserted
11782 first and appears last in the resulting Makefile.
11783
11784 Tue Sep 16 09:55:07 1997 Andrew Cagney <cagney@b1.cygnus.com>
11785
11786 * Makefile.in (install-itcl): Install tcl first.
11787
11788 Fri Sep 12 16:19:20 1997 Geoffrey Noer <noer@cygnus.com>
11789
11790 * configure.in: remove bison from noconfigdirs for Cygwin32 host
11791
11792 Thu Sep 11 16:40:46 1997 H.J. Lu (hjl@gnu.ai.mit.edu)
11793
11794 * Makefile.in (local-distclean): Also remove mh-frag mt-frag.
11795
11796 * configure.in (skipdirs): Add target-librx for Linux.
11797 (alpha-*-linux*): Use config/mh-elfalphapic and config/mt-elfalphapic.
11798
11799 Wed Sep 10 21:29:54 1997 Jeffrey A Law (law@cygnus.com)
11800
11801 * Makefile.in (bootstrap): New target.
11802
11803 Wed Sep 10 15:19:22 1997 Jeffrey A Law (law@cygnus.com)
11804
11805 * config.sub: Accept 'amigados' for backward compatability.
11806
11807 Mon Sep 8 20:46:20 1997 Ian Lance Taylor <ian@cygnus.com>
11808
11809 * config.guess: Merge with FSF.
11810
11811 Sun Sep 7 23:18:32 1997 Fred Fish <fnf@ninemoons.com>
11812
11813 * config.sub: Change 'amigados' to 'amigaos' to match current usage.
11814
11815 Sun Sep 7 15:55:28 1997 Gavin Koch <gavin@cygnus.com>
11816
11817 * config.sub: Add "marketing-names" patch.
11818
11819 Fri Sep 5 16:11:28 1997 Joel Sherrill (joel@OARcorp.com)
11820
11821 * configure.in (*-*-rtems*): Do not build libgloss for rtems.
11822
11823 Fri Sep 5 12:27:17 1997 Jeffrey A Law (law@cygnus.com)
11824
11825 * config.sub: Handle v850-elf.
11826
11827 Wed Sep 3 22:01:58 1997 Fred Fish <fnf@ninemoons.com>
11828
11829 * .cvsignore (*-install): Remove.
11830
11831 Wed Sep 3 12:15:24 1997 Chris Provenzano <proven@cygnus.com>
11832
11833 * ltconfig: Set CONFIG_SHELL in libtool.
11834 * ltmain.sh: Use CONFIG_SHELL instead of /bin/sh
11835
11836 Mon Sep 1 16:45:44 1997 Jim Wilson <wilson@cygnus.com>
11837
11838 * configure.in (target_subdir): Set to libraries if enable_multilib.
11839
11840 Wed Aug 27 16:15:11 1997 Jim Wilson <wilson@cygnus.com>
11841
11842 * config.guess: Update from gcc directory.
11843
11844 Tue Aug 26 16:46:46 1997 Andrew Cagney <cagney@b1.cygnus.com>
11845
11846 * Makefile.in (all-sim): Depends on all-readline.
11847
11848 Wed Aug 20 19:57:37 1997 Jason Merrill <jason@yorick.cygnus.com>
11849
11850 * Makefile.in (BISON, YACC): Use $$s.
11851 (all-bison): Depend on all-texinfo.
11852
11853 Tue Aug 19 01:41:32 1997 Jason Merrill <jason@yorick.cygnus.com>
11854
11855 * Makefile.in (BISON): Add -L flag.
11856 (YACC): Likewise.
11857
11858 Mon Aug 18 11:30:50 1997 Nick Clifton <nickc@cygnus.com>
11859
11860 * configure.in (noconfigdirs): Add support for v850e target.
11861
11862 * config.sub (maybe_os): Add support for v850e target.
11863
11864 Mon Aug 18 11:30:50 1997 Nick Clifton <nickc@cygnus.com>
11865
11866 * configure.in (noconfigdirs): Add support for v850ea target.
11867
11868 * config.sub (maybe_os): Add support for v850ea target.
11869
11870 Mon Aug 18 09:24:06 1997 Gavin Koch <gavin@cygnus.com>
11871
11872 * config.sub: Add mipstx39. Delete r3900.
11873
11874 Mon Aug 18 17:20:10 1997 Jason Molenda (crash@godzilla.cygnus.co.jp)
11875
11876 * Makefile.in (all-autoconf): Depends on all-texinfo.
11877
11878 Fri Aug 15 23:09:26 1997 Michael Meissner <meissner@cygnus.com>
11879
11880 * config-ml.in ({powerpc,rs6000}*-*-*): Update to current AIX and
11881 eabi targets.
11882
11883 Thu Aug 14 14:42:17 1997 Ian Lance Taylor <ian@cygnus.com>
11884
11885 * configure: Get CFLAGS and CXXFLAGS from Makefile, if possible.
11886
11887 * configure: When handling a Canadian Cross, handle YACC as well as
11888 BISON. Just set BISON to bison. When setting YACC, prefer bison.
11889 * Makefile.in (all-bison): Depend upon all-texinfo.
11890
11891 Tue Aug 12 20:09:48 1997 Jason Merrill <jason@yorick.cygnus.com>
11892
11893 * Makefile.in (BISON): bison, not byacc or bison -y.
11894 (YACC): bison -y or byacc or yacc.
11895 (various): Add *-bison as appropriate.
11896 (taz): No need to mess with BISON anymore.
11897
11898 Tue Aug 12 22:33:08 1997 Ian Lance Taylor <ian@cygnus.com>
11899
11900 * configure: If OSTYPE matches *win32*, try to find a good value for
11901 CONFIG_SHELL.
11902
11903 Sun Aug 10 14:41:11 1997 Ian Lance Taylor <ian@cygnus.com>
11904
11905 * Makefile.in (taz): Get the version number from AM_INIT_AUTOMAKE in
11906 configure.in if it is present.
11907
11908 Sat Aug 9 00:58:01 1997 Ian Lance Taylor <ian@cygnus.com>
11909
11910 * Makefile.in (LD_FOR_TARGET): Change ld.new to ld-new.
11911
11912 Fri Aug 8 16:30:13 1997 Doug Evans <dje@canuck.cygnus.com>
11913
11914 * config.sub: Recognize `arc' cpu.
11915 * configure.in: Likewise.
11916 * config-ml.in: Likewise.
11917
11918 Thu Aug 7 11:02:34 1997 Ian Lance Taylor <ian@cygnus.com>
11919
11920 * Makefile.in ($(INSTALL_X11_MODULES)): Depend upon installdirs.
11921
11922 Wed Aug 6 16:27:29 1997 Chris Provenzano <proven@cygnus.com>
11923
11924 * configure: Changed sed delimiter from ':' to '|' when
11925 attempting to substitute ${config_shell} for SHELL. On
11926 NT ${config_shell} may contain a ':' in it.
11927
11928 Wed Aug 6 12:29:05 1997 Jason Merrill <jason@yorick.cygnus.com>
11929
11930 * Makefile.in (EXTRA_GCC_FLAGS): Fix for non-bash shells.
11931
11932 Wed Aug 6 00:42:35 1997 Ian Lance Taylor <ian@cygnus.com>
11933
11934 * Makefile.in (AS_FOR_TARGET): Change as.new to as-new.
11935
11936 Tue Aug 5 14:08:51 1997 Ian Lance Taylor <ian@cygnus.com>
11937
11938 * Makefile.in (NM_FOR_TARGET): Change nm.new to nm-new.
11939
11940 * ylwrap: If the program is a relative path, force it to be
11941 absolute.
11942
11943 Tue Aug 5 12:12:44 1997 Andrew Cagney <cagney@b1.cygnus.com>
11944
11945 * configure (tooldir): Set BISON to `bison -y' and not just bison.
11946
11947 Mon Aug 4 22:59:02 1997 Andrew Cagney <cagney@b1.cygnus.com>
11948
11949 * Makefile.in (CC_FOR_TARGET): When winsup/Makefile present,
11950 correctly specify the target build directory $(TARGET_SUBDIR)/winsup
11951 for libraries.
11952
11953 Mon Aug 4 12:40:24 1997 Jason Merrill <jason@yorick.cygnus.com>
11954
11955 * Makefile.in (EXTRA_GCC_FLAGS): Fix handling of macros with values
11956 separated by spaces.
11957
11958 Thu Jul 31 19:49:49 1997 Ian Lance Taylor <ian@cygnus.com>
11959
11960 * ylwrap: New file.
11961 * Makefile.in (DEVO_SUPPORT): Add ylwrap.
11962
11963 * ltmain.sh: Handle /bin/sh at start of install program.
11964
11965 * Makefile.in (DEVO_SUPPORT): Add ltconfig, ltmain.sh, and missing.
11966
11967 * ltconfig, ltmain.sh: New files, from libtool 1.0.
11968 * missing: New file, from automake 1.2.
11969
11970 Thu Jul 24 12:57:56 1997 Ian Lance Taylor <ian@cygnus.com>
11971
11972 * Makefile.in: Treat tix like tk, putting it in X11_MODULES. Add
11973 check-tk to CHECK_X11_MODULES.
11974
11975 Wed Jul 23 17:03:29 1997 Ian Lance Taylor <ian@cygnus.com>
11976
11977 * config.sub: Merge with FSF.
11978
11979 Tue Jul 22 19:08:29 1997 Ian Lance Taylor <ian@cygnus.com>
11980
11981 * config.guess: Merge with FSF.
11982
11983 Tue Jul 22 14:50:42 1997 Robert Hoehne <robert.hoehne@Mathematik.TU-Chemnitz.DE>
11984
11985 * configure: Treat msdosdjgpp like go32.
11986 * configure.in: Likewise. Don't remove gprof for go32.
11987
11988 * configure: Change Makefile.tem2 to Makefile.tm2.
11989
11990 Mon Jul 21 10:31:26 1997 Stephen Peters <speters@cygnus.com>
11991
11992 * configure.in (noconfigdirs): For alpha-dec-osf*, don't ignore grep.
11993
11994 Tue Jul 15 14:33:03 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
11995
11996 * install-sh (chmodcmd): Set to null if the DST directory already
11997 exists. Same as Nov 11th change.
11998
11999 Mon Jul 14 11:01:15 1997 Martin M. Hunt <hunt@cygnus.com>
12000
12001 * configure (GDB_TK): Needs itcl and tix.
12002
12003 Mon Jul 14 00:32:10 1997 Jason Merrill <jason@yorick.cygnus.com>
12004
12005 * config.guess: Update from FSF.
12006
12007 Fri Jul 11 11:57:11 1997 Martin M. Hunt <hunt@cygnus.com>
12008
12009 * Makefile.in (GDB_TK): Depend on itcl and tix.
12010
12011 Fri Jul 4 13:25:31 1997 Ian Lance Taylor <ian@cygnus.com>
12012
12013 * Makefile.in (INSTALL_PROGRAM_ARGS): New variable.
12014 (INSTALL_PROGRAM): Use $(INSTALL_PROGRAM_ARGS).
12015 (INSTALL_SCRIPT): New variable.
12016 (BASE_FLAGS_TO_PASS): Pass down INSTALL_SCRIPT.
12017 * configure.in: If host is *-*-cygwin32*, set INSTALL_PROGRAM_ARGS
12018 to -x.
12019 * install-sh: Add support for -x option.
12020
12021 Mon Jun 30 15:51:30 1997 Ian Lance Taylor <ian@cygnus.com>
12022
12023 * configure.in, Makefile.in: Treat tix like itcl.
12024
12025 Thu Jun 26 13:59:19 1997 Ian Lance Taylor <ian@cygnus.com>
12026
12027 * Makefile.in (WINDRES): New variable.
12028 (WINDRES_FOR_TARGET): New variable.
12029 (BASE_FLAGS_TO_PASS): Add WINDRES_FOR_TARGET.
12030 (EXTRA_HOST_FLAGS): Add WINDRES.
12031 (EXTRA_TARGET_FLAGS): Add WINDRES.
12032 (EXTRA_GCC_FLAGS): Add WINDRES.
12033 ($(DO_X)): Pass down WINDRES.
12034 ($(CONFIGURE_TARGET_MODULES)): Set WINDRES when configuring.
12035 * configure: Treat WINDRES like DLLTOOL, and WINDRES_FOR_TARGET like
12036 DLLTOOL_FOR_TARGET.
12037
12038 Wed Jun 25 15:01:26 1997 Felix Lee <flee@cygnus.com>
12039
12040 * configure.in: configure sim before gdb for win32-x-ppc
12041
12042 Wed Jun 25 12:18:54 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
12043
12044 Move gperf into the toplevel, from libg++.
12045 * configure.in (target_tools): Add target-gperf.
12046 (native_only): Add target-gperf.
12047 * Makefile.in (all-target-gperf): New target, depend on
12048 all-target-libg++.
12049 (configure-target-gperf): Empty rule.
12050 (ALL_TARGET_MODULES): Add all-target-gperf.
12051 (CONFIGURE_TARGET_MODULES): Add configure-target-gperf.
12052 (CHECK_TARGET_MODULES): Add check-target-gperf.
12053 (INSTALL_TARGET_MODULES): Add install-target-gperf.
12054 (CLEAN_TARGET_MODULES): Add clean-target-gperf.
12055
12056 Mon Jun 23 10:51:53 1997 Jeffrey A Law (law@cygnus.com)
12057
12058 * config.sub (mn10200): Recognize new basic machine.
12059
12060 Thu Jun 19 14:16:42 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
12061
12062 * configure.in: Don't set ENABLE_MULTILIB, so we'll be passing
12063 --enable-multilib down to subdirs; setting TARGET_SUBDIR was enough.
12064
12065 Tue Jun 17 15:31:20 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
12066
12067 * configure.in: If we're building mips-sgi-irix6* native, turn on
12068 ENABLE_MULTILIB and set TARGET_SUBDIR.
12069
12070 Tue Jun 17 12:20:59 1997 Tom Tromey <tromey@cygnus.com>
12071
12072 * Makefile.in (all-sn): Depend on all-grep.
12073
12074 Mon Jun 16 11:11:10 1997 Ian Lance Taylor <ian@cygnus.com>
12075
12076 * configure.in: Use mh-ppcpic and mt-ppcpic for powerpc*-* targets.
12077
12078 * configure: Set CFLAGS and CXXFLAGS, and substitute them into
12079 Makefile. From Jeff Makey <jeff@cts.com>.
12080 * Makefile.in: Add comment for CFLAGS and CXXFLAGS.
12081
12082 * Makefile.in (DISTBISONFILES): Remove.
12083 (taz): Don't futz with DISTBISONFILES. Change BISON to use
12084 $(DEFAULT_YACC).
12085
12086 * configure.in: Build itl, db, sn, etc., when building for native
12087 cygwin32.
12088
12089 * Makefile.in (LD): New variable.
12090 (EXTRA_HOST_FLAGS): Pass down LD.
12091 ($(DO_X)): Likewise.
12092
12093 Mon Jun 16 11:10:35 1997 Philip Blundell <Philip.Blundell@pobox.com>
12094
12095 * Makefile.in (INSTALL): Use $(SHELL) when executing install-sh.
12096
12097 Fri Jun 13 10:22:56 1997 Bob Manson <manson@charmed.cygnus.com>
12098
12099 * configure.in (targargs): Strip out any supplied --build argument
12100 before adding our own. Always add --build.
12101
12102 Thu Jun 12 21:12:28 1997 Bob Manson <manson@charmed.cygnus.com>
12103
12104 * configure.in (targargs): Pass --build if we're doing
12105 a cross-compile.
12106
12107 Fri Jun 6 21:38:40 1997 Rob Savoye <rob@chinadoll.cygnus.com>
12108
12109 * configure: Use '|' instead of ":" as the separator in
12110 sed. Otherwise sed chokes on NT path names with drive
12111 designators. Also look for "?:*" as the leading characters in an
12112 absolute pathname.
12113
12114 Mon Jun 2 13:05:20 1997 Gavin Koch <gavin@cygnus.com>
12115
12116 * config.sub: Support for r3900.
12117
12118 Wed May 21 17:33:31 1997 Ian Lance Taylor <ian@cygnus.com>
12119
12120 * configure.in: Use install-sh, not install.sh.
12121
12122 Wed May 14 16:06:51 1997 Ian Lance Taylor <ian@cygnus.com>
12123
12124 * Makefile.in (taz): Improve check for BISON so it doesn't try to
12125 apply it twice.
12126
12127 Fri May 9 17:22:05 1997 Ian Lance Taylor <ian@cygnus.com>
12128
12129 * Makefile.in (INSTALL_MODULES): Put install-opcodes before
12130 install-binutils.
12131
12132 Thu May 8 17:29:50 1997 Ian Lance Taylor <ian@cygnus.com>
12133
12134 * Makefile.in: Add automake targets.
12135 * configure.in (host_tools): Add automake.
12136
12137 Tue May 6 15:49:52 1997 Ian Lance Taylor <ian@cygnus.com>
12138
12139 * configure: Default CXX to c++, not gcc.
12140 * Makefile.in (CXX): Set to c++, not gcc.
12141 (CXX_FOR_TARGET): When cross, transform c++, not gcc.
12142
12143 Thu May 1 10:11:43 1997 Geoffrey Noer <noer@cygnus.com>
12144
12145 * install-sh: try appending a .exe if source file doesn't
12146 exist
12147
12148 Wed Apr 30 12:05:36 1997 Jason Merrill <jason@yorick.cygnus.com>
12149
12150 * configure.in: Turn on multilib by default.
12151 (cross_only): Remove target-libiberty.
12152
12153 * Makefile.in (all-gcc): Don't depend on libiberty.
12154
12155 Mon Apr 28 18:39:45 1997 Michael Snyder <msnyder@cleaver.cygnus.com>
12156
12157 * config.guess: improve algorithm for recognizing Gnu Hurd x86.
12158
12159 Thu Apr 24 19:30:07 1997 Ian Lance Taylor <ian@cygnus.com>
12160
12161 * Makefile.in (DEVO_SUPPORT): Add mpw-install.
12162 (DISTBISONFILES): Add ld/Makefile.in
12163
12164 Tue Apr 22 17:17:28 1997 Geoffrey Noer <noer@pizza.cygnus.com>
12165
12166 * configure.in: if target is cygwin32 but host isn't cygwin32,
12167 don't configure gdb tcl tk expect, not just gdb.
12168
12169 Mon Apr 21 13:33:39 1997 Tom Tromey <tromey@cygnus.com>
12170
12171 * configure.in: Added gnuserv everywhere sn appears.
12172
12173 * Makefile.in (ALL_MODULES): Added all-gnuserv.
12174 (CROSS_CHECK_MODULES): Added check-gnuserv.
12175 (INSTALL_MODULES): Added install-gnuserv.
12176 (CLEAN_MODULES): Added clean-gnuserv.
12177 (all-gnuserv): New target.
12178
12179 Thu Apr 17 13:57:06 1997 Per Fogelstrom <pefo@openbsd.org>
12180
12181 * config.guess: Fixes for MIPS OpenBSD systems.
12182
12183 Tue Apr 15 12:21:07 1997 Ian Lance Taylor <ian@cygnus.com>
12184
12185 * Makefile.in (INSTALL_XFORM): Remove.
12186 (BASE_FLAGS_TO_PASS): Remove INSTALL_XFORM.
12187
12188 * mkinstalldirs: New file, copied from automake.
12189 * Makefile.in (installdirs): Rename from install-dirs. Use
12190 mkinstalldirs. Change all users.
12191 (DEVO_SUPPORT): Add mkinstalldirs.
12192
12193 Mon Apr 14 11:21:38 1997 Ian Lance Taylor <ian@cygnus.com>
12194
12195 * install-sh: Rename from install.sh.
12196 * Makefile.in (INSTALL): Change install.sh to install-sh.
12197 (DEVO_SUPPORT): Likewise.
12198
12199 * configure: Use ${config_shell} with ${moveifchange}. From Thomas
12200 Graichen <graichen@rzpd.de>.
12201
12202 Fri Apr 11 16:37:10 1997 Niklas Hallqvist <niklas@appli.se>
12203
12204 * config.guess: Recognize OpenBSD systems correctly.
12205
12206 Fri Apr 11 17:07:04 1997 Jason Molenda (crash@godzilla.cygnus.co.jp)
12207
12208 * README, Makefile.in (ETC_SUPPORT): Remove references to
12209 cfg-paper*, configure.{texi,man,info*}._
12210
12211 Sun Apr 6 18:47:57 1997 Andrew Cagney <cagney@kremvax.cygnus.com>
12212
12213 * Makefile.in (all.normal): Ensure that gcc is built after all
12214 the x11 - ie gdb - targets.
12215
12216 Tue Apr 1 16:28:50 1997 Klaus Kaempf <kkaempf@progis.de>
12217
12218 * makefile.vms: Don't run conf-a-gas.
12219
12220 Mon Mar 31 16:26:55 1997 Joel Sherrill <joel@oarcorp.com>
12221
12222 * configure.in (hppa1.1-*-rtems*): New target, like hppa-*-*elf*.
12223
12224 Sun Mar 30 12:38:27 1997 Fred Fish <fnf@cygnus.com>
12225
12226 * configure.in: Remove noconfigdirs case since gdb also
12227 configures and builds for tic80-coff.
12228
12229 Fri Mar 28 18:28:52 1997 Ian Lance Taylor <ian@cygnus.com>
12230
12231 * configure: Set cache_file to config.cache.
12232 * Makefile.in (local-distclean): Remove config.cache.
12233
12234 Wed Mar 26 18:49:39 1997 Ian Lance Taylor <ian@cygnus.com>
12235
12236 * COPYING: Update FSF address.
12237
12238 Wed Mar 26 10:38:25 1997 Michael Meissner <meissner@cygnus.com>
12239
12240 * configure.in (tic80-*-*): Remove G++ libraries and libgloss from
12241 noconfigdirs.
12242
12243 Mon Mar 24 15:02:39 1997 Ian Lance Taylor <ian@cygnus.com>
12244
12245 * Makefile.in (install-dirs): Don't crash if prefix, and hence
12246 MAKEDIRS, is empty.
12247
12248 Mon Mar 24 12:40:55 1997 Doug Evans <dje@canuck.cygnus.com>
12249
12250 * config.sub: Tweak mn10300 entry.
12251
12252 Fri Mar 21 15:35:27 1997 Michael Meissner <meissner@cygnus.com>
12253
12254 * configure.in (host_tools): Put sim before gdb, so gdb's
12255 configure.tgt can determine if the simulator was configured.
12256
12257 Sun Mar 16 16:07:08 1997 Fred Fish <fnf@cygnus.com>
12258
12259 * config.sub: Move BeOS $os case to be with other Cygnus
12260 local cases.
12261
12262 Sun Mar 16 01:34:55 1997 Martin Hunt <hunt@cygnus.com>
12263
12264 * config.sub: Remove misplaced comment that broke Linux.
12265
12266 Sat Mar 15 22:50:15 1997 Fred Fish <fnf@cygnus.com>
12267
12268 * config.sub: Add BeOS support.
12269
12270 Mon Mar 10 13:30:11 1997 Tom Tromey <tromey@cygnus.com>
12271
12272 * Makefile.in (CHECK_X11_MODULES): Don't run check-tk.
12273
12274 Wed Mar 5 12:09:29 1997 Martin <hunt@cygnus.com>
12275
12276 * configure.in (noconfigdirs): Remove tcl and tk from
12277 noconfigdirs for cygwin32 builds.
12278
12279 Fri Feb 28 18:20:15 1997 Fred Fish <fnf@cygnus.com>
12280
12281 * configure.in (tic80-*-*): Remove ld from noconfigdirs.
12282
12283 Thu Feb 27 14:57:26 1997 Ken Raeburn <raeburn@cygnus.com>
12284
12285 * Makefile.in (GAS_SUPPORT_DIRS, BINUTILS_SUPPORT_DIRS): Remove
12286 make-all.com, use makefile.vms instead.
12287
12288 Tue Feb 25 18:46:14 1997 Stan Shebs <shebs@andros.cygnus.com>
12289
12290 * config.sub: Accept -lnews*.
12291
12292 Tue Feb 25 13:19:14 1997 Andrew Cagney <cagney@kremvax.tpgi.com.au>
12293
12294 * configure.in (noconfigdirs): Disable target-newlib,
12295 target-examples and target-libiberty for d30v.
12296
12297 Fri Feb 21 17:56:25 1997 Martin M. Hunt <hunt@pizza.cygnus.com>
12298
12299 * configure.in (noconfigdirs): Enable ld for d30v.
12300
12301 Fri Feb 21 20:58:51 1997 Michael Meissner <meissner@cygnus.com>
12302
12303 * configure.in (tic80-*-*): Build compiler.
12304
12305 Sun Feb 16 15:41:09 1997 Andrew Cagney <cagney@critters.cygnus.com>
12306
12307 * configure.in (d30v-*): Remove sim directory from list of
12308 unsupported d30v directories
12309
12310 Tue Feb 18 17:32:42 1997 Martin M. Hunt <hunt@pizza.cygnus.com>
12311
12312 * config.sub, configure.in: Add d30v target cpu.
12313
12314 Thu Feb 13 22:04:44 1997 Klaus Kaempf <kkaempf@progis.de>
12315
12316 * makefile.vms: New file.
12317 * make-all.com: Remove.
12318
12319 Wed Feb 12 12:54:18 1997 Jim Wilson <wilson@cygnus.com>
12320
12321 * Makefile.in (EXTRA_GCC_FLAGS): Add LIBGCC2_DEBUG_CFLAGS.
12322
12323 Sat Feb 8 20:36:49 1997 Michael Meissner <meissner@cygnus.com>
12324
12325 * Makefile.in (all-itcl): The rule is all-itcl, not all-tcl.
12326
12327 Tue Feb 4 11:39:29 1997 Tom Tromey <tromey@cygnus.com>
12328
12329 * Makefile.in (ALL_MODULES): Added all-db.
12330 (CROSS_CHECK_MODULES): Addec check-db.
12331 (INSTALL_MODULES): Added install-db.
12332 (CLEAN_MODULES): Added clean-db.
12333
12334 Mon Feb 3 13:29:36 1997 Ian Lance Taylor <ian@cygnus.com>
12335
12336 * config.guess: Merge with latest FSF sources.
12337
12338 Tue Jan 28 09:20:37 1997 Tom Tromey <tromey@cygnus.com>
12339
12340 * Makefile.in (ALL_MODULES): Added all-itcl.
12341 (CROSS_CHECK_MODULES): Added check-itcl.
12342 (INSTALL_MODULES): Added install-itcl.
12343 (CLEAN_MODULES): Added clean-itcl.
12344
12345 Thu Jan 23 01:44:27 1997 Geoffrey Noer <noer@cygnus.com>
12346
12347 * configure.in: build gdb for mn10200
12348
12349 Fri Jan 17 15:32:15 1997 Doug Evans <dje@canuck.cygnus.com>
12350
12351 * Makefile.in (all-target-winsup): Depend on all-target-libio.
12352
12353 Mon Jan 13 22:46:54 1997 Michael Meissner <meissner@tiktok.cygnus.com>
12354
12355 * configure.in (tic80-*-*): Turn off most targets right now.
12356
12357 Fri Jan 3 16:04:03 1997 Ian Lance Taylor <ian@cygnus.com>
12358
12359 * Makefile.in (MAKEINFO): Check for the existence of the Makefile,
12360 rather than the makeinfo program.
12361 (do-info): Depend upon all-texinfo.
12362
12363 Tue Dec 31 16:00:31 1996 Ian Lance Taylor <ian@cygnus.com>
12364
12365 * configure.in: Remove uses of config/mh-linux.
12366
12367 * config.sub, config.guess: Merge with latest FSF sources.
12368
12369 Fri Dec 27 23:04:33 1996 Fred Fish <fnf@cygnus.com>
12370
12371 * config.sub (case $basic_machine): Add tic80 entries.
12372
12373 Fri Dec 27 12:07:59 1996 Ian Lance Taylor <ian@cygnus.com>
12374
12375 * config.sub, config.guess: Merge with latest FSF sources.
12376
12377 Wed Dec 18 22:46:39 1996 Stan Shebs <shebs@andros.cygnus.com>
12378
12379 * mpw-build.in: Build ld before gcc, use NewFolderRecursive.
12380 * mpw-config.in: Test for NewFolderRecursive.
12381 * mpw-install: Use symbolic name for startup filename.
12382 * mpw-README: Add various additional details.
12383
12384 Wed Dec 18 13:11:46 1996 Jim Wilson <wilson@cygnus.com>
12385
12386 * configure.in (mips*-sgi-irix6*): Remove binutils from noconfigdirs.
12387
12388 Wed Dec 18 10:29:31 1996 Jeffrey A Law (law@cygnus.com)
12389
12390 * configure.in: Do build gcc and the target libraries for
12391 the mn10200.
12392
12393 Wed Dec 4 16:53:05 1996 Geoffrey Noer <noer@cygnus.com>
12394
12395 * configure.in: don't avoid building gdb for mn10300 any more
12396 * Makefile.in: double-quote GCC_FOR_TARGET line in EXTRA_GCC_FLAGS
12397 instead of single-quoting it.
12398
12399 Tue Dec 3 23:26:50 1996 Jason Merrill <jason@yorick.cygnus.com>
12400
12401 * configure.in: Don't use --with-stabs on IRIX 6.
12402
12403 Tue Dec 3 09:05:25 1996 Doug Evans <dje@canuck.cygnus.com>
12404
12405 * configure.in (m32r): Build gdb, libg++ now.
12406
12407 Sun Dec 1 00:18:59 1996 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
12408
12409 * configure.in (mips*-sgi-irix6*): Remove gdb and related
12410 directories from noconfigdirs.
12411
12412 Tue Nov 26 11:45:33 1996 Kim Knuttila <krk@cygnus.com>
12413
12414 * config.sub (basic_machine): added mips16 configuration
12415
12416 Sat Nov 23 19:26:22 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12417
12418 * config.sub: Handle d10v-unknown.
12419
12420 Sat Nov 23 10:23:01 1996 Gavin Koch <gavin@cygnus.com>
12421
12422 * config.sub: Handle v850-unknown.
12423
12424 Thu Nov 21 16:19:44 1996 Geoffrey Noer <noer@cygnus.com>
12425
12426 * Makefile.in: add findutils
12427 * configure.in: add findutils to list of host_tools
12428
12429 Wed Nov 20 10:09:01 1996 Jeffrey A Law (law@cygnus.com)
12430
12431 * config.sub: Handle mn10200 and mn10300.
12432
12433 Tue Nov 19 16:35:14 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12434
12435 * configure.in (d10v-*): Do not build librx.
12436
12437 Mon Nov 18 13:28:41 1996 Jeffrey A Law (law@cygnus.com)
12438
12439 * configure.in (mn10300): Build everything except gdb & libgloss.
12440
12441 Wed Nov 13 14:59:46 1996 Per Bothner <bothner@deneb.cygnus.com>
12442
12443 * config.guess: Patch for Dansk Data Elektronik servers,
12444 from Niels Skou Olsen <nso@dde.dk>.
12445
12446 For ncr, use /bin/uname rather than uname, since GNU uname does not
12447 support -p. Suggested by Mark Mitchell <mmitchell@usa.net>.
12448
12449 Patch for MIPS R4000 running System V,
12450 from Eric S. Raymond <esr@snark.thyrsus.com>.
12451
12452 Fix thinko for nextstep.
12453
12454 Patch for OSF1 in i?86, from Dan Murphy <dlm@osf.org> via Harlan Stenn.
12455
12456 Sat Jun 24 18:58:17 1995 Morten Welinder <terra+@cs.cmu.edu>
12457 * config.guess: Guess mips-dec-mach_bsd4.3.
12458
12459 Thu Oct 10 04:07:04 1996 Harlan Stenn <harlan@pfcs.com>
12460 * config.guess (i?86-ncr-sysv*): Emit just enough of the minor
12461 release numbers.
12462 * config.guess (mips-mips-riscos*): Emit just enough of the
12463 release number.
12464
12465 Tue Oct 8 10:37:22 1996 Frank Vance <fvance@waii.com>
12466 * config.guess (sparc-auspex-sunos*): Added.
12467 (f300-fujitsu-*): Added.
12468
12469 Wed Sep 25 22:00:35 1996 Jeff Woolsey <woolsey@jlw.com>
12470 * config.guess: Recognize a Tadpole as a sparc.
12471
12472 Wed Nov 13 00:53:09 1996 David J. MacKenzie <djm@churchy.gnu.ai.mit.edu>
12473
12474 * config.guess: Don't assume that NextStep version is either 2 or
12475 3. NextStep 4 (aka OpenStep 4) has come out now.
12476
12477 Mon Nov 11 23:52:03 1996 David J. MacKenzie <djm@churchy.gnu.ai.mit.edu>
12478
12479 * config.guess: Support Cray T90 that reports itself as "CRAY TS".
12480 From Rik Faith <faith@cs.unc.edu>.
12481
12482 Fri Nov 8 11:34:58 1996 David J. MacKenzie <djm@geech.gnu.ai.mit.edu>
12483
12484 * config.sub: Contributions from bug-gnu-utils to:
12485 Support plain "hppa" (no version given) architecture, reported by
12486 OpenStep.
12487 OpenBSD like NetBSD.
12488 LynxOs is not a hardware supplier.
12489
12490 * config.guess: Contributions from bug-gnu-utils to add support for:
12491 OpenBSD like NetBSD.
12492 Stratus systems.
12493 More Pyramid systems.
12494 i[n>4]86 Intel chips.
12495 M680[n>4]0 Motorola chips.
12496 Use unknown instead of lynx for hardware manufacturer.
12497
12498 Mon Nov 11 10:09:08 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
12499
12500 * install.sh (chmodcmd): Set to null if the DST directory already
12501 exists.
12502
12503 Mon Nov 11 10:43:41 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12504
12505 * configure.in (powerpc*-{eabi,elf,linux,rtem,sysv,solaris}*): Do
12506 not use mt-ppc target Makefile fragment any more.
12507
12508 Sun Nov 3 19:17:07 1996 Stu Grossman (grossman@critters.cygnus.com)
12509
12510 * configure.in (*-*-windows): Exclude everything but those dirs
12511 needed to build windows.
12512
12513 Tue Oct 29 16:41:31 1996 Doug Evans <dje@canuck.cygnus.com>
12514
12515 * Makefile.in (all-target-winsup): Depend on all-target-librx.
12516
12517 Mon Oct 28 17:32:46 1996 Stu Grossman (grossman@critters.cygnus.com)
12518
12519 * configure.in: Exclude mmalloc from i386-windows.
12520
12521 Thu Oct 24 09:22:46 1996 Stu Grossman (grossman@critters.cygnus.com)
12522
12523 * Undo my previous change.
12524
12525 Thu Oct 24 12:12:04 1996 Ian Lance Taylor <ian@cygnus.com>
12526
12527 * Makefile.in (EXTRA_GCC_FLAGS): Pass down GCC_FOR_TARGET
12528 unconditionally.
12529 (MAKEOVERRIDES): Define (revert this part of October 18 change).
12530
12531 Thu Oct 24 09:02:07 1996 Stu Grossman (grossman@critters.cygnus.com)
12532
12533 * Makefile.in (FLAGS_TO_PASS): Add $(HOST_FLAGS) to allow the
12534 host to add it's own flags.
12535
12536 Tue Oct 22 15:20:26 1996 Ian Lance Taylor <ian@cygnus.com>
12537
12538 * configure: Handle GCC_FOR_TARGET like CC_FOR_TARGET.
12539
12540 Fri Oct 18 13:37:13 1996 Ian Lance Taylor <ian@cygnus.com>
12541
12542 * Makefile.in (CC_FOR_TARGET): Check for xgcc, not Makefile.
12543 (CXX_FOR_TARGET): Likewise.
12544 (GCC_FOR_TARGET): Define.
12545 (BASE_FLAGS_TO_PASS): Remove GCC_FOR_TARGET.
12546 (EXTRA_GCC_FLAGS): Define GCC_FOR_TARGET based on whether
12547 CC_FOR_TARGET was specified on the command line.
12548 (MAKEOVERRIDES): Don't define.
12549
12550 Thu Oct 17 10:27:56 1996 Doug Evans <dje@canuck.cygnus.com>
12551
12552 * configure.in (m32r): Fix spelling of libg++ libs.
12553
12554 Thu Oct 10 10:37:17 1996 Stan Shebs <shebs@andros.cygnus.com>
12555
12556 * config.sub (-apple*): Remove, now redundant.
12557
12558 Thu Oct 10 12:30:54 1996 Ian Lance Taylor <ian@cygnus.com>
12559
12560 * configure: Don't get confused by CPU-VENDOR-linux-gnu.
12561
12562 * configure: Rework yesterday's sed script patch.
12563
12564 * config.sub: Merge with FSF.
12565
12566 Wed Oct 9 17:24:59 1996 Per Bothner <bothner@deneb.cygnus.com>
12567
12568 * config.guess: Merge from FSF.
12569
12570 1996-09-12 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
12571 * config.guess: Use pc instead of unknown, for pc clone systems.
12572 Change linux to linux-gnu.
12573
12574 Mon Jul 15 23:51:11 1996 Karl Heuer <kwzh@gnu.ai.mit.edu>
12575 * config.guess: Avoid non-portable tr syntax.
12576
12577 Wed Oct 9 06:06:46 1996 Jeffrey A Law (law@cygnus.com)
12578
12579 * test-build.mk (HOLES): Add "xargs" for gdb.
12580
12581 * configure: Avoid hpux10.20 sed bug.
12582
12583 Tue Oct 8 08:32:48 1996 Stu Grossman (grossman@critters.cygnus.com)
12584
12585 * configure.in: Add support for windows host
12586 (that is a build done under the Microsoft build environment).
12587
12588 Tue Oct 8 10:39:08 1996 Ian Lance Taylor <ian@cygnus.com>
12589
12590 * Makefile.in: Replace all uses of srcroot with s, to shrink
12591 command line lengths.
12592
12593 Patches from Geoffrey Noer <noer@cygnus.com>:
12594 * configure.in: If configuring for newlib, pass --with-newlib to
12595 subdirectories.
12596 * Makefile.in (CC_FOR_TARGET): If winsup/Makefile exists, pass a
12597 -Bnewlib/ and -Lwinsup to gcc.
12598 (CXX_FOR_TARGET): Likewise.
12599
12600 Mon Oct 7 10:59:35 1996 Ian Lance Taylor <ian@cygnus.com>
12601
12602 * Makefile.in (ETC_SUPPORT): Add configure.
12603
12604 Fri Oct 4 12:22:58 1996 Angela Marie Thomas (angela@cygnus.com)
12605
12606 * configure.in: Use config/mh-dgux386 for i[345]86-dg-dgux
12607 host configuration file.
12608
12609 Thu Oct 3 09:28:25 1996 Jeffrey A Law (law@cygnus.com)
12610
12611 * configure.in: Break mn10x00 support into separate
12612 mn10200 and mn10300 configurations.
12613 * config.sub: Likewise.
12614
12615 Wed Oct 2 22:27:52 1996 Jeffrey A Law (law@cygnus.com)
12616
12617 * configure.in: Add lots of stuff to noconfigdirs for
12618 the mn10x00 targets.
12619
12620 * config.sub, configure.in: Add mn10x00 support.
12621
12622 Wed Oct 2 15:52:36 1996 Klaus Kaempf <kkaempf@progis.de>
12623
12624 * make-all.com: Call conf-a-gas, not config-a-gas.
12625
12626 Tue Oct 1 01:28:41 1996 James G. Smith <jsmith@cygnus.co.uk>
12627
12628 * configure.in (noconfigdirs): Don't build libgloss for arm-coff
12629 targets.
12630
12631 Mon Sep 30 14:24:01 1996 Stan Shebs <shebs@andros.cygnus.com>
12632
12633 * mpw-README: Add much more detail for native PowerMac.
12634 * mpw-install: New file.
12635 * mpw-configure: Add --norecursion and --help options.
12636 * mpw-config.in: Translate readme and install files when
12637 copying to objdir.
12638 * mpw-build.in: Don't always depend on byacc and flex.
12639 (install-only-top): New action.
12640
12641 Fri Sep 27 17:39:44 1996 Stu Grossman (grossman@critters.cygnus.com)
12642
12643 * configure.in: You can now configure GDB for the v850.
12644
12645 Tue Sep 24 19:05:12 1996 Stan Shebs <shebs@andros.cygnus.com>
12646
12647 * configure.in (noconfigdirs): Don't configure any C++ dirs
12648 if targeting D10V.
12649
12650 Tue Sep 17 12:15:31 1996 Ian Lance Taylor <ian@cygnus.com>
12651
12652 * config.sub: Recognize mips64vr5000.
12653
12654 Mon Sep 16 17:00:52 1996 Ian Lance Taylor <ian@cygnus.com>
12655
12656 * configure.in: Use a single line for host_tools and native_only.
12657
12658 Mon Sep 9 12:21:30 1996 Doug Evans <dje@canuck.cygnus.com>
12659
12660 * config.sub, configure.in: Add entries for m32r.
12661
12662 Thu Sep 5 13:52:47 1996 Tom Tromey <tromey@creche.cygnus.com>
12663
12664 * Makefile.in (inet-install): Don't run install-gzip.
12665
12666 Wed Sep 4 17:26:13 1996 Stu Grossman (grossman@critters.cygnus.com)
12667
12668 * configure.in: Don't config lots of things for *-*-windows*.
12669
12670 Sat Aug 31 11:45:57 1996 Stan Shebs <shebs@andros.cygnus.com>
12671
12672 * mpw-config.in: Test for mpw-true, true, and null-command scripts.
12673 (host_libs, host_tools): Copy from configure.in.
12674 * mpw-configure: Don't complain about directories not found.
12675
12676 Thu Aug 29 16:44:58 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12677
12678 * configure.in (i[345]86): Recognize i686 for pentium pro.
12679 (i[3456]86-*-dgux*): Use config/mh-sysv for the host configuration
12680 file.
12681
12682 * config.guess (i[345]86): Ditto.
12683
12684 Mon Aug 26 18:34:42 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
12685
12686 * configure.in (noconfigdirs): Removed gdb for D10V.
12687
12688 Thu Aug 22 17:13:52 1996 Jeffrey A Law (law@cygnus.com)
12689
12690 * configure.in: Remove ld, target-libio, target-libg++, and
12691 target-libstdc++ from noconfigdirs.
12692
12693 Wed Aug 21 18:56:38 1996 Fred Fish <fnf@cygnus.com>
12694
12695 * configure: Fix three locations where shell scripts were
12696 being run directly rather than with config_shell.
12697
12698 Tue Aug 20 13:08:47 1996 J.T. Conklin <jtc@hippo.cygnus.com>
12699
12700 * configure.in (v850-*-*): Set up initial $noconfigdirs.
12701 * config.sub (basic_machine): Recognize v850.
12702
12703 Thu Aug 15 12:19:33 1996 Stan Shebs <shebs@andros.cygnus.com>
12704
12705 * mpw-configure: Handle multiple enable/disable options and
12706 pass them down recursively, handle -c and -s flags appropriately
12707 depending on choice of compiler, add escape mechanism for
12708 quoted arguments to gC.
12709
12710 Mon Aug 12 13:15:13 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12711
12712 * configure.in (powerpc*-*-*): For eabi, system V.4, Linux, and
12713 solaris targets, use config/mt-ppc to set C{,XX}FLAGS_FOR_TARGETS
12714 so that -mrelocatable-lib and -mno-eabi are used.
12715
12716 * Makefile.in (CONFIGURE_TARGET_MODULES): If target compiler does
12717 not support --print-multi-lib, don't abort.
12718
12719 Thu Aug 8 12:18:59 1996 Klaus Kaempf <kkaempf@progis.de>
12720
12721 * make-all.com: Run config-a-gas.
12722 * setup.com: Don't copy subdirectory files around.
12723
12724 Tue Jul 30 17:49:31 1996 Brendan Kehoe <brendan@cygnus.com>
12725
12726 * configure.in (*-*-ose): Remove exclusion of libgloss for this
12727 target, it now compiles correctly.
12728
12729 Sat Jul 27 15:10:43 1996 Stan Shebs <shebs@andros.cygnus.com>
12730
12731 * mpw-config.in: Generate Mac include for elf/dwarf2.h.
12732
12733 Tue Jul 23 10:47:04 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
12734
12735 * configure.in (d10v-*-*): Remove ld from $noconfigdirs.
12736
12737 Mon Jul 22 13:28:51 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
12738
12739 * configure.in (native_only): Add prms.
12740
12741 Mon Jul 22 12:27:58 1996 Ian Lance Taylor <ian@cygnus.com>
12742
12743 * Makefile.in (GAS_SUPPORT_DIRS): Add make-all.com and setup.com.
12744 (BINUTILS_SUPPORT_DIRS): Likewise.
12745
12746 Thu Jul 18 12:55:40 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12747
12748 * configure.in (d10v-*-*): Don't configure ld or gdb until the
12749 d10v support is added.
12750
12751 Wed Jul 17 14:33:09 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
12752
12753 * configure.in (d10v-*-*): New target.
12754
12755 Mon Jul 15 11:53:00 1996 Jeffrey A Law (law@cygnus.com)
12756
12757 * config.guess (HP 9000/811): Recognize this as a PA1.1
12758 machine.
12759
12760 Fri Jul 12 23:21:17 1996 Ken Raeburn <raeburn@cygnus.com>
12761
12762 * Makefile.in (do-tar-gz): New target, split out from tail end of
12763 taz target. Run each command separately, don't use pipes.
12764 (taz): Use it.
12765
12766 Fri Jul 12 12:08:04 1996 Stan Shebs <shebs@andros.cygnus.com>
12767
12768 * mpw-configure: Look for g-mpw-make.sed in config/mpw.
12769 * mpw-build.in: No builds should depend on building byacc or flex,
12770 they are assumed to be installed already.
12771
12772 Fri Jul 12 09:52:52 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12773
12774 * Makefile.in (CONFIGURE_TARGET_MODULES): Set r environment
12775 variable that CC_FOR_TARGET needs.
12776
12777 Thu Jul 11 10:09:45 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12778
12779 * Makefile.in (CONFIGURE_TARGET_MODULES): Determine if the multlib
12780 options have changed since the last time the subdirectory was
12781 configured, and if it has, reconfigure.
12782 (CLEAN_TARGET_MODULES): Delete multilib.out and tmpmulti.out, which
12783 CONFIGURE_TARGET_MODULES uses to remember the old multilib options.
12784
12785 Wed Jul 10 18:56:59 1996 Doug Evans <dje@canuck.cygnus.com>
12786
12787 * Makefile.in (ALL_MODULES,CROSS_CHECK_MODULES,INSTALL_MODULES,
12788 CLEAN_MODULES): Add bash.
12789 (all-bash): New target.
12790
12791 Mon Jul 8 17:33:14 1996 Jim Wilson <wilson@cygnus.com>
12792
12793 * configure.in (mips-sgi-irix6*): Use mh-irix6 instead of mh-irix5.
12794
12795 Mon Jul 1 13:31:35 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12796
12797 * config.sub (basic_machine): Recognize d10v as a valid processor.
12798
12799 Fri Jun 28 12:14:35 1996 Stan Shebs <shebs@andros.cygnus.com>
12800
12801 * mpw-configure: Add support for --bindir.
12802 * mpw-build.in: Use a GCC-specific build script for GCC actions.
12803
12804 Wed Jun 26 17:20:12 1996 Geoffrey Noer <noer@cygnus.com>
12805
12806 * configure.in: add bash, time, gawk to list of hosttools and things
12807 to only build for native toolchains
12808
12809 Tue Jun 25 23:09:03 1996 Jason Molenda (crash@godzilla.cygnus.co.jp)
12810
12811 * Makefile.in (docdir): Remove.
12812
12813 Tue Jun 25 19:00:08 1996 Jason Molenda (crash@godzilla.cygnus.co.jp)
12814
12815 * Makefile.in (datadir): Set to $(prefix)/share.
12816
12817 Mon Jun 24 23:26:07 1996 Geoffrey Noer <noer@cygnus.com>
12818
12819 * configure.in: build diff and patch for cygwin32-hosted
12820 toolchains.
12821
12822 Mon Jun 24 15:01:12 1996 Joel Sherrill <joel@merlin.gcs.redstone.army.mil>
12823
12824 * config.sub: Accept -rtems*.
12825
12826 Sun Jun 23 22:41:54 1996 Geoffrey Noer <noer@cygnus.com>
12827
12828 * configure.in: enable dosrel for cygwin32-hosted builds,
12829 remove diff from the list of things not buildable
12830 via Canadian Cross
12831
12832 Sat Jun 22 11:39:01 1996 Jason Merrill <jason@yorick.cygnus.com>
12833
12834 * Makefile.in (TARGET_SUBDIR): Move comment to previous line so we
12835 don't get ". ".
12836
12837 Fri Jun 21 17:24:48 1996 Jim Wilson <wilson@cygnus.com>
12838
12839 * configure.in (mips*-sgi-irix6*): Set noconfigdirs appropriately.
12840
12841 Thu Jun 20 16:57:40 1996 Ken Raeburn <raeburn@cygnus.com>
12842
12843 * Makefile.in (taz): Handle case where tex3patch didn't even get
12844 checked out. Also, if it was found, put the symlink in a new util
12845 subdirectory.
12846
12847 Thu Jun 20 12:20:33 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12848
12849 * config.guess (*:Linux:*:*): Add support for PowerPC Linux.
12850
12851 Tue Jun 18 14:24:12 1996 Klaus Kaempf (kkaempf@progis.de)
12852
12853 * config.sub: Recognize -openvms.
12854 * configure.in (alpha*-*-*vms*): Set noconfigdirs.
12855 * make-all.com, setup.com: New files.
12856
12857 Mon Jun 17 16:34:46 1996 Jason Merrill <jason@yorick.cygnus.com>
12858
12859 * Makefile.in (taz): tex3patch moved to texinfo/util.
12860
12861 Sat Jun 15 17:13:25 1996 Geoffrey Noer <noer@cygnus.com>
12862
12863 * configure: enable_gdbtk=no for cygwin32-hosted toolchains
12864 * configure.in: remove make from disable-if-Can-Cross list
12865 enable gdb if ${host} and ${target} are cygwin32
12866
12867 Fri Jun 7 18:16:52 1996 Harlan Stenn <harlan@pfcs.com>
12868
12869 * config.guess (i?86-ncr-sysv*): Emit minor release numbers.
12870 Recognize the NCR 4850 machine and NCR Pentium-based platforms.
12871
12872 Wed Jun 5 00:09:17 1996 Per Bothner <bothner@wombat.gnu.ai.mit.edu>
12873
12874 * config.guess: Combine mips-mips-riscos cases, and use cpp to
12875 distinguish sysv/svr4/bsd variants.
12876 Based on a patch from Harlan Stenn <harlan@pfcs.com>.
12877
12878 Fri Jun 7 14:24:49 1996 Tom Tromey <tromey@creche.cygnus.com>
12879
12880 * configure.in: Added copyright notice.
12881 * move-if-change: Added copyright notice.
12882
12883 Thu Jun 6 16:27:05 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12884
12885 * configure.in (powerpcle-*-solaris*): Until we get shared
12886 libraries working, don't build gdb, sim, make, tcl, tk, or
12887 expect.
12888
12889 Tue Jun 4 20:41:45 1996 Per Bothner <bothner@deneb.cygnus.com>
12890
12891 * config.guess: Merge with FSF:
12892
12893 Mon Jun 3 08:49:14 1996 Karl Heuer <kwzh@gnu.ai.mit.edu>
12894 * config.guess (*:Linux:*:*): Add guess for sparc-unknown-linux.
12895
12896 Fri May 24 18:34:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
12897 * config.guess (AViiON:dgux:*:*): Fix typo in recognizing mc88110.
12898
12899 Fri Apr 12 20:03:59 1996 Per Bothner <bothner@spiff.gnu.ai.mit.edu>
12900 * config.guess: Combine two OSF1 rules.
12901 Also recognize field test versions. From mjr@zk3.dec.com.
12902 * config.guess (dgux): Use /usr/bin/uname rather than uname,
12903 because GNU uname does not support -p. From pmr@pajato.com.
12904
12905 Tue Jun 4 11:07:25 1996 Tom Tromey <tromey@csk3.cygnus.com>
12906
12907 * Makefile.in (MAKEDIRS): Removed $(tooldir).
12908
12909 Tue May 28 12:30:50 1996 Stan Shebs <shebs@andros.cygnus.com>
12910
12911 * mpw-README: Document GCCIncludes.
12912
12913 Sun May 26 15:16:27 1996 Fred Fish <fnf@cygnus.com>
12914
12915 * configure.in (alpha-*-linux*): Set enable_shared to yes.
12916
12917 Tue May 21 15:41:39 1996 Stan Shebs <shebs@andros.cygnus.com>
12918
12919 * mpw-configure: Handle --enable-FOO and --disable-FOO.
12920
12921 Mon May 20 10:12:29 1996 Geoffrey Noer <noer@cygnus.com>
12922
12923 * configure.in (*-*-cygwin32): Configure make.
12924
12925 Tue May 7 14:19:42 1996 Tom Tromey <tromey@snuffle.cygnus.com>
12926
12927 * Makefile.in (inet-install): Quote value of INSTALL_MODULES.
12928
12929 Fri May 3 08:57:17 1996 Tom Tromey <tromey@lisa.cygnus.com>
12930
12931 * Makefile.in (all-inet): Depend on all-perl.
12932
12933 * Makefile.in (inet-install): New target.
12934
12935 * Makefile.in (all-inet): Depend on all-tcl.
12936 (all-inet): Depend on all-send-pr.
12937
12938 Tue Apr 30 13:55:51 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12939
12940 * configure.in (powerpcle-*-solaris*): Turn off tk and tcl
12941 temporarily.
12942
12943 Thu Apr 25 11:48:20 1996 Ian Lance Taylor <ian@cygnus.com>
12944
12945 * configure.in: Don't configure --with-gnu-ld on AIX.
12946
12947 Thu Apr 25 06:33:36 1996 Michael Meissner <meissner@wogglebug.tiac.net>
12948
12949 * configure.in (powerpcle-*-solaris*): Turn off gdb temporarily.
12950
12951 Tue Apr 23 09:07:39 1996 Tom Tromey <tromey@creche.cygnus.com>
12952
12953 * Makefile.in (ALL_MODULES): Added all-inet.
12954 (CROSS_CHECK_MODULES): Added check-inet.
12955 (INSTALL_MODULES): Added install-inet.
12956 (CLEAN_MODULES): Added clean-inet.
12957 (all-indent): New target.
12958
12959 * configure.in (host_tools): Added inet.
12960 (native_only): Added inet.
12961 (noconfigdirs): Added inet.
12962
12963 Fri Apr 19 15:35:29 1996 Ian Lance Taylor <ian@cygnus.com>
12964
12965 * configure.in: Don't configure libgloss if we are not configuring
12966 newlib.
12967
12968 Wed Apr 17 19:30:01 1996 Rob Savoye <rob@chinadoll.cygnus.com>
12969
12970 * configure.in: Don't configure libgloss for unsupported
12971 architectures.
12972
12973 Tue Apr 16 11:17:05 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12974
12975 * Makefile.in (CLEAN_MODULES): Add clean-apache.
12976
12977 Mon Apr 15 15:09:05 1996 Tom Tromey <tromey@creche.cygnus.com>
12978
12979 * Makefile.in (ALL_MODULES): Include all-apache.
12980 (CROSS_CHECK_MODULES): Include check-apache.
12981 (INSTALL_MODULES): Include install-apache.
12982 (all-apache): New target.
12983
12984 * configure.in: Added apache everywhere perl is seen.
12985
12986 Mon Apr 15 14:59:13 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12987
12988 * Makefile.in: Add support for clean-{module} and
12989 clean-target-{module} rules.
12990
12991 Wed Apr 10 21:37:41 PDT 1996 Marilyn E. Sander <msander@cygnus.com>
12992
12993 * configure.in (*-*-ose) do not build libgloss.
12994
12995 Mon Apr 8 16:16:20 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12996
12997 * config.guess (prep*:SunOS:5.*:*): Turn into
12998 powerpele-unknown-solaris2.
12999
13000 Mon Apr 8 14:45:41 1996 Ian Lance Taylor <ian@cygnus.com>
13001
13002 * configure.in: Permit --enable-shared to specify a list of
13003 directories.
13004
13005 Fri Apr 5 08:17:57 1996 Jason Molenda (crash@phydeaux.cygnus.com)
13006
13007 * configure.in (host==solaris): Pass only the first word of $CC
13008 to /usr/bin/which when checking if we're using /usr/ccs/bin/cc.
13009
13010 Fri Apr 5 03:16:13 1996 Jason Molenda (crash@phydeaux.cygnus.com)
13011
13012 * Makefile.in (BASE_FLAGS_TO_PASS): pass down $(MAKE).
13013
13014 Thu Mar 28 14:11:11 1996 Tom Tromey <tromey@creche.cygnus.com>
13015
13016 * Makefile.in (ALL_MODULES): Include all-perl.
13017 (CROSS_CHECK_MODULES): Include check-perl.
13018 (INSTALL_MODULES): Include install-perl.
13019 (ALL_X11_MODULES): Include all-guile.
13020 (CHECK_X11_MODULES): Include check-guile.
13021 (INSTALL_X11_MODULES): Include install-guile.
13022 (all-perl): New target.
13023 (all-guile): New target.
13024
13025 * configure.in (host_tools): Include perl and guile.
13026 (native_only): Include perl and guile.
13027 (noconfigdirs): Don't build guile and perl; no ports have been
13028 done.
13029
13030 Tue Mar 26 21:18:50 1996 Andrew Cagney <cagney@kremvax.highland.com.au>
13031
13032 * configure (--enable-*): Handle quoted option lists such as
13033 --enable-sim-cflags='-g0 -O' better.
13034
13035 Thu Mar 21 11:53:08 1996 Michael Meissner <meissner@tiktok.cygnus.com>
13036
13037 * Makefile.in ({,inst}all-target): New rule so we can make and
13038 install all of the target directories easily.
13039
13040 Wed Mar 20 18:10:57 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
13041
13042 * configure.in: Add missing global flag in sed substitution when
13043 deleting `target-' from ${configdirs}.
13044
13045 Thu Mar 14 19:15:06 1996 Ian Lance Taylor <ian@cygnus.com>
13046
13047 * Makefile.in (DO_X): Don't get confused if CC contains `=' in an
13048 option.
13049
13050 * configure.in (mips*-nec-sysvr4*): Use a host_makefile_frag of
13051 config/mh-necv4.
13052
13053 * install.sh: Correct misspelling of transformbasename.
13054
13055 * config.guess: Recognize mips-*-sysv*.
13056
13057 Mon Mar 11 15:36:42 1996 Dawn Perchik <dawn@critters.cygnus.com>
13058
13059 * config.sub: Recognize mon960.
13060
13061 Sun Mar 10 13:18:38 1996 Ian Lance Taylor <ian@cygnus.com>
13062
13063 * configure: Restore Canadian Cross handling of BISON and LEX,
13064 removed in Feb 20 change.
13065
13066 Fri Mar 8 20:07:09 1996 Per Bothner <bothner@kalessin.cygnus.com>
13067
13068 * README: Suggestions from Torbjorn Granlund <tege@matematik.su.se>:
13069 Mention make install. Remove the old copyright date as well the
13070 clumsy and rather pointless copyright on the README file.
13071
13072 Fri Mar 8 17:51:35 1996 Ian Lance Taylor <ian@cygnus.com>
13073
13074 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): If there is a
13075 Makefile after running symlink-tree, then run `make distclean' to
13076 avoid clobbering any generated files in srcdir.
13077
13078 Tue Mar 5 08:21:44 1996 J.T. Conklin <jtc@rtl.cygnus.com>
13079
13080 * configure.in (m68k-*-netbsd*): Build everything now.
13081
13082 Wed Feb 28 12:25:46 1996 Jason Merrill <jason@yorick.cygnus.com>
13083
13084 * Makefile.in (taz): Fix quoting.
13085
13086 Tue Feb 27 11:33:57 1996 Doug Evans <dje@charmed.cygnus.com>
13087
13088 * configure.in (sparclet-*-*): Build everything now.
13089
13090 Tue Feb 27 14:31:51 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
13091
13092 * configure.in (m68k-*-linux*): New host.
13093
13094 Mon Feb 26 14:32:44 1996 Ian Lance Taylor <ian@cygnus.com>
13095
13096 * configure: Check for bison before byacc.
13097
13098 Tue Feb 20 23:12:35 1996 Stu Grossman (grossman@critters.cygnus.com)
13099
13100 * Makefile.in configure: Change the way LEX and BISON/YACC are
13101 set. configure now defines DEFAULT_LEX and DEFAULT_YACC by
13102 searching PATH. These are used as fallbacks by Makefile.in if
13103 flex/bison/byacc aren't in objdir.
13104
13105 Mon Feb 19 11:45:30 1996 Ian Lance Taylor <ian@cygnus.com>
13106
13107 * Makefile.in: Make everything which depends upon all-bfd also
13108 depend upon all-opcodes, in case --with-commonbfdlib is used.
13109
13110 Thu Feb 15 19:50:50 1996 Michael Meissner <meissner@tiktok.cygnus.com>
13111
13112 * configure.in (host *-*-cygwin32): Don't build gdb if we are
13113 building NT native compilers on Unix.
13114
13115 Thu Feb 15 17:42:25 1996 Ian Lance Taylor <ian@cygnus.com>
13116
13117 * configure.in: Don't get CC from the host Makefile fragment if we
13118 can find gcc in PATH, or if this is a Canadian Cross. Move the
13119 Solaris test for /usr/ucb/cc to the post target script, just after
13120 the compiler sanity test.
13121
13122 Wed Feb 14 16:57:40 1996 Ian Lance Taylor <ian@cygnus.com>
13123
13124 * config.sub: Merge with FSF.
13125
13126 Tue Feb 13 14:27:48 1996 Ian Lance Taylor <ian@cygnus.com>
13127
13128 * Makefile.in (RPATH_ENVVAR): New variable.
13129 (REALLY_SET_LIB_PATH): Use it.
13130 * configure.in: On HP/UX, set RPATH_ENVVAR to SHLIB_PATH.
13131
13132 Mon Feb 12 15:28:49 1996 Doug Evans <dje@charmed.cygnus.com>
13133
13134 * config.sub, configure.in: Recognize sparclet cpu.
13135
13136 Mon Feb 12 15:33:59 1996 Christian Bauernfeind <chrisbfd@theorie3.physik.uni-erlangen.de>
13137
13138 * config.guess: Support m68k-cbm-sysv4.
13139
13140 Sat Feb 10 12:06:42 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
13141
13142 * config.guess (*:Linux:*:*): Guess m68k-unknown-linux and
13143 m68k-unknown-linuxaout from linker help string. Put quotes around
13144 $ld_help_string.
13145
13146 Thu Dec 7 09:03:24 1995 Tom Horsley <Tom.Horsley@mail.hcsc.com>
13147
13148 * config.guess (powerpc-harris-powerunix): Add guess for port
13149 to new target.
13150
13151 Thu Feb 8 15:37:52 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
13152
13153 * config.guess (UNAME_VERSION): Recognize X4.x as an OSF version.
13154
13155 Mon Feb 5 16:36:51 1996 Ian Lance Taylor <ian@cygnus.com>
13156
13157 * configure.in: If --enable-shared was used, set SET_LIB_PATH to
13158 $(REALLY_SET_LIB_PATH) in Makefile.
13159 * Makefile.in (SET_LIB_PATH): New variable.
13160 (REALLY_SET_LIB_PATH): New variable.
13161 ($(DO_X)): Use $(SET_LIB_PATH).
13162 (install.all, gcc-no-fixedincludes, $(ALL_MODULES)): Likewise.
13163 ($(NATIVE_CHECK_MODULES), $(CROSS_CHECK_MODULES)): Likewise.
13164 ($(INSTALL_MODULES), $(CONFIGURE_TARGET_MODULES)): Likewise.
13165 ($(ALL_TARGET_MODULES), $(CHECK_TARGET_MODULES)): Likewise.
13166 ($(INSTALL_TARGET_MODULES), $(ALL_X11_MODULES)): Likewise.
13167 ($(CHECK_X11_MODULES), $(INSTALL_X11_MODULES)): Likewise.
13168 (all-gcc, all-bootstrap, check-gcc, install-gcc): Likewise.
13169 (install-dosrel): Likewise.
13170 (all-opcodes): Depend upon all-libiberty.
13171
13172 Sun Feb 4 16:51:11 1996 Steve Chamberlain <sac@slash.cygnus.com>
13173
13174 * config.guess (*:CYGWIN*): New
13175
13176 Sat Feb 3 10:42:35 1996 Michael Meissner <meissner@tiktok.cygnus.com>
13177
13178 * Makefile.in (all-target-winsup): All all-target-libiberty.
13179
13180 Fri Feb 2 17:58:56 1996 Michael Meissner <meissner@tiktok.cygnus.com>
13181
13182 * configure.in (noconfigdirs): Add missing # in front of comment.
13183
13184 Thu Feb 1 14:38:13 1996 Geoffrey Noer <noer@cygnus.com>
13185
13186 * configure.in: add second pass to things added to noconfigdirs
13187 so *-gm-magic can exclude libgloss properly.
13188
13189 Thu Feb 1 11:10:16 1996 Stan Shebs <shebs@andros.cygnus.com>
13190
13191 * mpw-configure (extralibs_name, rez_name): Set correctly
13192 for MWC68K compiler.
13193
13194 * mpw-README: Add more info on the necessary build tools.
13195
13196 Thu Feb 1 10:22:38 1996 Steve Chamberlain <sac@slash.cygnus.com>
13197
13198 * configure.in, config.sub: Recognize cygwin32.
13199
13200 Wed Jan 31 14:17:10 1996 Richard Henderson <rth@tamu.edu>
13201
13202 * config.guess, config.sub: Recognize A/UX.
13203
13204 Wed Jan 31 13:52:14 1996 Ian Lance Taylor <ian@cygnus.com>
13205
13206 * config.sub: Merge with gcc/config.sub.
13207
13208 Thu Jan 25 11:01:10 1996 Raymond Jou <rjou@mexican.cygnus.com>
13209
13210 * mpw-build.in (do-binutils): Add build of stamps.
13211
13212 Thu Jan 25 17:05:26 1996 James G. Smith <jsmith@cygnus.co.uk>
13213
13214 * config.sub: Add recognition for mips64vr4100*-* targets.
13215
13216 Wed Jan 24 12:47:55 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
13217
13218 * test-build.mk: Add checking of `hpux9' rather than just `hpux'.
13219 Add creation of gconfigargs with `--enable-shared' turned on.
13220 ($(host)-stamp-stage2-configured): Pass $(gconfigargs).
13221 ($(host)-stamp-stage3-configured): Likewise.
13222 (HOLES): Add chatr and ldd.
13223 (i386-ncr-sysv4.3*): Add use of /usr/ccs/bin in the PATH and HOLE_DIRS.
13224
13225 Wed Jan 24 20:32:30 1996 Torbjorn Granlund <tege@noisy.matematik.su.se>
13226
13227 * configure: Pass --nfp to recursive configures.
13228
13229 Mon Jan 22 10:41:56 1996 Steve Chamberlain <sac@slash.cygnus.com>
13230
13231 * Makefile.in (DLLTOOL): New.
13232 (DLLTOOL_FOR_TARGET): New.
13233 (EXTRA_HOST_FLAGS): Pass down DLLTOOL.
13234 (EXTRA_TARGET_FLAGS): Ditto.
13235 (EXTRA_GCC_FLAGS): Ditto.
13236 (CONFIGURE_TARGET_MODULES): Ditto.
13237 (DO_X): Ditto.
13238 * configure: Add DLLTOOL.
13239
13240 Fri Jan 19 13:30:15 1996 Stan Shebs <shebs@andros.cygnus.com>
13241
13242 SCO OpenServer 5 changes from Robert Lipe <robertl@dgii.com>:
13243 * configure.in (i[345]86-*-sco3.2v5*): Use mh-sysv instead of
13244 mh-sco, since old workarounds no longer needed, and don't
13245 build ld, since libraries have weak symbols in COFF.
13246
13247 Sun Jan 14 23:01:31 1996 Fred Fish <fnf@cygnus.com>
13248
13249 * Makefile.in (CONFIGURE_TARGET_MODULES): Add missing ';'.
13250
13251 Fri Jan 12 15:25:35 1996 Ian Lance Taylor <ian@cygnus.com>
13252
13253 * configure.in: Make sure that ${CC} can be used to compile an
13254 executable.
13255
13256 Sat Jan 6 07:23:33 1996 Michael Meissner <meissner@wogglebug.tiac.net>
13257
13258 * Makefile.in (all-gdb): Depend on $(GDB_TK).
13259 * configure (GDB_TK): Set GDB_TK to either "all-tcl all-tk" or
13260 nothing depending on whether gdbtk is being built.
13261
13262 Wed Jan 3 17:54:41 1996 Doug Evans <dje@canuck.cygnus.com>
13263
13264 * Makefile.in (newlib.tar.gz): Delete building of newlib's info files.
13265
13266 Mon Jan 1 19:09:14 1996 Brendan Kehoe <brendan@rtl.cygnus.com>
13267
13268 * configure.in (noconfigdirs): Put ld or gas in this early, if the
13269 user specifically used --with-gnu-ld=no or --with-gnu-as=no.
13270
13271 Sat Dec 30 16:08:57 1995 Doug Evans <dje@canuck.cygnus.com>
13272
13273 * config-ml.in: Add support for
13274 --disable-{softfloat,m68881,m68000,m68020} on m68*-*-*.
13275 Simplify setting of multidirs from --disable-foo.
13276
13277 Fri Dec 29 07:56:11 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13278
13279 * Makefile.in (EXTRA_GCC_FLAGS): If any of the make variables
13280 LANGUAGES, BOOT_CFLAGS, STMP_FIXPROTO, LIMITS_H_TEST,
13281 LIBGCC1_TEST, LIBGCC2_CFLAGS, LIBGCC2_INCLUDES, and ENQUIRE are
13282 non-empty, pass them on to the GCC make.
13283 (all-bootstrap): New rule that is like all-gcc, except it executes
13284 the GCC bootstrap rule instead of the GCC all rule.
13285
13286 Wed Dec 27 15:51:48 1995 Doug Evans <dje@canuck.cygnus.com>
13287
13288 * config-ml.in (ml_realsrcdir): New, to account for ${subdir}.
13289
13290 Tue Dec 26 11:45:31 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13291
13292 * config.guess (AViiON:dgux:*:*): Update from FSF to add pentium
13293 DG/UX support.
13294
13295 Fri Dec 15 10:01:27 1995 Stan Cox <coxs@dg-rtp.dg.com>
13296
13297 * config.sub (i*86*) Change [345] to [3456]
13298
13299 Wed Dec 20 17:41:40 1995 Brendan Kehoe <brendan@lisa.cygnus.com>
13300
13301 * configure.in (noconfigdirs): Add gas or ld if --with-gnu-as=no or
13302 --with-gnu-ld=no.
13303
13304 Wed Dec 20 15:15:35 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13305
13306 * config-ml.in (rs6000*, powerpc*): Add switches to control which
13307 AIX multilibs get built.
13308
13309 Mon Dec 18 17:55:46 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13310
13311 * configure.in (i386-win32): Don't build expect if we're not
13312 building the tcl subdir.
13313
13314 Mon Dec 18 11:47:19 1995 Stan Shebs <shebs@andros.cygnus.com>
13315
13316 * Makefile.in: (configure-target-examples, all-target-examples):
13317 New targets, configure and build example programs.
13318
13319 Fri Dec 15 16:13:03 1995 Stan Shebs <shebs@andros.cygnus.com>
13320
13321 * mpw-configure: If an mpw-config.in generated a file mk.sed,
13322 use it as input to sedit the generated MPW makefile.
13323 * mpw-README: Add a suggestion about Gestalt.h.
13324
13325 Wed Dec 13 16:43:51 1995 Ian Lance Taylor <ian@cygnus.com>
13326
13327 * config.sub: Accept *-*-ieee*.
13328
13329 Tue Dec 12 11:52:57 1995 Ian Lance Taylor <ian@cygnus.com>
13330
13331 * Makefile.in (local-distclean): Remove $(TARGET_SUBDIR). From
13332 Ronald F. Guilmette <rfg@monkeys.com>.
13333
13334 Mon Dec 11 15:31:58 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13335
13336 * configure.in (host==powerpc-pe): Add many directories to noconfigdirs
13337 for powerpc-pe native.
13338 (target==i386-win32): add tcl, make to noconfigdirs if canadian cross.
13339 (target==powerpc-pe): duplicate i386-win32 entry.
13340
13341 Sat Dec 9 14:58:28 1995 Jim Wilson <wilson@chestnut.cygnus.com>
13342
13343 * configure.in (noconfigdirs): Exclude target-newlib for all versions
13344 of vxworks, not just vxworks5.1.
13345
13346 Mon Dec 4 12:05:40 1995 Stan Shebs <shebs@andros.cygnus.com>
13347
13348 * mpw-configure: Add support for exec-prefix.
13349
13350 Mon Dec 4 10:22:50 1995 Jeffrey A. Law <law@rtl.cygnus.com>
13351
13352 * config.guess: Recognize HP model 816 machines as having
13353 a PA1.1 processor.
13354
13355 Mon Dec 4 12:38:15 1995 Ian Lance Taylor <ian@cygnus.com>
13356
13357 * configure: Ignore new autoconf configure options.
13358
13359 Thu Nov 30 16:57:33 1995 Per Bothner <bothner@wombat.gnu.ai.mit.edu>
13360
13361 * config.guess: Recognize Pentium under SCO.
13362 From Robert Lipe <robertl@arnet.com>.
13363
13364 Wed Nov 29 13:49:08 1995 J.T. Conklin <jtc@rtl.cygnus.com>
13365
13366 * configure.in (noconfigdirs): Disable target-libio on v810-*-*.
13367
13368 Wed Nov 29 12:12:01 1995 Ian Lance Taylor <ian@cygnus.com>
13369
13370 * configure.in: Don't configure gas for alpha-dec-osf*.
13371
13372 Tue Nov 28 17:16:48 1995 Ian Lance Taylor <ian@cygnus.com>
13373
13374 * configure.in: Default to --with-stabs for some targets for which
13375 it makes sense: mips*-*-*, alpha*-*-osf*, i[345]86*-*-sysv4* and
13376 i[345]86*-*-unixware*.
13377
13378 Mon Nov 27 13:44:15 1995 Ian Lance Taylor <ian@cygnus.com>
13379
13380 * config-ml.in: Get list of multidirs using gcc --print-multi-lib
13381 rather than basing it on the target. Simplify handling of options
13382 controlling which directories to configure. Remove extraneous
13383 slash in multi-clean target.
13384
13385 Fri Nov 24 17:29:29 1995 Doug Evans <dje@deneb.cygnus.com>
13386
13387 * config-ml.in: Prefix more variables with ml_ so they don't collide
13388 with configure's.
13389
13390 Wed Nov 22 11:27:02 1995 Ian Lance Taylor <ian@cygnus.com>
13391
13392 * configure: Don't turn -v into --v.
13393
13394 Tue Nov 21 16:48:02 1995 Doug Evans <dje@deneb.cygnus.com>
13395
13396 * configure.in (targargs): Fix typo.
13397
13398 * Makefile.in (DEVO_SUPPORT): Add symlink-tree.
13399
13400 Tue Nov 21 14:08:28 1995 Ian Lance Taylor <ian@cygnus.com>
13401
13402 * configure.in: Strip --host and --target options from
13403 CONFIG_ARGUMENTS, and always configure for --host only. Add
13404 --with-cross-host option when building with a cross-compiler.
13405 * configure: Canonicalize the arguments put into config.status by
13406 always using `=' for an option with an argument. Pass a presumed
13407 --host or --target explicitly.
13408
13409 Fri Nov 17 17:50:30 1995 Stan Shebs <shebs@andros.cygnus.com>
13410
13411 * config.sub: Merge -macos*, -magic*, -pe*, and -win32 cases
13412 into general OS recognition case.
13413
13414 Fri Nov 17 17:42:25 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13415
13416 * configure.in (target_configdirs): add target-winsup only
13417 for win32 target systems.
13418
13419 Thu Nov 16 14:04:47 1995 Ian Lance Taylor <ian@cygnus.com>
13420
13421 * Makefile.in (all-target-libgloss): Depend upon
13422 configure-target-newlib, since when libgloss is built it looks to
13423 see if the newlib directory exists.
13424
13425 Wed Nov 15 14:47:52 1995 Ken Raeburn <raeburn@cygnus.com>
13426
13427 * Makefile.in (DEVO_SUPPORT): Use config-ml.in instead of
13428 cfg-ml-*.in.
13429
13430 Wed Nov 15 11:45:23 1995 Ian Lance Taylor <ian@cygnus.com>
13431
13432 * configure: Handle LD and LD_FOR_TARGET when configuring a
13433 Canadian Cross.
13434
13435 Tue Nov 14 14:56:11 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13436
13437 * configure.in (target_libs): add target-winsup.
13438 (target==i386-win32): add patch diff flex make to $noconfigdirs.
13439 (target==ppcle-pe): remove ld from $noconfigdirs.
13440
13441 Tue Nov 14 01:25:50 1995 Doug Evans <dje@canuck.cygnus.com>
13442
13443 * Makefile.in (CONFIGURE_TARGET_MODULES): Pass --with-target-subdir.
13444 Preserve relative path names in $srcdir. Build symlink tree if
13445 configuring cross target dir and srcdir=. (= no VPATH support).
13446 (configure-target-libg++): Depend on configure-target-librx.
13447 * cfg-ml-com.in, cfg-ml-pos.in: Deleted.
13448 * config-ml.in: New file.
13449 * symlink-tree: New file.
13450 * configure: Ensure srcdir="." if that's what it is.
13451
13452 Mon Nov 13 12:34:20 1995 Stan Shebs <shebs@andros.cygnus.com>
13453
13454 * mpw-README: Clarify some phrasing, add notes about CodeWarrior
13455 includes and FLEX_SKELETON setting.
13456 * mpw-configure (--with-gnu-ld): New option, controls whether
13457 to use PPCLink or ld with PowerMac GCC.
13458 * mpw-build.in (all-grez, do-grez, install-grez): New targets.
13459 * mpw-config.in: Configure grez if targeting Mac.
13460
13461 * config.sub: Accept pmac and pmac-mpw as names for PowerMacs,
13462 accept mpw and mac-mpw as names for m68k Macs, change macos7 to
13463 just macos.
13464 * configure.in: Configure grez resource compiler if targeting Mac.
13465 * Makefile.in (all-grez, install-grez): New targets.
13466
13467 Wed Nov 8 17:33:51 1995 Jason Merrill <jason@yorick.cygnus.com>
13468
13469 * configure: CXX defaults to gcc, not g++. If we find
13470 gcc in the path, set CC to gcc -O2.
13471
13472 Tue Nov 7 15:45:17 1995 Ian Lance Taylor <ian@cygnus.com>
13473
13474 * configure: Default ${build} correctly. Avoid picking up extra
13475 spaces when reading CC and CXX from Makefile. When doing a
13476 Canadian Cross, use plausible default values for numerous
13477 variables.
13478 * configure.in: When doing a Canadian Cross, don't try to
13479 configure tools whose configure script can't handle it.
13480
13481 Mon Nov 6 19:32:17 1995 Jim Wilson <wilson@chestnut.cygnus.com>
13482
13483 * cfg-ml-com.in (sh-*-*): Add m2 and ml/m2 to multidirs.
13484
13485 Sun Nov 5 00:15:41 1995 Per Bothner <bothner@kalessin.cygnus.com>
13486
13487 * configure: Remove dubious bug reporting address.
13488
13489 Fri Nov 3 08:17:54 1995 Per Bothner <bothner@kalessin.cygnus.com>
13490
13491 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): If subdir has
13492 configure script, run that instead of this directory's configure.
13493 In either case, print a message that we're configuring the sub-dir.
13494
13495 Thu Nov 2 23:23:36 1995 Per Bothner <bothner@kalessin.cygnus.com>
13496
13497 * configure.in: Before checking for the existence of various files,
13498 use sed to filter out "target-".
13499
13500 Thu Nov 2 13:24:56 1995 Ian Lance Taylor <ian@cygnus.com>
13501
13502 * Makefile.in (DO_X): Split rule to decrease command line length
13503 for systems with small ARG_MAX values. From phdm@info.ucl.ac.be
13504 (Philippe De Muyter).
13505
13506 Wed Nov 1 15:18:35 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13507
13508 * Makefile.in (all-patch): depend on all-libiberty.
13509
13510 Wed Nov 1 12:23:20 1995 Ian Lance Taylor <ian@cygnus.com>
13511
13512 * configure.in: If the only directory in target_configdirs which
13513 actually exists is libiberty, then set target_configdirs to empty,
13514 to avoid trying to build a target libiberty in a gas or gdb
13515 distribution.
13516
13517 Tue Oct 31 17:52:39 1995 J.T. Conklin <jtc@slave.cygnus.com>
13518
13519 * configure.in (host_makefile_frag): Use m68k-sun-sunos* instead
13520 of m68k-sun-* when selecting mh-sun3 to avoid matching NetBSD/sun3
13521 systems.
13522
13523 Tue Oct 31 16:57:32 1995 Jim Wilson <wilson@chestnut.cygnus.com>
13524
13525 * configure.in (copy_dirs): Use sys-include instead of include
13526 for --with-headers option.
13527
13528 Tue Oct 31 10:29:36 1995 steve chamberlain <sac@slash.cygnus.com>
13529
13530 * Makefile.in, configure.in: Make winsup builds work with
13531 new scheme.
13532
13533 Mon Oct 30 18:57:09 1995 Ian Lance Taylor <ian@cygnus.com>
13534
13535 * configure.in: Build the linker on AIX.
13536
13537 Mon Oct 30 12:27:16 1995 Per Bothner <bothner@kalessin.cygnus.com>
13538
13539 * Makefile.in (CC_FOR_TARGET, CXX_FOR_TARGET): Add $(TARGET_SUBDIR)
13540 where needed.
13541
13542 Mon Oct 30 12:45:25 1995 Doug Evans <dje@cygnus.com>
13543
13544 * Makefile.in (all-gcc): Fix typo.
13545
13546 Sat Oct 28 10:27:59 1995 Per Bothner <bothner@kalessin.cygnus.com>
13547
13548 * Makefile.in ($(CHECK_TARGET_MODULES)): Fix typo.
13549
13550 Fri Oct 27 23:14:12 1995 Per Bothner <bothner@kalessin.cygnus.com>
13551
13552 * configure.in: Rename libFOO to target-libFOO, and xiberty
13553 to target-xiberty, to provide more flexibility.
13554 (target_subdir): Define. Create if cross.
13555 Set TARGET_SUBDIR in Makefile to ${target_subdir}.
13556 * Makefile.in: Rename all-libFOO -> all-target-libFOO, all-xiberty
13557 -> all-target-libiberty, configure-libFOO -> configure-target-libFOO,
13558 check-libFOO -> check-target-libFOO, etc.
13559 ($(DO_X)): Iterate over TARGET_CONFIGDIRS after SUBDIRS.
13560 ($(CONFIGURE_TARGET_MODULES), $(CHECK_TARGET_MODULES),
13561 $(ALL_TARGET_MODULES), $(INSTALL_TARGET_MODULES)): Update accordingly.
13562 (configure-target-XXX): Depend on $(ALL_GCC), not all-gcc, to
13563 allow ALL_GCC="" to only configure.
13564 (DEVO_SUPPORT): Add cfg-ml-com.in and cfg-ml-pos.in.
13565 (ETC_SUPPORT, ETC_SUPPORT_PFX): Merge; update 'taz' accordingly.
13566 (LIBGXX_SUPPORT_DIRS): Remove xiberty.
13567
13568 Sat Oct 28 01:53:49 1995 Ken Raeburn <raeburn@cygnus.com>
13569
13570 * Makefile.in (taz): Build "info" in etc explicitly.
13571
13572 Fri Oct 27 09:32:30 1995 Stu Grossman (grossman@cygnus.com)
13573
13574 * configure.in: Make sure that CC is undefined (as opposed to
13575 null) if toplevel/config/mh-{host} doesn't define it. Fixes a
13576 problem with autoconf trying to configure on a host without GCC.
13577
13578 Thu Oct 26 22:35:01 1995 Stan Shebs <shebs@andros.cygnus.com>
13579
13580 * mpw-configure: Set host alias from choice of host compiler,
13581 only use generic MPW Makefile sed if present, edit a file
13582 named "hacked_Makefile.in" instead of "Makefile.in" if present.
13583 * mpw-README: Add problem notes about CW6 and CW7.
13584
13585 Thu Oct 26 05:45:10 1995 Ken Raeburn <raeburn@kr-pc.cygnus.com>
13586
13587 * Makefile.in (taz): Use ";" instead of ";;".
13588
13589 Wed Oct 25 15:18:24 1995 Per Bothner <bothner@kalessin.cygnus.com>
13590
13591 * Makefile.in (taz): Grep for '^diststuff:' or '^info:' in
13592 sub-directory Makefiles, instead of using DISTSTUFFDIRS and
13593 DISTDOCDIRS.
13594 (DISTSTUFFDIRS, DISTDOCDIRS): Removed - no longer used.
13595 (newlib.tar.gz): Don't pass DISTDOCDIRS to recursive make.
13596
13597 Wed Oct 25 14:43:55 1995 Per Bothner <bothner@kalessin.cygnus.com>
13598
13599 * Makefile.in (DISTDOCDIRS): Remove ld gprof bnutils gas libg++ gdb
13600 and gnats, because they are now subsumed by DISTSTUFFDIRS.
13601 Move bfd to DISTSTUFFDIRS.
13602
13603 Tue Oct 24 18:19:09 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13604
13605 * Makefile.in (X11_LIB): Removed.
13606 (X11_FLAGS_TO_PASS): pass only X11_EXTRA_CFLAGS and X11_EXTRA_LIBS.
13607
13608 * configure.in (host_makefile_frag): mh-aix & mh-sun removed.
13609
13610 Sun Oct 22 13:04:42 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13611
13612 * cfg-ml-com.in (powerpc*): Shorten some of the multilib directory
13613 names.
13614
13615 Fri Oct 20 18:02:10 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13616
13617 * cfg-ml-com.in (powerpc*-eabi*): Add mcall-aixdesc varients.
13618
13619 Thu Oct 19 10:40:57 1995 steve chamberlain <sac@slash.cygnus.com>
13620
13621 * configure.in (i[345]86-*-win32): Always build newlib.
13622 Don't configure cvs, autoconf or texinfo.
13623 * Makefile.in (LD_FOR_TARGET): New.
13624 (BASE_FLAGS_TO_PASS, EXTRA_TARGET_FLAGS, CONFIGURE_TARGET_MODULES):
13625 Pass down LD_FOR_TARGET.
13626
13627 Wed Oct 18 15:53:56 1995 steve chamberlain <sac@slash.cygnus.com>
13628
13629 * winsup: New directory.
13630 * Makefile.in: Build winsup.
13631 * configure.in: Winsup is configured when target is win32.
13632 Can only build win32 target GDB when native.
13633
13634 Mon Oct 16 09:42:31 1995 Jeffrey A Law (law@cygnus.com)
13635
13636 * config.guess: Recognize HP model 819 machines as having
13637 a PA 1.1 processor.
13638
13639 Mon Oct 16 10:49:43 1995 Ian Lance Taylor <ian@cygnus.com>
13640
13641 * configure: Fix sed loop which substitutes for CC and CXX to
13642 avoid bug found in various sed implementations.
13643
13644 Wed Oct 11 16:16:20 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13645
13646 * cfg-ml-com.in (powerpc-*-eabisim): Delete separate rule for
13647 simulator. Use standard powerpc-*-eabi*.
13648
13649 Mon Oct 9 17:21:56 1995 Ian Lance Taylor <ian@cygnus.com>
13650
13651 * configure.in: Stop putting gas and binutils in noconfigdirs for
13652 powerpc-*-aix* and rs6000-*-*.
13653
13654 Mon Oct 9 12:38:40 1995 Michael Meissner <meissner@cygnus.com>
13655
13656 * cfg-ml-com.in (powerpc*-*-eabisim*): Add support for building
13657 -mcall-aixdesc libraries.
13658
13659 Fri Oct 6 16:17:57 1995 Ken Raeburn <raeburn@cygnus.com>
13660
13661 Mon Sep 25 22:49:32 1995 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
13662
13663 * config.sub (arm | armel | armeb): Fix shell syntax.
13664
13665 Fri Oct 6 14:40:28 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13666
13667 * cfg-ml-com.in ({powerpc,rs6000}-ibm-aix*): Add multilibs for
13668 -msoft-float and -mcpu=common support.
13669 (powerpc*-*-eabisim*): Add support for building -mcall-aix
13670 libraries.
13671
13672 Thu Oct 5 13:26:37 1995 Brendan Kehoe <brendan@lisa.cygnus.com>
13673
13674 * configure.in: Allow configuration and build of emacs19 for the alpha.
13675
13676 Wed Oct 4 22:05:36 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13677
13678 * configure.in (CC): Get ^CC, not just any old CC, from
13679 ${host_makefile_frag}.
13680
13681 Wed Oct 4 21:55:00 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13682
13683 * configure.in (CC): Try to get CC from
13684 ${srcdir}/${host_makefile_frag}, not ${host_makefile_frag}.
13685
13686 Wed Oct 4 21:44:12 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13687
13688 * Makefile.in (TARGET_CONFIGDIRS): configure targetdirs
13689 only if it exists in $(srcdir).
13690
13691 Wed Oct 4 11:52:31 1995 Ian Lance Taylor <ian@cygnus.com>
13692
13693 * configure: If CC and CXX are not set in the environment, set
13694 them, based on either an existing Makefile or on searching for gcc
13695 in PATH. Substitute for CC and CXX in Makefile.
13696 * configure.in: Remove libm from target_libs. Separate
13697 target_configdirs from configdirs. If CC is not set in
13698 environment, try to get it from a host Makefile fragment. Rewrite
13699 changes of configdirs to use skipdirs instead. A few minor
13700 tweaks. Take directories out of target_configdirs as they are
13701 taken out of configdirs. Remove existing Makefile files from
13702 subdirectories. Substitute for TARGET_CONFIGDIRS and
13703 CONFIG_ARGUMENTS in Makefile.
13704 * Makefile.in (TARGET_CONFIGDIRS): New variable, automatically set
13705 by configure.in.
13706 (CONFIG_ARGUMENTS): Likewise.
13707 (CONFIGURE_TARGET_MODULES): New variable.
13708 ($(DO_X)): Loop over TARGET_CONFIGDIRS as well as SUBDIRS.
13709 ($(CONFIGURE_TARGET_MODULES)): New target.
13710 (configure-libg++, configure-libio): New targets.
13711 (all-libg++): Depend upon configure-libg++.
13712 (all-libio): Depend upon configure-libio.
13713 (configure-libgloss, all-libgloss): New targets.
13714 (configure-libstdc++): New target.
13715 (all-libstdc++): Depend upon configure-libstdc++.
13716 (configure-librx, all-librx): New targets.
13717 (configure-newlib): New target.
13718 (all-newlib): Depend upon configure-newlib
13719 (configure-xiberty): New target.
13720 (all-xiberty): Depend upon configure-xiberty.
13721
13722 Sat Sep 30 04:32:59 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13723
13724 * configure.in (host i[345]86-*-win32): Expand the
13725 noconfigdirs again.
13726
13727 Thu Sep 28 21:18:49 1995 Stan Shebs <shebs@andros.cygnus.com>
13728
13729 * mpw-configure: Fix sed command file name.
13730
13731 Thu Sep 28 17:39:56 1995 steve chamberlain <sac@slash.cygnus.com>
13732
13733 * configure.in (host i[345]86-*-win32): Reduce the
13734 noconfigdirs again.
13735
13736 Wed Sep 27 12:24:00 1995 Ian Lance Taylor <ian@cygnus.com>
13737
13738 * configure.in: Don't configure ld and gdb for powerpc*-*-winnt*
13739 or powerpc*-*-pe*, since they are not yet supported.
13740
13741 Tue Sep 26 14:30:01 1995 Stan Shebs <shebs@andros.cygnus.com>
13742
13743 Add PowerMac support and many other enhancements.
13744 * mpw-configure: New option --cc to select compiler to use,
13745 paste options set according to --cc into the generated
13746 Makefile, generate the Makefile by sed'ing the Unix Makefile.in
13747 if mpw-make.sed is present.
13748 * mpw-config.in: Don't test for gC1, test for mpw-touch,
13749 add forward includes for PowerPC include files.
13750 * mpw-build.in: Build using Makefile.PPC if present.
13751 (do-byacc, etc): Remove separate version resource builds.
13752 (do-gas): Build "stamps" before "all".
13753 (do-gcc): Build "stamps-h" and "stamps-c" before "all".
13754 * mpw-README: Update to reflect --cc option, PowerMac support,
13755 and recently-reported compatibility problems.
13756
13757 Fri Sep 22 12:15:42 1995 Doug Evans <dje@deneb.cygnus.com>
13758
13759 * cfg-ml-com.in (m68*-*-*): Only build multilibs for
13760 embedded m68k systems (-aout, -coff, -elf, -vxworks).
13761 (--with-multilib-top): Pass to recursive invocations.
13762
13763 Tue Sep 19 13:51:05 1995 J.T. Conklin <jtc@blues.cygnus.com>
13764
13765 * configure.in (noconfigdirs): Disable libg++ and libstdc++ on
13766 v810-*-*.
13767
13768 Mon Sep 18 23:08:26 1995 J.T. Conklin <jtc@rtl.cygnus.com>
13769
13770 * configure.in (noconfigdirs): Disable bfd, binutils, gas, gcc,
13771 gdb, ld and opcodes on v810-*-*.
13772
13773 Tue Sep 12 18:03:31 1995 Ian Lance Taylor <ian@cygnus.com>
13774
13775 * Makefile.in (DO_X): Change do-realclean to do-maintainer-clean.
13776 (local-maintainer-clean): New target.
13777 (maintainer-clean): New target.
13778 (realclean): Just depend upon maintainer-clean.
13779
13780 Fri Sep 8 17:11:14 1995 J.T. Conklin <jtc@rtl.cygnus.com>
13781
13782 * configure.in (noconfigdirs): Disable gdb on m68k-*-netbsd*.
13783
13784 Fri Sep 8 16:46:29 1995 Ian Lance Taylor <ian@cygnus.com>
13785
13786 * configure.in: Build ld in mips*-*-bsd* case.
13787
13788 Thu Sep 7 20:03:41 1995 Ken Raeburn <raeburn@cygnus.com>
13789
13790 * config.sub: Accept -lites* OS. From Ian Dall.
13791
13792 Fri Sep 1 08:06:58 1995 James G. Smith <jsmith@beauty.cygnus.com>
13793
13794 * config.sub: recognise mips64vr4300 and mips64vr4300el as valid
13795 targets.
13796
13797 Wed Aug 30 21:06:50 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13798
13799 * configure.in: treat i386-win32 canadian cross the same as
13800 i386-go32 canadian cross.
13801
13802 Thu Aug 24 14:53:20 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13803
13804 * cfg-ml-com.in (powerpc*-*-eabisim): Add support for PowerPC
13805 running under the simulator to build a reduced set of libraries.
13806 (powerpc-*-eabiaix): Add fine grained multilib support added to
13807 other powerpc targets yesterday.
13808
13809 Wed Aug 23 09:41:56 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13810
13811 * cfg-ml-com.in (powerpc*): Add support for -disable-biendian,
13812 -disable-softfloat, -disable-relocatable, -disable-aix, and
13813 -disable-sysv to control which multilib libraries get built.
13814
13815 Thu Aug 17 16:03:41 1995 Ken Raeburn <raeburn@kr-laptop.cygnus.com>
13816
13817 * configure: Add Makefile.tem to list of files to remove in trap
13818 handler.
13819
13820 Mon Aug 14 19:27:56 1995 Per Bothner <bothner@kalessin.cygnus.com>
13821
13822 * config.guess (*Linux*): Add missing "exit"s.
13823 Also, need specific check for alpha-unknown-linux (uses COFF).
13824
13825 Fri Aug 11 15:38:20 1995 Per Bothner <bothner@kalessin.cygnus.com>
13826
13827 * config.guess: Merge with FSF:
13828
13829 Wed Jun 28 17:57:27 1995 David Edelsohn <edelsohn@mhpcc.edu>
13830 * config.guess (AIX4): More robust release numbering discovery.
13831
13832 Thu Jun 22 19:01:24 1995 Kenneth Stailey (kstailey@eagle.dol-esa.gov)
13833 * config.guess (i386-sequent-ptx): Properly get version number.
13834
13835 Thu Jun 22 18:36:42 1995 Uwe Seimet (seimet@iris1.chemie.uni-kl.de)
13836 * config.guess (mips:*:4*:UMIPS): New case.
13837
13838 Mon Aug 7 09:21:35 1995 Doug Evans <dje@canuck.cygnus.com>
13839
13840 * configure.in (i386-go32 host): Fix typo (deja-gnu -> dejagnu).
13841 (i386-win32 host): Likewise. Don't build readline.
13842
13843 Sat Aug 5 09:51:49 1995 Fred Fish <fnf@rtl.cygnus.com>
13844
13845 * Makefile.in (GDBTK_SUPPORT_DIRS): Define and pass as part of
13846 SUPPORT_FILES to submakes.
13847
13848 Fri Aug 4 13:04:36 1995 Fred Fish <fnf@cygnus.com>
13849
13850 * Makefile.in (GDB_SUPPORT_DIRS): Add utils.
13851 (DEVO_SUPPORT): Add mpw-README, mpw-build.in, mpw-config.h and
13852 mpw-configure.
13853
13854 Wed Aug 2 16:32:40 1995 Ken Raeburn <raeburn@cygnus.com>
13855
13856 * configure.in (appdirs): Use =, not ==, in test expression when
13857 trying to build the text to print in the warning message for
13858 Solaris users.
13859
13860 Mon Jul 31 09:56:18 1995 steve chamberlain <sac@slash.cygnus.com>
13861
13862 * cfg-ml-com.in (z8k-*-coff): Add 'std' multilib build.
13863
13864 Fri Jul 28 00:16:31 1995 Jeffrey A. Law <law@rtl.cygnus.com>
13865
13866 * config.guess: Recognize lynx-2.3.
13867
13868 Thu Jul 27 15:47:59 1995 steve chamberlain <sac@slash.cygnus.com>
13869
13870 * config.sub (z8ksim): Deleted
13871 (z8k-*-coff): New, this is the one true name of the target.
13872
13873 Thu Jul 27 14:33:33 1995 Doug Evans <dje@canuck.cygnus.com>
13874
13875 * cfg-ml-pos.in (dotdot): Work around SunOS sed bug.
13876
13877 Thu Jul 27 13:31:05 1995 Fred Fish (fnf@cygnus.com)
13878
13879 * config.guess (*:Linux:*:*): First try asking the linker what the
13880 default object file format is (elf, aout, or coff). Then if this
13881 fails, try previous methods.
13882
13883 Thu Jul 27 11:28:17 1995 J.T. Conklin <jtc@rtl.cygnus.com>
13884
13885 * configure.in: Don't build newlib for *-*-vxworks5.1.
13886
13887 Thu Jul 27 11:18:47 1995 Brendan Kehoe <brendan@lisa.cygnus.com>
13888
13889 * configure.in: Don't build newlib for a29k-*-vxworks5.1.
13890 * test-build.mk: Add setting of --with-headers for a29k-vxworks5.1.
13891
13892 Tue Jul 25 21:25:39 1995 Doug Evans <dje@canuck.cygnus.com>
13893
13894 * cfg-ml-pos.in (MULTITOP): Trim excess trailing "/.".
13895
13896 Fri Jul 21 10:41:12 1995 Doug Evans <dje@canuck.cygnus.com>
13897
13898 * cfg-ml-com.in: New file.
13899 * cfg-ml-pos.in: New file.
13900
13901 Wed Jul 19 00:37:27 1995 Jeffrey A. Law <law@rtl.cygnus.com>
13902
13903 * COPYING.NEWLIB: Add HP free copyright to list.
13904
13905 Tue Jul 18 10:58:51 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13906
13907 * config.sub: Recognize -eabi* for the system, not just -eabi.
13908
13909 Mon Jul 3 13:44:51 1995 Steve Chamberlain <sac@slash.cygnus.com>
13910
13911 * Makfile.in (DLLTOOL_FOR_TARGET): New name, pass it down.
13912 * config.sub, configure.in (win32): New target and host.
13913
13914 Wed Jun 28 23:57:08 1995 Steve Chamberlain <sac@slash.cygnus.com>
13915
13916 * configure.in: Add i386-pe configuration.
13917
13918 Fri Jun 23 14:28:44 1995 Stan Shebs <shebs@andros.cygnus.com>
13919
13920 * mpw-build.in (install): Install GDB after LD.
13921
13922 Thu Jun 22 17:10:53 1995 Stan Shebs <shebs@andros.cygnus.com>
13923
13924 * mpw-config.in (elf/mips.h): Always forward-include, needed
13925 for GDB to build.
13926
13927 Wed Jun 21 15:17:30 1995 Rob Savoye <rob@darkstar.cygnus.com>
13928
13929 * testsuite: New directory for customer acceptance and whole tool
13930 chain tests.
13931
13932 Wed Jun 21 16:50:29 1995 Ken Raeburn <raeburn@cujo.cygnus.com>
13933
13934 * configure: If per-host line isn't found, but AC_OUTPUT is found
13935 and a configure script exists, run it instead.
13936
13937 Thu Jun 15 21:09:24 1995 Per Bothner <bothner@kalessin.cygnus.com>
13938
13939 * config.guess: Update from FSF, for alpha-dec-winnt3.5 and Crays.
13940
13941 Tue Jun 13 21:43:27 1995 Rob Savoye <rob@darkstar.cygnus.com>
13942
13943 * configure: Set build_{cpu,vendor,os,alias} to host values when
13944 --build isn't specified.
13945
13946 Mon Jun 5 18:26:36 1995 Jason Merrill <jason@phydeaux.cygnus.com>
13947
13948 * Makefile.in (PICFLAG, PICFLAG_FOR_TARGET): New macros.
13949 (FLAGS_TO_PASS): Pass them.
13950 (EXTRA_TARGET_FLAGS): Ditto.
13951
13952 Wed May 31 22:27:42 1995 Jim Wilson <wilson@chestnut.cygnus.com>
13953
13954 * Makefile.in (all-libg++): Depend on all-libstdc++.
13955
13956 Thu May 25 22:40:59 1995 J.T. Conklin <jtc@rtl.cygnus.com>
13957
13958 * configure.in (noconfigdirs): Enable all packages for
13959 i386-unknown-netbsd.
13960
13961 Sat May 20 13:22:31 1995 Angela Marie Thomas <angela@cirdan.cygnus.com>
13962
13963 * configure.in (noconfigdirs): Don't configure tk for i386-go32
13964 hosted builds (DOS builds)
13965
13966 Thu May 18 18:08:49 1995 Ken Raeburn <raeburn@kr-laptop.cygnus.com>
13967
13968 Changes for ARM based on patches from Richard Earnshaw:
13969 * config.sub: Handle armeb and armel.
13970 * configure.in: Omit arm linker only for riscix.
13971
13972 Thu May 11 17:23:26 1995 Per Bothner <bothner@kalessin.cygnus.com>
13973
13974 * config.guess: Update from FSF.
13975
13976 Tue May 9 15:52:05 1995 Michael Meissner <meissner@cygnus.com>
13977
13978 * config.sub: Recognize powerpcle as the little endian varient of
13979 the PowerPC. Recgonize ppc as a PowerPC variant, and ppcle as a
13980 powerpcle variant. Convert pentium into i586, not i486. Add p5
13981 alias for i586. Map new x86 variants p6, k5, nexgen into i586
13982 temporarily.
13983
13984 Tue May 2 16:29:41 1995 Jeff Law (law@snake.cs.utah.edu)
13985
13986 * configure.in (hppa*-*-lites*): Treat like hppa*-*-*elf*.
13987
13988 Sun Apr 30 21:38:09 1995 Jeff Law (law@snake.cs.utah.edu)
13989
13990 * config.sub: Accept -lites* as a basic system type.
13991
13992 Thu Apr 27 11:33:29 1995 Michael Meissner (meissner@cygnus.com)
13993
13994 * config.guess (*:Linux:*:*): Check for whether the pre-BFD linker is
13995 installed, and if so return linuxoldld as the system name.
13996
13997 Wed Apr 26 10:59:02 1995 Jeff Law (law@snake.cs.utah.edu)
13998
13999 * config.guess: Add hppa1.1-hp-lites support.
14000
14001 Tue Apr 25 11:08:11 1995 Rob Savoye <rob@darkstar.cygnus.com>
14002
14003 * configure.in: Don't build newlib for m68k-vxworks5.1.
14004
14005 Wed Apr 19 17:02:43 1995 Jim Wilson <wilson@chestnut.cygnus.com>
14006
14007 * configure.in (mips-sgi-irix6): Use mh-irix5.
14008
14009 Fri Apr 14 15:21:17 1995 Doug Evans <dje@chestnut.cygnus.com>
14010
14011 * Makefile.in (all-gcc): Depend on all-ld (for libgcc1-test).
14012
14013 Wed Apr 12 16:06:01 1995 Jason Merrill <jason@phydeaux.cygnus.com>
14014
14015 * test-build.mk: Enable building of shared libraries on IRIX 5 and
14016 OSF/1. Fix compiler flags.
14017 * build-all.mk: Support Linux and OSF/1 3.0. Fix compiler flags.
14018
14019 Tue Apr 11 18:55:40 1995 Doug Evans <dje@canuck.cygnus.com>
14020
14021 * configure.in: Recognize --with-newlib.
14022 (sparc-*-sunos4*): Build sim, dejagnu, expect, tcl if cross target.
14023
14024 Mon Apr 10 14:38:20 1995 Jason Molenda (crash@phydeaux.cygnus.com)
14025
14026 * Makefile.in: move {all,check,install}-gdb from *_MODULES
14027 to *_X11_MODULES due to gdbtk needing X include files et al.
14028
14029 Mon Apr 10 11:42:22 1995 Stan Shebs <shebs@andros.cygnus.com>
14030
14031 Merge in support for Mac MPW as a host.
14032 (Old change descriptions retained for informational value.)
14033
14034 * mpw-config.in: Add generic include forwards for cpu-specific
14035 include files in aout and elf directories.
14036
14037 * mpw-configure: Added copyright.
14038 * mpw-config.in: Check for presence of required build tools.
14039 (target_libs): Add newlib.
14040 (target_tools): Add examples.
14041 (Read Me): Generate as "Read Me for MPW" instead.
14042 * mpw-build.in: Base sub-builds on all-foo instead of do-foo.
14043 (all-byacc, do-byacc, all-flex, do-flex, do-newlib): New actions.
14044 (do-gas, do-gcc, do-gdb, do-ld): Build Version.r first.
14045
14046 * mpw-configure: Remove subdir-specific makefile hackery,
14047 delete mk.tmp after using it.
14048
14049 * mpw-build.in (all): Display start and end times.
14050
14051 * mpw-configure (host_canonical): Set.
14052 (target_cpu): Always add to makefiles.
14053 (ARCHDEFS, EMUL): Add to makefile only if nonempty.
14054 (TM_FILE, XM_FILE, NM_FILE): No longer add to makefile.
14055 (mpw-mh-mpw): Look for in srcdir and srcroot.
14056 Use sed instead of mpw-edit-prefix to edit prefix definitions.
14057
14058 * mpw-build.in: (install-only): New target.
14059
14060 * mpw-configure (host_alias, target_alias): Rename from hostalias
14061 and targetalias, add into generated Makefile.
14062 (mk.tmp): If present, add into generated Makefile.
14063 * mpw-build.in (all-gas): Build config.h first before gas proper.
14064
14065 * mpw-configure (config.status): Write only if changed.
14066 * mpw-config.in (readline): Configure it (not built, just used for
14067 definitions).
14068
14069 * mpw-config.in (elf/mips.h): Add a forward include.
14070
14071 * mpw-config.in: Forward-include most .h files in include into
14072 extra-include.
14073 (readline): Don't build.
14074 mpw-build.in (install): Install GDB.
14075
14076 * mpw-configure (prefix, mpw_prefix): Handle it.
14077 * mpw-config.in (mmalloc, readline): Don't configure.
14078 * mpw-build.in (thisscript): Rename to ThisScript.
14079 Use mpw-build instead of BuildProgram everywhere.
14080 (mmalloc, readline): Don't build.
14081 * mpw-README: New file, basic documentation about the MPW port.
14082
14083 * mpw-config.in: Use forward-include to create include files.
14084
14085 * mpw-configure: Add more things to the top of each configured
14086 Makefile, including contents of config/mpw-mh-mpw.
14087 * mpw-config.in (extra-include): Create this directory and fill it
14088 with Posix-like include files when configuring.
14089
14090 * config.sub (apple, mac, mpw): Add various aliases.
14091
14092 * mpw-build.in: New file, top-level build script fragment for MPW.
14093 * mpw-configure: New file, configure script for MPW.
14094 * mpw-config.in: New file, config fragment for MPW.
14095
14096 Fri Apr 7 19:33:16 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
14097
14098 * configure.in (host_libs): Remove glob, since it is gone from the
14099 sources.
14100
14101 Fri Mar 31 11:36:17 1995 Jason Molenda (crash@phydeaux.cygnus.com)
14102
14103 * Makefile.in: define empty GDB_NLM_DEPS var.
14104
14105 * configure.in(target_makefile_frag): use config/mt-netware
14106 for netware targets.
14107
14108 Thu Mar 30 13:51:43 1995 Ian Lance Taylor <ian@cygnus.com>
14109
14110 * config.sub: Merge in recent FSF changes. Remove linux special
14111 cases.
14112
14113 Tue Mar 28 14:47:34 1995 Jason Molenda (crash@phydeaux.cygnus.com)
14114
14115 Revert this change:
14116
14117 Tue Mar 30 10:03:09 1993 Ian Lance Taylor (ian@cygnus.com)
14118
14119 * build-all.mk: Use CC=cc -Xs on Solaris.
14120
14121 Tue Mar 21 10:43:32 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
14122
14123 * glob/*: Removed. Schauer's 24 Feb 1994 readline change made us
14124 stop using it.
14125 * Makefile.in: Nuke all references to glob subdirectory.
14126
14127 Thu Mar 16 13:35:30 1995 Jason Merrill <jason@phydeaux.cygnus.com>
14128
14129 * configure.in: Fix --enable-shared logic in per-host.
14130
14131 Mon Mar 13 12:33:15 1995 Ian Lance Taylor <ian@cygnus.com>
14132
14133 * configure.in (*-hp-hpux[78]*): Use mh-hpux8.
14134
14135 Mon Mar 6 10:21:58 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
14136
14137 * configure.in (noconfigdirs): Don't build gas on AIX, for
14138 powerpc*-*-aix* as well as for rs6000*-*-aix*.
14139
14140 Wed Mar 1 12:51:53 1995 Ian Lance Taylor <ian@cygnus.com>
14141
14142 * configure: Fix --cache-file to work if the file argument is a
14143 relative path.
14144
14145 Tue Feb 28 17:36:07 1995 Ian Lance Taylor <ian@cygnus.com>
14146
14147 * configure: If the --cache-file is used, pass it down to
14148 configure in subdirectories.
14149
14150 Mon Feb 27 12:52:46 1995 Kung Hsu <kung@mexican.cygnus.com>
14151
14152 * config.sub: add vxworks29k configuration.
14153
14154 Fri Feb 10 16:12:26 1995 Ken Raeburn <raeburn@cujo.cygnus.com>
14155
14156 * Makefile.in (taz): Do "diststuff" part quietly.
14157
14158 Sun Feb 5 14:16:35 1995 Doug Evans <dje@canuck.cygnus.com>
14159
14160 * config.sub: Mini-merge with gcc/config.sub.
14161
14162 Sat Feb 4 12:11:35 1995 Jim Wilson <wilson@chestnut.cygnus.com>
14163
14164 * config.guess (IRIX): Sed - to _.
14165
14166 Fri Feb 3 11:54:42 1995 J.T. Conklin <jtc@rtl.cygnus.com>
14167
14168 * Makefile.in (source-vault, binary-vault): New targets.
14169
14170 Thu Jan 26 13:00:11 1995 Michael Meissner <meissner@cygnus.com>
14171
14172 * config.sub: Recognize -eabi as a basic system type.
14173
14174 Thu Jan 12 13:13:23 1995 Jason Merrill <jason@phydeaux.cygnus.com>
14175
14176 * configure.in (enable_shared stuff): Fix typo.
14177
14178 Thu Jan 12 01:36:51 1995 deanm@medulla.LABS.TEK.COM (Dean Messing)
14179
14180 * Makefile.in (BASE_FLAGS_TO_PASS): Fix typo in passing LIBCXXFLAGS*.
14181
14182 Wed Jan 11 16:29:53 1995 Jason Merrill <jason@phydeaux.cygnus.com>
14183
14184 * Makefile.in (LIBCXXFLAGS_FOR_TARGET): Add -fno-implicit-templates.
14185
14186 Mon Jan 9 12:48:01 1995 Jim Kingdon <kingdon@lioth.cygnus.com>
14187
14188 * configure.in (rs6000-*-*): Don't build gas.
14189
14190 Wed Jan 4 23:53:49 1995 Ian Lance Taylor <ian@tweedledumb.cygnus.com>
14191
14192 * Makefile.in: Use /x/x/ instead of /brokensed/brokensed/, to
14193 reduce command line length.
14194 (AS_FOR_TARGET): Check for as.new, not Makefile.
14195 (NM_FOR_TARGET): Check for nm.new, not Makefile.
14196
14197 Wed Jan 4 13:02:39 1995 Per Bothner <bothner@kalessin.cygnus.com>
14198
14199 * config.guess: Merge from FSF.
14200
14201 Thu Dec 15 17:11:37 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
14202
14203 * configure: Don't use $ when handling program_suffix.
14204
14205 Mon Dec 12 12:09:37 1994 Stu Grossman (grossman@cygnus.com)
14206
14207 * configure.in: Configure tk for hppa/hpux.
14208
14209 Fri Dec 2 15:55:38 1994 Per Bothner <bothner@kalessin.cygnus.com>
14210
14211 * Makefile.in (LIBGXX_SUPPORT_DIRS): Add libstdc++.
14212
14213 Tue Nov 29 19:37:56 1994 Per Bothner <bothner@kalessin.cygnus.com>
14214
14215 * Makefile.in: Move -fno-implicit-template from CXXFLAGS
14216 to LIBCXXFLAGS. Tests are better run without it.
14217
14218 Wed Nov 23 10:29:25 1994 Brendan Kehoe (brendan@lisa.cygnus.com)
14219
14220 * Makefile.in (all-ispell): Depend on all-emacs19 instead of all-emacs.
14221
14222 Mon Nov 21 11:14:01 1994 J.T. Conklin <jtc@rtl.cygnus.com>
14223
14224 * configure.in (*-*-netware*): Don't configure xiberty.
14225
14226 Mon Nov 14 08:49:15 1994 Stu Grossman (grossman@cygnus.com)
14227
14228 * configure.in: Remove tk from native_only list.
14229
14230 Fri Nov 11 15:31:26 1994 Bill Cox (bill@rtl.cygnus.com)
14231
14232 * build-all.mk: Add mips-ncd-elf target to sun4 targets
14233 for special NCD build.
14234
14235 Mon Nov 7 20:58:17 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
14236
14237 * Makefile.in (DEVO_SUPPORT): Remove configure.bat and
14238 makeall.bat, they're only useful for binutils snapshots.
14239 (binutils.tar.gz, gas+binutils.tar.gz): Add configure.bat and
14240 makeall.bat to specified SUPPORT_FILES.
14241
14242 Mon Nov 7 17:25:18 1994 Bill Cox (bill@cirdan.cygnus.com)
14243
14244 * build-all.mk: Add Ericsson targets to sun4 and solaris
14245 hosts. Add BNR's sun4 target to solaris host, so their
14246 build-from-source will be tested in-house first.
14247
14248 Sat Nov 5 18:43:30 1994 Jason Merrill (jason@phydeaux.cygnus.com)
14249
14250 * Makefile.in (LIBCFLAGS): New variable.
14251 (CFLAGS_FOR_TARGET): Ditto.
14252 (LIBCFLAGS_FOR_TARGET): Ditto.
14253 (LIBCXXFLAGS): Ditto.
14254 (CXXFLAGS_FOR_TARGET): Ditto.
14255 (LIBCXXFLAGS_FOR_TARGET): Ditto.
14256 (BASE_FLAGS_TO_PASS): Pass them.
14257 (EXTRA_TARGET_FLAGS): Ditto.
14258
14259 * configure.in: Support --enable-shared.
14260
14261 Sat Nov 5 15:44:00 1994 Per Bothner <bothner@kalessin.cygnus.com>
14262
14263 * configure.in (target_libs): Include libstdc++ again.
14264 * config.guess: Update from FSF (for FreeBSD).
14265
14266 Thu Nov 3 16:32:30 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
14267
14268 * Makefile.in (DEVO_SUPPORT): Include configure.bat and
14269 makeall.bat.
14270 (DISTDOCDIRS): Add `etc'.
14271 (ETC_SUPPORT_PFX): New variable.
14272 (taz): Include anything from etc starting with a word in
14273 ETC_SUPPORT_PFX.
14274
14275 Wed Oct 26 16:19:35 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
14276
14277 * config.sub: Update for recent FSF changes. Remove obsolete
14278 h8300hds entry. Add -windows* and -osx as basic os. Minor
14279 spacing changes.
14280
14281 Thu Oct 20 18:41:56 1994 Per Bothner <bothner@kalessin.cygnus.com>
14282
14283 * configure.in (target_libs): Remove libstdc++ for libg++-2.6.1.
14284
14285 * config.guess: Merge with FSF.
14286 * configure.in: Match on i?86-ncr-sysv4.3, not i?86-ncr-sysv43.
14287
14288 Thu Oct 20 19:26:56 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
14289
14290 * configure: Since the "trap 0" handler will override the exit
14291 status on many systems, only use it for "exit 1", and make it set
14292 a non-zero exit status; reset it before "exit 0". Also, check
14293 exit status of config.sub, and error out if it failed.
14294
14295 Wed Oct 19 18:49:55 1994 Rob Savoye (rob@cygnus.com)
14296
14297 * Makefile.in: (ALL_TARGET_MODULES,INSTALL_TARGET_MODULES) Build
14298 and install libgloss.
14299
14300 Tue Oct 18 15:25:24 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
14301
14302 * Makefile.in (all-binutils): Depend upon all-byacc.
14303
14304 * configure.in: Don't build emacs on Irix 5.
14305
14306 Mon Oct 17 16:22:12 1994 J.T. Conklin (jtc@phishhead.cygnus.com)
14307
14308 * configure.in (*-*-netware*): Add libio.
14309
14310 Thu Oct 13 15:51:20 1994 Jason Merrill (jason@phydeaux.cygnus.com)
14311
14312 * Makefile.in (ALL_TARGET_MODULES): Add libstdc++.
14313 (CHECK_TARGET_MODULES): Ditto.
14314 (INSTALL_TARGET_MODULES): Ditto.
14315 (TARGET_LIBS): Ditto.
14316 (all-libstdc++): Note dependencies.
14317
14318 Thu Oct 13 01:43:08 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
14319
14320 * Makefile.in (BINUTILS_SUPPORT_DIRS): Add gas.
14321
14322 Tue Oct 11 12:12:29 1994 Jason Merrill (jason@phydeaux.cygnus.com)
14323
14324 * Makefile.in (CXXFLAGS): Use -fno-implicit-templates instead of
14325 -fexternal-templates.
14326
14327 * configure.in (target_libs): Add libstdc++.
14328 (noconfigdirs): Add libstdc++ as appropriate.
14329
14330 Thu Oct 6 18:00:54 1994 Per Bothner (bothner@kalessin.cygnus.com)
14331
14332 * config.guess: Update from FSF.
14333
14334 Tue Oct 4 12:05:42 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
14335
14336 * configure: Use ${config_shell} when running ${configsub}.
14337
14338 Mon Oct 3 14:28:34 1994 Doug Evans <dje@canuck.cygnus.com>
14339
14340 * config.sub: No longer recognize h8300h.
14341
14342 Mon Oct 3 12:40:54 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
14343
14344 * config.sub: Remove extraneous differences between config.sub and
14345 gcc/config.sub.
14346
14347 Sat Oct 1 00:23:12 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
14348
14349 * Makefile.in (DISTSTUFFDIRS): Add gas.
14350
14351 Thu Sep 22 19:04:55 1994 Doug Evans (dje@canuck.cygnus.com)
14352
14353 * COPYING.NEWLIB: New file.
14354
14355 Mon Sep 19 18:25:40 1994 Per Bothner (bothner@kalessin.cygnus.com)
14356
14357 * config.guess (HP-UX): Patch from Harlan Stenn
14358 <harlan@landmark.com> to also emit release level.
14359
14360 Wed Sep 7 13:15:25 1994 Jim Wilson (wilson@sphagnum.cygnus.com)
14361
14362 * config.guess (sun4*:SunOS:*:*): Change '-JL' to '_JL'.
14363
14364 Tue Sep 6 23:23:18 1994 Per Bothner (bothner@kalessin.cygnus.com)
14365
14366 * config.sub: Merge nextstep cleanup from FSF.
14367
14368 Mon Sep 5 05:01:30 1994 Ken Raeburn (raeburn@kr-pc.cygnus.com)
14369
14370 * configure.in (arm-*-*): Don't configure ld for this target.
14371
14372 Thu Sep 1 09:35:00 1994 J.T. Conklin (jtc@phishhead.cygnus.com)
14373
14374 * configure.in (*-*-netware): don't configure libg++, libio,
14375 librx, or newlib.
14376
14377 Wed Aug 31 13:52:08 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14378
14379 * configure.in (alpha-dec-osf*): Use osf*, not osf1*. Don't
14380 configure ld--it works, but it doesn't support shared libraries.
14381
14382 Sun Aug 28 18:13:45 1994 Per Bothner (bothner@kalessin.cygnus.com)
14383
14384 * config.guess (*-unknown-freebsd*): Get rid of possible
14385 trailing "(Release)" in version string.
14386 Patch from Paul Richards <paul@isl.cf.ac.uk>.
14387
14388 Sat Aug 27 15:00:49 1994 Per Bothner (bothner@kalessin.cygnus.com)
14389
14390 * config.guess: Fix i486-ncr-sysv43 -> i486-ncr-sysv4.3.
14391 Fix type: *-next-neststep -> *-next-nextstep.
14392
14393 * config.guess: Merge from FSF:
14394
14395 Fri Aug 26 18:45:25 1994 Philippe De Muyter (phdm@info.ucl.ac.be)
14396
14397 * config.guess: Recognize powerpc-ibm-aix3.2.5.
14398
14399 Wed Apr 20 06:36:32 1994 Philippe De Muyter (phdm@info.ucl.ac.be)
14400
14401 * config.guess: Recognize UnixWare 1.1 (UNAME_SYSTEM is SYSTEM_V
14402 instead of UNIX_SV for UnixWare 1.0).
14403
14404 Sat Aug 27 01:56:30 1994 Stu Grossman (grossman@cygnus.com)
14405
14406 * Makefile.in (all-gdb): Add dependencies on all-gcc and all-ld
14407 to make gdb/nlm/* build after the compiler and linker.
14408
14409 Fri Aug 26 14:30:05 1994 Per Bothner (bothner@kalessin.cygnus.com)
14410
14411 * config.guess (netbsd, freebsd, linux): Accept any machine,
14412 not just i[34]86.
14413 (m68k-atari-sysv4): Relocate to match FSF version.
14414
14415 * config.guess: More merges from the FSF:
14416
14417 Add a space before function call or macro invocation.
14418
14419 Tue May 10 16:53:55 1994 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
14420
14421 * config.guess: Add trap cmd to remove dummy.c and dummy when
14422 interrupted.
14423
14424 Wed Apr 20 18:07:13 1994 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
14425
14426 * config.guess (dummy.c): Redirect stderr for `hostinfo' command.
14427 (dummy): Redirect stderr from compilation of dummy.c.
14428
14429 Sat Apr 9 14:59:28 1994 Christian Kranz (kranz@sent5.uni-duisburg.de)
14430
14431 * config.guess: Distinguish between NeXTStep 2.1 and 3.x.
14432
14433 Fri Aug 26 13:42:20 1994 Ken Raeburn (raeburn@kr-laptop.cygnus.com)
14434
14435 * configure: Accept and ignore --cache*, for compatibility with
14436 new autoconf.
14437
14438 Fri Aug 26 13:05:27 1994 Per Bothner (bothner@kalessin.cygnus.com)
14439
14440 * config.guess: Merge from FSF:
14441
14442 Thu Aug 25 20:28:51 1994 Richard Stallman <rms@mole.gnu.ai.mit.edu>
14443
14444 * config.guess (Pyramid*:OSx*:*:*): New case.
14445 (PATH): Add /.attbin at end for finding uname.
14446 (dummy.c): Handle i860-alliant-bsd. Follow whitespace conventions.
14447
14448 Wed Aug 17 18:21:02 1994 Tor Egge (tegge@pvv.unit.no)
14449
14450 * config.guess (M88*:DolphinOS:*:*): New case.
14451
14452 Thu Aug 11 17:00:13 1994 Stan Cox (coxs@dg-rtp.dg.com)
14453
14454 * config.guess (AViiON:dgux:*:*): Use TARGET_BINARY_INTERFACE
14455 to select whether to use ELF or COFF.
14456
14457 Sun Jul 24 16:20:53 1994 Richard Stallman <rms@mole.gnu.ai.mit.edu>
14458
14459 * config.guess: Recognize i860-stardent-sysv and i860-unknown-sysv.
14460
14461 Sun May 1 10:23:10 1994 Richard Stallman (rms@mole.gnu.ai.mit.edu)
14462
14463 * config.guess: Guess the OS version for HPUX.
14464
14465 Tue Mar 1 21:53:03 1994 Karl Heuer (kwzh@hal.gnu.ai.mit.edu)
14466
14467 * config.guess (UNAME_VERSION): Recognize aix3.2.4 and aix3.2.5.
14468
14469 Fri Aug 26 11:19:08 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14470
14471 * configure.in: Recognize --with-headers, --with-libs, and
14472 --without-newlib.
14473 * Makefile.in (all-xiberty): Depend upon all-ld.
14474
14475 Wed Aug 24 12:36:50 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14476
14477 * configure.in: Change i[34]86 to i[345]86.
14478
14479 Mon Aug 22 10:58:33 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14480
14481 * configure (version): A few more tweaks to help message.
14482
14483 Fri Aug 19 12:40:25 1994 Per Bothner (bothner@kalessin.cygnus.com)
14484
14485 * Makefile.in: Remove (for now) librx as a host library,
14486 now that we're building it for target.
14487
14488 Fri Aug 19 10:49:17 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14489
14490 * configure: Fix up help message; from karl@owl.hq.ileaf.com
14491 (Karl Berry).
14492
14493 Tue Aug 16 16:11:08 1994 Per Bothner (bothner@kalessin.cygnus.com)
14494
14495 * configure.in: Also configure librx.
14496
14497 Mon Aug 15 16:51:45 1994 Per Bothner (bothner@kalessin.cygnus.com)
14498
14499 * Makefile.in: Update various rules to reflect that librx
14500 is now needed for libg++.
14501
14502 Fri Aug 12 18:07:21 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14503
14504 * config.sub: Accept mips64orion and mips64orionel as a CPU name.
14505
14506 Mon Aug 8 11:36:17 1994 Stan Shebs (shebs@andros.cygnus.com)
14507
14508 * configure.in: Configure the examples directory.
14509
14510 Thu Aug 4 16:12:36 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14511
14512 * configure: Simplify Jun 2 1994 change.
14513
14514 Wed Aug 3 04:58:16 1994 D. V. Henkel-Wallace (gumby@cygnus.com)
14515
14516 * change CC to /usr/latest/bin/gcc for lynx host builds, since
14517 /bin/gcc isn't good enough to build gcc.
14518
14519 Wed Jul 27 09:07:14 1994 Fred Fish (fnf@cygnus.com)
14520
14521 * Makefile.in (GDB_SUPPORT_FILES): Remove
14522 (setup-dirs-gdb, gdb.tar.gz, make-gdb.tar.gz): Remove old rules.
14523 (gdb.tar.gz): Add new rule to use standard distribution building
14524 mechanism.
14525
14526 Mon Jul 25 11:10:06 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14527
14528 * configure.in: Warn about use of /usr/ucb/cc on Solaris. From
14529 Bill Cox <bill@cygnus.com>.
14530
14531 Sat Jul 23 12:19:46 1994 Per Bothner (bothner@kalessin.cygnus.com)
14532
14533 * config.guess: Recognize ISC. Patch from kwzh@gnu.ai.mit.edu.
14534
14535 Fri Jul 22 17:53:59 1994 Stu Grossman (grossman@cygnus.com)
14536
14537 * configure: Search current dir first in .gdbinit.
14538
14539 Fri Jul 22 11:28:30 1994 Per Bothner (bothner@kalessin.cygnus.com)
14540
14541 * config.sub: Recognize freebsd (merged from gcc config.sub).
14542
14543 Thu Jul 21 14:10:52 1994 Per Bothner (bothner@kalessin.cygnus.com)
14544
14545 * config.sub: Refer to NeXT's operating system as nextstep.
14546
14547 * config.sub (case $basic_machine): Re-order the cases, to match
14548 the order in the FSF version (which is mostly alphabethical).
14549 Merge in some additions and changes from the FSF.
14550
14551 Sat Jul 16 12:03:08 1994 Stan Shebs (shebs@andros.cygnus.com)
14552
14553 * config.guess: Recognize m68k-atari-sysv4 and m88k-harris-csux7.
14554 * config.sub: Recognize cxux7.
14555 * configure.in: Use mh-cxux for m88k-harris-cxux*.
14556
14557 Mon Jul 11 14:37:39 1994 Per Bothner (bothner@kalessin.cygnus.com)
14558
14559 * config.sub: Fix typo powerpc -> powerpc-*.
14560
14561 Sat Jul 9 13:03:43 1994 Michael Tiemann (tiemann@blues.cygnus.com)
14562
14563 * Makefile.in: `all-emacs19' depends on `all-byacc'.
14564
14565 * Makefile.in: Add all-emacs19 and install-emacs19 rules (in
14566 parallel with all-emacs and install-emacs). Top-level command
14567 `make all-emacs19 CC=gcc' now behaves as `make all-emacs CC=gcc'.
14568
14569 Thu Jun 30 16:53:42 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14570
14571 * test-build.mk ($(host)-stamp-stage2-installed): Remove
14572 $(relbindir)/make before doing ``make install'', and use
14573 $(GNU_MAKE) while doing it. Avoids problem on SunOS with
14574 installing over running make binary.
14575 ($(host)-stamp-stage3-installed): Likewise.
14576
14577 Tue Jun 28 13:43:25 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14578
14579 * config.guess: Recognize Mach.
14580
14581 Mon Jun 27 16:41:14 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14582
14583 * configure: Check ${exec_prefixoption}, not ${exec_prefix}, to
14584 see whether --exec-prefix was used.
14585
14586 Sun Jun 26 21:15:54 1994 Per Bothner (bothner@kalessin.cygnus.com)
14587
14588 * README: Explicitly mention libg++/README. (Zoo's idea.)
14589
14590 Tue Jun 21 12:45:55 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14591
14592 * Makefile.in: Add all-librx target similar to all-libproc.
14593
14594 Wed Jun 8 23:11:55 1994 Stu Grossman (grossman@cygnus.com)
14595
14596 * config.guess: Rearrange tests for Alpha-OSF1 to properly deal
14597 with post 1.2 uname bogosity.
14598
14599 Thu Jun 9 00:27:59 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14600
14601 * configure: Remove temporary files on receipt of a signal.
14602
14603 Tue Jun 7 12:06:24 1994 Ian Lance Taylor (ian@cygnus.com)
14604
14605 * configure: If there is a package_makefile_frag, remove
14606 ${subdir}/Makefile.tem after copying it in.
14607
14608 Mon Jun 6 21:35:02 1994 D. V. Henkel-Wallace (gumby@cygnus.com)
14609
14610 * build_all.mk: support rs6000 lynx identifies itself as
14611 rs6000-lynx-lynxos2.2.2. Also, use /usr/cygnus/progressive/bin/gcc
14612 since /bin/gcc is too feeble to compile a modern gcc.
14613
14614 Mon Jun 6 16:06:34 1994 Karen Christiansen (karen@cirdan.cygnus.com)
14615
14616 * brought devo/test-build.mk update-to-date with progressive/
14617 test-build.mk. Add lynx targets and hppa flag info.
14618
14619 Sat Jun 4 17:23:54 1994 Per Bothner (bothner@kalessin.cygnus.com)
14620
14621 * configure.in: Use mh-ncrsvr43. Patch from
14622 Tom McConnell <tmcconne@sedona.intel.com>.
14623
14624 Fri Jun 3 17:47:24 1994 Per Bothner (bothner@kalessin.cygnus.com)
14625
14626 * config.guess (i386-unknown-bsdi): No longer need to
14627 check #if defined(__bsdi__) && defined(__i386__).
14628
14629 Thu Jun 2 18:56:46 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14630
14631 * configure: Set program_transform_nameoption correctly.
14632
14633 Thu Jun 2 10:57:06 1994 Karen Christiansen (karen@cirdan.cygnus.com)
14634
14635 * brought build-all.mk update-to-date with progressive build-all.mk,
14636 added new targets and hppa info.
14637
14638 Thu Jun 2 00:12:44 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14639
14640 * configure: If config.guess result is a prefix of the user
14641 specified target, assume a native build and use the user specified
14642 target as the host alias. Remove SunOS patch suffix removal hack.
14643 * configure.in: Remove SunOS patch suffix removal hack.
14644
14645 * Makefile.in (CROSS_CHECK_MODULES): Remove check-flex, since it's
14646 in NATIVE_CHECK_MODULES.
14647
14648 Wed Jun 1 10:49:41 1994 Bill Cox (bill@rtl.cygnus.com)
14649
14650 * Makefile.in: Rename HOST_ONLY to NATIVE.
14651 * configure: Delete SunOs patch suffix from host_canonical
14652 and build_canonical variables that are prepended to Makefiles.
14653 * configure.in: Add comments for easier maintenance.
14654
14655 Tue May 31 19:39:47 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14656
14657 * Makefile.in: Add all-libproc target similar to all-gui.
14658
14659 Tue May 31 17:16:33 1994 Tom Lord (lord@cygnus.com)
14660
14661 * Makefile.in (CHECK_MODULES): split into
14662 HOST_ONLY_CHECK_MODULES and CROSS_CHECK_MODULES.
14663
14664 Tue May 31 16:36:36 1994 Paul Eggert (eggert@twinsun.com)
14665
14666 * config.guess (i386-unknown-bsdi): New system to guess.
14667
14668 Wed May 25 16:47:10 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14669
14670 * Makefile.in: Add all-gui target (but not yet build by "all").
14671
14672 Thu May 26 08:53:19 1994 Bill Cox (bill@rtl.cygnus.com)
14673
14674 * config.sub: Move deletion of patch suffix from here...
14675 * configure.in: To here, at Ian's suggestion. The top-
14676 level scripts might need to know of a patch level.
14677
14678 Wed May 25 09:15:54 1994 Bill Cox (bill@rtl.cygnus.com)
14679
14680 * config.sub: Strip off patch suffix so rtl is recognized
14681 as a sunos4.1.3 machine, even though it's been patched.
14682
14683 Fri May 20 08:25:49 1994 Steve Chamberlain (sac@deneb.cygnus.com)
14684
14685 * Makefile.in (INSTALL_LAST): Delete.
14686 (INSTALL_DOSREL): New.
14687
14688 Thu May 19 17:12:12 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14689
14690 * configure.in: Use ld for i[34]86-*-sysv4* and sparc-*-solaris2*.
14691 Don't set use_gnu_ld to no for *-*-sysv4; that only controls
14692 whether we pass down --with-gnu-ld anyhow.
14693
14694 Thu May 19 09:29:12 1994 Steve Chamberlain (sac@cygnus.com)
14695
14696 * Makefile.in (INSTALL_LAST): Change operation so it works
14697 on more flavors of make.
14698 * configure.in (go32): Don't build libg++ or libio.
14699
14700 Fri May 13 13:28:34 1994 Steve Chamberlain (sac@cygnus.com)
14701
14702 * Makefile.in (Move HOST_PREFIX_1 and friends up so
14703 they can be overriden by templates.
14704
14705 Sat May 7 16:46:44 1994 Steve Chamberlain (sac@cygnus.com)
14706
14707 * configure.in (target==go32): Don't build gdb.
14708 * dosrel: New directory.
14709
14710 Fri May 6 14:19:25 1994 Steve Chamberlain (sac@cygnus.com)
14711
14712 * configure.in (host==go32): Configure dosrel too.
14713 * Makefile.in (INTALL_TARGET): Call INSTALL_LAST last.
14714 (HOST_CC, HOST_PREFIX, HOST_PREFIX_1): Undefine, they should
14715 be set by incoming names or templates.
14716 (INSTALL_LAST): New rule.
14717
14718 Thu May 5 17:35:05 1994 Stan Shebs (shebs@andros.cygnus.com)
14719
14720 * config.sub (sparclitefrw, sparclitefrwcompat): Don't set the os.
14721
14722 Thu May 5 20:06:45 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
14723
14724 * configure.in (appdirs): New variable. Currently empty, but will
14725 be used in gas distribution. If nonempty, lists a set of
14726 directories at least one of which must get configured, or top
14727 level configuration is considered to have failed.
14728 (rs6000-*-lynxos*): Use new file name.
14729
14730 Thu May 5 13:38:36 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14731
14732 Eliminate XTRAFLAGS.
14733 * Makefile.in (CC_FOR_TARGET): If newlib exists, refer to the
14734 newlib include files using -idirafter, and also use -nostdinc.
14735 (CXX_FOR_TARGET): Likewise.
14736 (XTRAFLAGS): Removed.
14737 (BASE_FLAGS_TO_PASS): Remove XTRAFLAGS_FOR_TARGET.
14738 (EXTRA_HOST_FLAGS): Remove XTRAFLAGS.
14739 (EXTRA_TARGET_FLAGS, EXTRA_GCC_FLAGS): Likewise.
14740 ($(DO_X)): Don't pass down XTRAFLAGS.
14741
14742 Thu May 5 00:16:36 1994 Ken Raeburn (raeburn@kr-pc.cygnus.com)
14743
14744 * configure.in (mips*-dec-bsd*): New target; do build linker.
14745 (mips*-*-bsd*): New target; don't build linker.
14746
14747 Wed May 4 20:10:10 1994 D. V. Henkel-Wallace (gumby@cygnus.com)
14748
14749 * configure.in: support rs6000-*-lynxos* configuration.
14750 support sunos4 as a cross target.
14751
14752 * config.sub: look for lynx*, not lynx since the OS version may
14753 legitimately be part of the name.
14754
14755 Tue May 3 21:48:11 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
14756
14757 * configure.in (i[34]86-*-sco*): Move to be with other i386
14758 targets.
14759 (romp-*-*): New target. Skip various binary utilities.
14760 (vax-*-*): New target. Don't build newlib.
14761 (vax-*-vms): Renamed from *-*-vms. Don't build opcodes or newlib.
14762
14763 Thu Apr 28 15:03:05 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14764
14765 * configure.in: Only set host_makefile_frag if config
14766 directory exists.
14767
14768 Wed Apr 27 12:14:30 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14769
14770 * install.sh: If $dstdir exists, don't check whether each
14771 component does.
14772
14773 Tue Apr 26 18:11:33 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14774
14775 * test-build.mk (HOLES): Add sleep; used by rcs/src/conf.sh.
14776
14777 Mon Apr 25 15:06:34 1994 Stan Shebs (shebs@andros.cygnus.com)
14778
14779 * configure.in (*-*-lynxos*): Don't configure newlib for either
14780 native or cross Lynx.
14781
14782 Sat Apr 16 11:58:16 1994 Doug Evans (dje@canuck.cygnus.com)
14783
14784 * config.sub (sparc64-elf): Fix os.
14785 (z8k): Remove duplicate.
14786
14787 Thu Apr 14 23:33:17 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14788
14789 * Makefile.in (gcc-no-fixedincludes): Touch gcc/include/fixed, not
14790 gcc/stmp-fixproto, to try to prevent fixproto from being run.
14791
14792 Wed Apr 13 15:14:52 1994 Bill Cox (bill@cygnus.com)
14793
14794 * configure: Make file links cleanly even if Lynx fails on
14795 an NFS symlink (at least fail cleanly).
14796
14797 Mon Apr 11 10:58:56 1994 Jim Wilson (wilson@sphagnum.cygnus.com)
14798
14799 * test-build.mk (CC): For mips-sgi-irix4, change -XNh1500 to
14800 -XNh2000.
14801
14802 Sat Apr 9 15:10:45 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14803
14804 * configure: Unknown options are fatal again.
14805
14806 Fri Apr 8 12:01:41 1994 David J. Mackenzie (djm@cygnus.com)
14807
14808 * configure: Ignore --x-includes and --x-libraries, for Autoconf
14809 compatibility.
14810
14811 Thu Apr 7 17:31:43 1994 Doug Evans (dje@canuck.cygnus.com)
14812
14813 * build-all.mk: Add `clean' target.
14814
14815 Wed Apr 6 20:44:56 1994 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
14816
14817 * config.guess: Add SINIX support.
14818 * configure.in: Add mips-*-sysv4* support.
14819
14820 Mon Apr 4 17:41:44 1994 Doug Evans (dje@canuck.cygnus.com)
14821
14822 * build-all.mk: Document all useful targets.
14823 If canonhost is sparc-sun-solaris2.3, change it to sparc-sun-solaris2.
14824 If canonhost is mips-sgi-irix4.0.5H, change it to mips-sgi-irix4.
14825
14826 Thu Mar 31 04:55:57 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14827
14828 * configure: Support --silent, --quiet.
14829
14830 Wed Mar 30 21:37:38 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14831
14832 * configure: Support --disable-FEATURE.
14833
14834 Tue Mar 29 19:15:05 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14835
14836 * config.guess: Recognize NCR running SVR4.3.
14837
14838 Mon Mar 28 14:55:15 1994 Per Bothner (bothner@kalessin.cygnus.com)
14839
14840 * config.guess: Make BSDI generate i386-unknown-bsd386.
14841 Patch from Paul Eggert <eggert@twinsun.com>.
14842
14843 Mon Mar 28 12:54:52 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14844
14845 * configure.in (powerpc-*-aix*): Treat like rs6000-*-*.
14846
14847 Sat Mar 26 11:25:48 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14848
14849 * configure: Make unrecognized options give nonfatal warnings
14850 instead of fatal errors, and pass them to any subdirectory
14851 configures in case they recognize them.
14852 Make --x equivalent to --with-x.
14853
14854 Fri Mar 25 21:52:10 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14855
14856 * configure: Add --enable-* options. Clean up usage message and
14857 some comments.
14858
14859 Thu Mar 24 09:12:53 1994 Doug Evans (dje@canuck.cygnus.com)
14860
14861 * Makefile.in (NM_FOR_TARGET): Build tree version is now nm.new.
14862
14863 Sun Mar 20 11:28:22 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
14864
14865 * configure.in (hppa*-*-*): Enable binutils.
14866
14867 Sat Mar 19 11:50:16 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14868
14869 * config.sub: Recognize cisco.
14870
14871 Fri Mar 18 16:42:32 1994 Jason Merrill (jason@deneb.cygnus.com)
14872
14873 * Makefile.in (CXXFLAGS): Add -fexternal-templates.
14874
14875 Tue Mar 15 11:25:55 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14876
14877 * config.guess: about target *-hitachi-hiuxwe2, don't print more
14878 than one configuration name. Add comment.
14879
14880 Sun Mar 6 23:13:38 1994 Hisashi MINAMINO (minamino@sra.co.jp)
14881
14882 * config.guess: about target *-hitachi-hiuxwe2, fixed
14883 machine guessing order. [Hitachi's CPU_IS_HP_MC68K
14884 macro is incorrect.]
14885
14886 Sun Mar 13 09:10:08 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14887
14888 * Makefile.in (TAGS): Just build TAGS in each subdirectory, rather
14889 than the "make ls" stuff which used to be here.
14890
14891 Fri Mar 11 12:52:39 1994 Per Bothner (bothner@kalessin.cygnus.com)
14892
14893 * config.guess: Recognize i[34]86-unknown-freebsd.
14894 From Shawn M Carey <smcarey@rodan.syr.edu>.
14895
14896 Thu Mar 3 14:24:21 1994 Per Bothner (bothner@kalessin.cygnus.com)
14897
14898 * configure.in (noconfigdirs for alpha): Remove libg++ and libio.
14899
14900 Wed Mar 2 13:28:48 1994 Jim Kingdon (kingdon@deneb.cygnus.com)
14901
14902 * config.guess: Check for ptx.
14903
14904 Mon Feb 28 16:46:50 1994 Kung Hsu (kung@mexican.cygnus.com)
14905
14906 * config.sub: Add os9k checking.
14907
14908 Thu Feb 24 07:09:04 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
14909
14910 * config.guess: Handle OSF1 running on HPPA processors
14911
14912 Fri Feb 18 14:14:00 1994 Ken Raeburn (raeburn@rtl.cygnus.com)
14913
14914 * configure: If subdir configure fails, print out a message with
14915 subdirectory name, in case subdir's configure code didn't identify
14916 itself.
14917
14918 Fri Feb 18 12:50:15 1994 Doug Evans (dje@cygnus.com)
14919
14920 * configure.in: Remove embedded newlines from configdirs.
14921 Avoid mismatches of substrings. Fix matching strings at end
14922 of configdirs.
14923
14924 Fri Feb 11 15:33:33 1994 Stu Grossman (grossman at cygnus.com)
14925
14926 * config.guess: Add Lynx/rs6000 config support.
14927
14928 Tue Feb 8 13:41:09 1994 Ken Raeburn (raeburn@rtl.cygnus.com)
14929
14930 * configure.in (alpha-dec-osf1*, alpha*-*-*): Build gas.
14931
14932 Mon Feb 7 15:42:36 1994 Jeffrey A. Law (law@cygnus.com)
14933
14934 * configure.in (hppa*-*-osf*): Treat this just like most other
14935 PA configurations (eg no binutils or ld).
14936 (hppa*-*-*elf*): These configurations have binutils and ld.
14937
14938 Sun Feb 6 16:35:07 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
14939
14940 * config.sub (hiux): Fix typo. From m-kasahr@sramhc.sra.co.JP.
14941
14942 Sat Feb 5 01:00:33 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14943
14944 * configure.in (rs6000-*-*): Build gas.
14945
14946 Wed Feb 2 13:57:57 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
14947
14948 * Makefile.in: Avoid bug in losing hpux sed.
14949
14950 Wed Feb 2 14:53:05 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14951
14952 * Makefile.in, test-build.mk: Remove MUNCH_NM; it was only needed
14953 for GDB and GDB has been fixed to not need it.
14954
14955 Sun Jan 30 17:58:06 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
14956
14957 * config.guess: Recognize vax hosts.
14958
14959 Fri Jan 28 15:29:38 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
14960
14961 * configure (while loop): Don't use "break 2" inside case
14962 statement -- the case statement isn't an enclosing loop.
14963
14964 Mon Jan 24 18:40:06 1994 Per Bothner (bothner@kalessin.cygnus.com)
14965
14966 * config.guess: Clean up NeXT support, to allow nextstep
14967 on Intel machines. Make OS be nextstep.
14968
14969 Sun Jan 23 18:47:22 1994 Richard Kenner (kenner@vlsi1.ultra.nyu.edu)
14970
14971 * config.guess: Add alternate forms for Convex.
14972
14973 Thu Jan 20 16:13:41 1994 Stu Grossman (grossman at cygnus.com)
14974
14975 * configure: Completely rewrite option processing. Take
14976 advantage of pattern-matching to avoid invoking test frequently.
14977 Also clean up host and target defaulting logic.
14978
14979 Mon Jan 17 15:06:56 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
14980
14981 * Makefile.in: Replace all occurrances of "rootme" with "r" and
14982 "$${rootme}" with "$$r", to increase the likelihood that the do-*
14983 commands (plus user environment) will fit SCO limits.
14984
14985 Thu Jan 6 11:20:57 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14986
14987 * configure.in: Don't issue warnings about directories which are
14988 not being configured if -norecursion is set. Correct test for
14989 --with-gnu-as and --with-gnu-ld to not get confused by substring
14990 matches.
14991
14992 * configure.in: Don't build gas for alpha-dec-osf1*.
14993
14994 Tue Jan 4 17:10:19 1994 Stu Grossman (grossman at cygnus.com)
14995
14996 * configure: Back out Per's change of 12/19/1993. It changes the
14997 behavior of configure in unexpected and confusing ways.
14998
14999 Also, use different delim char when calculating
15000 program_transform_name so that the name can contain slashes.
15001
15002 Sat Jan 1 13:45:31 1994 Rob Savoye (rob@darkstar.cygnus.com)
15003
15004 * configure.in, config.sub: Add support for VSTa micro-kernel.
15005
15006 Sat Dec 25 20:00:47 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
15007
15008 * configure.in: Nuke hacks which were used to get a special
15009 version of GAS for HPPA configurations.
15010
15011 Sun Dec 19 20:40:44 1993 Per Bothner (bothner@kalessin.cygnus.com)
15012
15013 * configure: If only ${target_alias} is given, use that
15014 as the default for ${host_alias}.
15015 * configure: Add missing back-slashes before nested quotes.
15016
15017 Wed Dec 15 18:07:18 1993 david d `zoo' zuhn (zoo@andros.cygnus.com)
15018
15019 * Makefile.in (BASE_FLAGS_TO_PASS): add YACC=$(BISON)
15020
15021 Tue Dec 14 21:25:33 1993 Per Bothner (bothner@cygnus.com)
15022
15023 * config.guess: Recognize some Tektronix configurations.
15024 From Kaveh R. Ghazi <ghazi@noc.rutgers.edu>.
15025
15026 Sat Dec 11 11:18:00 1993 Steve Chamberlain (sac@thepub.cygnus.com)
15027
15028 * config.sub: Match any flavor of SH.
15029
15030 Thu Dec 2 17:16:58 1993 Ken Raeburn (raeburn@cujo.cygnus.com)
15031
15032 * configure.in: Don't try to configure newlib for Alpha.
15033
15034 Thu Dec 2 14:35:54 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
15035
15036 * configure.in: Don't build ld for Irix 5. Don't build gas,
15037 libg++ or libio for any Alpha target.
15038
15039 * configure.in (mips*-sgi-irix5*): New target; use mh-irix5.
15040
15041 Wed Dec 1 17:00:33 1993 Jason Merrill (jason@deneb.cygnus.com)
15042
15043 * Makefile.in (GZIPPROG): Renamed from GZIP, which gzip uses for
15044 default arguments -- so it tried to compress itself.
15045
15046 Tue Nov 30 13:45:15 1993 david d `zoo' zuhn (zoo@andros.cygnus.com)
15047
15048 * configure.in (notsupp): ensure that a space is always at the end
15049 of the configdirs list, since the grep checks for an explicit space
15050
15051 Tue Nov 16 15:04:27 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15052
15053 * configure.in (target i386-sysv4.2): don't build ld, since static
15054 versions of many libraries are not available.
15055
15056 Tue Nov 16 14:28:12 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15057
15058 * config.guess: Recognize Apollos (using environment variables).
15059 * configure.in: Don't configure ld, binutils, or gprof for Apollo.
15060
15061 Thu Nov 11 12:03:50 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15062
15063 * config.guess: Recognize Sony news mips running newsos.
15064
15065 Wed Nov 10 16:57:00 1993 Mark Eichin (eichin@cygnus.com)
15066
15067 * Makefile.in (all-cygnus, build-cygnus): "fi else" needs to be
15068 "fi ; else" for bash.
15069
15070 Tue Nov 9 15:54:01 1993 Mark Eichin (eichin@cygnus.com)
15071
15072 * Makefile.in (BASE_FLAGS_TO_PASS): pass SHELL.
15073
15074 Fri Nov 5 08:07:27 1993 D. V. Henkel-Wallace (gumby@blues.cygnus.com)
15075
15076 * config.sub: accept unixware as an alias for svr4.2.
15077 Fix some inconsistancies with the gcc version.
15078
15079 Fri Nov 5 15:14:12 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15080
15081 * Makefile.in (DISTDOCDIRS): Add gdb.
15082
15083 Fri Nov 5 11:59:42 1993 Per Bothner (bothner@kalessin.cygnus.com)
15084
15085 * Makefile.in (DISTDOCDIRS): Add libg++ and libio.
15086
15087 Fri Nov 5 10:35:05 1993 Ken Raeburn (raeburn@rover.cygnus.com)
15088
15089 * Makefile.in (taz): Only build "info" in DISTDOCDIRS.
15090 (DISTDOCDIRS): Don't assume libg++ and gdb folks necessarily want
15091 this now.
15092
15093 Thu Nov 4 18:58:23 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15094
15095 * config.sub: Accept hiux* as an OS name.
15096
15097 * Makefile.in: Change RUNTEST_FLAGS back to RUNTESTFLAGS per
15098 etc/make-stds.texi. The underscore came from gcc, and dje now
15099 agrees that RUNTESTFLAGS is the correct name.
15100
15101 Thu Nov 4 10:49:01 1993 Per Bothner (bothner@kalessin.cygnus.com)
15102
15103 * install.sh: Remove 'set -e'. It makes any conditionals
15104 in the script useless.
15105
15106 * config.guess: Automatically recognize arm-acorn-riscix
15107 Patch from Richard Earnshaw (rwe11@cl.cam.ac.uk).
15108
15109 Thu Nov 04 08:08:04 1993 Jeffrey Wheat (cassidy@cygnus.com)
15110
15111 * Makefile.in: Change RUNTESTFLAGS to RUNTEST_FLAGS
15112
15113 Wed Nov 3 22:09:46 1993 Ken Raeburn (raeburn@rtl.cygnus.com)
15114
15115 * Makefile.in (DISTDOCDIRS): New variable.
15116 (taz): Edit local Makefile.in sooner, instead of proto-toplev
15117 Makefile.in later. Build "info" and "dvi" in DISTDOCDIRS.
15118
15119 Wed Nov 3 21:31:52 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15120
15121 * configure.in (hppa target): check the source directory for the
15122 pagas sub-directory
15123
15124 Wed Nov 3 11:12:22 1993 Doug Evans (dje@canuck.cygnus.com)
15125
15126 * config.sub: Allow -aout* and -elf*.
15127
15128 Wed Nov 3 11:08:33 1993 Ken Raeburn (raeburn@rtl.cygnus.com)
15129
15130 * configure.in: Don't build ld on i386-solaris2, same as for
15131 sparc-solaris2.
15132
15133 Tue Nov 2 14:21:25 1993 Per Bothner (bothner@kalessin.cygnus.com)
15134
15135 * Makefile.in (taz): Add texinfo/lgpl.texinfo (for libg++).
15136
15137 Tue Nov 2 13:38:30 1993 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
15138
15139 * configure.in: Configure gdb for alpha.
15140
15141 Mon Nov 1 10:42:54 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15142
15143 * Makefile.in (CXXFLAGS): Add -O.
15144
15145 Wed Oct 27 10:45:06 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15146
15147 * config.guess: added support for DG Aviion
15148
15149 Tue Oct 26 14:37:37 1993 Ken Raeburn (raeburn@rover.cygnus.com)
15150
15151 * configure.in: Produce warning message for subdirectories not
15152 configurable for this host/target combination. Don't try to
15153 configure gdb for vms.
15154
15155 Mon Oct 25 11:22:15 1993 Ken Raeburn (raeburn@rover.cygnus.com)
15156
15157 * Makefile.in (taz): Replace "byacc" with "bison -y" in the
15158 appropriate files before making "diststuff".
15159 (DISTBISONFILES): New var: list of files to be edited.
15160 (DISTSTUFFDIRS): Add binutils.
15161
15162 Fri Oct 22 20:32:15 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15163
15164 * config.sub: also handle mipsel and mips64el (for little endian mips)
15165
15166 Fri Oct 22 07:59:20 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15167
15168 * configure.in: Add * to end of all OS names.
15169
15170 Thu Oct 21 11:38:28 1993 Stan Shebs (shebs@rtl.cygnus.com)
15171
15172 * configure.in: Build newlib for LynxOS native.
15173
15174 Wed Oct 20 09:56:12 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15175
15176 * config.guess: Add support for delta 88k running SVR3.
15177
15178 * configure.in: Add comment about HP compiler vs. emacs.
15179
15180 Tue Oct 19 16:02:22 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15181
15182 * configure.in: don't build ld on solaris2 (not a viable option
15183 due to bugs in getpwnam & getpwuid)
15184
15185 Tue Oct 19 15:13:56 1993 Ken Raeburn (raeburn@rtl.cygnus.com)
15186
15187 * configure.in: Accept alpha-dec-osf1*, not just -osf1, since
15188 config.guess will produce a full version number.
15189
15190 Tue Oct 19 15:58:01 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
15191
15192 * configure.in: Build linker and binutils for alpha-dec-osf1.
15193
15194 Tue Oct 19 11:41:55 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15195
15196 * Makefile.in: Remove -O from CXXFLAGS for consistency with CFLAGS,
15197 and gdb/testsuite/Makefile.in.
15198
15199 Sat Oct 9 18:39:07 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15200
15201 * configure.in: recognize mips*- instead of mips-
15202
15203 Fri Oct 8 14:15:39 1993 Ken Raeburn (raeburn@cygnus.com)
15204
15205 * config.sub: Accept linux*coff and linux*elf as operating
15206 systems.
15207
15208 Thu Oct 7 12:57:19 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
15209
15210 * config.sub: Recognize mips64, and mips3 as an alias for it.
15211
15212 Wed Oct 6 13:54:21 1993 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
15213
15214 * configure.in: Remove alpha-dec-osf*, no longer necessary now that
15215 gdb knows how to handle OSF/1 shared libraries.
15216
15217 Tue Oct 5 11:55:04 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15218
15219 * configure.in: Recognize hppa*-*-hiux* (currently synonym for hpux).
15220 * config.guess: Recognize Hitachi's HIUX.
15221 * config.sub: Recognize h3050r* and hppahitachi.
15222 Remove redundant cases for hp9k[23]*.
15223
15224 Mon Oct 4 16:15:09 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15225
15226 * configure.in: default to '--with-gnu-as' and '--with-gnu-ld'
15227 if gas and ld are in the source tree and are in ${configdirs}.
15228 If ${use_gnu_as} or ${use_gnu_ld} are 'no', then don't set the
15229 --with options (but still pass them down on the command line,
15230 if they were explicitly specified).
15231
15232 Fri Sep 24 19:11:13 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15233
15234 * configure: substitute SHELL value in Makefile.in with
15235 ${CONFIG_SHELL}
15236
15237 Thu Sep 23 18:05:13 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
15238
15239 * configure.in: Build gas, ld, and binutils for *-*-sysv4* and
15240 *-*-solaris2* targets.
15241
15242 Sun Sep 19 17:01:41 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15243
15244 * Makefile.in: define M4, and pass it down to sub-makes;
15245 all-autoconf now depends on all-m4
15246
15247 Sat Sep 18 00:38:23 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15248
15249 * Makefile.in ({AR,RANLIB}_FOR_TARGET): make contingent on
15250 presence of {ar,ranlib} instead of a configured directory
15251
15252 Wed Sep 15 08:41:44 1993 Jim Kingdon (kingdon@cirdan.cygnus.com)
15253
15254 * config.guess: Accept 34?? as well as 33?? for NCR.
15255
15256 Mon Sep 13 12:28:43 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15257
15258 * configure.in: grab mt-hppa for HPPA targets; use 'gas ' instead
15259 of 'gas' in sed commands, since 'gash' is now in the tree as well.
15260
15261 Fri Sep 10 11:23:52 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15262
15263 * configure: grab values for $(CC) and $(CXX) from the
15264 environment, so that someone can do "CC=gcc configure; make" and
15265 have it work right (matching the way that autoconf works now)
15266
15267 * configure.in, Makefile.in: add support for gash, the tcl
15268 interface to Galaxy
15269
15270 * config.guess: add NetBSD variants (hp300, x86)
15271
15272 Thu Sep 9 16:48:52 1993 Jason Merrill (jason@deneb.cygnus.com)
15273
15274 * install.sh: Support -d option (in the manner of SunOS 4 install,
15275 as it is more deterministic than that of GNU install)
15276 (chmodcmd): Set file to mode 755 by default (should also do default
15277 chgrp and chown, but I don't feel like dealing with that now)
15278
15279 Tue Sep 7 11:59:39 1993 Doug Evans (dje@canuck.cygnus.com)
15280
15281 * config.sub: Remove h8300hhms alias.
15282
15283 Tue Aug 31 11:00:09 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15284
15285 * configure.in: Match *-*-solaris2* not *-sun-solaris2*.
15286
15287 Mon Aug 30 18:29:10 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15288
15289 * Makefile.in (gcc-no-fixedincludes): touch stmp-fixproto as well
15290 as stmp-fixinc
15291
15292 Wed Aug 25 16:35:59 1993 K. Richard Pixley (rich@sendai.cygnus.com)
15293
15294 * config.sub: recognize m88110-bug-coff.
15295
15296 Tue Aug 24 10:23:24 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15297
15298 * Makefile.in (all-libio): all dependencies on the toolchain used
15299 to build this (gcc, gas, ld, etc)
15300
15301 Fri Aug 20 17:24:24 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15302
15303 * config.guess: Deal with OSF/1 1.3 on alpha.
15304
15305 Thu Aug 19 11:43:04 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15306
15307 * install.sh: add some 'else true' clauses for portability
15308
15309 * configure.in: don't build libio for h8[35]00-*-* targets
15310
15311 Tue Aug 17 19:02:31 1993 Per Bothner (bothner@kalessin.cygnus.com)
15312
15313 * Makefile.in: Add support for new libio.
15314
15315 Sun Aug 15 20:48:55 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15316
15317 * install.sh: If one command fails, don't try the rest. Don't try
15318 to remove $dsttmp (via trap) unless we have already created it.
15319 If $src doesn't exist, detect it and exit with an error.
15320
15321 * config.guess: Recognize BSD on hp300.
15322
15323 Wed Aug 11 18:35:13 1993 Per Bothner (bothner@kalessin.cygnus.com)
15324
15325 * config.guess: Map (9000/[34]??:HP-UX:*:*) to m68k-hp-hpux.
15326 Bug report from "Hamish (H.I.) Macdonald" <hamish@bnr.ca>.
15327
15328 Wed Aug 11 15:37:51 1993 Jason Merrill (jason@deneb.cygnus.com)
15329
15330 * Makefile.in (all-send-pr): depends on all-prms
15331
15332 Wed Aug 11 16:56:03 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15333
15334 * config.guess: Fix typo (9000/8??:4.3bsd -> 9000/7??:4.3bsd).
15335
15336 Fri Aug 6 14:45:02 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
15337
15338 * config.guess: From michael@mercury.cs.mun.ca (Michael Rendell):
15339 Added test for mips-mips-riscos5.
15340
15341 Thu Aug 5 15:45:08 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15342
15343 * configure.in: use mh-hp300 for 68k HP hosts
15344
15345 Mon Aug 2 11:56:53 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15346
15347 * configure: add support for CONFIG_SHELL, so that you can use
15348 some alternate shell for evaluating configure scripts
15349
15350 Sun Aug 1 11:36:27 1993 Fred Fish (fnf@deneb.cygnus.com)
15351
15352 * Makefile.in (make-gdb.tar.gz): Sed bug reporting address
15353 in configure script to bug-gdb@prep.ai.mit.edu when building
15354 distribution archive.
15355 * Makefile.in (COMPRESS): Remove def.
15356 * Makefile.in (gdb.tar.gz, make-gdb.tar.gz): Renamed from
15357 gdb.tar.Z and make-gdb.tar.Z respectively.
15358 * Makefile.in (make-gdb.tar.gz): Now only build gzip'd archive.
15359 * Makefile.in (make-gdb.tar.gz): Minor changes to move closer
15360 to convergence with 'taz' target in Makefile.in.
15361
15362 Fri Jul 30 12:34:57 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15363
15364 * install.sh (dsttmp): use trap to ensure that tmp files go
15365 away on error conditions
15366
15367 Wed Jul 28 11:57:36 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15368
15369 * Makefile.in (BASE_FLAGS_TO_PASS): remove LOADLIBES
15370
15371 Tue Jul 27 12:43:40 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15372
15373 * Makefile.in (install-dirs): Deal with a prefix like /gnu;
15374 its parent is '/' not ''.
15375
15376 * Makefile.in (DEVO_SUPPORT): Add comments about ChangeLog.
15377
15378 Fri Jul 23 09:53:37 1993 Jason Merrill (jason@wahini.cygnus.com)
15379
15380 * configure: if ${newsrcdir}/configure doesn't exist, don't assume
15381 that ${newsrcdir}/configure.in does.
15382
15383 Tue Jul 20 11:28:50 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15384
15385 * test-build.mk: support for CONFIG_SHELL
15386
15387 Mon Jul 19 21:54:46 1993 Fred Fish (fnf@deneb.cygnus.com)
15388
15389 * config.sub (netware): Add as a basic system type.
15390
15391 Wed Jul 14 12:03:11 1993 K. Richard Pixley (rich@sendai.cygnus.com)
15392
15393 * Makefile.in (Makefile): depend on configure.in. Also drop the
15394 $(srcdir)/ from the dependency on Makefile.in.
15395
15396 Tue Jul 13 20:10:58 1993 Doug Evans (dje@canuck.cygnus.com)
15397
15398 * config.sub: Recognize h8300hhms as h8300h-hitachi-hms.
15399 (h8300hhms is temporary until multi-libraries are implemented).
15400 * configure.in: Handle h8300h too.
15401
15402 Sun Jul 11 17:35:27 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15403
15404 * config.guess: Recognize dpx/2 as m68k-bull-sysv3.
15405
15406 Thu Jul 8 18:26:12 1993 John Gilmore (gnu@cygnus.com)
15407
15408 * configure: Remove extraneous output when guessing host type.
15409 * config.guess: Remove extraneous output when guessing using C
15410 compiler rather than uname, or when guessing fails.
15411
15412 Wed Jul 7 17:58:14 1993 david d `zoo' zuhn (zoo at rtl.cygnus.com)
15413
15414 * Makefile.in: remove all.cross and install.cross targets
15415
15416 * configure: remove CROSS=-DCROSS_COMPILE and ALL=all.cross
15417 definitions
15418
15419 Tue Jul 6 10:39:44 1993 Steve Chamberlain (sac@phydeaux.cygnus.com)
15420
15421 * configure.in (target sh): Build gprof.
15422
15423 Thu Jul 1 16:52:56 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15424
15425 * config.sub: change -solaris to -solaris2
15426
15427 Thu Jul 1 15:46:16 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15428
15429 * configure.in: Use config/mh-riscos for mips-*-sysv*.
15430
15431 Wed Jun 30 09:31:58 1993 Ian Lance Taylor (ian@cygnus.com)
15432
15433 * configure: Correct error message for missing Makefile.in to
15434 print correct directory.
15435
15436 Tue Jun 29 13:52:16 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15437
15438 * install.sh: kludge around 386BSD shell bug
15439
15440 Tue Jun 29 13:06:49 1993 Per Bothner (bothner@rtl.cygnus.com)
15441
15442 * config.guess: Recognize NeXT.
15443 * config.guess: Recognize i486-ncr-sysv4.
15444 * Makefile.in (taz): rm $(TOOL)-$$VER before linking.
15445
15446 Tue Jun 29 12:50:57 1993 Ian Lance Taylor (ian@cygnus.com)
15447
15448 * Makefile.in (MAKEINFOFLAGS): New variable.
15449 (FLAGS_TO_PASS): Pass MAKEINFO as MAKEINFO MAKEINFOFLAGS.
15450 * build-all.mk, test-build.mk: Pass down --no-split as
15451 MAKEINFOFLAGS when hosted on DOS. Compile DOS hosted without -g.
15452
15453 Thu Jun 24 13:39:11 1993 Per Bothner (bothner@rtl.cygnus.com)
15454
15455 * Makefile.in (DEVO_SUPPORT): Add COPYING COPYING.LIB install.sh.
15456
15457 Wed Jun 23 12:59:21 1993 Per Bothner (bothner@rtl.cygnus.com)
15458
15459 * Makefile.in (libg++.tar.z): New rule.
15460 * Makefile.in (taz): Replace 'configure -rm' by 'make distclean'.
15461 * Makefile.in (taz): Only do a single chmod.
15462
15463 Fri Jun 18 12:03:10 1993 david d `zoo' zuhn (zoo at majipoor.cygnus.com)
15464
15465 * install.sh: don't use dirname anymore (replaced with sed usage)
15466
15467 Thu Jun 17 18:43:42 1993 Fred Fish (fnf@cygnus.com)
15468
15469 * Makefile.in: Change extension for gzip'd files from '.z' to
15470 '.gz' per new FSF standard usage.
15471
15472 Thu Jun 17 16:58:50 1993 david d `zoo' zuhn (zoo at majipoor.cygnus.com)
15473
15474 * configure: put quotes around the final value of program_transform_name
15475
15476 Tue Jun 15 16:48:51 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15477
15478 * Makefile.in: new install.sh support; update install-info rules
15479
15480 Wed Jun 9 12:31:34 1993 Ian Lance Taylor (ian@cygnus.com)
15481
15482 * configure.in: Build diff for crosses, but not for go32 host.
15483
15484 * configure.in: Build gprof only for native, and don't build it
15485 for mips-*-*, rs6000-*-*, or i[34]86-*-sco*.
15486
15487 Mon Jun 7 13:12:11 1993 david d `zoo' zuhn (zoo at deneb.cygnus.com)
15488
15489 * configure.in: don't build gas,ld,binutils on for *-*-sysv4
15490
15491 Mon Jun 7 11:40:11 1993 Brendan Kehoe (brendan@lisa.cygnus.com)
15492
15493 * configure.in (host_tools): Add prms.
15494
15495 Fri Jun 4 13:30:42 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15496
15497 * Makefile.in: install gcc, do installation of $(INSTALL_MODULES)
15498 with $(FLAGS_TO_PASS) on the command line
15499
15500 * config.sub: Recognize lynx and lynxos
15501
15502 Fri Jun 4 10:59:56 1993 Ian Lance Taylor (ian@cygnus.com)
15503
15504 * config.sub: Accept -ecoff*, not just -ecoff.
15505
15506 Thu Jun 3 17:38:54 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15507
15508 * Makefile.in (taz): Use .gz suffix instead of .z.
15509 (binutils.tar.gz, gas+binutils.tar.gz, gas.tar.gz): Fixed target
15510 names.
15511
15512 Thu Jun 3 00:27:06 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15513
15514 * Makefile.in (vault-install): add an 'else true' (for Ultrix)
15515
15516 Wed Jun 2 18:19:16 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15517
15518 * Makefile.in (install-no-fixedincludes): install gcc last, so
15519 that rebuilds that might happen during 'make install' don't get
15520 bogus gcc include files
15521
15522 Wed Jun 2 16:14:10 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15523
15524 Change from Utah for HPPA support:
15525 * config.guess: Recognize hppa1.x-hp-bsd.
15526
15527 Wed Jun 2 11:53:33 1993 Per Bothner (bothner@rtl.cygnus.com)
15528
15529 * config.guess: Add support for Motorola Delta 68k, up to r3v7.
15530 Patch from pot@fly.cnuce.cnr.it (Francesco Potorti`).
15531
15532 Tue Jun 1 17:48:42 1993 Rob Savoye (rob at darkstar.cygnus.com)
15533
15534 * config.sub: Add support for rom68k and bug boot monitors.
15535
15536 Mon May 31 09:36:37 1993 Jim Kingdon (kingdon@cygnus.com)
15537
15538 * Makefile.in: Make all-opcodes depend on all-bfd.
15539
15540 Thu May 27 08:05:31 1993 Ian Lance Taylor (ian@cygnus.com)
15541
15542 * config.guess: Added special check for i[34]86-univel-sysv4*.
15543
15544 Wed May 26 16:33:40 1993 Ian Lance Taylor (ian@cygnus.com)
15545
15546 * config.guess: For i[34]86-unknown-sysv4 use UNAME_MACHINE for
15547 the processor rather than assuming i486.
15548
15549 Wed May 26 09:40:18 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15550
15551 * config.guess: Recognize SunOS6 as Solaris3.
15552
15553 Tue May 25 23:03:11 1993 Per Bothner (bothner@cygnus.com)
15554
15555 * config.guess: Fix typo. Avoid #elif (not in K&R 1).
15556 Recognize SunOS 5.* only (and not [6-9].*) as being Solaris2.
15557
15558 Tue May 25 12:44:18 1993 Ian Lance Taylor (ian@cygnus.com)
15559
15560 * build-all.mk (all-cross): New target for Canadian Cross.
15561 Added Q2 go32 targets.
15562 * test-build.mk: Configure go32 cross sparclite-aout and
15563 mips-idt-ecoff -with-gnu-ld. Moved build binary directory from
15564 PARTIAL_HOLE_DIRS to BUILD_HOLES_DIRS.
15565
15566 Mon May 24 15:30:06 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15567
15568 * configure.in: fix Alpha GDB typo; also, don't build DejaGnu for
15569 GO32 hosted toolchains
15570
15571 Mon May 24 14:18:41 1993 Rob Savoye (rob at darkstar.cygnus.com)
15572
15573 * configure: change so "-exec-prefix" gets passed down rather
15574 than "-exec_prefix" so autoconf generated Makefiles get the
15575 exec_prefix set right.
15576
15577 Fri May 21 10:42:25 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15578
15579 * config.guess: get the Solaris2 minor version number
15580
15581 * Makefile.in: add standards.texi and make-stds.texi to ETC_SUPPORT
15582
15583 Fri May 21 06:20:52 1993 Brendan Kehoe (brendan@lisa.cygnus.com)
15584
15585 * config.guess: Recognize some Sequent platforms.
15586
15587 Thu May 20 14:33:48 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15588
15589 * Makefile.in: added the vault-install target
15590
15591 * configure.in: actually use the Sun3 makefile fragment that's in
15592 config, also added the release dir to configdirs
15593
15594 Thu May 20 14:19:18 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15595
15596 * Makefile.in (taz): Fix modes on stuff in $(TOOL) dir also.
15597
15598 Tue May 18 20:26:41 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15599
15600 * configure.in: remove some program from Alpha targetted toolchains
15601
15602 Tue May 18 15:23:19 1993 Ken Raeburn (raeburn@cygnus.com)
15603
15604 * Makefile.in (DISTSTUFFDIRS): Renamed from PROTODIRS. Add ld and
15605 gprof.
15606 (taz): Run "make diststuff" in those directories instead of "make
15607 proto-dir". Look for "VERSION=" only at start of line in subdir
15608 Makefile. Use "gzip -9" for compression.
15609 (TEXINFO_SUPPORT, DIST_SUPPORT, BINUTILS_SUPPORT_DIRS): New vars.
15610 (binutils.tar.z): New target.
15611
15612 Mon May 17 17:01:15 1993 Ken Raeburn (raeburn@deneb.cygnus.com)
15613
15614 * Makefile.in (taz): Include gpl.texinfo.
15615
15616 Fri May 14 06:48:38 1993 Ken Raeburn (raeburn@deneb.cygnus.com)
15617
15618 * Makefile.in (setup-dirs): Merged into "taz" target.
15619 (taz): Only do `proto-dir' stuff if a directory is actually needed
15620 for this target.
15621
15622 Wed May 12 13:09:44 1993 Ian Lance Taylor (ian@cygnus.com)
15623
15624 * Makefile.in (MUNCH_NM): New variable, defined to be $(NM).
15625 (FLAGS_TO_PASS): Pass down MUNCH_NM.
15626 (HOST_CC, HOST_PREFIX, HOST_PREFIX_1): New variables.
15627 (EXTRA_GCC_FLAGS): Pass down HOST_* variables.
15628 (gcc-no-fixedincludes): Correct for current gcc Makefile.
15629
15630 Tue May 11 10:14:25 1993 Fred Fish (fnf@cygnus.com)
15631
15632 * Makefile.in (make-gdb.tar.Z): Add configure, config.guess,
15633 config.sub, and move-if-change to gdb testsuite distribution
15634 archive, so the testsuite can be extracted, configured, and
15635 run separately from the gdb distribution. Blow away the Chill
15636 tests that require a Chill compiled executable, since GNU Chill
15637 is not yet publically available.
15638
15639 Mon May 10 17:22:26 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15640
15641 * test-build.mk: set environment variables in a single command,
15642 instead of a list of assignments and exports
15643
15644 * config.guess: recognize Alpha/OSF1 systems
15645
15646 Mon May 10 14:55:51 1993 K. Richard Pixley (rich@rtl.cygnus.com)
15647
15648 * configure: Change help message to prefer --options rather than
15649 -options.
15650
15651 Mon May 10 05:58:35 1993 Ken Raeburn (raeburn@kr-pc.cygnus.com)
15652
15653 * config.sub: Convergent Tech. "miniframe" uses m68010, sez
15654 zippy@ecst.csuchico.edu.
15655 * config.guess: Recognize miniframe.
15656
15657 Sun May 9 17:47:57 1993 Rob Savoye (rob at darkstar.cygnus.com)
15658
15659 * Makefile.in: Use srcroot to find runtest rather than rootme.
15660 Pass RUNTESTFLAGS and EXPECT down in BASE_FLAGS_TO_PASS.
15661
15662 Fri May 7 14:55:59 1993 Ian Lance Taylor (ian@cygnus.com)
15663
15664 * test-build.mk: Extensive additions to support building on a
15665 machine other than the host.
15666
15667 Wed May 5 08:35:04 1993 Ken Raeburn (raeburn@deneb.cygnus.com)
15668
15669 * configure (tooldir): Fix for i386-aix again.
15670
15671 Mon May 3 19:00:27 1993 Per Bothner (bothner@cygnus.com)
15672
15673 * configure, Makefile.in: Change definition of $(tooldir)
15674 to match the FSF.
15675
15676 Fri Apr 30 15:55:21 1993 Fred Fish (fnf@cygnus.com)
15677
15678 * config.guess: Recognize i[34]86/SVR4.
15679
15680 Fri Apr 30 15:52:46 1993 Steve Chamberlain (sac@thepub.cygnus.com)
15681
15682 * Makefile.in (all-gdb): gdb depends on sim.
15683
15684 Thu Apr 29 23:30:48 1993 Fred Fish (fnf@cygnus.com)
15685
15686 * Makefile.in (gdb.tar.Z): Make prototype gdb testsuite directory
15687 at the same time we make the prototype gdb directory.
15688 * Makefile.in (make-gdb.tar.Z): Make the testsuite distribution
15689 files at the same time as the gdb base release distribution.
15690
15691 Thu Apr 29 12:50:37 1993 Ian Lance Taylor (ian@cygnus.com)
15692
15693 * Makefile.in (check): Use individual check targets rather than
15694 DO_X rule.
15695 (check-gcc): Added.
15696
15697 Thu Apr 29 09:50:07 1993 Jim Kingdon (kingdon@cygnus.com)
15698
15699 * config.sub: Use sysv3.2 not sysv32 for canonical OS
15700 for System V release 3.2.
15701
15702 Thu Apr 29 10:33:22 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15703
15704 * config.sub: Recognize hppaosf.
15705 * configure.in: Do configure ld/binutils/gas for it.
15706
15707 Tue Apr 27 06:25:34 1993 Ken Raeburn (raeburn@kr-pc.cygnus.com)
15708
15709 * configure (tooldir): Alter syntax used to set this, for systems
15710 where "\$" isn't handled right, like i386-aix.
15711
15712 Thu Apr 22 08:17:35 1993 Ian Lance Taylor (ian@cygnus.com)
15713
15714 * configure: Pass program-transform-name, not
15715 program_transform_name, to recursive configures.
15716
15717 Thu Apr 22 02:58:21 1993 Ken Raeburn (raeburn@cygnus.com)
15718
15719 * Makefile.in (gas+binutils.tar.z): New rule for building snapshots
15720 of gas+ld+binutils.
15721
15722 Mon Apr 19 17:41:30 1993 Per Bothner (bothner@cygnus.com)
15723
15724 * config.guess: Recognize AIX3.2 as distinct from 3.1.
15725
15726 Sat Apr 17 17:19:50 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15727
15728 * configure.in: rename m88k-motorola-m88kbcs to m88k-motorola-sysv
15729
15730 Tue Apr 13 16:52:16 1993 Brendan Kehoe (brendan@lisa.cygnus.com)
15731
15732 * Makefile.in (PRMS): Set back to all-prms.
15733
15734 Sat Apr 10 12:04:07 1993 Ian Lance Taylor (ian@cygnus.com)
15735
15736 * test-build.mk: Pass -with-gnu-as for known MIPS native and MIPS
15737 targets, rather than for MIPS hosts.
15738
15739 Fri Apr 9 13:51:06 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15740
15741 * configure.in: add comment for --with-x default values
15742
15743 * config.guess: handle Motorola Delta88 box for SVR3 and SVR4.
15744
15745 * Makefile.in: add check-* targets for each of the directories in
15746 the tree. Add a definition of RUNTEST that will use the one we
15747 just built, if it exists. Pass this down via FLAGS_TO_PASS.
15748
15749 Thu Apr 8 09:21:30 1993 Ian Lance Taylor (ian@cygnus.com)
15750
15751 * configure.in: Removed obsolete references to bfd_target and
15752 target_makefile_frag.
15753
15754 * build-all.mk: Set assorted targets for Q2.
15755 * config.sub: Recognize z8k-sim and h8300-hms.
15756 * test-build.mk: Really don't pass host to configure.
15757 (HOLES): Added uname.
15758
15759 Wed Apr 7 15:48:19 1993 Ian Lance Taylor (ian@cygnus.com)
15760
15761 * configure: Handle an empty program-prefix, program-suffix or
15762 program-transform-name correctly.
15763
15764 Tue Apr 6 13:48:41 1993 Ian Lance Taylor (ian@cygnus.com)
15765
15766 * build-all.mk: -G 8 no longer required for MIPS targets.
15767 * test-build.mk: Don't pass host argument to configure; make it
15768 guess.
15769
15770 Tue Apr 6 10:36:53 1993 Fred Fish (fnf@cygnus.com)
15771
15772 * Makefile.in (gdb.tar.Z): Fix for building gzip'd distribution.
15773 * Makefile.in (COMPRESS): New macro, like GZIP.
15774
15775 Fri Apr 2 09:02:31 1993 Ian Lance Taylor (ian@cygnus.com)
15776
15777 * test-build.mk: Use -with-gnu-as for mips-sgi-irix4 as well.
15778
15779 * build-all.mk: Set GCC to gcc -O -G 8 for MIPS targets, since gcc
15780 with gas currently defaults to -G 0.
15781
15782 Thu Apr 1 08:25:42 1993 Ian Lance Taylor (ian@cygnus.com)
15783
15784 * Makefile.in (all-flex): flex depends on byacc.
15785
15786 * build-all.mk: If host not specified, use config.guess. Pass TAG
15787 to test-build.mk as RELEASE_TAG.
15788 * test-build.mk (configargs): New variable containing arguments to
15789 pass to configure. Set to -with-gnu-as on mips-dec-ultrix.
15790 (FLAGS_TO_PASS): Pass down RELEASE_TAG.
15791
15792 * config.guess: Use /bin/uname when checking -X argument on SCO,
15793 to avoid invoking GNU uname which doesn't understand -X.
15794
15795 * test-build.mk: Don't use /usr/unsupported/bin/as on AIX.
15796
15797 * configure.in: Build gas for mips-*-*.
15798
15799 Wed Mar 31 21:20:58 1993 K. Richard Pixley (rich@rtl.cygnus.com)
15800
15801 * Makefile.in (all.normal): insert missing backslash.
15802
15803 Wed Mar 31 12:31:56 1993 Ian Lance Taylor (ian@cygnus.com)
15804
15805 * build-all.mk: Bump -XNh value to 1500 to match gcc requirements.
15806
15807 * Makefile.in: Complete overhaul to merge many almost identical
15808 targets.
15809
15810 Tue Mar 30 20:17:01 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15811
15812 * Makefile.in (setup-dirs-gdb): Renamed from setup-dirs.
15813 (gdb.tar.Z): Adjusted.
15814
15815 * Makefile.in (setup-dirs, taz): New targets; should be general
15816 enough to adapt for gdb sometime. Build only .z file.
15817 (gas.tar.z): New target.
15818
15819 Tue Mar 30 10:03:09 1993 Ian Lance Taylor (ian@cygnus.com)
15820
15821 * build-all.mk: Use CC=cc -Xs on Solaris.
15822
15823 Thu Mar 25 15:14:30 1993 Fred Fish (fnf@cygnus.com)
15824
15825 * Makefile.in: Incorporate changes suggested by wilson@cygnus.com
15826 for handling BISON for FSF releases.
15827
15828 Thu Mar 25 06:19:48 1993 Ken Raeburn (raeburn@kr-pc.cygnus.com)
15829
15830 * configure: Actually implement the change zoo just documented.
15831
15832 Wed Mar 24 13:02:44 1993 david d `zoo' zuhn (zoo at poseidon.cygnus.com)
15833
15834 * configure: when using config.guess, only set target_alias when
15835 it's not already been set (ie, on the command line)
15836
15837 Mon Mar 22 23:07:39 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15838
15839 * Makefile.in: add installcheck target, set PRMS to install-prms
15840
15841 Sun Mar 21 16:46:12 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15842
15843 * configure: add support for package_makefile_fragment, handle the
15844 case where a directory has a configure.in file but no Makefile.in
15845 more gracefully (with an actual understandable error message, even);
15846 add support for --without (and add this to the usage message); also
15847 explicitly add a --host=${host_alias} to the command line when
15848 config.guess is used
15849
15850 Sun Mar 21 12:11:58 1993 Jim Wilson (wilson@sphagnum.cygnus.com)
15851
15852 * configure: Must use both --host and --target in recursive calls.
15853
15854 Thu Mar 18 12:31:35 1993 Ian Lance Taylor (ian@cygnus.com)
15855
15856 * Makefile.in: Change deja-gnu to dejagnu.
15857
15858 Mon Mar 15 15:44:35 1993 Ian Lance Taylor (ian@cygnus.com)
15859
15860 * configure.in (h8300-*-*, h8500-*-*): Don't build libg++.
15861
15862 Fri Mar 12 18:30:14 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15863
15864 * configure.in: canonicalize all instances to *-*-solaris2*,
15865 also strip out a number of tools to not build for go32 host
15866
15867 Wed Mar 10 12:08:27 1993 K. Richard Pixley (rich@rtl.cygnus.com)
15868
15869 * config.guess: add GPL.
15870
15871 * Makefile.in, config.guess, config.sub, configure: bump
15872 copyrights to 93.
15873
15874 Wed Mar 10 07:12:48 1993 Ian Lance Taylor (ian@cygnus.com)
15875
15876 * Makefile.in (do-info): Removed obsolete check for existence of
15877 localenv file.
15878
15879 * Makefile.in (MAKEOVERRIDES): Define to be empty.
15880
15881 Wed Mar 10 03:11:56 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15882
15883 * Makefile.in: a couple of 'else true' for decstation,
15884 support for TclX
15885
15886 * configure.in: configure tclX too; don't remove Tk on RS/6000 anymore
15887
15888 Tue Mar 9 16:06:12 1993 K. Richard Pixley (rich@cygnus.com)
15889
15890 * Makefile.in (setup-dirs): change invocation of make to $(MAKE).
15891
15892 Mon Mar 8 14:52:11 1993 Ken Raeburn (raeburn@cambridge)
15893
15894 * config.guess: Recognize i386-ibm-aix (PS/2).
15895 * configure.in: Use config/mh-aix386 file for it.
15896
15897 Mon Mar 8 11:12:43 1993 Ian Lance Taylor (ian@cygnus.com)
15898
15899 * Makefile.in (GCC_FOR_TARGET): Eliminated definition; use
15900 CC_FOR_TARGET instead.
15901 (BASE_FLAGS_TO_PASS): Pass GCC_FOR_TARGET=$(CC_FOR_TARGET).
15902
15903 Wed Mar 3 16:00:28 1993 Steve Chamberlain (sac@ok.cygnus.com)
15904
15905 * Makefile.in: Add sim to list of directories sent with gdb
15906
15907 Wed Mar 3 11:42:39 1993 Ken Raeburn (raeburn@cygnus.com)
15908
15909 * configure.in: Put back mips-dec-bsd* case.
15910
15911 Tue Mar 2 21:15:58 1993 Fred Fish (fnf@cygnus.com)
15912
15913 (Ultrix 2.2 support from Michael Rendell <michael@mercury.cs.mun.ca>)
15914 * configure.in (vax-*-ultrix2*): Add Ultrix 2.2 triplet.
15915 * config.guess: Change 'VAX*:ULTRIX:*:*' to 'VAX*:ULTRIX*:*:*'.
15916
15917 Tue Mar 2 18:11:03 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15918
15919 * configure.in: remove no-op mips-dec-bsd* in "case $target"
15920
15921 * Makefile.in (dir.info): only run gen-info-dir if it exists,
15922 (install-info): install dir.info only if it exists,
15923 (all-expect, install-expect): pass along X11_FLAGS_TO_PASS
15924
15925 Tue Mar 2 09:01:30 1993 Ken Raeburn (raeburn@cygnus.com)
15926
15927 * configure.in: For vms target, skip bfd, ld, binutils. Do build
15928 gas for mips-dec-bsd.
15929
15930 Tue Mar 2 08:35:24 1993 Ian Lance Taylor (ian@cygnus.com)
15931
15932 * configure (makesrcdir): If ${srcdir} is relative and not ".",
15933 and ${subdir} is not ".", set makesrcdir based on ${invsubdir}.
15934
15935 Tue Feb 23 14:18:28 1993 Mike Werner (mtw@poseidon.cygnus.com)
15936
15937 * configure.in: Added "dejagnu" to hosttools list.
15938
15939 Mon Feb 22 23:28:38 1993 Per Bothner (bothner@rtl.cygnus.com)
15940
15941 * config.sub, configure.in, config.guess: Add support
15942 for Bosx, an AIX variant from Bull.
15943 Patches from F.Pierresteguy@frcl.bull.fr.
15944
15945 Sun Feb 21 11:15:22 1993 Mike Werner (mtw@poseidon.cygnus.com)
15946
15947 * devo/dejagnu: Initial creation of devo/dejagnu.
15948 Migrated dejagnu testcases and support files for testing software
15949 tools to reside as subdirectories, currently called "testsuite",
15950 within the directory of the software tool. Migrated all programs,
15951 support libraries, etc. beloging to dejagnu proper from
15952 devo/deja-gnu to devo/dejagnu. These files were moved "as is"
15953 with no modifications. The changes to these files which will
15954 allow them to configure, build, and execute properly will be made
15955 in a future update.
15956
15957 Fri Feb 19 20:19:39 1993 Brendan Kehoe (brendan@lisa.cygnus.com)
15958
15959 * Makefile.in: Change send_pr to send-pr.
15960 * configure.in: Likewise.
15961 * send_pr: Renamed directory to send-pr.
15962
15963 Fri Feb 19 19:00:13 1993 Per Bothner (bothner@cygnus.com)
15964
15965 * Makefile.in: Add some extra semi-colons (needed if SHELL=bash).
15966
15967 Fri Feb 19 00:59:33 1993 John Gilmore (gnu@cygnus.com)
15968
15969 * README: Update for gdb-4.8 release.
15970 * Makefile.in (gdb.tar.Z): Add texinfo/tex3patch. Build
15971 gdb-xxx.tar.z (gzip'd) file also.
15972
15973 Thu Feb 18 09:16:17 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15974
15975 * Makefile.in: make all-diff depend on all-libiberty
15976
15977 Tue Feb 16 16:06:31 1993 K. Richard Pixley (rich@cygnus.com)
15978
15979 * config.guess: add vax-ultrix in the spirit of mips-ultrix.
15980
15981 Tue Feb 16 05:57:15 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15982
15983 * configure.in, Makefile.in: add hello, tar, gzip, recode, indent
15984
15985 Tue Feb 16 00:58:20 1993 John Gilmore (gnu@cygnus.com)
15986
15987 * Makefile.in (DEVO_SUPPORT): Remove etc directory
15988 (ETC_SUPPORT): Only add the files GDB wants from etc/.
15989 (gdb.tar.Z): Use ETC_SUPPORT. Use byacc when building the file.
15990
15991 Thu Feb 11 20:14:28 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15992
15993 * Makefile.in: makeinfo binary is in a new location
15994
15995 Tue Feb 9 12:42:27 1993 Ian Lance Taylor (ian@cygnus.com)
15996
15997 * config.sub: Accept -ecoff as an OS.
15998
15999 * Makefile.in: Various changes to eliminate a level of make
16000 recursion and reduce the required command line length.
16001 (BASE_FLAGS_TO_PASS): New variable holding flags passed to all
16002 sub-makes.
16003 (EXTRA_HOST_FLAGS, EXTRA_TARGET_FLAGS, EXTRA_GCC_FLAGS): New
16004 variables holding settings for specific sub-makes.
16005 (FLAGS_TO_PASS, TARGET_FLAGS_TO_PASS, GCC_FLAGS_TO_PASS): Rewrote
16006 in terms of BASE_FLAGS_TO_PASS.
16007 (TARGET_LIBS): New variable listing directories which use
16008 TARGET_FLAGS_TO_PASS.
16009 (subdir_do): Eliminated.
16010 (do-*): New set of targets to replace subdir_do.
16011 (various): All targets which used subdir_do now depend on do-*.
16012 (local-clean): Renamed from do_clean.
16013 (local-distclean): New target, dependency of distclean and
16014 realclean.
16015 (install-info): Don't create directories. Depend on dir.info
16016 rather than calling make recursively.
16017 (install-dir.info): Eliminated.
16018 (install-info-dirs): Create all info directories here.
16019 (dir.info): Depend upon do-install-info.
16020
16021 * test-build.mk (HOLES): Added false.
16022
16023 Sat Feb 6 14:05:09 1993 Per Bothner (bothner@rtl.cygnus.com)
16024
16025 * config.guess: Recognize BSDI and BSDJ (Jolitz 386bsd).
16026
16027 Thu Feb 4 20:49:18 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16028
16029 * Makefile.in (info): remove dependency on all-texinfo. The
16030 problem was really in texinfo/C, not at this level.
16031
16032 Thu Feb 4 13:38:41 1993 Ian Lance Taylor (ian@cygnus.com)
16033
16034 * Makefile.in (info): Added dependency on all-texinfo (PR 2112).
16035
16036 Thu Feb 4 01:50:53 1993 John Gilmore (gnu@cygnus.com)
16037
16038 * Makefile.in (make-gdb.tar.Z): Change BISON to 'bison -y' for
16039 GDB releases.
16040
16041 Wed Feb 3 17:22:16 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
16042
16043 * configure: Include srcdir in message about target of link not
16044 being found. Don't convert `-' to `_' in `with' options being
16045 passed to subdirs.
16046
16047 Tue Feb 2 18:57:59 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16048
16049 * configure.in: add uudecode to host_tools
16050
16051 * Makefile.in: added {all,install}-uudecode targets, added them to
16052 the appropriate lists
16053
16054 Tue Feb 2 11:45:53 1993 Ian Lance Taylor (ian@cygnus.com)
16055
16056 * Makefile.in (all-gcc): Added dependency on all-gas.
16057
16058 * configure.in (mips-*-*): Build ld and binutils.
16059
16060 Mon Feb 1 12:35:41 1993 K. Richard Pixley (rich@rtl.cygnus.com)
16061
16062 * configure: check return code from mkdir, print error message and
16063 exit on failure.
16064
16065 Sat Jan 30 16:40:28 1993 John Gilmore (gnu@cygnus.com)
16066
16067 * Makefile.in (make-gdb.tar.Z): New location for texinfo.tex.
16068
16069 Thu Jan 28 15:09:59 1993 Ian Lance Taylor (ian@cygnus.com)
16070
16071 * test-build.mk (HOLES): Added tar, cpio and uudecode.
16072
16073 Wed Jan 27 16:50:32 1993 Jim Wilson (wilson@sphagnum.cygnus.com)
16074
16075 * config.sub (h8500): Recognize this as a cpu type.
16076
16077 Sat Jan 23 20:32:01 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16078
16079 * configure: source directory missing is no longer a warning
16080
16081 * configure.in: recognize irix[34]* instead of irix[34]
16082
16083 * Makefile.in: define and pass down X11_LIB
16084
16085 Sat Jan 23 13:49:40 1993 Per Bothner (bothner@cygnus.com)
16086
16087 * guess-systype: Renamed to ...
16088 * config.guess: ... by popular request.
16089 * configure.in, Makefile.in: Update accordingly.
16090
16091 Thu Jan 21 12:20:55 1993 Per Bothner (bothner@cygnus.com)
16092
16093 * guess-systype: Patches from John Eaton <jwe@che.utexas.edu>:
16094 + Add Convex, Cray/Unicos, and Encore/Multimax support.
16095 + Execute ./dummy instead of assuming . is in PATH.
16096
16097 Tue Jan 19 17:18:06 1993 Per Bothner (bothner@cygnus.com)
16098
16099 * guess-systype: New shell script. Attempts to guess the
16100 canonical host name of the executing host.
16101 Only a few hosts are supported so far.
16102 * configure: Call guess-systype if no host is specified.
16103
16104 Tue Jan 19 08:26:07 1993 Ian Lance Taylor (ian@cygnus.com)
16105
16106 * Makefile.in (gcc-no-fixedincludes): Made to work with current
16107 gcc Makefile.
16108
16109
16110 Fri Jan 15 10:27:02 1993 Ian Lance Taylor (ian@cygnus.com)
16111
16112 * Makefile.in (GCC_FLAGS_TO_PASS): New variable.
16113 (all-gcc, install-gcc, subdir_do): Use it.
16114
16115 Wed Jan 13 17:06:45 1993 Jim Wilson (wilson@sphagnum.cygnus.com)
16116
16117 * Makefile.in: Rename uninstalled gcc driver from gcc to xgcc.
16118
16119 Wed Jan 6 20:29:16 1993 Mike Werner (mtw@rtl.cygnus.com)
16120
16121 * Makefile.in: Removed explicit setting of SUBDIRS. SUBDIRS is now
16122 set exclusively by configure, using configure.in .
16123
16124 Wed Jan 6 13:44:11 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16125
16126 * test-build.mk: set $PATH for all builds
16127
16128 * Makefile.in: pass TARGET_FLAGS_TO_PASS for xiberty and libm
16129
16130 Wed Jan 6 11:02:10 1993 Fred Fish (fnf@cygnus.com)
16131
16132 * Makefile.in (GCC_FOR_TARGET): Supply a default that matches
16133 the one used in gcc/Makefile.in, so that a null expansion doesn't
16134 override the one needed to build gcc with a native cc.
16135
16136
16137 Tue Jan 5 07:55:12 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
16138
16139 * configure: Accept -with arguments.
16140
16141 Sun Jan 3 15:15:09 1993 Steve Chamberlain (sac@thepub.cygnus.com)
16142
16143 * Makefile.in: added h8300sim
16144
16145 Tue Dec 29 15:06:00 1992 Ian Lance Taylor (ian@cygnus.com)
16146
16147 * build-all.mk: If canonhost is i386-unknown-sco3.2v4, change it
16148 to i386-sco3.2v4. Set TARGETS and CFLAGS for i386-sco3.2v4.
16149 (all-cygnus, native, build-cygnus): Make
16150 $(canonhost)-stamp-3stage-done, not $(host)....
16151 * test-build.mk (stamp-3stage-compared): Use tail +10c for
16152 i386-sco3.2v4. Added else true to if command.
16153
16154 Mon Dec 28 12:08:56 1992 Ken Raeburn (raeburn@cygnus.com)
16155
16156 * config.sub: (from FSF) Sequent uses a BSD-like OS.
16157
16158 Mon Dec 28 08:32:06 1992 Minh Tran-Le (mtranle@paris.intellicorp.com)
16159
16160 * configure.in (i[34]86-*-isc*): added; uses mh-sysv.
16161
16162 Thu Dec 24 17:26:24 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16163
16164 * configure.in: don't remove binutils from Solaris builds
16165
16166 Thu Dec 24 14:08:38 1992 david d`zoo' zuhn (zoo@cygnus.com)
16167
16168 * Makefile.in: get rid of earlier definitions for *clean,
16169 also handle the recursive info rule better
16170
16171 Thu Dec 24 12:40:21 1992 Per Bothner (bothner@rtl.cygnus.com)
16172
16173 * Makefile.in (mostlyclean, distclean, realclean): Fix to
16174 do more-or-less the right thing.
16175
16176 Wed Dec 16 10:25:31 1992 Ian Lance Taylor (ian@cygnus.com)
16177
16178 * Makefile.in: Add lines defining CC and CXX, and use CXX rather
16179 than gcc in definitions of CXX_FOR_BUILD and CXX_FOR_TARGET.
16180
16181 Tue Dec 15 00:34:32 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16182
16183 * Makefile.in: change all $(host_cpu)-$(host_vendor)-$(host_os) to
16184 $(host_canonical).
16185
16186 * configure.in: split the configdirs list into 4 categories (native
16187 v. cross, library v. tool) and handle the cross-only and native-
16188 only in more reasonable (and correct!) way.
16189
16190 Mon Dec 14 17:04:22 1992 Stu Grossman (grossman at cygnus.com)
16191
16192 * configure.in (hppa*-*-*): Don't remove bfd and gdb from
16193 configdirs anymore.
16194
16195 Sun Dec 13 00:37:26 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16196
16197 * Makefile.in: extensive cleanup:: removed all of the explicit
16198 clean-* targets, collapsed many wrappers around subdir_do into
16199 one, added additional targets to satisfy standards.texi, deleted
16200 some old targets, some changes for consistency
16201
16202 Fri Dec 11 20:18:02 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16203
16204 * configure.in: handle some programs as cross-only, and others as
16205 native only
16206
16207 * test-build.mk: handle partial holes in a more generic manner
16208
16209 * Makefile.in: m4 depends on libiberty
16210
16211 Thu Dec 3 21:52:11 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16212
16213 * configure.in: add m4, textutils, fileutils, sed, shellutils,
16214 time, wdiff, and find to configdirs
16215
16216 * Makefile.in: all, clean, and install rules for the new programs
16217 added to configure.in
16218
16219 Mon Nov 30 14:54:34 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16220
16221 * configure.in: use mh-sun for all *-sun-* hosts
16222
16223 Fri Nov 27 18:35:54 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16224
16225 * Makefile.in: define flags for X11 include files and library file
16226 locations, pass them down to the programs that need this info
16227
16228 * build-all.mk: added a 'native' target, to 3stage the native toolchain
16229
16230 Sun Nov 22 18:59:13 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16231
16232 * configure.in: start building libg++ for HP-UX targets
16233
16234 Wed Nov 18 19:33:11 1992 John Gilmore (gnu@cygnus.com)
16235
16236 * README: Update references to files moved into etc/.
16237
16238 Sun Nov 15 09:36:08 1992 Fred Fish (fnf@cygnus.com)
16239
16240 * config.sub (i386sol2, i486sol2): i[34]86-unknown-solaris2.
16241 * configure.in (i[34]86-*-solaris2*): Use config/mh-sysv4.
16242
16243 Thu Nov 12 08:50:42 1992 Ian Lance Taylor (ian@cygnus.com)
16244
16245 * configure: accept dash as well as underscore in long option
16246 names for FSF compatibility.
16247
16248 Wed Nov 11 08:04:37 1992 Ian Lance Taylor (ian@cygnus.com)
16249
16250 * config.sub: added -sco3.2v4 support from FSF.
16251
16252 Sun Nov 8 21:14:30 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16253
16254 * configure.in: expand the section that adds or removes
16255 directories from the list of programs to build, to handle native
16256 vs. cross in addition to host v. native
16257
16258 Sat Nov 7 18:52:27 1992 Per Bothner (bothner@rtl.cygnus.com)
16259
16260 * Makefile.in: Replace C++ in macro names with CXX.
16261 This is less likely to break ...
16262
16263 Sat Nov 7 15:16:58 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16264
16265 * test-build.mk: add -w to GNU_MAKE
16266
16267 Fri Nov 6 23:10:37 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16268
16269 * config.sub: remove 'sparc'-->'sparc-sun' default transformation,
16270 add 'sparc' to list of recognized cpus. This needed to make
16271 'sparc-aout' expand to 'sparc-unknown-aout' instead of 'sparc-sun-aout'.
16272 Delete some redundant ose68 variants. Recognize -wrs as an os,
16273 then changes that into $CPU-wrs-vxworks.
16274
16275 * configure.in: remove most references to gdbtest, regularize
16276 target based program removal
16277
16278 * test-build.mk: import from p3 tree (many fixes and changes)
16279
16280 Fri Nov 6 20:59:00 1992 david d `zoo' zuhn (zoo@cygnus.com)
16281
16282 * Makefile.in: added rules to handle tcl, tk, and expect
16283
16284 * configure.in: handle those directories if they exist
16285
16286 Thu Nov 5 14:35:41 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16287
16288 * config.sub: removed bogus hppabsd and hppahpux names, since
16289 "hppa" is not a valid cpu (hppa1.1 or hppa1.0 are, though)
16290
16291 Thu Oct 29 00:12:41 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16292
16293 * Makefile.in: all-gcc now depends on all-binutils. all-libg++
16294 depends upon all-xiberty
16295
16296 * Makefile.in: changes from p3, including:
16297
16298 Thu Oct 8 15:00:17 1992 Ian Lance Taylor (ian@cygnus.com)
16299
16300 * Makefile.in (XTRAFLAGS): include newlib directories if
16301 newlib/Makefile exists, rather than if host != target.
16302
16303 Fri Sep 25 13:41:52 1992 Ian Lance Taylor (ian@cygnus.com)
16304
16305 * Makefile.in: added -nostdinc to XTRAFLAGS if we are using gcc
16306 from the same source tree and not building a cross-compiler. This
16307 matters for the libg++ configuration if reconfiguring a tree that
16308 has already been installed.
16309
16310 Thu Sep 10 10:35:51 1992 Ian Lance Taylor (ian@cygnus.com)
16311
16312 * Makefile.in: added -I for newlib/targ-include to XTRAFLAGS, to
16313 pick up the machine and system specific header files.
16314
16315 * Makefile.in: added AS_FOR_TARGET, passed down in
16316 TARGET_FLAGS_TO_PASS. Added CC_FOR_BUILD, which is intended to be
16317 the C compiler to use to create programs which are run in the
16318 build environment, set it to default to $(CC), and passed it down
16319 in FLAGS_TO_PASS and TARGET_FLAGS_TO_PASS.
16320
16321 Mon Sep 7 22:34:42 1992 Ian Lance Taylor (ian@cirdan.cygnus.com)
16322
16323 * Makefile.in: add $(host) = $(target) tests back to *_FOR_TARGET.
16324 We need them for unusual native builds, like systems without
16325 ranlib.
16326
16327 * configure: also define $(host_canonical) and
16328 $(target_canonical), which are the full, canonical names for the
16329 given host and target
16330
16331 Sun Nov 1 16:38:17 1992 Per Bothner (bothner@cygnus.com)
16332
16333 * Makefile.in: Added separate definitions for C++.
16334
16335 Fri Oct 30 11:37:52 1992 Fred Fish (fnf@cygnus.com)
16336
16337 * configure.in (configdirs): Add deja-gnu.
16338
16339 Fri Oct 23 00:39:18 1992 John Gilmore (gnu@cygnus.com)
16340
16341 * README: Update for configure.texi and gdb-4.7 release.
16342
16343 Wed Oct 21 21:54:27 1992 John Gilmore (gnu@cygnus.com)
16344
16345 * Makefile.in: Move "all" target to top of file.
16346 Previously, first target was ".PHONY" which caused BSD4.4 make
16347 to build .PHONY when make was run without arguments.
16348
16349 Mon Oct 19 01:17:54 1992 John Gilmore (gnu@cygnus.com)
16350
16351 * Makefile.in: Add COPYING.LIB to GDB releases, now that there's
16352 Library-copylefted code in libiberty.
16353
16354 Tue Oct 13 01:22:32 1992 John Gilmore (gnu@cygnus.com)
16355
16356 * config.sub: Replace m68kmote with plain old m68k.
16357
16358 Fri Oct 9 03:14:24 1992 John Gilmore (gnu@cygnus.com)
16359
16360 * Makefile.in: Remove space from blank line, avoid Make complaints.
16361
16362 Thu Oct 8 18:41:45 1992 Ken Raeburn (raeburn@cygnus.com)
16363
16364 * config.sub: Complain if no argument is given. Added support for
16365 386bsd as OS and target alias.
16366
16367 Thu Oct 8 15:07:22 1992 Ian Lance Taylor (ian@cygnus.com)
16368
16369 * Makefile.in (XTRAFLAGS): include newlib directories if
16370 newlib/Makefile exists, rather than if host != target.
16371
16372 Mon Oct 5 03:00:09 1992 Mark Eichin (eichin at tweedledumber.cygnus.com)
16373
16374 * config.sub: recognize sparclite-wrs-vxworks.
16375
16376 * Makefile.in (install-xiberty): added *-xiberty make rules (from
16377 p3.) Added clean-xiberty to clean.
16378
16379 Thu Oct 1 17:59:19 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16380
16381 * configure.in: use *-*-* instead of nested cases for host and target
16382
16383 Tue Sep 29 14:11:18 1992 Ian Lance Taylor (ian@cygnus.com)
16384
16385 * Makefile.in: added -nostdinc to XTRAFLAGS if we are using gcc
16386 from the same source tree and not building a cross-compiler. This
16387 matters for the libg++ configuration if reconfiguring a tree that
16388 has already been installed.
16389
16390 Sep 20 08:53:10 1992 Fred Fish (fnf@cygnus.com)
16391
16392 * config.sub (i486v/i486v4): Merge in from FSF version.
16393
16394 Fri Sep 18 00:32:00 1992 Mark Eichin (eichin@cygnus.com)
16395
16396 * configure: only set PWD if it is already set.
16397
16398 Thu Sep 17 23:05:53 1992 Mark Eichin (eichin@cygnus.com)
16399
16400 * configure: just set PWD=`pwd` at the top, since Ultrix sh
16401 doesn't have unset and all success paths (and most error paths)
16402 out set it anyway. (Note: should change all uses of ${PWD=`pwd`}
16403 to just ${PWD} to avoid confusion.)
16404
16405 Tue Sep 15 16:00:54 1992 Ian Lance Taylor (ian@cygnus.com)
16406
16407 * configure: always set $(tooldir) to $(libdir)/$(target_alias),
16408 even for a native compilation.
16409
16410 Tue Sep 15 02:22:56 1992 John Gilmore (gnu@cygnus.com)
16411
16412 Changes to make the gdb.tar.Z rule work better.
16413
16414 * Makefile.in (GDB_SUPPORT_DIRS): Add opcodes.
16415 (DEVO_SUPPORT): Add configure.texi.
16416 (bfd-ilrt.tar.Z): Remove ancient rule.
16417
16418 Thu Sep 10 10:43:19 1992 Ian Lance Taylor (ian@cygnus.com)
16419
16420 * Makefile.in: added -I for newlib/targ-include to XTRAFLAGS, to
16421 pick up the machine and system specific header files.
16422
16423 * configure.in, config.sub: added new target m68010-adobe-scout,
16424 with alias of adobe68k. Changed configure.in to check for
16425 -scout before -sco* to avoid a false match.
16426
16427 * Makefile.in: added AS_FOR_TARGET, passed down in
16428 TARGET_FLAGS_TO_PASS. Added CC_FOR_BUILD, which is intended to be
16429 the C compiler to use to create programs which are run in the
16430 build environment, set it to default to $(CC), and passed it down
16431 in FLAGS_TO_PASS and TARGET_FLAGS_TO_PASS.
16432
16433 Wed Sep 9 12:21:42 1992 Ian Lance Taylor (ian@cygnus.com)
16434
16435 * Makefile.in: added TARGET_FLAGS_TO_PASS, CC_FOR_TARGET,
16436 AR_FOR_TARGET, RANLIB_FOR_TARGET, NM_FOR_TARGET. Pass
16437 TARGET_FLAGS_TO_PASS, which defines CC, AR, RANLIB and NM as the
16438 FOR_TARGET variants, to newlib and libg++.
16439
16440 Tue Sep 8 17:28:30 1992 Ken Raeburn (raeburn@cambridge.cygnus.com)
16441
16442 * Makefile.in (all-gas, all-gdb): Require all-opcodes to be built
16443 first.
16444
16445 Wed Sep 2 02:50:05 1992 John Gilmore (gnu@cygnus.com)
16446
16447 * config.sub: Accept `elf' as an environment.
16448
16449 Tue Sep 1 15:48:30 1992 Steve Chamberlain (sac@thepub.cygnus.com)
16450
16451 * Makefile.in (all-opcodes): cd into the right directory
16452
16453 Sun Aug 30 21:12:11 1992 Ian Lance Taylor (ian@cygnus.com)
16454
16455 * configure: added -program_transform_name option, used as
16456 argument to sed when installing programs.
16457 configure.texi: added documentation for -program_prefix,
16458 -program_suffix and -program_transform_name.
16459
16460 Thu Aug 27 21:59:44 1992 John Gilmore (gnu@cygnus.com)
16461
16462 * config.sub: Accept i486 where i386 ok.
16463
16464 Thu Aug 27 13:04:42 1992 Brendan Kehoe (brendan@rtl.cygnus.com)
16465
16466 * config.sub: accept we32k
16467
16468 Mon Aug 24 14:05:14 1992 Ian Lance Taylor (ian@cygnus.com)
16469
16470 * config.sub, configure.in: accept OSE68000 and OSE68k.
16471
16472 * Makefile.in: don't create all directories for ``make install'';
16473 let the subdirectories create the ones they need.
16474
16475 Tue Aug 11 23:13:17 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16476
16477 * COPYING: new file, GPL v2
16478
16479 Tue Aug 4 01:12:43 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16480
16481 * Makefile.in: use the new gen-info-dir, which needs a template
16482 argument (which also lives in texinfo)
16483
16484 * configure.texi, standards.texi: fix INFO-DIR-ENTRY
16485
16486 Mon Aug 3 00:34:17 1992 Fred Fish (fnf@cygnus.com)
16487
16488 * config.sub (ncr3000): Change i386 to i486.
16489
16490 Thu Jul 23 00:12:17 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16491
16492 * Makefile.in: add install-rcs, install-grep to
16493 install-no-fixedincludes, removed install-bison and install-libgcc
16494
16495 Tue Jul 21 01:01:50 1992 david d `zoo' zuhn (zoo@cygnus.com)
16496
16497 * configure.in: grab the HPUX makefile fragment if on HPUX
16498
16499 Mon Jul 20 11:02:09 1992 D. V. Henkel-Wallace (gumby@cygnus.com)
16500
16501 * Makefile.in: eradicate bison spoor (ditto libgcc).
16502 configure.in: recognise m68{k,000}-ericsson-OSE.
16503 es1800 is alias for m68k-ericsson-OSE
16504
16505 Sun Jul 19 17:49:02 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16506
16507 * configure.in: rearrange the parts that remove programs from
16508 configdirs, based now on HOST==TARGET or by canonical triple.
16509
16510 Fri Jul 17 22:52:49 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16511
16512 * test-build.mk: recurse explicitly with -f test-build.mk when
16513 appropriate. predicate stage3 and comparison on the existence
16514 of gcc. That is, if gcc isn't around, we aren't three-staging.
16515 On very clean, also remove ...stamp-co. Build in-place before
16516 doing other builds.
16517
16518 Thu Jul 16 18:33:09 1992 Steve Chamberlain (sac@thepub.cygnus.com)
16519
16520 * Makefile.in, configure.in: add tgas
16521
16522 Thu Jul 16 16:05:28 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16523
16524 * Makefile.in: a number of changes merged in from progressive.
16525
16526 * configure.in: add libm.
16527
16528 * .cvsignore: ignore some stuff that comes from test-build.mk.
16529
16530 Tue Jul 7 00:24:52 1992 Fred Fish (fnf@cygnus.com)
16531
16532 * config.sub: Add es1800 (m68k-ericsson-es1800).
16533
16534 Tue Jun 30 20:24:41 1992 D. V. Henkel-Wallace (gumby@cygnus.com)
16535
16536 * configure: Add program_suffix (parallel to program_prefix)
16537 * Makefile.in: adjust directory-creating script for losing decstation
16538
16539 Mon Jun 22 23:43:48 1992 Per Bothner (bothner@cygnus.com)
16540
16541 * configure: Minor $subdir-related fixes.
16542
16543 Mon Jun 22 18:30:26 1992 Steve Chamberlain (sac@thepub.cygnus.com)
16544
16545 * configure: fix various problems with propogating
16546 makefile_target_frag in subdirs.
16547 * configure.in: config libgcc if its there
16548
16549 Fri Jun 19 15:19:40 1992 Stu Grossman (grossman at cygnus.com)
16550
16551 * config.sub: HPPA merge.
16552
16553 Sun Jun 14 10:29:19 1992 John Gilmore (gnu at cygnus.com)
16554
16555 * Makefile.in: Replace all-bison with all-byacc in all
16556 dependency lines for other tools (which now use byacc).
16557
16558 Fri Jun 12 22:21:57 1992 John Gilmore (gnu at cygnus.com)
16559
16560 * config.sub: Add sun4sol2 => sparc-sun-solaris2.
16561
16562 Thu Jun 4 12:07:32 1992 Mark Eichin (eichin@cygnus.com)
16563
16564 * Makefile.in: make gprof rules similar to byacc rules (instead of
16565 vestigal $(unsubdir) that didn't work...)
16566
16567 Thu Jun 4 00:37:05 1992 Per Bothner (bothner@rtl.cygnus.com)
16568
16569 * config.sub: Add support for Linux.
16570 * Makefile.in: Use $(FLAGS_TO_PASS) more consistently
16571 (at least for libg++).
16572
16573 Tue Jun 02 20:03:00 1992 david d `zoo' zuhn (zoo@cygnus.com)
16574
16575 * configure.texi: fix doc for the -nfp option to configure
16576
16577 Tue Jun 2 17:20:52 1992 Michael Tiemann (tiemann@cygnus.com)
16578
16579 * Makefile.in (all-binutils): ar needs flex, so depend on all-flex.
16580
16581 Sun May 31 15:04:08 1992 Mark Eichin (eichin at cygnus.com)
16582
16583 * config.sub: changed [^-]+ to [^-][^-]* so that it works under
16584 Sun sed. (BSD 4.3 sed doesn't handle [^-]+ either.)
16585 * configure.in: added solaris* host_makefile_frag hook.
16586
16587 Sun May 31 01:10:34 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16588
16589 * config.sub: changed recognition of m68000 so that various
16590 m68k types can be specified via m680[01234]0
16591
16592 Sat May 30 21:01:06 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16593
16594 * config.sub (basic_machine): fix sed so that '-foo' isn't
16595 completely substituted out while .+'-foo' loses the '-foo'
16596
16597 Wed May 27 23:18:52 1992 Michael Tiemann (tiemann@rtl.cygnus.com)
16598
16599 * config.sub ($os): Add -aout.
16600
16601 Fri May 22 14:00:02 1992 Per Bothner (bothner@cygnus.com)
16602
16603 * configure: If host_makefile_frag is absolute, don't
16604 prefix ${invsubdir} (relevant to libg++ auto-configure).
16605
16606 Thu May 21 18:00:09 1992 Michael Tiemann (tiemann@rtl.cygnus.com)
16607
16608 * Makefile.in (tooldir): Define it.
16609 (all-ld): Depend on all-flex.
16610
16611 Sun May 10 21:45:59 1992 Per Bothner (bothner@rtl.cygnus.com)
16612
16613 * Makefile.in (check): Fix libg++ special case.
16614
16615 Fri May 8 08:31:41 1992 K. Richard Pixley (rich@cygnus.com)
16616
16617 * configure: do not bury `pwd` into config.status, thus do fewer
16618 pwd's.
16619
16620 * configure: print the "Building in" message only when building in
16621 other than "." AND verbose.
16622
16623 * configure: remove -s, rework -v to better accomodate guested
16624 configures.
16625
16626 * standards.texi: updated to 3 may, fixed librid <-> libdir typo.
16627
16628 Fri May 1 18:00:50 1992 K. Richard Pixley (rich@cygnus.com)
16629
16630 * Makefile.in: macroize flags passed on recursion. remove
16631 fileutils.
16632
16633 Thu Apr 30 08:56:20 1992 K. Richard Pixley (rich@cygnus.com)
16634
16635 * configure: get makesrcdir right for subdirs deeper than 1.
16636
16637 * Makefile.in: pass INSTALL, INSTALL_DATA, INSTALL_PROGRAM on
16638 install.
16639
16640 Fri Apr 24 15:51:51 1992 K. Richard Pixley (rich@cygnus.com)
16641
16642 * Makefile.in: don't print subdir_do or recursion lines.
16643
16644 Fri Apr 24 15:22:04 1992 K. Richard Pixley (rich@cygnus.com)
16645
16646 * standards.texi: added menu item.
16647
16648 * Makefile.in: build and install standards.info.
16649
16650 * standards.texi: new file.
16651
16652 Wed Apr 22 18:06:55 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16653
16654 * configure: test for and move config.status pieces from
16655 ${subdir}/.
16656
16657 Wed Apr 22 14:38:34 1992 Fred Fish (fnf@cygnus.com)
16658
16659 * configure: Test for existance of files before trying to mv
16660 them, to avoid numerous non-existance messages.
16661
16662 Tue Apr 21 12:31:33 1992 K. Richard Pixley (rich@cygnus.com)
16663
16664 * configure: correct final line of config.status.
16665
16666 * configure: patch from eggert. Avoids a protection problem if
16667 the original Makefile.in is read only.
16668
16669 * configure: use move-if-change from gcc to create config.status.
16670 Some makefiles depend on config.status to tell if a directory
16671 has been reconfigured for a different host. This change
16672 prevents those directories from remaking everything in the case
16673 where the reconfig was only intended to rebuild a Makefile.
16674
16675 * configure: test for config.sub with "config.sub sun4" rather
16676 than "config.sub ${host_alias}". Otherwise we can't tell a bad
16677 host alias from a missing config.sub.
16678
16679 Mon Apr 20 18:16:36 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16680
16681 * Makefile.in: explicitly pass CFLAGS on recursion. no longer pass
16682 MINUS_G (this can be done with CFLAGS). Default CFLAGS to -g.
16683
16684 Fri Apr 17 18:27:51 1992 Per Bothner (bothner@cygnus.com)
16685
16686 * configure: mkdir ${subdir} as needed.
16687
16688 Wed Apr 15 17:37:22 1992 K. Richard Pixley (rich@cygnus.com)
16689
16690 * Makefile.in,configure.in: added autoconf.
16691
16692 Wed Apr 15 17:27:34 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16693
16694 * Makefile.in: no longer pass against on recursion.
16695
16696 * Makefile.in: added .NOEXPORT: so that stray makefile_frag
16697 definitions are not inherited.
16698
16699 * configure: correct makesrcdir when subdir is .
16700
16701 Tue Apr 14 11:56:09 1992 Per Bothner (bothner@cygnus.com)
16702
16703 * configure: Add support for 'subdirs' variable, which is
16704 like 'configdirs', except that configure doesn't re-invoke
16705 itself for subdirs, it just creates a Makefile for each subdir.
16706 * configure.texi: Document subdirs.
16707
16708 Mon Apr 13 18:50:16 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16709
16710 * configure.in: added flex to configdirs
16711
16712 Mon Apr 13 18:43:55 1992 K. Richard Pixley (rich@cygnus.com)
16713
16714 * Makefile.in: remove clean-stamps from clean.
16715
16716 Sat Apr 11 03:52:03 1992 John Gilmore (gnu at cygnus.com)
16717
16718 * configure.in: Add gdbtest to configdirs.
16719
16720 Fri Apr 10 23:11:49 1992 Fred Fish (fnf@cygnus.com)
16721
16722 * Makefile.in (MINUS_G): Add macro, default to -g, pass on
16723 to recursive makes.
16724 * configure.in: Recognize new ncr3000 config.
16725
16726 Wed Apr 8 23:08:12 1992 K. Richard Pixley (rich@cygnus.com)
16727
16728 * Makefile.in, configure.in: removed references to gdbm.
16729
16730 Tue Apr 7 16:48:20 1992 Per Bothner (bothner@cygnus.com)
16731
16732 * config.sub: Don't canonicalize os value
16733 newsos* to bsd (readline needs to check for newsos).
16734 (This fix was earlier made Jan 31, but got re-broken.)
16735
16736 Mon Apr 6 14:34:08 1992 Stu Grossman (grossman at cygnus.com)
16737
16738 * configure.in: sco is an os, not a vendor!
16739
16740 * configure: Quote $( better. Keep various shells happy.
16741
16742 Tue Mar 31 16:32:57 1992 K. Richard Pixley (rich@cygnus.com)
16743
16744 * Makefile.in: eliminate stamp-files.
16745
16746 Mon Mar 30 22:20:23 1992 K. Richard Pixley (rich@cygnus.com)
16747
16748 * Makefile.in: add send_pr. remove "force" from .stmp-gprof rule.
16749 Supress echoing of all the "if [ -d ... $(MAKE)" lines.
16750
16751 Wed Mar 25 15:20:04 1992 Stu Grossman (grossman@cygnus.com)
16752
16753 * config.sub: fix iris/iris3.
16754
16755 Wed Mar 25 10:34:19 1992 K. Richard Pixley (rich@cygnus.com)
16756
16757 * configure: re-add -rm.
16758
16759 Tue Mar 24 23:50:16 1992 K. Richard Pixley (rich@cygnus.com)
16760
16761 * Maskefile.in: add .stmp-rcs to all.
16762
16763 * configure.in: remove gas from rs6000 build, use aix host fragment.
16764
16765 Mon Mar 23 19:43:35 1992 K. Richard Pixley (rich@cygnus.com)
16766
16767 * configure: pass down site_option during recursion.
16768
16769 Thu Mar 19 16:49:36 1992 Stu Grossman (grossman at cygnus.com)
16770
16771 * Makefile.in (all.cross): Add .stmp-bfd .stmp-readline.
16772
16773 Wed Mar 18 15:29:33 1992 Mike Stump (mrs@cygnus.com)
16774
16775 * configure: Change exec_prefix so that it really defaults to prefix.
16776
16777 Sat Mar 14 17:20:38 1992 Fred Fish (fnf@cygnus.com)
16778
16779 * Makefile.in, configure.in: Add support for mmalloc library.
16780
16781 Fri Mar 13 18:44:18 1992 K. Richard Pixley (rich@cygnus.com)
16782
16783 * Makefile.in: add stmp dependencies for a few more things.
16784
16785 Thu Mar 12 04:56:24 1992 K. Richard Pixley (rich@cygnus.com)
16786
16787 * configure: adjusted error message on objdir/srcdir configure
16788 collision, per john's suggestion.
16789
16790 * Makefile.in: add libiberty stmp to all and all.cross.
16791
16792 Wed Mar 11 02:07:52 1992 K. Richard Pixley (rich@cygnus.com)
16793
16794 * Makefile.in: remove force dependencies, add grep to all.
16795
16796 Tue Mar 10 21:49:18 1992 K. Richard Pixley (rich@mars.cygnus.com)
16797
16798 * Makefile.in: drop flex. make stamp files work.
16799
16800 * configure: added test for conflicting configuration in srcdir,
16801 remove trailing slashes from srcdir. Otherwise emacs gdb mode
16802 gets cranky. use relative paths for configure and srcdir
16803 whenever possible. Send some error messages to stderr that were
16804 going to stdout.
16805
16806 Tue Mar 10 18:01:55 1992 Per Bothner (bothner@cygnus.com)
16807
16808 * Makefile.in: Fix libg++ rule to check for gcc directory
16809 before using gcc/gcc. Also pass XTRAFLAGS.
16810
16811 Thu Mar 5 21:45:07 1992 K. Richard Pixley (rich@sendai)
16812
16813 * Makefile.in: added stmp-files so that directories aren't polled
16814 when they are already built.
16815
16816 * configure.texi: fixed a node pointer problem.
16817
16818 Thu Mar 5 12:05:58 1992 Stu Grossman (grossman at cygnus.com)
16819
16820 * config.sub configure.in gdb/configure.in
16821 gdb/mips-tdep.c gdb/mipsread.c gdb/procfs.c gdb/signame.h
16822 gdb/tm-irix3.h gdb/tm-mips.h gdb/xm-irix4.h gdb/config/mt-irix3
16823 gdb/config/mh-irix4 texinfo/configure.in: Port to SGI Irix-4.x.
16824
16825 Wed Mar 4 02:57:46 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16826
16827 * configure: -recurring becomes -silent. corrected help message
16828 for -site= option.
16829
16830 * Makefile.in: mkdir $(exec_prefix) and $(tooldir).
16831
16832 Tue Mar 3 14:51:21 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16833
16834 * configure: when building Makefile for crosses, replace
16835 tooldir and program_prefix. default srcdir from location of
16836 config.sub. remove "for host in hosts" and "for target in
16837 targets" loops.
16838
16839 Wed Feb 26 19:48:25 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16840
16841 * Makefile.in: Do not pass bindir or mandir to cvs.
16842
16843 Wed Feb 26 18:04:40 1992 K. Richard Pixley (rich@cygnus.com)
16844
16845 * Makefile.in, configure.in: removed traces of namesubdir,
16846 -subdirs, $(subdir), $(unsubdir), some rcs triggers. Forced
16847 copyrights to '92, changed some from Cygnus to FSF.
16848
16849 * configure.texi: remove most references to multiple hosts,
16850 multiple targets, subdirs, etc.
16851
16852 * configure.man: removed rcsid. reference config.sub not
16853 config.subr.
16854
16855 * Makefile.in: mkdir $(infodir) on install-info.
16856
16857 Wed Feb 19 15:41:13 1992 John Gilmore (gnu at cygnus.com)
16858
16859 * configure.texi: Explain better about .gdbinit and about
16860 the environment that configure.in sections run in.
16861
16862 Fri Feb 7 07:55:00 1992 John Gilmore (gnu at cygnus.com)
16863
16864 * configure.in: Ultrix is only a decstation if it's a MIPS.
16865
16866 Fri Jan 31 21:54:51 1992 John Gilmore (gnu at cygnus.com)
16867
16868 * README: DOC.configure => cfg-paper.texi.
16869
16870 Fri Jan 31 21:48:18 1992 Stu Grossman (grossman at cygnus.com)
16871
16872 * config.sub (near case $os): Don't convert newsos* to bsd!
16873
16874 Fri Jan 31 02:27:32 1992 John Gilmore (gnu at cygnus.com)
16875
16876 * Makefile.in: Reinstall change from gdb-4.3 that reduces
16877 the number of copies of COPYING that go into the GDB tar file.
16878
16879 Thu Jan 30 16:17:30 1992 Stu Grossman (grossman at cygnus.com)
16880
16881 * bfd/configure.in, gdb/config/mh-i386sco,
16882 gdb/config/mt-i386v32, gdb/configure.in, readline/configure.in:
16883 Fix SCO configuration stuff.
16884
16885 Tue Jan 28 23:51:07 1992 Per Bothner (bothner at cygnus.com)
16886
16887 * Makefile.in: For libg++, make sure the -I pointing
16888 to the gcc directory goes *after* all the libg++-local -I flags.
16889 Also, move just-gcc dependency from just-libg++ to all-libg++.
16890
16891 Tue Jan 28 12:56:24 1992 Stu Grossman (grossman at cygnus.com)
16892
16893 * configure: Change -x to -f to keep Ultrix /bin/test happy.
16894
16895 Sat Jan 18 17:45:11 1992 Stu Grossman (grossman at cygnus.com)
16896
16897 * Makefile.in (make-gdb.tar.Z): Remove texinfo targets.
16898
16899 Sat Jan 18 17:03:21 1992 Fred Fish (fnf at cygnus.com)
16900
16901 * config.sub: Add stratus configuration frags. Also
16902 submitted to FSF.
16903
16904 Sat Jan 18 15:35:29 1992 Stu Grossman (grossman at cygnus.com)
16905
16906 * Makefile.in (DEV_SUPPORT): add configure.man.
16907
16908 * config.sub(Decode manufacturer-specific): add -none*.
16909
16910 Fri Jan 17 17:58:05 1992 Stu Grossman (grossman at cygnus.com)
16911
16912 * Makefile.in: remove form feeds to make Sun's make happy.
16913 (DEVO_SUPPORT): DOC.configure => cfg-paper.texi.
16914
16915 Sat Jan 4 16:11:44 1992 John Gilmore (gnu at cygnus.com)
16916
16917 * Makefile.in (AR_FLAGS): Make quieter.
16918
16919 Thu Jan 2 22:57:12 1992 John Gilmore (gnu at cygnus.com)
16920
16921 * configure.in: Add libg++.
16922 * configure: When verbose, don't output the command line at each
16923 level; it will be unremarkably the same as the previous version,
16924 which will be the same as what the user typed.
16925
16926 Fri Dec 27 16:26:47 1991 K. Richard Pixley (rich at cygnus.com)
16927
16928 * configure.in, Makefile.in: fix clean-info, add flex. add
16929 fileutils.
16930
16931 * configure: be less sensitive to spaces in Makefile.in. Do not
16932 look for sources in "..". Doing so breaks subdirectories that
16933 might have their own configure. If a subdir has it's own
16934 configure script, use it.
16935
16936 Thu Dec 26 16:30:26 1991 K. Richard Pixley (rich at cygnus.com)
16937
16938 * cfg-paper.texi: some changes suggested by rms.
16939
16940 Thu Dec 26 10:13:36 1991 Fred Fish (fnf at cygnus.com)
16941
16942 * config.sub: Merge in some small additions from the FSF version,
16943 taken from the gcc distribution, to bring the Cygnus and FSF
16944 versions into closer sync.
16945
16946 Fri Dec 20 11:34:18 1991 Fred Fish (fnf at cygnus.com)
16947
16948 * configure.in: Changed svr4 references to sysv4.
16949
16950 Thu Dec 19 15:54:29 1991 K. Richard Pixley (rich at cygnus.com)
16951
16952 * configure: added -V for version number option.
16953
16954 Wed Dec 18 15:39:34 1991 K. Richard Pixley (rich at cygnus.com)
16955
16956 * DOC.configure, cfg-paper.texi: revised, updated, and texinfo'd.
16957 renamed from DOC.configure to cfg-paper.texi.
16958
16959 Mon Dec 16 23:05:19 1991 K. Richard Pixley (rich at rtl.cygnus.com)
16960
16961 * configure, config.subr, config.sub: config.subr is now
16962 config.sub again.
16963
16964 Fri Dec 13 01:17:06 1991 K. Richard Pixley (rich at cygnus.com)
16965
16966 * configure.texi: new file, in progress.
16967
16968 * Makefile.in: build info file and install the man page for
16969 configure.
16970
16971 * configure.man: new file, first cut.
16972
16973 * configure: find config.subr again now that configuration "none"
16974 has gone. removed all traces of the -ansi option. removed all
16975 traces of the -languages option.
16976
16977 * config.subr: resync from rms.
16978
16979 1991-12-11 K. Richard Pixley (rich at rtl.cygnus.com)
16980
16981 * configure, config.sub, config.subr: merge config.sub into
16982 config.subr, call the result config.subr, remove config.sub, use
16983 config.subr.
16984
16985 * Makefile.in: revised install for dir.info.
16986
16987 1991-12-10 K. Richard Pixley (rich at rtl.cygnus.com)
16988
16989 * configure.in: add decstation host makefile frag.
16990
16991 * Makefile.in: BISON now bison -y again. also install-gcc on
16992 install. clean-gdbm on clean. infodir belongs in datadir.
16993 Make directories for info install. Build dir.info here then
16994 install it.
16995
16996 1991-12-09 K. Richard Pixley (rich at rtl.cygnus.com)
16997
16998 * Makefile.in: fix for bad directory tests.
16999
17000 1991-12-07 K. Richard Pixley (rich at rtl.cygnus.com)
17001
17002 * configure: \{1,2\} appears to be a sysv'ism. Use a different
17003 regexp. -srcdir relative was being handled incorrectly.
17004
17005 * Makefile.in: unwrapped some for loops so that parallel makes
17006 work again and so one can focus one's attention on a particular
17007 package.
17008
17009 1991-12-06 K. Richard Pixley (rich at rtl.cygnus.com)
17010
17011 * configure: added PWD as a stand in for `pwd` (for speed). use
17012 elif wherever possible. make -srcdir work without -objdir.
17013 -objdir= commented out.
17014
17015 1991-12-05 K. Richard Pixley (rich at rtl.cygnus.com)
17016
17017 * configure: +options become --options. -subdirs commented out.
17018 added -host, -datadir. Renamed -destdir to -prefix. Comment in
17019 Makefile now at top of generated Makefile. Removed cvs log
17020 entries. added -srcdir. create .gdbinit only if there is one
17021 in ${srcdir}.
17022
17023 * Makefile.in: idestdir and ddestdir go away. Added copyrights
17024 and shift gpl to v2. Added ChangeLog if it didn't exist. docdir
17025 and mandir now keyed off datadir by default.
17026
17027 1991-11-22 K. Richard Pixley (rich at rtl.cygnus.com)
17028
17029 * Freshly created ChangeLog.
17030
17031 \f
17032 Local Variables:
17033 mode: change-log
17034 left-margin: 8
17035 fill-column: 76
17036 version-control: never
17037 End: