]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - ChangeLog
Add markers for 2.40 branch
[thirdparty/binutils-gdb.git] / ChangeLog
1 2022-12-31 Nick Clifton <nickc@redhat.com>
2
3 * 2.40 binutils branch created.
4
5 2022-10-10 Nick Clifton <nickc@redhat.com>
6
7 * src-release.sh: Add "-r <date>" option to create reproducible
8 tarballs based upon a fixed timestamp of <date>.
9 * binutils/README-how-to-make-a-release: Add a line showing how to
10 use -r <date> when creating a binutils release.
11
12 2022-10-04 Nick Clifton <nickc@redhat.com>
13
14 * README-maintainer-mode: Add a minimum version of dejagnu
15 requirement.
16
17 2022-09-08 Nick Clifton <nickc@redhat.com>
18
19 * README-maintainer-mode: Update minimum version of gettext
20 required.
21
22 2022-07-08 Nick Clifton <nickc@redhat.com>
23
24 * 2.39 branch created.
25
26 2022-07-04 Nick Clifton <nickc@redhat.com>
27
28 * libiberty: Synchronize with GCC. Bring in:
29 2022-07-01 Nick Clifton <nickc@redhat.com>
30
31 PR demangler/105039
32 * rust-demangle.c (demangle_const): Add recursion limit.
33
34 2022-06-26 Simon Marchi <simon.marchi@efficios.com>
35
36 * configure.ac: Add AC_CONFIG_MACRO_DIRS call.
37 * configure: Re-generate.
38
39 2022-04-12 Nick Clifton <nickc@redhat.com>
40
41 * zlib: Rebase to the 1.2.12 release.
42
43 2022-04-08 Simon Marchi <simon.marchi@efficios.com>
44
45 * configure.ac: Add AC_SUBST(PKG_CONFIG_PATH).
46 * configure: Re-generate.
47 * Makefile.tpl (HOST_EXPORTS): Pass PKG_CONFIG_PATH.
48 (PKG_CONFIG_PATH): New.
49 * Makefile.in: Re-generate.
50
51 2022-03-15 Jose E. Marchesi <jose.marchesi@oracle.com>
52
53 * gprofng/src/gp-collect-app.cc (collect::check_args): Use
54 fallthrough comment instead of attribute.
55
56 2022-03-11 Vladimir Mezentsev <vladimir.mezentsev@oracle.com>
57
58 * Makefile.def: Add gprofng module.
59 * configure.ac: Add --enable-gprofng option.
60 * src-release.sh: Add gprofng.
61 * Makefile.in: Regenerate.
62 * configure: Regenerate.
63 * gprofng: New directory.
64
65 2022-01-22 Nick Clifton <nickc@redhat.com>
66
67 * 2.38 release branch created.
68
69 2022-01-17 Nick Clifton <nickc@redhat.com>
70
71 Update config.[guess|sub] from upstream:
72
73 2022-01-09 Idan Horowitz <idan.horowitz@gmail.com>
74
75 config.guess: recognize SerenityOS
76 * config.guess (*:SerenityOS:*:*): Recognize.
77 (timestamp): Update.
78
79 2022-01-03 Bernhard Voelker <mail@bernhard-voelker.de>
80
81 Fix GPLv3 license headers to use a comma instead of semicolon
82 See: https://www.gnu.org/licenses/gpl-3.0.html#howto
83
84 Update license headers automatically using the following script:
85
86 $ git grep -l 'Foundation; either version 3' \
87 | xargs sed -i '/Foundation; either version 3/ s/n; e/n, e/'
88
89 * config.guess: Adjust via the above command.
90 (timestamp): Update.
91 * config.sub: Likewise.
92 * doc/config.guess.1: Regenerate.
93 * doc/config.sub.1: Likewise.
94
95 2022-01-01 Dmitry V. Levin <ldv@altlinux.org>
96
97 Update copyright years
98 * config.guess: Update copyright years.
99 * config.sub: Likewise.
100
101 2021-12-25 Dmitry V. Levin <ldv@altlinux.org>
102
103 config.sub: alias armh to armv7l
104 ALT uses armh as an alias for armv7l-alt-linux-gnueabihf since 2012.
105
106 * config.sub (armh-unknown|armh-alt): Set cpu, vendor, and basic_os.
107 (timestamp): Update.
108
109 2021-12-24 Dmitry V. Levin <ldv@altlinux.org>
110
111 config.sub: alias aarch64le to aarch64
112 Apparently, QNX reports aarch64 as aarch64le on little-endian machines.
113
114 * config.sub (aarch64le-*): Set cpu to aarch64.
115 (timestamp): Update.
116
117 2021-12-13 Dmitry V. Levin <ldv@altlinux.org>
118
119 config.sub: fix typo in timestamp
120 * config.sub: Fix timestamp.
121
122 2021-11-30 Andreas F. Borchert <github@andreas-borchert.de>
123
124 config.guess: x86_64-pc-solaris2.11 is not properly recognized
125 config.guess guesses Solaris 11 to run on a 32-bit platform
126 despite Solaris 11 no longer supporting any 32-bit platform.
127
128 See the following code at lines 434 to 445:
129
130 | SUN_ARCH=i386
131 | # If there is a compiler, see if it is configured for 64-bit objects.
132 | # Note that the Sun cc does not turn __LP64__ into 1 like gcc does.
133 | # This test works for both compilers.
134 | if test "$CC_FOR_BUILD" != no_compiler_found; then
135 | if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \
136 | (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \
137 | grep IS_64BIT_ARCH >/dev/null
138 | then
139 | SUN_ARCH=x86_64
140 | fi
141 | fi
142
143 If "cc" is installed, i.e. the Oracle Studio compiler, this one is
144 chosen for $CC_FOR_BUILD. This compiler, the gcc provided by Oracle
145 and also gcc bootstrapped from sources on that platform with a default
146 configuration will by default generate 32-bit binaries -- even on
147 a 64-bit platform. And __amd64 will not be defined for compilations
148 targeting a 32-bit platform. This is different from the corresponding
149 behaviour on GNU/Linux systems where the local platform is targeted by
150 default.
151
152 Thus, as long as you do not add "-m64" or if you have a custom-built
153 gcc which defaults to 64 bit, you will get 32-bit binaries on Solaris
154 despite living on a 64-bit platform.
155
156 * config.guess (i86pc:SunOS:5.*:* || i86xen:SunOS:5.*:*): Adapt the
157 test by adding the "-m64" flag. This will work properly for Solaris
158 10 as well (the last Solaris release that supported x86 32-bit
159 platforms).
160
161 2021-10-27 Jordi Sanfeliu <jordi@fibranet.cat>
162
163 Recognize Fiwix
164 $ make check
165 cd testsuite && bash config-guess.sh && rm uname
166 PASS: config.guess checks (137 tests)
167 cd testsuite && bash config-sub.sh
168 PASS: config.sub checks (882 tests)
169 PASS: config.sub idempotency checks (819 tests)
170 PASS: config.sub canonicalise each config.guess testcase (137 tests)
171
172 * config.guess (i*86:Fiwix:*:*): Recognize.
173 * config.sub (fiwix*): Likewise.
174
175 2021-10-18 Kinshuk Dua <kinshukdua@gmail.com>
176
177 config.sub: Fix typo in comment
178 Fixes: 5e531d391852a54e7fab2d8ff55625fca514b305
179
180 2021-08-14 Nick Bowler <nbowler@draconx.ca>
181
182 config.sub: work around command assignment bug in some shells
183 When combining variable assignments with a shell command, some older
184 shells (notably heirloom-sh and presumably also Solaris 10 /bin/sh)
185 have a bug which causes the assignment to alter the current execution
186 environment whenever the command is a shell built-in. For example:
187
188 % dash -c 'x=good; x=bad echo >/dev/null; echo $x'
189 good
190
191 % jsh -c 'x=good; x=bad echo >/dev/null; echo $x'
192 bad
193
194 The config.sub script contains a few commands of the form:
195
196 IFS=- read ...
197
198 which triggers this bug, causing the IFS assignment to persist for the
199 remainder of the script. This can cause misbehaviour in certain cases,
200 for example:
201
202 % jsh config.sub i386-linux-gnu
203 config.sub: test: unknown operator gnu
204
205 % jsh config.sub i386-gnu/linux
206 sed: can't read s|gnu/linux|gnu|: No such file or directory
207 Invalid configuration `i386-gnu/linux': OS `' not recognized
208
209 * config.sub: Save and restore IFS explicitly to avoid shell bugs.
210 * doc/config.sub.1: Regenerate.
211
212 2021-08-04 Jeremy Soller <jackpot51@gmail.com>
213
214 config.sub: add Linux Relibc Target
215 $ make check
216 cd testsuite && bash config-guess.sh && rm uname
217 PASS: config.guess checks (136 tests)
218 cd testsuite && bash config-sub.sh
219 PASS: config.sub checks (881 tests)
220 PASS: config.sub idempotency checks (818 tests)
221 PASS: config.sub canonicalise each config.guess testcase (136 tests)
222
223 * config.sub (relibc*): Recognize.
224 * doc/config.sub.1: Regenerate.
225 * testsuite/config-sub.data (x86_64-linux-relibc): New test.
226
227 2021-07-06 Stephanos Ioannidis <root@stephanos.io>
228
229 config.sub: add Zephyr RTOS support
230 This adds the Zephyr RTOS targets in preparation for implementing the
231 Zephyr RTOS-specific toolchain support.
232
233 $ make check
234 cd testsuite && bash config-guess.sh && rm uname
235 PASS: config.guess checks (136 tests)
236 cd testsuite && bash config-sub.sh
237 PASS: config.sub checks (880 tests)
238 PASS: config.sub idempotency checks (817 tests)
239 PASS: config.sub canonicalise each config.guess testcase (136 tests)
240
241 * config.sub (zephyr*): Recognize.
242 * doc/config.sub.1: Regenerate.
243 * testsuite/config-sub.data: Add testcases for *-zephyr.
244
245 2021-07-03 Ozkan Sezer <sezero@users.sourceforge.net>
246
247 config.sub: disable shellcheck SC2006 / SC2268 warnings
248 This is in line with the recent config.guess change in commit
249 12fcf67c9108f4c4b581eaa302088782f0ee40ea
250
251 * config.sub (shellcheck disable): Add SC2006,SC2268.
252
253 Suggested-by: Jacob Bachmeyer <jcb@gnu.org>
254
255 2021-07-03 Ozkan Sezer <sezero@users.sourceforge.net>
256
257 config.sub: normalize the quoting in the `echo FOO | sed ...`
258 Some cases quote the argument to echo and some do not. At runtime
259 it probably does not matter because the substituted values will never
260 contain whitespace, but quoting them all would make shellcheck more
261 useful.
262
263 * config.sub: Consistently quote the argument of echo.
264 * doc/config.sub.1: Regenerate.
265
266 Suggested-by: Jacob Bachmeyer <jcb@gnu.org>
267
268 2021-07-02 Ozkan Sezer <sezero@users.sourceforge.net>
269
270 config.sub: replace POSIX $( ) with classic ` ` throughout
271 This is in line with the recent config.guess change in commit
272 d70c4fa934de164178054c3a60aaa0024ed07c91.
273
274 The patch was generated using patch-6.gawk script introduced in that
275 commit.
276
277 * config.sub: Revert POSIX command substitutions to classic form.
278
279 2021-06-04 Vineet Gupta <Vineet.Gupta1@synopsys.com>
280
281 Recognize arc32
282 This is the 32-bit variant of ARCv3 ISA (which is not compatible with the
283 32-bit ARCv2 ISA)
284
285 | make check
286 | cd testsuite && bash config-guess.sh && rm uname
287 | PASS: config.guess checks (136 tests)
288 | cd testsuite && bash config-sub.sh
289 | PASS: config.sub checks (864 tests)
290 | PASS: config.sub idempotency checks (801 tests)
291 | PASS: config.sub canonicalise each config.guess testcase (136 tests)
292
293 * config.guess (arc32:Linux:*:*): Recognize.
294 * config.sub (arc32): Likewise.
295
296 2021-05-27 Jacob Bachmeyer <jcb@gnu.org>
297
298 Remove automatic patch generators
299 These tools have served their purposes and need not be kept outside of
300 the repository history any longer. This patch as a diff also collects
301 the contents of the various tools in one convenient place.
302
303 * patch-1.gawk: Remove.
304 * patch-3.gawk: Likewise.
305 * patch-6.gawk: Likewise.
306
307 2021-05-26 Jacob Bachmeyer <jcb@gnu.org>
308
309 config.guess: manual fixups after previous automatic patch
310 The tool could not handle command substitutions that span lines, but
311 fortunately there were only two such substitutions in the script.
312
313 The test for which universe is active on Pyramid is rewritten into a
314 case block because it was the only use of a command substitution as an
315 argument to the test command, which would require quoting.
316
317 * config.guess: Rewrite "if" for Pyramid systems to "case".
318
319 2021-05-26 Jacob Bachmeyer <jcb@gnu.org>
320
321 config.guess: replace POSIX $( ) with classic ` ` throughout
322 The previous replacement of backticks with POSIX command substitutions
323 was ill-considered and illogical: this script recognizes many archaic
324 machine types that probably never had POSIX shells, therefore it needs
325 to be able to run successfully under pre-POSIX shells.
326
327 This patch was generated using the included GNU Awk program.
328
329 * config.guess: Revert POSIX command substitutions to classic form.
330 * patch-6.gawk: Store the tool that produced the automated patch.
331
332 2021-05-26 Jacob Bachmeyer <jcb@gnu.org>
333
334 config.guess: manual fixup after previous automated patches
335 This patch provides the special handling for the GNU system. As these
336 were two small and unique edits, they were not included in the scripts.
337
338 This patch also cleans up other minor issues that must be addressed
339 before reverting to classic command substitutions and updates
340 "shellcheck" directives to account for changes in this script and the
341 change in "shellcheck" towards reporting individual portability issues.
342
343 2021-05-26 Jacob Bachmeyer <jcb@gnu.org>
344
345 config.guess: automatic fixups after previous automated patch
346 This patch was generated using the following command:
347
348 sed -i config.guess \
349 -e '/="[^"]\+"\(-\|$\)/s/="\([^"([:space:])]\+\)"/=\1/' \
350 -e '/="[^"]\+"[[:alnum:]]/s/="\$\([^([:space:])]\+\)"/=${\1}/' \
351 -e \
352 '/\$(echo[^|]\+|/s/\([^[:space:]]\)[[:space:]]*|[[:space:]]*sed/\1 | sed/g'
353
354 * config.guess: Remove unneeded quotes in other variable assignments,
355 standardize spacing for "echo ... | sed" substitutions.
356
357 2021-05-26 Jacob Bachmeyer <jcb@gnu.org>
358
359 config.guess: remove unneeded quotes and factor command substitutions
360 This is further cleanup and simplifies some constructs that can confuse
361 Emacs' syntax highlighting while generally reducing required quoting.
362
363 This patch was generated using the included GNU Awk program.
364
365 * config.guess: Remove unneeded variable quotes and factor out command
366 substitutions when setting GUESS.
367 * patch-3.gawk: Store the tool that produced the automated patch.
368
369 2021-05-25 Jacob Bachmeyer <jcb@gnu.org>
370
371 config.guess: manual fixups after previous automatic patch
372 * config.guess: Adjust a few "leftover" cases that the tool could not
373 easily recognize and fixes comment indentation in a few other special
374 cases.
375
376 2021-05-25 Jacob Bachmeyer <jcb@gnu.org>
377
378 config.guess: use intermediate variable with uname results
379 This will allow quoting to be significantly simplified in another
380 pass through the file.
381
382 This patch was generated using the included GNU Awk program.
383
384 * config.guess: Use GUESS variable to hold results of uname analysis.
385 * patch-1.gawk: Store the tool that produced the automated patch.
386
387 2021-05-25 Jacob Bachmeyer <jcb@gnu.org>
388
389 config.guess: introduce intermediate variable with uname results
390 This will allow quoting to be significantly simplified in another
391 pass through the file.
392
393 * config.guess: Introduce GUESS variable to hold results of uname analysis.
394
395 2021-05-24 Dmitry V. Levin <ldv@altlinux.org>
396
397 config.guess: fix shellcheck warning SC2154
398 While, according to Plan 9 documentation, the environment variable
399 $cputype is set to the name of the kernel's CPU's architecture,
400 shellcheck warns that cputype is referenced but not assigned.
401 Be on the safe side and do not use cputype if it is not defined
402 or empty.
403
404 * config.guess (*:Plan9:*:*): Fix shellcheck warning SC2154.
405
406 2021-05-24 Dmitry V. Levin <ldv@altlinux.org>
407
408 config.guess: remove redundant quotes in case commands
409 According to the GNU Autoconf Portable Shell Programming manual,
410 the Bourne shell does not systematically split variables and back-quoted
411 expressions, in particular on the right-hand side of assignments and in
412 the argument of 'case'.
413
414 The change is made automatically using the following command:
415 $ sed -E -i 's/(\<case )"(\$[^"]+)"( in\>)/\1\2\3/' config.guess
416
417 * config.guess: Simplify case commands by removing quotes around the
418 argument.
419
420 Suggested-by: Jacob Bachmeyer <jcb@gnu.org>
421
422 2021-05-24 Dmitry V. Levin <ldv@altlinux.org>
423
424 config.guess: simplify exit status workaround on alphaev67-dec-osf5.1
425 Commit 29865ea8a5622cdd80b7a69a0afa78004b4cd311 introduced an exit trap
426 reset before exiting to avoid a spurious non-zero exit status on
427 alphaev67-dec-osf5.1. Simplify that code a bit by moving the exit trap
428 reset around.
429
430 * config.guess (alpha:OSF1:*:*): Reset exit trap earlier.
431 * doc/config.guess.1: Regenerate.
432
433 2021-10-29 Eli Zaretskii <eliz@gnu.org>
434
435 * gdb/doc/gdb.texinfo (Command Options): (Data): Document
436 '-memory-tag-violations'. Update the example.
437
438 2021-09-28 Andrew Burgess <andrew.burgess@embecosm.com>
439
440 * src-release.sh (GDB_SUPPPORT_DIRS): Add libbacktrace.
441
442 2021-09-27 Nick Alcock <nick.alcock@oracle.com>
443
444 PR libctf/27967
445 * libtool.m4 (LT_PATH_NM): Try BSDization flags with a user-provided
446 NM, if there is one. Run nm on itself, not on /dev/null, to avoid
447 errors from nms that refuse to work on non-regular files. Remove
448 other workarounds for this problem. Strip out blank lines from the
449 nm output.
450
451 2021-09-27 Nick Alcock <nick.alcock@oracle.com>
452
453 PR libctf/27967
454 * libtool.m4 (lt_cv_sys_global_symbol_pipe): Augment symcode for
455 Solaris 11.
456
457 2021-07-03 Nick Clifton <nickc@redhat.com>
458
459 * 2.37 release branch created.
460
461 2021-07-03 Nick Clifton <nickc@redhat.com>
462
463 * libiberty: Sync with gcc. Bring in:
464 2021-06-30 Gerald Pfeifer <gerald@pfeifer.com>
465
466 * make-temp-file.c (usrtmp): Remove.
467 (choose_tmpdir): Remove use of usrtmp.
468
469 2021-06-28 Indu Bhagat <indu.bhagat@oracle.com>
470
471 * simple-object.c (handle_lto_debug_sections): Copy over .BTF section.
472
473 2021-06-28 Indu Bhagat <indu.bhagat@oracle.com>
474 David Faust <david.faust@oracle.com>
475 Jose E. Marchesi <jose.marchesi@oracle.com>
476 Weimin Pan <weimin.pan@oracle.com>
477
478 * simple-object.c (handle_lto_debug_sections): Copy over .ctf
479 sections.
480
481 2021-06-05 John David Anglin <danglin@gcc.gnu.org>
482
483 PR target/100734
484 * configure.ac: Use libiberty snprintf and vsnprintf on
485 hppa*-*-hpux*.
486 * configure: Regenerate.
487
488 2021-05-06 Tom Tromey <tom@tromey.com>
489
490 * hashtab.c (htab_eq_string): New function.
491
492 2021-05-04 Eric Botcazou <ebotcazou@adacore.com>
493
494 * configure.ac: Make test for variables more robust.
495 * configure: Regenerate.
496
497 2021-05-03 H.J. Lu <hjl.tools@gmail.com>
498
499 PR bootstrap/99703
500 * configure: Regenerated.
501
502 2021-04-21 Andreas Schwab <schwab@linux-m68k.org>
503
504 PR demangler/100177
505 * rust-demangle.c (demangle_const_char): Properly print the
506 character value.
507
508 2021-03-31 Patrick Palka <ppalka@redhat.com>
509
510 PR c++/88115
511 * cp-demangle.c (d_dump, d_make_comp, d_expression_1)
512 (d_count_templates_scopes): Handle DEMANGLE_COMPONENT_VENDOR_EXPR.
513 (d_print_comp_inner): Likewise.
514 <case DEMANGLE_COMPONENT_EXTENDED_OPERATOR>: Revert r11-4926
515 change.
516 <case DEMANGLE_COMPONENT_UNARY>: Likewise.
517 * testsuite/demangle-expected: Adjust __alignof__ tests.
518
519 2021-03-16 Nick Clifton <nickc@redhat.com>
520
521 * sha1.c (sha1_process_bytes): Use memmove in place of memcpy.
522
523 2021-02-20 Mike Frysinger <vapier@gentoo.org>
524
525 * Makefile.in (ACLOCAL, ACLOCAL_AMFLAGS, $(srcdir)/aclocal.m4): Define.
526 (configure_deps): Rename to ...
527 (aclocal_deps): ... this. Replace aclocal.m4 with acinclude.m4.
528 ($(srcdir)/configure): Replace $(configure_deps) with
529 $(srcdir)/aclocal.m4.
530 * aclocal.m4: Move libiberty macros to acinclude.m4, then regenerate.
531 * acinclude.m4: New file.
532 * configure: Regenerate.
533
534 2021-02-19 Ayush Mittal <ayush.m@samsung.com>
535
536 * argv.c (expandargv): free allocated buffer if read fails.
537
538 2021-02-01 Martin Sebor <msebor@redhat.com>
539
540 * dyn-string.c (dyn_string_insert_cstr): Use memcpy instead of strncpy
541 to avoid -Wstringop-truncation.
542
543 2021-05-29 Mike Frysinger <vapier@gentoo.org>
544
545 * configure.ac: Add gnulib to configdirs for sim.
546 * configure: Regenerate.
547
548 2021-05-24 Maciej W. Rozycki <macro@orcam.me.uk>
549
550 * MAINTAINERS: Update path to readline config.{sub,guess} files.
551
552 2021-05-24 Maciej W. Rozycki <macro@orcam.me.uk>
553
554 * config.guess: Import from upstream.
555 * config.sub: Likewise.
556
557 2021-05-18 Mike Frysinger <vapier@gentoo.org>
558
559 * Makefile.def: Add configure-sim dependency on all-gnulib.
560 * Makefile.in: Regenerated.
561
562 2021-05-04 Nick Clifton <nickc@redhat.com>
563
564 * configure.ac (AC_PROG_CC): Replace with AC_PROG_CC_C99.
565 * configure: Regenerate.
566
567 2021-03-18 Nick Alcock <nick.alcock@oracle.com>
568
569 PR libctf/27482
570 * Makefile.def: Add install-bfd dependencies for install-libctf and
571 install-ld, and install-strip-bfd dependencies for
572 install-strip-libctf and install-strip-ld; move the install-ld
573 dependency on install-libctf to join it.
574 * Makefile.in: Regenerated.
575
576 2021-03-12 Mike Frysinger <vapier@gentoo.org>
577
578 * Makefile.def: Remove all-sim dependency on configure-gdb.
579 * Makefile.in: Regenerated.
580
581 2021-02-28 H.J. Lu <hongjiu.lu@intel.com>
582
583 PR binutils/26766
584 * Makefile.tpl (PGO_BUILD_TRAINING_FLAGS_TO_PASS): Add
585 PGO_BUILD_TRAINING=yes.
586 (PGO_BUILD_TRAINING_MFLAGS): New.
587 (all): Pass $(PGO_BUILD_TRAINING_MFLAGS) to the PGO build.
588
589 2021-02-09 Alan Modra <amodra@gmail.com>
590
591 * configure.ac: Delete arm*-*-symbianelf* entry.
592 * configure: Regenerate.
593
594 2021-01-26 Nick Alcock <nick.alcock@oracle.com>
595
596 * Makefile.def: Add install-libctf dependency to install-ld.
597 * Makefile.in: Regenerated.
598
599 2021-01-12 Mike Frysinger <vapier@gentoo.org>
600
601 * src-release.sh (do_proto_toplev): Rewrite indentation.
602
603 2021-01-11 H.J. Lu <hongjiu.lu@intel.com>
604
605 PR binutils/26766
606 * configure.ac:
607 * configure: Regenerated.
608
609 2021-01-11 H.J. Lu <hongjiu.lu@intel.com>
610
611 PR ld/27173
612 * configure: Regenerated.
613 * libtool.m4 (_LT_CMD_OLD_ARCHIVE): Check if AR works with
614 --plugin and rc before enabling --plugin.
615
616 2021-01-09 H.J. Lu <hongjiu.lu@intel.com>
617
618 PR binutils/26766
619 * Makefile.tpl (BUILD_CFLAGS): New.
620 (CFLAGS): Append $(BUILD_CFLAGS).
621 (CXXFLAGS): Likewise.
622 (PGO_BUILD_GEN_FLAGS_TO_PASS): New.
623 (PGO_BUILD_TRAINING_CFLAGS): Likewise.
624 (PGO_BUILD_TRAINING_CXXFLAGS): Likewise.
625 (PGO_BUILD_TRAINING_FLAGS_TO_PASS): Likewise.
626 (PGO_BUILD_TRAINING_MFLAGS): Likewise.
627 (PGO_BUILD_USE_FLAGS_TO_PASS): Likewise.
628 (PGO-TRAINING-TARGETS): Likewise.
629 (PGO_BUILD_TRAINING): Likewise.
630 (all): Add '+' to the command line for recursive make. Support
631 the PGO build.
632 * configure.ac: Add --enable-pgo-build[=lto].
633 AC_SUBST PGO_BUILD_GEN_CFLAGS, PGO_BUILD_USE_CFLAGS and
634 PGO_BUILD_LTO_CFLAGS. Enable the PGO build in Makefile.
635 * Makefile.in: Regenerated.
636 * configure: Likewise.
637
638 2021-01-09 H.J. Lu <hongjiu.lu@intel.com>
639
640 * Makefile.tpl (AR): Add @AR_PLUGIN_OPTION@
641 (RANLIB): Add @RANLIB_PLUGIN_OPTION@.
642 * configure.ac: Include config/gcc-plugin.m4.
643 AC_SUBST AR_PLUGIN_OPTION and RANLIB_PLUGIN_OPTION.
644 * libtool.m4 (_LT_CMD_OLD_ARCHIVE): Pass --plugin to AR and
645 RANLIB if possible.
646 * Makefile.in: Regenerated.
647 * configure: Likewise.
648
649 2021-01-09 Nick Clifton <nickc@redhat.com>
650
651 * 2.36 release branch crated.
652
653 2021-01-07 Samuel Thibault <samuel.thibault@gnu.org>
654
655 * libtool.m4: Match gnu* along with other GNU systems.
656
657 2021-01-07 Alan Modra <amodra@gmail.com>
658
659 * config.sub: Accept OS of eabi* and gnueabi*.
660
661 2021-01-05 Nick Alcock <nick.alcock@oracle.com>
662
663 * Makefile.def (libctf): No longer no_check. Checking depends on
664 all-ld.
665 * Makefile.in: Regenerated.
666
667 2021-01-05 Nick Clifton <nickc@redhat.com>
668
669 * libiberty: Sync with gcc. Bring in:
670 2021-01-04 Martin Liska <mliska@suse.cz>
671
672 * strverscmp.c: Convert to utf8 from iso8859.
673
674 2020-12-22 Jason Merrill <jason@redhat.com>
675
676 PR c++/67343
677 * cp-demangle.h (struct d_info): Add unresolved_name_state.
678 * cp-demangle.c (d_prefix): Add subst parm.
679 (d_nested_name): Pass it.
680 (d_unresolved_name): Split out from...
681 (d_expression_1): ...here.
682 (d_demangle_callback): Maybe retry with old sr mangling.
683 * testsuite/demangle-expected: Add test.
684
685 2020-12-21 Jason Merrill <jason@redhat.com>
686
687 * cp-demangle.c (d_expression_1): Recognize qualified-id
688 on RHS of dt/pt.
689 * testsuite/demangle-expected: Add test.
690
691 2020-12-21 Jason Merrill <jason@redhat.com>
692
693 * cp-demangle.c (d_unqualified_name): Clear is_expression.
694 * testsuite/demangle-expected: Add tests.
695
696 2020-11-25 Matthew Malcomson <matthew.malcomson@arm.com>
697
698 * configure: Regenerate.
699 * configure.ac: Avoid using sanitizer.
700
701 2020-11-13 Eduard-Mihai Burtescu <eddyb@lyken.rs>
702
703 * rust-demangle.c (struct rust_demangler): Add
704 skipping_printing and bound_lifetime_depth fields.
705 (eat): Add (v0-only).
706 (parse_integer_62): Add (v0-only).
707 (parse_opt_integer_62): Add (v0-only).
708 (parse_disambiguator): Add (v0-only).
709 (struct rust_mangled_ident): Add punycode{,_len} fields.
710 (parse_ident): Support v0 identifiers.
711 (print_str): Respect skipping_printing.
712 (print_uint64): Add (v0-only).
713 (print_uint64_hex): Add (v0-only).
714 (print_ident): Respect skipping_printing,
715 Support v0 identifiers.
716 (print_lifetime_from_index): Add (v0-only).
717 (demangle_binder): Add (v0-only).
718 (demangle_path): Add (v0-only).
719 (demangle_generic_arg): Add (v0-only).
720 (demangle_type): Add (v0-only).
721 (demangle_path_maybe_open_generics): Add (v0-only).
722 (demangle_dyn_trait): Add (v0-only).
723 (demangle_const): Add (v0-only).
724 (demangle_const_uint): Add (v0-only).
725 (basic_type): Add (v0-only).
726 (rust_demangle_callback): Support v0 symbols.
727 * testsuite/rust-demangle-expected: Add v0 testcases.
728
729 2020-11-13 Seija Kijin <doremylover456@gmail.com>
730
731 * strstr.c (strstr): Make implementation ANSI/POSIX compliant.
732
733 2020-11-11 Patrick Palka <ppalka@redhat.com>
734
735 PR c++/88115
736 * cp-demangle.c (d_print_comp_inner)
737 <case DEMANGLE_COMPONENT_EXTENDED_OPERATOR>: Don't print the
738 "operator " prefix for __alignof__.
739 <case DEMANGLE_COMPONENT_UNARY>: Always print parens around the
740 operand of __alignof__.
741 * testsuite/demangle-expected: Test demangling for __alignof__.
742
743 2020-11-09 Christophe Lyon <christophe.lyon@linaro.org>
744
745 * pex-win32.c (pex_win32_exec_child): Initialize orig_err.
746
747 2020-10-06 Martin Liska <mliska@suse.cz>
748
749 PR lto/97290
750 * simple-object-elf.c (simple_object_elf_copy_lto_debug_sections):
751 Use sh_link of a .symtab_shndx section.
752
753 2021-01-05 Alan Modra <amodra@gmail.com>
754
755 * config.guess: Import from upstream.
756 * config.sub: Likewise.
757
758 2020-12-16 Martin Liska <mliska@suse.cz>
759 Tom de Vries <tdevries@suse.de>
760
761 * gdb/debuginfod-support.c (struct user_data): Remove has_printed
762 field. Add meter field.
763 (progressfn): Print progress using meter.
764
765 2020-12-02 Enze Li <lienze2010@hotmail.com>
766
767 * .gitignore: Add gnu global outputs.
768
769 2020-12-02 Simon Marchi <simon.marchi@polymtl.ca>
770
771 * .gitignore: Sync with gcc.
772
773 2020-10-26 Andreas Rammhold <andreas@rammhold.de>
774
775 * src-release.sh: Use sha256sum instead of md5sum.
776
777 2020-10-14 Andrew Burgess <andrew.burgess@embecosm.com>
778
779 * Makefile.in: Rebuild.
780 * Makefile.def: Make distclean-gnulib depend on distclean-gdb and
781 distclean-gdbserver.
782
783 2020-07-24 Aaron Merey <amerey@redhat.com>
784
785 * configure: Rebuild.
786 * configure.ac: Remove AC_DEBUGINFOD.
787
788 2020-07-04 Nick Clifton <nickc@redhat.com>
789
790 Binutils 2.35 branch created.
791
792 2020-04-21 Stephen Casner <casner@acm.org>
793
794 PR 25830
795 * configure.ac (noconfigdirs): Exclude gdb & gprof for pdp11.
796 * configure: Rebuild.
797
798 2020-03-12 Tom Tromey <tom@tromey.com>
799
800 * Makefile.in: Rebuild.
801 * Makefile.def (gdbserver): Depend on gdbsupport.
802
803 2020-03-12 Tom Tromey <tom@tromey.com>
804
805 * Makefile.in: Rebuild.
806 * Makefile.def (gdbsupport): Don't depend on bfd.
807
808 2020-03-12 Tom Tromey <tom@tromey.com>
809
810 * Makefile.in: Rebuild.
811 * Makefile.def (gdbsupport): Depend on intl.
812
813 2020-02-17 Tom Tromey <tom@tromey.com>
814
815 * configure: Rebuild.
816 * configure.ac (configdirs): Add gnulib and gdbsupport when building
817 gdbserver.
818
819 2020-02-14 Tom Tromey <tom@tromey.com>
820
821 * Makefile.in: Rebuild.
822 * Makefile.def: Make gdbserver require gnulib and libiberty.
823
824 2020-02-07 Tom Tromey <tom@tromey.com>
825 Pedro Alves <palves@redhat.com>
826
827 * src-release.sh (GDB_SUPPORT_DIRS): Add gdbserver.
828 * gdbserver: New directory, moved from gdb/gdbserver.
829 * configure.ac (host_tools): Add gdbserver.
830 Only build gdbserver on certain systems.
831 * Makefile.in, configure: Rebuild.
832 * Makefile.def (host_modules, dependencies): Add gdbserver.
833 * MAINTAINERS: Add gdbserver.
834
835 2020-01-28 Sergio Durigan Junior <sergiodj@redhat.com>
836
837 * src-release.sh (getver): Look for gdbsupport's
838 create-version.sh script at the current directory if tool is
839 "gdb".
840
841 2020-01-19 Simon Marchi <simon.marchi@polymtl.ca>
842
843 * remote-sim.c (gdbsim_target::wait): Return
844 sim_data->remote_sim_ptid instead of inferior_ptid.
845
846 2020-01-18 Nick Clifton <nickc@redhat.com>
847
848 Binutils 2.34 branch created.
849
850 2020-01-18 Nick Clifton <nickc@redhat.com>
851
852 Synchronize top level configure files with master version:
853
854 2020-01-01 Ben Elliston <bje@gnu.org>
855
856 * config.guess: Update copyright years.
857 * config.sub: Likewise.
858
859 2019-12-21 Ben Elliston <bje@gnu.org>
860
861 * config.guess (set_cc_for_build): Prevent multiple calls by
862 checking if $tmp is already set. We can't check CC_FOR_BUILD as
863 the user may set it externally. Thanks to Torbjörn Granlund for
864 the bug report.
865
866 2019-12-21 Torbjörn Granlund <tg@gmplib.org>
867
868 * config.guess (alpha:Linux:*:*): Guard against missing
869 /proc/cpuinfo by redirecting standard error to /dev/null.
870
871 2019-09-12 Daniel Bittman <danielbittman1@gmail.com>
872
873 * config.guess (*:Twizzler:*:*): New.
874 * config.sub (-twizzler*): New.
875
876 2019-07-24 Ben Elliston <bje@gnu.org>
877
878 * config.guess (mips:OSF1:*.*): Whitespace cleanup.
879
880 2019-06-30 Ben Elliston <bje@gnu.org>
881
882 * config.sub (case $os): Match nsk* and powerunix. Don't later
883 match nsk* and set os=nsk which removes the OS version number.
884
885 2019-06-30 Ben Elliston <bje@gnu.org>
886
887 * config.sub: Recognise os108*.
888
889 2019-06-26 Ben Elliston <bje@gnu.org>
890
891 * config.sub (hp300): Set $os to hpux.
892
893 2019-06-26 Ben Elliston <bje@gnu.org>
894
895 * config.sub (vsta): Move into alphabetical order.
896
897 2019-06-10 Ben Elliston <bje@gnu.org>
898
899 * config.guess (*:OS108:*:*): Recognise new OS.
900
901 2019-05-28 Ben Elliston <bje@gnu.org>
902
903 * config.guess (*:Darwin:*:*): Run xcode-select to determine if a
904 system compiler is installed. If not, do not run set_cc_for_build,
905 as the default cc will open a dialog box asking to install
906 Xcode. If no C compiler is available, guess based on uname -p and
907 uname -m.
908
909 2019-05-28 Ben Elliston <bje@gnu.org>
910
911 * config.guess (*:Darwin:*:*): Simplify UNAME_PROCESSOR.
912
913 2020-01-17 Simon Marchi <simon.marchi@efficios.com>
914
915 * Makefile.def: Add dependencies of all-gdbsupport on all-bfd.
916 * Makefile.in: Re-generate.
917
918 2020-01-14 Tom Tromey <tom@tromey.com>
919
920 * src-release.sh (GDB_SUPPORT_DIRS): Add gdbsupport.
921 * MAINTAINERS: Add gdbsupport.
922 * configure: Rebuild.
923 * configure.ac (configdirs): Add gdbsupport.
924 * gdbsupport: New directory, move from gdb/gdbsupport.
925 * Makefile.def (host_modules, dependencies): Add gnulib.
926 * Makefile.in: Rebuild.
927
928 2020-01-09 Aaron Merey <amerey@redhat.com>
929
930 * config/debuginfod.m4: New file. Add macro AC_DEBUGINFOD. Adds
931 new configure option --with-debuginfod.
932 * configure: Regenerate.
933 * configure.ac: Call AC_DEBUGINFOD.
934
935 2019-12-26 Christian Biesinger <cbiesinger@google.com>
936
937 * .gitignore: Add perf.data and perf.data.old.
938
939 2019-10-17 Sergio Durigan Junior <sergiodj@redhat.com>
940
941 * src-release.sh (GDB_SUPPORT_DIRS): Add libctf.
942
943 2019-10-17 Alan Modra <amodra@gmail.com>
944
945 PR 29
946 * src-release.sh (getver): Replace "head -1" with "head -n 1".
947
948 2019-07-30 Nick Alcock <nick.alcock@oracle.com>
949
950 * Makefile.def (host_modules): libctf is no longer no_install.
951 * Makefile.in: Regenerated.
952
953 2019-07-13 Nick Alcock <nick.alcock@oracle.com>
954
955 * Makefile.def (dependencies): all-ld depends on all-libctf.
956 * Makefile.in: Regenerated.
957
958 2019-09-09 Phil Blundell <pb@pbcl.net>
959
960 binutils 2.33 branch created
961
962 2019-08-19 Tom Tromey <tom@tromey.com>
963
964 * configure: Rebuild.
965 * configure.ac: Add --with-static-standard-libraries.
966
967 2019-08-09 Nick Clifton <nickc@redhat.com>
968
969 * libiberty: Sync with gcc. Bring in:
970 2019-08-08 Martin Liska <mliska@suse.cz>
971
972 PR bootstrap/91352
973 * lrealpath.c (is_valid_fd): New function.
974
975 2019-07-24 Martin Liska <mliska@suse.cz>
976
977 PR lto/91228
978 * simple-object-elf.c (simple_object_elf_copy_lto_debug_sections):
979 Find first '\0' starting from gnu_lto + 1.
980
981 2019-07-12 Ren Kimura <rkx1209dev@gmail.com>
982
983 * simple-object-elf.c (simple_object_elf_match): Check zero value shstrndx.
984 This fixes a Bug 90924.
985
986 2019-07-22 Martin Liska <mliska@suse.cz>
987
988 * simple-object-elf.c (simple_object_elf_copy_lto_debug_sections):
989 Do not search for gnu_lto_v1, but search for first '\0'.
990
991 2019-07-18 Eduard-Mihai Burtescu <eddyb@lyken.rs>
992
993 * cplus-dem.c: Include rust-demangle.h.
994 * rust-demangle.c: Include rust-demangle.h.
995 * rust-demangle.h: New file.
996
997 2019-05-31 Michael Forney <mforney@mforney.org>
998
999 * cp-demangle.c: Don't define CP_DYNAMIC_ARRAYS if __STDC_NO_VLA__
1000 is non-zero.
1001
1002 2019-04-30 Ben L <bobsayshilol@live.co.uk>
1003
1004 * d-demangle.c (dlang_parse_assocarray): Correctly handle error result.
1005 * testsuite/d-demangle-expected: Add testcase.
1006
1007 * d-demangle.c (dlang_parse_tuple): Correctly handle error result.
1008 * testsuite/d-demangle-expected: Add testcase.
1009
1010 * d-demangle.c (dlang_parse_structlit): Correctly handle error result.
1011 * testsuite/d-demangle-expected: Add testcase.
1012
1013 * d-demangle.c (dlang_parse_arrayliteral): Correctly handle error result.
1014 * testsuite/d-demangle-expected: Add testcase.
1015
1016 * d-demangle.c (dlang_parse_integer): Fix stack underflow.
1017 * testsuite/d-demangle-expected: Add testcase.
1018
1019 * cp-demangle (d_print_comp_inner): Guard against a NULL 'typed_name'.
1020 * testsuite/demangle-expected: Add testcase.
1021
1022 * cp-demangle.c (d_encoding): Guard against NULL return values from
1023 d_right (dc).
1024 * testsuite/demangle-expected: Add testcase.
1025
1026 2019-04-29 Ben L <bobsayshilol@live.co.uk>
1027
1028 * cp-demangle.c (d_expression_1): Don't peek ahead unless the current
1029 char is valid.
1030 * testsuite/demangle-expected: Add testcase.
1031
1032 2019-04-10 Nick Clifton <nickc@redhat.com>
1033
1034 PR 89394
1035 * cp-demangle.c (cplus_demangle_fill_name): Reject negative
1036 lengths.
1037 (d_count_templates_scopes): Replace num_templates and num_scopes
1038 parameters with a struct d_print_info pointer parameter. Adjust
1039 body of the function accordingly. Add recursion counter and check
1040 that the recursion limit is not reached.
1041 (d_print_init): Pass dpi parameter to d_count_templates_scopes.
1042 Reset recursion counter afterwards, unless the recursion limit was
1043 reached.
1044
1045 2019-07-13 Joel Brobecker <brobecker@adacore.com>
1046
1047 * src-release (getver): If $tool/gdbsupport/create-version.sh
1048 exists, use that to determine the version number.
1049
1050 2019-06-21 Andreas Schwab <schwab@linux-m68k.org>
1051
1052 * src-release.sh (GDB_SUPPORT_DIRS): Add gnulib.
1053
1054 2019-06-14 Tom Tromey <tom@tromey.com>
1055
1056 * MAINTAINERS: Add gnulib.
1057 * gnulib: New directory, move from gdb/gnulib.
1058 * configure.ac (host_libs): Add gnulib.
1059 * configure: Rebuild.
1060 * Makefile.def (host_modules, dependencies): Add gnulib.
1061 * Makefile.in: Rebuild.
1062
1063 2019-06-03 Nick Clifton <nickc@redhat.com>
1064
1065 Revert:
1066 2019-05-29 Nick Clifton <nickc@redhat.com>
1067
1068 * configure.ac (noconfigdirs): Add libctf if the target does not use
1069 the ELF file format.
1070 * configure: Regenerate.
1071
1072 2019-05-29 Nick Clifton <nickc@redhat.com>
1073
1074 * src-release.sh (do_proto_toplev): Add libctf to list of
1075 directories that can be disabled.
1076
1077 2019-05-29 Nick Clifton <nickc@redhat.com>
1078
1079 * configure.ac (noconfigdirs): Add libctf if the target does not use
1080 the ELF file format.
1081 * configure: Regenerate.
1082
1083 2019-05-28 Nick Alcock <nick.alcock@oracle.com>
1084
1085 * Makefile.def (dependencies): configure-libctf depends on all-bfd
1086 and all its deps.
1087 * Makefile.in: Regenerated.
1088
1089 2019-05-28 Nick Alcock <nick.alcock@oracle.com>
1090
1091 * MAINTAINERS: Add libctf.
1092
1093 2019-05-28 Nick Alcock <nick.alcock@oracle.com>
1094
1095 * Makefile.def (host_modules): Add libctf.
1096 * Makefile.def (dependencies): Likewise.
1097 libctf depends on zlib, libiberty, and bfd.
1098 * Makefile.in: Regenerated.
1099 * configure.ac (host_libs): Add libctf.
1100 * configure: Regenerated.
1101
1102 2019-05-23 Jose E. Marchesi <jose.marchesi@oracle.com>
1103
1104 * config.guess: Synchronize with config project master sources.
1105 * config.sub: Likewise.
1106 * readline/support/config.guess: Likewise.
1107 * readline/support/config.sub: Likewise.
1108
1109 2019-04-10 Nick Clifton <nickc@redhat.com>
1110
1111 * libiberty: Sync with gcc. Bring in:
1112 2019-04-10 Nick Clifton <nickc@redhat.com>
1113
1114 PR 89394
1115 * cp-demangle.c (cplus_demangle_fill_name): Reject negative
1116 lengths.
1117 (d_count_templates_scopes): Replace num_templates and num_scopes
1118 parameters with a struct d_print_info pointer parameter. Adjust
1119 body of the function accordingly. Add recursion counter and check
1120 that the recursion limit is not reached.
1121 (d_print_init): Pass dpi parameter to d_count_templates_scopes.
1122 Reset recursion counter afterwards, unless the recursion limit was
1123 reached.
1124
1125 2018-06-24 Nick Clifton <nickc@redhat.com>
1126
1127 2.32 branch created.
1128
1129 2019-01-14 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
1130
1131 Merge from GCC:
1132 PR target/88535
1133 * config.guess: Import upstream version 2019-01-03.
1134 * config.sub: Import upstream version 2019-01-01.
1135
1136 2019-01-10 Nick Clifton <nickc@redhat.com>
1137
1138 * libiberty: Sync with gcc. Bring in:
1139 2019-01-09 Sandra Loosemore <sandra@codesourcery.com>
1140
1141 PR other/16615
1142
1143 * cp-demangle.c: Mechanically replace "can not" with "cannot".
1144 * floatformat.c: Likewise.
1145 * strerror.c: Likewise.
1146
1147 2018-12-22 Jason Merrill <jason@redhat.com>
1148
1149 Remove support for demangling GCC 2.x era mangling schemes.
1150 * cplus-dem.c: Remove cplus_mangle_opname, cplus_demangle_opname,
1151 internal_cplus_demangle, and all subroutines.
1152 (libiberty_demanglers): Remove entries for ancient GNU (pre-3.0),
1153 Lucid, ARM, HP, and EDG demangling styles.
1154 (cplus_demangle): Remove 'work' variable. Don't call
1155 internal_cplus_demangle.
1156
1157 2019-01-03 Дилян Палаузов <dilyan.palauzov@aegee.org>
1158
1159 * configure.ac: Don't configure readline if --with-system-readline is
1160 used.
1161 * configure: Re-generate.
1162
1163 2018-10-31 Joseph Myers <joseph@codesourcery.com>
1164
1165 Merge from GCC:
1166 PR bootstrap/82856
1167 * multilib.am: New file. From automake.
1168
1169 2018-09-12 Sergio Durigan Junior <sergiodj@redhat.com>
1170
1171 * src-release.sh (GDB_SUPPORT_DIRS): Add "contrib".
1172
1173 2018-07-16 Nick Clifton <nickc@redhat.com>
1174
1175 * src-release.sh (DEVO_SUPPORT): Add test-driver and ar-lib.
1176
1177 2018-07-06 Sebastian Huber <sebastian.huber@embedded-brains.de>
1178
1179 * config.sub: Sync with upstream version 2018-07-03.
1180
1181 2018-07-05 Sebastian Huber <sebastian.huber@embedded-brains.de>
1182
1183 * config.guess: Sync with upstream version 2018-06-26.
1184 * config.sub: Sync with upstream version 2018-07-02.
1185
1186 2018-06-29 Alexandre Oliva <oliva@adacore.com>
1187
1188 * configure.ac: Introduce support for @unless/@endunless.
1189 * Makefile.tpl (dep-kind): Rewrite with cond; return
1190 postbootstrap in some cases.
1191 (make-postboot-dep, postboot-targets): New.
1192 (dependencies): Do not output postbootstrap dependencies at
1193 first. Output non-target ones changed for configure to depend
1194 on stage_last @if gcc-bootstrap, and the original deps @unless
1195 gcc-bootstrap.
1196 * configure.in, Makefile.in: Rebuilt.
1197
1198 2018-06-24 Nick Clifton <nickc@redhat.com>
1199
1200 * configure: Regenerate.
1201
1202 2018-06-19 Simon Marchi <simon.marchi@ericsson.com>
1203
1204 * libtool.m4: Use AC_LANG_SOURCE.
1205 * configure.ac: Remove AC_PREREQ, use AC_LANG_SOURCE.
1206 * README-maintainer-mode: Update version requirements.
1207 * ar-lib: New file.
1208 * test-driver: New file.
1209 * configure: Re-generate.
1210
1211 2018-06-18 Eric Botcazou <ebotcazou@adacore.com>
1212
1213 * Makefile.def (fortran): Add check-target-libgomp-fortran.
1214 * Makefile.tpl (check-target-libgomp-fortran): New phony target.
1215 * Makefile.in: Regenerate.
1216
1217 * configure: Regenerate.
1218
1219 2018-06-18 Simon Marchi <simon.marchi@ericsson.com>
1220
1221 * configure.ac: Sync with GCC, remove MPX-related things.
1222
1223 2018-05-01 Nick Clifton <nickc@redhat.com>
1224
1225 * config.guess: Synchronize with config project master sources.
1226 * config.sub: Likewise.
1227
1228 2018-05-01 Francois H. Theron <francois.theron@netronome.com>
1229
1230 * configure.ac: Added "nfp" target.
1231 * configure: Regenerate.
1232
1233 2018-02-13 Maciej W. Rozycki <macro@mips.com>
1234
1235 * configure.ac <wasm32-*-*> (noconfigdirs): Add `ld'.
1236 * configure: Regenerate.
1237
1238 2018-01-30 Nick Clifton <nickc@redhat.com>
1239
1240 * src-release.sh (do_proto_toplev): Add patterns for more junk files
1241 to delete before creating the tarball.
1242
1243 2018-01-29 Nick Clifton <nickc@redhat.com>
1244
1245 * src-release.sh (do_proto_toplev): Strip patch remnant files from
1246 the sources before creating the tarball.
1247
1248 2018-01-13 Nick Clifton <nickc@redhat.com>
1249
1250 * src-release.sh: Update copyright notice. Change reference to devo
1251 to be a reference to root.
1252
1253 2018-01-10 Nick Clifton <nickc@redhat.com>
1254
1255 * config-ml.in: Sync with gcc sources.
1256 * config.guess: Likewise.
1257 * config.sub: Likewise.
1258 * configure.ac: Likewise.
1259 * configure: Regenerate.
1260
1261 2017-12-14 Nick Clifton <nickc@redhat.com>
1262
1263 * COPYING.LIBGLOSS: Update address of FSF in copyright notice.
1264
1265 2017-12-12 Stafford Horne <shorne@gmail.com>
1266
1267 * configure.ac: Remove logic adding gdb to noconfigsdirs for or1k.
1268 * configure: Regenerate.
1269
1270 2017-09-15 Nick Clifton <nickc@redhat.com>
1271
1272 * src-release.sh (LZIPPROG): New define. Provides the name of the
1273 lzip program.
1274 (do_lz): New function. Compresses a tarball using the lzip
1275 program.
1276 (do_compress): Add support for lzip compression.
1277 (usage): Mention -l option.
1278 (build_release): Support -l option to invoke lzip compression.
1279
1280 2017-09-15 Alan Modra <amodra@gmail.com>
1281
1282 * src-release.sh (do_proto_toplev): Revert last patch. Enable or
1283 disable binutils, gas, gdb, gold, gprof, ld, libdecnumber, readline,
1284 and sim depending on $tool and $support_files. Echo configure line.
1285
1286 2017-09-14 Matt Rice <ratmice@gmail.com>
1287
1288 * src-release.sh (do_proto_toplev): Enable gold during release process.
1289
1290 2017-04-13 Andrew Jenner <andrew@codesourcery.com>
1291
1292 * config.sub: Sync with master version in config project.
1293
1294 2017-04-03 Andrew Jenner <andrew@codesourcery.com>
1295
1296 * config.sub: Handle ia16 in $basic_machine.
1297
1298 bfd/
1299 * config.bfd: Handle ia16.
1300
1301 gas/
1302 * configure.tgt: Handle ia16.
1303
1304 ld/
1305 * configure.tgt: Handle ia16.
1306
1307 2017-03-22 Nick Clifton <nickc@redhat.com>
1308
1309 * config.sub: Sync with master version in config project.
1310 * config.guess: Likewise.
1311
1312 2017-01-23 Nick Clifton <nickc@redhat.com>
1313
1314 * configure.ac: Update year in copyright notice.
1315 Sync from FSF GCC mainline, bringing in the following patches.
1316 * Makefile.def: Likewise.
1317 * Makefile.tpl: Likewise.
1318 * configure: Regenerate.
1319 * Makefile.in: Regenerate.
1320
1321 2016-12-21 Jakub Jelinek <jakub@redhat.com>
1322
1323 * configure.ac: Don't bootstrap libmpx unless --with-build-config
1324 includes bootstrap-mpx.
1325
1326 2016-12-01 Matthias Klose <doko@ubuntu.com>
1327
1328 * configure.ac: Don't use pkg-config to check for bdw-gc.
1329
1330 2016-11-30 Matthias Klose <doko@ubuntu.com>
1331
1332 * Makefile.def: Remove reference to boehm-gc target module.
1333 * configure.ac: Include pkg.m4, check for --with-target-bdw-gc
1334 options and for the bdw-gc pkg-config module.
1335
1336 2016-11-15 Matthias Klose <doko@ubuntu.com>
1337
1338 * config-ml.in: Remove references to GCJ.
1339 * configure.ac: Likewise.
1340
1341 2016-09-30 Jakub Jelinek <jakub@redhat.com>
1342
1343 * configure.ac: Add target-libffi to target_libraries.
1344 Readd libgcj target disablings, modified to only target-libffi.
1345 Readd target addition of go to unsupported languages.
1346
1347 2016-09-30 Andrew Haley <aph@redhat.com>
1348
1349 * Makefile.def: Remove libjava.
1350 * Makefile.tpl: Likewise.
1351 * configure.ac: Likewise.
1352
1353 2016-09-26 Anton Kolesov <Anton.Kolesov@synopsys.com>
1354
1355 * configure.ac: Disable "sim" directory for arc*-*-*.
1356
1357 2016-09-12 Maciej W. Rozycki <macro@imgtec.com>
1358
1359 * configure.ac: Check for the minimum in-tree MPFR version
1360 handled.
1361
1362 2016-12-31 Alan Modra <amodra@gmail.com>
1363
1364 * config.sub: Import from upstream.
1365
1366 2016-12-08 Alan Modra <amodra@gmail.com>
1367
1368 * configure: Regenerate.
1369
1370 2016-12-02 Josh Conner <joshconner@google.com>
1371
1372 * configure.ac: Add fuchsia to targets that use ELF.
1373 * configure: Regenerated.
1374
1375 2016-11-07 Doug Evans <dje@google.com>
1376
1377 * config.sub: Sync with upstream version 2016-11-03.
1378 git://git.sv.gnu.org/config.git
1379 * config.guess: Sync with upstream version 2016-10-02.
1380
1381 2016-09-27 Simon Marchi <simon.marchi@polymtl.ca>
1382
1383 * .gitignore: Add archives and make stamps.
1384
1385 2016-07-20 Yan-Ting Lin <currygt52@gmail.com>
1386
1387 * configure.ac (nds32*-*-*): Remove entry to enable gdb.
1388 * configure: Regenerated.
1389
1390 2016-06-28 Walter Lee <walt@tilera.com>
1391
1392 * configure.ac (tilepro-*-*): Add gdb to noconfigdirs.
1393 * configure: Regenerate.
1394
1395 2016-05-28 Alan Modra <amodra@gmail.com>
1396
1397 * Makefile.tpl (configure): Depend on m4 files included.
1398 * Makefile.in: Regenerate.
1399
1400 2016-05-27 Nick Clifton <nickc@redhat.com>
1401
1402 * config.guess (Alpha OSF1): Fix typo introduced during the most
1403 recent synchronization update.
1404
1405 2016-05-23 Nick Clifton <nickc@redhat.com>
1406
1407 * Import these patches from the gcc mainline:
1408
1409 2016-05-16 Jakub Sejdak <jakub.sejdak@phoesys.com>
1410
1411 * config.guess: Import version 2016-04-02 (newest).
1412 * config.sub: Import version 2016-05-10 (newest).
1413
1414 2016-04-19 Nick Clifton <nickc@redhat.com>
1415
1416 * Import this patch from the GCC mainline:
1417
1418 2016-04-13 Segher Boessenkool <segher@kernel.crashing.org>
1419
1420 PR bootstrap/70173
1421 * Makefile.tpl (local-distclean): Delete the libcc1, gnattools,
1422 and gotools directories. Delete the stage_final file.
1423 * Makefile.in: Regenerate.
1424
1425 2016-03-17 Cary Coutant <ccoutant@gmail.com>
1426
1427 * configure.ac: Add mips and s390 to the gold target check.
1428 * configure: Regenerate.
1429
1430 2016-02-10 Nick Clifton <nickc@redhat.com>
1431
1432 Import these patches from the GCC mainline:
1433
1434 2016-01-12 Andris Pavenis <andris.pavenis@iki.fi>
1435
1436 * configure.ac: Enable LTO for DJGPP
1437 * configure: Regenerate
1438
1439 2016-01-24 Mikhail Maltsev <maltsevm@gmail.com>
1440
1441 PR bootstrap/69329
1442 * Makefile.tpl (BASE_FLAGS_TO_PASS): Add LSAN_OPTIONS.
1443 * Makefile.in: Regenerate.
1444
1445 2016-01-25 Aditya Kumar <aditya.k7@samsung.com>
1446 Sebastian Pop <s.pop@samsung.com>
1447
1448 * Makefile.in: Regenerate.
1449 * Makefile.tpl: Export ISLVER.
1450 * configure: Regenerate.
1451 * config/isl.m4: Detect isl-0.15.
1452
1453 2016-01-29 Sebastian Pop <s.pop@samsung.com>
1454
1455 * config/isl.m4: Add comments about isl-0.16.
1456 * configure: Regenerate.
1457
1458 2016-01-12 H.J. Lu <hongjiu.lu@intel.com>
1459
1460 Sync with GCC
1461 2015-11-26 David Edelsohn <dje.gcc@gmail.com>
1462
1463 * m4/libtool.m4 (export_symbols_cmds) [AIX]: Add global TLS "L"
1464 symbols.
1465
1466 2016-01-12 Bernd Edlinger <bernd.edlinger@hotmail.de>
1467
1468 PR bootstrap/69134
1469 * Makefile.def (mpfr): Disable assembler.
1470 * Makefile.in: Regenerate.
1471
1472 2016-01-11 Nick Clifton <nickc@redhat.com>
1473
1474 Import the following changes from the GCC mainline:
1475
1476 2015-11-13 Tsvetkova Alexandra <aleksandra.tsvetkova@intel.com>
1477
1478 * configure.ac: Enable libmpx by default.
1479 * configure: Regenerated.
1480
1481 2015-11-19 Martin Liska <mliska@suse.cz>
1482
1483 * .gitignore: Add .clang-format to ignored files.
1484 * Makefile.tpl: Add clang-format.
1485 * Makefile.in: Regenerate.
1486
1487 2015-12-01 Andreas Tobler <andreast@gcc.gnu.org>
1488
1489 PR libffi/65726
1490 * Makefile.def (lang_env_dependencies): Make libffi depend
1491 on cxx.
1492 * Makefile.in: Regenerate.
1493
1494 2015-12-02 Ian Lance Taylor <iant@google.com>
1495
1496 PR go/66147
1497 * Makefile.tpl (HOST_EXPORTS): Add XGCC_FLAGS_FOR_TARGET.
1498 * Makefile.in: Regenerate.
1499
1500 2015-12-17 Nathan Sidwell <nathan@acm.org>
1501
1502 * config/isl.m4 (ISL_CHECK_VERSION): Add gmp libs.
1503 * configure: Regenerate.
1504
1505 2015-12-17 Sebastian Pop <s.pop@samsung.com>
1506
1507 * Makefile.in: Replace ISL with isl.
1508 * Makefile.tpl: Same.
1509 * config/isl.m4: Same.
1510 * configure.ac: Same.
1511 * contrib/download_prerequisites: Same.
1512 * configure: Regenerate.
1513
1514 2016-01-01 Ben Elliston <bje@gnu.org>
1515
1516 * config.guess: Import version 2016-01-01.
1517 * config.sub: Likewise.
1518
1519 2015-11-20 Tristan Gingold <gingold@adacore.com>
1520
1521 * configure.ac: Add aarch64-*-darwin* and arm-*-darwin*.
1522 * configure: Regenerate.
1523
1524 2015-10-21 Nick Clifton <nickc@redhat.com>
1525
1526 PR gas/19109
1527 * configure.ac: Note the 'none' is an acceptable argument to
1528 --enable-compressed-debug-sections.
1529 * configure: Regenerate.
1530
1531 2015-10-20 H.J. Lu <hongjiu.lu@intel.com>
1532
1533 PR gas/19109
1534 * configure.ac: Add
1535 --enable-compressed-debug-sections={all,gas,gold,ld}.
1536 * configure: Regenerated.
1537
1538 2015-09-30 Nick Clifton <nickc@redhat.com>
1539
1540 Import the following patches from the GCC mainline:
1541
1542 2015-08-23 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
1543
1544 PR libfortran/54572
1545 * Makefile.def: Make libgfortran depend on libbacktrace.
1546 * Makefile.in: Regenerate.
1547
1548 2015-08-12 Tom de Vries <tom@codesourcery.com>
1549
1550 PR other/67092
1551 PR other/67098
1552 * configure.ac: Remove --with_host_libstdcxx support.
1553 * configure: Regenerate.
1554
1555 2015-08-10 Thomas Schwinge <thomas@codesourcery.com>
1556 Jakub Jelinek <jakub@redhat.com>
1557
1558 * configure.ac (noconfigdirs): Don't add "target-libgomp" for target
1559 nvptx*-*-*.
1560 * configure: Regenerate.
1561
1562 2015-08-07 H.J. Lu <hongjiu.lu@intel.com>
1563
1564 Sync with GCC
1565 2015-07-28 Ben Elliston <bje@gnu.org>
1566
1567 * config.sub, config.guess: Import from upstream.
1568
1569 2015-08-06 Yaakov Selkowitz <yselkowi@redhat.com>
1570
1571 * Makefile.def (libiconv): Define bootstrap=true.
1572 Mark pdf/html/info as missing.
1573 (configure-gcc): Depend on all-libiconv.
1574 (all-gcc): Ditto.
1575 (configure-libcpp): Ditto.
1576 (all-libcpp): Ditto.
1577 (configure-intl): Ditto.
1578 (all-intl): Ditto.
1579 * Makefile.in: Regenerate.
1580
1581 2015-07-27 H.J. Lu <hongjiu.lu@intel.com>
1582
1583 Sync with GCC
1584 2015-07-24 Michael Darling <darlingm@gmail.com>
1585
1586 PR other/66259
1587 * config-ml.in: Reflects renaming of configure.in to configure.ac
1588 * configure: Likewise
1589 * configure.ac: Likewise
1590
1591 2015-07-14 H.J. Lu <hongjiu.lu@intel.com>
1592
1593 * Makefile.in: Regenerated.
1594
1595 Sync with GCC
1596 2015-05-21 Jason Merrill <jason@redhat.com>
1597
1598 * Makefile.tpl: Update comments.
1599
1600 2015-04-22 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
1601
1602 * Makefile.tpl: Remove surplus whitespace throughout.
1603
1604 2015-03-25 Martin Liska <mliska@suse.cz>
1605 Yury Gribov <y.gribov@samsung.com>
1606
1607 * Makefile.tpl: Fix ln source location for vimrc file.
1608
1609 2015-07-14 H.J. Lu <hongjiu.lu@intel.com>
1610
1611 Sync with GCC
1612 2015-05-16 James Bowman <james.bowman@ftdichip.com>
1613
1614 * configure.ac: FT32 target added.
1615 * configure: Regenerate.
1616
1617 2015-07-14 H.J. Lu <hongjiu.lu@intel.com>
1618
1619 Sync with GCC
1620 2015-06-02 Jason Merrill <jason@redhat.com>
1621
1622 PR bootstrap/66319
1623 * configure.ac: Use -std=gnu++98.
1624
1625 2015-05-28 Mike Frysinger <vapier@gentoo.org>
1626
1627 * configure.ac (--vtable-verify): Use AS_HELP_STRING for help.
1628 * configure: Regenerate.
1629
1630 2015-05-11 Paulo Matos <paulo@matos-sorge.com>
1631
1632 * configure.ac: Fix typo.
1633 * configure: Regenerate.
1634
1635 2015-05-03 Matthias Klose <doko@ubuntu.com>
1636
1637 * configure.ac: Match $host configured with triplets.
1638 * configure: Regenerate.
1639
1640 2015-04-17 Jakub Jelinek <jakub@redhat.com>
1641
1642 PR bootstrap/62077
1643 * configure.ac (--enable-stage1-checking): Default to
1644 release,misc,gimple,rtlflag,tree,types if --disable-checking
1645 or --enable-checking is not specified and DEV-PHASE is not
1646 experimental.
1647 * configure: Regenerated.
1648
1649 2015-03-27 Uros Bizjak <ubizjak@gmail.com>
1650
1651 Install back PR target/47230 fix (Revert the revert).
1652
1653 2015-06-30 H.J. Lu <hongjiu.lu@intel.com>
1654
1655 * configure.ac (ospace_frag): Enable for i?86*-*-elfiamcu
1656 target.
1657 * configure: Regenerate.
1658
1659 2015-05-13 John David Anglin <dave.anglin@bell.net>
1660
1661 * configure.ac: Disable configuration of GDB for HPUX targets.
1662 * configure: Regenerate.
1663
1664 2015-05-01 H.J. Lu <hongjiu.lu@intel.com>
1665
1666 PR ld/18355
1667 * Makefile.def: Add extra_configure_flags to host zlib.
1668 * configure.ac (extra_host_zlib_configure_flags): New. Set
1669 to --enable-host-shared When bfd is to be built as shared
1670 library. AC_SUBST.
1671 * Makefile.in: Regenerated.
1672
1673 2015-04-15 Mike Frysinger <vapier@gentoo.org>
1674 Hans-Peter Nilsson <hp@axis.com>
1675
1676 Adjust src-release.sh for sim using the gdb create-version.sh.
1677 * src-release.sh (tar_compress): If there's a fifth parameter,
1678 use that in the getver call instead of $tool.
1679 (sim_release): Pass gdb as fifth parameter to tar_compress.
1680 (SIM_SUPPORT_DIRS): Add gdb/common/create-version.sh.
1681
1682 2015-04-14 Max Ostapenko <m.ostapenko@partner.samsung.com>
1683
1684 * Makefile.tpl (EXTRA_HOST_EXPORTS): New variables.
1685 (EXTRA_BOOTSTRAP_FLAGS): Likewise.
1686 (check-[+module+]): Add EXTRA_HOST_EXPORTS and EXTRA_BOOTSTRAP_FLAGS.
1687 * Makefile.in: Regenerate.
1688
1689 2015-04-01 H.J. Lu <hongjiu.lu@intel.com>
1690
1691 * configure.ac: Add --with-system-zlib.
1692 * configure: Regenerated.
1693
1694 2015-03-31 H.J. Lu <hongjiu.lu@intel.com>
1695
1696 * src-release.sh: Don't configure with --with-target-subdir=.
1697 --disable-multilib.
1698
1699 2015-03-31 H.J. Lu <hongjiu.lu@intel.com>
1700
1701 * src-release.sh (DEVO_SUPPORT): Replace src-release with
1702 src-release.sh.
1703
1704 2015-03-30 Ed Schouten <ed@nuxi.nl>
1705
1706 * config.sub: Update from upstream, to 2015-03-04 version.
1707 * config.guess: Likewise.
1708
1709 2015-03-30 H.J. Lu <hongjiu.lu@intel.com>
1710
1711 * Makefile.def (dependencies): Add all-zlib to all-bfd.
1712 * Makefile.in: Regenerated.
1713
1714 2015-03-28 H.J. Lu <hongjiu.lu@intel.com>
1715
1716 * src-release.sh (do_proto_toplev): Configure with --target
1717 --with-target-subdir and --disable-multilib.
1718 (BINUTILS_SUPPORT_DIRS): Add zlib.
1719 (GAS_SUPPORT_DIRS): Likewise.
1720 (GDB_SUPPORT_DIRS): Likewise.
1721 (SIM_SUPPORT_DIRS): Likewise.
1722
1723 2015-03-17 H.J. Lu <hongjiu.lu@intel.com>
1724
1725 * configure.ac (target_configdirs): Exclude target-zlib if
1726 target-libjava isn't built.
1727 * configure: Regenerated.
1728
1729 2015-03-17 H.J. Lu <hongjiu.lu@intel.com>
1730
1731 Sync with GCC
1732 2014-06-13 Thomas Schwinge <thomas@codesourcery.com>
1733
1734 * config-ml.in: Robustify ac_configure_args parsing.
1735
1736 2015-03-16 H.J. Lu <hongjiu.lu@intel.com>
1737
1738 * Makefile.def: Updated from GCC trunk.
1739 * Makefile.tpl: Likewise.
1740 * configure.ac: Likewise.
1741 * Makefile.in: Regenerated.
1742 * configure: Likewise.
1743
1744 2015-01-28 James Bowman <james.bowman@ftdichip.com>
1745
1746 * configure.ac: Add FT32 support.
1747 * configure: Regenerate.
1748
1749 2015-01-12 Anthony Green <green@moxielogic.com>
1750
1751 * configure.ac: Don't disable gprof for moxie.
1752 * configure: Rebuild.
1753
1754 2015-01-03 Andrew Pinski <apinski@cavium.com>
1755
1756 * Makefile.def (flags_to_pass): Pass OBJCOPY_FOR_TARGET also.
1757 * Makefile.tpl (HOST_EXPORTS): Add OBJCOPY_FOR_TARGET.
1758 (BASE_TARGET_EXPORTS): Add OBJCOPY.
1759 (OBJCOPY_FOR_TARGET): New variable.
1760 (EXTRA_TARGET_FLAGS): Add OBJCOPY.
1761 * Makefile.in: Regenerate.
1762 * configure.ac: Check for already installed target objcopy.
1763 Also GCC_TARGET_TOOL on objcopy.
1764 * configure: Regenerate.
1765
1766 2015-01-02 Hans-Peter Nilsson <hp@bitrange.com>
1767
1768 * config.sub: Update from upstream, to 2015-01-01 version.
1769 * config.guess: Ditto.
1770
1771 2014-12-06 Eric Botcazou <ebotcazou@adacore.com>
1772
1773 * config.sub: Update from upstream config repo.
1774
1775 2014-11-24 H.J. Lu <hongjiu.lu@intel.com>
1776
1777 * libtool.m4: Updated from GCC trunk.
1778
1779 2014-11-16 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1780
1781 * config.guess: Update from upstream config repo.
1782 * config.sub: Ditto.
1783
1784 2014-11-16 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1785
1786 * move-if-change: Update from upstream gnulib.
1787
1788 2014-11-16 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1789
1790 * compile: Sync with upstream Automake.
1791 * depcomp: Ditto.
1792 * install-sh: Ditto.
1793 * missing: Ditto.
1794 * mkinstalldirs: Ditto.
1795 * ylwrap: Ditto.
1796
1797 2014-10-15 Tristan Gingold <gingold@adacore.com>
1798
1799 * src-release.sh (do_proto_toplev): Configure with --target.
1800
1801 2014-10-03 Jing Yu <jingyu@google.com>
1802
1803 * configure.ac: Add aarch64 to list of targets that support gold.
1804 * configure: Regenerate.
1805
1806 2014-09-12 Andrew Bennett <andrew.bennett@imgtec.com>
1807
1808 * configure.ac: Add mips*-img-elf* target triple.
1809 * configure: Regenerate.
1810
1811 2014-09-06 Kuan-Lin Chen <kuanlinchentw@gmail.com>
1812 * configure: Disable gdb for nds32*-*-* until supported.
1813 * configure.ac: Disable gdb for nds32*-*-* until supported.
1814
1815 2014-09-05 Joel Brobecker <brobecker@adacore.com>
1816
1817 * configure: Regenerate.
1818
1819 2014-08-27 Will Newton <will.newton@linaro.org>
1820
1821 * src-release.sh: New file.
1822 * src-release: Remove file.
1823
1824 2014-07-27 Joel Sherrill <joel.sherrill@oarcorp.com>
1825
1826 GDB not supported for or1k*-*-rtems*
1827 * configure.ac (or1k*-*-rtems*): gdb not supported. The ordering
1828 of the stanzas results in this not being caught by or1k*-*-* later.
1829 * configure. Regenerated.
1830
1831 2014-07-25 Samuel Bronson <naesten@gmail.com>
1832
1833 * .gitattributes: New file for use with git-merge-changelog.
1834
1835 2014-07-21 Joel Sherrill <joel.sherrill@oarcorp.com>
1836
1837 Disable gdb for or1k*-*-* until supported
1838 * configure.ac (or1k*-*-*): Disable gdb.
1839 * configure: Regenerated.
1840
1841 2014-05-14 Sandra Loosemore <sandra@codesourcery.com>
1842
1843 * configure.ac (target_makefile_frag): Set for nios2-*-elf*.
1844 * configure: Regenerated.
1845
1846 2014-03-26 Jakub Jelinek <jakub@redhat.com>
1847
1848 PR sanitizer/56781
1849 * Makefile.def: Set bootstrap=true; for host fixincludes.
1850 * configure.ac: Don't bootstrap host fixincludes unless
1851 --with-build-config=bootstrap-{a,ub}san.
1852 * Makefile.in: Regenerated.
1853 * configure: Regenerated.
1854
1855 2014-03-21 Jakub Jelinek <jakub@redhat.com>
1856
1857 * configure.ac: Move BUILD_CONFIG set up earlier. Add
1858 --enable-vtable-verify option parsing. Don't add
1859 target-libsanitizer to bootstrap_target_libs unless
1860 --with-build-config=bootstrap-asan or
1861 --with-build-config=bootstrap-ubsan. Don't add target-libvtv
1862 to bootstrap_target_libs unless --enable-vtable-verify.
1863 * configure: Regenerated.
1864
1865 2014-03-07 Jakub Jelinek <jakub@redhat.com>
1866
1867 PR bootstrap/58572
1868 * Makefile.tpl (POSTSTAGE1_CXX_EXPORT): Use -isystem instead of
1869 -I for libstdc++-v3 includes if $(LEAN).
1870 * Makefile.in: Regenerated.
1871
1872 2014-02-24 Walter Lee <walt@tilera.com>
1873
1874 * configure.ac (tilepro-*-*) Change to tilepro*-*-*.
1875 (tilegx-*-*): Change to tilegx*-*-*.
1876 * configure: Regenerate.
1877
1878 2014-05-01 Richard Sandiford <rdsandiford@googlemail.com>
1879
1880 * config.sub, config.guess: Import from upstream.
1881
1882 2014-04-04 Eric Botcazou <ebotcazou@adacore.com>
1883
1884 PR bootstrap/60620
1885 * Makefile.def (dependencies): Make gnattools depend on libstdc++-v3.
1886 * Makefile.in: Regenerate.
1887
1888 2014-03-28 Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
1889
1890 * Makefile.def (dependencies): Make all-ld depend on all-binutils
1891 for WINDRES_FOR_TARGET in default-manifest.o rule.
1892 * Makefile.in: Regenerate.
1893
1894 2014-02-04 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
1895
1896 PR target/59788
1897 * ltmain.sh (opt_duplicate_compiler_generated_deps): Enable on
1898 *solaris2*.
1899
1900 2013-12-19 Keven Boell <keven.boell@intel.com>
1901
1902 * cp-namespace.c (cp_lookup_nested_symbol): Enable
1903 nested lookups for fortran modules.
1904 * dwarf2read.c (read_module): Add fortran module to
1905 the symbol table.
1906 (add_partial_symbol, add_partial_module): Add fortran
1907 module to the partial symbol table.
1908 (new_symbol_full): Create full symbol for fortran module.
1909 * f-exp.y (yylex): Add new module domain to be parsed.
1910 * symtab.h: New domain for fortran modules.
1911
1912 2013-12-19 Keven Boell <keven.boell@intel.com>
1913
1914 * f-exp.y (yylex): Add domain array to enable lookup
1915 in multiple domains. Loop over lookup domains and try
1916 to find requested symbol. Add STRUCT_DOMAIN to lookup
1917 domains to be able to query for user defined types.
1918
1919 2013-12-13 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
1920
1921 * configure.ac: Add user-friendly check for native x86_64-linux
1922 multilibs.
1923 * configure: Regenerate.
1924
1925 2013-11-23 Alan Modra <amodra@gmail.com>
1926
1927 * config.sub, config.guess: Import from upstream.
1928
1929 2013-11-07 Thomas Schwinge <thomas@codesourcery.com>
1930
1931 * Makefile.in: Regenerate.
1932
1933 * Makefile.tpl: Fix typo.
1934 * Makefile.in: Regenerate partially.
1935
1936 2013-11-04 Balaji V. Iyer <balaji.v.iyer@intel.com>
1937
1938 * configure.ac: Added libcilkrts to noconfig list when C++ is not
1939 supported.
1940 * configure: Regenerated.
1941
1942 2013-10-30 Jason Merrill <jason@redhat.com>
1943
1944 * Makefile.tpl (STAGE1_CONFIGURE_FLAGS): Pass
1945 --disable-build-format-warnings.
1946
1947 2013-10-29 Balaji V. Iyer <balaji.v.iyer@intel.com>
1948
1949 * Makefile.def: Add libcilkrts to target_modules. Make libcilkrts
1950 depend on libstdc++ and libgcc.
1951 * configure: Regenerate.
1952 * configure.ac: Added libcilkrts to target binaries. Also, restrict
1953 libcilkrts for POSIX and i*86, and x86_64 architectures.
1954 * Makefile.in: Added libcilkrts related fields to support building it.
1955
1956 2013-10-26 Jeff Law <law@redhat.com>
1957
1958 * Makefile.def (target_modules): Remove libmudflap
1959 (languages): Remove check-target-libmudflap).
1960 * Makefile.in: Rebuilt.
1961 * Makefile.tpl (check-target-libmudflap-c++): Remove.
1962 * configure.ac (target_libraries): Remove target-libmudflap.
1963 Remove checks which disabled libmudflap on some systems.
1964 * configure: Rebuilt.
1965 * libmudflap: Directory removed.
1966
1967 2013-10-16 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1968
1969 * configure.ac: Update from GCC.
1970 * configure: Regenerate.
1971
1972 2013-10-15 Hans-Peter Nilsson <hp@axis.com>
1973
1974 * src-release (do-proto-toplevel): Support subdir-path-prefixed
1975 files in SUPPORT_FILES.
1976 (SIM_SUPPORT_DIRS): New variable.
1977 (sim.tar.bz2): New rule.
1978
1979 2013-10-08 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1980
1981 * configure.ac: Update from GCC.
1982 * configure: Regenerate.
1983
1984 2013-10-01 Jeff Johnston <jjohnstn@redhat.com>
1985
1986 * COPYING.NEWLIB: Update with new copyright.
1987
1988 2013-09-21 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1989
1990 * configure.ac: Update from GCC.
1991 * configure: Regenerate.
1992
1993 2013-09-20 Alan Modra <amodra@gmail.com>
1994
1995 * libtool.m4 (_LT_ENABLE_LOCK <ld -m flags>): Remove non-canonical
1996 ppc host match. Support little-endian powerpc linux hosts.
1997
1998 2013-08-16 Joel Brobecker <brobecker@adacore.com>
1999
2000 * src-release (VER): When using $(TOOL)/common/create-version.sh,
2001 strip the "-cvs" suffix from the version number if present.
2002
2003 2013-08-12 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2004
2005 * configure.ac: Sync with GCC repo.
2006 * Makefile.def: Ditto.
2007 * configure: Regenerate.
2008 * Makefile.in: Ditto.
2009
2010 2013-07-22 Joel Brobecker <brobecker@adacore.com>
2011
2012 * src-release (VER): Use $(TOOL)/common/create-version.sh
2013 if it exists.
2014
2015 2013-06-22 Richard Sandiford <rdsandiford@googlemail.com>
2016
2017 * configure.ac (mips*-*-bsd*, mips*-*-ultrix*, mips*-*-osf*)
2018 (mips*-*-ecoff*, mips*-*-pe*, mips*-*-irix* [v4 and earlier])
2019 (mips*-*-lnews*, mips*-*-riscos*): Add gas and ld to noconfigdirs.
2020 * configure: Regenerate.
2021
2022 2013-06-01 George Thomas <george.thomas@atmel.com>
2023
2024 * include/opcode/avr.h: Rename AVR_ISA_XCH to AVR_ISA_RMW. Remove
2025 from AVR_ISA_XMEGA and add new AVR_ISA_XMEGAU
2026
2027 2013-05-06 Sandra Loosemore <sandra@codesourcery.com>
2028
2029 * COPYING.NEWLIB: Add Altera Corporation copyright.
2030
2031 2013-04-29 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2032
2033 * config.guess: Update from config repo.
2034 * config.sub: Ditto.
2035
2036 2013-04-22 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2037
2038 * Makefile.def: Sync with GCC.
2039 * Makefile.in: Regenerate.
2040
2041 2013-04-22 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2042
2043 * configure.ac: Sync with GCC.
2044 * configure: Regenerate.
2045
2046 2013-03-22 Mike Frysinger <vapier@gentoo.org>
2047
2048 * src-release (VER): Change bfd/configure.in sed to use the new
2049 `bfd/configure --version` output.
2050
2051 2013-02-15 Yufeng Zhang <yufeng.zhang@arm.com>
2052
2053 * configure.ac: Sync with GCC repo.
2054 * configure: Ditto.
2055
2056 2013-02-05 Ian Lance Taylor <iant@google.com>
2057
2058 PR go/55969
2059 * configure.ac: Disable libgo on some systems where it does not
2060 work.
2061 * configure: Rebuild.
2062
2063 2013-02-05 Alan Modra <amodra@gmail.com>
2064
2065 * configure: Regenerate after syncing config/.
2066
2067 2013-01-15 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2068
2069 * configure.ac: Sync with GCC repo.
2070 * configure: Ditto.
2071 * Makefile.def: Ditto.
2072 * Makefile.in: Ditto.
2073
2074 2013-01-11 Joel Brobecker <brobecker@adacore.com>
2075
2076 Sync with GCC, merge:
2077
2078 2013-01-09 Jason Merrill <jason@redhat.com>
2079
2080 * .gitignore: Import from gdb repository.
2081
2082 2013-01-11 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2083
2084 * config.sub: Update from config repo.
2085
2086 2013-01-11 Eric Botcazou <ebotcazou@adacore.com>
2087
2088 * Makefile.tpl (BOOT_ADAFLAGS): Remove -gnata.
2089 * Makefile.in: Regenerate.
2090
2091 2013-01-09 H.J. Lu <hongjiu.lu@intel.com>
2092
2093 * Makefile.def (configure-gcc): Depend on all-gmp.
2094 (all-gcc): Remove dependency on all-gmp.
2095 * Makefile.in: Regenerated.
2096
2097 2013-01-08 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2098
2099 * config.guess: Update from config repo.
2100 * config.sub: Ditto.
2101
2102 2013-01-07 Jeff Johnston <jjohnstn@redhat.com>
2103
2104 * COPYING.LIBGLOSS: Remove license for mips/lsi33k-stub.h which no longer
2105 exists and replace the new bfin license in its location.
2106
2107 2013-01-07 H.J. Lu <hongjiu.lu@intel.com>
2108
2109 PR gas/14899
2110 * Makefile.def (dependencies): Make all-binutils, all-gprof,
2111 all-ld and all-gold depend on all-gas.
2112 * Makefile.in: Regenerated.
2113
2114 2012-12-29 Ben Elliston <bje@gnu.org>
2115
2116 * config.guess: Update to 2012-12-29 version.
2117 * config.sub: Likewise.
2118
2119 2012-12-20 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2120
2121 * Makefile.def (install-target-libgo): Depend on
2122 install-target-libatomic. Merged from GCC repo.
2123 * Makefile.in: Regenerate.
2124
2125 2012-12-17 Jeff Johnston <jjohnstn@redhat.com>
2126
2127 * COPYING.LIBGLOSS: Add license for bfin libgloss.
2128
2129 2012-12-16 Thomas Schwinge <thomas@codesourcery.com>
2130
2131 * configure.ac (ENABLE_GOLD): Consider *-*-gnu* targets ELF.
2132 * configure: Regenerate.
2133
2134 2012-12-11 H.J. Lu <hongjiu.lu@intel.com>
2135
2136 * Makefile.def (target_modules): Add bootstrap=true and
2137 raw_cxx=true to libsanitizer.
2138 * configure.ac (bootstrap_target_libs): Add libsanitizer.
2139 * Makefile.in: Regenerated.
2140 * configure: Likewise.
2141
2142 2012-12-08 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2143
2144 * config.sub: Merge from config repo.
2145
2146 2012-11-30 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2147
2148 * configure.ac: Merge from GCC.
2149 * Makefile.tpl: Ditto.
2150 * Makefile.in: Ditto.
2151 * configure: Ditto.
2152
2153 2012-11-28 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2154
2155 * configure.ac (noconfigdirs): Merge from GCC.
2156 * configure: Regenerate.
2157
2158 2012-11-19 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2159
2160 * config.sub (arm): Merge from upstream: Handle armv[6-8] targets.
2161
2162 2012-11-14 Roland McGrath <mcgrathr@google.com>
2163
2164 * configure.ac (ENABLE_GOLD): Consider *-*-nacl* targets ELF.
2165 * configure: Regenerate.
2166
2167 2012-11-13 Richard Henderson <rth@redhat.com>
2168
2169 * configure.ac: Move libsanitizer logic to subdirectory.
2170 * configure: Regenerate.
2171
2172 2012-11-13 Dodji Seketeli <dodji@redhat.com>
2173
2174 * configure.ac: Enable libsanitizer just on x86 linux for now.
2175 * configure: Re-generate.
2176
2177 2012-11-13 David Edelsohn <dje.gcc@gmail.com>
2178
2179 * configure.ac: Merge libquadmath sections.
2180 * configure: Regenerate.
2181
2182 2012-11-12 Wei Mi <wmi@google.com>
2183
2184 * configure.ac: Add libsanitizer to target_libraries.
2185 * Makefile.def: Ditto.
2186 * configure: Regenerate.
2187 * Makefile.in: Regenerate.
2188
2189 2012-11-03 H.J. Lu <hongjiu.lu@intel.com>
2190
2191 * configure: Regenerated.
2192
2193 2012-11-03 Robert Mason <rbmj@verizon.net>
2194
2195 * configure.ac: add --disable-libstdcxx configure option
2196 and handle defaulted state only for VxWorks, ARM-wince-pe and AVR.
2197
2198 2012-10-24 Corinna Vinschen <corinna@vinschen.de>
2199
2200 * configure.ac (FLAGS_FOR_TARGET,target=cygwin): Fix for building
2201 against Mingw64 w32api.
2202 * configure: Regenerate.
2203
2204 2012-10-23 Eric Botcazou <ebotcazou@adacore.com>
2205
2206 PR bootstrap/54820
2207 * configure.ac (have_static_libs): Force 'no' for GCC version < 4.5.
2208 * configure: Regenerate.
2209
2210 2012-10-22 Eric Botcazou <ebotcazou@adacore.com>
2211
2212 PR bootstrap/54820
2213 * Makefile.tpl (STAGE1_FLAGS_TO_PASS): New variable.
2214 (all-[+prefix+][+module+]): Pass stage1_args to sub-makes.
2215 (all-stage[+id+]-[+prefix+][+module+]): Likewise, if prev is false.
2216 (clean-stage[+id+]-[+prefix+][+module+]): Likewise, if prev is false.
2217 (host_modules): Set stage1_args to STAGE1_FLAGS_TO_PASS.
2218 * Makefile.in: Regenerate.
2219 * configure.ac (have_static_libs): New variable and associated check.
2220 (stage1-ldflags): Move to after stage1_libs and set to -static-libstdc++
2221 -static-libgcc if stage1_libs is empty and have_static_libs is yes.
2222 * configure: Regenerate.
2223
2224 2012-10-10 David Holsgrove <david.holsgrove@xilinx.com>
2225
2226 * config.guess, config.sub: Include updated version from
2227 config-patches. Adds microblaze little endian support.
2228
2229 2012-09-28 Ian Lance Taylor <iant@google.com>
2230
2231 * Makefile.def: Make all-target-libgo depend on
2232 all-target-libbacktrace.
2233 * Makefile.in: Rebuild.
2234
2235 2012-09-26 Ian Lance Taylor <iant@google.com>
2236
2237 * Makefile.def: Make all-gcc depend on all-libbacktrace.
2238 * Makefile.in: Rebuild.
2239
2240 2012-09-06 Diego Novillo <dnovillo@google.com>
2241
2242 * configure.ac: Bump minimum GMP version to 4.2.3.
2243 * configure: Re-generate.
2244
2245 2012-09-05 Georg-Johann Lay <avr@gjlay.de>
2246
2247 PR target/54461
2248 * configure.ac (noconfigdirs,target=avr-*-*): Add target-newlib,
2249 target-libgloss if not configured --with-avrlibc=no.
2250 * configure: Regenerate.
2251
2252 2012-09-04 Jason Merrill <jason@redhat.com>
2253
2254 * configure.ac: Fix --enable-languages=all.
2255
2256 2012-09-03 Richard Guenther <rguenther@suse.de>
2257
2258 PR bootstrap/54138
2259 * configure.ac: Re-organize ISL / CLOOG checks to allow
2260 disabling with either --without-isl or --without-cloog.
2261 * configure: Regenerated.
2262
2263 2012-09-03 Georg-Johann Lay <avr@gjlay.de>
2264
2265 * configure.ac (noconfigdirs,target=avr): Add target-libquadmath.
2266 * configure: Regenerate.
2267
2268 2012-09-21 Steve Ellcey <sellcey@mips.com>
2269
2270 * configure.ac: Add mips*-mti-elf* target.
2271 * configure: Regenerate.
2272
2273 2012-09-19 Ian Lance Taylor <iant@google.com>
2274
2275 * configure.ac (host_libs): Add libbacktrace.
2276 (target_libraries): Add libbacktrace.
2277 * Makefile.def (host_modules): Add libbacktrace.
2278 (target_modules): Likewise.
2279 * configure, Makefile.in: Rebuild.
2280
2281 2012-09-15 Jiong Wang <jiwang@tilera.com>
2282
2283 * configure.ac (ENABLE_GOLD): support tilegx*
2284 * configure: rebuild
2285
2286 2012-09-14 David Edelsohn <dje.gcc@gmail.com>
2287
2288 PR target/38607
2289 Merge upstream change.
2290 * libtool.m4 (_LT_COMPILER_PIC): Add -fPIC to GCC and GXX for AIX.
2291
2292 * configure.ac: Add target-libquadmath to noconfigdirs for AIX.
2293 Add libgomp*.o to compare_exclusions for AIX.
2294 * configure: Regenerate.
2295
2296 2012-08-26 H.J. Lu <hongjiu.lu@intel.com>
2297
2298 PR binutils/4970
2299 * Makefile.def (host_modules): Rmove lib_path=.libs from bfd
2300 and opcodes.
2301 * Makefile.in: Regenerated.
2302
2303 2012-08-14 Diego Novillo <dnovillo@google.com>
2304
2305 Merge from cxx-conversion branch.
2306
2307 * Makefile.tpl (STAGE[+id+]_CXXFLAGS): Remove
2308 POSTSTAGE1_CONFIGURE_FLAGS.
2309 * Makefile.in: Regenerate.
2310 * configure.ac (ENABLE_BUILD_WITH_CXX): Remove. Update all users.
2311 Force C++ when bootstrapping.
2312 * configure: Regenerate.
2313
2314 2012-07-06 Richard Guenther <rguenther@suse.de>
2315
2316 * Makefile.def (cloog): Pass $(HOST_GMPINC) and $(HOST_ISLINC)
2317 as CPPFLAGS, pass path to built gmp as LDFLAGS, always use
2318 --with-gmp=system.
2319 * Makefile.in: Regenerated.
2320 * configure: Likewise.
2321
2322 2012-07-06 Richard Guenther <rguenther@suse.de>
2323
2324 * configure.ac (extra_isl_gmp_configure_flags): Initialize and subst.
2325 * Makefile.def (isl): Use extra_isl_gmp_configure_flags and
2326 supply V=1 as extra_make_flags.
2327 * configure: Regenerated.
2328 * Makefile.in: Likewise.
2329
2330 2012-07-03 Richard Guenther <rguenther@suse.de>
2331
2332 * Makfile.def (isl): Remove not necessary extra_exports and
2333 extra_make_flags.
2334 (cloog): Use $$CPPFLAGS instead of ${CPPFLAGS}.
2335 * Makefile.in: Regenerated.
2336
2337 2012-07-03 Richard Guenther <rguenther@suse.de>
2338
2339 * Makefile.def (cloog): Add V=1 to extra_make_flags.
2340 * configure.ac: If either the ISL or the CLooG check failed
2341 do not try to build in-tree versions.
2342 * Makefile.in: Regenerated.
2343 * configure: Regenerated.
2344
2345 2012-07-02 Richard Guenther <rguenther@suse.de>
2346 Michael Matz <matz@suse.de>
2347 Tobias Grosser <tobias@grosser.es>
2348 Sebastian Pop <sebpop@gmail.com>
2349
2350 * Makefile.def: Add ISL host module, remove PPL host module.
2351 Adjust ClooG host module to use the proper ISL.
2352 * Makefile.tpl: Pass ISL include flags instead of PPL ones.
2353 * configure.ac: Include config/isl.m4. Add ISL host library,
2354 remove PPL. Remove PPL configury, add ISL configury, adjust
2355 ClooG configury.
2356 * Makefile.in: Regenerated.
2357 * configure: Likewise.
2358
2359 2012-07-02 Richard Guenther <rguenther@suse.de>
2360
2361 Merge from graphite branch
2362 2011-07-21 Tobias Grosser <tobias@grosser.es>
2363
2364 * configure: Regenerated.
2365 * config/cloog.m4: Remove support for CLooG-ppl and CLooG-parma,
2366 both cloog.org and legacy versions. The only supported version will
2367 be CLooG with the isl backend.
2368
2369 2011-07-21 Tobias Grosser <tobias@grosser.es>
2370
2371 * configure: Regenerated.
2372 * configure.ac: Require cloog isl 0.17.0
2373
2374 2011-07-21 Tobias Grosser <tobias@grosser.es>
2375
2376 * configure: Regenerated.
2377 * config/cloog.m4: Do not define CLOOG_ORG
2378
2379 2012-06-29 Steven Bosscher <steven@gcc.gnu.org>
2380
2381 * configure.ac: Skip C if explicitly selected.
2382 * configure: Regenerate.
2383
2384 2012-06-28 Christophe Lyon <christophe.lyon@st.com>
2385
2386 * configure.ac (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Make sure
2387 they contain -O2.
2388 * configure: Regenerate.
2389
2390 2012-06-20 Jason Merrill <jason@redhat.com>
2391
2392 * Makefile.tpl (check-target-libgomp-c++): New.
2393 (check-target-libitm-c++): New.
2394 * Makefile.def (c++): Add them.
2395 * Makefile.in: Regenerate.
2396
2397 2012-05-16 Olivier Hainque <hainque@adacore.com>
2398
2399 * Makefile.tpl (gcc-no-fixedincludes): Rename into ...
2400 (gcc-install-no-fixedincludes): Now forwarder to local target in gcc/
2401 (install-no-fixedincludes): Adjust accordingly.
2402 * Makefile.in: Regenerate.
2403
2404 2012-05-09 Nick Clifton <nickc@redhat.com>
2405 Paul Smith <psmith@gnu.org>
2406
2407 PR bootstrap/50461
2408 * configure.ac (mpfr-dir): When using in-tree MPFR sources
2409 allow for the fact that from release v3.1.0 of MPFR the source
2410 files were moved into a src sub-directory.
2411 * configure: Regenerate.
2412
2413 2012-05-07 Janne Blomqvist <jb@gcc.gnu.org>
2414
2415 * configure.ac: Bump minimum MPFR version to 2.4.0.
2416 * configure: Regenerated.
2417
2418 2012-05-01 Richard Henderson <rth@redhat.com>
2419
2420 * Makefile.def (libatomic): New target_module.
2421 * configure.ac (target_libraries): Add libatomic.
2422 (noconfigdirs): Check if libatomic is supported.
2423 * Makefile.in, configure: Rebuild.
2424
2425 2012-05-15 H.J. Lu <hongjiu.lu@intel.com>
2426
2427 Merge upstream change
2428 * libtool.m4 (_LT_ENABLE_LOCK): Support x32.
2429
2430 2011-11-21 Andreas Tobler <andreast@fgznet.ch>
2431
2432 * libtool.m4: Additional FreeBSD 10 fixes.
2433
2434 2012-06-28 Christophe Lyon <christophe.lyon@st.com>
2435
2436 * configure.ac (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Make sure
2437 they contain -O2.
2438 * configure: Regenerate.
2439
2440 2012-05-14 Catherine Moore <clm@codesourcery.com>
2441
2442 * NEWS: Mention PowerPC VLE port.
2443
2444 2012-05-11 Mike Frysinger <vapier@gentoo.org>
2445
2446 * MAINTAINERS (config/): Move to intl/ section.
2447 (compile; depcomp; install-sh; missing; ylwrap): Likewise.
2448
2449 2012-05-09 Nick Clifton <nickc@redhat.com>
2450 Paul Smith <psmith@gnu.org>
2451
2452 PR bootstrap/50461
2453 * configure.ac (mpfr-dir): When using in-tree MPFR sources
2454 allow for the fact that from release v3.1.0 of MPFR the source
2455 files were moved into a src sub-directory.
2456 * configure: Regenerate.
2457
2458 2012-05-02 Roland McGrath <mcgrathr@google.com>
2459
2460 * configure.ac (ENABLE_GOLD): Consider *-*-nacl* targets ELF.
2461 * configure: Regenerate.
2462
2463 2012-04-25 Joel Brobecker <brobecker@adacore.com>
2464
2465 * config.sub: Update to 2012-04-18 version from official repo.
2466
2467 2012-03-19 Tristan Gingold <gingold@adacore.com>
2468
2469 * configure.ac (ia64*-*-*vms*): Add support for ld.
2470 * configure: Regenerate.
2471
2472 2012-03-14 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2473
2474 * configure.ac (enable_libgomp): Remove *-*-irix6*.
2475 (unsupported_languages): Remove mips-sgi-irix6.*.
2476 (noconfigdirs): Don't add ${libgcj} for mips*-*-irix6*.
2477 (with_stabs): Remove.
2478 * configure: Regenerate.
2479
2480 2012-03-12 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2481
2482 * configure.ac (enable_libgomp): Remove *-*-osf*.
2483 (with_stabs): Remove alpha*-*-osf*.
2484 * configure: Regenerate.
2485
2486 2012-03-09 Jeff Johnston <jjohnstn@redhat.com>
2487
2488 * COPYING.NEWLIB: Modify DJ Delorie license to include
2489 modification rights in clause as permitted by DJ Delorie.
2490 * COPYING.LIBGLOSS: Ditto.
2491
2492 2012-03-09 Jeff Johnston <jjohnstn@redhat.com>
2493
2494 * COPYING.NEWLIB: Remove two unused licenses.
2495
2496 2012-03-05 Tristan Gingold <gingold@adacore.com>
2497
2498 * configure.ac: Enable gdb and readline for ia64*-*-*vms*.
2499 * configure: Regenerate.
2500
2501 2012-02-21 Joern Rennecke <joern.rennecke@embecosm.com>
2502
2503 * COPYING.NEWLIB: Add Adapteva notice.
2504 * COPYING.LIBGLOSS: Add Adapteva notice.
2505
2506 2011-12-18 Eric Botcazou <ebotcazou@adacore.com>
2507
2508 * configure: Regenerate.
2509
2510 2011-12-15 Jeff Johnston <jjohnstn@redhat.com>
2511
2512 * COPYING.LIBGLOSS: Add GPL with exception license.
2513
2514 2011-11-09 Roland McGrath <mcgrathr@google.com>
2515
2516 * configure.ac: Add tool checks for READELF and READELF_FOR_TARGET.
2517 * configure: Rebuild.
2518 * Makefile.def (flags_to_pass): Add READELF_FOR_TARGET.
2519 * Makefile.tpl (READELF, READELF_FOR_TARGET): New variables.
2520 (HOST_EXPORTS): Add READELF, READELF_FOR_TARGET.
2521 (BASE_FLAGS_TO_PASS): Add READELF_FOR_TARGET.
2522 (BASE_TARGET_EXPORTS, EXTRA_HOST_FLAGS, EXTRA_TARGET_FLAGS):
2523 Add READELF.
2524 * Makefile.in: Rebuild.
2525
2526 2011-11-08 Richard Henderson <rth@redhat.com>
2527
2528 * configure.ac: Test for libitm directory present first.
2529
2530 * configure.ac: Adjust srcdir for running libitm/configure.tgt.
2531
2532 * configure.ac: Test libitm/configure.tgt to disable libitm.
2533 * configure: Rebuild.
2534
2535 2011-11-02 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2536
2537 * Makefile.tpl (EXTRA_GCC_FLAGS): Remove LIBGCC2_CFLAGS,
2538 LIBGCC2_DEBUG_CFLAGS, LIBGCC2_INCLUDES.
2539 * Makefile.in: Regenerate.
2540
2541 2011-11-01 DJ Delorie <dj@redhat.com>
2542
2543 * configure.ac (rl78-*-*) New case.
2544 * configure: Regenerate.
2545
2546 2011-11-01 DJ Delorie <dj@redhat.com>
2547
2548 * config.sub: Update to version 2011-10-29 (added rl78)
2549
2550 2011-10-27 Nick Clifton <nickc@redhat.com>
2551
2552 * config.sub: Import these changes from the config project:
2553
2554 2011-10-08 Joern Rennecke <joern.rennecke@embecosm.com>
2555 Ben Elliston <bje@gnu.org>
2556
2557 * config.sub (epiphany): New.
2558
2559 2011-09-09 Linas Vepstas <linasvepstas@gmail.com>
2560 Ben Elliston <bje@gnu.org>
2561
2562 * config.sub (hexagon, hexagon-*): New.
2563
2564 2011-08-23 Roland McGrath <mcgrathr@google.com>
2565
2566 * config.sub: Rename 32eb to be32, 32el to le32, 64el to le64, and
2567 64eb to be64.
2568
2569 2011-08-16 Roland McGrath <mcgrathr@google.com>
2570
2571 * config.sub (32eb, 32el, 64eb, 64el): New (pseudo-)CPUs.
2572 (nacl): Grok as alias for 32el-unknown-nacl.
2573
2574 2011-08-19 Joel Brobecker <brobecker@adacore.com>
2575
2576 * src-release (GDB_SUPPORT_DIRS): Add 'cpu'.
2577
2578 2011-08-14 Yao Qi <yao@codesourcery.com>
2579
2580 Merge from gcc:
2581
2582 2011-08-14 Yao Qi <yao@codesourcery.com>
2583 * configure.ac (tic6x-*-*): Remove gdb from noconfigdirs.
2584 * configure: Regenerate.
2585
2586 2011-07-26 Ian Lance Taylor <iant@google.com>
2587
2588 Merge from gcc:
2589
2590 2011-07-26 Ian Lance Taylor <iant@google.com>
2591 * configure.ac: Set have_compiler based on whether gcc directory
2592 exists, rather than on whether gcc is in configdirs.
2593 * configure: Rebuild.
2594
2595 2011-07-20 David Edelsohn <dje.gcc@gmail.com>
2596 * Makefile.tpl (POSTSTAGE1_CONFIGURE_FLAGS): Add libsupc++ to
2597 link directories.
2598 * Makefile.in: Rebuild.
2599
2600 2011-07-20 Ian Lance Taylor <iant@google.com>
2601 PR bootstrap/49787
2602 * configure.ac: Move --enable-bootstrap handling earlier in file.
2603 If --enable-bootstrap and either --enable-build-with-cxx or
2604 --enable-build-poststage1-with-cxx, enable C++ automatically.
2605 * configure: Rebuild.
2606
2607 2011-07-19 Ian Lance Taylor <iant@google.com>
2608 * configure.ac: Add --enable-build-poststage1-with-cxx. If set,
2609 make C++ a boot_language. Set and substitute
2610 POSTSTAGE1_CONFIGURE_FLAGS.
2611 * Makefile.tpl (POSTSTAGE1_CONFIGURE_FLAGS): New variable.
2612 (STAGE[+id+]_CONFIGURE_FLAGS): Add $(POSTSTAGE1_CONFIGURE_FLAGS).
2613 * configure, Makefile.in: Rebuild.
2614
2615 2011-07-16 Jason Merrill <jason@redhat.com>
2616 * Makefile.def (language=c++): Add check-c++0x and
2617 check-target-libmudflap-c++.
2618 * Makefile.tpl (check-target-libmudflap-c++): New.
2619 * Makefile.in: Regenerate.
2620
2621 2011-07-16 Matthias Klose <doko@ubuntu.com>
2622 * Makefile.tpl (EXTRA_CONFIGARGS_LIBJAVA): Define.
2623 * Makefile.def (target_modules/libjava): Pass
2624 $(EXTRA_CONFIGARGS_LIBJAVA).
2625 * configure.ac: Pass --disable-static in EXTRA_CONFIGARGS_LIBJAVA,
2626 if not configured with --enable-static-libjava.
2627 * Makefile.in: Regenerate.
2628 * configure: Likewise.
2629
2630 2011-06-22 Hans-Peter Nilsson <hp@axis.com>
2631 PR regression/47836
2632 PR bootstrap/23656
2633 PR other/47733
2634 PR bootstrap/49247
2635 PR c/48825
2636 * configure.ac (target_libraries): Remove target-libiberty.
2637 Remove case-statement setting skipdirs=target-libiberty for
2638 multiple targets. Remove checking target_configdirs and
2639 removing target-libiberty but keeping target-libgcc if
2640 otherwise empty.
2641 * Makefile.def (target_modules): Don't add libiberty.
2642 (dependencies): Remove all traces of target-libiberty.
2643 * configure, Makefile.in: Regenerate.
2644
2645 2011-07-22 Jason Merrill <jason@redhat.com>
2646
2647 * Makefile.def (language=c++): Add check-c++0x and
2648 check-target-libmudflap-c++.
2649 * Makefile.tpl (check-target-libmudflap-c++): New.
2650 * Makefile.in: Regenerate.
2651
2652 2011-07-18 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2653
2654 * configure: Regenerate.
2655
2656 2011-07-07 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2657
2658 PR target/39150
2659 * configure.ac (i[3456789]86-*-solaris2*): Also accept
2660 x86_64-*-solaris2.1[0-9]*.
2661 * configure: Regenerate.
2662
2663 2011-06-13 Walter Lee <walt@tilera.com>
2664
2665 * configure.ac (tilepro-*-*) New case.
2666 (tilegx-*-*): Likewise.
2667 * configure: Regenerate.
2668
2669 2011-06-06 Nick Clifton <nickc@redhat.com>
2670
2671 * config.sub: Sync from upstream.
2672
2673 2011-05-08 Doug Kwan <dougkwan@google.com>
2674
2675 Merge from gcc:
2676
2677 2011-05-08 Doug Kwan <dougkwan@google.com>
2678
2679 * configure.ac: Propagate LDFLAGS_FOR_TARGET.
2680 * configure: Regenerated.
2681 * Makefile.tpl (LDFLAGS_FOR_TARGET): Use LDFLAGS_FOR_TARGET
2682 value from configure.
2683 * Makefile.in: Regenerated.
2684
2685 2011-05-05 Joseph Myers <joseph@codesourcery.com>
2686
2687 * configure.ac (alpha*-dec-osf*, i[[3456789]]86-*-rdos*,
2688 sh*-*-pe|mips*-*-pe|arm-wince-pe, sparc-*-sunos4*, *-*-aix*,
2689 *-*-beos*, *-*-chorusos, *-*-dragonfly*, *-*-freebsd*, *-*-linux*
2690 | *-*-gnu* | *-*-k*bsd*-gnu | *-*-kopensolaris*-gnu, *-*-lynxos*,
2691 *-*-mingw*, *-*-netbsd*, *-*-netware*, *-*-tpf*, *-*-uclinux*,
2692 *-*-vxworks*): Disable newlib and libgloss in separate case
2693 statement.
2694 (i[[3456789]]86-*-linux*): Move logic allowing newlib to be built
2695 to separate case statement.
2696 (*-*-chorusos, *-*-dragonfly*, *-*-freebsd*, *-*-netbsd*,
2697 *-*-netware*, *-*-tpf*, *-*-uclinux*, *-*-vxworks*,
2698 alpha*-dec-osf*, alpha*-*-linux*, am33_2.0-*-linux*, sh-*-linux*,
2699 sh*-*-pe|mips*-*-pe|*arm-wince-pe, arm-*-coff, arm-*-elf* |
2700 arm*-*-eabi*, arm*-*-linux-gnueabi, arm*-*-symbianelf*, avr-*-*,
2701 bfin-*-*, cris-*-* | crisv32-*-*, frv-*-*, i[[3456789]]86-*-coff |
2702 i[[3456789]]86-*-elf, i[[3456789]]86-w64-mingw*,
2703 i[[3456789]]86-*-mingw*, x86_64-*-mingw*,
2704 i[[3456789]]86-*-interix*, i[[3456789]]86-*-beos*,
2705 i[[3456789]]86-*-rdos*, m32r-*-*,
2706 m68hc11-*-*|m6811-*-*|m68hc12-*-*|m6812-*-*, m68k-*-elf*, m68*-*-*
2707 | fido-*-*, powerpc-*-aix*, powerpc-*-beos*, powerpc-*-eabi,
2708 powerpc-*-eabi* | powerpcle-*-eabi* | powerpc-*-rtems*,
2709 rs6000-*-lynxos*, rs6000-*-aix*, mips*-*-linux*, sparclet-*-aout*
2710 | sparc86x-*-*, sparc-*-elf*, sparc64-*-elf*, sparclite-*-*,
2711 sparc-*-sunos4*, sparc-*-solaris* | sparc64-*-solaris* |
2712 sparcv9-*-solaris*, *-*-linux* | *-*-gnu* | *-*-k*bsd*-gnu |
2713 *-*-kopensolaris*-gnu, *-*-lynxos*, *-*-*): Don't disable newlib
2714 and libgloss in main case over targets. Remove most empty cases
2715 in main case over targets.
2716 * configure: Regenerate.
2717
2718 2011-05-04 Joseph Myers <joseph@codesourcery.com>
2719
2720 * configure.ac: Remove code setting special library locations for
2721 hppa*64*-*-hpux11*. Remove code setting compiler for
2722 sparc-sun-solaris2*.
2723 * configure: Regenerate.
2724
2725 2011-05-04 Joseph Myers <joseph@codesourcery.com>
2726
2727 * configure.ac: Separate libgloss_dir settings from general case
2728 over targets.
2729 * configure: Regenerate.
2730
2731 2011-04-28 Joseph Myers <joseph@codesourcery.com>
2732
2733 * configure.ac (*-*-dragonfly*, *-*-freebsd*, *-*-netbsd*,
2734 alpha*-dec-osf*, alpha*-*-linux*, alpha*-*-*, sh-*-linux*,
2735 arm-*-elf* | arm*-*-eabi*, arm*-*-linux-gnueabi, frv-*-*): Remove
2736 cases in libgcj-disabling case statement.
2737 (hppa*64*-*-linux*): Set unsupported_languages instead of
2738 disabling target-zlib.
2739 (hppa*64*-*-*): Restrict case in libgcj-disabling case statement
2740 to hppa*64*-*-hpux*.
2741 (hppa*-*-*): Restrict case in libgcj-disabling case statement to
2742 hppa*-*-hpux*.
2743 (ia64*-*-elf*, ia64*-**-hpux*, i[[3456789]]86-*-elf,
2744 i[[3456789]]86-*-linux*, *-*-cygwin*, i[[3456789]]86-*-interix*,
2745 i[[3456789]]86-*-solaris2*, m32r-*-*, m68k-*-elf*, m68*-*-* |
2746 fido-*-*, powerpc-*-eabi, powerpc-*-eabi* | powerpcle-*-eabi* |
2747 powerpc-*-rtems*, mips*-*-linux*, mips*-*-*, sh-*-* | sh64-*-*,
2748 sparc-*-elf*, sparc64-*-elf*, sparc-*-solaris* |
2749 sparc64-*-solaris* | sparcv9-*-solaris*, *-*-linux* | *-*-gnu* |
2750 *-*-k*bsd*-gnu | *-*-kopensolaris*-gnu, *-*-*): Remove cases in
2751 libgcj-disabling case statement.
2752 * configure: Regenerate.
2753
2754 2011-04-28 Joseph Myers <joseph@codesourcery.com>
2755
2756 * configure.ac: Disable Java for targets not supporting libffi.
2757 (*-*-chorusos, *-*-kaos*, am33_2.0-*-linux*, sh*-*-pe|mips*-*-pe):
2758 Remove cases in Java-disabling statement.
2759 (*arm-wince-pe): Change to arm-wince-pe.
2760 (arc-*-*, arm-*-coff, arm-*-pe*, arm-*-riscix*, avr-*-*): Remove
2761 cases in Java-disabling statement.
2762 (bfin-*-*): Don't disable Java again.
2763 (c4x-*-* | tic4x-*-*, tic54x-*-*, cr16-*-*, d10v-*-*, d30v-*-*,
2764 fr30-*-elf*, moxie-*-*, h8300*-*-*, h8500-*-*, hppa1.1-*-osf* |
2765 hppa1.1-*-bsd*, hppa*-*-*elf* | hppa*-*-lites* | hppa*-*-openbsd*,
2766 hppa*-*-pro*, i960-*-*, i[[3456789]]86-*-coff,
2767 i[[3456789]]86-*-pe, i[[3456789]]86-*-sco3.2v5*,
2768 i[[3456789]]86-*-sco*, i[[3456789]]86-*-sysv4*,
2769 i[[3456789]]86-*-beos*, i[[3456789]]86-*-rdos*,
2770 m68hc11-*-*|m6811-*-*|m68hc12-*-*|m6812-*-*): Remove cases in
2771 Java-disabling statement.
2772 (mmix-*-*): Don't disable Java again.
2773 (mt-*-*, powerpc*-*-winnt* | powerpc*-*-pe*, powerpcle-*-solaris*,
2774 powerpc-*-beos*, rs6000-*-lynxos*, rs6000-*-*, m68k-apollo-*,
2775 microblaze*, mips*-sde-elf*, mips*-*-irix5*, mips*-*-bsd*,
2776 sparclet-*-aout* | sparc86x-*-*, sparclite-*-*, sparc-*-sunos4*,
2777 tic6x-*-*, v810-*-*, vax-*-*): Remove cases in Java-disabling
2778 statement.
2779 * configure: Regenerate.
2780
2781 2011-04-28 Joseph Myers <joseph@codesourcery.com>
2782
2783 Merge from GCC:
2784
2785 2011-04-18 Jack Howarth <howarth@bromo.med.uc.edu>
2786
2787 PR lto/48086
2788 * configure.ac: Re-enable LTO on *-apple-darwin9*.
2789 * configure: Regenerate.
2790
2791 2011-04-28 Joseph Myers <joseph@codesourcery.com>
2792
2793 * configure.ac: Separate cases disabling Java and Java libraries
2794 from general case over targets.
2795 * configure: Regenerate.
2796
2797 2011-04-06 Joseph Myers <joseph@codesourcery.com>
2798
2799 * configure.ac (build_tools): Remove build-byacc.
2800 (host_libs): Remove mmalloc.
2801 (host_tools): Remove byacc make patch prms send-pr ash bash bzip2
2802 autoconf automake libtool diff rcs fileutils shellutils time
2803 textutils wdiff find uudecode hello tar gzip indent recode release
2804 sed perl gawk findutils gettext zip.
2805 (libgcj): Remove target-qthreads.
2806 (target_tools): Remove target-examples target-gperf.
2807 (YACC): Don't handle building byacc.
2808 * configure: Regenerate.
2809 * Makefile.def (ash, autoconf, automake, bash, byacc, bzip2, diff,
2810 dosutils, examples, fileutils, find, findutils, gawk, gettext,
2811 gnuserv, gperf, gzip, hello, indent, libtool, make, mmalloc,
2812 patch, perl, prms, qthreads, rcs, recode, release, sed, send-pr,
2813 shellutils, tar, textutils, time, uudecode, wdiff, zip): Don't
2814 handle building components.
2815 * Makefile.in: Regenerate.
2816
2817 2011-04-05 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
2818
2819 * config.sub: Sync from upstream.
2820
2821 2011-04-01 Joseph Myers <joseph@codesourcery.com>
2822
2823 * configure.ac (avr-*-*): Add comment about why libssp is disabled.
2824 (microblaze*): Don't disable libssp.
2825 * configure: Regenerate.
2826
2827 2011-04-01 Joseph Myers <joseph@codesourcery.com>
2828
2829 * configure.ac: Remove code setting CONFIG_SHELL, config_shell and
2830 moveifchange.
2831 * configure: Regenerate.
2832 * Makefile.tpl: Use @SHELL@ not @config_shell@.
2833 * Makefile.in: Regenerate.
2834
2835 2011-04-01 Joseph Myers <joseph@codesourcery.com>
2836
2837 * configure.ac (*-*-sysv4*): Don't enable libgomp.
2838 (alpha*-*-*vms*, i[[34567]]86-*-sco3.2v5*, mn10300-*-*,
2839 powerpc-*-chorusos*, powerpc*-*-eabi*, powerpc*-*-sysv*,
2840 powerpc*-*-kaos*, s390x-ibm-tpf*, sparc64-*-elf*, v850*-*-*,
2841 xtensa*-*-elf*, *-*-beos*, *-*-elf*, *-*-netware*, *-*-rtems*,
2842 *-*-sysv[[45]]*, *-*-vxworks*, *-wrs-windiss): Remove
2843 md_exec_prefix cases.
2844 * configure: Regenerate.
2845
2846 2011-04-01 Joseph Myers <joseph@codesourcery.com>
2847
2848 * configure.ac: Separate cases disabling target-libssp,
2849 target-libiberty, target-libstdc++-v3 and Fortran from general
2850 case over targets.
2851 * configure: Regenerate.
2852
2853 2011-04-01 Joseph Myers <joseph@codesourcery.com>
2854
2855 * configure.ac (*-*-chorusos): Don't disable libgcj.
2856 (*-*-freebsd[[12]] | *-*-freebsd[[12]].* | *-*-freebsd*aout*):
2857 Remove case.
2858 (*-*-kaos*): Don't disable GCC libraries, zlib or fastjar.
2859 (arm-*-coff): Don't disable libgcj.
2860 (arm*-*-linux-gnueabi): Remove useless assignment.
2861 (arm-*-riscix*): Don't disable libgcj.
2862 (bfin-*-*): Don't enable target-bsp and target-cygmon depending on
2863 configuration.
2864 (c4x-*-* | tic4x-*-*): Don't disable GCC libraries.
2865 (c54x*-*-*): Remove case.
2866 (tic54x-*-*): Don't disable GCC or GCC libraries.
2867 (cris-*-* | crisv32-*-*): Don't handle *-*-aout. Change *-*-elf
2868 to *.
2869 (d10v-*-*): Don't disable GCC libraries.
2870 (d30v-*-*): Don't disable libgcj.
2871 (h8500-*-*): Don't disable GCC libraries.
2872 (i960-*-*): Don't disable libgcj.
2873 (i[[3456789]]86-*-linux*): Don't handle *-*-*libc1*.
2874 (i[[3456789]]86-*-sco3.2v5*, i[[3456789]]86-*-sco*,
2875 i[[3456789]]86-*-sysv4*, i[[3456789]]86-*-beos*): Don't disable
2876 libgcj.
2877 (m68k-*-coff*): Remove case.
2878 (mmix-*-*): Don't disable libgloss on host.
2879 (mn10200-*-*, mn10300-*-*): Remove cases.
2880 (powerpc*-*-winnt* | powerpc*-*-pe*, powerpcle-*-solaris*,
2881 powerpc-*-beos*, m68k-apollo-*, mips*-*-irix5*, mips*-*-bsd*):
2882 Don't disable libgcj.
2883 (romp-*-*): Remove case.
2884 (sparclite-*-*, sparc-*-sunos4*): Don't disable libgcj.
2885 (sparc-*-solaris2.[[0-6]] | sparc-*-solaris2.[[0-6]].*): Remove
2886 case.
2887 (v810-*-*): Don't disable GCC libraries.
2888 (v850*-*-*, vax-*-vms, xtensa*-*-*): Remove cases.
2889 (ip2k-*-*): Don't disable GCC libraries.
2890 * configure: Regenerate.
2891
2892 2011-03-28 Joseph Myers <joseph@codesourcery.com>
2893
2894 * configure.ac (i[[3456789]]86-*-msdosdjgpp*): Don't disable
2895 libffi on host.
2896 (x86_64-*-mingw*, i[[3456789]]86-*-mingw32*): Don't disable newlib
2897 on host.
2898 (c54x*-*-* | tic54x-*-*): Don't disable newlib on host.
2899 * configure: Regenerate.
2900
2901 2011-03-26 John Marino <binutils@marino.st>
2902
2903 * configure.ac: Add support for *-*-dragonfly*
2904 * configure: Regenerate.
2905
2906 2011-03-25 Joseph Myers <joseph@codesourcery.com>
2907
2908 * configure.ac (native_only): Remove.
2909 (i[[3456789]]86-*-msdosdjgpp*): Don't disable expect dejagnu
2910 send-pr uudecode guile gnuserv on host.
2911 (x86_64-*-mingw*): Don't disable expect dejagnu autoconf automake
2912 send-pr rcs guile perl texinfo libtool on host.
2913 (i[[3456789]]86-*-mingw32*): Don't disable expect dejagnu autoconf
2914 automake send-pr rcs guile perl texinfo libtool on host.
2915 (*-*-cygwin*, *-*-netbsd*): Remove host cases.
2916 (*-*-kaos*): Don't disable target-examples target-gperf on target.
2917 (alpha*-dec-osf*): Don't disable fileutils on target.
2918 (sh*-*-pe|mips*-*-pe|*arm-wince-pe): Don't disable target-examples
2919 texinfo send-pr expect dejagnu on target.
2920 (arm-*-elf* | arm*-*-eabi*, arm*-*-linux-gnueabi): Don't disable
2921 target-qthreads on target.
2922 (hppa*-hp-hpux11*, hppa*-*-*): Don't disable shellutils on target.
2923 (ia64*-*-elf*, ia64*-*-*vms*): Don't disable mmalloc on target.
2924 (i[[3456789]]86-w64-mingw*, i[[3456789]]86-*-mingw*,
2925 x86_64-*-mingw*): Don't disable expect on target.
2926 (*-*-cygwin*): Don't disable target-gperf on target.
2927 (powerpc*-*-winnt* | powerpc*-*-pe*): Don't disable make expect
2928 gnuserv on target.
2929 (powerpcle-*-solaris*): Don't disable make expect gnuserv on
2930 target.
2931 * configure: Regenerate.
2932
2933 2011-03-25 Joseph Myers <joseph@codesourcery.com>
2934
2935 * configure.ac (target_tools): Remove target-groff.
2936 (native_only): Remove target-groff.
2937 (hppa*64*-*-*): Don't disable byacc.
2938 (i[[3456789]]86-*-mingw32*): Remove commented-out noconfigdirs
2939 setting.
2940 (*-*-kaos*): Don't skip target-librx and target-groff.
2941 (*-*-netware*): Don't skip target-libmudflap.
2942 (*-*-tpf*): Don't skip target-libmudflap.
2943 (sh*-*-pe|mips*-*-pe|*arm-wince-pe): Don't condition configured
2944 directories on the host.
2945 (ia64*-*-*vms*): Don't skip tix.
2946 (sh-*-* | sh64-*-*): Don't condition skipped directories on the
2947 host.
2948 * configure: Regenerate.
2949
2950 2011-03-24 Paolo Bonzini <pbonzini@redhat.com>
2951
2952 * configure.ac: Remove references to mt-mep, mt-netware,
2953 mt-wince.
2954 * Makefile.def: Add all-utils soft dependencies.
2955 * Makefile.tpl: Remove GDB_NLM_DEPS.
2956 * configure: Regenerate.
2957 * Makefile.in: Regenerate.
2958
2959 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2960
2961 Sync from GCC:
2962
2963 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2964
2965 * configure.ac: Do not include mh-x86omitfp.
2966 * configure: Regenerate.
2967
2968 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2969
2970 * configure.ac: Remove empty cases.
2971 * configure: Regenerate.
2972
2973 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2974
2975 * Makefile.def: Add dependency from termcap to gdb.
2976 * Makefile.in: Regenerate.
2977
2978 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2979
2980 * configure.ac: Remove all mentions of mh-sysv4 and mh-solaris.
2981 * configure: Regenerate.
2982 * Makefile.def: Remove all mentions of X11_FLAGS_TO_PASS.
2983 * Makefile.tpl: Likewise.
2984 * Makefile.in: Regenerate.
2985
2986 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2987
2988 * configure.ac: Remove all mentions of tentative_cc.
2989 * configure: Regenerate.
2990
2991 2011-03-16 Jack Howarth <howarth@bromo.med.uc.edu>
2992
2993 PR lto/48086
2994 * configure.ac: Re-enable LTO on *-apple-darwin9.
2995 * configure: Regenerate.
2996
2997 2011-03-24 Joseph Myers <joseph@codesourcery.com>
2998
2999 * configure.ac (i[[3456789]]86-*-vsta, i[[3456789]]86-*-go32*,
3000 i[[3456789]]86-*-beos*, powerpc-*-beos*, m68k-hp-hpux*,
3001 m68k-apollo-sysv*, m68k-apollo-bsd*, m88k-dg-dgux*,
3002 m88k-harris-cxux*, m88k-motorola-sysv*, mips*-dec-ultrix*,
3003 mips*-nec-sysv4*, mips*-sgi-irix4*, mips*-*-sysv4*, mips*-*-sysv*,
3004 i370-ibm-opened*, i[[3456789]]86-*-sysv5*, i[[3456789]]86-*-dgux*,
3005 i[[3456789]]86-ncr-sysv4.3*, i[[3456789]]86-ncr-sysv4*,
3006 i[[3456789]]86-*-sco3.2v5*, i[[3456789]]86-*-sco*,
3007 i[[3456789]]86-*-udk*, vax-*-ultrix2*, m68k-sun-sunos*,
3008 hppa*-*-hiux*, *-*-hiux*, rs6000-*-lynxos*, *-*-sysv4*,
3009 *-*-rhapsody*): Remove host cases.
3010 * configure: Regenerate.
3011
3012 2011-03-24 Joseph Myers <joseph@codesourcery.com>
3013
3014 * configure.ac (ppc*-*-pe): Remove host case.
3015 (strongarm-*-coff | xscale-*-coff, strongarm-*-elf* |
3016 xscale-*-elf*, thumb-*-coff, thumb-*-elf, thumb-*-pe, ep9312-*-elf
3017 | ep9312-*-coff, parisc*64*-*-linux*, ppc*-*-pe): Remove target
3018 cases.
3019 * configure: Regenerate.
3020
3021 2011-03-24 Joseph Myers <joseph@codesourcery.com>
3022
3023 * config.sub: Update to version 2011-03-23.
3024
3025 2011-03-22 Joseph Myers <joseph@codesourcery.com>
3026
3027 * configure.ac (arm-semi-aof, crx-*-*, parisc*-*-linux*,
3028 i370-*-opened*, i[[3456789]]86-moss-msdos | i[[3456789]]86-*-moss*
3029 | i[[3456789]]86-*-uwin*, mcore-*-pe*): Remove empty cases.
3030 * configure: Regenerate.
3031
3032 2011-03-22 Joseph Myers <joseph@codesourcery.com>
3033
3034 * config-ml.in: Don't handle arc-*-elf*.
3035 * configure.ac (arc-*-*, crx-*-*, i[[3456789]]86-*-pe,
3036 m68hc11-*-*|m6811-*-*|m68hc12-*-*|m6812-*-*, mcore-*-pe*): Don't
3037 handle GCC libraries.
3038 * configure: Regenerate.
3039
3040 2011-03-21 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3041
3042 PR bootstrap/48120:
3043 * configure.ac (pwllib): Use LIBS instead of LDFLAGS.
3044 Add -lstdc++ -lm to LIBS.
3045 * configure: Regenerate.
3046
3047 2011-03-18 David Edelsohn <dje.gcc@gmail.com>
3048
3049 * config.guess: Update to version 2011-02-02
3050 * config.sub: Update to version 2011-02-24
3051
3052 2011-03-03 Sebastian Pop <sebastian.pop@amd.com>
3053
3054 * configure.ac: Adjust test of with_ppl.
3055 * configure: Regenerated.
3056
3057 2011-03-02 Sebastian Pop <sebastian.pop@amd.com>
3058
3059 * configure.ac: Add -lpwl to ppllibs.
3060 * config/cloog.m4: Add -lisl to clooglibs.
3061 * configure: Regenerated.
3062
3063 2011-02-13 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3064
3065 Import from Libtool and gnulib:
3066
3067 2011-01-27 Gerald Pfeifer <gerald@pfeifer.com>
3068
3069 Prepare for supporting FreeBSD 10.
3070 * config.rpath: Remove handling of freebsd1* which soon would
3071 match FreeBSD 10.0.
3072
3073 2011-01-20 Gerald Pfeifer <gerald@pfeifer.com> (tiny change)
3074
3075 Remove support for FreeBSD 1.x.
3076 * libtool.m4 (_LT_LINKER_SHLIBS)
3077 (_LT_SYS_DYNAMIC_LINKER): Remove handling of freebsd1* which
3078 soon would incorrectly match FreeBSD 10.0.
3079
3080 2011-02-12 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3081
3082 PR binutils/12283
3083 * MAINTAINERS (mkinstalldirs): Comes from Automake.
3084 (move-if-change): Comes from gnulib.
3085 * move-if-change: Import version from gnulib.
3086
3087 2011-02-12 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3088
3089 Sync from GCC:
3090
3091 2011-02-12 Alexandre Oliva <aoliva@redhat.com>
3092
3093 PR lto/47225
3094 * Makefile.def (lto-plugin): Double dash for enable-shared.
3095 (configure-gcc): Depend on all-lto-plugin.
3096 * Makefile.in: Rebuilt.
3097
3098 2011-02-11 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3099
3100 * configure.ac: Remove extra bracket.
3101 * configure: Regenerate.
3102
3103 2011-02-06 Kai Tietz <kai.tietz@onevision.com>
3104
3105 PR lto/47225
3106 * Makefile.def: Add dependency for install-gcc
3107 on install-lto-plugin.
3108 * Makfile.in: Regenerated
3109
3110 2011-01-25 Jakub Jelinek <jakub@redhat.com>
3111
3112 * configure.ac: If with_ppl is no, move setting with_cloog=no
3113 after CLOOG_REQUESTED check.
3114 * configure: Regenerated.
3115
3116 2011-01-25 Sebastian Pop <sebastian.pop@amd.com>
3117
3118 * configure.ac: Call AC_MSG_ERROR when PPL 0.11 is not present and
3119 CLooG has been requested.
3120 * configure: Regenerated.
3121
3122 2011-01-25 Sebastian Pop <sebastian.pop@amd.com>
3123
3124 * configure: Regenerated.
3125 * configure.ac: Check for version 0.11 (or later revision) of PPL.
3126
3127 2011-01-25 Tobias Grosser <grosser@fim.uni-passau.de>
3128
3129 * configure: Regenerated.
3130 * configure.ac: Use CLOOG_CHECK_VERSION(0,16,1).
3131
3132 2011-01-07 Jan Hubicka <jh@suse.cz>
3133
3134 PR lto/47225
3135 * Makefile.in: Regenerate.
3136 * Makefile.def (lto-plugin): Always pass enable-shared to the plugin
3137 configure.
3138
3139 2011-01-31 Alexandre Oliva <aoliva@redhat.com>
3140
3141 PR libgcj/44341
3142 * configure.ac: Discard --with-* flags for host when configuring
3143 target libraries for cross build.
3144 * configure: Rebuilt.
3145
3146 2011-01-21 Andreas Schwab <schwab@redhat.com>
3147
3148 Sync from GCC:
3149
3150 2011-01-21 Andreas Schwab <schwab@redhat.com>
3151
3152 * configure.ac: Use AS_HELP_STRING throughout.
3153 * configure: Regenerate.
3154
3155 2011-01-18 Jie Zhang <jie.zhang@analog.com>
3156
3157 * configure.ac (bfin-*-*): Remove gdb from noconfigdirs.
3158 * configure: Regenerate.
3159
3160 2010-12-10 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
3161
3162 * ltmain.sh (relink): Use absolute path when hardcoding with -L.
3163
3164 2011-01-13 Joel Brobecker <brobecker@adacore.com>
3165
3166 * configure.ac: Remove readline, mmalloc, and gdb from noconfigdirs
3167 for ia64-hpux.
3168 * configure: Regenerate.
3169
3170 2011-01-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3171
3172 Sync from GCC:
3173 2010-12-22 Hariharan Sandanagobalane <hariharan@picochip.com>
3174
3175 * configure.ac: (picochip): Disable libiberty.
3176 * configure: Regenerate.
3177
3178 2010-12-18 Jeff Johnston <jjohnstn@redhat.com>
3179
3180 * COPYING.LIBGLOSS: Remove the GPL for fr30 target.
3181
3182 2010-12-10 Ian Lance Taylor <iant@google.com>
3183
3184 PR bootstrap/46819
3185 * configure.ac: For --disable-libgcj clear libgcj_saved.
3186 * configure: Rebuild.
3187
3188 2010-12-10 Tobias Burnus <burnus@net-b.de>
3189
3190 PR fortran/46540
3191 * configure.ac: Add --disable-libquadmath and
3192 --disable-libquadmath-support.
3193 * configure: Regenerate.
3194
3195 2010-12-10 Tristan Gingold <gingold@adacore.com>
3196
3197 * src-release (ETC_SUPPORT): add gnu-oids.texi
3198
3199 2010-12-03 Hans-Peter Nilsson <hp@axis.com>
3200
3201 PR libffi/46792
3202 * configure.ac (cris-*-elf, crisv32-*-elf): Disable target-libffi.
3203 * configure: Regenerate.
3204
3205 2010-12-02 Ian Lance Taylor <iant@google.com>
3206
3207 * configure.ac: Always set default for poststage1_ldflags to
3208 -static-libstdc++ -static-libgcc.
3209
3210 2010-12-02 Jeff Johnston <jjohnstn@redhat.com>
3211
3212 * COPYING.NEWLIB: Add National Semiconductor notice.
3213
3214 2010-11-29 Andreas Schwab <schwab@redhat.com>
3215
3216 * configure.ac: Move comment to remove extra space in last argument
3217 of GCC_TARGET_TOOL.
3218
3219 2010-11-26 Alexandre Oliva <aoliva@redhat.com>
3220
3221 PR other/46026
3222 * configure.ac (CXX_FOR_TARGET): Add -funconfigured-libstdc++-v3.
3223 * Makefile.def (CXX_FOR_TARGET): Removed from flags_to_pass.
3224 * Makefile.tpl (CXX_FOR_TARGET_FLAG_TO_PASS): New.
3225 (BASE_FLAGS_TO_PASS): Use it.
3226 * configure: Rebuilt.
3227 * Makefile.in: Rebuilt.
3228
3229 2010-11-23 H.J. Lu <hongjiu.lu@intel.com>
3230
3231 PR binutils/12258
3232 * configure.ac: Correct comments for --enable-gold/--enable-ld.
3233 Properly check default linker.
3234 * configure: Regnerated.
3235
3236 2010-11-23 Matthias Klose <doko@ubuntu.com>
3237
3238 * configure.ac: For --enable-gold, handle value `default' instead of
3239 `both*'. New configure option --{en,dis}able-ld.
3240 * configure: Regenerate.
3241
3242 2010-11-20 Ian Lance Taylor <iant@google.com>
3243
3244 * configure.ac: Only disable a language library if no language needs
3245 it. Don't let --disable-libgcj uncondtionally disable libffi.
3246 * configure: Rebuild.
3247
3248 2010-11-20 Paolo Bonzini <bonzini@gnu.org>
3249
3250 * configure: Regenerate.
3251
3252 2010-11-20 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3253
3254 PR other/46202
3255 * configure.ac: Fix just-built in-tree STRIP name to be
3256 binutils/strip-new.
3257 * configure: Regenerate.
3258 * Makefile.def (install-strip-gcc, install-strip-binutils)
3259 (install-strip-opcodes, install-strip-ld, install-strip-itcl)
3260 (install-strip-sid): Mirror dependencies on non-strip variants
3261 of these targets on the respective -strip prerequisites.
3262 * Makefile.tpl (install-strip, install-strip-host)
3263 (install-strip-target): New targets.
3264 (install-strip-[+module+], install-strip-target-[+module+]):
3265 New targets.
3266 * Makefile.in: Regenerate.
3267
3268 2010-11-19 Ian Lance Taylor <iant@google.com>
3269 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3270
3271 * configure.ac: Add target-libgo to target_libraries. Set
3272 and substitute GOC_FOR_BUILD and GOC_FOR_TARGET.
3273 * Makefile.tpl (BUILD_EXPORTS): Add GOC and GOCFLAGS.
3274 (HOST_EXPORTS): Add GOC.
3275 (BASE_TARGET_EXPORTS): Add GOC.
3276 (GOC_FOR_BUILD, GOCFLAGS, GOC_FOR_TARGET): New variables.
3277 (GOCFLAGS_FOR_TARGET): New variable.
3278 (EXTRA_HOST_FLAGS): Add GOC.
3279 (EXTRA_TARGET_FLAGS): Add GOC and GOCFLAGS.
3280 * Makefile.def (target_modules): Add libgo.
3281 (flags_to_pass): Add GOC_FOR_TARGET and GOCFLAGS_FOR_TARGET.
3282 (dependencies): Add dependency from configure-target-libgo to
3283 configure-target-libffi and all-target-libstdc++-v3. Add
3284 dependencies from all-target-libgo to all-target-libffi.
3285 (languages): Add go.
3286 * configure: Rebuild.
3287 * Makefile.in: Rebuild.
3288
3289 2010-11-19 Ian Lance Taylor <iant@google.com>
3290
3291 * config-ml.in: Add Go support: treat GOC and GOCFLAGS like other
3292 compiler/flag environment variables.
3293
3294 2010-11-18 Ian Lance Taylor <iant@google.com>
3295
3296 * configure.ac: Check for lang_requires_boot_languages in
3297 config-lang.in files.
3298 * configure: Rebuild.
3299
3300 2010-11-17 Mike Frysinger <vapier@gentoo.org>
3301
3302 * .gitignore: New file.
3303
3304 2010-11-16 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
3305 Tobias Burnus <burnus@net-b.de>
3306
3307 PR fortran/32049
3308 * Makefile.def: Add libquadmath; build it with language=fortran.
3309 * configure.ac: Add libquadmath.
3310 * Makefile.tpl: Handle multiple libs in check-[+language+].
3311 * Makefile.in: Regenerate.
3312 * configure: Regenerate.
3313
3314 2010-11-15 Andreas Schwab <schwab@redhat.com>
3315
3316 * configure.ac: Fix spelling in option names.
3317 * configure: Regenerated.
3318
3319 2010-11-13 Georg-Johann Lay <georgjohann@web.de>
3320
3321 PR bootstrap/39622
3322 * configure.ac (FLAGS_FOR_TARGET): Add include-fixed path.
3323 * configure: Regenerated.
3324
3325 2010-11-12 Tobias Grosser <grosser@fim.uni-passau.de>
3326
3327 * config/cloog.m4: Add -enable-cloog-backend=(isl|ppl|ppl-legacy) to
3328 define the cloog backend to use. Furthermore, only pass the ppllibs to
3329 the configure checks, if necessary.
3330 * configure: Regenerate.
3331
3332 2010-11-12 Tobias Grosser <grosser@fim.uni-passau.de>
3333
3334 * config/cloog.m4: Use CLooG predefined macro to check for CLooG PPL.
3335 * configure: regenerate
3336
3337 2010-11-12 Tobias Grosser <grosser@fim.uni-passau.de>
3338
3339 * config/cloog.m4: Fix typo. verison -> version.
3340 * configure: Regenerate.
3341
3342 2010-11-12 Tobias Grosser <grosser@fim.uni-passau.de>
3343
3344 * config/cloog.m4: Pass ppl libraries to the CLooG version check.
3345 * configure: Regenerate.
3346
3347 2010-11-11 Andreas Simbuerger <simbuerg@fim.uni-passau.de>
3348
3349 * configure.ac: Support official CLooG.org versions.
3350 * configure: Regenerate.
3351 * config/cloog.m4: New.
3352
3353 2010-11-05 Michael Eager <eager@eagercon.com>
3354
3355 * COPYING.LIBGLOSS: Correct typo in microblaze.
3356 * COPYING.NEWLIB: Same.
3357
3358 2010-11-04 Iain Sandoe <iains@gcc.gnu.org>
3359
3360 * configure.ac (*-*-darwin*): Use mh-darwin for all Darwin variants.
3361 * configure: Regenerate.
3362
3363 2010-11-03 Ian Lance Taylor <iant@google.com>
3364 Dave Korn <dave.korn.cygwin@gmail.com>
3365
3366 PR lto/46273
3367 * configure.ac: Remove libelf tests. Build lto-plugin on ELF always
3368 and on other supported platforms whenever LTO is enabled.
3369 * configure: Rebuild.
3370
3371 2010-11-02 Alan Modra <amodra@gmail.com>
3372
3373 PR binutils/12110
3374 * configure.ac: Error when source path contains spaces.
3375 * configure: Regenerate.
3376
3377 2010-10-20 Ian Lance Taylor <iant@google.com>
3378
3379 * Makefile.def (target_modules): Set lib_path to src/.libs for
3380 libstdc++-v3 module.
3381 * Makefile.tpl: Fix typo in TARGET_LIB_PATH comment.
3382 * Makefile.in: Rebuild.
3383
3384 2010-10-08 Bernd Schmidt <bernds@codesourcery.com>
3385 Joseph Myers <joseph@codesourcery.com>
3386
3387 * COPYING.LIBGLOSS: Add National Semiconductor and CodeSourcery
3388 notices.
3389 * COPYING.NEWLIB: Add Texas Instruments notice.
3390
3391 2010-10-07 Dave Korn <dave.korn.cygwin@gmail.com>
3392
3393 * configure.ac (build_lto_plugin): New shell variable.
3394 (--enable-lto): Turn on by default for all non-ELF platforms that
3395 have had LTO support added so far. Set build_lto_plugin appropriately
3396 for both ELF and non-ELF.
3397 (configdirs): Add lto-plugin or not based on build_lto_plugin.
3398 * configure: Regenerate.
3399
3400 2010-10-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3401
3402 PR bootstrap/45326
3403 PR bootstrap/45174
3404 * configure.ac: Honor initial values of $build_configargs,
3405 $host_configargs, $target_configargs. Mark the precious, so
3406 environment settings get recorded.
3407 * configure: Regenerate.
3408
3409 2010-10-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3410
3411 Sync from GCC:
3412
3413 2010-09-30 Michael Eager <eager@eagercon.com>
3414
3415 * configure.ac (microblaze): Add target-libssp to noconfigdirs.
3416 * configure: Regenerate.
3417
3418 2010-09-21 Iain Sandoe <iains@gcc.gnu.org>
3419
3420 * configure.ac (enable-lto): Add Darwin to the list of supported lto
3421 targets and amend comment.
3422 * configure: Regenerate.
3423
3424 2010-09-03 Jack Howarth <howarth@bromo.med.uc.edu>
3425
3426 * configure.ac: Enable LTO by default on Darwin.
3427 * configure: Regenerate.
3428
3429 2010-07-23 Marc Glisse <marc.glisse@normalesup.org>
3430
3431 PR bootstrap/44455
3432 * configure.ac (extra_mpfr_configure_flags): Copy from
3433 extra_mpc_gmp_configure_flags.
3434 * configure: Re-generated.
3435
3436 2010-09-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3437
3438 Sync from GCC:
3439
3440 PR bootstrap/45796
3441 * Makefile.def (info-gcc, dvi-gcc, pdf-gcc, html-gcc):
3442 Depend on all-build-libiberty.
3443 * Makefile.in: Regenerate.
3444
3445 2010-09-27 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3446
3447 Sync from GCC:
3448
3449 PR bootstrap/44621
3450 * configure.ac: Fix unportable shell quoting.
3451 * configure: Regenerate.
3452
3453 2010-07-26 Naveen.H.S <naveen.S@kpitcummins.com>
3454
3455 * configure.ac: Support all v850 targets.
3456 * configure: Regenerate.
3457
3458 2010-07-17 Jack Howarth <howarth@bromo.med.uc.edu>
3459
3460 PR target/44862
3461 * Makefile.tpl (POSTSTAGE1_CXX_EXPORT):
3462 Provide -B option to allow for link spec %s substitutions for
3463 libstdc++.a on darwin.
3464 * Makefile.in: Regenerate.
3465
3466 2010-06-10 Alexandre Oliva <aoliva@redhat.com>
3467
3468 * Makefile.def (configure-gcc): Depend on all-libelf.
3469 * Makefile.in: Rebuild.
3470
3471 2010-06-01 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3472
3473 * config.sub, config.guess: Update from upstream sources.
3474
3475 2010-06-01 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3476
3477 Sync from GCC:
3478
3479 2010-05-05 Sebastian Pop <sebastian.pop@amd.com>
3480 * configure.ac: Allow all the versions greater than 0.10 of PPL.
3481 * configure: Regenerated.
3482
3483 2010-04-20 Eric Botcazou <ebotcazou@adacore.com>
3484 * configure.ac (BUILD_CONFIG): Redirect output to /dev/null.
3485 * configure: Regenerate.
3486
3487 2010-04-17 Ralf Cors<E9>pius <ralf.corsepius@rtems.org>
3488 * configure.ac (*-*-rtems*): Add target-libiberty to $skipdirs.
3489 * configure: Regenerate.
3490
3491 2010-04-16 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3492 * configure.ac: Check for elf_getshdrstrndx or elf_getshstrndx
3493 separately.
3494 * configure: Regenerate.
3495
3496 2010-04-13 Steve Ellcey <sje@cup.hp.com>
3497 * configure: Regenerate after change to elf.m4.
3498
3499 2010-04-02 Sebastian Pop <sebastian.pop@amd.com>
3500 * configure.ac: Add brackets around AC_TRY_COMPILE alternative.
3501 * configure: Regenerated.
3502
3503 2010-04-02 Sebastian Pop <sebastian.pop@amd.com>
3504 * configure.ac: Print "buggy but acceptable" when CLooG
3505 revision is less than 9.
3506 * configure: Regenerated.
3507
3508 2010-05-26 Dave Korn <dave.korn.cygwin@gmail.com>
3509
3510 Merge from gcc:
3511
3512 2010-05-18 Steven Bosscher <steven@gcc.gnu.org>
3513 * configure.ac (--enable-lto): All *-apple-darwin* now support LTO.
3514 * configure: Regenerate.
3515
3516 2010-05-07 Steven Bosscher <steven@gcc.gnu.org>
3517 * configure.ac (--enable-lto): Add x86_64-apple-darwin* as
3518 a platform that supports LTO.
3519 * configure: Regenerate.
3520
3521 2010-04-27 Dave Korn <dave.korn.cygwin@gmail.com>
3522 PR lto/42776
3523 * configure.ac (--enable-lto): Refactor handling so libelf tests
3524 are only performed inside then-clause of ACX_ELF_TARGET_IFELSE,
3525 and allow LTO to be explicitly enabled on non-ELF platforms that
3526 are known to support it inside else-clause.
3527 * configure: Regenerate.
3528
3529 2010-04-27 Roland McGrath <roland@redhat.com>
3530 H.J. Lu <hongjiu.lu@intel.com>
3531
3532 * configure.ac (--enable-gold): Support both, both/gold and
3533 both/bfd to add gold to configdirs without removing ld.
3534 * configure: Regenerated.
3535
3536 * Makefile.def: Add install-gold dependency to install-ld.
3537 * Makefile.in: Regenerated.
3538
3539 2010-04-14 Tristan Gingold <gingold@adacore.com>
3540
3541 * configure.ac (alpha*-*-*vms*): Remove ld from noconfigdirs.
3542 * configure: Regenerate.
3543
3544 2010-04-08 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3545
3546 Merge from gcc:
3547 PR bootstrap/43615
3548 PR bootstrap/43328
3549 Revert:
3550 2010-03-31 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3551 * configure.ac: Do not pass --enable-multilib nor
3552 --disable-multilib in baseargs. Accept explicitly passed
3553 --enable_multilib.
3554 * configure: Regenerate.
3555
3556 2010-03-31 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3557
3558 PR bootstrap/43328
3559 * configure.ac: Do not pass --enable-multilib nor
3560 --disable-multilib in baseargs. Accept explicitly passed
3561 --enable_multilib.
3562 * configure: Regenerate.
3563
3564 2010-03-23 Joseph Myers <joseph@codesourcery.com>
3565
3566 * configure.ac (tic6x-*-*): New case.
3567 * configure: Regenerate.
3568
3569 2010-03-23 Joseph Myers <joseph@codesourcery.com>
3570
3571 Merge from gcc:
3572 2010-03-19 Jack Howarth <howarth@bromo.med.uc.edu>
3573 PR ada/42554
3574 * configure.ac: Only pass -c to ranlib for darwin9 and earlier.
3575 * configure: Regenerate.
3576
3577 2010-03-23 Joseph Myers <joseph@codesourcery.com>
3578
3579 * config.sub: Update to version 2010-03-22.
3580 * config.guess: Update to version 2009-12-30.
3581
3582 2010-03-14 Joseph Myers <joseph@codesourcery.com>
3583
3584 Merge from gcc:
3585 2010-01-11 Richard Guenther <rguenther@suse.de>
3586 PR lto/41569
3587 * Makefile.def (all-lto-plugin): Depend on all-gcc.
3588 * Makefile.in: Regenerated.
3589
3590 2010-03-01 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3591
3592 PR libstdc++/32499
3593 * configure.ac (RANLIB): Default to true.
3594 (STRIP): Likewise.
3595 (RANLIB_FOR_TARGET): Remove superfluous : argument.
3596 * configure: Regenerate.
3597
3598 2010-02-17 Nick Clifton <nickc@redhat.com>
3599
3600 PR 11238
3601 * Makefile.tpl (local-distclean): Also remove config.cache files in
3602 sub-directories as there may not be Makefiles present in the
3603 sub-directories.
3604 * Makefile.tpl: Use "-exec rm {}" rather than "-delete" to delete
3605 the config.cache files found by the find command.
3606
3607 * Makefile.in: Regenerate.
3608 * configure.ac: Revert previous delta.
3609 * configure: Regenerate.
3610
3611 2010-02-15 Nick Clifton <nickc@redhat.com>
3612
3613 PR 11238
3614 * configure.ac: Delete config.cache files in sub-directories when
3615 deleting Makefiles.
3616 * configure: Regenerate.
3617
3618 2010-02-15 Nick Clifton <nickc@redhat.com>
3619
3620 * configure.ac: Sync from gcc.
3621 * configure: Regenerate.
3622
3623 2010-01-31 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3624
3625 Sync from gcc:
3626 * configure.ac: Add "recommended" version checks for GMP/MPC.
3627 Update recommended GMP/MPFR/MPC versions.
3628 * configure: Regenerate.
3629
3630 2010-01-25 Joern Rennecke <amylaar@spamcop.net>
3631
3632 gcc PR libstdc++/36101, gcc PR libstdc++/42813
3633 * configure.ac (bootstrap_target_libs): Make inclusion of
3634 target-libgomp conditional on libgomb being in target_configdirs.
3635 * configure: Regenerate.
3636
3637 2010-01-23 Joern Rennecke <amylaar@spamcop.net>
3638
3639 gcc PR libstdc++/36101, gcc PR libstdc++/42813
3640 * configure.ac (bootstrap_target_libs): Include target-libgomp.
3641 * configure: Regenerate.
3642
3643 2010-01-22 Joern Rennecke <amylaar@spamcop.net>
3644
3645 gcc PR libstdc++/36101, gcc PR libstdc++/42813
3646 * configure.ac (target_configdirs): Substitute.
3647 * Makefile.def: Bootstrap target module libgomp.
3648 Add dependency of all-target-libstdc++-v3 on configure-target-libgomp.
3649 * Makefile.tpl (TARGET_CONFIGDIRS): New makefile variable.
3650 (BASE_TARGET_EXPORTS): Export TARGET_CONFIGDIRS.
3651 * configure, Makefile.in: Regenerate.
3652
3653 2009-12-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3654
3655 * libtool.m4: Sync from git Libtool.
3656 * ltmain.sh: Likewise.
3657 * ltoptions.m4: Likewise.
3658 * ltversion.m4: Likewise.
3659 * lt~obsolete.m4: Likewise.
3660
3661 2010-01-07 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3662 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
3663
3664 PR bootstrap/42424
3665 * configure.ac: Include libtool m4 files.
3666 (_LT_CHECK_OBJDIR): Call it.
3667 (extra_mpc_mpfr_configure_flags, extra_mpc_gmp_configure_flags,
3668 gmplibs, ppllibs, clooglibs): Use $lt_cv_objdir.
3669
3670 * configure: Regenerate.
3671
3672 2010-01-07 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3673
3674 PR bootstrap/41818
3675 * Makefile.tpl (BASE_TARGET_EXPORTS): Only add TARGET_LIB_PATH
3676 to $(RPATH_ENVVAR) if bootstrapping. Fix typo in comment.
3677 * Makefile.in: Regenerate.
3678
3679 2009-12-18 Ben Elliston <bje@au.ibm.com>
3680
3681 * config.sub, config.guess: Update from upstream sources.
3682
3683 2009-12-17 Jeff Johnston <jjohnstn@redhat.com>
3684
3685 * COPYING.NEWLIB: Update copyright date.
3686 * COPYING.LIBGLOSS: Ditto.
3687
3688 2009-12-07 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3689
3690 PR middle-end/30447
3691 PR middle-end/30789
3692 PR other/40302
3693
3694 * configure.ac: Require MPC.
3695 * configure: Regenerate.
3696
3697 * configure.ac: Update minimum MPC version to 0.8.
3698 * configure: Regenerate.
3699
3700 2009-11-20 Paolo Bonzini <bonzini@gnu.org>
3701
3702 * config.guess: Sync with upstream and gcc.
3703 * config.sub: Sync with upstream and gcc.
3704
3705 2009-11-16 Alexandre Oliva <aoliva@redhat.com>
3706
3707 * Makefile.def: Restore host and target settings for gmp.
3708 * Makefile.in: Rebuild.
3709
3710 2009-11-16 Alexandre Oliva <aoliva@redhat.com>
3711
3712 * configure.ac: Add libelf to host_libs. Enable in-tree configury
3713 of ppl and cloog. Fix in-tree configury of libelf, skip tests.
3714 Fix portability of test of C++ as bootstrap language. Add
3715 ppl/src/ppl-config.o to the bootstrap compare exclusion list.
3716 * configure: Rebuild.
3717 * Makefile.def: Drop host and target settings from gmp, mpfr, ppl,
3718 and cloog. Fix in-tree ppl configuration. Introduce libelf
3719 in-tree building.
3720 * Makefile.tpl (POSTSTAGE1_CXX_EXPORT): New.
3721 (POSTSTAGE1_HOST_EXPORTS): Use it.
3722 (STAGE[+id+]_CXXFLAGS): New.
3723 (BASE_FLAGS_TO_PASS): Pass it down.
3724 (configure-stage[+id+]-[+prefix+][+module+]): Use it. Add
3725 extra_exports.
3726 (all-stage[+id+]-[+prefix+][+module+]): Likewise.
3727 (configure-[+prefix+][+module+], all-[+prefix+][+module+]): Add
3728 extra_exports.
3729 * Makefile.in: Rebuild.
3730
3731 2009-11-06 Ozkan Sezer <sezeroz@gmail.com>
3732
3733 * configure.ac (FLAGS_FOR_TARGET): Add -L and -isystem
3734 paths for *-w64-mingw* and x86_64-*mingw*.
3735 * configure: Regenerated.
3736
3737 2009-10-30 Kai Tietz <kai.tietz@onevision.com>
3738
3739 * configure.ac: Disable target-winsup & co for
3740 x86_64-*-mingw* and *-w64-mingw* targets.
3741 * configure: Regenerated.
3742
3743 2009-10-23 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3744
3745 * configure.ac (CLooG test): Use = with test.
3746 * configure: Regenerate.
3747
3748 2009-10-22 Richard Guenther <rguenther@suse.de>
3749
3750 * configure.ac: Do not set LIBS for ppl/cloog checks. Disable
3751 cloog if the ppl version check failed. Move flags saving
3752 before setting in libelf check.
3753 * configure: Regenerate.
3754
3755 2009-10-21 Richard Guenther <rguenther@suse.de>
3756
3757 * configure.ac: Adjust the ppl and cloog configure to work as
3758 documented. Disable cloog if ppl was disabled. Omit the version
3759 checks if they were disabled.
3760 * configure: Re-generate.
3761
3762 2009-10-13 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3763
3764 * configure.ac: Add 'lto' to enable_languages, not
3765 new_enable_languages, and only if not already present.
3766 * configure: Regenerate.
3767
3768 2009-10-06 Ian Lance Taylor <iant@google.com>
3769
3770 * Makefile.def: check-gold depends upon all-gas.
3771 * Makefile.in: Rebuild.
3772
3773 2009-10-03 2009-02-05 Rafael Avila de Espindola <espindola@google.com>
3774
3775 * Makefile.def: all-lto-plugin depends on all-libiberty.
3776 set bootstrap=true for lto-plugin.
3777 Add lto-plugin.
3778 * Makefile.in: Regenerate.
3779 * configure.ac (host_libs): Add lto-plugin.
3780 * configure: Regenerate.
3781
3782 2009-10-03 Diego Novillo <dnovillo@google.com>
3783
3784 * Makefile.tpl (HOST_EXPORTS): Add LIBELFLIBS and LIBELFINC.
3785 (HOST_LIBELFLIBS): Define.
3786 (HOST_LIBELFINC): Define.
3787 * Makefile.in: Regenerate.
3788 * configure.ac: Add --enable-lto.
3789 Add --with-libelf, --with-libelf-include and --with-libelf-lib.
3790 If --enable-lto is used, add 'lto' to new_enable_languages.
3791 If --enable-lto is used and gold is enabled, add
3792 lto-plugin to configdirs.
3793 * configure: Regenerate.
3794
3795 2009-10-03 Simon Baldwin <simonb@google.com>
3796
3797 * configure.ac: If --with-system-zlib, suppress local zlib and
3798 pass --with-system-zlib to subdir configure scripts.
3799 * configure: Regenerate.
3800
3801 2009-10-01 Loren J. Rittle <ljrittle@acm.org>
3802 Paolo Bonzini <bonzini@gnu.org>
3803
3804 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Use $$s rather than
3805 $(srcdir).
3806 * Makefile.in: Rebuilt.
3807
3808 2009-09-29 Paolo Bonzini <bonzini@gnu.org>
3809
3810 Sync from gcc:
3811 2009-09-26 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3812
3813 * configure.ac: Update minimum MPC version to 0.7.
3814 * configure: Regenerate.
3815
3816 2009-09-25 Nick Clifton <nickc@redhat.com>
3817
3818 * configure.ac: Pass any --cache-file=/dev/null option on to
3819 subconfigures.
3820 * configure: Regenerate.
3821
3822 2009-09-23 Nick Clifton <nickc@redhat.com>
3823
3824 * config.sub, config.guess: Update from upstream sources.
3825
3826 2009-09-22 Loren J. Rittle <ljrittle@acm.org>
3827
3828 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Remove stray $$r/.
3829 * Makefile.in: Rebuilt.
3830
3831 2009-09-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3832
3833 PR bootstrap/32272
3834 * configure.ac: Error out if $srcdir isn't '.' but contains
3835 host-${host_noncanonical}.
3836 * configure: Regenerate.
3837
3838 2009-09-21 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3839
3840 * configure.ac: If bootstrapping a combined tree with
3841 --enable-gold, require c++ in stage1_languages.
3842 * configure: Regenerate.
3843
3844 * configure.ac: Also add target_libs of stage1_languages to
3845 bootstrap_target_libs.
3846 * configure: Regenerate.
3847
3848 * configure.ac: Diagnose --enable-build-with-cxx bootstrap
3849 with --enable-languages not containing c++.
3850 * configure: Regenerate.
3851
3852 2009-09-16 Jie Zhang <jie.zhang@analog.com>
3853
3854 * configure.ac: Disable java and boehm-gc for bfin-*-*.
3855 * configure: Regenerate.
3856
3857 2009-09-08 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3858
3859 * configure.ac: Do not use $extrasub for replacing @if/@endif
3860 parts in Makefile; instead, use additional arguments to
3861 AC_CONFIG_COMMANDS to do the replacement manually, with several
3862 sed invocations, to avoid HP-UX sed command limits.
3863 * configure: Regenerate.
3864
3865 2009-09-04 Alexandre Oliva <aoliva@redhat.com>
3866
3867 * configure.ac (with-build-config): Document. Handle without.
3868 Handle missing argument.
3869 * configure: Rebuilt.
3870
3871 2009-09-03 Alexandre Oliva <aoliva@redhat.com>
3872
3873 * configure.ac (--with-build-config): New. Set BUILD_CONFIG.
3874 Default to bootstrap-debug only if compare-debug works.
3875 * configure: Rebuilt.
3876 * Makefile.tpl: Make BUILD_CONFIG configure-configurable.
3877 * Makefile.in: Rebuilt.
3878
3879 2009-09-01 Alexandre Oliva <aoliva@redhat.com>
3880
3881 * Makefile.tpl (BUILD_CONFIG): Default to bootstrap-debug.
3882 * Makefile.in: Rebuilt.
3883
3884 2009-09-02 Paolo Bonzini <bonzini@gnu.org>
3885
3886 * Makefile.tpl (AWK): Fix typo.
3887 * Makefile.in: Regenerate.
3888
3889 2009-09-02 Paolo Bonzini <bonzini@gnu.org>
3890
3891 * configure.ac: Detect awk and sed.
3892 * Makefile.def (flags_to_pass): Add AWK and SED.
3893 * Makefile.tpl (AWK, SED): New.
3894 (BASE_FLAGS_TO_PASS): Add AWK and SED.
3895 * configure: Regenerate.
3896 * Makefile.in: Regenerate.
3897
3898 2009-09-01 Tristan Gingold <gingold@adacore.com>
3899
3900 * setup.com: Ported to Itanium VMS. Can also build using DCL scripts.
3901 Remove logical names.
3902
3903 2009-08-31 Dave Korn <dave.korn.cygwin@gmail.com>
3904
3905 * ltmain.sh (func_normal_abspath): New function.
3906 (func_relative_path): Likewise.
3907 (func_mode_help): Document new -bindir option for link mode.
3908 (func_mode_link): Add new -bindir option, and use it to place
3909 output DLL if specified.
3910
3911 2009-08-24 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3912
3913 * configure.ac (AC_PREREQ): Bump to 2.64.
3914
3915 2009-08-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3916
3917 * README-maintainer-mode: Point directly to upstream locations
3918 for autoconf, automake, libtool, gettext, instead of copies on
3919 sources.redhat.com. Document required versions.
3920 * configure.ac: Do not substitute datarootdir, htmldir,
3921 pdfdir, docdir. Do not process --with-datarootdir,
3922 --with-htmldir, --with-pdfdir, --with-docdir.
3923 * configure: Regenerate.
3924
3925 * configure: Regenerate.
3926
3927 * compile: Sync from Automake 1.11.
3928 * depcomp: Likewise.
3929 * install-sh: Likewise.
3930 * missing: Likewise.
3931 * mkinstalldirs: Likewise.
3932 * ylwrap: Likewise.
3933
3934 2009-08-19 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3935
3936 * configure.ac: Call AC_DISABLE_OPTION_CHECKING.
3937 (baseargs): Add --disable-option-checking.
3938 * configure: Regenerate.
3939
3940 * Makefile.def (configure-target-libiberty): Depend on
3941 all-binutils and all-ld.
3942 (configure-target-newlib): Likewise.
3943 * Makefile.in: Regenerate.
3944
3945 2009-08-19 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3946
3947 Sync with GCC, merge:
3948
3949 2009-07-31 Christian Bruel <christian.bruel@st.com>
3950
3951 * configure.ac (sh*-*-elf): Don't add target-libgloss to noconfigdirs.
3952 * configure: Regenerate.
3953
3954 2009-07-06 Ian Lance Taylor <iant@google.com>
3955
3956 * configure.ac: Add missing comma in AC_ARG_WITH(boot-libs).
3957 * configure: Rebuild.
3958
3959 2009-06-26 Steve Ellcey <sje@cup.hp.com>
3960
3961 PR bootstrap/40338
3962 * configure.ac (comparestring): Create new variable.
3963 * Makefile.tpl (comparestring): Use to skip some comparisions.
3964 * configure: Regenerate.
3965 * Makefile.in: Regenerate.
3966
3967 2009-06-23 Ian Lance Taylor <iant@google.com>
3968
3969 * configure.ac: Add --enable-build-with-cxx. When set, add c++ to
3970 boot_languages. Only bootstrap target libraries listed in
3971 target_libs for some boot language. Add --with-stage1-ldflags,
3972 --with-stage1-libs, --with-boot-ldflags, --with-boot-libs. Remove
3973 with_host_libstdcxx from ppllibs. Only add -fkeep-inline-functions
3974 if not building with C++.
3975 * Makefile.def: For target_module libstdc++-v3, set bootstrap=true.
3976 * Makefile.tpl (STAGE1_LDFLAGS, STAGE1_LIBS): New variables.
3977 (POSTSTAGE1_LDFLAGS, POSTSTAGE1_LIBS): New variables.
3978 (HOST_EXPORTS): Add STAGE1_LDFLAGS to LDFLAGS. Export HOST_LIBS.
3979 (POSTSTAGE1_HOST_EXPORTS): Set CXX and CXX_FOR_BUILD. Add
3980 POSTSTAGE1_LDFLAGS to LDFLAGS. Export HOST_LIBS.
3981 (POSTSTAGE1_FLAGS_TO_PASS): Likewise.
3982 * configure, Makefile.in: Rebuild.
3983
3984 2009-06-08 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3985
3986 * configure.ac: Detect MPC in default directory.
3987 * configure: Regenerate.
3988
3989 2009-06-02 Richard Sandiford <r.sandiford@uk.ibm.com>
3990
3991 * configure.ac (powerpc-*-aix*, rs6000-*-aix*): Add target-newlib
3992 to noconfdirs.
3993 * configure: Regenerate.
3994
3995 2009-05-29 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3996
3997 * Makefile.def: Add MPC support and dependencies.
3998 * configure.ac: Likewise. Reorganize GMP/MPFR checks.
3999
4000 * Makefile.in, configure: Regenerate.
4001
4002 2009-05-24 Nicolas Roche <roche@adacore.com>
4003
4004 * Makefile.tpl (compare-target): Skip ./ada/*tools directories.
4005 * Makefile.in: Regenerate.
4006
4007 2009-05-21 Dave Korn <dave.korn.cygwin@gmail.com>
4008
4009 * configure.ac (cygwin noconfigdirs): Remove libgcj.
4010 * configure: Regenerate.
4011
4012 2009-05-07 Dave Korn <dave.korn.cygwin@gmail.com>
4013
4014 * configure.ac ($with_ppl): Default to no if not supplied.
4015 ($with_cloog): Likewise.
4016 configure: Regenerate.
4017
4018 2009-04-24 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4019
4020 PR bootstrap/39739
4021 * configure.ac (extra_mpfr_configure_flags): Set and AC_SUBST.
4022 * Makefile.def (module=mpfr): Use extra_mpfr_configure_flags.
4023
4024 * configure, Makefile.in: Regenerate.
4025
4026 2009-04-14 Jakub Jelinek <jakub@redhat.com>
4027
4028 * configure.ac: Change copyright header to refer to version
4029 3 of the GNU General Public License and to point readers at the
4030 COPYING3 file and the FSF's license web page.
4031 * Makefile.def: Likewise.
4032 * Makefile.tpl: Likewise.
4033 * Makefile.in: Regenerate.
4034
4035 2009-04-09 Jack Howarth <howarth@bromo.med.uc.edu>
4036
4037 * configure.ac: Restore match for darwin9 or later. Use double
4038 brackets since regeneration eats one pair.
4039 * configure: Regenerate.
4040
4041 2009-08-18 Christopher Faylor <me+cygwin@cgf.cx>
4042
4043 * MAINTAINERS: Perform some obvious fixups.
4044
4045 2009-08-17 Ben Elliston <bje@au.ibm.com>
4046
4047 * config.sub, config.guess: Update from upstream sources.
4048
4049 2009-08-06 Michael Eager <eager@eagercon.com>
4050
4051 * configure.ac: Add Microblaze target.
4052 * configure: Regenerate.
4053
4054 2009-07-02 Tristan Gingold <gingold@adacore.com>
4055
4056 * configure.ac: Do not exclude gas for i386-*-darwin.
4057 Add a case for x86_64-*-darwin.
4058 * configure: Regenerate.
4059
4060 2009-06-26 Doug Evans <dje@sebabeach.org>
4061
4062 * Makefile.def (host_modules): Add cgen.
4063 * Makefile.in: Regenerate.
4064 * configure.ac (host_tools): Add cgen.
4065 * configure: Regenerate.
4066
4067 2009-06-17 Michael Eager <eager@eagercon.com>
4068
4069 * COPYING.LIBGLOSS: Add Xilinx license.
4070
4071 2009-06-15 Ryan Mansfield <rmansfield@qnx.com>
4072
4073 * configure.ac: Define is_elf for QNX Neutrino targets.
4074 * configure: Regenerate.
4075
4076 2009-06-03 Jerome Guitton <guitton@adacore.com>
4077 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4078
4079 * Makefile.tpl (all): Avoid a trailing backslash.
4080 * Makefile.in: Regenerate.
4081
4082 2009-06-03 Ben Elliston <bje@au.ibm.com>
4083
4084 * config.sub, config.guess: Update from upstream sources.
4085
4086 2009-06-02 Alexandre Oliva <aoliva@redhat.com>
4087
4088 * Makefile.tpl ([+compare-target+]): Compare all stage
4089 directories, rather than just gcc.
4090 * Makefile.in: Rebuilt.
4091
4092 2009-05-28 Doug Kwan <dougkwan@google.com>
4093
4094 * configure.ac: Support gold for target arm*-*-*.
4095 * configure: Regenerate.
4096
4097 2009-05-27 Alexandre Oliva <aoliva@redhat.com>
4098
4099 * Makefile.tpl (all): Avoid harmless warning in make all when
4100 gcc-bootstrap is enabled but stage_last does not exist.
4101 * Makefile.in: Rebuilt.
4102
4103 2009-05-25 Tristan Gingold <gingold@adacore.com>
4104
4105 * setup.com: Complete the file with configuration and build.
4106
4107 2009-05-18 Alexandre Oliva <aoliva@redhat.com>
4108
4109 PR other/40159
4110 * Makefile.tpl (all): Don't assume gcc-bootstrap and
4111 gcc-no-bootstrap are mutually exclusive.
4112 * Makefile.in: Rebuilt.
4113
4114 2009-05-18 Alexandre Oliva <aoliva@redhat.com>
4115
4116 PR other/40159
4117 * Makefile.tpl (all): Don't end with unconditional success.
4118 * Makefile.in: Rebuilt.
4119
4120 2009-05-12 Alexandre Oliva <aoliva@redhat.com>
4121
4122 PR target/37137
4123 * Makefile.def (flags_to_pass): Remove redundant and incomplete
4124 STAGE1_CFLAGS, STAGE2_CFLAGS, STAGE3_CFLAGS, and STAGE4_CFLAGS.
4125 Add FLAGS_FOR_TARGET and BUILD_CONFIG.
4126 (bootstrap_stage): Remove bootstrap-debug custom stages. Turn
4127 stage_configureflags, stage_cflags and stage_libcflags into
4128 explicit Makefile macros.
4129 * Makefile.tpl (HOST_EXPORTS, EXTRA_HOST_FLAGS): Pass GCJ and
4130 GFORTRAN.
4131 (POSTSTAGE1_HOST_EXPORTS): Add XGCC_FLAGS_FOR_TARGET and TFLAGS to
4132 CC. Set CC_FOR_BUILD from CC.
4133 (BASE_TARGET_EXPORTS, RAW_CXX_TARGET_EXPORTS,
4134 NORMAL_TARGET_EXPORTS): Move SYSROOT_CFLAGS_FOR_TARGET and
4135 DEBUG_PREFIX_CFLAGS_FOR_TARGET from CFLAGS and CXXFLAGS to
4136 XGCC_FLAGS_FOR_TARGET. Add it along with TFLAGS to CC, CXX, GCJ,
4137 and GFORTRAN.
4138 (TFLAGS, STAGE_CFLAGS, STAGE_TFLAGS, STAGE_CONFIGURE_FLAGS): New.
4139 (_LIBCFLAGS): Renamed to _TFLAGS.
4140 (do-compare-debug, do-compare3-debug): Drop.
4141 (CC, GCC_FOR_TARGET, CXX_FOR_TARGET, RAW_CXX_FOR_TARGET,
4142 GCJ_FOR_TARGET, GFORTRAN_FOR_TARGET): Remove FLAGS_FOR_TARGET.
4143 (FLAGS_FOR_TARGET, SYSROOT_CFLAGS_FOR_TARGET,
4144 DEBUG_PREFIX_CFLAGS_FOR_TARGET): Move down.
4145 (XGCC_FLAGS_FOR_TARGET): New.
4146 (BASE_FLAGS_TO_PASS): Pass STAGEid_CFLAGS, STAGEid_TFLAGS and TFLAGS.
4147 (EXTRA_HOST_FLAGS): Pass GCJ and GFORTRAN.
4148 (POSTSTAGE1_FLAGS_TO_PASS): Move SYSROOT_CFLAGS_FOR_TARGET and
4149 DEBUG_PREFIX_CFLAGS_FOR_TARGET from CFLAGS, CXXFLAGS, LIBCFLAGS,
4150 LIBCXXFLAGS to XGCC_FLAGS_FOR_TARGET. Add it along with TFLAGS
4151 to CC, CXX, GCJ, and GFORTRAN. Pass XGCC_FLAGS_FOR_TARGET and
4152 TFLAGS.
4153 (BUILD_CONFIG): Include if requested.
4154 (all): Set TFLAGS on bootstrap.
4155 (configure-stageid-prefixmodule): Pass TFLAGS, adjust FLAGS.
4156 (all-stageid-prefixmodule): Likewise.
4157 (do-clean, distclean-stageid): Set TFLAGS.
4158 (restrap): Fix whitespace.
4159 * Makefile.in: Rebuilt.
4160
4161 2009-04-25 Eric Botcazou <ebotcazou@adacore.com>
4162
4163 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Add GNATBIND.
4164 (POSTSTAGE1_FLAGS_TO_PASS): Pick up exported value for GNATBIND.
4165 * Makefile.in: Regenerate.
4166
4167 2009-04-24 Eli Zaretskii <eliz@gnu.org>
4168
4169 * config.guess (pc:*:*:*): Return i586-pc-msdosdjgpp, for
4170 consistency with config.sub. (Update from upstream sources.)
4171
4172 2009-04-21 Joseph Myers <joseph@codesourcery.com>
4173
4174 * texinfo/texinfo.tex: Update to version 2009-03-28.05.
4175
4176 2009-04-17 Ben Elliston <bje@au.ibm.com>
4177
4178 * config.sub, config.guess: Update from upstream sources.
4179
4180 2009-04-15 Anthony Green <green@moxielogic.com>
4181
4182 * configure.ac: Add moxie support.
4183 * configure: Rebuilt.
4184
4185 2009-04-09 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4186
4187 * configure.ac: Bump minimum GMP/MPFR versions to 4.2 and 2.3.1.
4188 * configure: Regenerate.
4189
4190 2009-04-09 H.J. Lu <hongjiu.lu@intel.com>
4191
4192 PR gas/10039
4193 * configure.ac: Require texinfo 4.7.
4194 * configure: Regenerated.
4195
4196 2009-04-09 Steve Ellcey <sje@cup.hp.com>
4197
4198 * Makefil.def (languages): New entries.
4199 * Makefile.tpl (check-gcc-*): New generic target.
4200 * Makefile.in: Regenerate.
4201
4202 2009-03-27 Eli Zaretskii <eliz@gnu.org>
4203
4204 * djunpack.bat: Use ".." quoting in Sed command, for the sake of
4205 Windows builds of Sed.
4206
4207 2009-03-18 Tom Tromey <tromey@redhat.com>
4208
4209 * configure: Rebuild.
4210 * configure.ac (host_libs): Add libiconv.
4211 * Makefile.in: Rebuild.
4212 * Makefile.def (host_modules): Add libiconv.
4213 (configure-gdb, all-gdb): Depend on libiconv.
4214
4215 2009-03-16 Tristan Gingold <gingold@adacore.com>
4216
4217 * configure.ac: Treat gdb as supported on x86_64-darwin.
4218 * configure: Regenerate.
4219
4220 2009-03-16 Joseph Myers <joseph@codesourcery.com>
4221
4222 Merge from GCC:
4223
4224 2009-03-16 Joseph Myers <joseph@codesourcery.com>
4225
4226 * configure.ac (--with-host-libstdcxx): New option.
4227 * configure: Regenerate.
4228
4229 2009-01-29 Robert Millan <rmh@aybabtu.com>
4230
4231 * configure.ac: Recognize GNU/kOpenSolaris (*-*-kopensolaris*-gnu).
4232 * configure: Regenerate.
4233
4234 2009-01-12 Sebastian Pop <sebastian.pop@amd.com>
4235
4236 PR tree-optimization/38515
4237 * configure.ac (cloog-polylib): Removed.
4238 (with_ppl, with_cloog): Test for "no".
4239 * configure: Regenerated.
4240
4241 2009-03-01 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4242
4243 Backport from git Libtool:
4244
4245 2009-01-19 Robert Millan <rmh@aybabtu.com>
4246 Support GNU/kOpenSolaris.
4247 * libltdl/m4/libtool.m4 (_LT_SYS_DYNAMIC_LINKER)
4248 (_LT_CHECK_MAGIC_METHOD, _LT_COMPILER_PIC, _LT_LINKER_SHLIBS)
4249 (_LT_LANG_CXX_CONFIG) [kopensolaris*-gnu]: Recognize
4250 GNU/kOpenSolaris.
4251
4252 2009-02-05 Andreas Schwab <schwab@suse.de>
4253
4254 * Makefile.tpl (stage_last): Define $r and $s before using
4255 $(RECURSE_FLAGS_TO_PASS).
4256 * Makefile.in: Regenerate
4257
4258 2009-01-21 Jeff Johnston <jjohnstn@redhat.com>
4259
4260 * COPYING.NEWLIB: Add ARM license.
4261
4262 2009-01-16 Alan Modra <amodra@bigpond.net.au>
4263
4264 * Makefile.def (configure-opcodes): Depend on configure-libiberty.
4265 (all-opcodes): Depend on all-libiberty.
4266 * Makefile.in: Regenerate.
4267
4268 2009-01-15 Douglas B Rupp <rupp@gnat.com>
4269
4270 * configure.ac (ia64*-*-*vms*): Add case with no gdb or ld support.
4271 * configure: Regenerate.
4272
4273 2008-12-18 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4274
4275 Backport link test fix from upstream Libtool:
4276
4277 * libltdl.m4 (_LT_SYS_DYNAMIC_LINKER, _LT_LINKER_SHLIBS):
4278 Add cache variables to tests that require the linker to work.
4279 For shlibpath_overrides_runpath, this also changes the semantics
4280 to let the result from the C compiler take precedence.
4281 compiler take precedence.
4282
4283 2008-12-02 Ben Elliston <bje@au.ibm.com>
4284
4285 * config.sub, config.guess: Update from upstream sources.
4286
4287 2008-12-17 Jeff Johnston <jjohnstn@redhat.com>
4288
4289 * COPYING.NEWLIB: Updated.
4290 * COPYING.LIBGLOSS: Ditto.
4291
4292 2008-12-16 Paolo Bonzini <bonzini@gnu.org>
4293
4294 Sync with GCC:
4295
4296 2008-12-12 Sebastian Pop <sebastian.pop@amd.com>
4297
4298 * configure.ac (ppllibs): Add by default the lib flags.
4299 * configure: Regenerate.
4300
4301 2008-12-04 Jack Howarth <howarth@bromo.med.uc.edu>
4302
4303 * configure.ac: Add double brackets on darwin[912].
4304 * configure: Regenerate.
4305
4306 2008-12-02 Jack Howarth <howarth@bromo.med.uc.edu>
4307
4308 * configure.ac: Expand to darwin10 and later.
4309 * configure: Regenerate.
4310
4311 2008-12-02 Andreas Schwab <schwab@suse.de>
4312
4313 * Makefile.def: configure-target-boehm-gc depends on
4314 all-target-libstdc++-v3.
4315 * Makefile.in: Regenerate.
4316
4317 2008-12-02 Ben Elliston <bje@au.ibm.com>
4318
4319 * config.sub, config.guess: Update from upstream sources.
4320
4321 2008-11-27 Joseph Myers <joseph@codesourcery.com>
4322
4323 Merge from GCC:
4324
4325 2007-12-02 Matthias Klose <doko@ubuntu.com>
4326
4327 * config-ml.in: Remove 64bit configure tests.
4328
4329 2008-05-14 Rafael Espindola <espindola@google.com>
4330
4331 * config-ml.in: don't handle --enable-shared and --enable-static.
4332
4333 2008-09-02 Sebastian Pop <sebastian.pop@amd.com>
4334 Tobias Grosser <grosser@fim.uni-passau.de>
4335 Jan Sjodin <jan.sjodin@amd.com>
4336 Harsha Jagasia <harsha.jagasia@amd.com>
4337 Dwarakanath Rajagopal <dwarak.rajagopal@amd.com>
4338 Konrad Trifunovic <konrad.trifunovic@inria.fr>
4339 Adrien Eliche <aeliche@isty.uvsq.fr>
4340
4341 Merge from graphite branch.
4342 * configure: Regenerate.
4343 * Makefile.in: Regenerate.
4344 * configure.ac (host_libs): Add ppl and cloog.
4345 Add checks for PPL and CLooG.
4346 * Makefile.def (ppl, cloog): Added modules and dependences.
4347 * Makefile.tpl (PPLLIBS, PPLINC, CLOOGLIBS, CLOOGINC): New.
4348 (HOST_PPLLIBS, HOST_PPLINC, HOST_CLOOGLIBS, HOST_CLOOGINC): New.
4349
4350 2008-09-03 Richard Guenther <rguenther@suse.de>
4351
4352 * configure.ac: Always pass -DCLOOG_PPL_BACKEND to the
4353 cloog test.
4354 * configure: Re-generate.
4355
4356 2008-09-03 Sebastian Pop <sebastian.pop@amd.com>
4357
4358 * configure.ac (--with-cloog-polylib): New.
4359 (--disable-cloog-version-check): New.
4360 (--disable-ppl-version-check): New.
4361 * configure: Re-generate.
4362
4363 2008-09-05 Richard Guenther <rguenther@suse.de>
4364
4365 * configure.ac: Initialize clooglibs to -lcloog.
4366 * configure: Re-generate.
4367
4368 2008-10-13 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4369
4370 * configure.ac (MPFR check): Bump minimum version to 2.3.0 and
4371 recommended version to 2.3.2.
4372
4373 * configure: Regenerate.
4374
4375 2008-10-31 Ben Elliston <bje@au.ibm.com>
4376
4377 * configure.ac (spu-*-*): Remove special case.
4378 * configure: Regenerate.
4379
4380 Complete comment text from GCC version of:
4381
4382 2008-08-31 Aaron W. LaFramboise <aaronavay62@aaronwl.com>
4383
4384 * configure.ac (RPATH_ENVVAR): Use PATH on Windows.
4385 (GCC_SHLIB_SUBDIR): New.
4386 * Makefile.tpl (HOST_LIB_PATH_gcc): Use GCC_SHLIB_SUBDIR.
4387 * configure: Regenerate.
4388 * Makefile.in: Regenerate.
4389
4390 2008-11-27 Tristan Gingold <gingold@adacore.com>
4391
4392 * configure.ac: Build gdb for i?86-*-darwin*
4393 * configure: Regenerated.
4394
4395 2008-11-14 Daniel Jacobowitz <dan@codesourcery.com>
4396
4397 PR bootstrap/38014
4398 PR bootstrap/37923
4399
4400 Revert:
4401
4402 2008-10-24 Daniel Jacobowitz <dan@codesourcery.com>
4403
4404 * Makefile.tpl (HOST_EXPORTS): Correct CPPFLAGS typo.
4405 * Makefile.in: Regenerated.
4406
4407 2008-10-22 Daniel Jacobowitz <dan@codesourcery.com>
4408
4409 PR gdb/921
4410 PR gdb/1646
4411 PR gdb/2175
4412 PR gdb/2176
4413
4414 * Makefile.def (flags_to_pass): Add CPPFLAGS_FOR_BUILD and CPPFLAGS.
4415 * Makefile.tpl (BUILD_EXPORTS): Set CPPFLAGS.
4416 (EXTRA_BUILD_FLAGS): Correct typo. Pass CPPFLAGS.
4417 (HOST_EXPORTS): Pass CPPFLAGS.
4418 (CPPFLAGS_FOR_BUILD, CPPFLAGS, CPPFLAGS_FOR_TARGET): Define.
4419 (LDFLAGS_FOR_TARGET): Initialize from configure script.
4420 (EXTRA_TARGET_FLAGS): Set CPPFLAGS.
4421 * Makefile.in, configure: Regenerated.
4422 * configure.ac: Set CPPFLAGS_FOR_TARGET, LDFLAGS_FOR_TARGET,
4423 and CPPFLAGS_FOR_BUILD.
4424
4425 2008-10-29 Stefan Schulze Frielinghaus <xxschulz@de.ibm.com>
4426
4427 * configure.ac [spu-*-*]: Do not set skipdirs.
4428 * configure: Re-generate.
4429
4430 2008-10-24 Daniel Jacobowitz <dan@codesourcery.com>
4431
4432 * Makefile.tpl (HOST_EXPORTS): Correct CPPFLAGS typo.
4433 * Makefile.in: Regenerated.
4434
4435 2008-10-22 Daniel Jacobowitz <dan@codesourcery.com>
4436
4437 PR gdb/921
4438 PR gdb/1646
4439 PR gdb/2175
4440 PR gdb/2176
4441
4442 * Makefile.def (flags_to_pass): Add CPPFLAGS_FOR_BUILD and CPPFLAGS.
4443 * Makefile.tpl (BUILD_EXPORTS): Set CPPFLAGS.
4444 (EXTRA_BUILD_FLAGS): Correct typo. Pass CPPFLAGS.
4445 (HOST_EXPORTS): Pass CPPFLAGS.
4446 (CPPFLAGS_FOR_BUILD, CPPFLAGS, CPPFLAGS_FOR_TARGET): Define.
4447 (LDFLAGS_FOR_TARGET): Initialize from configure script.
4448 (EXTRA_TARGET_FLAGS): Set CPPFLAGS.
4449 * Makefile.in, configure: Regenerated.
4450 * configure.ac: Set CPPFLAGS_FOR_TARGET, LDFLAGS_FOR_TARGET,
4451 and CPPFLAGS_FOR_BUILD.
4452
4453 2008-09-29 Peter O'Gorman <pogma@thewrittenword.com>
4454
4455 * libtool.m4: Update to libtool 2.2.6.
4456 * lt~obsolete.m4: Update to libtool 2.2.6.
4457 * ltmain.sh: Update to libtool 2.2.6.
4458 * ltsugar.m4: Update to libtool 2.2.6.
4459 * ltversion.m4: Update to libtool 2.2.6.
4460 * ltoptions.m4: Update to libtool 2.2.6.
4461 * ltgcc.m4: Update to match changes from libtool 2.2.6.
4462
4463 2008-08-31 Aaron W. LaFramboise <aaronavay62@aaronwl.com>
4464
4465 * configure.ac (RPATH_ENVVAR): Use PATH on Windows.
4466 (GCC_SHLIB_SUBDIR): New.
4467 * Makefile.tpl (HOST_LIB_PATH_gcc): Use GCC_SHLIB_SUBDIR.
4468 * configure: Regenerate.
4469 * Makefile.in: Regenerate.
4470
4471 2008-08-28 Tristan Gingold <gingold@adacore.com>
4472
4473 * configure.ac (powerpc-*-darwin*, i?86-*-darwin*,x86_64-*-darwin9):
4474 Enable bfd, binutils and opcodes.
4475 * configure: Regenerate.
4476
4477 2008-08-16 Nicolas Roche <roche@adacore.com>
4478
4479 * Makefile.tpl: Add BOOT_ADAFLAGS.
4480 * Makefile.in: Regenerate.
4481
4482 2008-08-16 Richard Sandiford <rdsandiford@googlemail.com>
4483
4484 * configure.ac (mips*-*-*linux*, mips*-*-gnu*): Use mt-mips-gnu.
4485 * configure: Regenerate.
4486
4487 2008-07-30 Paolo Bonzini <bonzini@gnu.org>
4488
4489 Sync with gcc:
4490 2008-07-30 Paolo Bonzini <bonzini@gnu.org>
4491
4492 * configure.ac: Add makefile fragments for hpux.
4493 * Makefile.def (flags_to_pass): Add ADA_CFLAGS.
4494 * Makefile.tpl (HOST_EXPORTS): Pass ADA_CFLAGS.
4495 * configure: Regenerate.
4496 * Makefile.in: Regenerate.
4497
4498 2008-06-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4499
4500 * Makefile.tpl ($(srcdir)/configure): Update dependencies.
4501 * Makefile.in: Regenerate.
4502 * configure: Regenerate.
4503
4504 2008-06-18 Ian Lance Taylor <iant@google.com>
4505
4506 * src-release (BINUTILS_SUPPORT_DIRS): Remove mkdep and depcomp.
4507
4508 * src-release (BINUTILS_SUPPORT_DIRS): Add depcomp.
4509
4510 2008-06-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4511
4512 * configure: Regenerate.
4513
4514 2008-06-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4515
4516 * configure.ac: Set TOPLEVEL_CONFIGURE_ARGUMENTS early, when
4517 "$@" is still intact with both Autoconf 2.59 and 2.62.
4518 * configure: Regenerate.
4519
4520 2008-06-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4521
4522 * Makefile.tpl: Fix comment errors.
4523 * Makefile.in: Regenerate.
4524
4525 2008-06-13 Julian Brown <julian@codesourcery.com>
4526
4527 * configure.ac (arm*-*-linux-gnueabi): Don't disable building
4528 of libobjc for ARM EABI Linux.
4529 * configure: Regenerate.
4530
4531 2008-06-12 David S. Miller <davem@davemloft.net>
4532 David Edelsohn <edelsohn@gnu.org>
4533
4534 * configure.ac: Add powerpc*-*-* to gold supported targets.
4535 * configure: Regenerate.
4536
4537 2008-06-08 Joseph Myers <joseph@codesourcery.com>
4538
4539 PR tree-optimization/36218
4540 * Makefile.def (flags_to_pass): Add LDFLAGS_FOR_BUILD.
4541 * Makefile.tpl (EXTRA_BUILD_FLAGS): Define.
4542 (all prefix="build-"): Pass them to build-system sub-makes.
4543 * Makefile.in: Regenerate.
4544
4545 2008-05-16 Daniel Jacobowitz <dan@codesourcery.com>
4546
4547 * src-release (DEVO_SUPPORT): Add ChangeLog, MAINTAINERS,
4548 README-maintainer-mode, lt~obsolete.m4, ltgcc.m4, depcomp,
4549 mkdep, and compile. Update comments.
4550 (ETC_SUPPORT): Add ChangeLog and update comments.
4551
4552 2008-05-11 Ian Lance Taylor <iant@google.com>
4553
4554 * src-release (BINUTILS_SUPPORT_DIRS): Add elfcpp and gold.
4555
4556 2008-04-18 Paolo Bonzini <bonzini@gnu.org>
4557
4558 Sync with gcc:
4559 2008-04-18 Paolo Bonzini <bonzini@gnu.org>
4560
4561 PR bootstrap/35457
4562 * configure.ac: Include override.m4.
4563 * configure: Regenerate.
4564
4565 2008-04-18 Paolo Bonzini <bonzini@gnu.org>
4566
4567 * Makefile.tpl (restrap): Call `make all' using double-colon rules.
4568 * Makefile.in: Regenerate.
4569
4570 2008-04-11 Eric B. Weddington <eweddington@cso.atmel.com>
4571
4572 * configure.ac: Do not build libssp for the AVR.
4573 * configure: Regenerate.
4574
4575 2008-04-18 Nick Clifton <nickc@redhat.com>
4576
4577 * MAINTAINERS: Replace reference to configure.in with reference to
4578 configure.ac.
4579
4580 2008-04-18 M R Swami Reddy <MR.Swami.Reddy@nsc.com>
4581
4582 * configure.ac (cr16-*-*): Add case for cr16 target and include gdb
4583 as nonconfigurable directories list.
4584 * configure: Regenerate.
4585
4586 2008-04-14 David S. Miller <davem@davemloft.net>
4587
4588 * configure.ac: Add sparc*-*-* to gold supported targets.
4589 * configure: Regenerate.
4590
4591 2008-04-14 Ben Elliston <bje@au.ibm.com>
4592
4593 * config.sub, config.guess: Update from upstream sources.
4594
4595 2008-04-12 Hans-Peter Nilsson <hp@axis.com>
4596
4597 * Makefile.tpl <gcc>: Error early unless at least GNU make 3.80.
4598 * Makefile.in: Regenerate.
4599
4600 2008-04-07 Ian Lance Taylor <iant@google.com>
4601
4602 * Makefile.def: check-gold depends upon all-binutils.
4603 * Makefile.in: Regenerate.
4604
4605 2008-04-04 Nick Clifton <nickc@redhat.com>
4606
4607 PR binutils/4334
4608 * configure.ac: Run ACX_CHECK_CYGWIN_CAT_WORKS for cygwin hosted
4609 builds.
4610 * configure: Regenerate.
4611
4612 2008-04-04 NightStrike <NightStrike@gmail.com>
4613
4614 PR other/35151
4615 * configure.ac: Combine rules for mingw32 and mingw64.
4616 * configure: Regenerate.
4617
4618 2008-03-27 Paolo Bonzini <bonzini@gnu.org>
4619
4620 * Makefile.tpl (PICFLAG, PICFLAG_FOR_TARGET): Remove.
4621 * Makefile.in: Regenerate.
4622
4623 2008-03-20 Ian Lance Taylor <iant@google.com>
4624
4625 * configure.ac: Add support for --enable-gold.
4626 * Makefile.def: Add gold as a directory like ld.
4627 * configure, Makefile.in: Regenerate.
4628
4629 2008-03-19 Andreas Krebbel <krebbel1@de.ibm.com>
4630
4631 * opcodes/s390-mkopc.c (s390_opcode_cpu_val): S390_OPCODE_Z10 added.
4632 (s390_cond_extensions): Reduced extensions to the compare related.
4633 (main): z10 cpu type option added.
4634 (expandConditionalJump): Renamed to ...
4635 (insertExpandedMnemonic): ... this.
4636
4637 * opcodes/s390-opc.c: Re-group the operand format makros.
4638 (INSTR_RIE_RRPU, INSTR_RIE_RRP0, INSTR_RIE_RUPI,
4639 INSTR_RIE_R0PI, INSTR_RIE_RUPU, INSTR_RIE_R0PU, INSTR_RIE_R0IU,
4640 INSTR_RIE_R0I0, INSTR_RIE_R0UU, INSTR_RIE_R0U0,
4641 INSTR_RIE_RRUUU, INSTR_RIS_RURDI, INSTR_RIS_R0RDI, INSTR_RIS_RURDU,
4642 INSTR_RIS_R0RDU, INSTR_RRF_U0RR, INSTR_RRF_00RR, INSTR_RRS_RRRDU,
4643 INSTR_RRS_RRRD0, INSTR_RXY_URRD, INSTR_SIY_IRD, INSTR_SIL_RDI,
4644 INSTR_SIL_RDU): New instruction formats added.
4645 (MASK_RIE_RRPU, MASK_RIE_RRP0, MASK_RIE_RUPI, MASK_RIE_R0PI,
4646 MASK_RIE_RUPU, MASK_RIE_R0PU, MASK_RIE_R0IU, MASK_RIE_R0I0,
4647 MASK_RIE_R0UU, MASK_RIE_R0U0, MASK_RIE_RRUUU, MASK_RIS_RURDI,
4648 MASK_RIS_R0RDI, MASK_RIS_RURDU, MASK_RIS_R0RDU, MASK_RRF_U0RR,
4649 MASK_RRF_00RR, MASK_RRS_RRRDU, MASK_RRS_RRRD0, MASK_RXY_URRD,
4650 MASK_SIY_IRD, MASK_SIL_RDI, MASK_SIL_RDU): New instruction format
4651 masks added.
4652 (s390_opformats): New formats added "ris", "rrs", "sil".
4653 * opcodes/s390-opc.txt: Add the conditional jumps with the
4654 extensions removed from automatic expansion in s390-mkopc.c manually.
4655 (asi - trtre): Add new System z10 EC instructions.
4656 * include/opcode/s390.h (s390_opcode_cpu_val): S390_OPCODE_Z10 added.
4657
4658 2008-03-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4659
4660 * configure.ac: m4_include config/proginstall.m4.
4661 * configure: Regenerate.
4662
4663 2008-03-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4664
4665 Backport from upstream Libtool:
4666
4667 2007-10-12 Eric Blake <ebb9@byu.net>
4668
4669 Deal with Autoconf 2.62's semantic change in m4_append.
4670 * ltsugar.m4 (lt_append): Replace broken versions of
4671 m4_append.
4672 (lt_if_append_uniq): Don't require separator to be overquoted,
4673 and avoid broken m4_append.
4674 (lt_dict_add): Fix typo.
4675 * libtool.m4 (_LT_DECL): Don't overquote separator.
4676
4677 2008-03-13 David Edelsohn <edelsohn@gnu.org>
4678
4679 * config.rpath: Add AIX 6 support.
4680
4681 2008-03-13 Paolo Bonzini <bonzini@gnu.org>
4682
4683 * Makefile.def (stageprofile). Remove -fprofile-generate
4684 from stage_libcflags.
4685 * Makefile.in: Regenerate.
4686
4687 2008-03-13 Ben Elliston <bje@au.ibm.com>
4688
4689 * config.sub, config.guess: Update from upstream sources.
4690
4691 2008-03-06 Florian Krohm <fkrohm@us.ibm.com>
4692
4693 * s390-opc.c (INSTR_RSL_R0RD): Fix operands.
4694 * s390-opc.txt (cmpsc): Duplicate entry removed.
4695 (dxr, sqdr, sqer, cxfbr, cdfbr, cefbr, lzer, lzdr, lzxr,
4696 cegbr, cdgbr, cxgbr, cegr, cdgr, cxgr, cxfr, cdfr, cefr, fixr, fidr,
4697 fier, cu42, cu41): Fix operand format.
4698
4699 2008-02-20 Paolo Bonzini <bonzini@gnu.org>
4700
4701 PR bootstrap/32009
4702 PR bootstrap/32161
4703
4704 * configure.ac (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Compute here.
4705 * configure: Regenerate.
4706
4707 * Makefile.def: Define stage_libcflags for all bootstrap stages.
4708 * Makefile.tpl (BOOT_LIBCFLAGS, STAGE2_LIBCFLAGS, STAGE3_LIBCFLAGS,
4709 STAGE4_LIBCFLAGS): New.
4710 (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Subst from autoconf, without
4711 $(SYSROOT_CFLAGS_FOR_TARGET) and $(DEBUG_PREFIX_CFLAGS_FOR_TARGET).
4712 (BASE_TARGET_EXPORTS): Append them here to C{,XX}FLAGS.
4713 (EXTRA_TARGET_FLAGS): Append them here to {LIB,}C{,XX}FLAGS.
4714 (configure-stage[+id+]-[+prefix+][+module+]): Pass stage_libcflags
4715 for target modules. Don't export LIBCFLAGS.
4716 (all-stage[+id+]-[+prefix+][+module+]): Pass stage_libcflags; pass
4717 $(BASE_FLAGS_TO_PASS) where [+args+] was passed, and [+args+] after
4718 the overridden CFLAGS_FOR_TARGET and CXXFLAGS_FOR_TARGET.
4719 (invocations of `all'): Replace $(TARGET_FLAGS_TO_PASS) with
4720 $(EXTRA_TARGET_FLAGS), $(FLAGS_TO_PASS) with $(EXTRA_HOST_FLAGS).
4721 * Makefile.in: Regenerate.
4722
4723 2008-02-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4724
4725 PR libgcj/33085
4726 * libtool.m4 (_LT_COMPILER_PIC) [ mingw, cygwin ] <GCJ>:
4727 Do not use -DDLL_EXPORT. Backport from upstream.
4728
4729 2008-02-14 Nick Clifton <nickc@redhat.com>
4730
4731 Import this patch from gcc:
4732 2008-01-24 David Edelsohn <edelsohn@gnu.org>
4733
4734 * libtool.m4: Backport AIX 6 support from ToT Libtool.
4735
4736 2008-02-02 Hans-Peter Nilsson <hp@axis.com>
4737
4738 * configure.ac: Enable fortran for cris-*-elf and crisv32-*-elf.
4739 * configure: Regenerate.
4740
4741 2008-01-31 Marc Gauthier <marc@tensilica.com>
4742
4743 * configure.ac (xtensa*-*-*): Recognize processor variants.
4744 * configure: Regenerate.
4745
4746 2008-01-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4747
4748 PR bootstrap/34922
4749 * configure.ac (PARSE_ARGS): Push suitable setting of
4750 ac_subdirs_all, for `./configure --help=recursive'.
4751 Handle `+' in generic toplevel directory disabling.
4752 * configure: Regenerate.
4753
4754 2008-01-23 Ben Elliston <bje@au.ibm.com>
4755
4756 * config.sub, config.guess: Update from upstream sources.
4757
4758 2008-01-08 Ben Elliston <bje@au.ibm.com>
4759
4760 * config.sub, config.guess: Update from upstream sources.
4761
4762 2007-12-19 Jeff Johnston <jjohnstn@redhat.com>
4763
4764 * COPYING.LIBGLOSS: Update default copyright.
4765
4766 2007-12-19 Jeff Johnston <jjohnstn@redhat.com>
4767
4768 * COPYING.NEWLIB: Update default copyright.
4769
4770 2007-12-17 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4771
4772 * configure.ac: Change required MPFR from 2.2.0 -> 2.2.1.
4773 Change recommended MPFR from 2.2.1 > 2.3.0.
4774 * configure: Regenerate.
4775
4776 2007-12-13 Richard Sandiford <rsandifo@nildram.co.uk>
4777
4778 * Makefile.tpl (CFLAGS_FOR_TARGET): Add -g.
4779 (CXXFLAGS_FOR_TARGET): Add -O2 -g.
4780 * Makefile.in: Regenerate.
4781
4782 2007-12-10 Andreas Tobler <a.tobler@schweiz.org>
4783
4784 * configure.ac: Enable libjava for x86_64-*-darwin9.
4785 * configure: Regenerate.
4786
4787 2007-12-05 Ben Elliston <bje@au.ibm.com>
4788
4789 * config.sub, config.guess: Update from upstream sources.
4790
4791 2007-11-28 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4792
4793 * config-ml.in: Robustify against white space in absolute file
4794 names.
4795
4796 * config-ml.in (multi-clean): Substitute ${Makefile}.
4797 Remove superfluous ${Makefile} in list.
4798
4799 2007-10-23 Daniel Jacobowitz <dan@codesourcery.com>
4800
4801 * Makefile.def (dependencies): Make configure-gdb depend on
4802 all-intl.
4803 * Makefile.in: Regenerated.
4804
4805 2007-10-15 Patrick Mansfield <patmans@us.ibm.com>
4806
4807 * Makefile.def: To avoid problems running with parallel makes,
4808 build newlib before libgloss so that target specific header
4809 files are availble.
4810 * Makefile.in: Regenerate.
4811
4812 2007-10-11 Daniel Jacobowitz <dan@codesourcery.com>
4813
4814 * Makefile.def (dependencies): Add all-gdb -> all-libdecnumber.
4815 * Makefile.in: Regenerate.
4816
4817 2007-10-11 Daniel Jacobowitz <dan@codesourcery.com>
4818
4819 * src-release (GDB_SUPPORT_DIRS): Add libdecnumber.
4820 * libdecnumber: New directory, imported from GCC.
4821
4822 2007-10-08 Mike Frysinger <vapier@gentoo.org>
4823
4824 * configure.ac (CFLAGS_FOR_BUILD, CXXFLAGS_FOR_BUILD,
4825 LDFLAGS_FOR_BUILD): Default them to host flags only for $host = $build.
4826 Set default CXXFLAGS_FOR_BUILD to CXXFLAGS, not CFLAGS. Set default
4827 LDFLAGS_FOR_BUILD to LDFLAGS, not CFLAGS.
4828 * configure: Regenerate.
4829
4830 2007-10-01 Paolo Bonzini <bonzini@gnu.org>
4831
4832 * Makefile.tpl (AR_FOR_BUILD, AS_FOR_BUILD, CXX_FOR_BUILD,
4833 DLLTOOL_FOR_BUILD, GCJ_FOR_BUILD, GFORTRAN_FOR_BUILD,
4834 LDFLAGS_FOR_BUILD, LD_FOR_BUILD, NM_FOR_BUILD, RANLIB_FOR_BUILD,
4835 WINDMC_FOR_BUILD, WINDRES_FOR_BUILD): Use autoconf substitutions.
4836 * configure.ac: Default them to host tools for $host = $build.
4837 Subst them.
4838
4839 * configure: Regenerate.
4840 * Makefile.in: Regenerate.
4841
4842 2007-09-20 Richard Sandiford <rsandifo@nildram.co.uk>
4843
4844 * configure.ac (mipsisa*-*-elfoabi*): New stanza.
4845 * configure: Regenerate.
4846
4847 2007-09-19 Benjamin Kosnik <bkoz@redhat.com>
4848
4849 * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Move libgomp before
4850 libstdc++.
4851 * Makefile.def: Add libgomp config as a maybe dependency for libstdc++.
4852 * configure: Regenerate.
4853 * Makefile.in: Regenerate.
4854
4855 2007-09-17 Andreas Schwab <schwab@suse.de>
4856
4857 * configure.ac: Raise minimum makeinfo version to 4.6.
4858 * configure: Regenerate.
4859
4860 2007-09-15 Alan Modra <amodra@bigpond.net.au>
4861
4862 * configure.ac: Correct makeinfo version check.
4863 * configure: Regenerate.
4864
4865 2007-09-14 Richard Sandiford <richard@codesourcery.com>
4866
4867 * configure.ac (mips*-sde-elf*): New stanza. Add target-libiberty
4868 to $skipdirs and only disable gprof for newlib. Use the normal
4869 mips*-elf* handling in other respects.
4870 * configure: Regnerate.
4871
4872 2007-09-12 David Daney <ddaney@avtrex.com>
4873
4874 * configure.ac: Remove mips64*-*-linux* noconfigdirs section, thus
4875 enabling libgcj.
4876 * configure: Regenerate.
4877
4878 2007-09-12 Richard Guenther <rguenther@suse.de>
4879
4880 * configure.ac (--enable-stage1-checking): If neither --enable-checking
4881 nor --disable-checking is provided also turn on yes and types
4882 checking for stage1.
4883 * configure: Re-generate.
4884
4885 2007-09-11 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
4886
4887 PR target/33281
4888 * configure.ac: Use config/mh-mingw on mingw.
4889 * configure: Regenerate.
4890
4891 2007-09-10 Rask Ingemann Lambertsen <rask@sygehus.dk>
4892
4893 PR other/32154
4894 * configure.ac: For libgloss targets, point the linker to the linker
4895 script, startup code and simulator library.
4896 * configure: Regenerate.
4897
4898 2007-09-09 Andrew Haley <aph@redhat.com>
4899
4900 * configure.ac (noconfigdirs): Remove target-libffi and
4901 target-libjava.
4902
4903 2007-08-29 Nick Clifton <nickc@redhat.com>
4904
4905 * config.sub, config.guess: Update from upstream sources.
4906
4907 2007-08-21 Richard Guenther <rguenther@suse.de>
4908
4909 * configure.ac: Add types checking to stage1 checking flags.
4910 * configure: Regenerate.
4911
4912 2007-08-18 Paul Brook <paul@codesourcery.com>
4913 Joseph Myers <joseph@codesourcery.com>
4914
4915 * Makefile.tpl (DEBUG_PREFIX_CFLAGS_FOR_TARGET): New.
4916 (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Include it.
4917 * Makefile.in: Regenerate.
4918 * configure.ac (--with-debug-prefix-map): New.
4919 * configure: Regenerate.
4920
4921 2007-08-17 Richard Sandiford <richard@codesourcery.com>
4922 Nigel Stephens <nigel@mips.com>
4923
4924 * configure.ac (mips*-sde-elf*): New stanza. Use config/mt-sde
4925 as target_makefile_frag.
4926 * configure: Regenerate.
4927
4928 2007-08-16 Alexandre Oliva <aoliva@redhat.com>
4929
4930 * Makefile.def (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS):
4931 Add to flags_to_pass. Adjust uses of BOOT_CFLAGS.
4932 (bootstrap2-debug, bootstrap-debug): New bootstrap stages.
4933 * Makefile.tpl (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS): New.
4934 (do-compare, do-compare3, do-compare-debug): New.
4935 ([+compare-target+]): Use them.
4936
4937 2007-08-16 Alexandre Oliva <aoliva@redhat.com>
4938
4939 * Makefile.def (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS):
4940 Add to flags_to_pass. Adjust uses of BOOT_CFLAGS.
4941 (bootstrap2-debug, bootstrap-debug): New bootstrap stages.
4942 * Makefile.tpl (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS): New.
4943 (do-compare, do-compare3, do-compare-debug): New.
4944 ([+compare-target+]): Use them.
4945
4946 2007-08-13 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4947 Ben Elliston <bje@au.ibm.com>
4948
4949 * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS, baseargs): Pass
4950 --silent if $silent.
4951 * configure: Regenerate.
4952
4953 2007-08-12 Daniel Jacobowitz <dan@codesourcery.com>
4954
4955 * src-release (DEVO_SUPPORT): Add COPYING3 and COPYING3.LIB.
4956
4957 2007-07-17 Nick Clifton <nickc@redhat.com>
4958
4959 * COPYING3: New file. Contains version 3 of the GNU General
4960 Public License.
4961 * COPYING3.LIB: New file. Contains version 3 of the GNU
4962 Lesser General Public License.
4963
4964 2007-07-11 Bernd Schmidt <bernd.schmidt@analog.com>
4965
4966 * configure.ac: Fix my previous change to really match GCC.
4967 * configure: Regenerate.
4968
4969 2007-07-11 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4970
4971 * configure.ac: Rewrite 'configure --help' strings to look nicer.
4972 * configure: Regenerate.
4973
4974 2007-07-11 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4975
4976 * configure.ac: Add some missing m4 quotation.
4977 * configure: Regenerate.
4978
4979 2007-07-09 Kai Tietz <kai.tietz@onevision.com>
4980
4981 * Makefile.def: Add windmc tool to build.
4982 * Makefile.tpl: Likewise.
4983 * configure.ac: Likewise.
4984 * Makefile.in: Regenerate.
4985 * configure: Regenerate.
4986
4987 2007-07-05 H.J. Lu <hongjiu.lu@intel.com>
4988
4989 * lt~obsolete.m4: New. Import from 20070318 libtool.
4990
4991 2007-06-29 Bernd Schmidt <bernd.schmidt@analog.com>
4992
4993 * configure.ac: Don't add target-libmudflap to noconfigdirs for
4994 uclinux and linux-uclibc targets.
4995 * configure: Regenerate.
4996
4997 2007-06-28 DJ Delorie <dj@redhat.com>
4998
4999 * configure.ac (arm*-*-linux-gnueabi): Don't build libgloss if we're
5000 not building newlib.
5001 * configure: Regenerated.
5002
5003 2007-06-22 Daniel Jacobowitz <dan@codesourcery.com>
5004
5005 * src-release (DEVO_SUPPORT): Correct typos.
5006
5007 2007-06-18 Daniel Jacobowitz <dan@codesourcery.com>
5008
5009 * Makefile.def: Add dependency from configure-gdb to all-bfd.
5010 * Makefile.in: Regenerated.
5011
5012 2007-06-14 Paolo Bonzini <bonzini@gnu.org>
5013
5014 * Makefile.tpl (cleanstrap): Don't delete the toplevel Makefile.
5015 (distclean-stage[+id+]): Possibly delete stage_last.
5016 * Makefile.in: Regenerate.
5017
5018 2007-06-07 Ben Elliston <bje@au.ibm.com>
5019
5020 * config.sub, config.guess: Update from upstream sources.
5021
5022 2007-06-07 Ben Elliston <bje@au.ibm.com>
5023
5024 * Makefile.tpl: Fix spelling error.
5025 * Makefile.in: Regenerate.
5026
5027 2007-06-04 Paolo Bonzini <bonzini@gnu.org>
5028
5029 Sync with gcc:
5030 2007-05-30 Jakub Jelinek <jakub@redhat.com>
5031
5032 PR bootstrap/29382
5033 * configure.ac: Don't use -fkeep-inline-functions for GCC < 3.3.1.
5034 * configure: Rebuilt.
5035
5036 2007-06-01 Steve Ellcey <sje@cup.hp.com>
5037
5038 * libtool.m4 (LT_CMD_MAX_LEN): Try using getconf to set
5039 lt_cv_sys_max_cmd_len.
5040
5041 2007-05-31 Paolo Bonzini <bonzini@gnu.org>
5042
5043 * ltgcc.m4: Update from GCC.
5044
5045 2007-05-25 Andreas Tobler <a.tobler@schweiz.org>
5046
5047 * ltmain.sh: Fix Darwin verstring, remove ${wl}.
5048
5049 2007-05-24 Steve Ellcey <sje@cup.hp.com>
5050
5051 * ltmain.sh: Update from GCC.
5052 * libtool.m4: Update from GCC.
5053 * ltsugar.m4: New. Update from GCC.
5054 * ltversion.m4: New. Update from GCC.
5055 * ltoptions.m4: New. Update from GCC.
5056 * ltconfig: Remove.
5057 * ltcf-c.sh: Remove.
5058 * ltcf-cxx.sh: Remove.
5059 * ltcf-gcj.sh: Remove.
5060 * src-release: Update with new libtool file list.
5061
5062 2007-05-16 Paolo Bonzini <bonzini@gnu.org>
5063
5064 * Makefile.def (bootstrap_stage): Replace stage_make_flags with
5065 stage_cflags.
5066 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS, POSTSTAGE1_FLAGS_TO_PASS):
5067 Remove CFLAGS/LIBCFLAGS.
5068 (configure-stage[+id+]-[+prefix+][+module+],
5069 all-stage[+id+]-[+prefix+][+module+]): Pass it from [+stage_cflags+].
5070 * Makefile.in: Regenerate.
5071
5072 2007-04-14 Steve Ellcey <sje@cup.hp.com>
5073
5074 * config-ml.in: Update from GCC.
5075
5076 2007-04-09 Daniel Jacobowitz <dan@codesourcery.com>
5077
5078 * src-release (do-proto-toplev): Process the support directories before
5079 the tool directory.
5080
5081 2007-03-21 Richard Sandiford <richard@codesourcery.com>
5082
5083 * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Fix m4 quoting
5084 of glob. Quote arguments with single quotes too.
5085 * configure: Regenerate.
5086
5087 2007-03-12 Brooks Moses <brooks.moses@codesourcery.com>
5088
5089 * Makefile.def (fixincludes): Remove unneeded "missing" lines.
5090 * Makefile.in: Regenerate
5091
5092 2007-03-07 Andreas Schwab <schwab@suse.de>
5093
5094 * configure: Regenerate.
5095
5096 2007-03-01 Brooks Moses <brooks.moses@codesourcery.com>
5097
5098 * configure.ac: Add "--with-pdfdir" configure option,
5099 which defines pdfdir variable.
5100 * Makefile.def (target=fixincludes): Add install-pdf to
5101 missing targets.
5102 (recursive_targets): Add install-pdf target.
5103 (flags_to_pass): Add pdfdir.
5104 * Makefile.tpl: Add pdfdir handling, add do-install-pdf
5105 target.
5106 * configure: Regenerate
5107 * Makefile.in: Regenerate
5108
5109 2007-02-28 Eric Christopher <echristo@apple.com>
5110
5111 Revert:
5112 2006-12-07 Mike Stump <mrs@apple.com>
5113
5114 * Makefile.def (dependencies): Add dependency for
5115 install-target-libssp and install-target-libgomp on
5116 install-gcc.
5117 * Makefile.in: Regenerate.
5118
5119 2007-02-27 Matt Kraai <kraai@ftbfs.org>
5120
5121 * configure: Regenerate.
5122 * configure.ac: Move statements after variable declarations.
5123
5124 2007-02-19 Joseph Myers <joseph@codesourcery.com>
5125
5126 * configure.ac: Adjust for loop syntax.
5127 * configure: Regenerate.
5128
5129 2007-02-18 Alexandre Oliva <aoliva@redhat.com>
5130
5131 * configure: Rebuilt.
5132
5133 2007-02-18 Alexandre Oliva <aoliva@redhat.com>
5134
5135 * configure.ac: Drop multiple occurrences of --enable-languages,
5136 and fix its quoting.
5137 * configure: Rebuilt.
5138
5139 2007-02-17 Mark Mitchell <mark@codesourcery.com>
5140 Nathan Sidwell <nathan@codesourcery.com>
5141 Vladimir Prus <vladimir@codesourcery.com
5142 Joseph Myers <joseph@codesourcery.com>
5143
5144 * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Fix quoting.
5145 * configure: Regenerate.
5146
5147 2007-02-13 Daniel Jacobowitz <dan@codesourcery.com>
5148
5149 * configure.ac (target_libraries): Move libgcc before libiberty.
5150 * configure: Regenerated.
5151
5152 2007-02-13 Paolo Bonzini <bonzini@gnu.org>
5153
5154 * configure: Regenerate again?
5155
5156 2007-02-13 Paolo Bonzini <bonzini@gnu.org>
5157
5158 * configure: Reapply PR30748 fix which was lost in the previous commit.
5159
5160 2007-02-13 Daniel Jacobowitz <dan@codesourcery.com>
5161 Paolo Bonzini <bonzini@gnu.org>
5162
5163 PR bootstrap/30753
5164 * configure.ac: Remove obsolete build / host tests. Use AC_PROG_CC
5165 unconditionally. Use AC_PROG_CXX. Use ACX_TOOL_DIRS to find $prefix.
5166 * configure: Regenerated.
5167
5168 2007-02-10 Paolo Bonzini <bonzini@gnu.org>
5169
5170 * configure: Regenerate.
5171
5172 2007-02-09 Daniel Jacobowitz <dan@codesourcery.com>
5173
5174 PR bootstrap/30748
5175 * configure.ac: Correct syntax for Solaris ksh.
5176 * configure: Regenerated.
5177
5178 2007-02-09 Paolo Bonzini <bonzini@gnu.org>
5179
5180 * Makefile.def: Sync with GCC.
5181 * Makefile.tpl: Sync with GCC.
5182 * Makefile.in: Regenerate.
5183 * configure: Regenerate.
5184
5185 2007-02-09 Daniel Jacobowitz <dan@codesourcery.com>
5186
5187 * Makefile.tpl (build_alias, host_alias, target_alias): Use
5188 noncanonical equivalents.
5189 * configure.in: Rename to...
5190 * configure.ac: ...this. Update AC_PREREQ. Prevent error for
5191 AS_FOR_TARGET. Set build_noncanonical, host_noncanonical, and
5192 target_noncanonical. Use them. Rewrite removal of configure
5193 arguments for autoconf 2.59. Discard variable settings. Force
5194 program_transform_name for native tools.
5195
5196 * Makefile.in: Regenerated.
5197 * configure: Regenerated with autoconf 2.59.
5198
5199 * src-release (DEVO_SUPPORT, do-proto-toplev): Expect configure.ac.
5200
5201 2007-02-08 Jeff Johnston <jjohnstn@redhat.com>
5202
5203 * COPYING.LIBGLOSS: Reformat default Red Hat
5204 license to fit within 80 columns.
5205 * COPYING.NEWLIB: Ditto.
5206
5207 2007-02-05 Dave Brolley <brolley@redhat.com>
5208
5209 * Contribute the following changes:
5210 2006-11-28 DJ Delorie <dj@redhat.com>
5211
5212 * configure.in: Fix typo for mep's target_makefile_frag.
5213 * configure: Regenerated.
5214
5215 2005-04-22 Richard Sandiford <rsandifo@redhat.com>
5216
5217 * configure.in (mep*): Add -mlibrary to FLAGS_FOR_TARGET.
5218 * configure: Regenerate.
5219
5220 2001-09-19 DJ Delorie <dj@redhat.com>
5221
5222 * configure.in (target_makefile_frag): use mt-mep
5223
5224 2001-06-12 Don Howard <dhoward@redhat.com>
5225
5226 * configure.in: Remove gdb from MeP skip list.
5227
5228 2001-04-05 DJ Delorie <dj@redhat.com>
5229
5230 * configure.in (noconfigdirs): Remove gcc from MeP skip list.
5231
5232 2001-03-20 Ben Elliston <bje@redhat.com>
5233
5234 * configure.in (noconfigdirs): Add gcc and gdb for MeP.
5235
5236 2001-03-19 Ben Elliston <bje@redhat.com>
5237
5238 * config.sub (mep, mep-*): Add.
5239
5240 2007-01-31 Andreas Schwab <schwab@suse.de>
5241
5242 * Makefile.tpl (LDFLAGS): Substitute it.
5243 * Makefile.in: Regenerate.
5244
5245 2007-01-11 Paolo Bonzini <bonzini@gnu.org>
5246
5247 * configure.in: Change == to = in test command.
5248 * configure: Regenerate.
5249
5250 2007-01-11 Paolo Bonzini <bonzini@gnu.org>
5251 Nick Clifton <nickc@redhat.com>
5252 Kaveh R. Ghazi <ghazi@caip.rutgets.edu>
5253
5254 * configure.in (build_configargs, host_configargs, target_configargs):
5255 Remove build/host/target parameters.
5256 (host_libs): Add gmp and mpfr.
5257 (GMP tests): Reorganize to allow in-tree GMP/MPFR.
5258 * Makefile.def (gmp, mpfr): New.
5259 (gcc): Remove target.
5260 * Makefile.tpl (build_os, build_vendor, host_os, host_vendor,
5261 target_os, target_vendor): New.
5262 (configure): Add host_alias/target_alias arguments. Adjust invocations.
5263 * configure: Regenerate.
5264 * Makefile.in: Regenerate.
5265
5266 2007-01-11 Matt Fago <fago@earthlink.net>
5267
5268 * configure.in: Try to link to functions only in mpfr 2.2.x
5269 to improve robustness of configure tests.
5270 * configure: Regenerate.
5271
5272 2007-01-08 Kai Tietz <kai.tietz@onevision.com>
5273
5274 * configure.in: Add support for an x86_64-mingw* target.
5275 * configure: Regenerate.
5276
5277 2007-01-05 Daniel Jacobowitz <dan@codesourcery.com>
5278
5279 * Makefile.tpl (all-target): Correct @if conditional for target
5280 modules.
5281 * configure.in: Omit libiberty if building only target libgcc.
5282 * configure, Makefile.in: Regenerated.
5283
5284 2007-01-04 Paolo Bonzini <bonzini@gnu.org>
5285
5286 * configure.in: Use DEV-PHASE to detect the default for --enable-werror.
5287 * configure: Regenerate.
5288
5289 2007-01-03 Daniel Jacobowitz <dan@codesourcery.com>
5290
5291 * Makefile.def (target_modules): Add libgcc.
5292 (lang_env_dependencies): Remove default items. Use no_c and no_gcc.
5293 * Makefile.tpl (clean-target-libgcc): Delete.
5294 (configure-target-[+module+]): Emit --disable-bootstrap dependencies
5295 on gcc even for bootstrapped modules. Rewrite handling of
5296 lang_env_dependencies to loop over target_modules.
5297 * configure.in (target_libraries): Add target-libgcc.
5298 * Makefile.in, configure: Regenerated.
5299
5300 2006-12-29 Paolo Bonzini <bonzini@gnu.org>
5301
5302 Sync with gcc:
5303 2006-12-29 Paolo Bonzini <bonzini@gnu.org>
5304
5305 * configure.in: Reorganize recognition of languages. Add
5306 --enable-stage1-languages. Show supported languages for the chosen
5307 target rather than all recognized languages.
5308 * configure: Regenerate.
5309
5310 2006-12-29 Paolo Bonzini <bonzini@gnu.org>
5311
5312 * Makefile.tpl (GCC_STRAP_TARGETS, all-prebootstrap): Remove.
5313 * Makefile.in: Regenerate.
5314
5315 2006-12-29 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5316
5317 * configure.in: Warn that MPFR 2.2.0 is buggy.
5318 * configure: Regenerate.
5319
5320 2006-12-27 Ian Lance Taylor <iant@google.com>
5321
5322 * configure.in: When removing Makefiles to force a reconfigure, also
5323 remove prev-DIR*/Makefile.
5324 * configure: Regenerate.
5325
5326 2006-12-23 Kazu Hirata <kazu@codesourcery.com>
5327
5328 * config.bfd: Recognize fido.
5329
5330 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
5331
5332 Sync with gcc:
5333
5334 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
5335
5336 * configure.in: Remove "$build" case for powerpc-*-darwin* since
5337 it only affects bootstrap and could be tested on "$host" as well.
5338 * configure: Regenerate.
5339 * config/mh-ppc-darwin: Add to the stage1 cflags here.
5340
5341 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
5342
5343 PR bootstrap/29544
5344 * Makefile.def (flags_to_pass): Add STAGE1_CHECKING.
5345 (bootstrap_stage): Add STAGE1_CHECKING to stage1 configure flags,
5346 move here comment from Makefile.tpl.
5347 * Makefile.tpl: Move some definitions higher in the file.
5348 (STAGE1_CHECKING): New.
5349 * configure.in: Add --enable-stage1-checking.
5350 * configure: Regenerate.
5351 * Makefile.in: Regenerate.
5352
5353 2006-12-03 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5354
5355 * configure.in: Update error message for missing GMP/MPFR.
5356
5357 * configure: Regenerate.
5358
5359 2006-12-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5360
5361 * configure.in: Update MPFR version in error message.
5362
5363 * configure: Regenerate.
5364
5365 2006-11-26 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5366
5367 * configure.in (--with-mpfr-dir, --with-gmp-dir): Remove flags.
5368 (--with-mpfr-include, --with-mpfr-lib, --with-gmp-include,
5369 --with-gmp-lib): New flags.
5370
5371 * configure: Regenerate.
5372
5373 2006-12-12 Andreas Tobler <a.tobler@schweiz.org>
5374
5375 PR bootstrap/30134
5376 * configure.in: Correct x86 darwin support for libjava to powerpc
5377 and i?86 only.
5378 * configure: Regenerate.
5379
5380 2006-12-11 Alan Modra <amodra@bigpond.net.au>
5381
5382 * configure.in: Handle spu makefile frag.
5383 * Makefile.tpl (MAINT): Define
5384 (MAINTAINER_MODE_FALSE, MAINTAINER_MODE_TRUE): Define.
5385 * configure: Regenerate.
5386 * Makefile.in: Regenerate.
5387
5388 2006-12-11 Ben Elliston <bje@au.ibm.com>
5389
5390 * config.sub, config.guess: Update from upstream sources.
5391
5392 2006-12-11 Ben Elliston <bje@au.ibm.com>
5393
5394 * configure.in: Sync with GCC (spu-*-*).
5395 * configure: Sync with GCC.
5396
5397 2006-12-07 Mike Stump <mrs@apple.com>
5398
5399 * Makefile.def (dependencies): Add dependency for
5400 install-target-libssp and install-target-libgomp on
5401 install-gcc.
5402 * Makefile.in: Regenerate.
5403
5404 2006-11-16 Paolo Bonzini <bonzini@gnu.org>
5405
5406 * Makefile.tpl (clean-target-libgcc): Test for gcc Makefile presence.
5407 (unstage): Test for stage_last presence.
5408
5409 PR bootstrap/29802
5410 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Add HOST_SUBDIR in STAGE_PREFIX.
5411 * Makefile.in: Regenerate.
5412
5413 2006-11-14 DJ Delorie <dj@redhat.com>
5414
5415 * Makefile.tpl (clean-stage*): Sync with GCC (clean).
5416 * Makefile.in: Sync with GCC.
5417 * configure.in: Sync with GCC (mpfr, gmp).
5418 * configure: Sync with GCC.
5419
5420 2006-11-08 Jie Zhang <jie.zhang@analog.com>
5421
5422 * configure.in: Remove target-libgloss from noconfigdirs for
5423 bfin-*-*.
5424 * configure: Regenerated.
5425
5426 2006-10-27 Jeff Johnston <jjohnstn@redhat.com>
5427
5428 * COPYING.NEWLIB: Add spu license.
5429 * COPYING.LIBGLOSS: Ditto.
5430
5431 2006-10-17 Brooks Moses <bmoses@stanford.edu>
5432
5433 * Makefile.def: Added pdf target handling.
5434 * Makefile.tpl: Added pdf target handling.
5435 * Makefile.in: Regenerated.
5436
5437 2006-10-11 Jeff Johnston <jjohnstn@redhat.com>
5438
5439 * COPYING.NEWLIB: Updated.
5440 * COPYING.LIBGLOSS: Ditto.
5441
5442 2006-09-27 Dave Brolley <brolley@redhat.com>
5443
5444 * configure.in (RUNTEST): Look for 'runtest' in the source tree by using
5445 $s instead of $r.
5446 * configure: Regenerated.
5447
5448 2006-09-26 Ben Elliston <bje@au.ibm.com>
5449
5450 * config.sub, config.guess: Update from upstream sources.
5451
5452 2006-09-20 Thiemo Seufer <ths@mips.com>
5453
5454 * configure.in: Remove redundant handling of mips*-dec-bsd*. Likewise
5455 for mipstx39-*-*. Disable libgloss for mips64*-*-linux*.
5456 * configure: Regenerate.
5457
5458 2006-08-30 Corinna Vinschen <corinna@vinschen.de>
5459
5460 * configure.in: Never build newlib for a Mingw host.
5461 Never build newlib as Mingw target library.
5462 Test the existence of winsup/cygwin for building a Cygwin newlib,
5463 rather than just winsup.
5464 Add winsup/mingw and winsup/w32api paths to FLAGS_FOR_TARGET if
5465 building a Mingw target.
5466 * configure: Regenerate.
5467
5468 2006-08-15 Thiemo Seufer <ths@mips.com>
5469 Nigel Stephens <nigel@mips.com>
5470 David Ung <davidu@mips.com>
5471
5472 * config.sub: Add support for sde as alias of mipsisa32-sde-elf.
5473
5474 2006-07-25 Paolo Bonzini <bonzini@gnu.org>
5475
5476 Sync from GCC:
5477 2006-07-04 Eric Botcazou <ebotcazou@libertysurf.fr>
5478
5479 PR bootstrap/18058
5480 * configure.in: Add -fkeep-inline-functions to CFLAGS for stage 1
5481 if the bootstrap compiler is a GCC version that supports it.
5482 * configure: Regenerate.
5483
5484 2006-07-22 Daniel Jacobowitz <dan@codesourcery.com>
5485
5486 * configure.in: Allow mingw32 and cygwin targets to build cross-gdb.
5487 * configure: Regenerated.
5488
5489 2006-07-18 Paolo Bonzini <bonzini@gnu.org>
5490
5491 * Makefile.tpl (configure-stageN-MODULE): Pass --with-build-libsubdir
5492 for stages after the first.
5493
5494 2006-07-17 Jakub Jelinek <jakub@redhat.com>
5495
5496 * Makefile.def: Add dependencies for configure-opcodes
5497 on configure-intl and all-opcodes on all-intl.
5498 * Makefile.in: Regenerated.
5499
5500 2006-07-04 Peter O'Gorman <peter@pogma.com>
5501
5502 * ltconfig: chmod 644 before ranlib during install.
5503
5504 2006-07-03 Paolo Bonzini <bonzini@gnu.org>
5505
5506 * configure.in: Fix thinkos in previous check-in.
5507 * configure: Regenerate.
5508
5509 2006-07-03 Paolo Bonzini <bonzini@gnu.org>
5510
5511 Sync from gcc:
5512
5513 2007-07-03 Paolo Bonzini <bonzini@gnu.org>
5514
5515 PR other/27063
5516 * configure.in: Test subdir_requires and give an appropriate
5517 error message.
5518 * configure: Regenerate.
5519
5520 2006-06-16 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
5521
5522 PR target/27540
5523 * configure.in: Only enable libgomp on IRIX 6.
5524 * configure: Regenerate.
5525
5526 2006-06-20 David Ayers <d.ayers@inode.at>
5527
5528 PR bootstrap/28072
5529 * configure.in: Add target-boehm-gc to noconfigdirs depending on
5530 whether target-libjava is being configured instead of whether the
5531 java front end is enabled.
5532 * configure: Regenerate.
5533
5534 2006-06-15 Mark Shinwell <shinwell@codesourcery.com>
5535
5536 * include/elf/arm.h: Correct names of R_ARM_LDC_G{0,1,2}
5537 to R_ARM_LDC_SB_G{0,1,2} respectively.
5538
5539 2006-06-15 Paolo Bonzini <bonzini@gnu.org>
5540
5541 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Export CFLAGS and LDFLAGS
5542 too.
5543 * Makefile.in: Regenerate.
5544
5545 2006-06-13 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
5546
5547 Sync from gcc:
5548
5549 2006-06-12 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
5550 * configure.in: Don't enable libgomp on hpux10.
5551 * configure: Rebuilt.
5552
5553 2006-06-13 David Ayers <d.ayers@inode.at>
5554
5555 Sync from gcc:
5556
5557 2006-06-12 David Ayers <d.ayers@inode.at>
5558
5559 PR bootstrap/27963
5560 PR target/19970
5561 * configure.in: Remove target-boehm-gc from noconfigdirs where
5562 ${libgcj} is specified.
5563 * configure: Regenerate.
5564
5565 2006-06-08 Jeff Johnston <jjohnstn@redhat.com>
5566
5567 Sync from gcc:
5568
5569 2005-01-12 David Edelsohn <edelsohn@gnu.org>
5570 Andreas Schwab <schwab@suse.de>
5571
5572 PR bootstrap/18033
5573 * config-ml.in: Eval option if surrounded by single quotes.
5574
5575 2006-06-07 Carlos O'Donell <carlos@codesourcery.com>
5576
5577 Sync from gcc:
5578
5579 2006-06-06 David Ayers <d.ayers@inode.at>
5580
5581 PR libobjc/13946
5582 * Makefile.def: Add dependencies for libobjc which boehm-gc.
5583 * Makefile.in: Regenerate.
5584 * configure.in: Add --enable-objc-gc at toplevel and have it
5585 enable boehm-gc for Objective-C.
5586 Remove target-boehm-gc from libgcj.
5587 Add target-boehm-gc to target_libraries.
5588 Add target-boehm-gc to noconfigdirs where ${libgcj}
5589 is specified.
5590 Assert that boehm-gc is supported when requested for Objective-C.
5591 Only build boehm-gc if needed either for Java or Objective-C.
5592 * configure: Regenerate.
5593
5594 2006-06-05 Paolo Bonzini <bonzini@gnu.org>
5595
5596 PR 27674
5597 * Makefile.tpl (configure-[+prefix+][+module+],
5598 all-[+prefix+][+module+]): Depend on stage_current if bootstrapping.
5599 Remove rule to unstage bootstrapped modules.
5600 (stage_current): New.
5601 * Makefile.in: Regenerate.
5602
5603 2006-05-20 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
5604 Andreas Tobler <a.tobler@schweiz.ch>
5605
5606 * configure.in: Enable libgcj for hppa*-hp-hpux11*.
5607 * configure: Rebuilt.
5608
5609 Revert
5610 2006-01-31 Richard Guenther <rguenther@suse.de>
5611 Paolo Bonzini <bonzini@gnu.org>
5612
5613 * Makefile.def (target_modules): Add libgcc-math target module.
5614 * configure.in (target_libraries): Add libgcc-math target library.
5615 (--enable-libgcc-math): New configure switch.
5616 * Makefile.in: Re-generate.
5617 * configure: Re-generate.
5618
5619 2006-06-05 Jeff Johnston <jjohnstn@redhat.com>
5620
5621 * config-ml.in: Alter CCASFLAGS to include special
5622 multilib options the same as is done for CFLAGS.
5623
5624 2006-05-31 Daniel Jacobowitz <dan@codesourcery.com>
5625
5626 * Makefile.def: Added dependencies from sim and gdb on intl, and
5627 added configure dependencies to everything with an all dependency
5628 on intl.
5629 * gettext.m4: Removed.
5630 * src-release (DEVO_SUPPORT): Don't mention gettext.m4.
5631 (GDB_SUPPORT_DIRS): Add intl.
5632 * Makefile.in: Regenerated.
5633
5634 2006-05-25 Daniel Jacobowitz <dan@codesourcery.com>
5635
5636 * src-release (DEVO_SUPPORT): Add config.rpath.
5637
5638 2006-05-25 Paolo Bonzini <bonzini@gnu.org>
5639
5640 * Makefile.def (bfd, opcodes): Fix lib_path.
5641 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Replace ADAC with ADAFLAGS.
5642 (restrap): Move under "@if gcc-bootstrap". Fix typo.
5643 * Makefile.in: Regenerate.
5644
5645 2006-05-24 Mark Shinwell <shinwell@codesourcery.com>
5646
5647 * configure.in: Enable gprof for cross builds.
5648 * configure: Regenerate.
5649
5650 2006-05-17 Daniel Jacobowitz <dan@codesourcery.com>
5651
5652 * src-release (MAKEINFOFLAGS): Define.
5653 (do-proto-toplev): Pass MAKEINFOFLAGS to submakes.
5654
5655 2006-05-14 Ben Elliston <bje@au.ibm.com>
5656
5657 * config.sub, config.guess: Update from upstream sources.
5658
5659 2006-05-12 Ben Elliston <bje@au.ibm.com>
5660
5661 * config.sub, config.guess: Update from upstream sources.
5662
5663 2006-05-04 Steve Ellcey <sje@cup.hp.com>
5664
5665 * blt, iwidgets, mmalloc: Remove directories.
5666
5667 2006-05-01 DJ Delorie <dj@redhat.com>
5668
5669 * configure.in: Restore CFLAGS if GMP isn't present.
5670 * configure: Regenerate.
5671
5672 2006-04-18 DJ Delorie <dj@redhat.com>
5673
5674 * configure.in (m32c): Build libstdc++-v3. Pass flags to
5675 reference libgloss so that libssp can be built in a combined
5676 tree.
5677 * configure: Regenerate.
5678
5679 2006-04-10 Ben Elliston <bje@au.ibm.com>
5680
5681 * contrib: Remove directory.
5682
5683 2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
5684
5685 * Makefile.tpl: Add install-html target.
5686 * Makefile.def: Add install-html target.
5687 * Makefile.in: Regenerate.
5688 * configure.in: Add --with-datarootdir, --with-docdir,
5689 and --with-htmldir options.
5690 * configure: Regenerate.
5691
5692 2006-03-31 Ben Elliston <bje@au.ibm.com>
5693
5694 PR binutils/1860
5695 * configure.in: Require makeinfo 4.4 or higher.
5696 * configure: Regenerate.
5697
5698 2006-03-14 Paolo Bonzini <bonzini@gnu.org>
5699
5700 * Makefile.in: Regenerate.
5701
5702 2006-03-14 Paolo Bonzini <bonzini@gnu.org>
5703
5704 Sync with gcc:
5705 2006-03-10 Aldy Hernandez <aldyh@redhat.com>
5706
5707 * configure.in: Handle --disable-<component> generically.
5708 * configure: Regenerate.
5709
5710 2006-02-21 Rafael Avila de Espindola <rafael.espindola@gmail.com>
5711
5712 * Makefile.tpl (BUILD_CONFIGDIRS): Remove.
5713 (TARGET_CONFIGDIRS): Remove.
5714 * configure.in: Remove AC_SUBST(target_configdirs).
5715 * Makefile.in, configure: Regenerated.
5716
5717
5718 2006-03-01 H.J. Lu <hongjiu.lu@intel.com>
5719
5720 PR libgcj/17311
5721 * ltmain.sh: Don't use "$finalize_rpath" for compile.
5722
5723 2006-02-20 Paolo Bonzini <bonzini@gnu.org>
5724
5725 PR bootstrap/25670
5726
5727 * Makefile.tpl ([+compare-target+]): Print explanation messages.
5728
5729 * Makefile.def (ADAFLAGS, BOOT_ADAFLAGS, LANGUAGES): New flags_to_pass.
5730 * Makefile.tpl (BASE_FLAGS_TO_PASS): Support optional flags_to_pass.
5731 (EXTRA_GCC_FLAGS): Remove ADAFLAGS, BOOT_ADAFLAGS, LANGUAGES,
5732 BUILD_PREFIX, BUILD_PREFIX_1.
5733 * configure.in: (BUILD_PREFIX, BUILD_PREFIX_1): Don't substitute.
5734
5735 * Makefile.def (bootstrap stage 1): Pass LIBCFLAGS too.
5736 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Override LIBCFLAGS too.
5737
5738 * Makefile.tpl (configure-stage[+id+]-[+prefix+][+module+],
5739 all-stage[+id+]-[+prefix+][+module+], : Use $(current_stage) instead
5740 of `cat stage_current`. Always provide the `r' and `s' variables.
5741 (clean-stage[+id+]-[+prefix+][+module+]): Likewise, and make it into
5742 a single shell execution.
5743 (configure-[+prefix+][+module+], all-[+prefix+][+module+]): For
5744 bootstrapped modules, make the stage1 module if the build was not
5745 started yet, else build the current stage.
5746 (all-host, all-target): Omit bootstrapped modules (if bootstrapping).
5747 (all-build, all-host, all-target, [+make_target+]-host,
5748 [+make_target+]-target): Do not use \-continued lines.
5749 (target modules): Depend on stage_last, not all-gcc, if bootstrapping.
5750 (current_stage, restrap, stage_last): New.
5751
5752 * Makefile.in: Regenerate.
5753 * configure: Regenerate.
5754
5755 2006-02-14 Paolo Bonzini <bonzini@gnu.org>
5756
5757 Sync from gcc:
5758
5759 2006-01-31 Richard Guenther <rguenther@suse.de>
5760 Paolo Bonzini <bonzini@gnu.org>
5761
5762 * Makefile.def (target_modules): Add libgcc-math target module.
5763 * configure.in (target_libraries): Add libgcc-math target library.
5764 (--enable-libgcc-math): New configure switch.
5765 * Makefile.in: Re-generate.
5766 * configure: Re-generate.
5767 * libgcc-math: New toplevel directory.
5768
5769 2006-01-18 Richard Henderson <rth@redhat.com>
5770 Jakub Jelinek <jakub@redhat.com>
5771 Diego Novillo <dnovillo@redhat.com>
5772
5773 * libgomp: New directory.
5774 * Makefile.def: Add target_module libgomp.
5775 * Makefile.in: Regenerate.
5776 * configure.in (target_libraries): Add target-libgomp.
5777 * configure: Regenerate.
5778
5779 2006-02-14 Paolo Bonzini <bonzini@gnu.org>
5780 Andreas Schwab <schwab@suse.de>
5781
5782 * configure: Regenerate.
5783
5784 2006-01-16 Paolo Bonzini <bonzini@gnu.org>
5785
5786 * configure.in: Set with_gnu_as, with_gnu_ld, with_newlib earlier.
5787 Set md_exec_prefix. Use ACX_CHECK_INSTALLED_TARGET_TOOL to find
5788 the assembler, linker and binutils.
5789 * configure: Regenerate.
5790
5791 2006-01-16 Nick Clifton <nickc@redhat.com>
5792
5793 * config.sub, config.guess: Sync from config repository.
5794
5795 2006-01-05 Alexandre Oliva <aoliva@redhat.com>
5796
5797 * Makefile.tpl (clean-stage[+id+]-[+prefix+][+module+]): Remove
5798 @ from continuation.
5799 * Makefile.in: Rebuilt.
5800
5801 2006-01-04 Paolo Bonzini <bonzini@gnu.org>
5802
5803 Sync from gcc:
5804
5805 2006-01-04 Paolo Bonzini <bonzini@gnu.org>
5806
5807 PR bootstrap/24252
5808
5809 * Makefile.def (flags_to_pass): Add STAGE1_CFLAGS and STAGE1_LANGUAGES.
5810 * Makefile.tpl (OBJDUMP): New.
5811 (EXTRA_HOST_FLAGS): Add it.
5812 (EXTRA_GCC_FLAGS): Remove flags already specified in flags_to_pass.
5813
5814 * Makefile.tpl (stage[+id+]-start, stage[+id+]-end): Do not try
5815 to use symbolic links between directories. Avoid race conditions
5816 or make them harmless.
5817 * configure.in: Do not try to use symbolic links between directories.
5818
5819 * Makefile.def (LEAN): Pass.
5820 * Makefile.tpl (LEAN): Define.
5821 (stage[+id+]-start): Accept that the previous directory does not
5822 exist, if the bootstrap is lean.
5823 (stage[+id+]-bubble): Invoke lean bootstrap commands after
5824 stage[+id+]-start. Use a makefile variable and an `if' instead of a
5825 configure substitution.
5826 ([+compare-target+]): Likewise.
5827 ([+bootstrap-target+]-lean): New.
5828 * configure.in: Remove lean bootstrap support from here.
5829
5830 * Makefile.in: Regenerate.
5831 * configure: Regenerate.
5832
5833 2006-01-02 Andreas Schwab <schwab@suse.de>
5834
5835 * configure.in: When reconfiguring remove Makefile in
5836 all stage directories.
5837 * configure: Regenerate.
5838
5839 2005-12-27 Leif Ekblad <leif@rdos.net>
5840
5841 * configure.in: Add support for RDOS target.
5842 * configure: Regenerate.
5843
5844 2005-12-27 Nick Clifton <nickc@redhat.com>
5845
5846 PR binutils/1990
5847 * libtool.m4: Synchronize with version in GCC sources.
5848
5849 2005-12-20 Paolo Bonzini <bonzini@gnu.org>
5850
5851 Revert Ada-related part of the previous change.
5852
5853 * Makefile.def (ADAFLAGS, BOOT_ADAFLAGS, ADAFLAGS_FOR_TARGET):
5854 Do not pass.
5855 * Makefile.tpl (BOOT_ADAFLAGS): Do not define.
5856 * Makefile.in: Regenerate.
5857 * configure.in: Do not include mt-ppc-aix target fragment.
5858 * configure: Regenerate.
5859
5860 2005-12-19 Paolo Bonzini <bonzini@gnu.org>
5861
5862 * configure.in: Select appropriate fragments for PowerPC/AIX.
5863 * configure: Regenerate.
5864
5865 * Makefile.def (flags_to_pass): Add ADAFLAGS, BOOT_ADAFLAGS,
5866 BOOT_CFLAGS, BOOT_LDFLAGS.
5867 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Handle BOOT_ADAFLAGS,
5868 BOOT_CFLAGS, BOOT_LDFLAGS.
5869 (TARGET_FLAGS_TO_PASS): Handle ADAFLAGS_FOR_TARGET.
5870 (stage[+id+]-bubble): Pass flags recursively to the comparison target.
5871 (stage): Fail if we cannot complete the work.
5872 * Makefile.in: Regenerate.
5873
5874 2005-12-16 Jeff Johnston <jjohnstn@redhat.com>
5875
5876 * COPYING.NEWLIB: Update copyright year for default
5877 copyright.
5878
5879 2005-12-15 Paolo Bonzini <bonzini@gnu.org>
5880
5881 * Makefile.tpl (all, do-[+make_target+], do-check, install,
5882 install-host-nogcc): Don't invoke $(stage) at the end.
5883 * Makefile.in: Regenerate.
5884
5885 2005-12-14 Paolo Bonzini <bonzini@gnu.org>
5886
5887 * configure.in: Flip the top-level bootstrap switch.
5888 * configure: Regenerate.
5889
5890 Merge from gcc:
5891
5892 2005-12-14 Daniel Jacobowitz <dan@codesourcery.com>
5893
5894 * Makefile.tpl: Throughout the file, use : $(MAKE) along with
5895 $(stage) and $(unstage).
5896 (EXTRA_TARGET_FLAGS): Correct double-quoting.
5897 (all): Remove stray semicolon.
5898 (local-distclean): Don't handle multilib.tmp and multilib.out.
5899 (install.all): Set $s for consistency.
5900 (configure-[+prefix+][+module+]): Instead of [+deps+], handle
5901 check_multilibs setting. Always make the install directory.
5902 (configure-stage[+id+]-[+prefix+][+module+]): Likewise.
5903 Correct @if/@endif.
5904 (all-stage[+id+]-[+prefix+][+module+]): Correct @if/@endif.
5905 ($(TARGET_SUBDIR)/[+module+]/multilib.out): Remove.
5906 (stage[+id+]-start, stage[+id+]-end): Stage $(TARGET_SUBDIR).
5907 (multilib.out): Remove.
5908 * Makefile.in: Regenerated.
5909
5910 2005-12-12 Nathan Sidwell <nathan@codesourcery.com>
5911
5912 * config.sub: Replace ms1 arch with mt. Allow ms1 as alias.
5913 * configure.in: Replace ms1 arch with mt.
5914 * configure: Rebuilt.
5915
5916 2005-12-05 Paolo Bonzini <bonzini@gnu.org>
5917
5918 Sync with gcc:
5919
5920 2005-12-12 Nathan Sidwell <nathan@codesourcery.com>
5921
5922 * config.sub: Replace ms1 arch with mt. Allow ms1 as alias.
5923 * configure.in: Replace ms1 arch with mt.
5924 * configure: Rebuilt.
5925
5926 2005-12-05 Paolo Bonzini <bonzini@gnu.org>
5927
5928 Sync with gcc:
5929
5930 2005-12-05 Paolo Bonzini <bonzini@gnu.org>
5931
5932 * configure.in (CONFIGURED_BISON, CONFIGURED_YACC, CONFIGURED_M4,
5933 CONFIGURED_FLEX, CONFIGURED_LEX, CONFIGURED_MAKEINFO): Remove
5934 "CONFIGURED_" from the AC_CHECK_PROGS invocation. Move below.
5935 Find in-tree tools if available.
5936 (EXPECT, RUNTEST, LIPO, STRIP): Find them and substitute them.
5937 (CONFIGURED_*_FOR_TARGET): Don't set nor substitute.
5938 (*_FOR_TARGET): Set them with GCC_TARGET_TOOL.
5939 (COMPILER_*_FOR_TARGET): New.
5940 * Makefile.tpl (HOST_EXPORTS): Add *_FOR_TARGET symbols that gcc needs.
5941 (BASE_TARGET_EXPORTS): Use COMPILER_*_FOR_TARGET symbols.
5942 (CONFIGURED_*, USUAL_*): Remove.
5943 (BISON, YACC, FLEX, LEX, M4, MAKEINFO, EXPECT, RUNTEST, LIPO,
5944 STRIP): Use autoconf substitutions.
5945 (COMPILER_AS_FOR_TARGET, COMPILER_LD_FOR_TARGET,
5946 COMPILER_NM_FOR_TARGET): New.
5947 (EXTRA_HOST_FLAGS): Pass LIPO and STRIP.
5948
5949 (all): Make all-host and all-target in parallel.
5950 (do-[+make_target+], do-check, install, [+compare-target+]): Ensure
5951 that $$r and $$s are set before invoking a recursive make.
5952 (stage[+id+]-bubble): Likewise, and invoke the comparison at the end.
5953 ([+bootstrap-target+]): Inline most of the `all' target.
5954
5955 2005-11-29 Ben Elliston <bje@au.ibm.com>
5956
5957 * Makefile.tpl (clean-target-libgcc): Invoke clean-target-libgcc
5958 from the gcc build directory.
5959 * Makefile.in: Regenerate.
5960
5961 2005-11-29 Ben Elliston <bje@au.ibm.com>
5962
5963 * Makefile.def: Add new libdecnumber host_module. Make all-gcc
5964 depend on all-libdecnumber.
5965 * configure.in (host_libs): Include libdecnumber.
5966 * Makefile.in: Regenerate.
5967 * configure: Likewise.
5968
5969 2005-11-21 Kean Johnston <jkj@sco.com>
5970
5971 * config.sub, config.guess: Sync from upstream sources.
5972
5973 2005-11-11 Daniel Jacobowitz <dan@codesourcery.com>
5974
5975 * Makefile.def: Remove gdb dependencies for gdbtk.
5976 * Makefile.tpl (CONFIGURE_GDB_TK, INSTALL_GDB_TK): New variables.
5977 (configure-gdb, install-gdb): New rules.
5978 * configure.in: Set CONFIGURE_GDB_TK and INSTALL_GDB_TK.
5979 * Makefile.in, configure: Regenerated.
5980
5981 2005-10-22 Paolo Bonzini <bonzini@gnu.org>
5982
5983 PR bootstrap/24297
5984 * Makefile.tpl (do-[+make-target+], do-check, install,
5985 stage[+id+]-bubble, [+compare-target+]): Ensure $$r and $$s
5986 are set before recursing.
5987 * Makefile.in: Regenerate.
5988
5989 2005-10-20 Eric Botcazou <ebotcazou@adacore.com>
5990
5991 PR bootstrap/18939
5992 * Makefile.def (gcc) <target>: Fix thinko.
5993 * Makefile.in: Regenerate.
5994
5995 2005-10-17 Bernd Schmidt <bernd.schmidt@analog.com>
5996
5997 * configure.in (bfin-*-*): Use test, not brackets, in if statement.
5998 * configure: Regenerate.
5999
6000 2005-10-09 Kazu Hirata <kazu@codesourcery.com>
6001
6002 * configure.in (arm-*-linux-gnueabi): Add to noconfigdirs
6003 target-libffi, target-qthreads, target-libjava, and
6004 targetlibobjc.
6005 * configure: Regenerate.
6006
6007 2005-10-06 Daniel Jacobowitz <dan@codesourcery.com>
6008
6009 * Makefile.def (flags_to_pass): Add OBJDUMP_FOR_TARGET.
6010 * Makefile.tpl (BASE_TARGET_EXPORTS): Add OBJDUMP.
6011 (OBJDUMP_FOR_TARGET, CONFIGURED_OBJDUMP_FOR_TARGET)
6012 (USUAL_OBJDUMP_FOR_TARGET): New.
6013 (EXTRA_TARGET_FLAGS): Add OBJDUMP.
6014 * configure.in: Check for $OBJDUMP_FOR_TARGET.
6015 * configure, Makefile.in: Regenerated.
6016
6017 2005-10-05 Paolo Bonzini <bonzini@gnu.org>
6018
6019 * Makefile.tpl (all) [gcc-no-bootstrap]: Make prebootstrap packages
6020 before other host packages.
6021
6022 2005-10-05 Paolo Bonzini <bonzini@gnu.org>
6023
6024 PR bootstrap/22340
6025
6026 * configure.in (default_target): Remove.
6027 * Makefile.tpl (all): Do not use prerequisites as subroutines
6028 (all) [gcc-bootstrap]: Bootstrap gcc first if it was not done yet.
6029 (do-[+make_target+], check, install, [+bootstrap_target+]): Do not
6030 use prerequisites as subroutines.
6031 (check-host, check-target): New.
6032 (bootstrap configure & all targets): Do not use stage*-start
6033 if the directory layout is already ok.
6034 (non-bootstrap configure & all targets): Prepend a $(unstage).
6035 (stage[+id+]-bubble): Do that here. Do not use NOTPARALLEL.
6036 (NOTPARALLEL): Remove.
6037 (unstage, stage variables): New variables.
6038 (unstage, stage targets): Simply expand to those variables.
6039
6040 * configure: Regenerate.
6041 * Makefile.in: Regenerate.
6042
6043 2005-10-04 James E Wilson <wilson@specifix.com>
6044
6045 * Makefile.def (lang_env_dependencies): Add libmudflap.
6046 * Makefile.in: Regenerate.
6047
6048 2005-10-03 Catherine Moore <clm@cm00re.com>
6049
6050 * configure.in (bfin-*-*): Support bfin.
6051 * configure: Regenerated.
6052
6053 2005-09-30 H.J. Lu <hongjiu.lu@intel.com>
6054
6055 * configure.in (*-*-darwin*): Build bfd, binutils and opcodes.
6056 * configure: Regenerated.
6057
6058 2005-09-28 Geoffrey Keating <geoffk@apple.com>
6059
6060 * Makefile.tpl (BASE_TARGET_EXPORTS): Add LIPO, STRIP.
6061 (LIPO_FOR_TARGET): New.
6062 (CONFIGURED_LIPO_FOR_TARGET): New.
6063 (USUAL_LIPO_FOR_TARGET): New.
6064 (STRIP_FOR_TARGET): New.
6065 (CONFIGURED_STRIP_FOR_TARGET): New.
6066 (USUAL_STRIP_FOR_TARGET): New.
6067 * Makefile.def (flags_to_pass): Add LIPO_FOR_TARGET and
6068 STRIP_FOR_TARGET.
6069 * configure.in: Set LIPO_FOR_TARGET, STRIP_FOR_TARGET,
6070 CONFIGURED_LIPO_FOR_TARGET, CONFIGURED_STRIP_FOR_TARGET.
6071 * Makefile.in: Regenerate.
6072 * configure: Regenerate.
6073
6074 2005-09-19 David Edelsohn <edelsohn@gnu.org>
6075
6076 * configure.in (powerpc-*-aix*): Add target-libssp to noconfigdirs.
6077 (rs6000-*-aix*): Same.
6078 * configure: Regenerate.
6079
6080 2005-09-14 Francois-Xavier Coudert <coudert@clipper.ens.fr>
6081
6082 * configure.in: Recognize f95 in the --enable-languages option,
6083 and substitute it for fortran, issuing a warning.
6084 * configure: Regenerate.
6085
6086 2005-09-07 Ben Elliston <bje@au.ibm.com>
6087
6088 Import from Autoconf sources:
6089
6090 2005-09-06 Paul Eggert <eggert@cs.ucla.edu>
6091 * move-if-change: Don't output "$2 is unchanged"; suggested by Ben
6092 Elliston. Handle weird characters correctly.
6093
6094 2005-08-30 Phil Edwards <phil@codesourcery.com>
6095
6096 * configure.in (*-*-vxworks*): Add target-libstdc++-v3 to noconfigdirs.
6097 * configure: Regenerated.
6098
6099 2005-08-20 Richard Earnshaw <richard.earnshaw@arm.com>
6100
6101 * Makefile.def (libssp): Add to lang_env_dependencies.
6102 * Makefile.in: Regenerate.
6103
6104 2005-08-17 Christian Groessler <chris@groessler.org>
6105
6106 * Makefile.tpl: (USUAL_CC_FOR_TARGET): Add missing trailing slash.
6107 * Makefile.in: Regenerate.
6108
6109 2005-08-12 Paolo Bonzini <bonzini@gnu.org>
6110
6111 * configure.in: Replace NCN_STRICT_CHECK_TOOL with
6112 NCN_STRICT_CHECK_TOOLS, and likewise for NCN_STRICT_CHECK_TARGET_TOOLS.
6113 Look for alternate names of the target cc and c++
6114 * configure: Regenerate.
6115
6116 2005-08-08 Paolo Bonzini <bonzini@gnu.org>
6117
6118 * configure.in (CC_FOR_TARGET, CXX_FOR_TARGET, GCJ_FOR_TARGET,
6119 GCC_FOR_TARGET, RAW_CXX_FOR_TARGET, GFORTRAN_FOR_TARGET): Find
6120 them with NCN_STRICT_CHECK_TARGET_TOOL, like the other target
6121 tools; remove code to manually set them.
6122 (Target tools): Look in the environment for them.
6123 * Makefile.tpl (CC_FOR_TARGET, CXX_FOR_TARGET, GCJ_FOR_TARGET,
6124 GCC_FOR_TARGET, RAW_CXX_FOR_TARGET, GFORTRAN_FOR_TARGET): Redefine.
6125 (AS_FOR_TARGET, LD_FOR_TARGET, NM_FOR_TARGET): Look into gcc
6126 build directory.
6127 (CONFIGURED_CC_FOR_TARGET, CONFIGURED_CXX_FOR_TARGET,
6128 CONFIGURED_GCJ_FOR_TARGET, CONFIGURED_GCC_FOR_TARGET,
6129 CONFIGURED_GFORTRAN_FOR_TARGET, USUAL_CC_FOR_TARGET,
6130 USUAL_CXX_FOR_TARGET, USUAL_GCJ_FOR_TARGET, USUAL_GCC_FOR_TARGET,
6131 USUAL_RAW_CXX_FOR_TARGET, USUAL_GFORTRAN_FOR_TARGET): New.
6132 (CXX_FOR_TARGET_FOR_RECURSIVE_MAKE,
6133 RAW_CXX_FOR_TARGET_FOR_RECURSIVE_MAKE, RECURSE_FLAGS): Delete.
6134 * configure: Regenerate.
6135 * Makefile.in: Regenerate.
6136
6137 2005-07-27 Mark Mitchell <mark@codesourcery.com>
6138
6139 * Makefile.tpl (EXTRA_TARGET_FLAGS): Set LDFLAGS=LDFLAGS_FOR_TARGET.
6140 * Makefile.def (flags_to_pass): Add LDFLAGS_FOR_TARGET.
6141 * Makefile.in: Regenerated.
6142
6143 2005-07-26 Mark Mitchell <mark@codesourcery.com>
6144
6145 * Makefile.tpl (SYSROOT_CFLAGS_FOR_TARGET): New variable.
6146 (CFLAGS_FOR_TARGET): Use it.
6147 (CXXFLAGS_FOR_TARGET): Likewise.
6148 * Makefile.in: Regenerated.
6149 * configure.in (--with-build-sysroot): New option.
6150 * configure: Regenerated.
6151
6152 2005-07-24 Paolo Bonzini <bonzini@gnu.org>
6153
6154 * Makefile.tpl: Wrap install between unstage and stage
6155 * Makefile.in: Regenerate.
6156
6157 2005-07-16 Kelley Cook <kcook@gcc.gnu.org>
6158
6159 * all files: Update FSF address.
6160
6161 2005-07-14 Jim Blandy <jimb@redhat.com>
6162
6163 * configure.in: Add cases for Renesas m32c.
6164 * configure: Regenerated.
6165
6166 2005-07-14 Kelley Cook <kcook@gcc.gnu.org>
6167
6168 * COPYING, compile, config-ml.in, config.guess,
6169 config.sub, install-sh, missing, mkinstalldirs,
6170 symlink-tree, ylwrap: Sync from upstream sources.
6171
6172 2005-07-13 Eric Christopher <echristo@redhat.com>
6173
6174 * configure.in: Add toplevel noconfigdir support for tpf.
6175 * configure: Regenerate.
6176
6177 2005-07-11 Jakub Jelinek <jakub@redhat.com>
6178
6179 * Makefile.def (target_modules): Add libssp.
6180 * configure.in (target_libraries): Add target-libssp.
6181 * configure: Rebuilt.
6182 * Makefile.in: Rebuilt.
6183
6184 2005-07-11 Paolo Bonzini <bonzini@gnu.org>
6185
6186 PR ada/22340
6187
6188 * Makefile.def: Sync with gcc.
6189 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Fix pasto.
6190 * Makefile.in: Regenerate.
6191
6192 2005-07-07 Andreas Schwab <schwab@suse.de>
6193
6194 * Makefile.def (flags_to_pass): Add CFLAGS_FOR_BUILD.
6195 * Makefile.tpl (EXTRA_GCC_FLAGS): Don't pass CFLAGS_FOR_BUILD here.
6196 * Makefile.in: Regenerated.
6197
6198 2005-07-07 Kazu Hirata <kazu@codesourcery.com>
6199
6200 * configure.in: Add --enable-libssp and --disable-libssp.
6201 * configure: Regenerate with autoconf-2.13.
6202
6203 2005-07-06 Geoffrey Keating <geoffk@apple.com>
6204
6205 * configure.in: Don't build sim or rda when targetting darwin.
6206 * configure: Regenerate.
6207
6208 2005-07-04 Ben Elliston <bje@gnu.org>
6209
6210 * src-release (do-proto-toplev): Remove dejagnu bits.
6211 (DEJAGNU_SUPPORT_DIRS): Remove.
6212 (dejagnu.tar.bz2, dejagnu.tar): Likewise.
6213 (GDBD_SUPPORT_DIRS): Likewise.
6214 (gdb+dejagnu.tar.bz2, gdb+dejagnu.tar): Likewise.
6215 (INSIGHTD_SUPPORT_DIRS): Likewise.
6216 (insight+dejagnu.tar.bz2, insight+dejagnu.tar): Likewise.
6217
6218 2005-06-30 Ben Elliston <bje@gnu.org>
6219
6220 * setup.com (mpw): Remove unused directive.
6221
6222 2005-06-22 Paolo Bonzini <bonzini@gnu.org>
6223
6224 * Makefile.def (stagefeedback): Come after profile.
6225 Define profiledbootstrap target.
6226 * Makefile.tpl (profiledbootstrap): Remove.
6227 (stageprofile-end): Zap stagefeedback.
6228 (stagefeedback-start): Copy all .gcda files, not only GCC's.
6229 * Makefile.in: Regenerate.
6230
6231 2005-06-13 Zack Weinberg <zack@codesourcery.com>
6232
6233 * depcomp: Update from automake CVS. Add 'ia64hp' stanza.
6234 In 'cpp' stanza, support '#line' as well as '# '.
6235
6236 2005-06-07 Hans-Peter Nilsson <hp@axis.com>
6237
6238 * configure.in (unsupported_languages): New macro.
6239 <mmix-knuth-mmixware>: Set unsupported_languages. Name explicit
6240 non-ported target libraries in noconfigdirs.
6241 <cris-*, crisv32-*> Ditto, except for non-aout, non-elf,
6242 non-linux-gnu. Remove libgcj_ex_libffi.
6243 <lang_frag loop>: Set add_this_lang=no if the language is in
6244 unsupported_languages.
6245 * configure: Regenerate.
6246
6247 2005-06-04 Tobias Schl"uter <tobias.schlueter@physik.uni-muenchen.de>
6248
6249 * configure.in: Fix typo in handling of --with-mpfr-dir.
6250 * configure: Regenerate.
6251
6252 2005-06-02 Jim Blandy <jimb@redhat.com>
6253
6254 * config.sub: Add cases for the Renesas m32c. (This patch has been
6255 accepted into the master sources.)
6256
6257 2005-06-02 Aldy Hernandez <aldyh@redhat.com>
6258 Michael Snyder <msnyder@redhat.com>
6259 Stan Cox <scox@redhat.com>
6260
6261 * configure.in: Set noconfigdirs for ms1.
6262
6263 * configure: Regenerate.
6264
6265 2005-05-25 Paolo Bonzini <bonzini@gnu.org>
6266
6267 * Makefile.tpl (stage[+id+]-start): Iterate over target module as well.
6268 (Dependencies): Consider target modules for bootstrap dependencies.
6269 Make target bootstrap modules depend on each stage's gcc.
6270 * Makefile.in: Regenerate.
6271
6272 2005-05-20 Paolo Bonzini <bonzini@gnu.org>
6273
6274 * Makefile.def (configure-gcc): Depend on binutils having been built.
6275 (all-gcc): No need to do it here.
6276 * Makefile.in: Regenerate.
6277
6278 2005-05-19 Paul Brook <paul@codesourcery.com>
6279
6280 * configure.in: Rewrite misleading error message when requested
6281 language cannot be built.
6282 * configure: Regenerate.
6283
6284 2005-05-15 Daniel Jacobowitz <dan@codesourcery.com>
6285
6286 * ylwrap: Import from Automake 1.9.5.
6287
6288 2005-05-04 Mike Stump <mrs@apple.com>
6289
6290 * configure.in: Always pass --target to target configures as
6291 otherwise rebuilds that do --recheck will fail.
6292 * configure: Rebuilt.
6293
6294 2005-05-04 Paolo Bonzini <bonzini@gnu.org>
6295
6296 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Rename from
6297 STAGE_HOST_EXPORTS.
6298 (configure, all): Add bootstrap support.
6299 (Host modules, target modules): Pass post-stage1 flags and exports.
6300 (Top-level bootstrap): Remove bootstrap rules, expanded elsewhere.
6301 * Makefile.in: Regenerate.
6302
6303 2005-04-29 Paolo Bonzini <bonzini@gnu.org>
6304
6305 Sync from gcc:
6306
6307 2005-04-22 Bernd Schmidt <bernd.schmidt@analog.com>
6308
6309 * config.sub: Update from master copy.
6310
6311 2005-04-19 Hans-Peter Nilsson <hp@axis.com>
6312
6313 * configure.in <crisv32-*-*, cris-*-*>: New local variable
6314 libgcj_ex_libffi. Have specific match for *-*-linux*. Separate
6315 matches for "*-*-aout" and "*-*-elf". Don't disable libffi for
6316 "*-*-elf" and "*-*-linux*".
6317 * configure: Regenerate.
6318
6319 2005-04-06 Paolo Bonzini <bonzini@gnu.org>
6320
6321 * Makefile.tpl (BUILD_CONFIGARGS): Include --with-build-subdir.
6322 (TARGET_CONFIGARGS): Include --with-target-subdir.
6323 (configure, all): New macros. Use them throughout.
6324
6325 2005-04-05 Paolo Bonzini <bonzini@gnu.org>
6326
6327 * Makefile.tpl: Sync with gcc.
6328 * Makefile.in: Regenerate.
6329
6330 2005-03-30 J"orn Rennecke <joern.rennecke@st.com>
6331
6332 * config/mh-mingw32: Delete.
6333 * configure.in: Don't use it.
6334 * configure: Regenerate.
6335
6336 2005-03-31 Paolo Bonzini <bonzini@gnu.org>
6337
6338 * Makefile.def (bfd, opcodes, libstdc++-v3, libmudflap): Set lib_path.
6339 * Makefile.tpl (SET_LIB_PATH, REALLY_SET_LIB_PATH): Remove.
6340 (HOST_EXPORTS, STAGE_HOST_EXPORTS, TARGET_EXPORTS): Set $(RPATH_ENVVAR).
6341 (HOST_LIB_PATH): Generate from Makefile.def.
6342 (TARGET_LIB_PATH): Likewise.
6343 (Old bootstrap targets): Include TARGET_LIB_PATH into RPATH_ENVVAR.
6344 * Makefile.in: Regenerate.
6345 * configure.in (set_lib_path, SET_LIB_PATH, SET_GCC_LIB_PATH): Remove.
6346 (RPATH_ENVVAR): Include Darwin case.
6347 * configure: Regenerate.
6348
6349 2005-03-25 Paolo Bonzini <bonzini@gnu.org>
6350
6351 * configure.in (RPATH_ENVVAR): Set to DYLD_LIBRARY_PATH on Darwin.
6352 * configure: Regenerate.
6353
6354 2005-03-21 Zack Weinberg <zack@codesourcery.com>
6355
6356 * Makefile.def: Remove libstdcxx_incdir, libsubdir, gxx_include_dir,
6357 gcc_version, and gcc_version_trigger from set of flags to pass.
6358 * Makefile.tpl: Remove definitions of above variables.
6359 (config.status): Remove dependency on $(gcc_version_trigger).
6360 * Makefile.in: Regenerate.
6361 * configure.in: Do not reference config/gcc-version.m4 nor
6362 config/gxx-include-dir.m4. Do not invoke TL_AC_GCC_VERSION nor
6363 TL_AC_GXX_INCLUDE_DIR. Do not set gcc_version_trigger.
6364 * configure: Regenerate.
6365
6366 2005-03-16 Manfred Hollstein <manfred.h@gmx.net>
6367 Andrew Pinski <pinskia@physics.uc.edu>
6368
6369 * Makefile.tpl (check-[+module+]): Fix shell statement inside if ... fi.
6370 * Makefile.in: Regenerate.
6371
6372 2005-03-01 Alexandre Oliva <aoliva@redhat.com>
6373
6374 PR libgcj/20160
6375 * ltmain.sh: Avoid creating archives with components that have
6376 duplicate basenames.
6377
6378 2005-02-28 Andrew Pinski <pinskia@physics.uc.edu>
6379
6380 PR bootstrap/20250
6381 * Makefile.tpl (HOST target installs): Fix copy and pasto, use install
6382 instead of check.
6383 * Makefile.in: Regenerate.
6384
6385 2005-02-28 Paolo Bonzini <bonzini@gnu.org>
6386
6387 Sync from gcc.
6388
6389 2005-02-28 Paolo Bonzini <bonzini@gnu.org>
6390
6391 PR bootstrap/17383
6392 * Makefile.def (target_modules): Remove "stage", now unnecessary.
6393 * Makefile.tpl (HOST_SUBDIR): New substitution.
6394 (STAGE_HOST_EXPORTS, EXPECT, HOST_LIB_PATH, USUAL_AR_FOR_TARGET,
6395 USUAL_AS_FOR_TARGET, USUAL_DLLTOOL_FOR_TARGET, USUAL_GCC_FOR_TARGET,
6396 USUAL_LD_FOR_TARGET, USUAL_NM_FOR_TARGET, USUAL_OBJDUMP_FOR_TARGET,
6397 USUAL_RANLIB_FOR_TARGET, USUAL_WINDRES_FOR_TARGET): Use it.
6398 (Host modules, Bootstrapped modules): Use it.
6399 (Build modules, Target modules): Do not create symlink trees,
6400 always configure out-of-srcdir.
6401 (distclean): Try removing $(host_subdir) with rm before using rm -rf.
6402 * configure.in (FLAGS_FOR_TARGET, CC_FOR_TARGET, GCJ_FOR_TARGET,
6403 GFORTRAN_FOR_TARGET, CXX_FOR_TARGET, RAW_CXX_FOR_TARGET): Use
6404 $(HOST_SUBDIR). Create a symlink for host_subdir.
6405
6406 * Makefile.in: Regenerate.
6407 * configure: Regenerate.
6408
6409 Merged from libada-gnattools-branch:
6410 2004-11-28 Nathanael Nerode <neroden@gcc.gnu.org>
6411
6412 * Makefile.def: Add gnattools as a module, depending on target-libada.
6413 * Makefile.in: Regenerate.
6414 * configure.in: Include gnattools in host_tools; disable it if ada
6415 is disabled.
6416 * configure: Regenerate.
6417
6418 2005-02-23 Nick Clifton <nickc@redhat.com>
6419
6420 * configure: Regenerate.
6421
6422 2005-02-22 Paul Schlie <schlie@comcast.net>
6423
6424 * configure.in: Allow darwin targeted ports to build tk, itcl and
6425 libgui.
6426
6427 2005-02-21 Eric Botcazou <ebotcazou@libertysurf.fr>
6428
6429 PR libgcj/10353
6430 * configure.in (noconfigdirs) <sparc-*-solaris2.[0-6]>: Add libgcj.
6431 * configure: Regenerate.
6432
6433 2005-02-08 Andrew Cagney <cagney@gnu.org>
6434
6435 * MAINTAINERS: Delete reference to dejagnu/ and mmalloc/ from the
6436 gdb/ section. Update GDB's URL.
6437
6438 2005-01-31 Andrew Cagney <cagney@gnu.org>
6439
6440 * gettext.m4: Only set ENABLE_NLS when gettext is present.
6441
6442 2005-01-29 Hans-Peter Nilsson <hp@axis.com>
6443
6444 * configure.in (noconfigdirs) <crisv32-*-*>: Match like cris-*-*.
6445 <crisv32-*-*, cris-*-*>: Only disable target-newlib and
6446 target-libgloss when not *-*-elf and *-*-aout.
6447 * configure: Regenerate.
6448
6449 2005-01-27 Andrew Cagney <cagney@gnu.org>
6450
6451 * gettext.m4: Don't use NONE as a default for CATOBJEXT.
6452
6453 2005-01-24 Andrew Cagney <cagney@gnu.org>
6454
6455 * gettext.m4: Only fall back to ../intl/ when it's present.
6456
6457 2005-01-17 Kelley Cook <kcook@gcc.gnu.org>
6458
6459 * install-sh, config.sub: Import from upstream.
6460
6461 2005-01-17 Kelley Cook <kcook@gcc.gnu.org>
6462
6463 PR bootstrap/18222
6464 * Makefile.def: Pass CPPFLAGS_FOR_TARGET.
6465 * Makefile.tpl: Define target CPPFLAGS on CPPFLAGS_FOR_TARGET.
6466 * Makefile.in: Regenerate.
6467
6468 2005-01-03 Paolo Bonzini <bonzini@gnu.org>
6469
6470 Revert 2004-12-28 Makefile changes, a better fix will be
6471 applied to mainline and src after GCC 4.0 branches.
6472
6473 2004-12-28 Paolo Bonzini <bonzini@gnu.org>
6474
6475 PR bootstrap/17383
6476
6477 * Makefile.def (target_modules): Remove stage parameter,
6478 it is always true now.
6479 * Makefile.tpl (configure-build-[+module+],
6480 configure-target-[+module+]): Always build symlink tree
6481 for the directory and for include. BUILD_SUBDIR and
6482 TARGET_SUBDIR cannot be . anymore.
6483 * Makefile.in: Regenerate.
6484
6485 2004-12-25 David Edelsohn <edelsohn@gnu.org>
6486
6487 Revert 2004-12-08 Makefile changes.
6488
6489 2004-12-16 Andrew Stubbs <andrew.stubbs@st.com>
6490
6491 * configure.in (sh64-*-*): Reenable gprof.
6492 * configure: Regenerate.
6493
6494 2004-12-09 Jim Blandy <jimb@redhat.com>
6495
6496 * MAINTAINERS: List 'depcomp' as part of automake.
6497
6498 2004-12-08 David Edelsohn <edelsohn@gnu.org>
6499
6500 * Makefile.def (flags_to_pass): Add PICFLAG_FOR_TARGET.
6501 * Makefile.tpl (EXTRA_HOST_FLAGS): Add PICFLAG.
6502 (EXTRA_TARGET_FLAGS): Add PICFLAG.
6503 * Makefile.in: Regenerate.
6504
6505 2004-12-07 Matt Kraai <kraai@ftbfs.org>
6506
6507 * Makefile.tpl: Generate normal dependencies if the LHS module is
6508 not bootstrapped.
6509 * Makefile.in: Regenerate.
6510
6511 2004-12-03 Richard Sandiford <rsandifo@redhat.com>
6512
6513 * configure.in: Include config/gxx-include-dir.m4. Use
6514 TL_AC_GXX_INCLUDE_DIR. Remove some now-redundant AC_SUBSTs.
6515 * configure: Regenerate.
6516
6517 2004-12-03 Richard Sandiford <rsandifo@redhat.com>
6518
6519 * config.if: Delete.
6520 * configure.in: Set libstdcxx_incdir directly.
6521 * configure: Regenerate.
6522 * MAINTAINERS: Remove mention of config.if.
6523 * src-release (DEVO_SUPPORT): Remove config.if.
6524
6525 2004-12-02 Eric Christopher <echristo@redhat.com>
6526
6527 * Makefile.tpl (clean-target-libgcc): Add stmp-dirs to list
6528 of things to remove.
6529 * Makefile.in: Regenerate.
6530
6531 2004-12-02 Richard Sandiford <rsandifo@redhat.com>
6532
6533 * configure.in: Clear gcc_version_trigger if the file doesn't exist.
6534 * configure: Regenerate.
6535
6536 2004-12-02 Richard Sandiford <rsandifo@redhat.com>
6537
6538 * configure.in: Include config/gcc-version.m4. Use TL_AC_GCC_VERSION
6539 to set gcc_version_trigger. Remove some now-redundant AC_SUBSTs.
6540 * configure: Regenerate.
6541
6542 2004-11-26 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
6543
6544 * configure.in (hppa*-*-linux*): Don't add libgcj to noconfigdirs.
6545 (hppa*64*-*-*): Delete incorrect comment.
6546 * configure: Rebuilt.
6547
6548 2004-11-15 Kelley Cook <kcook@gcc.gnu.org>
6549
6550 * install-sh, compile: Import from automake.
6551
6552 2004-11-15 Kelley Cook <kcook@gcc.gnu.org>
6553
6554 * config.guess, config.sub: Import from savannnah.
6555
6556 2004-11-12 Mike Stump <mrs@apple.com>
6557
6558 * Makefile.def: Add html support.
6559 * Makefile.tpl: Likewise.
6560 * Makefile.in: Regenerate.
6561
6562 2004-11-11 Geoffrey Keating <geoffk@apple.com>
6563
6564 PR 18423
6565 * configure.in: Remove all instances of build-fixincludes from
6566 noconfigdirs.
6567 (build_configargs): Supply --target to subdirectories.
6568 * configure: Regenerate.
6569
6570 * Makefile.def: Make gcc install depend on fixincludes install.
6571 * Makefile.in: Regenerate.
6572
6573 2004-11-08 Hans-Peter Nilsson <hp@bitrange.com>
6574
6575 * configure.in (noconfigdirs) [mmix-*-*]: Disable
6576 target-libgfortran.
6577 * configure: Regenerate.
6578
6579 2004-11-07 David Edelsohn <edelsohn@gnu.org>
6580
6581 * config-ml.in: Pass FCFLAGS for multilibs, handle GFORTRAN
6582 like CC.
6583
6584 2004-11-05 Paolo Bonzini <bonzini@gnu.org>
6585
6586 * Makefile.def (host fixincludes): Specify missing targets.
6587 * Makefile.in: Regenerate.
6588
6589 2004-11-04 H.J. Lu <hongjiu.lu@intel.com>
6590
6591 PR other/17783
6592 * configure.in: Set up LD_LIBRARY_PATH by default for gcc.
6593 * configure: Regenerated.
6594
6595 2004-11-04 Daniel Jacobowitz <dan@debian.org>
6596
6597 * configure.in (arm-*-oabi*, thumb-*-oabi*): Remove.
6598 * configure: Regenerated.
6599
6600 2004-10-28 Eric B. Weddington <ericw@evcohs.com>
6601
6602 PR target/18151
6603 * configure.in (case ${target}): Do not build fixincludes for avr.
6604 * configure: Regenerated.
6605
6606 2004-10-26 Paolo Bonzini <bonzini@gnu.org>
6607
6608 * configure.in (case ${target}): Do not build fixincludes
6609 on platforms where it is not used.
6610 * configure: Regenerated.
6611
6612 2004-10-23 Daniel Jacobowitz <dan@debian.org>
6613
6614 * configure.in: Use an absolute path to install-sh.
6615 * configure: Regenerated.
6616
6617 2004-10-19 Andrew Cagney <cagney@gnu.org>
6618
6619 * src-release (do-djunpack, do-md5sum): Install the generated file
6620 directly into the proto-toplev/ directory.
6621
6622 2004-10-19 Andrew Cagney <cagney@gnu.org>
6623
6624 * src-release (GDB_SUPPORT_DIRS): Remove utils and intl.
6625
6626 2004-10-12 Kelley Cook <kcook@gcc.gnu.org>
6627
6628 * configure.in (*-*-cygwin*): Supress warning if newlib not present.
6629 * configure: Regenerate.
6630
6631 2004-10-06 Paolo Bonzini <bonzini@gnu.org>
6632
6633 Fix wrong conflict resolution in:
6634
6635 2004-08-16 Paolo Bonzini <bonzini@gnu.org>
6636
6637 * Makefile.in: Regenerate.
6638 * Makefile.tpl (Autogenerated `all-*' targets): Invoke $(TARGET-*)
6639 in the recursive `make', instead of hardwiring `all'.
6640 (Autogenerated TARGET-* variables): New.
6641
6642 2004-10-05 Ulrich Weigand <uweigand@de.ibm.com>
6643
6644 Merged from GCC / libtool upstream:
6645 2004-10-02 P.J. Darcy <darcypj@us.ibm.com>
6646 * ltcf-c.sh (tpf*): Add ld_shlibs=yes.
6647 * ltcf-cxx.sh (tpf*): Likewise.
6648 * ltconfig (tpf*): Add TPF OS configuration support.
6649
6650 2004-09-30 Tomer Levi <Tomer.Levi@nsc.com>
6651
6652 * configure.in: Enable target-libgloss for crx-*-*.
6653 * configure: Regenerate.
6654
6655 2004-09-24 Michael Roth <mroth@nessie.de>
6656
6657 * configure.in (--without-headers): Add missing double quotes.
6658 * configure: Regenerate.
6659
6660 2004-09-24 Kelley Cook <kcook@gcc.gnu.org>
6661
6662 * ylwrap: Revert to previous version.
6663
6664 2004-09-23 H.J. Lu <hongjiu.lu@intel.com>
6665
6666 PR bootstrap/17369
6667 * Makefile.tpl (REALLY_SET_LIB_PATH): Add @SET_GCC_LIB_PATH@.
6668 (HOST_EXPORTS]): Add @SET_GCC_LIB_PATH@. Set and export
6669 SET_GCC_LIB_PATH_CMD.
6670 (BASE_TARGET_EXPORTS): Likewise.
6671 * Makefile.in: Regenerated.
6672
6673 * configure.in (SET_GCC_LIB_PATH): Set and substitute.
6674 * configure: Regenerated.
6675
6676 2004-09-23 Kelley Cook <kcook@gcc.gnu.org>
6677
6678 * config.guess: New upstream version
6679 * compile, depcomp, install-sh, ylwrap: Likewise.
6680
6681 2004-09-19 Roger Sayle <roger@eyesopen.com>
6682
6683 * config/mh-x86omitfp: New host makefile fragment. Add
6684 -fomit-frame-pointer to the default BOOT_CFLAGS.
6685 * configure.in: Use it to speed up bootstrap on some IA-32 hosts.
6686 * configure: Regenerate.
6687
6688 2004-09-15 Andrew Pinski <pinskia@physics.uc.edu>
6689
6690 PR target/11572
6691 * configure.in (*-*-darwin*): Renable libobjc.
6692 * configure: Regenerate.
6693
6694 2004-09-09 Daniel Berlin <dberlin@dberlin.org>
6695
6696 * Makefile.def: Remove libbanshee.
6697 * Makefile.tpl: Ditto.
6698 * configure.in: Ditto.
6699 * Makefile.in: Regen.
6700 * configure: Ditto.
6701
6702 2004-09-07 Paolo Bonzini <bonzini@gnu.org>
6703
6704 * missing: Import latest version from master repository.
6705
6706 2004-09-04 Nick Clifton <nickc@redhat.com>
6707
6708 * config.sub: Import latest version from master repository.
6709 * config.guess: Likewise.
6710 This includes these changes:
6711
6712 2004-08-27 Hans-Peter Nilsson <hp@axis.com>
6713
6714 * config.sub: Handle crisv32, alias etraxfs.
6715 * config.guess (crisv32:Linux:*:*): Handle.
6716
6717 2004-08-13 Brad Smith <brad@comstyle.com>
6718
6719 * config.guess (*:OpenBSD:*:*): Remove defunct MIPS machines.
6720 (sgi:OpenBSD:*:*): Emit mips64, not mipseb.
6721
6722 2004-08-11 Paul Eggert <eggert@cs.ucla.edu>
6723
6724 * config.guess (*:Darwin:*:*): If uname -p reports "unknown",
6725 assume the processor is a powerpc. This is because coreutils
6726 uname (at least versions 4.5.7 through 5.2.1) outputs "unknown"
6727 in this case, due to a MacOS X bug that causes
6728 sysctl ((int[]) {CTL_HW, HW_MACHINE_ARCH}, 2, buffer, &bufsize, 0, 0)
6729 to return a negative number.
6730 Problem reported by Petter Reinholdtsen in:
6731 http://lists.gnu.org/archive/html/bug-gnu-utils/2003-02/msg00201.html
6732
6733 2004-07-19 Ben Elliston <bje@gnu.org>
6734
6735 * config.guess (S7501:*:4.0:3.0): Handle NCR System V UNIX machine.
6736
6737 2004-06-24 Ben Elliston <bje@gnu.org>
6738
6739 * config.guess: Update copyright years.
6740 * config.sub: Likewise.
6741
6742 2004-06-22 Robert Millan <robertmh@gnu.org>
6743
6744 * config.guess (*:FreeBSD:*:*): Remove check for glibc (unneeded
6745 since GNU/kFreeBSD systems match *:GNU/*:*:* instead).
6746
6747 2004-06-22 Stanley F. Quayle <stan@stanq.com>
6748
6749 * config.guess (*:*VMS:*:*): New entry. Replaces
6750 Alpha:OpenVMS:*. Recognize and advertise all VMS flavors as dec
6751 manufacturer.
6752
6753 2004-06-22 Ben Elliston <bje@gnu.org>
6754
6755 * config.guess: Cray fixes from Wendy Palm <wendyp@cray.com>.
6756 * config.sub: Likewise.
6757
6758 2004-06-22 Ben Elliston <bje@gnu.org>
6759
6760 Reported by Hans-Peter Nilsson <hp@bitrange.com>:
6761 * config.sub: Correctly handle mmix-knuth and mmix-knuth-mmixware.
6762
6763 2004-06-11 Ben Elliston <bje@gnu.org>
6764
6765 * config.guess (pegasos:OpenBSD:*:*): Remove.
6766
6767 2004-06-11 Ben Elliston <bje@gnu.org>
6768
6769 From Wouter Verhelst <wouter@grep.be>:
6770 * config.guess (M68*:*:R3V[5678]:*): Detect R3V8.
6771
6772 2004-06-11 Ben Elliston <bje@gnu.org>
6773
6774 * config.guess (luna88k:OpenBSD:*:*): New.
6775
6776 2004-03-12 Kazuhiro Inaoka <inaoka.kazuhiro@renesas.com>
6777
6778 * config.guess (m32r*:Linux:*:*): New case.
6779 * config.sub: Handle m32rle.
6780
6781 2004-03-12 Ben Elliston <bje@wasabisystems.com>
6782
6783 From Jens Petersen <petersen@redhat.com>:
6784 * config.sub: Handle sparcv8.
6785
6786 2004-03-03 Ben Elliston <bje@wasabisystems.com>
6787
6788 From Tom Smith <smith@cag.lkg.hp.com>:
6789 * config.guess: Version suffixes are equally significant on Tru64
6790 V4.* and V5.*, so do not ignore them on V5.*. Handle a version
6791 prefix of "P" (patched kernel).
6792
6793 2004-02-23 Tal Agmon <Tal.Agmon@nsc.com>
6794
6795 * config.sub: Add support for National Semiconductor CRX target.
6796
6797 2004-09-03 Jan Beulich <jbeulich@novell.com>
6798
6799 * configure.in: Remove target-libstdc++-v3 from noconfigdirs for
6800 *-*-netware, but add target-libmudflap.
6801 Consolidate *-*-netware targets (of which really only i?86 exists)
6802 into a single entry.
6803 * configure: Likewise.
6804
6805 2004-09-01 Paolo Bonzini <bonzini@gnu.org>
6806
6807 * Makefile.tpl (sorry): Remove.
6808 (clean-stage[+id+], clean-stage[+id+]-module): New targets.
6809 (cleanstrap targets): Depend on distclean, not distclean-stage1.
6810 (do-clean): Clean per-stage directories too.
6811 (do-distclean): Run distclean-stage1 too.
6812 (.NOTPARALLEL): Enable during toplevel bootstrap.
6813 (stage[+id+]-bubble): Enable parallel execution during
6814 the recursive invocation.
6815 * Makefile.in: Regenerate.
6816
6817 Sync from gcc (moving the Makefile.in change to Makefile.tpl):
6818
6819 2004-08-31 Robert Bowdidge <bowdidge@apple.com>
6820
6821 * Makefile.in: Move BOOT_CFLAGS above host makefile fragment include.
6822 * configure.in: add test for powerpc-*-darwin* to specify makefile frag
6823 * configure: regenerate
6824 * config/mh-ppc-darwin: create file, override BOOT_CFLAGS for
6825 -mdynamic-no-pic
6826
6827 2004-08-31 Paolo Bonzini <bonzini@gnu.org>
6828
6829 * Makefile.tpl: Move BOOT_CFLAGS above host makefile fragment
6830 include.
6831 * configure.in: Fix indentation.
6832 * configure: Regenerate.
6833
6834 2004-08-31 Paolo Bonzini <bonzini@gnu.org>
6835
6836 * Makefile.def (build_modules): Add fixincludes.
6837 (dependencies): Make gcc depend on fixincludes.
6838 * configure.in (build_tools): Add fixincludes.
6839 (build_configdirs): Always include build_libs.
6840 * Makefile.in: Regenerate.
6841 * configure: Regenerate.
6842
6843 2004-08-30 Paolo Bonzini <bonzini@gnu.org>
6844
6845 * Makefile.def (bootstrap stages): Add 'lean' parameter.
6846 * Makefile.tpl (configure-stageN-*, all-stageN-*): Turned into
6847 phony targets; do not generate timestamp files.
6848 (distclean-stageN): Remove references to their timestamp files.
6849 (restageN, touch-stageN): Remove.
6850 (stageN-bubble): Rewritten.
6851 (compare): Support lean bootstraps.
6852 * Makefile.in: Regenerate.
6853
6854 * configure.in: Only warn when bootstrapping but
6855 build != host or build != target. Support lean bootstraps.
6856 * configure: Regenerate.
6857
6858 Sync from gcc:
6859 2004-08-26 Phil Edwards <phil@codesourcery.com>
6860
6861 * configure.in: Give a better error message if GMP/MPFR are missing
6862 and a language needing them has been requested.
6863 * configure: Regenerated.
6864
6865 2004-08-25 Phil Edwards <phil@codesourcery.com>
6866
6867 * configure.in: Print a list of available language front-ends if
6868 a requested one is missing. Tidy stray tab characters.
6869 * configure: Regenerated.
6870
6871 2004-08-17 Paolo Bonzini <bonzini@gnu.org>
6872
6873 * Makefile.in: Regenerate.
6874 * configure: Regenerate.
6875
6876 * Makefile.def (bootstrap-stage): Rename extra_*_flags to
6877 stage_*_flags.
6878 * Makefile.tpl (configure-[+module+], all-[+module+]): Exit
6879 for bootstrapped modules if toplevel bootstrap is going.
6880 (GCC bootstrap): Generate per-stage targets for all bootstrapped
6881 modules. Adjust for changes in Makefile.def. Enable several
6882 rules even in non-bootstrap mode, just to avoid peppering the
6883 template with unnecessary "@if/@endif gcc-bootstrap" pairs.
6884 (stage-[+prev+]-bubble): Remove.
6885
6886 * Makefile.def (Dependencies): Depend on all-build-bison,
6887 all-build-flex, all-build-byacc, all-build-texinfo, rather
6888 than the host variations.
6889 * Makefile.tpl (BUILD_DIR_PREFIX): Remove. Replace throughout
6890 with BUILD_SUBDIR.
6891 (BISON): Update for recent Bisons.
6892 (YACC): Fix typo.
6893 (cross): Depend on all-build.
6894 (all): Do not depend on all-build.
6895 (prebootstrap): Remove.
6896 (dep-kind): Accept separate prefixes for MODULE and ON variables.
6897 (Prebootstrap dependencies): Add them to the per-stage targets
6898 and to all-prebootstrap.
6899 * configure.in (build_configdirs): Always enable build_tools.
6900 (BUILD_DIR_PREFIX): Remove.
6901
6902 * Makefile.def (gcc): Add target variable.
6903 (gdb, expect, guile, tk, tix): Replace with_x with extra_make_flags.
6904 * Makefile.tpl (Autogenerated `all-*' targets): Invoke $(TARGET-*)
6905 in the recursive `make', instead of hardwiring `all'.
6906 (Autogenerated TARGET-* variables): New.
6907
6908 2004-08-17 Robert Millan <robertmh@gnu.org>
6909
6910 * configure.in: In noconfigdirs check, match GNU/k*BSD with GNU/Linux
6911 (instead of FreeBSD).
6912 * configure: Regenerate.
6913
6914 2004-08-12 Nathanael Nerode <neroden@gcc.gnu.org>
6915
6916 * Makefile.def, configure.in, src-release: Remove useless, bogus
6917 references to tix.
6918 * Makefile.in, configure: Regenerate.
6919
6920 * src-release: Stop distributing mmalloc with gdb (which doesn't
6921 use it).
6922 * Makefile.def: GDB doesn't depend on mmalloc anymore.
6923 * Makefile.in: Regenerate.
6924
6925 2004-08-09 Mark Mitchell <mark@codesourcery.com>
6926
6927 * configure.in (arm*-*-eabi*): New target.
6928 * configure: Regenerate.
6929
6930 2004-08-01 Robert Millan <robertmh@gnu.org>
6931
6932 * configure.in: Turn mt-linux into mt-gnu. Use mt-gnu and enable
6933 libmudflap for all GNU-based systems (with Glibc).
6934 * configure: Regenerate.
6935
6936 2004-08-06 Paolo Bonzini <bonzini@gnu.org>
6937
6938 * Makefile.def (bfd, opcodes, gcc, zlib): Mark as bootstrap module.
6939 (bison, byacc, flex, texinfo): Do not mark as bootstrap module.
6940 (Dependencies): New section.
6941 * Makefile.tpl (Dependencies): Generate from Makefile.def.
6942 (configure-target-[+module+]): Depend on maybe-all-gcc
6943 (all-prebootstrap): New name of all-bootstrap. Changed throughout.
6944 (toplevel profiledbootstrap): Fix dependencies.
6945 * Makefile.in: Regenerate.
6946
6947 2004-08-03 Mark Mitchell <mark@codesourcery.com>
6948
6949 * configure.in (arm*-*-symbianelf*): Add ${libgcj} and
6950 target-libiberty to noconfigdirs.
6951
6952 2004-08-03 Paul Brook <paul@codesourcery.com>
6953
6954 * configure.in: Check for MPFR as well as GMP.
6955 * configure: Regenerate.
6956
6957 2004-08-03 Paolo Bonzini <bonzini@gnu.org>
6958
6959 * Makefile.def (host-modules): Add gcc.
6960 * Makefile.in: Regenerate.
6961 * Makefile.tpl (sorry): New rule.
6962 (configure-host, all-host, [+make_target+]-host, do-check,
6963 install-host): Do not add gcc as a special case.
6964 (host modules): Add a small special-casing for gcc. Export
6965 extra_make_flags through the environment.
6966 (maybe-configure-gcc, configure-gcc, maybe-all-gcc, all-gcc,
6967 maybe-check-gcc, check-gcc, maybe-install-gcc, install-gcc,
6968 other recursive targets for gcc): Remove.
6969
6970 (all, do-[+make_target+], do-check): Wrap between unstage and stage.
6971 (stage, unstage): New rules.
6972 (stage[+id+]-start, stage[+id+]-end, [+compare-target+],
6973 distclean-stage[+id+]): Use stage_current.
6974 ([+bootstrap-target+], profiledbootstrap): Do not invoke manually
6975 the stage*-start rules.
6976
6977 2004-07-19 Robert Millan <robertmh@gnu.org>
6978
6979 Synced from gcc:
6980
6981 2004-04-26 Robert Millan <robertmh@gnu.org>
6982
6983 Add patches from libtool CVS.
6984 * libtool.m4: Add kfreebsd*-gnu and knetbsd*-gnu.
6985 * ltconfig: Likewise.
6986 * ltcf-c.sh: Likewise.
6987 * ltcf-cxx.sh: Likewise.
6988 * ltcf-gcj.sh: Likewise.
6989
6990 2004-07-12 Paolo Bonzini <bonzini@gnu.org>
6991
6992 * configure.in: Add noconfigdirs for crx-*-*.
6993 * configure: Regenerate.
6994
6995 2004-07-12 Paolo Bonzini <bonzini@gnu.org>
6996
6997 Synced from gcc:
6998
6999 2004-07-09 Loren J. Rittle <ljrittle@acm.org>
7000
7001 * configure.in: Build libmudflap by default on FreeBSD.
7002 * configure: Regenerated.
7003
7004 2004-07-09 Mark Mitchell <mark@codesourcery.com>
7005
7006 * configure.in: Do not build libmudflap by default on non-GNU/Linux
7007 systems.
7008 * configure: Regenerated.
7009
7010 2004-07-08 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
7011
7012 PR target/16344
7013 * Makefile.tpl (profiledbootstrap): Build runtime libraries with
7014 feedback based compiler.
7015 * Makefile.in: Rebuilt.
7016
7017 2004-07-05 Phil Edwards <phil@codesourcery.com>
7018
7019 * configure.in: Do not prepend $srcdir to /dev/null in
7020 makefile fragments.
7021 * configure: Regenerate.
7022
7023 2004-07-08 Alexandre Oliva <aoliva@redhat.com>
7024
7025 * Makefile.def (host_modules): Set bootstrap=true for flex.
7026 * Makefile.tpl (all-gcc): Depend on texinfo and flex.
7027 * Makefile.in: Rebuilt.
7028
7029 2004-07-01 Paolo Bonzini <bonzini@gnu.org>
7030
7031 * Makefile.def (build_modules): Add bison, byacc, flex,
7032 m4, texinfo.
7033 (flags_to_pass): Add FLEX.
7034 * Makefile.tpl (BUILD_DIR_PREFIX, BASE_EXPORTS): New.
7035 (BUILD_EXPORTS, HOST_EXPORTS, BASE_TARGET_EXPORTS): Include it.
7036 (DEFAULT_YACC, USUAL_YACC, DEFAULT_LEX, USUAL_LEX, DEFAULT_M4,
7037 DEFAULT_MAKEINFO): Remove.
7038 (CONFIGURED_YACC, CONFIGURED_FLEX, CONFIGURED_BISON,
7039 CONFIGURED_LEX, CONFIGURED_M4, CONFIGURED_MAKEINFO): Substitute.
7040 (YACC, FLEX, BISON, LEX, M4, MAKEINFO): Define to look into
7041 objdir or else use configured tool.
7042 (all-build): New.
7043 (all): Depend on it.
7044 (Build module dependencies): Add.
7045 * Makefile.in: Regenerate.
7046 * configure.in: Better support for multiple build modules,
7047 matching what is done for host/target modules. Do not look
7048 for "plausible" locations of build tools if Canadian cross.
7049 Use autoconf's AC_PROG_CC to find a C compiler. Define
7050 BUILD_DIR_PREFIX. Look for flex, makeinfo and m4.
7051 * configure: Regenerate.
7052
7053 2004-06-22 Paolo Bonzini <bonzini@gnu.org>
7054
7055 * Makefile.tpl (HOST_EXPORTS): Fix pasto.
7056 * Makefile.in: Regenerate.
7057
7058 2004-06-22 Paolo Bonzini <bonzini@gnu.org>
7059
7060 * Makefile.tpl (configure-build-[+module+],
7061 configure-[+module+], configure-target-[+module+]): Pass
7062 [+extra_configure_args+].
7063 (all-build-[+module+], all-[+module+], check-[+module+],
7064 install-[+module+], [+make_target+]-[+module+],
7065 all-target-[+module+], check-target-[+module+],
7066 install-target-[+module+], [+make_target+]-target-[+module+]):
7067 Pass [+extra_make_args+].
7068 (HOST_EXPORTS): Include the former GCC_HOST_EXPORTS.
7069 (GCC_HOST_EXPORTS): Remove.
7070 (configure-gcc, all-gcc, GCC_STRAP_TARGETS, profiledbootstrap,
7071 cross, check-gcc, check-gcc-c++, install-gcc,
7072 gcc-no-fixedincludes, [+make_target+]-gcc, stage[+id+]-bubble):
7073 Replace GCC_HOST_EXPORTS with HOST_EXPORTS.
7074 * Makefile.in: Regenerate.
7075
7076 2004-06-21 Christopher Faylor <cgf@alum.bu.edu>
7077
7078 * configure.in: Check for srcdir/winsup rather than build directory
7079 winsup.
7080 * configure: Regenerate.
7081
7082 2004-06-17 Corinna Vinschen <vinschen@redhat.com>
7083
7084 * configure.in: Don't build Cygwin native newlib if winsup
7085 directory is missing. Emit warning instead.
7086 * configure: Regenerate.
7087
7088 2004-06-09 Paolo Bonzini <bonzini@gnu.org>
7089
7090 * Makefile.tpl (touch-stage[+id+]): New.
7091 (restage[+prev+]): Depend on touch-stage[+id+].
7092
7093 * Makefile.tpl (RECURSE_FLAGS_TO_PASS): New.
7094 Use it throughout.
7095
7096 * Makefile.def: Add profile and feedback bootstrap stages.
7097 Remove next field from bootstrap stages.
7098 * Makefile.tpl (LN, LN_S): Substitute.
7099 (stageN-start, stageN-end): Use double-colon rules, to
7100 provide a hook for additional setup commands.
7101 (distclean-stageN-gcc, restageN): Create dependencies from
7102 [+prev+], not from [+next+].
7103 (stageN-bubble): Add commands for successive stages from
7104 [+prev+], using double-colon rules.
7105 (all-stageN-gcc): Fix typo.
7106 (stagefeedback-start, profiledbootstrap): New.
7107 * Makefile.in: Regenerate.
7108 * configure.in: Call ACX_PROG_LN.
7109 * configure: Regenerate.
7110
7111 2004-06-03 Paolo Bonzini <bonzini@gnu.org>
7112
7113 * configure.in: Fix --enable-bootstrap breakage introduced in trees
7114 without gcc.
7115 * configure: Regenerate.
7116
7117 2004-06-01 Paolo Bonzini <bonzini@gnu.org>
7118
7119 * Makefile.tpl: Fix typo.
7120 * Makefile.in: Regenerate.
7121
7122 2004-06-01 Paolo Bonzini <bonzini@gnu.org>
7123
7124 * configure.in: Remove new- prefix from toplevel
7125 bootstrap targets.
7126 * configure: Regenerate.
7127
7128 2004-06-01 Paolo Bonzini <bonzini@gnu.org>
7129
7130 Merge this patch from the gcc tree:
7131
7132 2004-05-30 Andreas Jaeger <aj@suse.de>
7133 Jim Wilson <wilson@specifixinc.com>
7134
7135 * config-ml.in: Pass FFLAGS and ADAFLAGS for multilibs, handle F77
7136 like CC.
7137
7138 2004-06-01 Paolo Bonzini <bonzini@gnu.org>
7139
7140 * Makefile.tpl (all.normal): Rename to all.
7141 (all): Replace with a rule to pick the default
7142 target from configure.
7143 (all-gcc, configure-gcc): Use conditionals to
7144 do nothing when toplevel bootstrap is going on.
7145 (GCC directory bootstrap) [gcc-bootstrap]: Disable.
7146 (Toplevel bootstrap) [gcc-no-bootstrap]: Disable.
7147 * configure.in: Support --enable-bootstrap.
7148
7149 * Makefile.def: Remove new- prefix from toplevel
7150 bootstrap targets.
7151 * Makefile.tpl: Likewise.
7152
7153 * Makefile.def: Add bootstrap_stage 4. Add bootstrap2
7154 target.
7155
7156 * Makefile.tpl (Toplevel bootstrap): Pass $(BASE_FLAGS_TO_PASS)
7157 $(RECURSE_FLAGS) to recursive invocation of make.
7158
7159 * Makefile.in: Regenerate.
7160 * configure: Regenerate.
7161
7162 2004-05-27 Daniel Jacobowitz <dan@debian.org>
7163
7164 * configure.in: Fix sed invocation for GFORTRAN_FOR_TARGET.
7165 * configure: Regenerate.
7166
7167 2004-05-25 Daniel Jacobowitz <drow@false.org>
7168
7169 * Makefile.tpl (BUILD_EXPORTS, HOST_EXPORTS, GCC_HOST_EXPORTS)
7170 (STAGE_HOST_EXPORTS, BASE_TARGET_EXPORTS, RAW_CXX_TARGET_EXPORTS)
7171 (NORMAL_TARGET_EXPORTS): New macros. Use them in all the recursive
7172 targets.
7173 * Makefile.in: Regenerate.
7174
7175 2005-05-24 Paolo Bonzini <bonzini@gnu.org>
7176
7177 * configure.in: Test the ability to symlink directories.
7178 * configure: Regenerate.
7179
7180 * Makefile.def (bootstrap-stage): New definitions.
7181 * Makefile.tpl (configure-stage1-gcc,
7182 configure-stage2-gcc, configure-stage3-gcc,
7183 all-stage1-gcc, all-stage2-gcc, all-stage3-gcc,
7184 new-bootstrap, new-cleanstrap, new-restage1, new-restage2,
7185 new-restage3, compare): Autogenerate, see Makefile.in
7186 entry for behavioral changes.
7187 (distclean-stage1, new-stage1-start, new-stage1-end,
7188 new-stage1-bubble, distclean-stage2, new-stage2-start,
7189 new-stage2-end, new-stage2-bubble, distclean-stage3,
7190 new-stage3-start, new-stage3-end): New autogenerated targets.
7191 (objext, prebootstrap, BOOT_CFLAGS,
7192 POSTSTAGE1_FLAGS_TO_PASS): Move above the autogenerated
7193 targets.
7194
7195 * Makefile.in: Regenerate.
7196 (distclean-stage1, new-stage1-start, new-stage1-end,
7197 new-stage1-bubble, distclean-stage2, new-stage2-start,
7198 new-stage2-end, new-stage2-bubble, distclean-stage3,
7199 new-stage3-start, new-stage3-end): New targets.
7200 (all-stage1-gcc): Move prebootstrap dependency from here...
7201 (configure-stage1-gcc): ...to here.
7202 (new-bootstrap): Use bubble targets.
7203 (new-cleanstrap, new-restage1, new-restage2, new-restage3):
7204 Use per-stage distclean targets.
7205 (configure-stage1-gcc, configure-stage2-gcc,
7206 configure-stage3-gcc, all-stage1-gcc,
7207 all-stage2-gcc, all-stage3-gcc, new-bootstrap):
7208 Use new-stageN-start to prepare the tree.
7209
7210 2004-05-23 Paolo Bonzini <bonzini@gnu.org>
7211
7212 * Makefile.def (host_modules): add libcpp.
7213 * Makefile.tpl: Add dependencies on and for libcpp.
7214 * Makefile.in: Regenerate.
7215 * configure.in: Add libcpp host module.
7216 * configure: Regenerate.
7217
7218 2004-05-17 Zack Weinberg <zack@codesourcery.com>
7219
7220 * Makefile.def, Makefile.tpl, configure.in: Remove all mention
7221 of libf2c.
7222 * configure, Makefile.in: Regenerate.
7223
7224 2004-05-13 Diego Novillo <dnovillo@redhat.com>
7225
7226 Merge from tree-ssa-20020619-branch.
7227
7228 * Makefile.def: Add libbanshee, libmudflap and libgfortran.
7229 * Makefile.tpl (BUILD_CONFIGDIRS): Add libbanshee.
7230 (HOST_GMPLIBS): Define.
7231 (HOST_GMPINC): Define.
7232 (TARGET_LIB_PATH): Add libmudflap.
7233 (GFORTRAN_FOR_TARGET): Define.
7234 (configure-build*): Export GFORTRAN.
7235 (configure-gcc): Export GMPLIBS and GMPINC.
7236 (all-gcc): Add maybe-all-libbanshee.
7237 (configure-target-libgfortran): Define.
7238 * Makefile.in: Regenerate.
7239 * configure.in (host_libs): Add libbanshee.
7240 (target_libraries): Add target-libmudflap and target-libgfortran.
7241 Add --with-libbanshee.
7242 Handle --disable-libmudflap.
7243 (*-*-freebsd*): Use with_gmp.
7244 Add $(libgcj) to noconfigdirs.
7245 * configure: Regenerate.
7246 * depcomp: New file.
7247 * MAINTAINERS: Add tree-ssa maintainers.
7248
7249 2004-04-28 Paolo Bonzini <bonzini@gnu.org>
7250
7251 * config/acx.m4: Fix fastcompare support for new-bootstrap.
7252 * configure: Regenerate.
7253
7254 2004-04-27 Paolo Bonzini <bonzini@gnu.org>
7255
7256 Revert:
7257 2004-04-26 Paolo Bonzini <bonzini@gnu.org>
7258
7259 * Makefile.def (flags_to_pass): Remove *dir variables that
7260 are passed to the modules via TOPLEVEL_CONFIGURE_ARGUMENTS,
7261 as well as prefix and exec_prefix.
7262 * Makefile.in: Regenerate.
7263
7264 2004-04-26 Paolo Bonzini <bonzini@gnu.org>
7265
7266 * Makefile.def (host_modules): Mark with the bootstrap
7267 flag packages on which gcc depends.
7268 * Makefile.tpl (all-bootstrap): Use it.
7269 * Makefile.in: Regenerate.
7270
7271 2004-04-26 Paolo Bonzini <bonzini@gnu.org>
7272
7273 * Makefile.def (flags_to_pass): Remove *dir variables that
7274 are passed to the modules via TOPLEVEL_CONFIGURE_ARGUMENTS,
7275 as well as prefix and exec_prefix.
7276 * Makefile.in: Regenerate.
7277
7278 2004-04-26 Paolo Bonzini <bonzini@gnu.org>
7279
7280 * configure.in: Invoke ACX_PROG_CMP_IGNORE_INITIAL.
7281 * configure: Regenerate.
7282 * config/acx.m4: Mutuate ACX_PROG_CMP_IGNORE_INITIAL from gcc.
7283 * gcc/Makefile.tpl (compare): Use the result of the test.
7284 * gcc/Makefile.in: Regenerate.
7285
7286 2004-04-23 Paolo Bonzini <bonzini@gnu.org>
7287
7288 * Makefile.tpl (all-stage1-gcc, all-stage2-gcc, all-stage3-gcc):
7289 Always relocate gcc and prev-gcc to the original names, even
7290 if the build fails.
7291 (new-cleanstrap, new-restage1, new-restage2, new-restage3):
7292 New targets.
7293
7294 2004-04-19 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
7295
7296 * configure.in (mips*-*-irix5*): Enable ld.
7297 * configure: Regenerate.
7298
7299 2004-04-15 James E Wilson <wilson@specifixinc.com>
7300
7301 * Makefile.tpl (configure-[+module+], configure-gcc,
7302 configure-stage1-gcc, configure-stage2-gcc, configure-stage3-gcc):
7303 Set and export LDFLAGS.
7304 * Makefile.in: Regenerate.
7305
7306 2004-04-09 Nathanael Nerode <neroden@gcc.gnu.org>
7307
7308 PR bootstrap/14871
7309 * Makefile.tpl: If we don't have built-in-tree target tools,
7310 use the ones found by configure rather than hacking around with
7311 program_transform_name.
7312 * configure.in: Give Makefile.tpl the information necessary
7313 to do that.
7314 * Makefile.in: Regenerate.
7315 * configure: Regenerate.
7316
7317 2004-04-06 Nathanael Nerode <neroden@gcc.gnu.org>
7318
7319 PR bootstrap/14760
7320 * configure.in: When computing baseargs, strip *all* copies of
7321 offending options. Also, don't match/substitute the trailing space,
7322 so that this actually works when two similar options are separated by
7323 only one space.
7324 * configure: Regenerate.
7325
7326 2004-04-06 David Edelsohn <edelsohn@gnu.org>
7327
7328 * configure.in (powerpc-*-aix*): Remove target-libada from noconfigdirs.
7329 (rs6000-*-aix*): Same.
7330 * configure: Regenerate.
7331
7332 2004-03-25 Stan Shebs <shebs@apple.com>
7333
7334 Remove MPW support, no longer used.
7335 * mpw-README, mpw-build.in, mpw-config.in, mpw-configure,
7336 mpw-install: Remove files.
7337 * src-release (DEVO_SUPPORT): Remove names of removed files.
7338 * MAINTAINERS: Likewise.
7339
7340 2004-03-24 Nathanael Nerode <neroden@gcc.gnu.org>
7341
7342 * Makefile.tpl (top level bootstrap support): Remove now-unneeded
7343 STRICT_WARN, WARN_CFLAGS flags passed down to make.
7344 * Makefile.in: Regenerate.
7345
7346 * configure.in (top level bootstrap support): Rework --enable-werror
7347 to set @stage2_werror_flag@.
7348 * configure: Regenerate.
7349 * Makefile.tpl (top level bootstrap support): Pass
7350 @stage2_werror_flag@ down to configure in stages 2 and 3.
7351 * Makefile.in: Regenerate.
7352
7353 2004-03-23 Nathanael Nerode <neroden@gcc.gnu.org>
7354
7355 * Makefile.tpl (new-bootstrap): Set CC and CC_FOR_BUILD in configure
7356 for stages 2 and 3 as well as in make. As a consequence, remove
7357 OUTPUT_OPTION (now detected by configure) from the flags passed down
7358 to make.
7359 * Makefile.in: Regenerate.
7360
7361 * Makefile.tpl (new-bootstrap): Fix typo.
7362 * Makefile.in: Regenerate.
7363
7364 2004-03-22 Nathanael Nerode <neroden@gcc.gnu.org>
7365
7366 * Makefile.tpl: Rearrange by moving recursive_targets rules
7367 into their proper sections.
7368 * Makefile.tpl (top level bootstrap support): Move disabling
7369 of coverage flags from 'make' to 'configure'; improve comments.
7370 * Makefile.in: Regenerate.
7371
7372 * Makefile.tpl (experimental top level bootstrap) Move stage1
7373 language setting from all- target to configure- target; disable
7374 intermodule optimization in stage 1; prevent gratuitous rebuilds
7375 of stage 1.
7376 * Makefile.in: Regenerate.
7377 * configure.in: Comma-separate stage 1 language list for top
7378 level bootstrap.
7379 * configure: Regenerate.
7380
7381 * Makefile.tpl: Clean up experimental top level bootstrap support:
7382 note known problems; set CONFIG_SHELL; don't set BUILD_CC; relocate
7383 prev-gcc in configure- targets as well as all- targets.
7384 * Makefile.in: Regenerate.
7385
7386 2004-03-17 Paolo Bonzini <bonzini@gnu.org>
7387
7388 * configure.in: Remove symbolic link section.
7389 * configure: Regenerate.
7390 * Makefile.tpl (links): Remove.
7391 * Makefile.in: Regenerate.
7392
7393 2004-03-15 Paolo Bonzini <bonzini@gnu.org>
7394 Nathanael Nerode <neroden@gcc.gnu.org>
7395
7396 * configure.in (DEFAULT_YACC, DEFAULT_M4, DEFAULT_LEX):
7397 Set with AC_CHECK_PROGS.
7398 * configure.in: Fix comment typo from last patch.
7399 * configure: Regenerate.
7400
7401 2004-03-15 Nathanael Nerode <neroden@gcc.gnu.org>
7402
7403 * Makefile.tpl: Introduce experimental top level bootstrap support.
7404 * Makefile.in: Regenerate.
7405 * configure.in: Introduce support for top level bootstrap.
7406 * configure: Regenerate.
7407
7408 2004-03-12 Eric Botcazou <ebotcazou@gcc.gnu.org>
7409 Paolo Bonzini <bonzini@gnu.org>
7410
7411 PR bootstrap/14522
7412 * configure.in: Cope with shells that do not support unquoted ^
7413 * configure: Regenerate.
7414
7415 2004-03-11 Eric Botcazou <ebotcazou@gcc.gnu.org>
7416 Paolo Bonzini <bonzini@gnu.org>
7417
7418 PR bootstrap/14522
7419 * configure.in: Cope with shell that do not support nesting
7420 quotes inside quoted backquote substitutions.
7421 * configure: Regenerate.
7422
7423 2004-03-10 Andrew Pinski <pinskia@physics.uc.edu>
7424
7425 PR bootstrap/14522
7426 * configure.in: Fix escaping of $.
7427 * configure: Regenerate.
7428
7429 2004-03-11 Nathanael Nerode <neroden@gcc.gnu.org>
7430
7431 * configure: Regenerate.
7432
7433 2004-03-08 Paolo Bonzini <bonzini@gnu.org>
7434
7435 PR ada/14131
7436 Move language detection to the top level.
7437 * configure.in: Find default values for the tools as
7438 soon as possible. Disable ada if GNAT is not found.
7439 Emit error message about missing languages. Expand
7440 --enable-languages=all for the gcc subdirectory.
7441
7442 2004-03-01 Richard Sandiford <rsandifo@redhat.com>
7443
7444 * configure.in (mips64*-*-linux*): Override mips*-*-linux* case
7445 and disable libgcj.
7446 * configure: Regenerated.
7447
7448 2004-02-28 Nathanael Nerode <neroden@gcc.gnu.org>
7449
7450 PR bootstrap/7087
7451 * Makefile.tpl: Guard XFOO sed statements better.
7452 * Makefile.tpl: Add dependency for configure-target-libada.
7453 * Makefile.in: Regenerate (incidentally fixes broken
7454 commit when libada-branch was merged).
7455
7456 2004-02-28 Andrew Cagney <cagney@redhat.com>
7457
7458 * src-release (CVS_NAMES): Define.
7459 (do-tar, do-tar): Prune $(CVS_NAMES).
7460
7461 2004-02-23 Andrew Cagney <cagney@redhat.com>
7462
7463 * texinfo/texinfo.tex: Update from version 2003-02-03.16 to
7464 2004-02-19.09.
7465
7466 2004-02-19 Nathanael Nerode <neroden@gcc.gnu.org>
7467
7468 PR bootstrap/11932
7469 * mkinstalldirs, install-sh: Import from automake CVS HEAD.
7470
7471 2004-02-19 Andrew Cagney <cagney@redhat.com>
7472
7473 * config.guess: Update from version 2003-06-12 to 2004-02-16.
7474 * config.sub: Update from version 2003-06-13 to 2004-02-16.
7475
7476 2004-02-11 David Edelsohn <edelsohn@gnu.org>
7477
7478 * configure.in (powerpc-*-aix*): Add target-libada to noconfigdirs.
7479 (rs6000-*-aix*): Same.
7480 * configure: Regenerate.
7481
7482 2004-02-11 Kelley Cook <kcook@gcc.gnu.org>
7483
7484 * configure.in (host): Add in missing $noconfigdirs to defines.
7485 * configure: Regenerate.
7486
7487 2004-02-10 Arnaud Charlet <charlet@act-europe.fr>,
7488 Nathanael Nerode <neroden@gcc.gnu.org>
7489
7490 PR ada/6637, PR ada/5911
7491 Merge with libada-branch:
7492 * configure.in, Makefile.tpl, Makefile.def: Add target-libada,
7493 with appropriate dependencies. Add --enable-libada configure switch.
7494 * configure, Makefile.in: Regenerate.
7495
7496 2004-02-05 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
7497
7498 * configure.in: Don't pass --with-stabs on IRIX 5 either.
7499 * configure: Regenerate.
7500
7501 2004-02-02 Jeff Johnston <jjohnstn@redhat.com>
7502
7503 * COPYING.NEWLIB: Update Red Hat license to 2004.
7504
7505 2004-01-23 DJ Delorie <dj@redhat.com>
7506
7507 * Makefile.def (target_modules) [libiberty]: Don't stage.
7508 * Makefile.in: Rebuilt.
7509
7510 2004-01-23 Jeff Johnston <jjohnstn@redhat.com>
7511
7512 * COPYING.NEWLIB: Update to include copyrights for new
7513 iconv code.
7514
7515 2004-01-15 Andrew Cagney <cagney@redhat.com>
7516
7517 * src-release: Update copyright year.
7518 (do-proto-toplev): Configure using i686-pc-linux-gnu.
7519 (NEWLIB_SUPPORT_DIRS): Delete macro.
7520 (newlib.tar.bz2): Delete rule.
7521
7522 2004-01-14 Loren J. Rittle <ljrittle@acm.org>
7523
7524 * Makefile.def (target_modules) [libtermcap, libiberty, zlib]: Stage.
7525 * Makefile.tpl (configure-target-[+module+]): Support stage.
7526 * Makefile.in: Rebuilt.
7527
7528 2003-01-14 Maciej W. Rozycki <macro@ds2.pg.gda.pl>
7529
7530 * gettext.m4: Quote names of macros to be defined by AC_DEFUN
7531 throughout.
7532
7533 2004-01-04 Nathanael Nerode <neroden@gcc.gnu.org>
7534
7535 * configure.in: Use ./config.cache, not config.cache.
7536 * configure: Regenerate.
7537 * Makefile.tpl: Special-casing not needed for GCC any more.
7538 * Makefile.in: Regenerate.
7539
7540 * configure.in: Don't share a cache file for host dirs.
7541 * configure: Regenerate.
7542
7543 * config-ml.in: Don't mess with the cache file.
7544
7545 2004-01-03 Nathanael Nerode <neroden@gcc.gnu.org>
7546
7547 * Makefile.tpl: Make GCC use a separate config.cache.
7548 * Makefile.in: Regenerate.
7549
7550 PR bootstrap/11932, PR bootstrap/11933
7551 (I don't know if it will fix either of them, but it relates
7552 to them.)
7553 * configure.in: Don't use shared config.cache for target
7554 directories.
7555 * configure: Regenerate.
7556
7557 2003-12-31 Roger Sayle <roger@eyesopen.com>
7558
7559 * configure.in (ia64*-*-hpux*): Disable building java libraries.
7560 * configure: Regenerated.
7561
7562 2003-12-21 Bernardo Innocenti <bernie@develer.com>
7563
7564 * configure.in (*-*-uclinux): Exclude newlib, libgloss and rda.
7565 * configure: Regenerated.
7566
7567 2003-12-19 Nathanael Nerode <neroden@gcc.gnu.org>
7568
7569 Port change over from GCC:
7570 2003-11-20 Kelley Cook <kcook@gcc.gnu.org>
7571 * Makefile.tpl (BASE_FLAGS_TO_PASS): Pass along CONFIG_SHELL.
7572 (configure-build-[+module+], configure-[+module+]): Likewise.
7573 (configure-target-[+module+], configure-gcc, config.status): Likewise.
7574 * Makefile.in: Regenerate.
7575
7576 2003-12-08 Thomas Fitzsimmons <fitzsim@redhat.com>
7577
7578 * configure.in (raw_libstdcxx_flags): Remove the leading space.
7579 * configure: Regenerate.
7580
7581 2003-11-27 Jeff Johnston <jjohnstn@redhat.com>
7582
7583 * COPYING.NEWLIB: Add license info for long long routines added to
7584 stdlib.
7585
7586 2003-11-14 Arnaud Charlet <charlet@act-europe.fr>
7587
7588 * Makefile.tpl (EXTRA_GCC_FLAGS): Pass BOOT_ADAFLAGS.
7589 * Makefile.in: Regenerate.
7590
7591 2003-10-20 Phil Edwards <phil@codesourcery.com>
7592
7593 * configure.in (*-*-vxworks): Add target-libiberty to noconfdirs.
7594 * configure: Regenerate.
7595
7596 2003-10-13 Nathanael Nerode <neroden@gcc.gnu.org>
7597
7598 * Makefile.tpl: Make GCC_FLAGS_TO_PASS a superset of
7599 HOST_FLAGS_TO_PASS.
7600 * Makefile.in: Regenerate.
7601
7602 2003-10-05 Mohan Embar <gnustuff@thisiscool.com>
7603
7604 * configure.in: Allow explicit specification of CFLAGS_FOR_BUILD.
7605 * configure: Rebuilt
7606 * Makefile.tpl: Use CFLAGS_FOR_BUILD computed by configure
7607 * Makefile.in: Rebuilt
7608
7609 2003-10-03 H.J. Lu <hongjiu.lu@intel.com>
7610
7611 * ltconfig (sys_lib_search_path_spec): Fix a typo for HPUX.
7612
7613 2003-10-01 Phil Edwards <pme@gcc.gnu.org>
7614
7615 * config-ml.in: Use ac_configure_args directly instead of
7616 ml_arguments. Only set ml_norecursion if --no[-]recursion is
7617 actually seen.
7618
7619 2003-10-01 Eric Botcazou <ebotcazou@libertysurf.fr>
7620
7621 * config-ml.in: Propagate INSTALL variables.
7622
7623 2003-09-21 Daniel Jacobowitz <drow@mvista.com>
7624
7625 * configure.in: Pass a computed --program-transform-name
7626 to subconfigures.
7627 * configure: Regenerated.
7628
7629 2003-09-20 Nathanael Nerode <neroden@gcc.gnu.org>
7630
7631 * Makefile.tpl: Don't pass down obsolete ENQUIRE variable.
7632 * Makefile.in: Regenerate.
7633
7634 * Makefile.tpl: Don't pass (unused) DLLTOOL or WINDRES to gcc.
7635 * Makefile.in: Regenerate.
7636
7637 2003-09-17 Daniel Jacobowitz <drow@mvista.com>
7638
7639 * configure.in (TOPLEVEL_CONFIGURE_ARGUMENTS, baseargs): Fix
7640 quoting.
7641 * configure: Regenerated.
7642
7643 2003-09-12 Michael Chastain <mec@shout.net>
7644
7645 Fix PR gdb/857.
7646 * src-release (do-proto-topleve): Remove junk files
7647 intl/config.cache, intl/config.status,
7648 intl/config.h, intl/stamp-h.
7649
7650 2003-09-14 Andrew Cagney <cagney@redhat.com>
7651
7652 * src-release (dejagnu.tar): New target.
7653 (dejagnu.tar.bz2): Recursively call "gdb-taz" rule.
7654 (do-djunpack): Use $(PACKAGE) for the package name.
7655
7656 2003-09-04 DJ Delorie <dj@redhat.com>
7657
7658 * configure: Regenerate.
7659
7660 2003-09-04 Robert Millan <robertmh@gnu.org>
7661
7662 * configure.in: Match GNU/KFreeBSD with new kfreebsd*-gnu triplet.
7663
7664 2003-09-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
7665
7666 * configure.in: Ensure arguments to sed are properly spaced.
7667 * configure: Regenerate.
7668
7669 2003-08-28 Daniel Jacobowitz <drow@mvista.com>
7670
7671 Merge from gcc:
7672 2003-07-20 Phil Edwards <pme@gcc.gnu.org>
7673 * install-sh: Update to newer upstream versions (associated with
7674 aclocal 1.7).
7675 * missing: Likewise, plus $1Help2man -> $1 typo fix.
7676
7677 2003-08-27 Daniel Jacobowitz <drow@mvista.com>
7678
7679 * configure.in: Set RAW_CXX_FOR_TARGET if unset.
7680 * configure: Regenerated.
7681
7682 2003-08-23 Phil Edwards <pme@gcc.gnu.org>
7683
7684 * configure.in: Use newline instead of semicolon when assuming
7685 shell arguments in a for loop.
7686 * configure: Regenerated.
7687
7688 2003-08-20 Geoffrey Keating <geoffk@apple.com>
7689
7690 PR 8180
7691 * configure.in: When testing with_libs and with_headers, treat
7692 'no' as unset. Based on a patch by Dan Kegel <dank@kegel.com>.
7693 * configure: Regenerate.
7694
7695 * configure.in (TOPLEVEL_CONFIGURE_ARGUMENTS): Quote properly for
7696 make, shell, etc.
7697 (baseargs): Likewise.
7698 * configure: Regenerate.
7699
7700 2003-08-19 Geoffrey Keating <geoffk@apple.com>
7701
7702 * configure.in: Disable libgcj for darwin not on powerpc.
7703 * configure: Rebuild.
7704
7705 2003-08-15 Michael Chastain <mec@shout.net>
7706
7707 * src-release (do-proto-toplev): Remove junk files
7708 dejagnu/example/calc/config.status,
7709 dejagnu/example/calc/config.log.
7710
7711 2003-08-14 Alexandre Duret-Lutz <adl@gnu.org>
7712
7713 * config-ml.in, symlink-tree: Add license.
7714
7715 2003-08-01 Nathanael Nerode <neroden@gcc.gnu.org>
7716
7717 Merge from gcc:
7718
7719 2003-08-01 Matt Kraai <kraai@alumni.cmu.edu>
7720 * Makefile.tpl (check, check-c++): Express dependencies using
7721 dependencies rather than commands.
7722 * Makefile.in: Regenerate.
7723
7724 2003-07-31 Geoffrey Keating <geoffk@apple.com>
7725 * Makefile.tpl (libsubdir): Use gcc instead of gcc-lib.
7726 * Makefile.in: Update.
7727
7728 2003-08-01 Andrew Cagney <cagney@redhat.com>
7729
7730 * configure.in (noconfigdirs): Do not add GDB when m32r-*-*.
7731 * configure: Ditto.
7732
7733 2003-07-30 Andreas Tobler <a.tobler@schweiz.ch>
7734
7735 * configure.in: Enable libgcj for darwin.
7736 * configure: Rebuild.
7737
7738 2003-07-29 Nathanael Nerode <neroden@gcc.gnu.org>
7739
7740 * mkinstalldirs: Import autoconf 2.57 / automake 1.7 version.
7741
7742 2003-07-27 Nathanael Nerode <neroden@gcc.gnu.org>
7743
7744 * Makefile.tpl: Use 'mkinstalldirs' rather than 'mkdir' when
7745 creating target and build subdirs to build all parent dirs as needed.
7746 * Makefile.in: Rebuild.
7747 * configure.in: Don't build dirs explicitly here.
7748 * configure: Rebuild.
7749
7750 2003-07-22 Alexandre Oliva <aoliva@redhat.com>
7751
7752 * Makefile.tpl (all-make): Depend on intl.
7753 * Makefile.in: Rebuilt.
7754
7755 2003-07-16 Nathanael Nerode <neroden@gcc.gnu.org>
7756
7757 * config.if: Remove unused libc_interface determination.
7758
7759 2003-07-14 Nathanael Nerode <neroden@gcc.gnu.org>
7760
7761 * Makefile.in: Regenerate, correctly this time.
7762
7763 2003-07-13 Nathanael Nerode <neroden@gcc.gnu.org>
7764
7765 * Makefile.tpl: Set INSTALL and friends using autoconf. Remove
7766 unused INSTALL_PROGRAM_ARGS.
7767 * configure.in: Use AC_PROG_INSTALL.
7768 * Makefile.in: Regenerate.
7769 * configure: Regenerate.
7770
7771 2003-07-10 Alexandre Oliva <aoliva@redhat.com>
7772
7773 * configure: Rebuilt.
7774 2001-09-26 Alexandre Oliva <aoliva@redhat.com>
7775 * configure.in (noconfigdirs) [am33_2.0-*-linux*]: Don't build
7776 newlib nor libgloss.
7777 Wed May 9 10:07:19 2001 Alexandre Oliva <aoliva@redhat.com>
7778 * configure.in (am33_2.0-*-linux*): Added.
7779
7780 2003-07-09 Bob Wilson <bob.wilson@acm.org>
7781
7782 * configure.in: Add ${libgcj} to noconfigdirs for xtensa-*-* targets.
7783 * configure: Regenerate.
7784
7785 2003-07-06 H.J. Lu <hongjiu.lu@intel.com>
7786
7787 * config-ml.in: Replace PWD with PWD_COMMAND.
7788 * Makefile.tpl: Likewise.
7789 * Makefile.in: Regenerated.
7790
7791 2003-06-27 Nathanael Nerode <neroden@gcc.gnu.org>
7792
7793 * configure.in: Clean up config-lang.in handling. Delete
7794 useless assignment to "subdirs".
7795 * configure: Regenerate.
7796
7797 2003-06-26 Nathanael Nerode <neroden@gcc.gnu.org>
7798
7799 * configure.in: Rename 'target_libs' to 'target_libraries'.
7800 Remove useless reference to 'target_libs'.
7801 * configure: Regenerate.
7802
7803 2003-06-23 Keith Seitz <kseitz@sources.redhat.com>
7804
7805 * Makefile.tpl: Add maybe-configure-itcl to configure-gdb.
7806 * Makefile.in: Regenerate.
7807
7808 2003-06-23 Nathanael Nerode <neroden@gcc.gnu.org>
7809
7810 * Makefile.def: Introduce flags_to_pass.
7811 * Makefile.tpl: Generate BASE_FLAGS_TO_PASS using it.
7812 * Makefile.in: Regenerate.
7813
7814 2003-06-23 Hans-Peter Nilsson <hp@bitrange.com>
7815
7816 * configure.in (noconfigdirs) <cris-*-*>: Disable target-newlib
7817 and target-libgloss.
7818 <d30v-*-*, fr30-*-*, i960-*-*, m32r-*-*>: Disable gdb.
7819 <h8300*-*-*>: Disable libf2c and ${libgcj}.
7820 * configure: Regenerate.
7821
7822 2003-06-17 Benjamin Kosnik <bkoz@redhat.com>
7823
7824 * configure.in: Update testsuite_flags to new location.
7825 * configure. Regenerate.
7826
7827 2003-06-18 Nathanael Nerode <neroden@gcc.gnu.org>
7828
7829 * Makefile.tpl: Remove BUILD_CC stuff.
7830 * Makefile.in: Regenerate.
7831
7832 2003-06-14 H.J. Lu <hongjiu.lu@intel.com>
7833
7834 * config.guess: Update to 2003-06-12 version.
7835 * config.sub: Update to 2003-06-13 version.
7836
7837 2003-06-12 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
7838
7839 * MAINTAINERS: Add myself as MIPS co-maintainer.
7840
7841 2003-06-12 H.J. Lu <hongjiu.lu@intel.com>
7842
7843 * config.guess: Update to 2003-06-06 version.
7844 * config.sub: Update to 2003-06-06 version.
7845
7846 2003-06-11 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
7847
7848 * configure.in: Don't pass --with-stabs for mips*-sgi-irix6*o32.
7849 * configure. Regenerate.
7850
7851 2003-06-10 Nathanael Nerode <neroden@gcc.gnu.org>
7852
7853 * configure.in: Disable serial configure by default.
7854 * configure: Regenerate.
7855 * Makefile.tpl: Abolish .NOTPARALLEL.
7856 * Makefile.in: Regenerate.
7857
7858 * Makefile.tpl: Replace {build,host,target}_canonical by
7859 {build,host,target}.
7860 * Makefile.in: Regenerate.
7861
7862 * Makefile.tpl: Fix stupid pasto.
7863 * Makefile.in: Regenerate.
7864
7865 2003-06-09 Nathanael Nerode <neroden@gcc.gnu.org>
7866
7867 * Makefile.tpl: Remove bogus conditional.
7868 * Makefile.in: Regenerate.
7869
7870 2003-06-03 Nathanael Nerode <neroden@gcc.gnu.org>
7871
7872 * Makefile.tpl: Make 'recursive targets' using autogen rather
7873 than shell loop. Remove duplicate 'clean' targets and false
7874 comments.
7875 * Makefile.def: Add systematic dependencies to 'recursive' targets.
7876 Add systematic method of specifying missing targets in subdirs.
7877 Add copyright boilerplate.
7878 * Makefile.in: Regenerate.
7879 * configure.in: Add 'recursive targets' to maybe list.
7880 * configure: Regenerate.
7881
7882 * Makefile.tpl: Rename [+target+] to [+make_target+].
7883 * Makefile.def: Rename 'target' to 'make_target'.
7884
7885 2003-05-30 Nick Clifton <nickc@redhat.com>
7886
7887 * README-maintainer-mode: Update URL for locating blessed config
7888 tools.
7889
7890 2003-05-29 Robert Millan <rmh@debian.org>
7891
7892 * ltconfig: Import this patch and modify for use with current
7893 version of ltconfig:
7894
7895 2003-05-21 Bruno Haible <bruno@clisp.org>
7896
7897 * libtool.m4 (AC_LIBTOOL_SYS_DYNAMIC_LINKER): Add support for
7898 GNU/FreeBSD.
7899
7900 2003-05-28 DJ Delorie <dj@redhat.com>
7901
7902 * Makefile.tpl: Make maybe-check-gcc .PHONY.
7903 * Makefile.in: Regenerate.
7904
7905 2003-05-28 Jeff Johnston <jjohnstn@redhat.com>
7906
7907 * COPYING.NEWLIB: Add license info for newlib/libc/sys/linux/stdlib.
7908
7909 2003-05-21 DJ Delorie <dj@redhat.com>
7910
7911 * Makefile.tpl (configure-target-libiberty): Depend only on gcc, not
7912 newlib or libgloss.
7913 * Makefile.in: Regenerate.
7914
7915 2003-05-21 DJ Delorie <dj@redhat.com>
7916
7917 * Makefile.tpl: Add missing empty maybe-check-gcc target.
7918 * Makefile.in: Regenerate.
7919
7920 2003-05-20 Maciej W. Rozycki <macro@ds2.pg.gda.pl>
7921
7922 * configure.in: Use curly braces in the definition of tooldir.
7923 * configure: Regenerate.
7924
7925 2003-05-19 Nathanael Nerode <neroden@gcc.gnu.org>
7926
7927 * configure.in: Switch more things to use maybe dependencies.
7928 * Makefile.tpl: Switch more things to use maybe dependencies.
7929 Factor out common code from autogen IF statements.
7930 * configure: Regenerate.
7931 * Makefile.in: Regenerate.
7932
7933 2003-05-14 Kelley Cook <kelleycook@wideopenwest.com>
7934
7935 * configure.in: Accept i[3456789]86 for machine type.
7936 * configure: Regenerate.
7937
7938 2003-05-18 Nathanael Nerode <neroden@gcc.gnu.org>
7939
7940 * configure.in: Switch more things to use maybe dependencies.
7941 Rearrange a little. Use GCC_TOPLEV_SUBDIRS.
7942 * configure: Regenerate.
7943 * Makefile.tpl: Switch more things to use maybe dependencies.
7944 * Makefile.in: Regenerate.
7945
7946 2003-05-16 Andreas Schwab <schwab@suse.de>
7947
7948 * Makefile.tpl (install-opcodes): Define.
7949 * Makefile.in: Rebuild.
7950
7951 2003-05-13 Andreas Jaeger <aj@suse.de>
7952
7953 * config.guess: Update to 2003-05-09 version.
7954 * config.sub: Update to 2003-05-09 version.
7955
7956 2003-05-13 Michael Eager <eager@mvista.com>
7957
7958 * configure.in: Correct sed script so that options in quotes are not
7959 deleted.
7960 * configure: Rebuild.
7961
7962 2003-05-12 Corinna Vinschen <corinna@vinschen.de>
7963
7964 * configure.in (FLAGS_FOR_TARGET): Remove $$s/newlib/libc/sys/cygwin
7965 and $$s/newlib/libc/sys/cygwin32 include paths.
7966 * configure: Ditto.
7967
7968 2003-05-05 H.J. Lu <hjl@gnu.org>
7969
7970 * config-ml.in: Restored from gcc repository.
7971
7972 2003-05-02 Chris Demetriou <cgd@broadcom.com>
7973
7974 * Makefile.tpl: Require "makeinfo" from texinfo 4.2 or later.
7975 * Makefile.in: Regenerate.
7976
7977 2003-04-27 Daniel Jacobowitz <drow@mvista.com>
7978
7979 * src-release (DEVO_SUPPORT): Add src-release, Makefile.tpl,
7980 and Makefile.def.
7981
7982 2003-04-27 Daniel Jacobowitz <drow@mvista.com>
7983
7984 * Makefile.tpl: Clean $(BUILD_SUBDIR).
7985 * Makefile.in: Regenerated.
7986
7987 2003-04-18 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
7988
7989 * Makefile.tpl (MAKEINFOFLAGS): Default to --split-size=5000000.
7990 * Makefile.in: Regenerate.
7991
7992 2003-04-18 Jakub Jelinek <jakub@redhat.com>
7993
7994 * configure.in (powerpc64*-*-linux*): Remove.
7995 * configure: Rebuilt.
7996
7997 2003-04-17 Phil Edwards <pme@gcc.gnu.org>
7998
7999 * Makefile.tpl (GCC_STRAP_TARGETS): New variable containing all the
8000 previous bootstrap targets, plus bubblestrap, quickstrap, cleanstrap,
8001 and restrap.
8002 * Makefile.in: Regenerate.
8003
8004 2003-04-16 Richard Earnshaw <rearnsha@arm.com>
8005
8006 * configure.in (arm-*-netbsdelf*): Enable building java libraries.
8007 * configure: Regenerated.
8008
8009 2003-04-11 Alexandre Oliva <aoliva@redhat.com>
8010
8011 * libtool.m4 (lt_cv_deplibs_check_method): Use pass_all on mips*.
8012 * */configure: Rebuilt.
8013
8014 2003-03-14 Nathanael Nerode <neroden@gcc.gnu.org>
8015
8016 * Makefile.tpl: Move .NOEXPORT, MAKEOVERRIDES back down.
8017 * Makefile.in: Regenerate.
8018
8019 2003-03-14 Michael Chastain <mec@shout.net>
8020
8021 * Makefile.in: Regenerate with correct Makefile.def.
8022
8023 2003-03-12 Nathanael Nerode <neroden@gcc.gnu.org>
8024
8025 * Makefile.tpl: Move .NOEXPORT, MAKEOVERRIDES up. Delete unused
8026 Make macro.
8027 * Makefile.in: Regenerate.
8028 * configure.in: Clean up gxx_include_dir logic.
8029 * configure: Regenerate.
8030
8031 2003-03-09 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
8032
8033 * configure.in (gxx_include_dir): Fix typo.
8034 * configure: Regenerated.
8035
8036 2003-03-06 Andrew Cagney <cagney@redhat.com>
8037
8038 * texinfo/texinfo.tex: Import version 2003-02-03.16.
8039
8040 2003-03-04 Daniel Jacobowitz <drow@mvista.com>
8041
8042 * configure.in: Include $(build_tooldir)/sys-include in
8043 FLAGS_FOR_TARGET.
8044 * configure: Regenerated.
8045
8046 2003-03-04 Nathanael Nerode <neroden@gcc.gnu.org>
8047
8048 * Makefile.tpl: Reindent.
8049 * Makefile.in: Regenerate.
8050 * configure.in: Reindent. Don't set unused variables.
8051 * configure: Regenerate.
8052
8053 * Makefile.tpl: Always pass down RANLIB.
8054 * Makefile.in: Regenerate.
8055
8056 * Makefile.tpl: Don't set unused enable_shared, enable_threads macros.
8057 * Makefile.in: Regenerate.
8058 * configure.in: Remove unused logic relating to --enable-shared
8059 and --enable-threads. Remove bogus comments. Remove redundant
8060 noconfigdirs.
8061 * configure: Regenerate.
8062
8063 * configure.in: Replace ${libstdcxx_version} by its value.
8064 Remove reference to mh-dgux.
8065 * configure: Regenerate.
8066
8067 2003-02-28 Nathanael Nerode <neroden@gcc.gnu.org>
8068
8069 * Makefile.tpl: Rearrange.
8070 * Makefile.in: Regenerate.
8071
8072 2003-02-25 Nick Clifton <nickc@redhat.com>
8073
8074 * configure: Remove site-file supprot - it is obsolete.
8075
8076 2003-02-24 Uwe Stieber <uwe@wwws.de>
8077
8078 * configure.in: Add support for kaOS as cross build target system.
8079 * configure: Regenerated.
8080
8081 2003-02-20 Sean McNeil <sean@blue.mcneil.com>
8082
8083 * Makefile.tpl: Add definition of CPPFLAGS to pass into
8084 configure-target-* as some target builds may require additional
8085 flags for preprocessor tests.
8086 * Makefile.in: Regenerated.
8087
8088 2003-02-19 Alexandre Oliva <aoliva@redhat.com>
8089
8090 * libtool.m4 (LD): Append -melf* option to LD on IRIX with GNU ld.
8091 * ltconfig: Handle it.
8092 * ltcf-cxx.sh: Use with_gnu_ld passed as a shell variable instead of
8093 auto-detecting it.
8094
8095 2003-02-19 Alexandre Oliva <aoliva@redhat.com>
8096
8097 * ltcf-cxx.sh: Replace $linker_flags with $compiler_flags wherever
8098 it is used as argument to $CC.
8099 * ltcf-gcj.sh: Likewise.
8100
8101 2003-02-19 Alexandre Oliva <aoliva@redhat.com>
8102
8103 * configure.in: Introduce --enable-maintainer-mode.
8104 * configure: Rebuilt.
8105 * Makefile.tpl (Makefile.in, configure): Enable dependencies only
8106 for maintainer mode.
8107 * Makefile.in: Rebuilt.
8108
8109 2003-02-19 Andrew Cagney <ac131313@redhat.com>
8110
8111 * configure: Regenerate using autoconf 2.13.
8112
8113 2003-02-19 Alan Modra <amodra@bigpond.net.au>
8114
8115 * config.guess: Import latest version.
8116 * config.sub: Import latest version.
8117
8118 2003-02-18 Jason Merrill <jason@redhat.com>
8119
8120 * Makefile.tpl (check-c++): Allow parallelism.
8121
8122 2003-02-17 Andrew Cagney <ac131313@redhat.com>
8123
8124 * configure: Regenerate using autoconf 000227.
8125
8126 2003-02-15 Geoffrey Keating <geoffk@apple.com>
8127
8128 * configure.in (*-*-darwin*): Rename from powerpc*-*-darwin*,
8129 don't configure target-libobjc.
8130 * configure: Regenerate.
8131
8132 2003-02-14 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
8133
8134 * Makefile.tpl (RANLIB): Define.
8135 * Makefile.in: Regenerate.
8136
8137 2003-02-06 Keith R Seitz <keiths@redhat.com>
8138
8139 * Makefile.def: Remove "snavigator", "grep", and "db" modules.
8140 * Makefile.tpl: Remove "all-snavigator" and "all-grep".
8141 * Makefile.in: Regenerated.
8142 * configure.in: Remove all traces of snavigator, db, and grep.
8143 * configure: Regenerated.
8144
8145 2003-01-31 Frank Ch. Eigler <fche@redhat.com>
8146
8147 * Makefile.tpl (all-sid): Add libiberty/bfd/opcodes dependencies.
8148 * Makefile.in: Regenerated.
8149
8150 2003-01-30 Alexandre Oliva <aoliva@redhat.com>
8151
8152 * config.if: Copy from GCC.
8153
8154 2003-01-27 Phil Edwards <pme@gcc.gnu.org>
8155
8156 * configure.in: Revert 24Jan change.
8157 * configure: Regenerate.
8158
8159 2003-01-23 Nathanael Nerode <neroden@gcc.gnu.org>
8160
8161 * configure.in: Revert previous change.
8162 * configure: Regenerate.
8163
8164 2003-01-23 Nathanael Nerode <neroden@gcc.gnu.org>
8165
8166 * configure.in: Make rda native-only.
8167 * configure: Regenerate.
8168
8169 2003-01-19 Nathanael Nerode <neroden@gcc.gnu.org>
8170
8171 * configure.in: Add missing \.
8172 * configure: Rebuilt.
8173
8174 2003-01-17 Jakub Jelinek <jakub@redhat.com>
8175
8176 * configure.in (baseargs): Avoid using \| in sed regular
8177 expressions.
8178 * configure: Rebuilt.
8179
8180 2003-01-16 Jakub Jelinek <jakub@redhat.com>
8181
8182 * configure.in (baseargs): Remove all supported forms of
8183 --cache-file, --srcdir, --host, --build and --target options
8184 from argument lists.
8185 * configure: Rebuilt.
8186
8187 2003-01-15 Alexandre Oliva <aoliva@redhat.com>
8188
8189 * configure.in (noconfigdirs): Don't skip gas on IRIX 6.
8190 * configure: Rebuilt.
8191
8192 2003-01-09 Nathanael Nerode <neroden@gcc.gnu.org>
8193
8194 * configure.in: Substitute TOPLEVEL_CONFIGURE_ARGUMENTS.
8195 * Makefile.tpl: Pass TOPLEVEL_CONFIGURE_ARGUMENTS to gcc.
8196 * Makefile.in: Regenerate.
8197 * configure: Regenerate.
8198
8199 2003-01-09 Christian Cornelssen <ccorn@cs.tu-berlin.de>
8200
8201 * Makefile.tpl (BASE_FLAGS_TO_PASS): Also pass DESTDIR.
8202 (install-info, dir.info): Prepend $(DESTDIR) to $(infodir).
8203 * Makefile.in: Regenerate.
8204
8205 2003-01-09 Alexandre Oliva <aoliva@redhat.com>
8206
8207 * configure.in: Remove Makefile in build, host and target modules
8208 unless configure was run with --no-recursion.
8209 * configure: Rebuilt.
8210
8211 2003-01-08 Chris Demetriou <cgd@broadcom.com>
8212
8213 * config.guess: Update to 2003-01-03 version.
8214 * config.sub: Update to 2003-01-03 version.
8215
8216 2003-01-07 Christopher Faylor <cgf@redhat.com>
8217
8218 * configure: Regenerate with proper autoconf 2.13.
8219
8220 2003-01-07 Christopher Faylor <cgf@redhat.com>
8221
8222 * configure.in: Add AC_PREREQ for consistency.
8223 * configure: Regenerate.
8224
8225 2003-01-06 Andrew Cagney <ac131313@redhat.com>
8226
8227 * configure.in (GDB_TK): Add tcl directories conditional on
8228 gdb/gdbtk directory being present.
8229 * configure: Regenerate.
8230
8231 2003-01-04 John David Anglin <dave.anglin@nrc.ca>
8232
8233 * configure.in (LD): Improve test for gcc. Try to set LD to the ld used
8234 by gcc if LD is not defined and we are not doing a Canadian Cross.
8235 * configure: Rebuilt.
8236
8237 2003-01-01 Daniel Jacobowitz <drow@mvista.com>
8238
8239 * src-release (ETC_SUPPORT): Add fdl.texi and texi2pod.pl.
8240
8241 2002-12-31 Tom Tromey <tromey@redhat.com>
8242
8243 * Makefile.in: Rebuilt.
8244 * Makefile.def (target_modules) [libffi]: Allow installation.
8245
8246 2002-12-31 Andreas Schwab <schwab@suse.de>
8247
8248 * configure.in: Fix use of $program_transform_name.
8249 * configure: Regenerated.
8250
8251 2002-12-30 Daniel Jacobowitz <drow@mvista.com>
8252
8253 * configure.in (baseargs): Don't remove first configure argument.
8254 * configure: Regenerated.
8255
8256 2002-12-29 Alexandre Oliva <aoliva@redhat.com>
8257
8258 * Makefile.tpl (local-distclean): Don't remove...
8259 (multilib.ts): ... this. Moved into...
8260 (multilib.out): ... this. Don't use sub-make.
8261 ($(BUILD_SUBDIR)/[+module+]/Makefile, [+module+]/Makefile,
8262 $(TARGET_SUBDIR)/[+module+]/Makefile, gcc/Makefile): Moved into...
8263 (configure-build-[+module+], configure-[+module+],
8264 configure-target-[+module+], configure-gcc): ... these. Test
8265 for Makefile existence. Drop config.status from dependencies.
8266 * Makefile.in: Rebuilt.
8267 * configure.in: Move gcc-version-trigger to the end of
8268 ac_configure_args. Add comments to maybedep.tmp and
8269 serdep.tmp. Introduce --disable-serial-configure. Remove
8270 nonopt from baseargs, matching and removing corresponding
8271 whitespace while at it.
8272 * configure: Rebuilt.
8273
8274 2002-12-28 Alexandre Oliva <aoliva@redhat.com>
8275
8276 * configure.in (host_configargs): Replace reference to
8277 no-longer-defined buildopts with --build=${build_alias}.
8278 * configure: Rebuilt.
8279
8280 2002-12-28 Alexandre Oliva <aoliva@redhat.com>
8281
8282 * Makefile.tpl ($(NOTPARALLEL)): Move to the end. Bring uses of
8283 program_transform_name to standard idiom.
8284 (AUTOGEN, AUTOCONF): Define.
8285 (Makefile.in): Use $(AUTOGEN).
8286 (Makefile): Depend on config.status, and use autoconf-style rule to
8287 build it. Move original commands to...
8288 (config.status): ... this new target.
8289 (configure): Add $(srcdir). Depend on config/acx.m4. Use
8290 $(AUTOCONF).
8291 * Makefile.in: Rebuilt.
8292
8293 2002-12-28 Nathanael Nerode <neroden@gcc.gnu.org>
8294
8295 * Makefile.tpl: Fix dramatic bustage due to change in
8296 program_transform_name.
8297 * Makefile.in: Regenerate.
8298
8299 * configure.in: Remove unnecessary PATH setting.
8300 * configure: Regnerate.
8301
8302 * configure.in: Don't default to unprefixed tools unless
8303 the native tools will work.
8304 * configure: Regenerate.
8305
8306 * configure.in: Convert to autoconf script. Blow away lots
8307 of now-redundant Makefile fragments.
8308 * configure: Generate using Autoconf.
8309 * Makefile.tpl: Rewrite to reflect autoconfiscation.
8310 * Makefile.in: Regenerate.
8311
8312 2002-12-27 Nathanael Nerode <neroden@gcc.gnu.org>
8313
8314 * configure: Remove unneeded 'export's. Make CC_FOR_TARGET,
8315 CXX_FOR_TARGET, GCJ_FOR_TARGET substituted in configure.in only.
8316
8317 * ChangeLog: Move a couple of entries from here to winsup/cygwin,
8318 where they belong.
8319
8320 2002-12-24 Andreas Schwab <schwab@suse.de>
8321
8322 * Makefile.tpl (multilib.out): Fix missing space.
8323 * Makefile.in: Regenerate.
8324
8325 2002-12-23 Nathanael Nerode <neroden@gcc.gnu.org>
8326
8327 * Makefile.tpl: Use shared multilib.out. Use move-if-change for it.
8328 Convert (cd foo; make) to (cd foo && make). Clean up multilib.out.
8329 * Makefile.in: Regenerate.
8330 * configure.in: Remove unnecessary leftovers.
8331
8332 2002-12-21 Geoffrey Keating <geoffk@apple.com>
8333
8334 * configure.in (extra_ranlibflags_for_target): New variable.
8335 (*-*-darwin): Add -c to ranlib commands.
8336 * configure (tooldir): Handle extra_ranlibflags_for_target.
8337
8338 2002-12-20 Jeff Johnston <jjohnstn@redhat.com>
8339
8340 * COPYING.NEWLIB: Updated.
8341 * COPYING.LIBGLOSS: Ditto.
8342
8343 2002-12-19 Nathanael Nerode <neroden@gcc.gnu.org>
8344
8345 * Makefile.tpl: Revert HJL's change.
8346 * Makefile.in: Regenerated.
8347 * configure.in: Put build_prefix before $(BUILD_SUBDIR) here, and
8348 always.
8349
8350 2002-12-19 Andreas Schwab <schwab@suse.de>
8351
8352 * Makefile.tpl, configure.in: Substitute libstdcxx_incdir.
8353 * Makefile.in: Regenerate.
8354
8355 2002-12-18 H.J. Lu <hjl@gnu.org>
8356
8357 * Makefile.tpl: Add @build_prefix@ before $(BUILD_SUBDIR).
8358 * Makefile.in: Regenerated.
8359
8360 * configure.in (build_prefix): New. Substitute.
8361
8362 2002-12-18 Nathanael Nerode <neroden@gcc.gnu.org>
8363
8364 * Makefile.tpl: Don't let real targets depend on phony targets.
8365 * Makefile.in: Regenerate.
8366
8367 * Makefile.tpl (do-info): Depend on maybe-all-texinfo, not all-texinfo.
8368 * Makefile.in: Regenerate.
8369
8370 2002-12-16 Jason Merrill <jason@redhat.com>
8371
8372 * Makefile.tpl (all-gcc): Use 'make quickstrap' if there was a
8373 previous 'make bootstrap'.
8374 * Makefile.in: Regenerate.
8375
8376 2002-12-17 Hans-Peter Nilsson <hp@bitrange.com>
8377
8378 * configure.in (noconfigdirs) [mmix-*-*]: Disable libgloss and gdb.
8379
8380 2002-12-13 Jason Merrill <jason@redhat.com>
8381
8382 * Makefile.tpl (check-gcc-c++): Renamed from check-c++. Don't run
8383 library tests.
8384 (check-c++): Just depend on it and check-target-libstdc++-v3.
8385 * Makefile.in: Regenerate.
8386
8387 2002-12-13 Nathanael Nerode <neroden@gcc.gnu.org>
8388
8389 * configure.in, Makefile.tpl, Makefile.def: Remove tclX.
8390 * Makefile.in: Regenerate.
8391
8392 2002-12-12 Jeff Johnston <jjohnstn@redhat.com>
8393
8394 * COPYING.NEWLIB: Update list of alternate Regent of California
8395 licenses and discuss official revoking of advertising clause.
8396 * COPYING.LIBGLOSS: Ditto.
8397
8398 2002-12-12 Alexandre Oliva <aoliva@redhat.com>
8399
8400 * Makefile.tpl (configure-target-rda): Depend on $(ALL_GCC_C).
8401 * Makefile.in: Rebuilt.
8402
8403 2002-12-10 Nathanael Nerode <neroden@gcc.gnu.org>
8404
8405 * configure: Fix bug put in by gremlins.
8406
8407 * Makefile.tpl: Substitute more autoconfily.
8408 * configure: Substitute more autoconfily.
8409 * Makefile.in: Regenerate.
8410
8411 2002-12-08 Andrew Cagney <ac131313@redhat.com>
8412
8413 * Makefile.tpl (all-sim): Depend on maybe-configure-gdb.
8414 * Makefile.in (all-sim): Ditto.
8415
8416 2002-12-06 DJ Delorie <dj@redhat.com>
8417
8418 * Makefile.tpl: Change configure dependencies to not have real
8419 targets depend on phony targets.
8420
8421 2002-12-05 Nathanael Nerode <neroden@gcc.gnu.org>
8422
8423 * configure.in: Revert unintentional change.
8424
8425 * src-release: Configure host subdirs.
8426
8427 * Makefile.tpl: Change dependency for */multilib.out so that
8428 it works when gcc isn't in the tree.
8429
8430 * configure.in: Substitute more.
8431 * configure: Run subconfigures from the Makefile.
8432 * Makefile.tpl: Run subconfigures from the Makefile; add a few
8433 convenience targets. Make sure gcc isn't rebuilt after bootstrap.
8434
8435 2002-12-03 Nathanael Nerode <neroden@gcc.gnu.org>
8436
8437 * Makefile.tpl: Add targets for configuring host subdirs in Makefile,
8438 and corresponding dependencies.
8439 * Makefile.in: Regenerate.
8440
8441 * configure.in (host_tools): Order binutils, gas and ld for
8442 convenience in running the testsuites.
8443
8444 * Makefile.tpl: Introduce rules to serialize subconfigure runs.
8445 * Makefile.in: Regenerate.
8446 * configure.in: Introduce rules to serialize subconfigure runs.
8447
8448 * configure.in: Introduce BASE_CC_FOR_TARGET.
8449 * Makefile.tpl: Reorganize and comment. Introduce HOST_CONFIGARGS.
8450 Realize configure-build-* targets. Realize configure-target-* targets.
8451 * Makefile.in: Regenerate.
8452
8453 2002-12-02 Nathanael Nerode <neroden@gcc.gnu.org>
8454
8455 * configure: Move gcc_version_trigger stuff from here...
8456 * configure.in: ...to here.
8457
8458 * configure.in: Separate subconfigure options added by this file from
8459 options given by the user. Add machinery to put args for host
8460 subconfigures into the Makefile.
8461
8462 * Makefile.tpl: Remove 'vault' targets.
8463 * Makefile.tpl: Reorder and comment dependencies.
8464 * Makefile.in: Regenerate.
8465
8466 2002-11-28 Geoffrey Keating <geoffk@apple.com>
8467
8468 * configure.in: Move host-specific darwin noconfigdirs into
8469 the host-specific section.
8470
8471 2002-12-02 Nathanael Nerode <neroden@gcc.gnu.org>
8472
8473 * Makefile.tpl: Restore bkorb's style patch, accidentally lost
8474 during replay.
8475 * Makefile.in: Regenerate.
8476
8477 (finishing slow-motion replay)
8478 * configure: Remove skip-this-dir support.
8479 * Makefile.tpl: Remove skip-this-dir support.
8480
8481 * Makefile.tpl: Remove leftover support for non-autoconfiscated
8482 subdirectories.
8483 * Makefile.in: Regenerate.
8484
8485 * Makefile.tpl: Strip out useless setting of 'dir'.
8486 * Makefile.in: Regenerate.
8487
8488 2002-12-02 Nathanael Nerode <neroden@gcc.gnu.org>
8489
8490 (finishing slow-motion replay)
8491 * configure.in: Fix deeply stupid bug.
8492
8493 * configure.in: Introduce RAW_CXX_FOR_TARGET and simplify embedded
8494 shell code in CXX_FOR_TARGET
8495 * Makefile.def: Introduce raw_cxx.
8496 * Makefile.tpl: Use raw_cxx to select between CXX_FOR_TARGET and
8497 RAW_CXX_FOR_TARGET.
8498 * Makefile.in: Regenerate.
8499
8500 2002-12-02 Nathanael Nerode <neroden@gcc.gnu.org>
8501
8502 (finishing slow-motion replay)
8503 * Makefile.tpl: Remove unnecessary ifs.
8504 * Makefile.in: Regenerate.
8505
8506 * Makefile.tpl: Implement soft dependency machinery. Maybe-ize
8507 dependencies. Maybe-ize build-libiberty. Create dummy install
8508 targets for 'no_install' modules.
8509 * configure: Move GDB_TK substitution to configure.in. Move
8510 build_modules stuff to configure.in.
8511 * configure.in: Implement soft dependency machinery. Maybe-ize
8512 GDB_TK, rearrange slightly. Move build_modules stuff from configure.
8513 * Makefile.in: Regenerate.
8514
8515 2002-12-01 Nathanael Nerode <neroden@gcc.gnu.org>
8516
8517 (continuing slow-motion replay)
8518 * Makefile.tpl: Make all-target, install-target behave similarly
8519 to all, install (only hitting configured targets). Eliminate
8520 unused macro defintions.
8521
8522 * Makefile.tpl: Add all-gcc: all-build-libiberty dependency when
8523 build != host.
8524
8525 * Makefile.tpl: Add all-gcc: all-libiberty dependency.
8526
8527 * ltcf-c.sh, ltcf-gcj.sh, Makefile.tpl: Correct BUILD/HOST confusion.
8528
8529 * configure.in: Produce lists of subdir targets we're actually
8530 configuring. Remove references to "dosrel".
8531 * Makefile.tpl: Let configure set which subdir targets are hit.
8532 Remove install-cross; clean up install; remove ALL. Remove
8533 references to "dosrel". Remove "EXTRA_TARGET_HOST" hackery.
8534 Autogenerate host module targets. Remove empty dependency lines
8535 and redundant dependency; rearrange slightly.
8536 * Makefile.def: Add host-side libtermcap, utils.
8537
8538 * Makefile.in: Regenerate.
8539
8540 2002-12-01 Nathanael Nerode <neroden@gcc.gnu.org>
8541
8542 (Continuing slow-motion replay)
8543 * Makefile.def: Add list of recursive targets to autogenerate.
8544 Add build_modules.
8545 * Makefile.tpl: Autogenerate do-* targets. Autogenerate *-target-*
8546 targets. Autogenerate *-build-* targets.
8547 * Makefile.in: Regenerate.
8548
8549 2002-11-30 Nathanael Nerode <neroden@gcc.gnu.org>
8550
8551 (Continuing slow-motion replay)
8552 * configure: More autoconf-style substitutions.
8553 * Makefile.tpl: More autoconf-style substitutions.
8554 * Makefile.in: Regenerate.
8555
8556 2002-11-30 Nathanael Nerode <neroden@gcc.gnu.org>
8557
8558 (Continuing slow-motion replay)
8559 * configure: Substitute more variables in a more autoconf-friendly
8560 way. Simplify slightly.
8561 * Makefile.tpl: Make more variables substitutable in an
8562 autoconf-friendly way.
8563 * Makefile.in: Regenerate.
8564
8565 2002-11-29 Nathanael Nerode <neroden@gcc.gnu.org>
8566
8567 (Continuing slow-motion replay)
8568 * configure.in (v810*): Remove special setting of tools.
8569
8570 * configure: Add support for extra required flags for ar or nm.
8571 * configure.in (aix4.3+): Use above support for target-specific
8572 issues, rather than using config/mt-aix43.
8573
8574 2002-11-29 Nathanael Nerode <neroden@gcc.gnu.org>
8575
8576 (Starting slow-motion replay merge from gcc 3.4 b-i-b branch)
8577 * configure: Remove 'removing', which doesn't work. Replace $subdir
8578 with . everywhere. Replace $subdirs with ''. Replace $makesrcdir
8579 with $srcdir. Reformat indentation. Substitute some variables
8580 formerly hard-coded in the Makefile for build=host.
8581 * Makefile.tpl: Autogenerate more; make more autoconf-friendly.
8582 * Makefile.def: Autogenerate more.
8583 * Makefile.in: Regenerate.
8584
8585 2002-11-13 Bruce Korb <bkorb@gnu.org>
8586
8587 * Makefile.tpl: syntactic cleanup
8588
8589 2002-11-04 Kevin Buettner <kevinb@redhat.com>
8590
8591 * Makefile.def (host_modules): Add rda.
8592 * Makefile.in: Regenerate.
8593 * configure.in (target_tool): Add target-rda to list.
8594
8595 2002-10-25 Phil Edwards <pme@gcc.gnu.org>
8596
8597 * Makefile.tpl (bootstrap): Add bubblestrap, quickstrap, cleanstrap,
8598 and restrap targets to this rule.
8599 * Makefile.in: Regenerate.
8600
8601 2002-10-24 Hans-Peter Nilsson <hp@bitrange.com>
8602
8603 * configure.in (i[3456]86-*-linux*): Add check to disable
8604 ${libgcj} for glibc1.
8605
8606 2002-10-07 Svein E. Seldal <Svein.Seldal@solidas.com>
8607
8608 * configure.in: Add tic4x target.
8609
8610 2002-10-03 Nathanael Nerode <neroden@gcc.gnu.org>
8611
8612 * Makefile.tpl: Make SET_LIB_PATH substitution more autoconfy.
8613 * Makefile.tpl: Make RPATH_ENVVAR substitution more autoconfy.
8614 * configure.in: Make SET_LIB_PATH substitution more autoconfy.
8615 * configure.in: Make RPATH_ENVVAR substitution more autoconfy.
8616 * Makefile.in: Regenerate.
8617
8618 2002-10-02 Nathanael Nerode <neroden@gcc.gnu.org>
8619
8620 * Makefile.tpl: Eliminate reference to all-gui, all-libproc.
8621 * Makefile.in: Regenerate.
8622
8623 * Makefile.def: Remove order dependency comments.
8624 * Makefile.tpl: Add explicit install-install dependencies.
8625 * Makefile.in: Regenerate.
8626
8627 * Makefile.tpl: Remove material now in src-release. (Finally!)
8628 * Makefile.in: Regenerate.
8629
8630 * configure: Restore my original patch by syncing with gcc version.
8631
8632 * Bring following over from gcc:
8633
8634 2002-09-30 Ulrich Weigand <uweigand@de.ibm.com>
8635
8636 * configure.in (s390*-*-linux*): Enable libgcj.
8637
8638 2002-10-02 Nathanael Nerode <neroden@gcc.gnu.org>
8639
8640 * Makefile.in: Regenerate. This really ought to fix things. :sigh:
8641
8642 2002-10-02 Alan Modra <amodra@bigpond.net.au>
8643
8644 * configure: Move stray lines back to where they belong.
8645
8646 2002-10-01 Nathanael Nerode <neroden@gcc.gnu.org>
8647
8648 * Makefile.tpl: Insert configure-target target, for src-release.
8649
8650 * configure: Finish reverting change which Andrew Cagney started
8651 reverting. Should fix bustage.
8652
8653 * src-release (BINUTILS_SUPPORT_DIRS): Add cpu directory.
8654 * src-release: New file. Contains material for making net
8655 releases for gdb, binutils, et al., formerly in Makefile.in.
8656
8657 2002-09-30 Nick Clifton <nickc@redhat.com>
8658
8659 * cpu: New top level directory. Intended to hold input files for
8660 CGEN which have FSF copyright assignment.
8661 * Makefile.in (BINUTILS_SUPPORT_DIRS): Add cpu directory.
8662
8663 2002-09-29 Andrew Cagney <ac131313@redhat.com>
8664
8665 Revert below (note that src does not contain Makefile.tpl):
8666 * Makefile.tpl: Make subsituted variables more autoconfy.
8667 * Makefile.in: Regenerate.
8668
8669 2002-09-29 Nathanael Nerode <neroden@gcc.gnu.org>
8670
8671 * configure: Revert accidentally applied changes.
8672
8673 * Makefile.tpl: Make more autoconf-friendly.
8674 * Makefile.in: Regenerate.
8675 * configure: Make substitution more autoconf-like.
8676
8677 2002-09-28 Richard Earnshaw <rearnsha@arm.com>
8678
8679 * configure.in (arm-*-coff, strongarm-*-coff, xscale-*-coff): Use a
8680 single entry to handle all these.
8681 (arm-*-elf, strongarm-*-elf, xscale-*-elf): Likewise. Also enable
8682 libjava on arm-*-elf.
8683
8684 2002-09-27 Geoffrey Keating <geoffk@apple.com>
8685
8686 * configure.in (powerpc-*-darwin*): Don't configure BFD, TK, or the
8687 things that depend on them.
8688
8689 2002-09-25 Nathanael Nerode <neroden@gcc.gnu.org>
8690
8691 * Makefile.tpl: Make subsituted variables more autoconfy.
8692 * Makefile.in: Regenerate.
8693 * configure: Make seds more autoconfy.
8694
8695 2002-09-25 Nathanael Nerode <neroden@gcc.gnu.org>
8696
8697 * Makefile.tpl: Rewrite substituted lines to look autoconfy.
8698 * Makefile.in: Regenerate.
8699 * configure.in: Rewrite sed statements to look autoconfy.
8700
8701 * Makefile.tpl: Autogenerate *-target-* lists, dependencies of
8702 all-target-foo on configure-target-foo.
8703 * Makefile.def: Ditto.
8704 * Makefile.in: Rebuild.
8705
8706 2002-09-22 Nathanael Nerode <neroden@gcc.gnu.org>
8707
8708 * Makefile.def: New file.
8709 * Makefile.tpl: New file.
8710 * Makefile.in: Generate from Makefile.tpl with 'autogen Makefile.def'.
8711
8712 * configure.in: Minor rearrangement. Simplify tests.
8713
8714 2002-09-23 Jason Thorpe <thorpej@wasabisystems.com>
8715
8716 * configure.in (with_headers): Skip copy if value is "yes".
8717 (with_libs): Likewise.
8718
8719 2002-09-20 Nathanael Nerode <neroden@gcc.gnu.org>
8720
8721 * configure.in (*-*-netbsd*): Use noconfigdirs, not skipdirs.
8722 * configure.in (sh*-*-pe*): Ditto.
8723 * configure.in (mips*-*-pe*): Ditto.
8724 * configure.in (*arm-wince-pe): Ditto.
8725
8726 * configure.in: Rearrange.
8727
8728 2002-09-12 Nick Clifton <nickc@redhat.com>
8729
8730 * Import these changes from the config master repository:
8731
8732 2002-09-05 Svein E. Seldal <Svein.Seldal@solidas.com>
8733
8734 * config.sub: Add tic4x target.
8735
8736 2002-09-03 Ben Elliston <bje@redhat.com>
8737
8738 * config.guess: Detect NSR-D machines for nsr-tandem-nsk.
8739 Reported by <Duncan_Stodart@insession.com>.
8740
8741 2002-09-10 Jeff Johnston <jjohnstn@redhat.com>
8742
8743 * COPYING.NEWLIB: More updates.
8744
8745 2002-09-09 Jeff Johnston <jjohnstn@redhat.com>
8746
8747 * COPYING.NEWLIB: Update.
8748
8749 2002-08-23 Andrew Cagney <ac131313@redhat.com>
8750
8751 * texinfo/texinfo.tex: Import version 2002-06-04.06.
8752
8753 * config.guess: Import version 2002-08-23.
8754 * config.sub: Import version 2002-08-22.
8755
8756 2002-08-20 Alexandre Oliva <aoliva@redhat.com>
8757
8758 * Makefile.in (GCC_FOR_TARGET): Prepend STAGE_CC_WRAPPER.
8759 * configure.in (CC_FOR_TARGET, GCJ_FOR_TARGET, CXX_FOR_TARGET,
8760 CXX_FOR_TARGET_FOR_RECURSIVE_MAKE): Likewise.
8761
8762 2002-08-06 Federico G. Schwindt <fgsch@olimpo.com.br>
8763
8764 * configure.in (hppa*-*-openbsd*): Treat like hppa*-*-*elf*.
8765
8766 2002-08-04 H.J. Lu (hjl@gnu.org)
8767
8768 * configure.in (mips*-*-linux*): Don't skip target-libffi.
8769
8770 2002-07-31 Alan Modra <amodra@bigpond.net.au>
8771
8772 * configure.in: Move generic linux case to end. Copy generic
8773 linux noconfigdirs to mips*-*-linux* entry and new
8774 powerpc64*-*-linux* entry. Add target-libffi for the latter.
8775
8776 2002-07-19 Chris Demetriou <cgd@broadcom.com>
8777
8778 * MAINTAINERS: Clarify on config.guess and config.sub, and add
8779 one instance of them which was missed to the list to update.
8780
8781 2002-07-16 Chris Demetriou <cgd@broadcom.com>
8782
8783 * config.guess: Update to 2002-07-09 version.
8784 * config.sub: Update to 2002-07-03 version.
8785
8786 2002-07-11 Nathanael Nerode <neroden@gcc.gnu.org>
8787
8788 * configure.in: Remove two redundant tests.
8789
8790 2002-07-11 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
8791
8792 * configure.in (mips*-*-irix6*o32): Enable stabs.
8793
8794 2002-07-08 Nathanael Nerode <neroden@gcc.gnu.org>
8795
8796 * configure.in: Don't build grez.
8797 * Makefile.in: Ditto.
8798
8799 * Makefile.in: Remove references to bsp, cygmon, libstub.
8800 * configure.in: Ditto.
8801
8802 * configure.in: Remove leftover reference to gdbtest.
8803
8804 2002-07-08 Phil Edwards <pme@gcc.gnu.org>
8805
8806 * configure.in (gxx_include_dir): Change to match versioned
8807 C++ headers if --enable-version-specific-runtime-libs is used.
8808
8809 2002-07-04 Steve Ellcey <sje@cup.hp.com>
8810
8811 * ltcf-cxx.sh (hpux*): Modify to support ia64-*-hpux*.
8812
8813 2002-07-03 Nathanael Nerode <neroden@gcc.gnu.org>
8814
8815 * configure.in: Make --without-x work.
8816
8817 2002-07-03 Nick Clifton <nickc@cambridge.redhat.com>
8818
8819 * contrib: New directory. Created to contain a copy of the
8820 texi2pod.pl script so that it is in the same place as the version in
8821 the FSF GCC sources.
8822
8823 2002-07-02 Nathanael Nerode <neroden@gcc.gnu.org>
8824
8825 * configure.in: Rearrange target Makefile fragment collection.
8826
8827 * Makefile.in: Don't try to build gdbtest, tgas, ispell, inet, or
8828 cvs[src].
8829 * configure.in: Ditto.
8830
8831 2002-07-01 Nathanael Nerode <neroden@gcc.gnu.org>
8832
8833 * Makefile.in: Eliminate 'apache' targets.
8834 * configure.in: Eliminate 'apache' targets.
8835
8836 * configure.in: Eliminate redundant tests. Reorganize.
8837
8838 * Makefile.in: Eliminate last reference to LIBGCC1_TEST.
8839
8840 * config-ml.in: Eliminate references to Cygnus configure.
8841
8842 * Makefile.in: Eliminate references to building emacs.
8843
8844 2002-07-01 Denis Chertykov <denisc@overta.ru>
8845
8846 * configure.in: Add support for ip2k.
8847
8848 2002-06-24 Ben Elliston <bje@redhat.com>
8849
8850 * configure.in (host_tools): Remove cgen.
8851
8852 * Makefile.in (all-cgen): Remove; runs from its source directory.
8853 (check-cgen, install-cgen, clean-cgen): Likewise.
8854 (all-opcodes): No not depend on all-cgen.
8855 (all-sim): Likewise.
8856
8857 2002-06-22 Nathanael Nerode <neroden@twcny.rr.com>
8858
8859 * configure.in: Fix AIX configury bug.
8860
8861 2002-06-19 Nathanael Nerode <neroden@twcny.rr.com>
8862
8863 * configure.in: Replace ${topsrcdir} with ${srcdir}.
8864
8865 * configure.in: Move definition of libstdcxx_flags right above
8866 usage, rather than way earlier.
8867
8868 * configure.in: Pull definition of is_cross_compiler earlier.
8869
8870 * configure.in: Rearrange a little.
8871
8872 * configure.in: Remove references to librx.
8873 * Makefile.in: Remove references to librx.
8874
8875 2002-06-19 Nathanael Nerode <neroden@twcny.rr.com>
8876
8877 * configure.in: Eliminate ${gasdir} variable.
8878
8879 2002-06-18 Dave Brolley <brolley@redhat.com>
8880
8881 * configure.in: Add support for frv.
8882 * config.sub: Add support for frv.
8883
8884 2002-06-12 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
8885
8886 * Makefile.in (CFLAGS_FOR_TARGET): Add -O2.
8887
8888 2002-06-08 Jason Thorpe <thorpej@wasabisystems.com>
8889
8890 * configure.in (vax-*-netbsd*): Re-enable gas.
8891
8892 2002-05-31 Nathanael Nerode <neroden@twcny.rr.com>
8893
8894 * Makefile.in: Replace HOST_PREFIX, HOST_PREFIX_1 with BUILD_PREFIX,
8895 BUILD_PREFIX_1, to correct nomenclature.
8896 * configure: Likewise.
8897
8898 * Makefile.in: Eliminate version-specific references to tcl8.1, tk8.1.
8899 * configure.in: Eliminate version-specific references to tcl8.1, tk8.1.
8900
8901 2002-05-31 Olaf Hering <olh@suse.de>
8902
8903 * config-ml.in: Propogate DESTDIR also.
8904
8905 2002-05-29 Jason Thorpe <thorpej@wasabisystems.com>
8906
8907 * configure.in (vax-*-netbsd*): Don't build gas for this
8908 platform.
8909
8910 2002-05-28 Marek Michalkiewicz <marekm@amelek.gda.pl>
8911
8912 * configure.in (noconfigdirs): Don't compile libiberty, libstdcxx
8913 and libgcj for AVR.
8914
8915 2002-05-28 Nick Clifton <nickc@cambridge.redhat.com>
8916
8917 * config.sub: Add DLX target.
8918
8919 2002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
8920
8921 * config.guess: Update to 2002-05-22 version.
8922 * config.sub: Likewise.
8923
8924 2002-05-16 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
8925
8926 * Makefile.in: Allow for PWDCMD to override hardcoded pwd.
8927 * config-ml.in: Likewise.
8928 * configure: Likewise.
8929 * configure.in: Likewise.
8930
8931 2002-05-13 Nathanael Nerode <neroden@twcny.rr.com>
8932
8933 * configure.in: Simplify makefile fragment collection.
8934
8935 * configure.in: Remove code to build emacs.
8936
8937 * configure.in : Remove --srcdir argument from targargs and buildargs
8938 (it's always overridden in the Makefile anyway). Rearrange a bit.
8939
8940 * configure: Move some logic to configure.in.
8941 * configure.in: Move some logic from configure.
8942
8943 2002-05-07 Jeff Johnston <jjohnstn@redhat.com>
8944
8945 * COPYING.LIBGLOSS: New file.
8946
8947 2002-05-07 Federico G. Schwindt <fgsch@olimpo.com.br>
8948
8949 * Makefile.in: Honour DESTDIR.
8950
8951 2002-05-05 Alexandre Oliva <aoliva@redhat.com>
8952
8953 * configure.in (noconfigdirs): Don't disable libgcj on
8954 sparc64-*-solaris* and sparcv9-*-solaris*.
8955
8956 2002-05-03 Alexandre Oliva <aoliva@redhat.com>
8957
8958 * configure.in: Revert 2002-04-18's patch; fixed in libjava.
8959
8960 2002-05-03 Thomas Fitzsimmons <fitzsim@redhat.com>
8961
8962 * configure.in (FLAGS_FOR_TARGET): Do not add
8963 -B$$r/$(TARGET_SUBDIR)/newlib/ when compiling newlib natively
8964 on i[3456]86-*-linux*.
8965
8966 2002-05-01 Thomas Fitzsimmons <fitzsim@redhat.com>
8967
8968 * configure.in (noconfigdirs): Replace [ ] with test.
8969
8970 * configure.in (noconfigdirs): Do not add target-newlib if
8971 target == i[3456]86-*-linux*, and host == target.
8972
8973 2002-04-29 Mark Mitchell <mark@codesourcery.com>
8974
8975 * config.guess: Updated to 2002-04-26's version.
8976 * config.sub: Updated to 2002-04-26's version.
8977
8978 2002-04-29 Nathanael Nerode <neroden@doctormoo.dyndns.org>
8979
8980 * configure.in: delete reference to absent file
8981
8982 * configure.in: replace '[' with 'test'
8983
8984 * configure.in: Eliminate references to gash.
8985 * Makefile.in: Eliminate references to gash.
8986
8987 * configure.in: remove useless references to 'pic' makefile fragments.
8988
8989 * configure.in: (*-*-windows*) Finish removing.
8990
8991 * configure.in: Eliminate redundant test for libgui.
8992
8993 2002-04-26 Joel Sherrill <joel@OARcorp.com>
8994
8995 * configure.in (h8300*-*-rtems*): Disable libf2c and libgcj.
8996 (sparc-*-elf*, sparc64-*-elf*): Disable libgcj.
8997
8998 2002-04-19 Nathanael Nerode <neroden@twcny.rr.com>
8999
9000 * configure.in: remove references to dead files
9001
9002 2002-04-18 Tom Tromey <tromey@redhat.com>
9003
9004 * configure.in: Disallow configuring libgcj when it is already
9005 installed and we're using Solaris 2.8 linker. Do enable libgcj on
9006 Solaris 2.8 by default. For PR libgcj/6158.
9007
9008 2002-04-17 Nathanael Nerode <neroden@twcny.rr.com>
9009
9010 * configure.in: Move default CC setting out of config/mh-* fragments
9011 directly into here.
9012
9013 2002-04-17 Nathanael Nerode <neroden@twcny.rr.com>
9014
9015 * configure.in: don't even try to configure or make a subdirectory
9016 if there's no configure script for it.
9017
9018 2002-04-15 Mark Mitchell <mark@codesourcery.com>
9019
9020 * MAINTAINERS: Remove chill maintainers.
9021 * Makefile.in (CHILLFLAGS): Remove.
9022 (CHILL_LIB): Remove.
9023 (TARGET_CONFIGDIRS): Remove libchill.
9024 (CHILL_FOR_TARGET): Remove.
9025 (BASE_FLAGS_TO_PASS): Don't pass CHILLFLAGS, CHILL_FOR_TARGET, or
9026 CHILL_LIB.
9027 (CONFIGURE_TARGET_MODULES): Remove configure-target-libchill.
9028 (CHECK_TARGET_MODULES): Likewise.
9029 (INSTALL_TARGET_MODULES): Likewise.
9030 (CLEAN_TARGET_MODULES): Likewise.
9031 (configure-target-libchill): Remove.
9032 (all-target-libchill): Remove.
9033 * configure.in (target_libs): Remove target-libchill.
9034 Do not compute CHILL_FOR_TARGET.
9035 * libchill: Remove directory.
9036
9037 2002-04-15 DJ Delorie <dj@redhat.com>
9038
9039 * Makefile.in, configure.in, configure: Sync with gcc, entries
9040 follow...
9041
9042 2002-04-08 Tom Tromey <tromey@redhat.com>
9043
9044 * configure.in: Add FLAGS_FOR_TARGET to GCJ_FOR_TARGET.
9045 Fixes PR libgcj/6068.
9046
9047 2002-03-30 Krister Walfridsson <cato@df.lth.se>
9048
9049 * configure.in (i*86-*-netbsdelf*): Don't disable libgcj.
9050
9051 2002-03-27 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
9052
9053 * configure.in (alpha*-dec-osf*): Enable libgcj.
9054
9055 2002-03-24 Nick Clifton <nickc@cambridge.redhat.com>
9056
9057 Fix for: PR bootstrap/3591, target/5676
9058 * configure.in (mcore-pe): Disable the configuration of
9059 libstdc++-v3 since exceptions are not supported.
9060
9061 2002-03-20 Anthony Green <green@redhat.com>
9062
9063 * configure.in: Enable libgcj for xscale-elf target.
9064
9065 2002-02-28 Alexandre Oliva <aoliva@redhat.com>
9066
9067 * configure.in (libstdcxx_flags): Don't add libstdc++-v3 flags for
9068 libjava.
9069 (CXX_FOR_TARGET): Explain why -shared-libgcc here.
9070
9071 2002-02-22 Alexandre Oliva <aoliva@redhat.com>
9072
9073 * configure.in (CXX_FOR_TARGET): Add -shared-libgcc for
9074 libstdc++-v3 and libjava.
9075
9076 2002-02-11 Adam Megacz <adam@xwt.org>
9077
9078 * gcc/Makefile.in: Removed libstdc++-v3 dependancy for libjava and
9079 boehm-gc
9080
9081 2002-02-09 Alexandre Oliva <aoliva@redhat.com>
9082
9083 * config.guess: Updated to 2002-01-30's version.
9084 * config.sub: Updated to 2002-02-01's version.
9085 Contribute sh64-elf.
9086 2000-12-01 Alexandre Oliva <aoliva@redhat.com>
9087 * configure.in: Added sh64-*-*.
9088
9089 2002-01-17 H.J. Lu <hjl@gnu.org>
9090
9091 * Makefile.in (all-fastjar): Also depend on all-libiberty.
9092 (all-target-fastjar): Also depend on all-target-libiberty.
9093
9094 Wed Dec 5 07:33:45 2001 Douglas B. Rupp <rupp@gnat.com>
9095
9096 * configure, configure.in: Use temp file for long sed commands.
9097
9098 2001-11-14 Hans-Peter Nilsson <hp@bitrange.com>
9099
9100 * configure.in (noconfigdirs) [h8300*-*-*, h8500-*-*]: Disable
9101 libf2c.
9102
9103 2001-11-03 Hans-Peter Nilsson <hp@bitrange.com>
9104
9105 * configure.in (noconfigdirs) [mmix-*-*]: Disable libgcj.
9106
9107 2001-10-11 Hans-Peter Nilsson <hp@axis.com>
9108
9109 * configure.in (noconfigdirs) [cris-*-*]: Disable libgcj.
9110
9111 2001-10-02 Joseph S. Myers <jsm28@cam.ac.uk>
9112
9113 * configure: Handle temporary files securely using mkdir.
9114
9115 2001-09-26 Will Cohen <wcohen@redhat.com>
9116
9117 * configure.in (*-*-linux*): Disable configuration of target-newlib
9118 and target-libgloss.
9119
9120 2001-09-26 Alexandre Oliva <aoliva@redhat.com>
9121
9122 * Makefile.in (EXTRA_TARGET_FLAGS): Pass RANLIB_FOR_TARGET for
9123 RANLIB.
9124
9125 2001-08-11 Graham Stott <grahams@redhat.com>
9126
9127 * Makefile.in (check-c++): Add missing semicolon.
9128
9129 2001-07-25 Andrew Haley <aph@cambridge.redhat.com>
9130
9131 * configure.in (sh-*-linux*): New.
9132
9133 2001-07-12 Stephane Carrez <Stephane.Carrez@worldnet.fr>
9134
9135 * configure.in (noconfigdirs): Don't compile libiberty, libstdcxx
9136 and libgcj on m68hc11/m68hc12.
9137
9138 2001-06-27 H.J. Lu (hjl@gnu.org)
9139
9140 * Makefile (CFLAGS_FOR_BUILD): New.
9141 (EXTRA_GCC_FLAGS): Add CFLAGS_FOR_BUILD.
9142
9143 2001-06-01 Hans-Peter Nilsson <hp@axis.com>
9144
9145 * configure.in (libstdcxx_flags): Do not try to execute
9146 libstdc++-v3/testsuite_flags until it exists.
9147
9148 2001-05-18 Benjamin Kosnik <bkoz@redhat.com>
9149
9150 * configure.in (libstdcxx_flags): Remove reference to libstdc++.INC.
9151
9152 2001-05-09 Jeffrey Oldham <oldham@codesourcery.com>
9153
9154 * ltcf-cxx.sh: Add -nostdlib to IRIX 6 archive_cmds.
9155
9156 Mon Apr 23 09:15:03 2001 Anthony Green <green@redhat.com>
9157
9158 * configure.in: Move *-chorusos target case to the proper switch.
9159 Disable libgcj.
9160
9161 2001-04-13 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
9162
9163 * Makefile.in (STAGE1_CFLAGS): Pass down.
9164
9165 2001-04-13 Alan Modra <amodra@one.net.au>
9166
9167 * config.guess: Add hppa64-linux support. Note for next import that
9168 this is already in the master file.
9169 * configure.in: Likewise. Accept `parisc' alias for `hppa'.
9170
9171 2001-03-22 Colin Howell <chowell@redhat.com>
9172
9173 * Makefile.in (DO_X): Do not backslash single-quotes in
9174 backquotes (two places).
9175
9176 2001-03-18 Laurynas Biveinis <lauras@softhome.net>
9177
9178 * Makefile.in (DO_X): Quote nested quotes.
9179
9180 2001-03-15 Laurynas Biveinis <lauras@softhome.net>
9181
9182 * Makefile.in (DO_X): Use double quotes for quoting
9183 "RANLIB=$${RANLIB}".
9184
9185 2001-03-09 Nicola Pero <n.pero@mi.flashnet.it>
9186
9187 * configure.in: Only use `lang_requires' for languages athat are
9188 actually enabled.
9189
9190 2001-03-07 Tom Tromey <tromey@redhat.com>
9191
9192 * configure.in: Allow config-lang.in to set `lang_requires' to list
9193 of other required languages.
9194
9195 2001-03-06 Laurynas Biveinis <lauras@softhome.net>
9196
9197 * Makefile.in: Remove RANLIB definition. Use RANLIB
9198 in RANLIB_FOR_TARGET, EXTRA_HOST_FLAGS, EXTRA_TARGET_FLAGS,
9199 EXTRA_GCC_FLAGS, $(DO_X) targets only when the RANLIB is set.
9200
9201 2001-02-28 Benjamin Kosnik <bkoz@redhat.com>
9202 Alexandre Oliva <aoliva@redhat.com>
9203
9204 * Makefile.in (check-c++): Use tabs, not spaces.
9205
9206 2001-02-19 Benjamin Kosnik <bkoz@redhat.com>
9207
9208 * Makefile.in (check-c++): New rule.
9209
9210 * configure.in (target_libs): Remove libg++.
9211 (noconfigdirs): Remove libg++.
9212 (noconfigdirs): Same.
9213 (noconfigdirs): Same.
9214 (noconfigdirs): Same.
9215
9216 * config-ml.in: Remove libg++ references.
9217
9218 * Makefile.in (TARGET_CONFIGDIRS): Remove libio, libstdc++, libg++.
9219 (ALL_TARGET_MODULES): Same.
9220 (configure-target-libg++): Remove.
9221 (all-target-libg++): Remove.
9222 (configure-target-libio): Remove.
9223 (all-target-libio): Remove.
9224 (check-target-libio): Remove.
9225 (.PHONY): Remove.
9226 (libg++.tar.bz2): Remove.
9227 (all-target-cygmon): Remove libio.
9228 (all-target-libstdc++): Remove.
9229 (configure-target-libstdc++): Remove.
9230 (TARGET_LIB_PATH): Remove libstdc++.
9231 (ALL_GCC_CXX): Remove libstdc++.
9232 (all-target-gperf): Correct.
9233
9234 2001-02-15 Anthony Green <green@redhat.com>
9235
9236 * configure: Introduce GCJ_FOR_TARGET.
9237 * configure.in: Ditto.
9238 * Makefile.in: Ditto.
9239
9240 2001-02-08 Chandrakala Chavva <cchavva@redhat.com>
9241
9242 * configure.in: for *-chorusos, don't config target-newlib and
9243 target-libgloss.
9244
9245 2001-02-04 Mark Mitchell <mark@codesourcery.com>
9246
9247 Remove V2 C++ library.
9248 * configure.in: Remove --enable-libstdcxx_v3 support.
9249
9250 2001-01-27 Richard Henderson <rth@redhat.com>
9251
9252 * configure.in (target_makefile_frag) [alpha*-*]: Use mt-alphaieee.
9253
9254 2001-01-26 Tom Tromey <tromey@redhat.com>
9255
9256 * configure.in: Allow libgcj to be built on Sparc Solaris.
9257
9258 2001-01-23 Bryce McKinlay <bryce@albatross.co.nz>
9259
9260 * configure.in: Enable libgcj on several additional platforms.
9261
9262 2001-01-22 Bryce McKinlay <bryce@albatross.co.nz>
9263
9264 * configure.in: Enable libgcj for linux targets.
9265
9266 2001-01-09 Mike Stump <mrs@wrs.com>
9267
9268 * Makefile.in (CONFIGURE_TARGET_MODULES): Pass back configuration
9269 failures of subdirectories.
9270
9271 2001-01-02 Laurynas Biveinis <lauras@softhome.net>
9272
9273 * configure: handle DOS-style absolute paths.
9274
9275 2001-01-02 Laurynas Biveinis <lauras@softhome.net>
9276
9277 * configure.in: remove supported directories from $noconfigdirs for DJGPP.
9278
9279 2000-12-18 Benjamin Kosnik <bkoz@redhat.com>
9280
9281 * Makefile.in (BASE_FLAGS_TO_PASS): Alphabetize.
9282 (libstdcxx_incdir): Pass down.
9283 * config.if: Remove expired bits for cxx_interface, add stub.
9284 (libstdcxx_incdir): Add variable for g++ include directory.
9285 * configure.in (gxx_include_dir): Use it.
9286
9287 2000-12-15 Andreas Jaeger <aj@suse.de>
9288
9289 * configure.in: Handle lang_dirs.
9290
9291 2000-12-13 Anthony Green <green@redhat.com>
9292
9293 * configure.in: Disable libgcj for any target not specifically
9294 listed. Disable libgcj for x86 and Alpha Linux until compatible
9295 with g++ abi.
9296
9297 2000-12-13 Mike Stump <mrs@wrs.com>
9298
9299 * Makefile.in (local-distclean): Also remove fastjar.
9300
9301 2000-12-10 Anthony Green <green@redhat.com>
9302
9303 * configure.in: Define libgcj. Disable libgcj target libraries for
9304 most targets.
9305
9306 2000-12-09 Alexandre Petit-Bianco <apbianco@cygnus.com>
9307
9308 * configure.in (target_libs): Revert 2000-12-08 patch.
9309 (noconfigdirs): Added target-libjava.
9310
9311 2000-12-09 Laurynas Biveinis <lauras@softhome.net>
9312
9313 * Makefile.in: handle DOS-style absolute paths.
9314
9315 2000-12-08 Alexandre Petit-Bianco <apbianco@cygnus.com>
9316
9317 * Makefile.in (TARGET_CONFIGDIRS): Wrong place. Removed note about
9318 libjava.
9319 * configure.in (target_libs): Removed `target-libjava'.
9320
9321 2000-12-08 Alexandre Petit-Bianco <apbianco@cygnus.com>
9322
9323 * Makefile.in (TARGET_CONFIGDIRS): Added note about libjava.
9324 (ALL_MODULES): Added fastjar.
9325 (NATIVE_CHECK_MODULES, INSTALL_MODULES, CLEAN_MODULES): Likewise.
9326 (all-target-libjava): all-fastjar replaces all-zip.
9327 (all-fastjar): Added.
9328 (configure-target-fastjar, all-target-fastjar): Likewise.
9329 * configure.in (host_tools): Added fastjar.
9330
9331 2000-12-07 Mike Stump <mrs@wrs.com>
9332
9333 * Makefile.in (local-distclean): Remove leftover built files.
9334
9335 2000-11-16 Fred Fish <fnf@be.com>
9336
9337 * configure.in (enable_libstdcxx_v3): Fix typo,
9338 libstd++ -> libstdc++.
9339
9340 2000-11-13 Joseph S. Myers <jsm28@cam.ac.uk>
9341
9342 * configure: Provide the original toplevel configure arguments
9343 (including $0) to subprocesses in the environment rather than
9344 through gcc/configargs.h.
9345
9346 2000-11-12 Mark Mitchell <mark@codesourcery.com>
9347
9348 * configure: Turn on libstdc++ V3 by default.
9349
9350 2000-10-16 Michael Meissner <meissner@redhat.com>
9351
9352 * configure (gcc/configargs.h): Only create if there is a build GCC
9353 directory created.
9354
9355 2000-10-05 Phil Edwards <pme@gcc.gnu.org>
9356
9357 * configure: Save configure arguments to gcc/configargs.h.
9358
9359 2000-10-04 Andris Pavenis <pavenis@latnet.lv>
9360
9361 * Makefile.in (bootstrap): avoid recursion if subdir missing
9362 (cross): ditto
9363 (do-proto-toplev): ditto
9364
9365 Wed Sep 13 11:11:29 2000 Jeffrey A Law (law@cygnus.com)
9366
9367 * configure.in: Do not build byacc for hppa64. Provide paths to the
9368 X11 libraries for hppa64.
9369
9370 2000-09-02 Anthony Green <green@cygnus.com>
9371
9372 * Makefile.in (all-gcc): Depend on all-zlib.
9373 (CLEAN_MODULES): Add clean-zlib.
9374 (ALL_MODULES): Add all-zlib.
9375 * configure.in (host_libs): Add zlib.
9376
9377 2000-08-25 Alexandre Oliva <aoliva@redhat.com>
9378
9379 * configure.in (FLAGS_FOR_TARGET): Use $target_configdirs and
9380 $targargs to tell whether newlib is going to be built.
9381
9382 * configure.in [disable-libstdcxx-v3] (libstdcxx_flags): Search
9383 $$r/TARGET_SUBDIR/libio for _G_config.h.
9384
9385 2000-08-14 Zack Weinberg <zack@wolery.cumb.org>
9386
9387 * configure.in (libstdcxx_flags): Remove -isystem $$s/libio/stdio.
9388
9389 * configure: Make enable_threads and enable_shared defaults
9390 explicit. Substitute enable_threads into generated Makefiles.
9391 * configure.in: Accept *-*-linux* not just *-*-linux-gnu*.
9392 * libtool.m4: Accept *-*-linux* not just *-*-linux-gnu*.
9393
9394 2000-08-02 Manfred Hollstein <manfredh@redhat.com>
9395
9396 * configure.in: Re-enable all references to libg++ and librx.
9397
9398 2002-04-09 Loren James Rittle <rittle@labs.mot.com>
9399
9400 * configure.in: Add *-*-freebsd* configurations.
9401
9402 2002-04-07 Andrew Cagney <ac131313@redhat.com>
9403
9404 * Makefile.in (do-tar-bz2): Delete rule. Replace with ...
9405 (do-tar, do-bz2): New rules.
9406 (taz): Update. Replace do-tar-bz2 with do-tar and do-bz2.
9407 (gdb-tar): New rule.
9408 (gdb-taz): Rewrite. Use gdb-tar and do-bz2.
9409 (insight_dejagnu.tar): New rule.
9410 (insight.tar): New rule.
9411 (gdb+dejagnu.tar): New rule.
9412 (gdb.tar): New rule.
9413
9414 2002-04-07 Andrew Cagney <ac131313@redhat.com>
9415
9416 * MAINTAINERS: Update dejagnu/
9417
9418 2002-03-16 Alexandre Oliva <aoliva@redhat.com>
9419
9420 * ltmain.sh (relink_command): Fix typo in previous change.
9421
9422 2002-03-15 Alexandre Oliva <aoliva@redhat.com>
9423
9424 * ltmain.sh (taglist): Initialized. Don't let `CC' tag out of it.
9425 (relink_command): Added --tag flags.
9426 (mode=install): If relinking fails; error out.
9427
9428 2002-03-12 Richard Henderson <rth@redhat.com>
9429
9430 * Makefile.in (NOTPARALLEL): New. Use it instead of explicit
9431 .NOTPARALLEL tag.
9432 (do-check): Rename from check.
9433 (check): Allow parallel check.
9434
9435 2002-03-11 Richard Henderson <rth@redhat.com>
9436
9437 * Makefile.in (.NOTPARALLEL): Add fake tag.
9438
9439 2002-03-07 H.J. Lu (hjl@gnu.org)
9440
9441 * configure.in: Enable gprof for mips*-*-linux*.
9442
9443 2002-02-28 Alexandre Oliva <aoliva@redhat.com>
9444
9445 * configure.in (libstdcxx_flags): Don't add libstdc++-v3 flags for
9446 libjava.
9447 (CXX_FOR_TARGET): Add -shared-libgcc for libstdc++-v3 and libjava.
9448
9449 2002-02-24 Andrew Cagney <ac131313@redhat.com>
9450
9451 * texinfo/texinfo.tex: Update to version 2002-02-14.08.
9452
9453 2002-02-23 Daniel Jacobowitz <drow@mvista.com>
9454
9455 * config.guess: Import from master sources, rev 1.232.
9456 * config.sub: Import from master sources, rev 1.246.
9457
9458 2002-02-23 Alexandre Oliva <aoliva@redhat.com>
9459
9460 * Makefile.in (MAKEINFO): Don't assume makeinfo will be built just
9461 because its Makefile is there; test for the executable instead.
9462
9463 2002-02-09 Alexandre Oliva <aoliva@redhat.com>
9464
9465 Contribute sh64-elf.
9466 2000-12-01 Alexandre Oliva <aoliva@redhat.com>
9467 * configure.in: Added sh64-*-*.
9468
9469 2002-02-04 Jeff Johnston <jjohnstn@redhat.com>
9470
9471 * COPYING.NEWLIB: Remove advertising clause from
9472 Berkeley and Red Hat licenses.
9473
9474 2002-02-01 Mo DeJong <supermo@bayarea.net>
9475
9476 * Makefile.in: Add all-tix to deps for all-snavigator
9477 so that tix is built when building snavigator.
9478
9479 2002-02-01 Ben Elliston <bje@redhat.com>
9480
9481 * config.guess: Import from master sources, rev 1.229.
9482 * config.sub: Import from master sources, rev 1.240.
9483
9484 2002-01-27 Daniel Jacobowitz <drow@mvista.com>
9485
9486 From Steve Ellcey <sje@cup.hp.com>:
9487 * libtool.m4 (HPUX_IA64_MODE): Set to 32 or 64 based on ABI.
9488 (lt_cv_deplibs_check_method, lt_cv_file_magic_cmd,
9489 lt_cv_file_magic_test_file): Set to appropriate values for HP-UX
9490 IA64.
9491 * ltcf-c.sh (archive_cmds, hardcode_*): Ditto.
9492 * ltconfig (shlibpath_*, dynamic_linker, library_names_spec,
9493 soname_spec, sys_lib_search_path_spec): Ditto.
9494
9495 2002-01-26 Jason Thorpe <thorpej@wasabisystems.com>
9496
9497 * configure.in (*-*-netbsd*): New. Skip target-newlib,
9498 target-libiberty, and target-libgloss. Skip Java-related
9499 libraries if not supported for NetBSD on target CPU.
9500
9501 2002-01-23 Nick Clifton <nickc@cambridge.redhat.com>
9502
9503 * configure.in: Import StrongARM and XScale target_configdirs from
9504 FSF GCC version.
9505
9506 2002-01-16 H.J. Lu (hjl@gnu.org)
9507
9508 * config.guess: Import from master sources, rev 1.225.
9509 * config.sub: Import from master sources, rev 1.238.
9510
9511 * MAINTAINERS: Updated notes on config.guess and config.sub.
9512
9513 2002-01-11 Steve Ellcey <sje@cup.hp.com>
9514
9515 * configure.in (ia64*-*-hpux*): New target for IA64 HP-UX,
9516 ld and gdb are not supported.
9517
9518 2002-01-07 Jeff Johnston <jjohnstn@redhat.com>
9519
9520 * Change reference to Cygnus Solutions to be Red Hat.
9521
9522 2002-01-07 Jeff Johnston <jjohnstn@redhat.com>
9523
9524 * COPYING.NEWLIB: Update generic copyright date.
9525
9526 2002-01-07 Mark Salter <msalter@redhat.com>
9527
9528 * configure.in: Remove target-bsp and target-cygmon from arm builds.
9529 Allow target-libgloss to be built for arm, strongarm, and xscale.
9530
9531 2002-01-03 Ben Elliston <bje@redhat.com>
9532
9533 * MAINTAINERS: Update URL for config.* scripts.
9534
9535 2001-12-18 Alan Modra <amodra@bigpond.net.au>
9536
9537 * config.sub: Import latest version.
9538 * config.guess: Likewise.
9539
9540 2001-12-13 Thomas Fitzsimmons <fitzsim@redhat.com>
9541
9542 * configure.in (FLAGS_FOR_TARGET): Remove -nostdinc and -isystem
9543 options for i[3456]86-pc-linux* native builds.
9544
9545 2001-12-05 Laurent Guerby <guerby@acm.org>
9546
9547 * MAINTAINERS: gcc adopts symlink-tree, refer more to
9548 libiberty.
9549
9550 Import this patch from gcc:
9551
9552 2000-12-09 Laurynas Biveinis <lauras@softhome.net>
9553
9554 * symlink-tree: handle DOS-style absolute paths.
9555
9556 2001-11-28 DJ Delorie <dj@redhat.com>
9557 Zack Weinberg <zack@codesourcery.com>
9558
9559 When build != host, create libiberty for the build machine.
9560
9561 * Makefile.in (TARGET_CONFIGARGS, BUILD_CONFIGARGS): Replace
9562 CONFIG_ARGUMENTS.
9563 (ALL_BUILD_MODULES_LIST, BUILD_CONFIGDIRS, BUILD_SUBDIR):
9564 New variables.
9565 (ALL_BUILD_MODULES, CONFIGURE_BUILD_MODULES): New variables
9566 and rules.
9567 (all.normal): Depend on ALL_BUILD_MODULES.
9568 (CONFIGURE_TARGET_MODULES rule): Use TARGET_CONFIGARGS.
9569 (all-build-libiberty): Depend on configure-build-libiberty.
9570
9571 * configure: Calculate and substitute proper value for
9572 ALL_BUILD_MODULES.
9573 * configure.in: Create the build subdirectory.
9574 Calculate and substitute TARGET_CONFIGARGS (formerly
9575 CONFIG_ARGUMENTS); also BUILD_SUBDIR and BUILD_CONFIGARGS (new).
9576
9577 2001-11-26 Geoffrey Keating <geoffk@redhat.com>
9578
9579 * config.sub: Update to version 1.232 on subversion.
9580
9581 2001-11-20 Nick Clifton <nickc@cambridge.redhat.com>
9582
9583 * Makefile.in (do-proto-toplev): Use msgfmt to generate .gmo
9584 files from .po files for a distribution.
9585
9586 2001-11-19 Hans-Peter Nilsson <hp@bitrange.com>
9587
9588 * COPYING.NEWLIB: Mention preserved notice in specific parts.
9589
9590 2001-11-13 Jeff Holcomb <jeffh@redhat.com>
9591
9592 Merged from net gcc:
9593 2001-07-30 Jeff Sturm <jsturm@one-pont.com>
9594 * ltcf-c.sh: Use $objext, not $ac_objext.
9595 2001-07-27 Mark Kettenis <kettenis@gnu.org>
9596 * ltcf-cxx.sh: Add support for GNU.
9597 2001-07-22 Timothy Wall <twall@redhat.com>
9598 * ltcf-c.sh: Don't disable shared libraries for AIX5/IA64. Preserve
9599 default settings if using GNU tools with that configuration.
9600 * ltcf-cxx.sh: Ditto.
9601 * ltcf-gcj.sh: Ditto.
9602 2001-07-21 Michael Chastain <chastain@redhat.com>
9603 * ltconfig: Set max_cmd_len to a maximum of 512Kb, as it seems some
9604 HPUX 11.0 systems have trouble with 1MB. Mark as gcc-local.
9605 * ltmain.sh: Mark as gcc-local.
9606
9607 2001-11-13 Jeff Holcomb <jeffh@redhat.com>
9608
9609 * Makefile.in (all-bison): Revert 2001-10-24.
9610 Don't depend on texinfo.
9611
9612 2001-11-12 Hans-Peter Nilsson <hp@bitrange.com>
9613
9614 * COPYING.NEWLIB: Add BSD-style license/copyright blurb for my work.
9615
9616 2001-11-08 Phil Edwards <pedwards@disaster.jaj.com>
9617
9618 * configure.in (--enable-languages): Be more permissive about
9619 syntax. Check for empty lists better. Warn about $LANGUAGES.
9620
9621 2001-11-06 Hans-Peter Nilsson <hp@bitrange.com>
9622
9623 * Makefile.in (MAKEINFO): Use "missing" for makeinfo older than 4.0.
9624
9625 2001-10-24 Jeff Holcomb <jeffh@redhat.com>
9626
9627 Makefile.in (all-bison): Don't depend on texinfo.
9628
9629 2001-10-03 Alan Modra <amodra@bigpond.net.au>
9630
9631 * gettext.m4: Test po/POTFILES.in exists before trying to read.
9632
9633 2001-09-29 Alexandre Oliva <aoliva@redhat.com>
9634
9635 * Makefile.in (configure-target-gperf): Depend on $(ALL_GCC_CXX).
9636
9637 2001-09-28 Hans-Peter Nilsson <hp@axis.com>
9638
9639 * config.sub, config.guess: Import latest from subversions.
9640
9641 2001-09-21 Alexandre Oliva <aoliva@redhat.com>
9642
9643 * Makefile.in (AS_FOR_TARGET, LD_FOR_TARGET,
9644 DLLTOOL_FOR_TARGET, WINDRES_FOR_TARGET, AR_FOR_TARGET,
9645 RANLIB_FOR_TARGET, NM_FOR_TARGET): Don't use double quotes to
9646 avoid quotes nesting problems.
9647 (NATIVE_CHECK_MODULES): Ditto, just for consistency.
9648 (DO_X): Export only variables that are set.
9649
9650 2001-09-19 Ben Elliston <bje@redhat.com>
9651
9652 * configure.in (sparc-sun-solaris2*): Don't use /usr/bin/which on
9653 Solaris when testing for the /usr/ucb/cc compiler; it has incorrect
9654 semantics. Use the shell built-in "type" command instead.
9655
9656 2001-09-15 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
9657
9658 * config.sub: Reverted the earlier change, this version is not the
9659 master file.
9660
9661 2001-09-14 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
9662
9663 * config.sub: Change machine triplets from mipsel*-* to mips*el-*.
9664 Add support for mips64.
9665
9666 2001-09-03 Jeff Holcomb <jeffh@redhat.com>
9667
9668 * configure.in: Enable libstdc++-v3 for h8300 targets.
9669
9670 2001-08-30 Eric Christopher <echristo@redhat.com>
9671 Jason Eckhardt <jle@redhat.com>
9672
9673 * config.sub: Add support for mipsisa32.
9674
9675 2001-08-30 Eric Christopher <echristo@redhat.com>
9676
9677 * config.sub, config.guess: Import latest from subversions.
9678
9679 2001-08-20 Alan Modra <amodra@bigpond.net.au>
9680
9681 * config.sub, config.guess: Import latest from subversions.
9682
9683 2001-07-26 DJ Delorie <dj@redhat.com>
9684
9685 * MAINTAINERS: Clarify libiberty merge rules and procedures.
9686
9687 2001-06-19 Alan Modra <amodra@bigpond.net.au>
9688
9689 * Makefile.in: Revert 2001-06-17.
9690 (VER): If AM_INIT_AUTOMAKE uses BFD_VERSION, get version from bfd/.
9691
9692 2001-06-17 H.J. Lu <hjl@gnu.org>
9693
9694 * Makefile.in (gas.tar.bz2): Pass TOOL=bfd PACKAGE=gas to make.
9695 (gas+binutils.tar.bz2): Likewise.
9696 (binutils.tar.bz2): Pass TOOL=bfd PACKAGE=binutils to make.
9697
9698 Fri Jun 8 11:14:02 2001 Andrew Cagney <cagney@b1.cygnus.com>
9699
9700 * Makefile.in (VER): When present, extract the version number from
9701 the file version.in.
9702
9703 2001-06-08 Alexandre Oliva <aoliva@redhat.com>, Jeff Sturm <jsturm@one-point.com>
9704
9705 * Makefile.in (AS_FOR_TARGET, LD_FOR_TARGET, NM_FOR_TARGET): If
9706 gcc/xgcc is built, use -print-prog-name to find out the program
9707 name to use.
9708
9709 2001-06-04 Mark Mitchell <mark@codesourcery.com>
9710
9711 * ltcf-c.sh (archive_cmds, archive_expsym_cmds) [solaris,
9712 with_gcc]: Use `gcc -shared' to build a shared library.
9713
9714 2001-06-04 John David Anglin <dave@hiauly1.hia.nrc.ca>
9715
9716 * ltcf-c.sh (archive_cmd) [hpux, with_gcc]: Use gcc to link shared
9717 archives.
9718
9719 2001-05-28 Simon Patarin <simon.patarin@inria.fr>
9720
9721 * ltcf-cxx.sh (osf3/osf4/osf5): Support creation of C++ shared
9722 libraries when using g++ with native linker.
9723
9724 2001-05-28 Alexandre Oliva <aoliva@redhat.com>
9725
9726 * ltconfig, ltmain.sh: Upgrade to libtool 1.4a 1.641.2.256.
9727
9728 2001-05-24 Tom Rix <trix@redhat.com>
9729
9730 * configure.in : enable ld for aix
9731
9732 2001-05-22 Alexandre Oliva <aoliva@redhat.com>
9733
9734 * ltcf-cxx.sh (allow_undefined_flag, no_undefined_flag)
9735 [aix4*|aix5*]: Prepend blank.
9736
9737 2001-05-20 Alexandre Oliva <aoliva@redhat.com>
9738
9739 * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh, ltcf-cxx.sh,
9740 ltcf-gcj.sh: Upgraded to libtool 1.4a 1.641.2.254. Rebuilt a number
9741 of subdir/configure scripts to use the new libtool.m4.
9742
9743 2001-05-14 H.J. Lu <hjl@gnu.org>
9744
9745 * config.if (libc_interface): Set to -libc6.2- for cross
9746 compiling to Linux/glibc 2.2.
9747
9748 2001-05-03 Alexandre Oliva <aoliva@redhat.com>
9749
9750 * configure.in (noconfigdirs) [*-cygwin*, *-mingw*, *-beos]: Disable
9751 libgcj.
9752
9753 2001-04-26 Alexandre Oliva <aoliva@redhat.com>
9754
9755 * configure.in (noconfigdirs): Don't reset it from scratch in the
9756 target case; only append to it.
9757
9758 2001-04-26 Alexandre Oliva <aoliva@redhat.com>
9759
9760 * configure.in (noconfigdirs) [hppa*-*-*, mips*-*-irix6*,
9761 sparc-*-solaris2.8]: Disable ${libgcj}.
9762
9763 2001-04-25 Alexandre Oliva <aoliva@redhat.com>
9764
9765 * configure.in (libgcj_saved): Copy from $libgcj.
9766 (libgcj): Zero out if --enable-libgcj; add to noconfigdirs is
9767 --disable-libgcj.
9768
9769 2001-04-20 Alexandre Oliva <aoliva@redhat.com>
9770
9771 * ltconfig, ltmain.sh, ltcf-cxx.sh: Upgraded to libtool 1.4a
9772 1.641.2.228.
9773
9774 2001-04-12 Alexandre Oliva <aoliva@redhat.com>
9775
9776 * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh, ltcf-cxx.sh,
9777 ltcf-gcj.sh: Upgraded to libtool 1.4a 1.641.2.226.
9778
9779 2001-04-01 Alexandre Oliva <aoliva@redhat.com>
9780
9781 * Makefile.in (CXX_FOR_TARGET_FOR_RECURSIVE_MAKE, RECURSE_FLAGS):
9782 New macros.
9783 (bootstrap, cross): Use RECURSE_FLAGS.
9784 * configure.in: Subst CXX_FOR_TARGET_FOR_RECURSIVE_MAKE.
9785
9786 2001-03-27 Alexandre Oliva <aoliva@redhat.com>
9787
9788 * configure.in (CXX_FOR_TARGET): Use xgcc for libstdc++-v3.
9789
9790 2001-03-23 Nick Clifton <nickc@redhat.com>
9791
9792 * README-maintainer-mode: Add note about inability to use "make
9793 distclean" in maintainer mode.
9794
9795 2001-03-22 Alexandre Oliva <aoliva@redhat.com>
9796
9797 Re-installed:
9798 2001-01-02 Laurynas Biveinis <lauras@softhome.net>
9799 * ltcf-c.sh: Clear ac_cv_prog_cc_pic for DJGPP. Do not add
9800 '-DPIC' to ac_cv_prog_cc_pic for DJGPP.
9801 * ltcf-cxx.sh: Likewise.
9802 * ltcf-gcj.sh: Likewise.
9803
9804 2001-03-22 Philip Blundell <philb@gnu.org>
9805
9806 * config.sub, config.guess: Import latest from subversions.
9807
9808 2001-03-22 Alexandre Oliva <aoliva@redhat.com>
9809
9810 * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh, ltcf-cxx.sh,
9811 ltcf-gcj.sh: Upgraded to libtool 1.4a 1.641.2.198.
9812
9813 2001-03-20 Michael Chastain <chastain@redhat.com>
9814
9815 * Makefile.in: all-m4 depends on all-texinfo.
9816
9817 2001-03-08 Alexandre Oliva <aoliva@redhat.com>
9818
9819 * Makefile.in (ALL_GCC, ALL_GCC_C, ALL_GCC_CXX): Set before use.
9820
9821 2001-02-22 Jeff Johnston <jjohnstn@redhat.com>
9822
9823 * COPYING.NEWLIB: Remove DJ Delorie's address because it is no
9824 longer valid.
9825
9826 2001-02-16 Nick Clifton <nickc@redhat.com>
9827
9828 * configure.in (noconfigdirs): Allow configuration of texinfo
9829 for Cygwin hosts.
9830
9831 2001-02-09 Martin Schwidefsky <schwidefsky@de.ibm.com>
9832
9833 * config.guess: Add linux target for S/390.
9834 * config.sub: Likewise.
9835 * configure.in: Likewise.
9836
9837 2001-02-06 Ben Elliston <bje@redhat.com>
9838
9839 * configure: Output host type to stdout, not stderr.
9840
9841 2001-02-04 Michael Sokolov <msokolov@ivan.Harhan.ORG>
9842
9843 * config.guess: Import from subversions.gnu.org (revision 1.181).
9844 * config.sub: Import from subversions.gnu.org (revision 1.199).
9845
9846 2001-01-30 Alan Modra <alan@linuxcare.com.au>
9847
9848 * config.guess: Handle hppa64-linux systems.
9849
9850 2001-01-27 Michael Sokolov <msokolov@ivan.Harhan.ORG>
9851
9852 * ltcf-cxx.sh (ac_cv_prog_cc_pic_works, ac_cv_prog_cc_static_works):
9853 Don't unset, it's non-portable and no longer necessary, set to empty
9854 instead.
9855
9856 2001-01-27 Michael Sokolov <msokolov@ivan.Harhan.ORG>, Alexandre Oliva <oliva@lsd.ic.unicamp.br>
9857
9858 * ltconfig: Shell portability fix for the tagname validity check.
9859
9860 2001-01-27 Michael Sokolov <msokolov@ivan.Harhan.ORG>
9861
9862 * ltcf-cxx.sh: Use parentheses around eval $ac_compile.
9863
9864 2001-01-27 Alexandre Oliva <aoliva@redhat.com>
9865
9866 * ltcf-c.sh (ld_shlibs) [aix5*]: Disable on unknown CPU types.
9867 * ltcf-cxx.sh, ltcf-gcj.sh: Likewise.
9868
9869 2001-01-24 Alexandre Oliva <aoliva@redhat.com>
9870
9871 * ltmain.sh (TAG disable-shared, TAG disable-static): Make sure we
9872 keep at least one of build_libtool_libs or build_old_libs set to
9873 yes.
9874
9875 2001-01-24 Alexandre Oliva <aoliva@redhat.com>
9876
9877 * ltcf-gcj.sh (lt_simple_link_test_code): Remove stray `(0)'.
9878 * libtool.m4 (_AC_LIBTOOL_GCJ): Pass $CPPFLAGS on.
9879
9880 2000-11-07 Philip Blundell <pb@futuretv.com>
9881
9882 * Makefile.in (ETC_SUPPORT): Also add configbuild.* and configdev.*.
9883
9884 2000-11-03 Philip Blundell <pb@futuretv.com>
9885
9886 * Makefile.in (ETC_SUPPORT): Add configure.texi and associated info
9887 files.
9888
9889 2001-01-15 Jeff Johnston <jjohnstn@redhat.com>
9890
9891 * COPYING.NEWLIB: Put into source repository.
9892
9893 2001-01-15 Ben Elliston <bje@redhat.com>
9894
9895 * configure.in (host_tools): Add sid.
9896 Always configure cgen.
9897 * Makefile.in (all-sid): New target.
9898 (check-sid, clean-sid, install-sid): Likewise.
9899
9900 2001-01-07 Andreas Jaeger <aj@suse.de>
9901
9902 * config.sub, config.guess: Update from subversions.
9903
9904 2000-12-12 Alexandre Oliva <aoliva@redhat.com>
9905
9906 * configure.in: Disable language-specific target libraries for
9907 languages that aren't enabled.
9908
9909 2000-11-24 Nick Clifton <nickc@redhat.com>
9910
9911 * configure.in (xscale-elf): Add target.
9912 (xscale-coff): Add target.
9913 (c4x, c5x, tic54x): Move after ARM targets.
9914
9915 2000-11-23 Alexandre Oliva <aoliva@redhat.com>
9916
9917 * ltcf-gcj.sh: Added file, required by 2000-11-18 merge.
9918
9919 2000-11-20 Ian Lance Taylor <ian@zembu.com>
9920
9921 * ltcf-cxx.sh: Added file, required by 2000-11-18 merge.
9922
9923 2000-11-18 Alexandre Oliva <aoliva@redhat.com>
9924
9925 * Makefile.in: Merge with GCC and libgcj.
9926 (ALL_GCC_C, ALL_GCC_CXX): New macros. Use them as dependencies of
9927 configure-target-<library> when their configure scripts need the C
9928 or C++ library to have already been built to work properly.
9929 (do_proto_toplev): Set them to an empty string.
9930
9931 2000-11-18 Alexandre Oliva <aoliva@redhat.com>
9932
9933 * Makefile.in (HOST_LIB_PATH, TARGET_LIB_PATH): New macros.
9934 (REALLY_SET_LIB_PATH): Use them.
9935
9936 2000-11-06 Christopher Faylor <cgf@cygnus.com>
9937
9938 * config.sub: Add support for Sun Chorus
9939
9940 2000-11-02 Per Lundberg <plundis@chaosdev.org>
9941
9942 * config.sub: Add support for the *-storm-chaos OS.
9943
9944 2000-10-30 Stephane Carrez <stcarrez@worldnet.fr>
9945
9946 * configure.in (noconfigdirs): Don't compile some
9947 of the libraries for 68HC11 & 68hc12 targets.
9948
9949 2000-09-30 Alexandre Oliva <aoliva@redhat.com>
9950
9951 * ltconfig, ltmain.sh, libtool.m4: Updated from libtool
9952 multi-language branch, to work around Solaris' /bin/sh bug. Rebuilt
9953 all affected `configure' scripts.
9954
9955 2000-09-25 Alexandre Oliva <aoliva@redhat.com>
9956
9957 * Makefile.in (DEVO_SUPPORT): Added gettext.m4, libtool.m4 and
9958 ltcf-c.sh.
9959
9960 2000-09-12 Philip Blundell <philb@gnu.org>
9961
9962 * config.sub, config.guess: Update from subversions.
9963
9964 2000-09-06 Alexandre Oliva <aoliva@redhat.com>
9965
9966 * Makefile.in (all-zlib): Added dummy target.
9967
9968 * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh: Updated from libtool
9969 multi-language branch.
9970
9971 2000-09-05 Alexandre Oliva <aoliva@redhat.com>
9972
9973 * Makefile.in (all-bootstrap): Added all-texinfo and all-zlib.
9974 (bootstrap*): Depend on all-bootstrap.
9975
9976 2000-09-02 Alexandre Oliva <aoliva@redhat.com>, DJ Delorie <dj@redhat.com>
9977
9978 * configure.in (FLAGS_FOR_TARGET): Use -nostdinc even for Canadian
9979 crosses, but add gcc/include to the header search path for them.
9980
9981 2000-08-31 Alexandre Oliva <aoliva@redhat.com>
9982
9983 * ltconfig, ltmain.sh: Updated from libtool multi-language branch.
9984 * libtool.m4, ltcf-c.sh: Copied from libtool multi-language branch.
9985 * gettext.m4: New file, extracted from aclocal.m4.
9986
9987 2000-08-22 Alexandre Oliva <aoliva@redhat.com>
9988
9989 * config-ml.in (CC, CXX): Avoid trailing whitespace.
9990 (LD_LIBRARY_PATH, SHLIB_PATH): Adjust for multilibs and export to
9991 sub-configures.
9992
9993 2000-08-20 Doug Evans <dje@casey.transmeta.com>
9994
9995 * Makefile.in (ALL_MODULES): Add all-cgen.
9996 (CROSS_CHECK_MODULES,INSTALL_MODULES,CLEAN_MODULES): Similarily.
9997 (all-cgen): New target.
9998 (all-opcodes,all-sim): Depend on all-cgen.
9999 * configure.in (host_tools): Add cgen.
10000 Only configure cgen if --enable-cgen-maint.
10001
10002 2000-08-17 Alexandre Oliva <aoliva@redhat.com>
10003
10004 * config-ml.in (CC, CXX): Don't introduce a leading space.
10005
10006 2000-08-16 Alexandre Oliva <aoliva@redhat.com>
10007
10008 * configure.in (libstdcxx_flags): Use
10009 libstdc++-v3/src/libstdc++.INC.
10010
10011 2000-08-15 Alexandre Oliva <aoliva@redhat.com>
10012
10013 * configure.in (libstdcxx_flags): Use libstdc++-v3/src/INCLUDES.
10014
10015 2000-08-11 Jason Merrill <jason@redhat.com>
10016
10017 * configure.in (CC_FOR_TARGET, CHILL_FOR_TARGET,
10018 CXX_FOR_TARGET): Add -B$$r/gcc/ here.
10019 (FLAGS_FOR_TARGET): Not here.
10020 (CHILL_FOR_TARGET, CXX_FOR_TARGET): Don't check the list of languages.
10021
10022 2000-08-07 DJ Delorie <dj@redhat.com>
10023
10024 * configure.in (FLAGS_FOR_TARGET): invert test for xgcc, should mean
10025 "if we're also building gcc, and it's a gcc that will run on the
10026 build machine, we want to use its includes instead of the system's
10027 default includes".
10028
10029 2000-08-03 Alexandre Oliva <aoliva@redhat.com>
10030
10031 * configure.in (libstdcxx_flags): Don't use `"'.
10032
10033 * config-ml.in: Adjust multilib search paths to the
10034 appropriate multilib tree.
10035
10036 2000-08-02 Alexandre Oliva <aoliva@redhat.com>
10037
10038 * configure.in (CHILL_FOR_TARGET, CXX_FOR_TARGET): Convert blanks to
10039 commas in $LANGUAGES.
10040
10041 2000-08-01 Alexandre Oliva <aoliva@redhat.com>
10042
10043 * configure.in (qCXX_FOR_TARGET): Use echo instead of expr.
10044
10045 2000-07-31 Alexandre Oliva <aoliva@redhat.com>
10046
10047 * configure.in (qCXX_FOR_TARGET): Quote `&' characters in
10048 CXX_FOR_TARGET for sed.
10049
10050 2000-07-30 Alexandre Oliva <aoliva@redhat.com>
10051
10052 * configure.in (CC_FOR_TARGET, CHILL_FOR_TARGET, CXX_FOR_TARGET):
10053 Do not override if already set in the environment or in configure.
10054 Don't duplicate $(FLAGS_FOR_TARGET) if it already appears in them.
10055 (FLAGS_FOR_TARGET): Don't use host directories on Canadian crosses.
10056
10057 2000-07-27 Alexandre Oliva <aoliva@redhat.com>
10058
10059 * Makefile.in (FLAGS_FOR_TARGET): New macro.
10060 (GCC_FOR_TARGET): Use it.
10061 (CC_FOR_TARGET, CXX_FOR_TARGET, CHILL_FOR_TARGET): Now defined...
10062 * configure.in: ... here.
10063 (FLAGS_FOR_TARGET): Define. Add ld build dir to -L path.
10064 (libstdcxx_flags): Define and append to CXX_FOR_TARGET.
10065
10066 2000-07-24 Alexandre Oliva <aoliva@redhat.com>
10067
10068 * Makefile.in (configure-target-libf2c): Depend on $(ALL_GCC).
10069 (configure-target-libchill, configure-target-libobjc): Likewise.
10070
10071 * configure.in: Use the same cache file for all target libs.
10072 * config-ml.in: But different cache files per multilib variant.
10073
10074 2000-07-23 Michael Sokolov <msokolov@ivan.Harhan.ORG>
10075
10076 * configure (topsrcdir): Don't use dirname.
10077
10078 2000-07-20 Jason Merrill <jason@redhat.com>
10079
10080 * configure.in: Remove all references to libg++ and librx.
10081
10082 * configure, configure.in, Makefile.in: Unify gcc and binutils.
10083
10084 2000-07-20 Hans-Peter Nilsson <hp@axis.com>
10085
10086 * config.sub: Update to subversions version 2000-07-06.
10087
10088 2000-07-12 Andrew Haley <aph@cygnus.com>
10089
10090 * configure.in (host_makefile_frag): Use mh-ia64pic on IA-64 hosts.
10091 (target_makefile_frag): Use mt-ia64pic on IA-64 targets.
10092
10093 2000-07-07 Phil Edwards <pme@sourceware.cygnus.com>
10094
10095 * symlink-tree: Check number of arguments.
10096
10097 2000-06-06 Andrew Cagney <cagney@b1.cygnus.com>
10098
10099 * texinfo/texinfo.tex: Update to version 2000-05-28.15.
10100
10101 2000-07-05 Jim Wilson <wilson@cygnus.com>
10102
10103 * Makefile.in (CXX_FOR_TARGET): Add libstdc++ to the library
10104 search path for a g++ extracted from the build tree. This
10105 will allow link tests run by configure scripts in
10106 subdirectories to succeed.
10107
10108 2000-07-01 Koundinya K <kk@ddeorg.soft.net>
10109
10110 * ltconfig: Add support for mips-dde-sysv4.2MP
10111
10112 2000-06-28 Corinna Vinschen <vinschen@cygnus.com>
10113
10114 * ltconfig: Check for host_os beeing one of `cygwin', `mingw' or
10115 `os2'. Force ac_cv_exeext to be ".exe" in that case.
10116
10117 2000-06-19 Timothy Wall <twall@cygnus.com>
10118
10119 * configure.in (noconfigdirs): Set noconfigdirs for tic54x target.
10120 * config.sub: Add tic54x target.
10121
10122 2000-06-07 Phillip Thomas <pthomas@suse.de>
10123
10124 * README-maintainer-mode: New file: Contains notes on using
10125 --enable-maintainer-mode with binutils.
10126
10127 2000-05-29 Andrew Cagney <cagney@b1.cygnus.com>
10128
10129 * texinfo/texinfo.tex: Update. Version from makeinfo 4.0.
10130
10131 2000-05-30 Andrew Cagney <cagney@b1.cygnus.com>
10132
10133 * config.sub: Import CVS version 1.167 Tue May 30 09:00:07 2000.
10134 * config.guess: Import CVS version 1.148 Tue May 30 09:00:06 2000
10135
10136 20000-05-21 H.J. Lu (hjl@gnu.org)
10137
10138 * Makefile.in (CC_FOR_TARGET): Make sure as/ld in the gcc
10139 directory are used if they exist. Make sure
10140 $(build_tooldir)/include is searched for header files,
10141 $(build_tooldir)/lib/ for library files.
10142 (GCC_FOR_TARGET): Likewise.
10143 (CXX_FOR_TARGET): Likewise.
10144
10145 2000-05-18 Jeffrey A Law (law@cygnus.com)
10146
10147 * configure.in (hppa*64*-*-*): Do build ld for this configuration.
10148
10149 2000-05-17 Alexandre Oliva <aoliva@cygnus.com>
10150
10151 * Makefile.in (configure-target-libiberty): Depend on
10152 configure-target-newlib.
10153
10154 2000-05-16 Alexandre Oliva <aoliva@cygnus.com>
10155
10156 * configure.in, Makefile.in: Merge all libffi-related
10157 configury stuff from the libgcj tree.
10158
10159 2000-05-16 Andrew Cagney <cagney@b1.cygnus.com>
10160
10161 Thu Apr 27 11:01:48 2000 Andrew Cagney <cagney@b1.cygnus.com>:
10162 * Makefile.in (do-tar-bz2, do-md5sum): Skip CVS directories.
10163
10164 2000-05-16 Andrew Cagney <cagney@b1.cygnus.com>
10165
10166 Wed Apr 26 17:03:53 2000 Andrew Cagney <cagney@b1.cygnus.com>:
10167 * Makefile.in (do-djunpack): New target. Update djunpack.bat with
10168 current version information. Add to proto-toplev directory.
10169 (gdb-taz): Build do-djunpack.
10170
10171 2000-05-15 David Edelsohn <edelsohn@gnu.org>
10172
10173 * configure.in: Special case powerpc*-*-aix* target_makefile_frag.
10174
10175 2000-05-13 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
10176
10177 * ltmain.sh: Preserve in relink_command any environment
10178 variables that may affect the linker behavior.
10179
10180 2000-05-12 Jeffrey A Law (law@cygnus.com)
10181
10182 * config.sub (basic_machine): Recognize hppa64 as a valid cpu type.
10183
10184 2000-05-10 Jim Wilson <wilson@cygnus.com>
10185
10186 * configure.in (ia64*-*-elf*): Add gdb and friends to noconfigdirs.
10187
10188 2000-05-08 Eli Zaretskii <eliz@is.elta.co.il>
10189
10190 * djunpack.bat: Change the Sed script to replace @V@ in fnchange.lst
10191 with the version name.
10192
10193 2000-05-01 Benjamin Kosnik <bkoz@cygnus.com>
10194
10195 * config.if: Tweak.
10196
10197 2000-04-23 Eli Zaretskii <eliz@is.elta.co.il>
10198
10199 * djunpack.bat: New file.
10200
10201 2000-04-19 Andrew Cagney <cagney@b1.cygnus.com>
10202
10203 * Makefile.in (taz, gdb-taz, gas.tar.bz2, binutils.tar.bz2,
10204 gas+binutils.tar.bz2, libg++.tar.bz2, gnats.tar.bz2, gdb.tar.bz2,
10205 dejagnu.tar.bz2, gdb+dejagnu.tar.bz2, insight.tar.bz2,
10206 insight+dejagnu.tar.bz2, newlib.tar.bz2): Pass MD5PROG to sub-make.
10207
10208 2000-04-16 Dave Pitts <dpitts@cozx.com>
10209
10210 * config.sub (case $basic_machine): Change default for "ibm-*"
10211 to "openedition".
10212
10213 2000-04-12 Andrew Cagney <cagney@b1.cygnus.com>
10214
10215 * Makefile.in (gdb-taz): New target. GDB specific archive.
10216 (do-md5sum): New target.
10217 (MD5PROG): Define.
10218 (PACKAGE): Default to TOOL.
10219 (VER): Default to a shell script.
10220 (taz): Rewrite target. Move real work to do-proto-toplev. Include
10221 md5 checksum generation.
10222 (do-proto-toplev): New target. Create $(PACKAGE)-$(VER) link.
10223 (do-tar-bz2): Delete creation of $(PACKAGE)-$(VER) link.
10224 (gdb.tar.bz2, dejagnu.tar.bz2, gdb+dejagnu.tar.bz2,
10225 insight.tar.bz2): Use gdb-taz to create archive.
10226
10227 2000-04-07 Andrew Cagney <cagney@b1.cygnus.com>
10228
10229 * configure (warn_cflags): Delete.
10230
10231 2000-04-05 Benjamin Kosnik <bkoz@cygnus.com>
10232 Martin v. Loewis <martin@loewis.home.cs.tu-berlin.de>
10233
10234 * configure.in (enable_libstdcxx_v3): Add.
10235 (target_libs): Add bits here to switch between libstdc++-v2 and
10236 libstdc++-v3.
10237 * config.if: And this file too.
10238 * Makefile.in: Add libstdc++-v3 targets.
10239
10240 2000-04-05 Michael Meissner <meissner@redhat.com>
10241
10242 * config.sub (d30v): Add d30v as a basic machine type.
10243
10244 2000-03-29 Jason Merrill <jason@casey.cygnus.com>
10245
10246 * configure.in: -linux-gnu*, not -linux-gnu.
10247
10248 2000-03-03 Andrew Cagney <cagney@b1.cygnus.com>
10249
10250 * Makefile.in (taz): Set PACKAGE to TOOL when not defined.
10251 (do-tar-bz2): Replace TOOL with PACKAGE.
10252 (gdb.tar.bz2): Remove GDBTK from GDB package.
10253 (gdb+dejagnu.tar.bz2, insight.tar.bz2, insight+dejagnu.tar.bz2,
10254 dejagnu.tar.bz2): New packages.
10255
10256 2000-02-27 Andreas Jaeger <aj@suse.de>
10257
10258 * configure.in: Add entry for mips*-*-linux*, move catch all
10259 *-*-*linux* entry below this one.
10260
10261 2000-02-27 Ian Lance Taylor <ian@zembu.com>
10262
10263 * ltconfig, ltmain.sh: Update to libtool 1.3.4.
10264
10265 2000-02-24 Nick Clifton <nickc@cygnus.com>
10266
10267 * config.sub: Support an OS of "wince".
10268
10269 2000-02-24 Andrew Cagney <cagney@b1.cygnus.com>
10270
10271 * config.guess, config.sub: Updated to match config's 2000-02-15
10272 version.
10273
10274 2000-02-23 Linas Vepstas <linas@linas.org>
10275
10276 * config.sub: Add support for Linux/IBM 370.
10277 * configure.in: Likewise.
10278
10279 2000-02-22 Nick Clifton <nickc@cygnus.com>
10280
10281 * configure.in: Add mips-pe, sh-pe and arm-wince-pe targets.
10282
10283 2000-02-20 Christopher Faylor <cgf@cygnus.com>
10284
10285 * config.guess: Guess "cygwin" rather than "cygwin32".
10286
10287 2000-02-16 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10288
10289 * configure (gcc_version): When setting, narrow search to
10290 lines containing `version_string'.
10291
10292 2000-02-15 Denis Chertykov <denisc@overta.ru>
10293
10294 * config.sub: Add support for avr target.
10295
10296 2000-02-01 Hans-Peter Nilsson <hp@bitrange.com>
10297
10298 * config.sub: Add mmix-knuth-mmixware.
10299
10300 2000-01-27 Christopher Faylor <cgf@redhat.com>
10301
10302 * Makefile.in (CC_FOR_TARGET): Add new winsup directory
10303 structure stuff to -L library search.
10304 (CXX_FOR_TARGET): Ditto.
10305 (CROSS_CHECK_MODULES): Fix spelling mistake.
10306
10307 2000-01-24 Mark Mitchell <mark@codesourcery.com>
10308
10309 * Makefile.in (CXX_FOR_TARGET): Use g++, not xgcc, to invoke
10310 the C++ compiler.
10311
10312 2000-01-12 Richard Henderson <rth@cygnus.com>
10313
10314 * configure.in: Don't build some bits for beos.
10315
10316 2000-01-12 Joel Sherrill (joel@OARcorp.com)
10317
10318 * Makefile.in (CC_FOR_TARGET): Use newlib libraries as well
10319 as include files.
10320
10321 2000-01-06 Geoff Keating <geoffk@cygnus.com>
10322
10323 * configure.in: Use mt-aix43 to handle *_TARGET defs,
10324 not mh-aix43.
10325
10326 1999-12-14 Richard Henderson <rth@cygnus.com>
10327
10328 * config.guess (alpha-osf, alpha-linux): Detect ev67.
10329 * config.sub: Accept alphaev[78], alphaev8.
10330
10331 1999-12-03 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
10332
10333 * config.guess, config.sub: Update from autoconf.
10334
10335 Tue Nov 23 00:57:41 1999 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
10336
10337 * config-ml.in (sparc*-*-*): Disable sparcv9 support if the
10338 necessary libraries are missing.
10339
10340 1999-10-25 Andreas Schwab <schwab@suse.de>
10341
10342 * configure: Fix quoting inside arguments of eval.
10343
10344 1999-10-21 Nick Clifton <nickc@cygnus.com>
10345
10346 * config-ml.in: Allow suppression of some ARM multilibs.
10347
10348 Tue Sep 7 23:33:57 1999 Linas Vepstas <linas@linas.org>
10349
10350 * config.guess: Add OS/390 match pattern.
10351 * config.sub: Add mvs, openedition targets.
10352 * configure.in (i370-ibm-opened*): New.
10353
10354 1999-09-04 Steve Chamberlain <sac@pobox.com>
10355
10356 * config.sub: Add support for configuring for pj.
10357
10358 1999-08-31 Nick Clifton <nickc@cygnus.com>
10359
10360 * config.sub (maybe_os): Add support for configuring for fr30.
10361
10362 1999-08-25 Nick Clifton <nickc@cygnus.com>
10363
10364 * configure.in: Do not configure or build ld for AIX
10365 platforms. ld is known to be broken on these platforms.
10366
10367 Wed Aug 25 01:12:25 1999 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
10368
10369 * config-ml.in: Pass compiler flag corresponding to multidirs to
10370 subdir configures.
10371
10372 1999-08-09 Ian Lance Taylor <ian@zembu.com>
10373
10374 * Makefile.in (LDFLAGS): Define.
10375
10376 1999-08-08 Mumit Khan <khan@xraylith.wisc.edu>
10377
10378 * configure.in (i[3456]-*-mingw32*): Don't put gprof in
10379 noconfigdirs.
10380 (*-*-cygwin*): Likewise.
10381
10382 1999-08-08 Ian Lance Taylor <ian@zembu.com>
10383
10384 * mkdep: New file.
10385 * Makefile.in (GAS_SUPPORT_DIRS): Add mkdep.
10386 (BINUTILS_SUPPORT_DIRS): Add mkdep.
10387
10388 From Eli Zaretskii <eliz@is.elta.co.il>:
10389 * configure (tmpfile): Change cONf$$ to cNf$$ to avoid an overly
10390 long file name when using DJGPP on MS-DOS.
10391
10392 Wed Aug 4 02:07:14 1999 Jeffrey A Law (law@cygnus.com)
10393
10394 * config.sub (vxworks case): Use os=-vxworks, not os=vxworks.
10395
10396 1999-07-30 Alan Modra <alan@spri.levels.unisa.edu.au>
10397
10398 * Makefile.in (check-target-libio): Remove all-target-libstdc++
10399 dependency as this causes "make check" to globally "make all"
10400
10401 Tue Jun 22 23:45:18 1999 Tom Tromey <tromey@cygnus.com>
10402
10403 * configure.in (target_libs): Added target-zlib.
10404 * Makefile.in (ALL_TARGET_MODULES): Added zlib.
10405 (CONFIGURE_TARGET_MODULES): Likewise.
10406 (CHECK_TARGET_MODULES): Likewise.
10407 (INSTALL_TARGET_MODULES): Likewise.
10408 (CLEAN_TARGET_MODULES): Likewise.
10409 (configure-target-zlib): New target.
10410 (all-target-zlib): Likewise.
10411 (all-target-libjava): Depend on all-target-zlib.
10412 (configure-target-libjava): Depend on configure-target-zlib.
10413
10414 * Makefile.in (configure-target-libjava): Depend on
10415 configure-target-newlib.
10416 (configure-target-boehm-gc): New target.
10417 (configure-target-qthreads): New target.
10418
10419 * configure.in (target_libs): Added target-qthreads.
10420 * Makefile.in (ALL_TARGET_MODULES): Added qthreads.
10421 (CONFIGURE_TARGET_MODULES): Likewise.
10422 (CHECK_TARGET_MODULES): Likewise.
10423 (INSTALL_TARGET_MODULES): Likewise.
10424 (CLEAN_TARGET_MODULES): Likewise.
10425 (all-target-qthreads): New target.
10426 (configure-target-libjava): Depend on configure-target-qthreads.
10427 (all-target-libjava): Depend on all-target-qthreads.
10428
10429 * Makefile.in (ALL_TARGET_MODULES): Added libjava, boehm-gc.
10430 (CONFIGURE_TARGET_MODULES): Likewise.
10431 (CHECK_TARGET_MODULES): Likewise.
10432 (INSTALL_TARGET_MODULES): Likewise.
10433 (CLEAN_TARGET_MODULES): Likewise.
10434 (all-target-libjava): New target.
10435 (all-target-boehm-gc): Likewise.
10436 * configure.in (target_libs): Added libjava, boehm-gc.
10437
10438 1999-07-22 Ian Lance Taylor <ian@zembu.com>
10439
10440 * Makefile.in (binutils.tar.bz2): Don't pass makeall.bat and
10441 configure.bat in SUPPORT_FILES.
10442 (gas+binutils.tar.bz2): Likewise.
10443
10444 * makeall.bat: Remove; obsolete.
10445
10446 1999-07-21 Ian Lance Taylor <ian@zembu.com>
10447
10448 From Mark Elbrecht:
10449 * configure.bat: Remove; obsolete.
10450
10451 1999-07-11 Ian Lance Taylor <ian@zembu.com>
10452
10453 * configure: Add -W -Wall to the default CFLAGS when compiling with
10454 gcc.
10455
10456 Thu Jul 8 12:32:23 1999 John David Anglin <dave@hiauly1.hia.nrc.ca>
10457
10458 * configure.in: Build ld, binutils & gas for hppa*-*-linux-gnu*.
10459
10460 1999-06-30 Mark Mitchell <mark@codesourcery.com>
10461
10462 * configure.in: Build ld on IRIX6.
10463
10464 1999-06-12 Ian Lance Taylor <ian@zembu.com>
10465
10466 * Makefile.in: Change distribution targets to use bzip2 instead of
10467 gzip.
10468 (TEXINFO_SUPPORT): Set to just texinfo/texinfo.tex.
10469 (taz): Don't use texinfo/gpl.texinfo or texinfo/lgpl.texinfo.
10470
10471 1999-06-04 Nick Clifton <nickc@cygnus.com>
10472
10473 * config.sub: Add mcore target.
10474
10475 1999-05-30 Cort Dougan <cort@cs.nmt.edu>
10476
10477 * config.guess (ppc-*-linux-gnu): Also use ld emul elf32ppclinux.
10478
10479 1999-05-25 H.J. Lu (hjl@gnu.org)
10480
10481 * config.guess (dummy): Changed to $dummy.
10482
10483 1999-05-24 Nick Clifton <nickc@cygnus.com>
10484
10485 * config.sub: Tidied up case statements.
10486
10487 1999-05-22 Ben Elliston <bje@cygnus.com>
10488
10489 * config.guess: Handle NEC UX/4800. Contributed by Jiro Takabatake
10490 <jiro@din.or.jp>.
10491
10492 * config.guess: Merge with FSF version. Future changes will be
10493 more accurately recorded in this ChangeLog.
10494 * config.sub: Likewise.
10495
10496 1999-05-20 Stephen L Moshier <moshier@world.std.com>
10497
10498 * Makefile.in (GCC_FOR_TARGET): Add -I$(build_tooldir)/include.
10499
10500 1999-04-30 Tom Tromey <tromey@cygnus.com>
10501
10502 * ltmain.sh: [mode link] Always use CC given by ltconfig.
10503
10504 1999-04-23 Tom Tromey <tromey@cygnus.com>
10505
10506 * ltconfig, ltmain.sh: Update to libtool 1.2f.
10507
10508 1999-04-20 Drew Moseley <dmoseley@cygnus.com>
10509
10510 * configure.in (noconfigdirs): Don't build libstub for arm-elf targets.
10511 (noconfigdirs): Don't build any bsp stuff for for arm-oabi targets.
10512 Bad merge removed these two changes.
10513
10514 Tue Apr 13 22:50:54 1999 Donn Terry (donn@interix.com)
10515 Martin Heller (Ing.-Buero_Heller@t-online.de)
10516
10517 * config.guess (interix Alpha): Add.
10518
10519 1999-04-11 Richard Henderson <rth@cygnus.com>
10520
10521 * configure.in (i?86-*-beos*): Do config gperf; don't config
10522 gdb, newlib, or libgloss.
10523
10524 1999-04-11 Alexandre Oliva <oliva@dcc.unicamp.br>
10525
10526 * config-ml.in: On mips*-*-*, if multidirs contains mabi=64, try to
10527 link a trivial program with -mabi=64. If it fails, remove mabi=64
10528 from multidirs.
10529
10530 1999-04-10 Philipp Thomas (kthomas@gwdg.de)
10531
10532 * config.sub: Set basic_machine to i586 when target_alias = k6-*.
10533
10534 1999-04-08 Nick Clifton <nickc@cygnus.com>
10535
10536 * config.sub: Add support for mcore targets.
10537
10538 1999-04-07 Michael Meissner <meissner@cygnus.com>
10539
10540 * configure.in (d30v-*): Use config/mt-d30v as makefile fragment,
10541 not mt-ospace, in order to shut up assembler warning about using
10542 symbols that are named the same as registers.
10543
10544 1999-04-07 Drew Moseley <dmoseley@cygnus.com>
10545
10546 * Makefile.in (all-target-cygmon): Added all-target-bsp to the
10547 dependency list for all-target-cygmon.
10548
10549 1999-04-05 Doug Evans <devans@casey.cygnus.com>
10550
10551 * config-ml.in: Check $host, not $target, for selective multilibs.
10552 (arm-*-*): Allow disabling of biendian, h/w fp, 26 bit apcs,
10553 thumb interworking, and underscore prefix multilibs.
10554
10555 1999-04-04 Ian Lance Taylor <ian@zembu.com>
10556
10557 * missing: Update to version from current automake.
10558
10559 Fri Apr 2 15:11:32 1999 H.J. Lu (hjl@gnu.org)
10560
10561 * configure (gxx_include_dir): Removed.
10562
10563 * configure.in (gxx_include_dir): Handle it.
10564 * Makefile.in: Likewise.
10565
10566 1999-03-29 Gavin Romig-Koch <gavin@cygnus.com>
10567
10568 * config.sub (mips64vr4111,mips64vr4111el) Add.
10569
10570 1999-03-21 Ben Elliston <bje@cygnus.com>
10571
10572 * config.guess: Correct typo for detecting ELF on FreeBSD.
10573
10574 Thu Mar 18 00:17:50 1999 Mark Elbrecht <snowball3@usa.net>
10575
10576 * configure.in (pc-msdosdjgpp): Set host_makefile_frag to
10577 config/mh-djgpp.
10578
10579 Thu Mar 11 18:37:23 1999 Drew Moseley <dmoseley@cygnus.com>
10580
10581 * Makefile.in (all-target-bsp): Added all-gcc all-binutils and
10582 all-target-newlib to dependency list for all-target-bsp.
10583
10584 Thu Mar 11 01:19:31 1999 Mumit Khan <khan@xraylith.wisc.edu>
10585
10586 * config.sub: Add i386-uwin support.
10587 * config.guess: Likewise.
10588
10589 Thu Mar 11 01:07:55 1999 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
10590
10591 * configure.in: cleanup, add mh-*pic handling for arm, special
10592 case powerpc*-*-aix*
10593
10594 Wed Mar 10 18:35:07 1999 Jeff Johnston <jjohnstn@cygnus.com>
10595
10596 * configure.in (noconfigdirs): Removed target-libgloss so libnosys.a
10597 can be built.
10598
10599 Wed Mar 10 17:39:09 1999 Drew Moseley <dmoseley@cygnus.com>
10600
10601 * configure.in: Added bsp support to arm-*-coff and arm-*-elf
10602 targets.
10603
10604 1999-03-02 Nick Clifton <nickc@cygnus.com>
10605
10606 * config.sub: Rename CYGNUS LOCAL to EGCS LOCAL
10607
10608 1999-02-28 Geoffrey Noer <noer@cygnus.com>
10609
10610 * config.sub: Check for "cygwin*" rather than "cygwin32*"
10611
10612 1999-02-24 Nick Clifton <nickc@cygnus.com>
10613
10614 * config.sub: Fix typo in arm recognition.
10615
10616 1999-02-24 Drew Moseley <dmoseley@cygnus.com>
10617
10618 * configure.in (noconfigdirs): Changed target_configdirs to
10619 include target-bsp only for m68k-*-elf* and m68k-*-coff*
10620 rather than m68k-*-* since it is not known to work on
10621 m68k-aout. Ditto for arm-*-*oabi.
10622
10623 1999-02-24 Stan Shebs <shebs@andros.cygnus.com>
10624
10625 * configure.in (*-*-windows*): Remove, no longer used.
10626
10627 1999-02-19 Ben Elliston <bje@cygnus.com>
10628
10629 * config.guess: Automatically recognise ELF on FreeBSD. From Niall
10630 Smart and improved by Andrew Cagney.
10631
10632 1999-02-18 Marc Espie <espie@cvs.openbsd.org>
10633
10634 * config.guess: Recognize openbsd-*-hppa.
10635
10636 1999-02-17 H.J. Lu (hjl@gnu.org)
10637
10638 * Makefile.in (REALLY_SET_LIB_PATH): Append $$$(RPATH_ENVVAR)
10639 only if it is not empty.
10640
10641 1999-02-17 Nick Clifton <nickc@cygnus.com>
10642
10643 Patch from: Scott Bambrough <scottb@corelcomputer.com>
10644
10645 * config.guess: Modified to recognize uname's armv* syntax.
10646
10647 * config.sub: Modified to recognize uname's armv* syntax.
10648
10649 1999-02-17 Mark Salter <msalter@cygnus.com>
10650
10651 * configure.in: Added target-bsp for sparclite.
10652
10653 1999-02-08 Richard Henderson <rth@cygnus.com>
10654
10655 * config.sub: Recognize alphapca5[67] and up to alphaev8.
10656
10657 1999-02-08 Nick Clifton <nickc@cygnus.com>
10658
10659 * configure.in: Add support for strongarm port.
10660 * config.sub: Add support for strongarm target.
10661
10662 1999-02-07 Mumit Khan <khan@xraylith.wisc.edu>
10663
10664 * configure.in (*-*-cygwin32*): Use config/mh-cygwin instead of
10665 the old name config/mh-cygwin32.
10666 Enable texinfo.
10667
10668 1999-02-04 Ian Lance Taylor <ian@cygnus.com>
10669
10670 * configure.in: Do build ld for ix86 Solaris.
10671
10672 1999-02-02 Jim Wilson <wilson@cygnus.com>
10673
10674 * Makefile.in (EXTRA_GCC_FLAGS): Set AR to $AR instead of
10675 $AR_FOR_TARGET. Likewise for RANLIB.
10676
10677 1999-02-02 Catherine Moore <clm@cygnus.com>
10678
10679 * config.sub (oabi): Recognize.
10680 * configure.in (arm-*-oabi): Handle.
10681
10682 1999-01-30 Robert Lipe (robertlipe@usa.net)
10683
10684 * config.guess: Improve detection of i686 on UnixWare 7.
10685
10686 1999-01-30 Mumit Khan <khan@xraylith.wisc.edu>
10687
10688 * config.guess: Add support for i386-pc-interix.
10689 * config.sub: Likewise.
10690 * configure.in: Likewise.
10691
10692 1999-01-18 Christopher Faylor <cgf@cygnus.com>
10693
10694 * Makefile.in: Remove unneeded all-target-libio from
10695 from all-target-winsup target since it is now unneeded.
10696 Add all-target-libtermcap in its place since it is now
10697 needed.
10698
10699 1998-12-30 Christopher Faylor <cgf@cygnus.com>
10700
10701 * configure.in: makefile stub for cygwin target is probably
10702 unnecessary. Remove it for now.
10703
10704 1998-12-30 Christopher Faylor <cgf@cygnus.com>
10705
10706 * configure.in: libtermcap.a should be built when cygwin is the
10707 target as well as the host.
10708 * config.guess: Allow mixed case in cygwin uname output.
10709 * Makefile.in: Add libtermcap target.
10710
10711 1998-12-23 Jeffrey A Law (law@cygnus.com)
10712
10713 * config.sub: Clean up handling of hppa2.0.
10714
10715 1998-12-22 Rodney Brown (rodneybrown@pmsc.com)
10716
10717 * config.guess: Use C code to identify more HP machines.
10718
10719 Thu Dec 17 01:22:30 1998 Jeffrey A Law (law@cygnus.com)
10720
10721 * config.sub: Handle hppa2.0.
10722
10723 Tue Dec 15 17:02:58 1998 Bob Manson <manson@charmed.cygnus.com>
10724
10725 * configure.in: Add cygmon for x86-coff and x86-elf. Configure
10726 cygmon for all sparclite targets, regardless of object format.
10727
10728 1998-12-15 Mark Salter <msalter@cygnus.com>
10729
10730 * configure.in: Added target-bsp for several target architectures.
10731
10732 * Makefile.in: Added rules for bsp.
10733
10734 Fri Dec 4 01:34:02 1998 Jeffrey A Law (law@cygnus.com)
10735
10736 * config.guess: Improve detection of hppa2.0 processors.
10737
10738 Fri Dec 4 01:33:05 1998 Niall Smart <nialls@euristix.ie>
10739
10740 * config.guess: Recognize FreeBSD using ELF automatically.
10741
10742 1998-11-26 Manfred Hollstein <manfred@s-direktnet.de>
10743
10744 * configure (skip-this-dir): Add handling for new shell script, which
10745 might be created by a sub-directory's configure to indicate, this particular
10746 directory is "unwanted".
10747 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): Likewise.
10748
10749 Wed Nov 18 18:28:45 1998 Geoffrey Noer <noer@cygnus.com>
10750
10751 * ltconfig: import from libtool, after changing libtool to
10752 account for the cygwin name change.
10753
10754 Wed Nov 18 18:09:14 1998 Geoffrey Noer <noer@cygnus.com>
10755
10756 * Makefile.in: CC_FOR_TARGET and CXX_FOR_TARGET should also
10757 include newlib/libc/sys/cygwin and newlib/libc/sys/cygwin32.
10758
10759 Wed Nov 18 20:13:29 1998 Christopher Faylor <cgf@cygnus.com>
10760
10761 * configure.in: Add libtermcap to list of cygwin dependencies.
10762
10763 1998-11-17 Geoffrey Noer <noer@cygnus.com>
10764
10765 * Makefile.in: modify CC_FOR_TARGET and CXX_FOR_TARGET so that
10766 they include winsup/include when it's a cygwin target.
10767
10768 1998-11-12 Tom Tromey <tromey@cygnus.com>
10769
10770 * configure.in (host_tools): Added zip.
10771 * Makefile.in (all-target-libjava): Depend on all-zip.
10772 (all-zip): New target.
10773 (ALL_MODULES): Added all-zip.
10774 (NATIVE_CHECK_MODULES): Added check-zip.
10775 (INSTALL_MODULES): Added install-zip.
10776 (CLEAN_MODULES): Added clean-zip.
10777
10778 1998-11-12 Geoffrey Noer <noer@cygnus.com>
10779
10780 * Makefile.in: lose "32" from comment about cygwin.
10781
10782 1998-11-05 Nick Clifton <nickc@cygnus.com>
10783
10784 * configure.in: Use -Os to build target libraries for the fr30.
10785
10786 1998-11-04 Dave Brolley <brolley@cygnus.com>
10787
10788 * config.sub: Add fr30.
10789
10790 1998-11-02 Geoffrey Noer <noer@cygnus.com>
10791
10792 * configure.in: drop "32" from config/mh-cygwin32. Check
10793 cygwin* instead of cygwin32*.
10794 * config.sub: Check cygwin* instead of cygwin32*.
10795
10796 1998-10-22 Robert Lipe <robertl@dgii.com>
10797
10798 * config.guess: Match any version of Unixware7.
10799
10800 1998-10-20 Syd Polk <spolk@cygnus.com>
10801
10802 * Makefile.in configure.in: Add the ability to use tcl8.1 and tk8.1
10803 if desired.
10804
10805 1998-10-18 Jeffrey A Law (law@cygnus.com)
10806
10807 * config.if (cxx_interface, libstdcxx_interface): Do not try to set
10808 these if the appropriate directories and files to not exist.
10809
10810 1998-10-14 Jeffrey A Law (law@cygnus.com)
10811
10812 * Makefile.in (DEVO_SUPPORT): Add config.if.
10813
10814 1998-10-13 Manfred Hollstein <manfred@s-direktnet.de>
10815
10816 * configure: Add pattern to replace "build_tooldir"'s
10817 definition in the generated Makefile with "tooldir"'s
10818 actual value.
10819
10820 Tue Oct 13 09:17:06 1998 Jeffrey A Law (law@cygnus.com)
10821
10822 * config.sub: Bring back lost sparcv9.
10823
10824 * Makefile.in (all-snvavigator): Remove all-flexlm dependency.
10825
10826 Mon Oct 12 12:09:44 1998 Jeffrey A Law (law@cygnus.com)
10827
10828 * Makefile.in (CHILL_FOR_TARGET): Mirror recent changes to
10829 CC_FOR_TARGET and friends.
10830
10831 Mon Oct 12 12:09:30 1998 Alexandre Oliva <oliva@dcc.unicamp.br>
10832
10833 * Makefile.in (build_tooldir): New variable, same as tooldir.
10834 (CC_FOR_TARGET, GCC_FOR_TARGET, CXX_FOR_TARGET): Add
10835 -B$(build_tooldir)/bin/.
10836 (BASE_FLAGS_TO_PASS): Pass build_tooldir down.
10837
10838 Wed Sep 30 22:20:50 1998 Robert Lipe <robertl@dgii.com>
10839
10840 * config.sub: Add support for i[34567]86-pc-udk.
10841 * configure.in: Likewise.
10842
10843 Wed Sep 30 19:23:48 1998 Geoffrey Noer <noer@cygnus.com>
10844
10845 * Makefile.in: add bzip2 package building bits for user
10846 tools module
10847 * configure.in: ditto
10848
10849 Wed Sep 30 03:00:05 1998 Jeffrey A Law (law@cygnus.com)
10850
10851 * Makefile.in (TARGET_CONFIGDIRS): Add libobjc.
10852 (ALL_TARGET_MODULES): Add all-target-libobjc.
10853 (CONFIGURE_TARGET_MODULES, CHECK_TARGET_MODULES): Similarly.
10854 (INSTALL_TARGET_MODULES, CLEAN_TARGET_MODULES): Similarly.
10855 (all-target-libchill): Add dependencies.
10856 * configure.in (target_libs): Add libchill.
10857
10858 1998-09-30 Manfred Hollstein <manfred@s-direktnet.de>
10859
10860 * configure.in (target_subdir): Remove duplicate line.
10861
10862 Tue Sep 29 22:45:41 1998 Felix Lee <flee@cygnus.com>
10863
10864 * Makefile.in (all-automake): fix dependencies.
10865
10866 Mon Sep 28 04:04:27 1998 Jeffrey A Law (law@cygnus.com)
10867
10868 * configure.in: Minor cleanups for building in the $(target_alias)
10869 subdir.
10870
10871 1998-09-22 Jim Wilson <wilson@cygnus.com>
10872
10873 * Makefile.in (bootstrap): Set r and s before make all. Use
10874 BASE_FLAGS_TO_PASS in make all.
10875 (cross): Likewise.
10876
10877 1998-09-20 Mark Mitchell <mark@markmitchell.com>
10878
10879 * Makefile.in (bootstrap): Pass TARGET_FLAGS_TO_PASS to `make all'.
10880
10881 Sun Sep 20 00:13:02 1998 Richard Henderson <rth@cygnus.com>
10882
10883 * config.sub: Fix typo in last change.
10884
10885 1998-09-19 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
10886
10887 * config.sub: Add support for C4x target.
10888 * configure.in: Likewise.
10889
10890 1998-09-13 David S. Miller <davem@pierdol.cobaltmicro.com>
10891
10892 * config.sub: Recognize sparcv9 just like sparc64.
10893
10894 Wed Sep 9 15:44:52 1998 Robert Lipe <robertl@dgii.com>
10895
10896 * config.guess: Match "Pent II" or "PentII" for OpenServer.
10897
10898 Tue Sep 8 01:18:39 1998 Jeffrey A Law (law@cygnus.com)
10899
10900 * config.guess: Correctly identify Pentium II sco boxes.
10901
10902 * config.guess: Fix "tr" code. From Weiwen Liu.
10903
10904 Sat Sep 5 13:56:52 1998 John Hughes <john@Calva.COM>
10905
10906 * configure.in: Do not assume x86-svr4 or x86-unixware can handle
10907 stabs.
10908
10909 Sat Sep 5 02:12:02 1998 Jeffrey A Law (law@cygnus.com)
10910
10911 * Makefile.in (TARGET_CONFIGDIRS): Add libchill.
10912 (ALL_TARGET_MODULES): Add all-target-libchill.
10913 (CONFIGURE_TARGET_MODULES, CHECK_TARGET_MODULES): Similarly.
10914 (INSTALL_TARGET_MODULES, CLEAN_TARGET_MODULES): Similarly.
10915 (all-target-libchill): Add dependencies.
10916 * configure.in (target_libs): Add libchill.
10917
10918 Sun Aug 30 22:27:02 1998 Lutz Wohlrab <lutz.wohlrab@informatik.tu-chemnitz.de>
10919
10920 * config.guess: Avoid assumptions about "tr" behaves when
10921 LANG is set to something other than English.
10922
10923 Sun Aug 30 22:14:44 1998 H.J. Lu (hjl@gnu.org)
10924
10925 * configure (gxx_include_dir): Changed to
10926 '${prefix}/include/g++'-${libstdcxx_interface}.
10927
10928 * config.if: New to determine the interfaces.
10929
10930 Sun Aug 30 21:15:19 1998 Mark Klein (mklein@dis.com)
10931
10932 * config.guess: Detect and handle MPE/IX.
10933 * config.sub: Deal with MPE/IX.
10934
10935 Sat Aug 29 14:32:55 1998 David Edelsohn <edelsohn@mhpcc.edu>
10936
10937 * configure.in: Use mh-aix43.
10938
10939 1998-07-29 Manfred Hollstein <manfred@s-direktnet.de>
10940
10941 * configure: Fix --without/--disable cases for gxx-include-dir.
10942
10943 Fri Aug 28 12:28:26 1998 Per Bothner <bothner@cygnus.com>
10944
10945 * mdata-sh: Imported. Needed for automake support.
10946
10947 Thu Aug 13 12:49:29 1998 H.J. Lu <hjl@gnu.org>
10948
10949 * Makefile.in (taz): Try "chmod -R og=u ." before
10950 "chmod og=u `find . -print`".
10951
10952 Fri Jul 31 09:38:33 1998 Catherine Moore <clm@cygnus.com>
10953
10954 * configure.in: Add arm-elf and thumb-elf support.
10955
10956 Mon Jul 27 16:23:58 1998 Doug Evans <devans@canuck.cygnus.com>
10957
10958 * Makefile.in: Undo previous patch.
10959
10960 Fri Jul 24 19:55:24 1998 Doug Evans <devans@canuck.cygnus.com>
10961
10962 * Makefile.in (INSTALL_TARGET): Move EXTRA_TARGET_HOST_INSTALL_MODULES
10963 to here ...
10964 (install-no-fixedincludes): and here
10965 (INSTALL_MODULES): ... from here.
10966
10967 Fri Jul 24 17:01:42 1998 Ian Lance Taylor <ian@cygnus.com>
10968
10969 * config.sub: Merge with FSF.
10970
10971 * config.guess: Merge with FSF.
10972
10973 Fri Jul 24 08:43:36 1998 Doug Evans <devans@canuck.cygnus.com>
10974
10975 * configure (extraconfigdirs): New variable.
10976 (SUBDIRS): Add extraconfigdirs and recurse on them too.
10977 * Makefile.in (all): Move higher in file.
10978 (EXTRA_TARGET_HOST_ALL_MODULES): New variable.
10979 (EXTRA_TARGET_HOST_{INSTALL,CHECK}_MODULES): New variables.
10980 (ALL_MODULES): Add EXTRA_TARGET_HOST_ALL_MODULES.
10981 (CROSS_CHECK_MODULES): Add EXTRA_TARGET_HOST_CHECK_MODULES.
10982 (INSTALL_MODULES): Add EXTRA_TARGET_HOST_INSTALL_MODULES.
10983
10984 1998-07-23 Brendan Kehoe <brendan@cygnus.com>
10985
10986 * Makefile.in (all-target-libjava): Depend on all-gcc and
10987 all-target-newlib.
10988 (configure-target-libjava): Depend on $(ALL_GCC).
10989
10990 Sat Jul 18 14:32:43 CDT 1998 Robert Lipe <robertl@dgii.com>
10991
10992 * config.guess: (*-pc-sco3.2v5) Add detection for Pentium II.
10993 (*-pc-unixware7) Add detection for Pentium II, Pentium Pro.
10994
10995 Fri Jul 17 13:30:18 1998 Ian Lance Taylor <ian@cygnus.com>
10996
10997 * ylwrap: Change absolute path checks to check for DOS style path
10998 names.
10999
11000 * ylwrap: Don't use a full path name if the source file is in the
11001 same directory. From hjl@lucon.org (H.J. Lu).
11002
11003 * config-ml.in: Default to being verbose, to match Feb 18 change to
11004 configure.
11005
11006 Thu Jul 16 12:29:51 1998 Ian Lance Taylor <ian@cygnus.com>
11007
11008 Brought over from egcs:
11009
11010 Sat Jun 27 22:46:32 1998 Jeffrey A Law (law@cygnus.com)
11011
11012 * configure.in (target_subdir): Set to ${target_alias} instead
11013 of "libraries".
11014
11015 Mon Sep 1 16:45:44 1997 Jim Wilson <wilson@cygnus.com>
11016
11017 * configure.in (target_subdir): Set to libraries if enable_multilib.
11018
11019 Wed Jul 15 01:00:54 1998 Ian Lance Taylor <ian@cygnus.com>
11020
11021 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): If there are any
11022 multilibs, force reconfiguration the first time we create
11023 multilib.out in a subdirectory, in case TARGET_SUBDIR is `.'.
11024
11025 Tue Jul 14 23:41:03 1998 Ian Lance Taylor <ian@cygnus.com>
11026
11027 * configure.in: Strip any --no option from CONFIG_ARGUMENTS, to
11028 avoid confusion with --no-recursion.
11029
11030 Tue Jul 14 15:37:41 1998 Geoffrey Noer <noer@cygnus.com>
11031
11032 * configure.in: Win32 hosts shouldn't use install -x
11033 * install-sh: remove -x option, and special .exe-handling
11034 hack.
11035
11036 Tue Jul 14 15:28:41 1998 Richard Henderson <rth@cygnus.com>
11037
11038 * config.guess: Recognize i586-pc-beos.
11039 * configure.in: Don't build some bits for beos.
11040
11041 Tue Jul 14 13:22:18 1998 Ian Lance Taylor <ian@cygnus.com>
11042
11043 * configure: If CC is set but CFLAGS is not, and CC is gcc, make
11044 CFLAGS default to -O2.
11045
11046 * ltmain.sh: Add some hacks to make SunOS --enable-shared work
11047 when using GNU ld.
11048
11049 Fri Jul 10 13:18:23 1998 Ian Lance Taylor <ian@cygnus.com>
11050
11051 * ltmain.sh: Correct install when using a different shell.
11052
11053 Tue Jul 7 15:24:38 1998 Ian Lance Taylor <ian@cygnus.com>
11054
11055 * ltconfig, ltmain.sh: Update to libtool 1.2b.
11056
11057 Thu Jul 2 13:57:36 1998 Klaus Kaempf <kkaempf@rmi.de>
11058
11059 * makefile.vms: Update to build binutils/makefile.vms. Add install
11060 target.
11061
11062 Wed Jul 1 16:45:21 1998 Ian Lance Taylor <ian@cygnus.com>
11063
11064 * ltconfig: Update to correct AIX handling.
11065
11066 Sat Jun 27 22:46:32 1998 Jeffrey A Law (law@cygnus.com)
11067
11068 * Makefile.in (BASE_FLAGS_TO_PASS): Add TARGET_SUBDIR.
11069
11070 * configure.in (target_subdir): Set to ${target_alias} instead
11071 of "libraries".
11072
11073 1998-06-26 Manfred Hollstein <manfred@s-direktnet.de>
11074
11075 * Makefile.in (BASE_FLAGS_TO_PASS): Add gcc_version_trigger.
11076 (Makefile): Depend on $(gcc_version_trigger).
11077
11078 * configure (gcc_version): Change default initializer to empty
11079 string.
11080 (gcc_version_trigger): New variable; pass this variable down
11081 to subdir configures to enable them checking gcc's version
11082 themselves. Emit make macros for both gcc_version vars.
11083 (topsrcdir): Initialize reliably.
11084 (recursion line): Remove --with-gcc-version=${gcc_version}.
11085
11086 1998-06-24 Manfred Hollstein <manfred@s-direktnet.de>
11087
11088 * configure (enable_version_specific_runtime_libs): Implement new flag
11089 --enable-version-specific-runtime-libs which installs C++ runtime stuff
11090 in $(libsubdir); emit definition in each generated Makefile.
11091 (gxx_include_dir): Initialize depending on
11092 $enable_version_specific_runtime_libs.
11093
11094 1998-06-24 Manfred Hollstein <manfred@s-direktnet.de>
11095
11096 * configure (gcc_version): Initialize properly depending on
11097 how and where configure is started.
11098 (recursion line): Pass a --with-gcc-version=${gcc_version}
11099 to configures in subdirs.
11100
11101 Wed Jun 24 16:01:59 1998 John Metzler <jmetzler@cygnus.com>
11102
11103 * configure.in (noconfigdirs): Add configure pattern for mips tx39
11104 cygmon
11105
11106 Tue Jun 23 22:42:32 1998 Mark Alexander <marka@cygnus.com>
11107
11108 * configure.in: Add cygmon and libstub support for mn10200.
11109
11110 1998-06-19 Manfred Hollstein <manfred@s-direktnet.de>
11111
11112 * configure (gcc_version): Add new variable describing the
11113 particular gcc version we're building.
11114 * Makefile.in (libsubdir): Add new macro for the directory
11115 in which the compiler finds executables, libraries, etc.
11116 (BASE_FLAGS_TO_PASS): Pass down gcc_version, target_alias
11117 and libsubdir.
11118
11119 Fri Jun 19 02:36:59 1998 Alexandre Oliva <oliva@dcc.unicamp.br>
11120
11121 * Makefile.in (local-clean): Remove *.log.
11122 (warning.log): Built with warn_summary from build.log.
11123 (mail-report.log): Run test_summary.
11124 (mail-report-with-warnings.log): Run test_summary including
11125 warning.log in the report.
11126
11127 Thu Jun 18 11:26:03 1998 Robert Lipe <robertl@dgii.com>
11128
11129 * config.guess: Detection of Pentium II for *-sco-3.2v5*.
11130
11131 Mon Jun 15 14:53:54 1998 Andrew Cagney <cagney@b1.cygnus.com>
11132
11133 * Makefile.in (grep): Grep no longer depends on libiberty.
11134
11135 Fri Jun 12 14:03:34 1998 Syd Polk <spolk@cygnus.com>
11136
11137 * Makefile.in: all-snavigator needs all-libgui.
11138
11139 Thu Jun 11 19:43:47 1998 Mark Alexander <marka@cygnus.com>
11140
11141 * configure.in: Add cygmon and libstub support for mn10300.
11142
11143 Wed Jun 10 11:19:47 1998 Ian Lance Taylor <ian@cygnus.com>
11144
11145 * missing: Update to version from automake 1.3.
11146
11147 * ltmain.sh: On installation, don't get confused if the same name
11148 appears more than once in the list of library names.
11149
11150 Wed Jun 3 14:51:42 1998 Ian Lance Taylor <ian@cygnus.com>
11151
11152 * config.sub: Accept m68060 and m5200 as CPU names.
11153
11154 Mon Jun 1 17:25:16 1998 Ian Lance Taylor <ian@cygnus.com>
11155
11156 * configure: Use && rather than using -a in test, because odd
11157 strings can confuse test.
11158 * configure.in: Likewise.
11159
11160 Thu May 28 19:31:13 1998 Ian Lance Taylor <ian@cygnus.com>
11161
11162 * ltconfig, ltmain.sh: Bring in Visual C++ support.
11163
11164 Sat May 23 23:44:13 1998 Alexandre Oliva <oliva@dcc.unicamp.br>
11165
11166 * Makefile.in (boostrap2-lean, bootstrap3-lean,
11167 bootstrap4-lean): New targets.
11168
11169 Mon May 11 23:55:56 1998 Jeffrey A Law (law@cygnus.com)
11170
11171 * mpw-* Delete. Not used.
11172
11173 Mon May 11 23:11:34 1998 Jeffrey A Law (law@cygnus.com)
11174
11175 * COPYING.LIB: Update FSF address.
11176
11177 Fri May 8 01:30:20 1998 Ian Lance Taylor <ian@cygnus.com>
11178
11179 * ltconfig, ltmain.sh: Update to libtool 1.2a.
11180
11181 * Makefile.in (GASB_SUPPORT_DIRS): Remove intl; already included via
11182 GAS_SUPPORT_DIRS.
11183
11184 Thu May 7 17:27:35 1998 Ian Lance Taylor <ian@cygnus.com>
11185
11186 * ltconfig, ltmain.sh: Avoid producing a version number if
11187 -version-info was not used.
11188
11189 Tue May 5 18:02:24 1998 Ian Lance Taylor <ian@cygnus.com>
11190
11191 * configure.in: Add --with-newlib to CONFIG_ARGUMENTS if we are
11192 building with newlib.
11193
11194 1998-04-30 Paul Eggert <eggert@twinsun.com>
11195
11196 * Makefile.in (EXTRA_GCC_FLAGS): Remove backslash at end;
11197 Solaris `make' causes it to continue to next definition.
11198
11199 Tue Apr 28 16:24:24 1998 Jason Molenda (crash@bugshack.cygnus.com)
11200
11201 * Makefile.in (install-gdbtk): Call this 'install-gdb' so that
11202 the right GUI libraries and files are installed along with GDB.
11203
11204 Tue Apr 28 18:11:24 1998 Ian Lance Taylor <ian@cygnus.com>
11205
11206 * configure.in: Change alpha to alpha* in several places.
11207
11208 Tue Apr 28 07:42:00 1998 Mark Alexander <marka@cygnus.com>
11209
11210 * config.sub: Recognize sparc86x.
11211
11212 Tue Apr 28 07:35:02 1998 Michael Meissner <meissner@cygnus.com>
11213
11214 * configure.in (--enable-target-optspace): Remove debug echo.
11215
11216 Thu Apr 23 21:31:16 1998 Jim Wilson <wilson@cygnus.com>
11217
11218 * configure: Set CXXFLAGS from CXXFLAGS, not CFLAGS.
11219
11220 Thu Apr 23 12:26:38 1998 Ian Lance Taylor <ian@cygnus.com>
11221
11222 * ltconfig: Update cygwin32 support.
11223
11224 * Makefile.in (GAS_SUPPORT_DIRS): Add intl.
11225 (BINUTILS_SUPPORT_DIRS, GASB_SUPPORT_DIRS): Likewise.
11226 (GDB_SUPPORT_DIRS): Likewise.
11227
11228 Wed Apr 22 12:30:10 1998 Michael Meissner <meissner@cygnus.com>
11229
11230 * configure.in (target_makefile_frag): If --enable-target-optspace,
11231 use -Os to compile target libraries rather than -O2. Default to
11232 using -Os for d10v and m32r if --{enable,disable}-target-optspace is
11233 not used.
11234 * configure.in (target_cflags): Ditto for d30v.
11235
11236 Tue Apr 21 23:06:54 1998 Tom Tromey <tromey@cygnus.com>
11237
11238 * Makefile.in (all-bfd): Depend on all-intl.
11239 (all-binutils): Likewise.
11240 (all-gas): Likewise.
11241 (all-gprof): Likewise.
11242 (all-ld): Likewise.
11243
11244 1998-04-19 Brendan Kehoe <brendan@cygnus.com>
11245
11246 * configure.in (host_tools): Fix typo, lbtool -> libtool.
11247
11248 Fri Apr 17 16:20:42 1998 Ian Lance Taylor <ian@cygnus.com>
11249
11250 * Makefile.in (all-bfd): Depend upon all-libiberty.
11251
11252 * ltconfig, ltmain.sh: Bring in newer cygwin32 support.
11253
11254 Fri Apr 17 12:22:22 1998 Bob Manson <manson@charmed.cygnus.com>
11255
11256 * Makefile.in: Add libstub.
11257
11258 * configure.in: Ditto. Build libstub for targets that have cygmon
11259 support.
11260
11261 Tue Apr 14 18:01:55 1998 Ian Lance Taylor <ian@cygnus.com>
11262
11263 * configure.in: Don't set PICFLAG on ix86-cygwin32.
11264
11265 Tue Apr 14 12:24:45 1998 J. Kean Johnston <jkj@sco.com>
11266
11267 * configure.in: Recognise i[3456]96-*-sysv5* as a valid host, and
11268 use mh-sysv5 if specified. Support gprof on SCO Open Server.
11269
11270 Tue Apr 14 11:33:51 1998 Krister Walfridsson <cato@df.lth.se>
11271
11272 * configure: Define DEFAULT_M4 by searching PATH.
11273 * Makfile.in: Use DEFAULT_M4.
11274
11275 Mon Apr 13 15:37:24 1998 Ian Lance Taylor <ian@cygnus.com>
11276
11277 * ltconfig: Add cygwin32 support.
11278
11279 * Makefile.in, configure.in: Add libtool as a native only directory
11280 to configure and build.
11281
11282 Sun Apr 12 20:58:46 1998 Jeffrey A Law (law@cygnus.com)
11283
11284 * Makefile.in (INSTALL_MODULES): Remove texinfo.
11285
11286 Wed Apr 8 13:18:56 1998 Philippe De Muyter <phdm@macqel.be>
11287
11288 * Makefile.in (EXTRA_GCC_FLAGS): XFOO lines shortened.
11289
11290 Thu Apr 2 14:48:44 1998 Geoffrey Noer <noer@cygnus.com>
11291
11292 * Makefile.in: add ash make rules
11293 * configure.in: add ash to native_only and host_tools lists
11294
11295 Thu Mar 26 12:53:20 1998 Tom Tromey <tromey@cygnus.com>
11296
11297 * Makefile.in (all-gettext, all-intl): New targets.
11298 (ALL_MODULES): Added all-gettext, all-intl.
11299 (CROSS_CHECK_MODULES): Added check-gettext, check-intl.
11300 (INSTALL_MODULES): Added install-gettext, install-intl.
11301 (CLEAN_MODULES): Added clean-gettext, clean-intl.
11302
11303 * configure.in (host_tools): Added gettext.
11304 (native_only): Likewise.
11305 (noconfigdirs) [various cases]: Likewise.
11306 (host_libs): Added intl.
11307
11308 Thu Mar 26 15:00:11 1998 Keith Seitz <keiths@onions.cygnus.com>
11309
11310 * configure: Do not disable building gdbtk for cygwin32 hosts.
11311
11312 Wed Mar 25 10:04:18 1998 Nick Clifton <nickc@cygnus.com>
11313
11314 * configure.in: Add thumb-coff target.
11315 * config.sub: Add thumb-coff target.
11316
11317 Wed Mar 25 11:49:12 1998 Jason Molenda (crash@bugshack.cygnus.com)
11318
11319 * Makefile.in: Revert yesterday's change.
11320 (all-target-winsup): all-target-librx stays out of here.
11321
11322 Tue Mar 24 16:58:29 1998 Jason Molenda (crash@bugshack.cygnus.com)
11323
11324 * Makefile.in (TARGET_CONFIGDIRS, ALL_TARGET_MODULES,
11325 CONFIGURE_TARGET_MODULES, CHECK_TARGET_MODULES,
11326 INSTALL_TARGET_MODULES, CLEAN_TARGET_MODULES, all-target-winsup):
11327 Remove references to librx and libg++.
11328
11329 Tue Mar 24 18:28:12 1998 Eric Mumpower <nocturne@cygnus.com>
11330
11331 * Makefile.in (BASE_FLAGS_TO_PASS): Pass $(lispdir) down to
11332 recursive makes
11333
11334 Tue Mar 24 11:37:45 1998 Ian Lance Taylor <ian@cygnus.com>
11335
11336 * Makefile.in (CC_FOR_TARGET): Use $(TARGET_SUBDIR) when passing -B
11337 for newlib directory.
11338 (CXX_FOR_TARGET): Likewise.
11339
11340 Mon Mar 23 11:30:21 1998 Jeffrey A Law (law@cygnus.com)
11341
11342 * ltconfig: Update after libtool/ltconfig.in change for
11343 hpux11.
11344
11345 Fri Mar 20 18:51:43 1998 Ian Lance Taylor <ian@cygnus.com>
11346
11347 * ltconfig, ltmain.sh: Update to libtool 1.2.
11348
11349 Fri Mar 20 09:32:14 1998 Manfred Hollstein <manfred@s-direktnet.de>
11350
11351 * Makefile.in (install-gcc): Don't specify LANGUAGES here.
11352 (install-gcc-cross): Instead, override LANGUAGES here.
11353
11354 1998-03-18 Dave Love <d.love@dl.ac.uk>
11355
11356 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): Set CONFIG_SITE to a
11357 non-existent file since /dev/null loses with bash 2.0/autoconf 2.12.
11358
11359 Wed Mar 18 09:24:59 1998 Nick Clifton <nickc@cygnus.com>
11360
11361 * configure.in: Add Thumb-pe target.
11362
11363 Tue Mar 17 16:59:00 1998 Syd Polk <spolk@cygnus.com>
11364
11365 * Makefile.in - changed sn targets to snavigator
11366 * configure.in - changed sn targets to snavigator
11367
11368 Tue Mar 17 10:33:28 1998 Manfred Hollstein <manfred@s-direktnet.de>
11369
11370 * config-ml.in: After building symlink tree call make distclean
11371 if a Makefile got linked into ${ml_dir}/${ml_libdir}; this happens
11372 to be the case for libiberty.
11373
11374 Tue Mar 17 10:22:37 1998 H.J. Lu (hjl@gnu.ai.mit.edu)
11375
11376 * configure: When making link, also check the current
11377 directory. The configure scripts may create one.
11378
11379 Fri Mar 6 01:02:03 1998 Richard Henderson <rth@cygnus.com>
11380
11381 * config.sub: Accept alphapca56 and alphaev6 properly.
11382
11383 Fri Mar 6 00:14:55 1998 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
11384
11385 * configure.in: Revert 3 Jan change for powerpc-linux-gnulibc1.
11386
11387 Mon Feb 23 15:09:18 1998 Bruno Haible <bruno@linuix.mathematik.uni-karlsruhe.de
11388
11389 * config.sub (sco5): Fix typo.
11390
11391 Mon Feb 23 14:46:06 1998 Ian Lance Taylor <ian@cygnus.com>
11392
11393 * Makefile.in (INSTALL_MODULES): Move install-tcl before
11394 install-itcl.
11395 (install-itcl): Remove dependency on install-tcl.
11396
11397 Mon Feb 23 09:53:28 1998 Mark Alexander <marka@cygnus.com>
11398
11399 * configure.in: Remove libgloss from noconfigdirs for MN10300.
11400
11401 Thu Feb 19 13:40:41 1998 Ian Lance Taylor <ian@cygnus.com>
11402
11403 * configure.in: Don't build libgui for a cygwin32 target when not on
11404 a cygwin32 host.
11405
11406 Wed Feb 18 12:29:00 1998 Jason Molenda (crash@bugshack.cygnus.com)
11407
11408 * configure (redirect): Set to null, so default behavior of
11409 configure is now --verbose.
11410
11411 1998-02-16 Dave Love <d.love@dl.ac.uk>
11412
11413 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): Run configure with
11414 CONFIG_SITE=/dev/null to forestall lossage with site configuration.
11415
11416 Mon Feb 16 12:23:53 1998 Manfred Hollstein <Manfred.Hollstein@ks.sel.alcatel.de>
11417
11418 * Makefile.in (BASE_FLAGS_TO_PASS, EXTRA_TARGET_FLAGS): Really add
11419 this change to sync Makefile.in with its ChangeLog entries.
11420
11421 Thu Feb 12 15:03:08 1998 H.J. Lu <hjl@gnu.org>
11422
11423 * ltmain.sh (mkdir): Check that the directory doesn't exist
11424 before we exit with error, so that we don't get races during
11425 parallel builds.
11426
11427 Sat Feb 7 15:19:18 1998 Ian Lance Taylor <ian@cygnus.com>
11428
11429 * ltconfig, ltmain.sh: Update from libtool 1.0i.
11430
11431 Fri Feb 6 01:33:52 1998 Manfred Hollstein <manfred@s-direktnet.de>
11432
11433 * Makefile.in (BASE_FLAGS_TO_PASS): Don't pass PICFLAG and
11434 PICFLAG_FOR_TARGET.
11435 (EXTRA_TARGET_FLAGS): Don't pass PICFLAG_FOR_TARGET.
11436
11437 * configure: Emit a definition for the new macro enable_shared
11438 into each Makefile.
11439
11440 Thu Feb 5 17:01:12 1998 Jason Molenda (crash@bugshack.cygnus.com)
11441
11442 * configure.in (host_tools, native_only): Add libtool.
11443
11444 Wed Feb 4 16:53:58 1998 Geoffrey Noer <noer@cygnus.com>
11445
11446 * configure.in: add target-gperf to noconfigdirs for Cygwin32.
11447 Fix typo in ming config comment.
11448
11449 Wed Feb 4 18:56:13 1998 Ian Lance Taylor <ian@cygnus.com>
11450
11451 * ltconfig, ltmain.sh: Update from libtool 1.0h.
11452
11453 Mon Feb 2 19:38:19 1998 Ian Lance Taylor <ian@cygnus.com>
11454
11455 * config.sub: Add tic30 cases, and map c30 to tic30.
11456
11457 Sun Feb 1 02:40:41 1998 Richard Henderson <rth@cygnus.com>
11458
11459 * Makefile.in (TARGET_CONFIGDIRS): Add libf2c.
11460 (ALL_TARGET_MODULES, CONFIGURE_TARGET_MODULES): Similarly
11461 (CHECK_TARGET_MODULES, INSTALL_TARGET_MODULES): Similarly
11462 (CLEAN_TARGET_MODULES): Similarly
11463 (all-target-libf2c): Add dependences.
11464 * configure.in (target_libs): Add libf2c.
11465
11466 Fri Jan 30 17:18:32 1998 Geoffrey Noer <noer@cygnus.com>
11467
11468 * configure.in: Remove expect from noconfigdirs when target
11469 is cygwin32. OK to build expect and dejagnu with Canadian
11470 Cross.
11471
11472 Wed Jan 28 12:58:49 1998 Ian Lance Taylor <ian@cygnus.com>
11473
11474 * configure.in: Do build expect, dejagnu, and cvssrc for a cygwin32
11475 host.
11476
11477 * config.guess: Use ${UNAME_MACHINE} rather than i386 for cygwin32
11478 and mingw32.
11479
11480 Wed Jan 28 10:26:37 1998 Manfred Hollstein <manfred@s-direktnet.de>
11481
11482 * Makefile.in (BASE_FLAGS_TO_PASS): Remove passing $(local_prefix)
11483 here as it is not defined in the toplevel Makefile.
11484
11485 Tue Jan 27 23:25:06 1998 Manfred Hollstein <manfred@s-direktnet.de>
11486
11487 * configure (package_makefile_rules_frag): New variable, which names
11488 a file with generic rules, ...
11489 Change comment to mention we now have FIVE parts.
11490 * configure: Undo last change.
11491
11492 Tue Jan 27 23:15:55 1998 Lassi A. Tuura <lat@iki.fi>
11493
11494 * config.guess: More accurate determination of HP processor types.
11495 * config.sub: More accurate determination of HP processor types.
11496
11497 Sat Jan 24 01:59:45 1998 Manfred Hollstein <manfred@s-direktnet.de>
11498
11499 * configure (package_makefile_frag): Move inserting the
11500 ${package_makefile_frag} to where it should be according
11501 to the comment.
11502
11503 Fri Jan 23 00:29:28 1998 Philip Blundell <pb@nexus.co.uk>
11504
11505 * config.guess: Add support for Linux/ARM.
11506
11507 Thu Jan 22 15:14:01 1998 Fred Fish <fnf@cygnus.com>
11508
11509 * .cvsignore: Remove *-info and *-install since they match
11510 release-info and mpw-install, which we don't want to just ignore.
11511
11512 Thu Jan 22 01:38:33 1998 Richard Henderson <rth@cygnus.com>
11513
11514 * configure.in: Revert 3 Jan change for alpha-linux-gnulibc1.
11515
11516 Sat Jan 17 21:28:08 1998 Pieter Nagel <pnagel@epiuse.co.za>
11517
11518 * Makefile.in (FLAGS_TO_PASS): Pass down gcc_include_dir and
11519 local_prefix to sub-make invocations.
11520
11521 Sat Jan 17 21:04:59 1998 H.J. Lu (hjl@gnu.org)
11522
11523 * configure.in: Check makefile fragments in the source
11524 directory.
11525
11526 Fri Jan 16 00:41:37 1998 Alexandre Oliva <oliva@dcc.unicamp.br>
11527
11528 * configure.in: Check whether host and target makefile
11529 fragments exist before adding them to *_makefile_frag.
11530
11531 Wed Jan 14 23:39:10 1998 Bob Manson <manson@charmed.cygnus.com>
11532
11533 * configure.in (target_configdirs): Add cygmon for sparc64-elf.
11534
11535 Wed Jan 14 12:48:07 1998 Keith Seitz <keiths@pizza.cygnus.com>
11536
11537 * configure.in: Make sure we only replace RPATH_ENVVAR on
11538 lines which begin with RPATH_ENVVAR, i.e. add "^" to the
11539 regexp to sed.
11540
11541 * Makefile.in (BASE_FLAGS_TO_PASS): Pass RRPATH_ENVVAR down
11542 to sub-makes.
11543
11544 1998-01-13 Lee Iverson (leei@ai.sri.com)
11545
11546 * config-ml.in (multi-do): LDFLAGS must include multilib
11547 designator.
11548
11549 Tue Jan 13 01:13:24 1998 Robert Lipe (robertl@dgii.com)
11550
11551 * config.guess: Recognize i[3456]-i586-UnixWare7-sysv5.
11552
11553 Sun Jan 4 01:06:55 1998 Mumit Khan <khan@xraylith.wisc.edu>
11554
11555 * config.sub: Add mingw32 support.
11556 * configure.in: Likewise.
11557
11558 Sat Jan 3 12:11:05 1998 Franz Sirl <franz.sirl-kernel@lauterbach.com>
11559
11560 * configure.in: Finalize support for {alpha|powerpc}*-*-linux-gnulibc1
11561
11562 Sun Dec 28 11:28:58 1997 Jeffrey A Law (law@cygnus.com)
11563
11564 * Makefile.in (INSTALL_TARGET): Do install-gcc first.
11565 * configure (gxx_include_dir): Provide a definition for subdirs
11566 which do not use autoconf.
11567
11568 Wed Dec 24 22:46:55 1997 Jeffrey A Law (law@cygnus.com)
11569
11570 * config.guess: Sync with egcs. Picks up new alpha support,
11571 BeOS & some additional linux support.
11572
11573 Tue Dec 23 12:44:24 1997 Jeffrey A Law (law@cygnus.com)
11574
11575 * config.guess: HP 9000/803 is a PA1.1 machine.
11576
11577 Mon Dec 22 02:39:24 1997 Richard Henderson <rth@cygnus.com>
11578
11579 * configure.in: It's alpha*-...
11580
11581 Sun Dec 21 16:53:12 1997 H.J. Lu (hjl@gnu.ai.mit.edu)
11582
11583 * configure.in (host_makefile_frag, target_makefile_frag):
11584 Handle multiple config files.
11585 (alpha-*-linux*): Treat alpha-*-linux* as alpha-*-linux* and
11586 alpha-*-*.
11587
11588 Thu Dec 18 13:13:03 1997 Doug Evans <devans@canuck.cygnus.com>
11589
11590 * mkdep: New file.
11591
11592 Wed Dec 17 09:53:02 1997 Michael Meissner <meissner@cygnus.com>
11593
11594 * configure.in (d30v-*-*): Allow configuring of libide, vmake, etc.
11595
11596 Tue Dec 16 17:36:05 1997 Ian Lance Taylor <ian@cygnus.com>
11597
11598 * Makefile.in: Add libgui directory.
11599 (GDB_TK): Add all-libgui.
11600 * configure.in: Add libgui directory.
11601 * configure: Add all-libgui to GDB_TK.
11602
11603 Mon Dec 15 16:12:28 1997 Nick Clifton <nickc@cygnus.com>
11604
11605 * config-ml.in (multidirs): Add m32r to multilib list.
11606
11607 Fri Dec 12 10:43:31 1997 Brendan Kehoe <brendan@canuck.cygnus.com>
11608
11609 * Makefile.in (all-target-gperf): Change dependency to
11610 all-target-libstdc++.
11611
11612 Thu Dec 11 23:30:51 1997 Fred Fish <fnf@ninemoons.com>
11613
11614 * config.guess: Add BeOS support.
11615
11616 Wed Dec 10 15:10:38 1997 Ian Lance Taylor <ian@cygnus.com>
11617
11618 Source directory cvs renamed to cvssrc:
11619 * configure.in (host_tools): Change cvs to cvssrc.
11620 (native_only): Likewise.
11621 (noconfigdirs) [various cases]: Likewise.
11622 * Makefile.in (ALL_MODULES): Change all-cvs to all-cvssrc.
11623 (CROSS_CHECK_MODULES): Change check-cvs to check-cvssrc.
11624 (INSTALL_MODULES): Change install-cvs to install-cvssrc.
11625 (CLEAN_MODULES): Change clean-cvs to clean-cvssrc.
11626 (all-cvssrc): Rename target from all-cvs.
11627
11628 Wed Dec 3 07:55:59 1997 Jeffrey A Law (law@cygnus.com)
11629
11630 * configure (gxx_include_dir): Fix thinko.
11631
11632 Tue Dec 2 10:55:34 1997 Jeffrey A Law (law@cygnus.com)
11633
11634 * Makefile.in (INSTALL_TARGET_CROSS): Define.
11635 (install-cross, install-gcc-cross): New targets.
11636
11637 Tue Dec 2 10:08:31 1997 Nick Clifton <nickc@cygnus.com>
11638
11639 * configure.in (noconfigdirs): Add support for Thumb target.
11640
11641 * config.sub (maybe_os): Add support for Thumb target.
11642
11643 Sun Nov 30 16:12:27 1997 Bob Manson <manson@charmed.cygnus.com>
11644
11645 * Makefile.in: Add rules for cygmon.
11646
11647 * configure.in: Build cygmon for sparc-elf and sparclite-aout.
11648
11649 Thu Nov 27 01:31:30 1997 Jeffrey A Law (law@cygnus.com)
11650
11651 * Makefile.in (INSTALL_TARGET): Do install-gcc first.
11652 * configure (gxx_include_dir): Provide a definition for subdirs
11653 which do not use autoconf.
11654
11655 Wed Nov 26 11:53:33 1997 Keith Seitz <keiths@onions.cygnus.com>
11656
11657 * Makefile.in, configure, configure.in, ChangeLog: merge with foundry's
11658 11/18/97 build
11659
11660 Wed Nov 26 16:08:50 1997 Jeffrey A Law (law@cygnus.com)
11661
11662 * From Franz Sirl.
11663 * config.guess (powerpc*-*-linux): Handle glibc2 beta release
11664 found on RedHat Linux systems.
11665
11666 Fri Nov 21 09:51:01 1997 Jeffrey A Law (law@cygnus.com)
11667
11668 * config.guess (alpha stuff): Merge with FSF to avoid incorrect
11669 guesses.
11670
11671 Thu Nov 13 11:38:37 1997 Jeffrey A Law (law@cygnus.com)
11672
11673 * configure.in (i[3456]86-ncr-sysv4.3*): Tweak.
11674
11675 Mon Nov 10 15:23:21 1997 H.J. Lu <hjl@gnu.ai.mit.edu>
11676
11677 * ltmain.sh: If mkdir fails, check whether the directory was created
11678 anyhow by some other process.
11679
11680 Mon Nov 10 14:38:03 1997 Michael Meissner <meissner@cygnus.com>
11681
11682 * configure.in (d30v-*-*): Configure all directories.
11683
11684 Sun Nov 9 17:36:20 1997 Michael Meissner <meissner@cygnus.com>
11685
11686 * configure.in (d30v-*-*): Configure newlib, libiberty directories
11687 for the D30V.
11688
11689 Sat Nov 8 14:42:59 1997 Michael Meissner <meissner@cygnus.com>
11690
11691 * configure.in (d30v-*-*): Configure target-libgloss on the D30V.
11692
11693 Fri Nov 7 10:34:09 1997 Rob Savoye <rob@darkstar.cygnus.com>
11694
11695 * include/libiberty.h: Add extern "C" { so it can be used with C++
11696 progrms.
11697 * include/remote-sim.h: Add extern "C" { so it can be used with C++
11698 programs.
11699
11700 Thu Oct 30 11:09:29 1997 Michael Meissner <meissner@cygnus.com>
11701
11702 * configure.in (d30v-*-*): Configure GCC now.
11703
11704 Mon Oct 27 13:17:24 1997 Stan Shebs <shebs@andros.cygnus.com>
11705
11706 * configure.in: Remove a "second pass" of tweaking noconfigdirs,
11707 is no longer needed.
11708
11709 Mon Oct 27 12:03:53 1997 Jason Merrill <jason@yorick.cygnus.com>
11710
11711 * Makefile.in: check-target-libio depends on all-target-libstdc++.
11712
11713 Sun Oct 26 11:48:27 1997 Manfred Hollstein (manfred@s-direktnet.de)
11714
11715 * Makefile.in (bootstrap-lean): Combined with `normal' bootstrap
11716 targets using "$@" to provide support for similar but not identical
11717 targets without having to duplicate code.
11718
11719 Mon Oct 20 15:28:49 1997 Klaus K"ampf <kkaempf@progis.de>
11720
11721 * makefile.vms: Fix to work with DEC C.
11722
11723 Tue Oct 7 23:58:57 1997 Gavin Koch <gavin@cygnus.com>
11724
11725 * config.sub: Add mips-tx39-elf to marketing names.
11726
11727 Tue Oct 7 14:24:41 1997 Ian Lance Taylor <ian@cygnus.com>
11728
11729 * ltmain.sh: Handle symlinks in generated script.
11730
11731 Wed Oct 1 13:11:27 1997 Ian Lance Taylor <ian@cygnus.com>
11732
11733 * configure: Handle autoconf style directory options: --bindir,
11734 --datadir, --includedir, --infodir, --libdir, --libexecdir,
11735 --mandir, --oldincludedir, --sbindir, --sharedstatedir,
11736 --sysconfdir.
11737 * Makefile.in (sbindir, libexecdir, sysconfdir): New variables.
11738 (sharedstatedir, localstatedir, oldincludedir): New variables.
11739 (BASE_FLAGS_TO_PASS): Pass down bindir, datadir, includedir,
11740 infodir, libdir, libexecdir, localstatedir, mandir, oldincludedir,
11741 sbindir, sharedstatedir, and sysconfdir.
11742
11743 Mon Sep 29 00:38:08 1997 Aaron Jackson <jackson@negril.msrce.howard.edu>
11744
11745 * Makefile.in (bootstrap-lean): New target.
11746
11747 Wed Sep 24 18:06:27 1997 Stu Grossman <grossman@babylon-5.cygnus.com>
11748
11749 * configure.in (d30v): Remove tcl, tk, expect, gdb, itcl, tix, db,
11750 sn, and gnuserv from noconfigdirs.
11751
11752 Wed Sep 24 15:18:32 1997 Ian Lance Taylor <ian@cygnus.com>
11753
11754 * ltmain.sh: Tweak shell pattern to avoid bug in NetBSD /bin/sh.
11755
11756 Thu Sep 18 23:58:27 1997 Jeffrey A Law (law@cygnus.com)
11757
11758 * Makefile.in (cross): New target.
11759
11760 Thu Sep 18 21:43:23 1997 Alexandre Oliva <oliva@dcc.unicamp.br>
11761 Jeff Law <law@cygnus.com>
11762
11763 * Makefile.in (bootstrap2, bootstrap3): New targets.
11764 (all-bootstrap): Remove outdated and confusing target.
11765 (bootstrap, bootstrap2, bootstrap3): Don't pass BOOT_CFLAGS down.
11766
11767 Thu Sep 18 15:37:42 1997 Andrew Cagney <cagney@b1.cygnus.com>
11768
11769 * configure (tooldir): enable_gdbtk=YES for cygwin32, NO for
11770 windows. Consistent with gdb/configure.
11771
11772 1997-09-15 02:37 Ulrich Drepper <drepper@cygnus.com>
11773
11774 * configure.in: Name Linux target fragment.
11775
11776 * configure: Rewrite so that project Makefile fragment is inserted
11777 first and appears last in the resulting Makefile.
11778
11779 Tue Sep 16 09:55:07 1997 Andrew Cagney <cagney@b1.cygnus.com>
11780
11781 * Makefile.in (install-itcl): Install tcl first.
11782
11783 Fri Sep 12 16:19:20 1997 Geoffrey Noer <noer@cygnus.com>
11784
11785 * configure.in: remove bison from noconfigdirs for Cygwin32 host
11786
11787 Thu Sep 11 16:40:46 1997 H.J. Lu (hjl@gnu.ai.mit.edu)
11788
11789 * Makefile.in (local-distclean): Also remove mh-frag mt-frag.
11790
11791 * configure.in (skipdirs): Add target-librx for Linux.
11792 (alpha-*-linux*): Use config/mh-elfalphapic and config/mt-elfalphapic.
11793
11794 Wed Sep 10 21:29:54 1997 Jeffrey A Law (law@cygnus.com)
11795
11796 * Makefile.in (bootstrap): New target.
11797
11798 Wed Sep 10 15:19:22 1997 Jeffrey A Law (law@cygnus.com)
11799
11800 * config.sub: Accept 'amigados' for backward compatability.
11801
11802 Mon Sep 8 20:46:20 1997 Ian Lance Taylor <ian@cygnus.com>
11803
11804 * config.guess: Merge with FSF.
11805
11806 Sun Sep 7 23:18:32 1997 Fred Fish <fnf@ninemoons.com>
11807
11808 * config.sub: Change 'amigados' to 'amigaos' to match current usage.
11809
11810 Sun Sep 7 15:55:28 1997 Gavin Koch <gavin@cygnus.com>
11811
11812 * config.sub: Add "marketing-names" patch.
11813
11814 Fri Sep 5 16:11:28 1997 Joel Sherrill (joel@OARcorp.com)
11815
11816 * configure.in (*-*-rtems*): Do not build libgloss for rtems.
11817
11818 Fri Sep 5 12:27:17 1997 Jeffrey A Law (law@cygnus.com)
11819
11820 * config.sub: Handle v850-elf.
11821
11822 Wed Sep 3 22:01:58 1997 Fred Fish <fnf@ninemoons.com>
11823
11824 * .cvsignore (*-install): Remove.
11825
11826 Wed Sep 3 12:15:24 1997 Chris Provenzano <proven@cygnus.com>
11827
11828 * ltconfig: Set CONFIG_SHELL in libtool.
11829 * ltmain.sh: Use CONFIG_SHELL instead of /bin/sh
11830
11831 Mon Sep 1 16:45:44 1997 Jim Wilson <wilson@cygnus.com>
11832
11833 * configure.in (target_subdir): Set to libraries if enable_multilib.
11834
11835 Wed Aug 27 16:15:11 1997 Jim Wilson <wilson@cygnus.com>
11836
11837 * config.guess: Update from gcc directory.
11838
11839 Tue Aug 26 16:46:46 1997 Andrew Cagney <cagney@b1.cygnus.com>
11840
11841 * Makefile.in (all-sim): Depends on all-readline.
11842
11843 Wed Aug 20 19:57:37 1997 Jason Merrill <jason@yorick.cygnus.com>
11844
11845 * Makefile.in (BISON, YACC): Use $$s.
11846 (all-bison): Depend on all-texinfo.
11847
11848 Tue Aug 19 01:41:32 1997 Jason Merrill <jason@yorick.cygnus.com>
11849
11850 * Makefile.in (BISON): Add -L flag.
11851 (YACC): Likewise.
11852
11853 Mon Aug 18 11:30:50 1997 Nick Clifton <nickc@cygnus.com>
11854
11855 * configure.in (noconfigdirs): Add support for v850e target.
11856
11857 * config.sub (maybe_os): Add support for v850e target.
11858
11859 Mon Aug 18 11:30:50 1997 Nick Clifton <nickc@cygnus.com>
11860
11861 * configure.in (noconfigdirs): Add support for v850ea target.
11862
11863 * config.sub (maybe_os): Add support for v850ea target.
11864
11865 Mon Aug 18 09:24:06 1997 Gavin Koch <gavin@cygnus.com>
11866
11867 * config.sub: Add mipstx39. Delete r3900.
11868
11869 Mon Aug 18 17:20:10 1997 Jason Molenda (crash@godzilla.cygnus.co.jp)
11870
11871 * Makefile.in (all-autoconf): Depends on all-texinfo.
11872
11873 Fri Aug 15 23:09:26 1997 Michael Meissner <meissner@cygnus.com>
11874
11875 * config-ml.in ({powerpc,rs6000}*-*-*): Update to current AIX and
11876 eabi targets.
11877
11878 Thu Aug 14 14:42:17 1997 Ian Lance Taylor <ian@cygnus.com>
11879
11880 * configure: Get CFLAGS and CXXFLAGS from Makefile, if possible.
11881
11882 * configure: When handling a Canadian Cross, handle YACC as well as
11883 BISON. Just set BISON to bison. When setting YACC, prefer bison.
11884 * Makefile.in (all-bison): Depend upon all-texinfo.
11885
11886 Tue Aug 12 20:09:48 1997 Jason Merrill <jason@yorick.cygnus.com>
11887
11888 * Makefile.in (BISON): bison, not byacc or bison -y.
11889 (YACC): bison -y or byacc or yacc.
11890 (various): Add *-bison as appropriate.
11891 (taz): No need to mess with BISON anymore.
11892
11893 Tue Aug 12 22:33:08 1997 Ian Lance Taylor <ian@cygnus.com>
11894
11895 * configure: If OSTYPE matches *win32*, try to find a good value for
11896 CONFIG_SHELL.
11897
11898 Sun Aug 10 14:41:11 1997 Ian Lance Taylor <ian@cygnus.com>
11899
11900 * Makefile.in (taz): Get the version number from AM_INIT_AUTOMAKE in
11901 configure.in if it is present.
11902
11903 Sat Aug 9 00:58:01 1997 Ian Lance Taylor <ian@cygnus.com>
11904
11905 * Makefile.in (LD_FOR_TARGET): Change ld.new to ld-new.
11906
11907 Fri Aug 8 16:30:13 1997 Doug Evans <dje@canuck.cygnus.com>
11908
11909 * config.sub: Recognize `arc' cpu.
11910 * configure.in: Likewise.
11911 * config-ml.in: Likewise.
11912
11913 Thu Aug 7 11:02:34 1997 Ian Lance Taylor <ian@cygnus.com>
11914
11915 * Makefile.in ($(INSTALL_X11_MODULES)): Depend upon installdirs.
11916
11917 Wed Aug 6 16:27:29 1997 Chris Provenzano <proven@cygnus.com>
11918
11919 * configure: Changed sed delimiter from ':' to '|' when
11920 attempting to substitute ${config_shell} for SHELL. On
11921 NT ${config_shell} may contain a ':' in it.
11922
11923 Wed Aug 6 12:29:05 1997 Jason Merrill <jason@yorick.cygnus.com>
11924
11925 * Makefile.in (EXTRA_GCC_FLAGS): Fix for non-bash shells.
11926
11927 Wed Aug 6 00:42:35 1997 Ian Lance Taylor <ian@cygnus.com>
11928
11929 * Makefile.in (AS_FOR_TARGET): Change as.new to as-new.
11930
11931 Tue Aug 5 14:08:51 1997 Ian Lance Taylor <ian@cygnus.com>
11932
11933 * Makefile.in (NM_FOR_TARGET): Change nm.new to nm-new.
11934
11935 * ylwrap: If the program is a relative path, force it to be
11936 absolute.
11937
11938 Tue Aug 5 12:12:44 1997 Andrew Cagney <cagney@b1.cygnus.com>
11939
11940 * configure (tooldir): Set BISON to `bison -y' and not just bison.
11941
11942 Mon Aug 4 22:59:02 1997 Andrew Cagney <cagney@b1.cygnus.com>
11943
11944 * Makefile.in (CC_FOR_TARGET): When winsup/Makefile present,
11945 correctly specify the target build directory $(TARGET_SUBDIR)/winsup
11946 for libraries.
11947
11948 Mon Aug 4 12:40:24 1997 Jason Merrill <jason@yorick.cygnus.com>
11949
11950 * Makefile.in (EXTRA_GCC_FLAGS): Fix handling of macros with values
11951 separated by spaces.
11952
11953 Thu Jul 31 19:49:49 1997 Ian Lance Taylor <ian@cygnus.com>
11954
11955 * ylwrap: New file.
11956 * Makefile.in (DEVO_SUPPORT): Add ylwrap.
11957
11958 * ltmain.sh: Handle /bin/sh at start of install program.
11959
11960 * Makefile.in (DEVO_SUPPORT): Add ltconfig, ltmain.sh, and missing.
11961
11962 * ltconfig, ltmain.sh: New files, from libtool 1.0.
11963 * missing: New file, from automake 1.2.
11964
11965 Thu Jul 24 12:57:56 1997 Ian Lance Taylor <ian@cygnus.com>
11966
11967 * Makefile.in: Treat tix like tk, putting it in X11_MODULES. Add
11968 check-tk to CHECK_X11_MODULES.
11969
11970 Wed Jul 23 17:03:29 1997 Ian Lance Taylor <ian@cygnus.com>
11971
11972 * config.sub: Merge with FSF.
11973
11974 Tue Jul 22 19:08:29 1997 Ian Lance Taylor <ian@cygnus.com>
11975
11976 * config.guess: Merge with FSF.
11977
11978 Tue Jul 22 14:50:42 1997 Robert Hoehne <robert.hoehne@Mathematik.TU-Chemnitz.DE>
11979
11980 * configure: Treat msdosdjgpp like go32.
11981 * configure.in: Likewise. Don't remove gprof for go32.
11982
11983 * configure: Change Makefile.tem2 to Makefile.tm2.
11984
11985 Mon Jul 21 10:31:26 1997 Stephen Peters <speters@cygnus.com>
11986
11987 * configure.in (noconfigdirs): For alpha-dec-osf*, don't ignore grep.
11988
11989 Tue Jul 15 14:33:03 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
11990
11991 * install-sh (chmodcmd): Set to null if the DST directory already
11992 exists. Same as Nov 11th change.
11993
11994 Mon Jul 14 11:01:15 1997 Martin M. Hunt <hunt@cygnus.com>
11995
11996 * configure (GDB_TK): Needs itcl and tix.
11997
11998 Mon Jul 14 00:32:10 1997 Jason Merrill <jason@yorick.cygnus.com>
11999
12000 * config.guess: Update from FSF.
12001
12002 Fri Jul 11 11:57:11 1997 Martin M. Hunt <hunt@cygnus.com>
12003
12004 * Makefile.in (GDB_TK): Depend on itcl and tix.
12005
12006 Fri Jul 4 13:25:31 1997 Ian Lance Taylor <ian@cygnus.com>
12007
12008 * Makefile.in (INSTALL_PROGRAM_ARGS): New variable.
12009 (INSTALL_PROGRAM): Use $(INSTALL_PROGRAM_ARGS).
12010 (INSTALL_SCRIPT): New variable.
12011 (BASE_FLAGS_TO_PASS): Pass down INSTALL_SCRIPT.
12012 * configure.in: If host is *-*-cygwin32*, set INSTALL_PROGRAM_ARGS
12013 to -x.
12014 * install-sh: Add support for -x option.
12015
12016 Mon Jun 30 15:51:30 1997 Ian Lance Taylor <ian@cygnus.com>
12017
12018 * configure.in, Makefile.in: Treat tix like itcl.
12019
12020 Thu Jun 26 13:59:19 1997 Ian Lance Taylor <ian@cygnus.com>
12021
12022 * Makefile.in (WINDRES): New variable.
12023 (WINDRES_FOR_TARGET): New variable.
12024 (BASE_FLAGS_TO_PASS): Add WINDRES_FOR_TARGET.
12025 (EXTRA_HOST_FLAGS): Add WINDRES.
12026 (EXTRA_TARGET_FLAGS): Add WINDRES.
12027 (EXTRA_GCC_FLAGS): Add WINDRES.
12028 ($(DO_X)): Pass down WINDRES.
12029 ($(CONFIGURE_TARGET_MODULES)): Set WINDRES when configuring.
12030 * configure: Treat WINDRES like DLLTOOL, and WINDRES_FOR_TARGET like
12031 DLLTOOL_FOR_TARGET.
12032
12033 Wed Jun 25 15:01:26 1997 Felix Lee <flee@cygnus.com>
12034
12035 * configure.in: configure sim before gdb for win32-x-ppc
12036
12037 Wed Jun 25 12:18:54 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
12038
12039 Move gperf into the toplevel, from libg++.
12040 * configure.in (target_tools): Add target-gperf.
12041 (native_only): Add target-gperf.
12042 * Makefile.in (all-target-gperf): New target, depend on
12043 all-target-libg++.
12044 (configure-target-gperf): Empty rule.
12045 (ALL_TARGET_MODULES): Add all-target-gperf.
12046 (CONFIGURE_TARGET_MODULES): Add configure-target-gperf.
12047 (CHECK_TARGET_MODULES): Add check-target-gperf.
12048 (INSTALL_TARGET_MODULES): Add install-target-gperf.
12049 (CLEAN_TARGET_MODULES): Add clean-target-gperf.
12050
12051 Mon Jun 23 10:51:53 1997 Jeffrey A Law (law@cygnus.com)
12052
12053 * config.sub (mn10200): Recognize new basic machine.
12054
12055 Thu Jun 19 14:16:42 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
12056
12057 * configure.in: Don't set ENABLE_MULTILIB, so we'll be passing
12058 --enable-multilib down to subdirs; setting TARGET_SUBDIR was enough.
12059
12060 Tue Jun 17 15:31:20 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
12061
12062 * configure.in: If we're building mips-sgi-irix6* native, turn on
12063 ENABLE_MULTILIB and set TARGET_SUBDIR.
12064
12065 Tue Jun 17 12:20:59 1997 Tom Tromey <tromey@cygnus.com>
12066
12067 * Makefile.in (all-sn): Depend on all-grep.
12068
12069 Mon Jun 16 11:11:10 1997 Ian Lance Taylor <ian@cygnus.com>
12070
12071 * configure.in: Use mh-ppcpic and mt-ppcpic for powerpc*-* targets.
12072
12073 * configure: Set CFLAGS and CXXFLAGS, and substitute them into
12074 Makefile. From Jeff Makey <jeff@cts.com>.
12075 * Makefile.in: Add comment for CFLAGS and CXXFLAGS.
12076
12077 * Makefile.in (DISTBISONFILES): Remove.
12078 (taz): Don't futz with DISTBISONFILES. Change BISON to use
12079 $(DEFAULT_YACC).
12080
12081 * configure.in: Build itl, db, sn, etc., when building for native
12082 cygwin32.
12083
12084 * Makefile.in (LD): New variable.
12085 (EXTRA_HOST_FLAGS): Pass down LD.
12086 ($(DO_X)): Likewise.
12087
12088 Mon Jun 16 11:10:35 1997 Philip Blundell <Philip.Blundell@pobox.com>
12089
12090 * Makefile.in (INSTALL): Use $(SHELL) when executing install-sh.
12091
12092 Fri Jun 13 10:22:56 1997 Bob Manson <manson@charmed.cygnus.com>
12093
12094 * configure.in (targargs): Strip out any supplied --build argument
12095 before adding our own. Always add --build.
12096
12097 Thu Jun 12 21:12:28 1997 Bob Manson <manson@charmed.cygnus.com>
12098
12099 * configure.in (targargs): Pass --build if we're doing
12100 a cross-compile.
12101
12102 Fri Jun 6 21:38:40 1997 Rob Savoye <rob@chinadoll.cygnus.com>
12103
12104 * configure: Use '|' instead of ":" as the separator in
12105 sed. Otherwise sed chokes on NT path names with drive
12106 designators. Also look for "?:*" as the leading characters in an
12107 absolute pathname.
12108
12109 Mon Jun 2 13:05:20 1997 Gavin Koch <gavin@cygnus.com>
12110
12111 * config.sub: Support for r3900.
12112
12113 Wed May 21 17:33:31 1997 Ian Lance Taylor <ian@cygnus.com>
12114
12115 * configure.in: Use install-sh, not install.sh.
12116
12117 Wed May 14 16:06:51 1997 Ian Lance Taylor <ian@cygnus.com>
12118
12119 * Makefile.in (taz): Improve check for BISON so it doesn't try to
12120 apply it twice.
12121
12122 Fri May 9 17:22:05 1997 Ian Lance Taylor <ian@cygnus.com>
12123
12124 * Makefile.in (INSTALL_MODULES): Put install-opcodes before
12125 install-binutils.
12126
12127 Thu May 8 17:29:50 1997 Ian Lance Taylor <ian@cygnus.com>
12128
12129 * Makefile.in: Add automake targets.
12130 * configure.in (host_tools): Add automake.
12131
12132 Tue May 6 15:49:52 1997 Ian Lance Taylor <ian@cygnus.com>
12133
12134 * configure: Default CXX to c++, not gcc.
12135 * Makefile.in (CXX): Set to c++, not gcc.
12136 (CXX_FOR_TARGET): When cross, transform c++, not gcc.
12137
12138 Thu May 1 10:11:43 1997 Geoffrey Noer <noer@cygnus.com>
12139
12140 * install-sh: try appending a .exe if source file doesn't
12141 exist
12142
12143 Wed Apr 30 12:05:36 1997 Jason Merrill <jason@yorick.cygnus.com>
12144
12145 * configure.in: Turn on multilib by default.
12146 (cross_only): Remove target-libiberty.
12147
12148 * Makefile.in (all-gcc): Don't depend on libiberty.
12149
12150 Mon Apr 28 18:39:45 1997 Michael Snyder <msnyder@cleaver.cygnus.com>
12151
12152 * config.guess: improve algorithm for recognizing Gnu Hurd x86.
12153
12154 Thu Apr 24 19:30:07 1997 Ian Lance Taylor <ian@cygnus.com>
12155
12156 * Makefile.in (DEVO_SUPPORT): Add mpw-install.
12157 (DISTBISONFILES): Add ld/Makefile.in
12158
12159 Tue Apr 22 17:17:28 1997 Geoffrey Noer <noer@pizza.cygnus.com>
12160
12161 * configure.in: if target is cygwin32 but host isn't cygwin32,
12162 don't configure gdb tcl tk expect, not just gdb.
12163
12164 Mon Apr 21 13:33:39 1997 Tom Tromey <tromey@cygnus.com>
12165
12166 * configure.in: Added gnuserv everywhere sn appears.
12167
12168 * Makefile.in (ALL_MODULES): Added all-gnuserv.
12169 (CROSS_CHECK_MODULES): Added check-gnuserv.
12170 (INSTALL_MODULES): Added install-gnuserv.
12171 (CLEAN_MODULES): Added clean-gnuserv.
12172 (all-gnuserv): New target.
12173
12174 Thu Apr 17 13:57:06 1997 Per Fogelstrom <pefo@openbsd.org>
12175
12176 * config.guess: Fixes for MIPS OpenBSD systems.
12177
12178 Tue Apr 15 12:21:07 1997 Ian Lance Taylor <ian@cygnus.com>
12179
12180 * Makefile.in (INSTALL_XFORM): Remove.
12181 (BASE_FLAGS_TO_PASS): Remove INSTALL_XFORM.
12182
12183 * mkinstalldirs: New file, copied from automake.
12184 * Makefile.in (installdirs): Rename from install-dirs. Use
12185 mkinstalldirs. Change all users.
12186 (DEVO_SUPPORT): Add mkinstalldirs.
12187
12188 Mon Apr 14 11:21:38 1997 Ian Lance Taylor <ian@cygnus.com>
12189
12190 * install-sh: Rename from install.sh.
12191 * Makefile.in (INSTALL): Change install.sh to install-sh.
12192 (DEVO_SUPPORT): Likewise.
12193
12194 * configure: Use ${config_shell} with ${moveifchange}. From Thomas
12195 Graichen <graichen@rzpd.de>.
12196
12197 Fri Apr 11 16:37:10 1997 Niklas Hallqvist <niklas@appli.se>
12198
12199 * config.guess: Recognize OpenBSD systems correctly.
12200
12201 Fri Apr 11 17:07:04 1997 Jason Molenda (crash@godzilla.cygnus.co.jp)
12202
12203 * README, Makefile.in (ETC_SUPPORT): Remove references to
12204 cfg-paper*, configure.{texi,man,info*}._
12205
12206 Sun Apr 6 18:47:57 1997 Andrew Cagney <cagney@kremvax.cygnus.com>
12207
12208 * Makefile.in (all.normal): Ensure that gcc is built after all
12209 the x11 - ie gdb - targets.
12210
12211 Tue Apr 1 16:28:50 1997 Klaus Kaempf <kkaempf@progis.de>
12212
12213 * makefile.vms: Don't run conf-a-gas.
12214
12215 Mon Mar 31 16:26:55 1997 Joel Sherrill <joel@oarcorp.com>
12216
12217 * configure.in (hppa1.1-*-rtems*): New target, like hppa-*-*elf*.
12218
12219 Sun Mar 30 12:38:27 1997 Fred Fish <fnf@cygnus.com>
12220
12221 * configure.in: Remove noconfigdirs case since gdb also
12222 configures and builds for tic80-coff.
12223
12224 Fri Mar 28 18:28:52 1997 Ian Lance Taylor <ian@cygnus.com>
12225
12226 * configure: Set cache_file to config.cache.
12227 * Makefile.in (local-distclean): Remove config.cache.
12228
12229 Wed Mar 26 18:49:39 1997 Ian Lance Taylor <ian@cygnus.com>
12230
12231 * COPYING: Update FSF address.
12232
12233 Wed Mar 26 10:38:25 1997 Michael Meissner <meissner@cygnus.com>
12234
12235 * configure.in (tic80-*-*): Remove G++ libraries and libgloss from
12236 noconfigdirs.
12237
12238 Mon Mar 24 15:02:39 1997 Ian Lance Taylor <ian@cygnus.com>
12239
12240 * Makefile.in (install-dirs): Don't crash if prefix, and hence
12241 MAKEDIRS, is empty.
12242
12243 Mon Mar 24 12:40:55 1997 Doug Evans <dje@canuck.cygnus.com>
12244
12245 * config.sub: Tweak mn10300 entry.
12246
12247 Fri Mar 21 15:35:27 1997 Michael Meissner <meissner@cygnus.com>
12248
12249 * configure.in (host_tools): Put sim before gdb, so gdb's
12250 configure.tgt can determine if the simulator was configured.
12251
12252 Sun Mar 16 16:07:08 1997 Fred Fish <fnf@cygnus.com>
12253
12254 * config.sub: Move BeOS $os case to be with other Cygnus
12255 local cases.
12256
12257 Sun Mar 16 01:34:55 1997 Martin Hunt <hunt@cygnus.com>
12258
12259 * config.sub: Remove misplaced comment that broke Linux.
12260
12261 Sat Mar 15 22:50:15 1997 Fred Fish <fnf@cygnus.com>
12262
12263 * config.sub: Add BeOS support.
12264
12265 Mon Mar 10 13:30:11 1997 Tom Tromey <tromey@cygnus.com>
12266
12267 * Makefile.in (CHECK_X11_MODULES): Don't run check-tk.
12268
12269 Wed Mar 5 12:09:29 1997 Martin <hunt@cygnus.com>
12270
12271 * configure.in (noconfigdirs): Remove tcl and tk from
12272 noconfigdirs for cygwin32 builds.
12273
12274 Fri Feb 28 18:20:15 1997 Fred Fish <fnf@cygnus.com>
12275
12276 * configure.in (tic80-*-*): Remove ld from noconfigdirs.
12277
12278 Thu Feb 27 14:57:26 1997 Ken Raeburn <raeburn@cygnus.com>
12279
12280 * Makefile.in (GAS_SUPPORT_DIRS, BINUTILS_SUPPORT_DIRS): Remove
12281 make-all.com, use makefile.vms instead.
12282
12283 Tue Feb 25 18:46:14 1997 Stan Shebs <shebs@andros.cygnus.com>
12284
12285 * config.sub: Accept -lnews*.
12286
12287 Tue Feb 25 13:19:14 1997 Andrew Cagney <cagney@kremvax.tpgi.com.au>
12288
12289 * configure.in (noconfigdirs): Disable target-newlib,
12290 target-examples and target-libiberty for d30v.
12291
12292 Fri Feb 21 17:56:25 1997 Martin M. Hunt <hunt@pizza.cygnus.com>
12293
12294 * configure.in (noconfigdirs): Enable ld for d30v.
12295
12296 Fri Feb 21 20:58:51 1997 Michael Meissner <meissner@cygnus.com>
12297
12298 * configure.in (tic80-*-*): Build compiler.
12299
12300 Sun Feb 16 15:41:09 1997 Andrew Cagney <cagney@critters.cygnus.com>
12301
12302 * configure.in (d30v-*): Remove sim directory from list of
12303 unsupported d30v directories
12304
12305 Tue Feb 18 17:32:42 1997 Martin M. Hunt <hunt@pizza.cygnus.com>
12306
12307 * config.sub, configure.in: Add d30v target cpu.
12308
12309 Thu Feb 13 22:04:44 1997 Klaus Kaempf <kkaempf@progis.de>
12310
12311 * makefile.vms: New file.
12312 * make-all.com: Remove.
12313
12314 Wed Feb 12 12:54:18 1997 Jim Wilson <wilson@cygnus.com>
12315
12316 * Makefile.in (EXTRA_GCC_FLAGS): Add LIBGCC2_DEBUG_CFLAGS.
12317
12318 Sat Feb 8 20:36:49 1997 Michael Meissner <meissner@cygnus.com>
12319
12320 * Makefile.in (all-itcl): The rule is all-itcl, not all-tcl.
12321
12322 Tue Feb 4 11:39:29 1997 Tom Tromey <tromey@cygnus.com>
12323
12324 * Makefile.in (ALL_MODULES): Added all-db.
12325 (CROSS_CHECK_MODULES): Addec check-db.
12326 (INSTALL_MODULES): Added install-db.
12327 (CLEAN_MODULES): Added clean-db.
12328
12329 Mon Feb 3 13:29:36 1997 Ian Lance Taylor <ian@cygnus.com>
12330
12331 * config.guess: Merge with latest FSF sources.
12332
12333 Tue Jan 28 09:20:37 1997 Tom Tromey <tromey@cygnus.com>
12334
12335 * Makefile.in (ALL_MODULES): Added all-itcl.
12336 (CROSS_CHECK_MODULES): Added check-itcl.
12337 (INSTALL_MODULES): Added install-itcl.
12338 (CLEAN_MODULES): Added clean-itcl.
12339
12340 Thu Jan 23 01:44:27 1997 Geoffrey Noer <noer@cygnus.com>
12341
12342 * configure.in: build gdb for mn10200
12343
12344 Fri Jan 17 15:32:15 1997 Doug Evans <dje@canuck.cygnus.com>
12345
12346 * Makefile.in (all-target-winsup): Depend on all-target-libio.
12347
12348 Mon Jan 13 22:46:54 1997 Michael Meissner <meissner@tiktok.cygnus.com>
12349
12350 * configure.in (tic80-*-*): Turn off most targets right now.
12351
12352 Fri Jan 3 16:04:03 1997 Ian Lance Taylor <ian@cygnus.com>
12353
12354 * Makefile.in (MAKEINFO): Check for the existence of the Makefile,
12355 rather than the makeinfo program.
12356 (do-info): Depend upon all-texinfo.
12357
12358 Tue Dec 31 16:00:31 1996 Ian Lance Taylor <ian@cygnus.com>
12359
12360 * configure.in: Remove uses of config/mh-linux.
12361
12362 * config.sub, config.guess: Merge with latest FSF sources.
12363
12364 Fri Dec 27 23:04:33 1996 Fred Fish <fnf@cygnus.com>
12365
12366 * config.sub (case $basic_machine): Add tic80 entries.
12367
12368 Fri Dec 27 12:07:59 1996 Ian Lance Taylor <ian@cygnus.com>
12369
12370 * config.sub, config.guess: Merge with latest FSF sources.
12371
12372 Wed Dec 18 22:46:39 1996 Stan Shebs <shebs@andros.cygnus.com>
12373
12374 * mpw-build.in: Build ld before gcc, use NewFolderRecursive.
12375 * mpw-config.in: Test for NewFolderRecursive.
12376 * mpw-install: Use symbolic name for startup filename.
12377 * mpw-README: Add various additional details.
12378
12379 Wed Dec 18 13:11:46 1996 Jim Wilson <wilson@cygnus.com>
12380
12381 * configure.in (mips*-sgi-irix6*): Remove binutils from noconfigdirs.
12382
12383 Wed Dec 18 10:29:31 1996 Jeffrey A Law (law@cygnus.com)
12384
12385 * configure.in: Do build gcc and the target libraries for
12386 the mn10200.
12387
12388 Wed Dec 4 16:53:05 1996 Geoffrey Noer <noer@cygnus.com>
12389
12390 * configure.in: don't avoid building gdb for mn10300 any more
12391 * Makefile.in: double-quote GCC_FOR_TARGET line in EXTRA_GCC_FLAGS
12392 instead of single-quoting it.
12393
12394 Tue Dec 3 23:26:50 1996 Jason Merrill <jason@yorick.cygnus.com>
12395
12396 * configure.in: Don't use --with-stabs on IRIX 6.
12397
12398 Tue Dec 3 09:05:25 1996 Doug Evans <dje@canuck.cygnus.com>
12399
12400 * configure.in (m32r): Build gdb, libg++ now.
12401
12402 Sun Dec 1 00:18:59 1996 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
12403
12404 * configure.in (mips*-sgi-irix6*): Remove gdb and related
12405 directories from noconfigdirs.
12406
12407 Tue Nov 26 11:45:33 1996 Kim Knuttila <krk@cygnus.com>
12408
12409 * config.sub (basic_machine): added mips16 configuration
12410
12411 Sat Nov 23 19:26:22 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12412
12413 * config.sub: Handle d10v-unknown.
12414
12415 Sat Nov 23 10:23:01 1996 Gavin Koch <gavin@cygnus.com>
12416
12417 * config.sub: Handle v850-unknown.
12418
12419 Thu Nov 21 16:19:44 1996 Geoffrey Noer <noer@cygnus.com>
12420
12421 * Makefile.in: add findutils
12422 * configure.in: add findutils to list of host_tools
12423
12424 Wed Nov 20 10:09:01 1996 Jeffrey A Law (law@cygnus.com)
12425
12426 * config.sub: Handle mn10200 and mn10300.
12427
12428 Tue Nov 19 16:35:14 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12429
12430 * configure.in (d10v-*): Do not build librx.
12431
12432 Mon Nov 18 13:28:41 1996 Jeffrey A Law (law@cygnus.com)
12433
12434 * configure.in (mn10300): Build everything except gdb & libgloss.
12435
12436 Wed Nov 13 14:59:46 1996 Per Bothner <bothner@deneb.cygnus.com>
12437
12438 * config.guess: Patch for Dansk Data Elektronik servers,
12439 from Niels Skou Olsen <nso@dde.dk>.
12440
12441 For ncr, use /bin/uname rather than uname, since GNU uname does not
12442 support -p. Suggested by Mark Mitchell <mmitchell@usa.net>.
12443
12444 Patch for MIPS R4000 running System V,
12445 from Eric S. Raymond <esr@snark.thyrsus.com>.
12446
12447 Fix thinko for nextstep.
12448
12449 Patch for OSF1 in i?86, from Dan Murphy <dlm@osf.org> via Harlan Stenn.
12450
12451 Sat Jun 24 18:58:17 1995 Morten Welinder <terra+@cs.cmu.edu>
12452 * config.guess: Guess mips-dec-mach_bsd4.3.
12453
12454 Thu Oct 10 04:07:04 1996 Harlan Stenn <harlan@pfcs.com>
12455 * config.guess (i?86-ncr-sysv*): Emit just enough of the minor
12456 release numbers.
12457 * config.guess (mips-mips-riscos*): Emit just enough of the
12458 release number.
12459
12460 Tue Oct 8 10:37:22 1996 Frank Vance <fvance@waii.com>
12461 * config.guess (sparc-auspex-sunos*): Added.
12462 (f300-fujitsu-*): Added.
12463
12464 Wed Sep 25 22:00:35 1996 Jeff Woolsey <woolsey@jlw.com>
12465 * config.guess: Recognize a Tadpole as a sparc.
12466
12467 Wed Nov 13 00:53:09 1996 David J. MacKenzie <djm@churchy.gnu.ai.mit.edu>
12468
12469 * config.guess: Don't assume that NextStep version is either 2 or
12470 3. NextStep 4 (aka OpenStep 4) has come out now.
12471
12472 Mon Nov 11 23:52:03 1996 David J. MacKenzie <djm@churchy.gnu.ai.mit.edu>
12473
12474 * config.guess: Support Cray T90 that reports itself as "CRAY TS".
12475 From Rik Faith <faith@cs.unc.edu>.
12476
12477 Fri Nov 8 11:34:58 1996 David J. MacKenzie <djm@geech.gnu.ai.mit.edu>
12478
12479 * config.sub: Contributions from bug-gnu-utils to:
12480 Support plain "hppa" (no version given) architecture, reported by
12481 OpenStep.
12482 OpenBSD like NetBSD.
12483 LynxOs is not a hardware supplier.
12484
12485 * config.guess: Contributions from bug-gnu-utils to add support for:
12486 OpenBSD like NetBSD.
12487 Stratus systems.
12488 More Pyramid systems.
12489 i[n>4]86 Intel chips.
12490 M680[n>4]0 Motorola chips.
12491 Use unknown instead of lynx for hardware manufacturer.
12492
12493 Mon Nov 11 10:09:08 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
12494
12495 * install.sh (chmodcmd): Set to null if the DST directory already
12496 exists.
12497
12498 Mon Nov 11 10:43:41 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12499
12500 * configure.in (powerpc*-{eabi,elf,linux,rtem,sysv,solaris}*): Do
12501 not use mt-ppc target Makefile fragment any more.
12502
12503 Sun Nov 3 19:17:07 1996 Stu Grossman (grossman@critters.cygnus.com)
12504
12505 * configure.in (*-*-windows): Exclude everything but those dirs
12506 needed to build windows.
12507
12508 Tue Oct 29 16:41:31 1996 Doug Evans <dje@canuck.cygnus.com>
12509
12510 * Makefile.in (all-target-winsup): Depend on all-target-librx.
12511
12512 Mon Oct 28 17:32:46 1996 Stu Grossman (grossman@critters.cygnus.com)
12513
12514 * configure.in: Exclude mmalloc from i386-windows.
12515
12516 Thu Oct 24 09:22:46 1996 Stu Grossman (grossman@critters.cygnus.com)
12517
12518 * Undo my previous change.
12519
12520 Thu Oct 24 12:12:04 1996 Ian Lance Taylor <ian@cygnus.com>
12521
12522 * Makefile.in (EXTRA_GCC_FLAGS): Pass down GCC_FOR_TARGET
12523 unconditionally.
12524 (MAKEOVERRIDES): Define (revert this part of October 18 change).
12525
12526 Thu Oct 24 09:02:07 1996 Stu Grossman (grossman@critters.cygnus.com)
12527
12528 * Makefile.in (FLAGS_TO_PASS): Add $(HOST_FLAGS) to allow the
12529 host to add it's own flags.
12530
12531 Tue Oct 22 15:20:26 1996 Ian Lance Taylor <ian@cygnus.com>
12532
12533 * configure: Handle GCC_FOR_TARGET like CC_FOR_TARGET.
12534
12535 Fri Oct 18 13:37:13 1996 Ian Lance Taylor <ian@cygnus.com>
12536
12537 * Makefile.in (CC_FOR_TARGET): Check for xgcc, not Makefile.
12538 (CXX_FOR_TARGET): Likewise.
12539 (GCC_FOR_TARGET): Define.
12540 (BASE_FLAGS_TO_PASS): Remove GCC_FOR_TARGET.
12541 (EXTRA_GCC_FLAGS): Define GCC_FOR_TARGET based on whether
12542 CC_FOR_TARGET was specified on the command line.
12543 (MAKEOVERRIDES): Don't define.
12544
12545 Thu Oct 17 10:27:56 1996 Doug Evans <dje@canuck.cygnus.com>
12546
12547 * configure.in (m32r): Fix spelling of libg++ libs.
12548
12549 Thu Oct 10 10:37:17 1996 Stan Shebs <shebs@andros.cygnus.com>
12550
12551 * config.sub (-apple*): Remove, now redundant.
12552
12553 Thu Oct 10 12:30:54 1996 Ian Lance Taylor <ian@cygnus.com>
12554
12555 * configure: Don't get confused by CPU-VENDOR-linux-gnu.
12556
12557 * configure: Rework yesterday's sed script patch.
12558
12559 * config.sub: Merge with FSF.
12560
12561 Wed Oct 9 17:24:59 1996 Per Bothner <bothner@deneb.cygnus.com>
12562
12563 * config.guess: Merge from FSF.
12564
12565 1996-09-12 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
12566 * config.guess: Use pc instead of unknown, for pc clone systems.
12567 Change linux to linux-gnu.
12568
12569 Mon Jul 15 23:51:11 1996 Karl Heuer <kwzh@gnu.ai.mit.edu>
12570 * config.guess: Avoid non-portable tr syntax.
12571
12572 Wed Oct 9 06:06:46 1996 Jeffrey A Law (law@cygnus.com)
12573
12574 * test-build.mk (HOLES): Add "xargs" for gdb.
12575
12576 * configure: Avoid hpux10.20 sed bug.
12577
12578 Tue Oct 8 08:32:48 1996 Stu Grossman (grossman@critters.cygnus.com)
12579
12580 * configure.in: Add support for windows host
12581 (that is a build done under the Microsoft build environment).
12582
12583 Tue Oct 8 10:39:08 1996 Ian Lance Taylor <ian@cygnus.com>
12584
12585 * Makefile.in: Replace all uses of srcroot with s, to shrink
12586 command line lengths.
12587
12588 Patches from Geoffrey Noer <noer@cygnus.com>:
12589 * configure.in: If configuring for newlib, pass --with-newlib to
12590 subdirectories.
12591 * Makefile.in (CC_FOR_TARGET): If winsup/Makefile exists, pass a
12592 -Bnewlib/ and -Lwinsup to gcc.
12593 (CXX_FOR_TARGET): Likewise.
12594
12595 Mon Oct 7 10:59:35 1996 Ian Lance Taylor <ian@cygnus.com>
12596
12597 * Makefile.in (ETC_SUPPORT): Add configure.
12598
12599 Fri Oct 4 12:22:58 1996 Angela Marie Thomas (angela@cygnus.com)
12600
12601 * configure.in: Use config/mh-dgux386 for i[345]86-dg-dgux
12602 host configuration file.
12603
12604 Thu Oct 3 09:28:25 1996 Jeffrey A Law (law@cygnus.com)
12605
12606 * configure.in: Break mn10x00 support into separate
12607 mn10200 and mn10300 configurations.
12608 * config.sub: Likewise.
12609
12610 Wed Oct 2 22:27:52 1996 Jeffrey A Law (law@cygnus.com)
12611
12612 * configure.in: Add lots of stuff to noconfigdirs for
12613 the mn10x00 targets.
12614
12615 * config.sub, configure.in: Add mn10x00 support.
12616
12617 Wed Oct 2 15:52:36 1996 Klaus Kaempf <kkaempf@progis.de>
12618
12619 * make-all.com: Call conf-a-gas, not config-a-gas.
12620
12621 Tue Oct 1 01:28:41 1996 James G. Smith <jsmith@cygnus.co.uk>
12622
12623 * configure.in (noconfigdirs): Don't build libgloss for arm-coff
12624 targets.
12625
12626 Mon Sep 30 14:24:01 1996 Stan Shebs <shebs@andros.cygnus.com>
12627
12628 * mpw-README: Add much more detail for native PowerMac.
12629 * mpw-install: New file.
12630 * mpw-configure: Add --norecursion and --help options.
12631 * mpw-config.in: Translate readme and install files when
12632 copying to objdir.
12633 * mpw-build.in: Don't always depend on byacc and flex.
12634 (install-only-top): New action.
12635
12636 Fri Sep 27 17:39:44 1996 Stu Grossman (grossman@critters.cygnus.com)
12637
12638 * configure.in: You can now configure GDB for the v850.
12639
12640 Tue Sep 24 19:05:12 1996 Stan Shebs <shebs@andros.cygnus.com>
12641
12642 * configure.in (noconfigdirs): Don't configure any C++ dirs
12643 if targeting D10V.
12644
12645 Tue Sep 17 12:15:31 1996 Ian Lance Taylor <ian@cygnus.com>
12646
12647 * config.sub: Recognize mips64vr5000.
12648
12649 Mon Sep 16 17:00:52 1996 Ian Lance Taylor <ian@cygnus.com>
12650
12651 * configure.in: Use a single line for host_tools and native_only.
12652
12653 Mon Sep 9 12:21:30 1996 Doug Evans <dje@canuck.cygnus.com>
12654
12655 * config.sub, configure.in: Add entries for m32r.
12656
12657 Thu Sep 5 13:52:47 1996 Tom Tromey <tromey@creche.cygnus.com>
12658
12659 * Makefile.in (inet-install): Don't run install-gzip.
12660
12661 Wed Sep 4 17:26:13 1996 Stu Grossman (grossman@critters.cygnus.com)
12662
12663 * configure.in: Don't config lots of things for *-*-windows*.
12664
12665 Sat Aug 31 11:45:57 1996 Stan Shebs <shebs@andros.cygnus.com>
12666
12667 * mpw-config.in: Test for mpw-true, true, and null-command scripts.
12668 (host_libs, host_tools): Copy from configure.in.
12669 * mpw-configure: Don't complain about directories not found.
12670
12671 Thu Aug 29 16:44:58 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12672
12673 * configure.in (i[345]86): Recognize i686 for pentium pro.
12674 (i[3456]86-*-dgux*): Use config/mh-sysv for the host configuration
12675 file.
12676
12677 * config.guess (i[345]86): Ditto.
12678
12679 Mon Aug 26 18:34:42 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
12680
12681 * configure.in (noconfigdirs): Removed gdb for D10V.
12682
12683 Thu Aug 22 17:13:52 1996 Jeffrey A Law (law@cygnus.com)
12684
12685 * configure.in: Remove ld, target-libio, target-libg++, and
12686 target-libstdc++ from noconfigdirs.
12687
12688 Wed Aug 21 18:56:38 1996 Fred Fish <fnf@cygnus.com>
12689
12690 * configure: Fix three locations where shell scripts were
12691 being run directly rather than with config_shell.
12692
12693 Tue Aug 20 13:08:47 1996 J.T. Conklin <jtc@hippo.cygnus.com>
12694
12695 * configure.in (v850-*-*): Set up initial $noconfigdirs.
12696 * config.sub (basic_machine): Recognize v850.
12697
12698 Thu Aug 15 12:19:33 1996 Stan Shebs <shebs@andros.cygnus.com>
12699
12700 * mpw-configure: Handle multiple enable/disable options and
12701 pass them down recursively, handle -c and -s flags appropriately
12702 depending on choice of compiler, add escape mechanism for
12703 quoted arguments to gC.
12704
12705 Mon Aug 12 13:15:13 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12706
12707 * configure.in (powerpc*-*-*): For eabi, system V.4, Linux, and
12708 solaris targets, use config/mt-ppc to set C{,XX}FLAGS_FOR_TARGETS
12709 so that -mrelocatable-lib and -mno-eabi are used.
12710
12711 * Makefile.in (CONFIGURE_TARGET_MODULES): If target compiler does
12712 not support --print-multi-lib, don't abort.
12713
12714 Thu Aug 8 12:18:59 1996 Klaus Kaempf <kkaempf@progis.de>
12715
12716 * make-all.com: Run config-a-gas.
12717 * setup.com: Don't copy subdirectory files around.
12718
12719 Tue Jul 30 17:49:31 1996 Brendan Kehoe <brendan@cygnus.com>
12720
12721 * configure.in (*-*-ose): Remove exclusion of libgloss for this
12722 target, it now compiles correctly.
12723
12724 Sat Jul 27 15:10:43 1996 Stan Shebs <shebs@andros.cygnus.com>
12725
12726 * mpw-config.in: Generate Mac include for elf/dwarf2.h.
12727
12728 Tue Jul 23 10:47:04 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
12729
12730 * configure.in (d10v-*-*): Remove ld from $noconfigdirs.
12731
12732 Mon Jul 22 13:28:51 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
12733
12734 * configure.in (native_only): Add prms.
12735
12736 Mon Jul 22 12:27:58 1996 Ian Lance Taylor <ian@cygnus.com>
12737
12738 * Makefile.in (GAS_SUPPORT_DIRS): Add make-all.com and setup.com.
12739 (BINUTILS_SUPPORT_DIRS): Likewise.
12740
12741 Thu Jul 18 12:55:40 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12742
12743 * configure.in (d10v-*-*): Don't configure ld or gdb until the
12744 d10v support is added.
12745
12746 Wed Jul 17 14:33:09 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
12747
12748 * configure.in (d10v-*-*): New target.
12749
12750 Mon Jul 15 11:53:00 1996 Jeffrey A Law (law@cygnus.com)
12751
12752 * config.guess (HP 9000/811): Recognize this as a PA1.1
12753 machine.
12754
12755 Fri Jul 12 23:21:17 1996 Ken Raeburn <raeburn@cygnus.com>
12756
12757 * Makefile.in (do-tar-gz): New target, split out from tail end of
12758 taz target. Run each command separately, don't use pipes.
12759 (taz): Use it.
12760
12761 Fri Jul 12 12:08:04 1996 Stan Shebs <shebs@andros.cygnus.com>
12762
12763 * mpw-configure: Look for g-mpw-make.sed in config/mpw.
12764 * mpw-build.in: No builds should depend on building byacc or flex,
12765 they are assumed to be installed already.
12766
12767 Fri Jul 12 09:52:52 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12768
12769 * Makefile.in (CONFIGURE_TARGET_MODULES): Set r environment
12770 variable that CC_FOR_TARGET needs.
12771
12772 Thu Jul 11 10:09:45 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12773
12774 * Makefile.in (CONFIGURE_TARGET_MODULES): Determine if the multlib
12775 options have changed since the last time the subdirectory was
12776 configured, and if it has, reconfigure.
12777 (CLEAN_TARGET_MODULES): Delete multilib.out and tmpmulti.out, which
12778 CONFIGURE_TARGET_MODULES uses to remember the old multilib options.
12779
12780 Wed Jul 10 18:56:59 1996 Doug Evans <dje@canuck.cygnus.com>
12781
12782 * Makefile.in (ALL_MODULES,CROSS_CHECK_MODULES,INSTALL_MODULES,
12783 CLEAN_MODULES): Add bash.
12784 (all-bash): New target.
12785
12786 Mon Jul 8 17:33:14 1996 Jim Wilson <wilson@cygnus.com>
12787
12788 * configure.in (mips-sgi-irix6*): Use mh-irix6 instead of mh-irix5.
12789
12790 Mon Jul 1 13:31:35 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12791
12792 * config.sub (basic_machine): Recognize d10v as a valid processor.
12793
12794 Fri Jun 28 12:14:35 1996 Stan Shebs <shebs@andros.cygnus.com>
12795
12796 * mpw-configure: Add support for --bindir.
12797 * mpw-build.in: Use a GCC-specific build script for GCC actions.
12798
12799 Wed Jun 26 17:20:12 1996 Geoffrey Noer <noer@cygnus.com>
12800
12801 * configure.in: add bash, time, gawk to list of hosttools and things
12802 to only build for native toolchains
12803
12804 Tue Jun 25 23:09:03 1996 Jason Molenda (crash@godzilla.cygnus.co.jp)
12805
12806 * Makefile.in (docdir): Remove.
12807
12808 Tue Jun 25 19:00:08 1996 Jason Molenda (crash@godzilla.cygnus.co.jp)
12809
12810 * Makefile.in (datadir): Set to $(prefix)/share.
12811
12812 Mon Jun 24 23:26:07 1996 Geoffrey Noer <noer@cygnus.com>
12813
12814 * configure.in: build diff and patch for cygwin32-hosted
12815 toolchains.
12816
12817 Mon Jun 24 15:01:12 1996 Joel Sherrill <joel@merlin.gcs.redstone.army.mil>
12818
12819 * config.sub: Accept -rtems*.
12820
12821 Sun Jun 23 22:41:54 1996 Geoffrey Noer <noer@cygnus.com>
12822
12823 * configure.in: enable dosrel for cygwin32-hosted builds,
12824 remove diff from the list of things not buildable
12825 via Canadian Cross
12826
12827 Sat Jun 22 11:39:01 1996 Jason Merrill <jason@yorick.cygnus.com>
12828
12829 * Makefile.in (TARGET_SUBDIR): Move comment to previous line so we
12830 don't get ". ".
12831
12832 Fri Jun 21 17:24:48 1996 Jim Wilson <wilson@cygnus.com>
12833
12834 * configure.in (mips*-sgi-irix6*): Set noconfigdirs appropriately.
12835
12836 Thu Jun 20 16:57:40 1996 Ken Raeburn <raeburn@cygnus.com>
12837
12838 * Makefile.in (taz): Handle case where tex3patch didn't even get
12839 checked out. Also, if it was found, put the symlink in a new util
12840 subdirectory.
12841
12842 Thu Jun 20 12:20:33 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12843
12844 * config.guess (*:Linux:*:*): Add support for PowerPC Linux.
12845
12846 Tue Jun 18 14:24:12 1996 Klaus Kaempf (kkaempf@progis.de)
12847
12848 * config.sub: Recognize -openvms.
12849 * configure.in (alpha*-*-*vms*): Set noconfigdirs.
12850 * make-all.com, setup.com: New files.
12851
12852 Mon Jun 17 16:34:46 1996 Jason Merrill <jason@yorick.cygnus.com>
12853
12854 * Makefile.in (taz): tex3patch moved to texinfo/util.
12855
12856 Sat Jun 15 17:13:25 1996 Geoffrey Noer <noer@cygnus.com>
12857
12858 * configure: enable_gdbtk=no for cygwin32-hosted toolchains
12859 * configure.in: remove make from disable-if-Can-Cross list
12860 enable gdb if ${host} and ${target} are cygwin32
12861
12862 Fri Jun 7 18:16:52 1996 Harlan Stenn <harlan@pfcs.com>
12863
12864 * config.guess (i?86-ncr-sysv*): Emit minor release numbers.
12865 Recognize the NCR 4850 machine and NCR Pentium-based platforms.
12866
12867 Wed Jun 5 00:09:17 1996 Per Bothner <bothner@wombat.gnu.ai.mit.edu>
12868
12869 * config.guess: Combine mips-mips-riscos cases, and use cpp to
12870 distinguish sysv/svr4/bsd variants.
12871 Based on a patch from Harlan Stenn <harlan@pfcs.com>.
12872
12873 Fri Jun 7 14:24:49 1996 Tom Tromey <tromey@creche.cygnus.com>
12874
12875 * configure.in: Added copyright notice.
12876 * move-if-change: Added copyright notice.
12877
12878 Thu Jun 6 16:27:05 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12879
12880 * configure.in (powerpcle-*-solaris*): Until we get shared
12881 libraries working, don't build gdb, sim, make, tcl, tk, or
12882 expect.
12883
12884 Tue Jun 4 20:41:45 1996 Per Bothner <bothner@deneb.cygnus.com>
12885
12886 * config.guess: Merge with FSF:
12887
12888 Mon Jun 3 08:49:14 1996 Karl Heuer <kwzh@gnu.ai.mit.edu>
12889 * config.guess (*:Linux:*:*): Add guess for sparc-unknown-linux.
12890
12891 Fri May 24 18:34:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
12892 * config.guess (AViiON:dgux:*:*): Fix typo in recognizing mc88110.
12893
12894 Fri Apr 12 20:03:59 1996 Per Bothner <bothner@spiff.gnu.ai.mit.edu>
12895 * config.guess: Combine two OSF1 rules.
12896 Also recognize field test versions. From mjr@zk3.dec.com.
12897 * config.guess (dgux): Use /usr/bin/uname rather than uname,
12898 because GNU uname does not support -p. From pmr@pajato.com.
12899
12900 Tue Jun 4 11:07:25 1996 Tom Tromey <tromey@csk3.cygnus.com>
12901
12902 * Makefile.in (MAKEDIRS): Removed $(tooldir).
12903
12904 Tue May 28 12:30:50 1996 Stan Shebs <shebs@andros.cygnus.com>
12905
12906 * mpw-README: Document GCCIncludes.
12907
12908 Sun May 26 15:16:27 1996 Fred Fish <fnf@cygnus.com>
12909
12910 * configure.in (alpha-*-linux*): Set enable_shared to yes.
12911
12912 Tue May 21 15:41:39 1996 Stan Shebs <shebs@andros.cygnus.com>
12913
12914 * mpw-configure: Handle --enable-FOO and --disable-FOO.
12915
12916 Mon May 20 10:12:29 1996 Geoffrey Noer <noer@cygnus.com>
12917
12918 * configure.in (*-*-cygwin32): Configure make.
12919
12920 Tue May 7 14:19:42 1996 Tom Tromey <tromey@snuffle.cygnus.com>
12921
12922 * Makefile.in (inet-install): Quote value of INSTALL_MODULES.
12923
12924 Fri May 3 08:57:17 1996 Tom Tromey <tromey@lisa.cygnus.com>
12925
12926 * Makefile.in (all-inet): Depend on all-perl.
12927
12928 * Makefile.in (inet-install): New target.
12929
12930 * Makefile.in (all-inet): Depend on all-tcl.
12931 (all-inet): Depend on all-send-pr.
12932
12933 Tue Apr 30 13:55:51 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12934
12935 * configure.in (powerpcle-*-solaris*): Turn off tk and tcl
12936 temporarily.
12937
12938 Thu Apr 25 11:48:20 1996 Ian Lance Taylor <ian@cygnus.com>
12939
12940 * configure.in: Don't configure --with-gnu-ld on AIX.
12941
12942 Thu Apr 25 06:33:36 1996 Michael Meissner <meissner@wogglebug.tiac.net>
12943
12944 * configure.in (powerpcle-*-solaris*): Turn off gdb temporarily.
12945
12946 Tue Apr 23 09:07:39 1996 Tom Tromey <tromey@creche.cygnus.com>
12947
12948 * Makefile.in (ALL_MODULES): Added all-inet.
12949 (CROSS_CHECK_MODULES): Added check-inet.
12950 (INSTALL_MODULES): Added install-inet.
12951 (CLEAN_MODULES): Added clean-inet.
12952 (all-indent): New target.
12953
12954 * configure.in (host_tools): Added inet.
12955 (native_only): Added inet.
12956 (noconfigdirs): Added inet.
12957
12958 Fri Apr 19 15:35:29 1996 Ian Lance Taylor <ian@cygnus.com>
12959
12960 * configure.in: Don't configure libgloss if we are not configuring
12961 newlib.
12962
12963 Wed Apr 17 19:30:01 1996 Rob Savoye <rob@chinadoll.cygnus.com>
12964
12965 * configure.in: Don't configure libgloss for unsupported
12966 architectures.
12967
12968 Tue Apr 16 11:17:05 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12969
12970 * Makefile.in (CLEAN_MODULES): Add clean-apache.
12971
12972 Mon Apr 15 15:09:05 1996 Tom Tromey <tromey@creche.cygnus.com>
12973
12974 * Makefile.in (ALL_MODULES): Include all-apache.
12975 (CROSS_CHECK_MODULES): Include check-apache.
12976 (INSTALL_MODULES): Include install-apache.
12977 (all-apache): New target.
12978
12979 * configure.in: Added apache everywhere perl is seen.
12980
12981 Mon Apr 15 14:59:13 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12982
12983 * Makefile.in: Add support for clean-{module} and
12984 clean-target-{module} rules.
12985
12986 Wed Apr 10 21:37:41 PDT 1996 Marilyn E. Sander <msander@cygnus.com>
12987
12988 * configure.in (*-*-ose) do not build libgloss.
12989
12990 Mon Apr 8 16:16:20 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12991
12992 * config.guess (prep*:SunOS:5.*:*): Turn into
12993 powerpele-unknown-solaris2.
12994
12995 Mon Apr 8 14:45:41 1996 Ian Lance Taylor <ian@cygnus.com>
12996
12997 * configure.in: Permit --enable-shared to specify a list of
12998 directories.
12999
13000 Fri Apr 5 08:17:57 1996 Jason Molenda (crash@phydeaux.cygnus.com)
13001
13002 * configure.in (host==solaris): Pass only the first word of $CC
13003 to /usr/bin/which when checking if we're using /usr/ccs/bin/cc.
13004
13005 Fri Apr 5 03:16:13 1996 Jason Molenda (crash@phydeaux.cygnus.com)
13006
13007 * Makefile.in (BASE_FLAGS_TO_PASS): pass down $(MAKE).
13008
13009 Thu Mar 28 14:11:11 1996 Tom Tromey <tromey@creche.cygnus.com>
13010
13011 * Makefile.in (ALL_MODULES): Include all-perl.
13012 (CROSS_CHECK_MODULES): Include check-perl.
13013 (INSTALL_MODULES): Include install-perl.
13014 (ALL_X11_MODULES): Include all-guile.
13015 (CHECK_X11_MODULES): Include check-guile.
13016 (INSTALL_X11_MODULES): Include install-guile.
13017 (all-perl): New target.
13018 (all-guile): New target.
13019
13020 * configure.in (host_tools): Include perl and guile.
13021 (native_only): Include perl and guile.
13022 (noconfigdirs): Don't build guile and perl; no ports have been
13023 done.
13024
13025 Tue Mar 26 21:18:50 1996 Andrew Cagney <cagney@kremvax.highland.com.au>
13026
13027 * configure (--enable-*): Handle quoted option lists such as
13028 --enable-sim-cflags='-g0 -O' better.
13029
13030 Thu Mar 21 11:53:08 1996 Michael Meissner <meissner@tiktok.cygnus.com>
13031
13032 * Makefile.in ({,inst}all-target): New rule so we can make and
13033 install all of the target directories easily.
13034
13035 Wed Mar 20 18:10:57 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
13036
13037 * configure.in: Add missing global flag in sed substitution when
13038 deleting `target-' from ${configdirs}.
13039
13040 Thu Mar 14 19:15:06 1996 Ian Lance Taylor <ian@cygnus.com>
13041
13042 * Makefile.in (DO_X): Don't get confused if CC contains `=' in an
13043 option.
13044
13045 * configure.in (mips*-nec-sysvr4*): Use a host_makefile_frag of
13046 config/mh-necv4.
13047
13048 * install.sh: Correct misspelling of transformbasename.
13049
13050 * config.guess: Recognize mips-*-sysv*.
13051
13052 Mon Mar 11 15:36:42 1996 Dawn Perchik <dawn@critters.cygnus.com>
13053
13054 * config.sub: Recognize mon960.
13055
13056 Sun Mar 10 13:18:38 1996 Ian Lance Taylor <ian@cygnus.com>
13057
13058 * configure: Restore Canadian Cross handling of BISON and LEX,
13059 removed in Feb 20 change.
13060
13061 Fri Mar 8 20:07:09 1996 Per Bothner <bothner@kalessin.cygnus.com>
13062
13063 * README: Suggestions from Torbjorn Granlund <tege@matematik.su.se>:
13064 Mention make install. Remove the old copyright date as well the
13065 clumsy and rather pointless copyright on the README file.
13066
13067 Fri Mar 8 17:51:35 1996 Ian Lance Taylor <ian@cygnus.com>
13068
13069 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): If there is a
13070 Makefile after running symlink-tree, then run `make distclean' to
13071 avoid clobbering any generated files in srcdir.
13072
13073 Tue Mar 5 08:21:44 1996 J.T. Conklin <jtc@rtl.cygnus.com>
13074
13075 * configure.in (m68k-*-netbsd*): Build everything now.
13076
13077 Wed Feb 28 12:25:46 1996 Jason Merrill <jason@yorick.cygnus.com>
13078
13079 * Makefile.in (taz): Fix quoting.
13080
13081 Tue Feb 27 11:33:57 1996 Doug Evans <dje@charmed.cygnus.com>
13082
13083 * configure.in (sparclet-*-*): Build everything now.
13084
13085 Tue Feb 27 14:31:51 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
13086
13087 * configure.in (m68k-*-linux*): New host.
13088
13089 Mon Feb 26 14:32:44 1996 Ian Lance Taylor <ian@cygnus.com>
13090
13091 * configure: Check for bison before byacc.
13092
13093 Tue Feb 20 23:12:35 1996 Stu Grossman (grossman@critters.cygnus.com)
13094
13095 * Makefile.in configure: Change the way LEX and BISON/YACC are
13096 set. configure now defines DEFAULT_LEX and DEFAULT_YACC by
13097 searching PATH. These are used as fallbacks by Makefile.in if
13098 flex/bison/byacc aren't in objdir.
13099
13100 Mon Feb 19 11:45:30 1996 Ian Lance Taylor <ian@cygnus.com>
13101
13102 * Makefile.in: Make everything which depends upon all-bfd also
13103 depend upon all-opcodes, in case --with-commonbfdlib is used.
13104
13105 Thu Feb 15 19:50:50 1996 Michael Meissner <meissner@tiktok.cygnus.com>
13106
13107 * configure.in (host *-*-cygwin32): Don't build gdb if we are
13108 building NT native compilers on Unix.
13109
13110 Thu Feb 15 17:42:25 1996 Ian Lance Taylor <ian@cygnus.com>
13111
13112 * configure.in: Don't get CC from the host Makefile fragment if we
13113 can find gcc in PATH, or if this is a Canadian Cross. Move the
13114 Solaris test for /usr/ucb/cc to the post target script, just after
13115 the compiler sanity test.
13116
13117 Wed Feb 14 16:57:40 1996 Ian Lance Taylor <ian@cygnus.com>
13118
13119 * config.sub: Merge with FSF.
13120
13121 Tue Feb 13 14:27:48 1996 Ian Lance Taylor <ian@cygnus.com>
13122
13123 * Makefile.in (RPATH_ENVVAR): New variable.
13124 (REALLY_SET_LIB_PATH): Use it.
13125 * configure.in: On HP/UX, set RPATH_ENVVAR to SHLIB_PATH.
13126
13127 Mon Feb 12 15:28:49 1996 Doug Evans <dje@charmed.cygnus.com>
13128
13129 * config.sub, configure.in: Recognize sparclet cpu.
13130
13131 Mon Feb 12 15:33:59 1996 Christian Bauernfeind <chrisbfd@theorie3.physik.uni-erlangen.de>
13132
13133 * config.guess: Support m68k-cbm-sysv4.
13134
13135 Sat Feb 10 12:06:42 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
13136
13137 * config.guess (*:Linux:*:*): Guess m68k-unknown-linux and
13138 m68k-unknown-linuxaout from linker help string. Put quotes around
13139 $ld_help_string.
13140
13141 Thu Dec 7 09:03:24 1995 Tom Horsley <Tom.Horsley@mail.hcsc.com>
13142
13143 * config.guess (powerpc-harris-powerunix): Add guess for port
13144 to new target.
13145
13146 Thu Feb 8 15:37:52 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
13147
13148 * config.guess (UNAME_VERSION): Recognize X4.x as an OSF version.
13149
13150 Mon Feb 5 16:36:51 1996 Ian Lance Taylor <ian@cygnus.com>
13151
13152 * configure.in: If --enable-shared was used, set SET_LIB_PATH to
13153 $(REALLY_SET_LIB_PATH) in Makefile.
13154 * Makefile.in (SET_LIB_PATH): New variable.
13155 (REALLY_SET_LIB_PATH): New variable.
13156 ($(DO_X)): Use $(SET_LIB_PATH).
13157 (install.all, gcc-no-fixedincludes, $(ALL_MODULES)): Likewise.
13158 ($(NATIVE_CHECK_MODULES), $(CROSS_CHECK_MODULES)): Likewise.
13159 ($(INSTALL_MODULES), $(CONFIGURE_TARGET_MODULES)): Likewise.
13160 ($(ALL_TARGET_MODULES), $(CHECK_TARGET_MODULES)): Likewise.
13161 ($(INSTALL_TARGET_MODULES), $(ALL_X11_MODULES)): Likewise.
13162 ($(CHECK_X11_MODULES), $(INSTALL_X11_MODULES)): Likewise.
13163 (all-gcc, all-bootstrap, check-gcc, install-gcc): Likewise.
13164 (install-dosrel): Likewise.
13165 (all-opcodes): Depend upon all-libiberty.
13166
13167 Sun Feb 4 16:51:11 1996 Steve Chamberlain <sac@slash.cygnus.com>
13168
13169 * config.guess (*:CYGWIN*): New
13170
13171 Sat Feb 3 10:42:35 1996 Michael Meissner <meissner@tiktok.cygnus.com>
13172
13173 * Makefile.in (all-target-winsup): All all-target-libiberty.
13174
13175 Fri Feb 2 17:58:56 1996 Michael Meissner <meissner@tiktok.cygnus.com>
13176
13177 * configure.in (noconfigdirs): Add missing # in front of comment.
13178
13179 Thu Feb 1 14:38:13 1996 Geoffrey Noer <noer@cygnus.com>
13180
13181 * configure.in: add second pass to things added to noconfigdirs
13182 so *-gm-magic can exclude libgloss properly.
13183
13184 Thu Feb 1 11:10:16 1996 Stan Shebs <shebs@andros.cygnus.com>
13185
13186 * mpw-configure (extralibs_name, rez_name): Set correctly
13187 for MWC68K compiler.
13188
13189 * mpw-README: Add more info on the necessary build tools.
13190
13191 Thu Feb 1 10:22:38 1996 Steve Chamberlain <sac@slash.cygnus.com>
13192
13193 * configure.in, config.sub: Recognize cygwin32.
13194
13195 Wed Jan 31 14:17:10 1996 Richard Henderson <rth@tamu.edu>
13196
13197 * config.guess, config.sub: Recognize A/UX.
13198
13199 Wed Jan 31 13:52:14 1996 Ian Lance Taylor <ian@cygnus.com>
13200
13201 * config.sub: Merge with gcc/config.sub.
13202
13203 Thu Jan 25 11:01:10 1996 Raymond Jou <rjou@mexican.cygnus.com>
13204
13205 * mpw-build.in (do-binutils): Add build of stamps.
13206
13207 Thu Jan 25 17:05:26 1996 James G. Smith <jsmith@cygnus.co.uk>
13208
13209 * config.sub: Add recognition for mips64vr4100*-* targets.
13210
13211 Wed Jan 24 12:47:55 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
13212
13213 * test-build.mk: Add checking of `hpux9' rather than just `hpux'.
13214 Add creation of gconfigargs with `--enable-shared' turned on.
13215 ($(host)-stamp-stage2-configured): Pass $(gconfigargs).
13216 ($(host)-stamp-stage3-configured): Likewise.
13217 (HOLES): Add chatr and ldd.
13218 (i386-ncr-sysv4.3*): Add use of /usr/ccs/bin in the PATH and HOLE_DIRS.
13219
13220 Wed Jan 24 20:32:30 1996 Torbjorn Granlund <tege@noisy.matematik.su.se>
13221
13222 * configure: Pass --nfp to recursive configures.
13223
13224 Mon Jan 22 10:41:56 1996 Steve Chamberlain <sac@slash.cygnus.com>
13225
13226 * Makefile.in (DLLTOOL): New.
13227 (DLLTOOL_FOR_TARGET): New.
13228 (EXTRA_HOST_FLAGS): Pass down DLLTOOL.
13229 (EXTRA_TARGET_FLAGS): Ditto.
13230 (EXTRA_GCC_FLAGS): Ditto.
13231 (CONFIGURE_TARGET_MODULES): Ditto.
13232 (DO_X): Ditto.
13233 * configure: Add DLLTOOL.
13234
13235 Fri Jan 19 13:30:15 1996 Stan Shebs <shebs@andros.cygnus.com>
13236
13237 SCO OpenServer 5 changes from Robert Lipe <robertl@dgii.com>:
13238 * configure.in (i[345]86-*-sco3.2v5*): Use mh-sysv instead of
13239 mh-sco, since old workarounds no longer needed, and don't
13240 build ld, since libraries have weak symbols in COFF.
13241
13242 Sun Jan 14 23:01:31 1996 Fred Fish <fnf@cygnus.com>
13243
13244 * Makefile.in (CONFIGURE_TARGET_MODULES): Add missing ';'.
13245
13246 Fri Jan 12 15:25:35 1996 Ian Lance Taylor <ian@cygnus.com>
13247
13248 * configure.in: Make sure that ${CC} can be used to compile an
13249 executable.
13250
13251 Sat Jan 6 07:23:33 1996 Michael Meissner <meissner@wogglebug.tiac.net>
13252
13253 * Makefile.in (all-gdb): Depend on $(GDB_TK).
13254 * configure (GDB_TK): Set GDB_TK to either "all-tcl all-tk" or
13255 nothing depending on whether gdbtk is being built.
13256
13257 Wed Jan 3 17:54:41 1996 Doug Evans <dje@canuck.cygnus.com>
13258
13259 * Makefile.in (newlib.tar.gz): Delete building of newlib's info files.
13260
13261 Mon Jan 1 19:09:14 1996 Brendan Kehoe <brendan@rtl.cygnus.com>
13262
13263 * configure.in (noconfigdirs): Put ld or gas in this early, if the
13264 user specifically used --with-gnu-ld=no or --with-gnu-as=no.
13265
13266 Sat Dec 30 16:08:57 1995 Doug Evans <dje@canuck.cygnus.com>
13267
13268 * config-ml.in: Add support for
13269 --disable-{softfloat,m68881,m68000,m68020} on m68*-*-*.
13270 Simplify setting of multidirs from --disable-foo.
13271
13272 Fri Dec 29 07:56:11 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13273
13274 * Makefile.in (EXTRA_GCC_FLAGS): If any of the make variables
13275 LANGUAGES, BOOT_CFLAGS, STMP_FIXPROTO, LIMITS_H_TEST,
13276 LIBGCC1_TEST, LIBGCC2_CFLAGS, LIBGCC2_INCLUDES, and ENQUIRE are
13277 non-empty, pass them on to the GCC make.
13278 (all-bootstrap): New rule that is like all-gcc, except it executes
13279 the GCC bootstrap rule instead of the GCC all rule.
13280
13281 Wed Dec 27 15:51:48 1995 Doug Evans <dje@canuck.cygnus.com>
13282
13283 * config-ml.in (ml_realsrcdir): New, to account for ${subdir}.
13284
13285 Tue Dec 26 11:45:31 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13286
13287 * config.guess (AViiON:dgux:*:*): Update from FSF to add pentium
13288 DG/UX support.
13289
13290 Fri Dec 15 10:01:27 1995 Stan Cox <coxs@dg-rtp.dg.com>
13291
13292 * config.sub (i*86*) Change [345] to [3456]
13293
13294 Wed Dec 20 17:41:40 1995 Brendan Kehoe <brendan@lisa.cygnus.com>
13295
13296 * configure.in (noconfigdirs): Add gas or ld if --with-gnu-as=no or
13297 --with-gnu-ld=no.
13298
13299 Wed Dec 20 15:15:35 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13300
13301 * config-ml.in (rs6000*, powerpc*): Add switches to control which
13302 AIX multilibs get built.
13303
13304 Mon Dec 18 17:55:46 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13305
13306 * configure.in (i386-win32): Don't build expect if we're not
13307 building the tcl subdir.
13308
13309 Mon Dec 18 11:47:19 1995 Stan Shebs <shebs@andros.cygnus.com>
13310
13311 * Makefile.in: (configure-target-examples, all-target-examples):
13312 New targets, configure and build example programs.
13313
13314 Fri Dec 15 16:13:03 1995 Stan Shebs <shebs@andros.cygnus.com>
13315
13316 * mpw-configure: If an mpw-config.in generated a file mk.sed,
13317 use it as input to sedit the generated MPW makefile.
13318 * mpw-README: Add a suggestion about Gestalt.h.
13319
13320 Wed Dec 13 16:43:51 1995 Ian Lance Taylor <ian@cygnus.com>
13321
13322 * config.sub: Accept *-*-ieee*.
13323
13324 Tue Dec 12 11:52:57 1995 Ian Lance Taylor <ian@cygnus.com>
13325
13326 * Makefile.in (local-distclean): Remove $(TARGET_SUBDIR). From
13327 Ronald F. Guilmette <rfg@monkeys.com>.
13328
13329 Mon Dec 11 15:31:58 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13330
13331 * configure.in (host==powerpc-pe): Add many directories to noconfigdirs
13332 for powerpc-pe native.
13333 (target==i386-win32): add tcl, make to noconfigdirs if canadian cross.
13334 (target==powerpc-pe): duplicate i386-win32 entry.
13335
13336 Sat Dec 9 14:58:28 1995 Jim Wilson <wilson@chestnut.cygnus.com>
13337
13338 * configure.in (noconfigdirs): Exclude target-newlib for all versions
13339 of vxworks, not just vxworks5.1.
13340
13341 Mon Dec 4 12:05:40 1995 Stan Shebs <shebs@andros.cygnus.com>
13342
13343 * mpw-configure: Add support for exec-prefix.
13344
13345 Mon Dec 4 10:22:50 1995 Jeffrey A. Law <law@rtl.cygnus.com>
13346
13347 * config.guess: Recognize HP model 816 machines as having
13348 a PA1.1 processor.
13349
13350 Mon Dec 4 12:38:15 1995 Ian Lance Taylor <ian@cygnus.com>
13351
13352 * configure: Ignore new autoconf configure options.
13353
13354 Thu Nov 30 16:57:33 1995 Per Bothner <bothner@wombat.gnu.ai.mit.edu>
13355
13356 * config.guess: Recognize Pentium under SCO.
13357 From Robert Lipe <robertl@arnet.com>.
13358
13359 Wed Nov 29 13:49:08 1995 J.T. Conklin <jtc@rtl.cygnus.com>
13360
13361 * configure.in (noconfigdirs): Disable target-libio on v810-*-*.
13362
13363 Wed Nov 29 12:12:01 1995 Ian Lance Taylor <ian@cygnus.com>
13364
13365 * configure.in: Don't configure gas for alpha-dec-osf*.
13366
13367 Tue Nov 28 17:16:48 1995 Ian Lance Taylor <ian@cygnus.com>
13368
13369 * configure.in: Default to --with-stabs for some targets for which
13370 it makes sense: mips*-*-*, alpha*-*-osf*, i[345]86*-*-sysv4* and
13371 i[345]86*-*-unixware*.
13372
13373 Mon Nov 27 13:44:15 1995 Ian Lance Taylor <ian@cygnus.com>
13374
13375 * config-ml.in: Get list of multidirs using gcc --print-multi-lib
13376 rather than basing it on the target. Simplify handling of options
13377 controlling which directories to configure. Remove extraneous
13378 slash in multi-clean target.
13379
13380 Fri Nov 24 17:29:29 1995 Doug Evans <dje@deneb.cygnus.com>
13381
13382 * config-ml.in: Prefix more variables with ml_ so they don't collide
13383 with configure's.
13384
13385 Wed Nov 22 11:27:02 1995 Ian Lance Taylor <ian@cygnus.com>
13386
13387 * configure: Don't turn -v into --v.
13388
13389 Tue Nov 21 16:48:02 1995 Doug Evans <dje@deneb.cygnus.com>
13390
13391 * configure.in (targargs): Fix typo.
13392
13393 * Makefile.in (DEVO_SUPPORT): Add symlink-tree.
13394
13395 Tue Nov 21 14:08:28 1995 Ian Lance Taylor <ian@cygnus.com>
13396
13397 * configure.in: Strip --host and --target options from
13398 CONFIG_ARGUMENTS, and always configure for --host only. Add
13399 --with-cross-host option when building with a cross-compiler.
13400 * configure: Canonicalize the arguments put into config.status by
13401 always using `=' for an option with an argument. Pass a presumed
13402 --host or --target explicitly.
13403
13404 Fri Nov 17 17:50:30 1995 Stan Shebs <shebs@andros.cygnus.com>
13405
13406 * config.sub: Merge -macos*, -magic*, -pe*, and -win32 cases
13407 into general OS recognition case.
13408
13409 Fri Nov 17 17:42:25 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13410
13411 * configure.in (target_configdirs): add target-winsup only
13412 for win32 target systems.
13413
13414 Thu Nov 16 14:04:47 1995 Ian Lance Taylor <ian@cygnus.com>
13415
13416 * Makefile.in (all-target-libgloss): Depend upon
13417 configure-target-newlib, since when libgloss is built it looks to
13418 see if the newlib directory exists.
13419
13420 Wed Nov 15 14:47:52 1995 Ken Raeburn <raeburn@cygnus.com>
13421
13422 * Makefile.in (DEVO_SUPPORT): Use config-ml.in instead of
13423 cfg-ml-*.in.
13424
13425 Wed Nov 15 11:45:23 1995 Ian Lance Taylor <ian@cygnus.com>
13426
13427 * configure: Handle LD and LD_FOR_TARGET when configuring a
13428 Canadian Cross.
13429
13430 Tue Nov 14 14:56:11 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13431
13432 * configure.in (target_libs): add target-winsup.
13433 (target==i386-win32): add patch diff flex make to $noconfigdirs.
13434 (target==ppcle-pe): remove ld from $noconfigdirs.
13435
13436 Tue Nov 14 01:25:50 1995 Doug Evans <dje@canuck.cygnus.com>
13437
13438 * Makefile.in (CONFIGURE_TARGET_MODULES): Pass --with-target-subdir.
13439 Preserve relative path names in $srcdir. Build symlink tree if
13440 configuring cross target dir and srcdir=. (= no VPATH support).
13441 (configure-target-libg++): Depend on configure-target-librx.
13442 * cfg-ml-com.in, cfg-ml-pos.in: Deleted.
13443 * config-ml.in: New file.
13444 * symlink-tree: New file.
13445 * configure: Ensure srcdir="." if that's what it is.
13446
13447 Mon Nov 13 12:34:20 1995 Stan Shebs <shebs@andros.cygnus.com>
13448
13449 * mpw-README: Clarify some phrasing, add notes about CodeWarrior
13450 includes and FLEX_SKELETON setting.
13451 * mpw-configure (--with-gnu-ld): New option, controls whether
13452 to use PPCLink or ld with PowerMac GCC.
13453 * mpw-build.in (all-grez, do-grez, install-grez): New targets.
13454 * mpw-config.in: Configure grez if targeting Mac.
13455
13456 * config.sub: Accept pmac and pmac-mpw as names for PowerMacs,
13457 accept mpw and mac-mpw as names for m68k Macs, change macos7 to
13458 just macos.
13459 * configure.in: Configure grez resource compiler if targeting Mac.
13460 * Makefile.in (all-grez, install-grez): New targets.
13461
13462 Wed Nov 8 17:33:51 1995 Jason Merrill <jason@yorick.cygnus.com>
13463
13464 * configure: CXX defaults to gcc, not g++. If we find
13465 gcc in the path, set CC to gcc -O2.
13466
13467 Tue Nov 7 15:45:17 1995 Ian Lance Taylor <ian@cygnus.com>
13468
13469 * configure: Default ${build} correctly. Avoid picking up extra
13470 spaces when reading CC and CXX from Makefile. When doing a
13471 Canadian Cross, use plausible default values for numerous
13472 variables.
13473 * configure.in: When doing a Canadian Cross, don't try to
13474 configure tools whose configure script can't handle it.
13475
13476 Mon Nov 6 19:32:17 1995 Jim Wilson <wilson@chestnut.cygnus.com>
13477
13478 * cfg-ml-com.in (sh-*-*): Add m2 and ml/m2 to multidirs.
13479
13480 Sun Nov 5 00:15:41 1995 Per Bothner <bothner@kalessin.cygnus.com>
13481
13482 * configure: Remove dubious bug reporting address.
13483
13484 Fri Nov 3 08:17:54 1995 Per Bothner <bothner@kalessin.cygnus.com>
13485
13486 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): If subdir has
13487 configure script, run that instead of this directory's configure.
13488 In either case, print a message that we're configuring the sub-dir.
13489
13490 Thu Nov 2 23:23:36 1995 Per Bothner <bothner@kalessin.cygnus.com>
13491
13492 * configure.in: Before checking for the existence of various files,
13493 use sed to filter out "target-".
13494
13495 Thu Nov 2 13:24:56 1995 Ian Lance Taylor <ian@cygnus.com>
13496
13497 * Makefile.in (DO_X): Split rule to decrease command line length
13498 for systems with small ARG_MAX values. From phdm@info.ucl.ac.be
13499 (Philippe De Muyter).
13500
13501 Wed Nov 1 15:18:35 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13502
13503 * Makefile.in (all-patch): depend on all-libiberty.
13504
13505 Wed Nov 1 12:23:20 1995 Ian Lance Taylor <ian@cygnus.com>
13506
13507 * configure.in: If the only directory in target_configdirs which
13508 actually exists is libiberty, then set target_configdirs to empty,
13509 to avoid trying to build a target libiberty in a gas or gdb
13510 distribution.
13511
13512 Tue Oct 31 17:52:39 1995 J.T. Conklin <jtc@slave.cygnus.com>
13513
13514 * configure.in (host_makefile_frag): Use m68k-sun-sunos* instead
13515 of m68k-sun-* when selecting mh-sun3 to avoid matching NetBSD/sun3
13516 systems.
13517
13518 Tue Oct 31 16:57:32 1995 Jim Wilson <wilson@chestnut.cygnus.com>
13519
13520 * configure.in (copy_dirs): Use sys-include instead of include
13521 for --with-headers option.
13522
13523 Tue Oct 31 10:29:36 1995 steve chamberlain <sac@slash.cygnus.com>
13524
13525 * Makefile.in, configure.in: Make winsup builds work with
13526 new scheme.
13527
13528 Mon Oct 30 18:57:09 1995 Ian Lance Taylor <ian@cygnus.com>
13529
13530 * configure.in: Build the linker on AIX.
13531
13532 Mon Oct 30 12:27:16 1995 Per Bothner <bothner@kalessin.cygnus.com>
13533
13534 * Makefile.in (CC_FOR_TARGET, CXX_FOR_TARGET): Add $(TARGET_SUBDIR)
13535 where needed.
13536
13537 Mon Oct 30 12:45:25 1995 Doug Evans <dje@cygnus.com>
13538
13539 * Makefile.in (all-gcc): Fix typo.
13540
13541 Sat Oct 28 10:27:59 1995 Per Bothner <bothner@kalessin.cygnus.com>
13542
13543 * Makefile.in ($(CHECK_TARGET_MODULES)): Fix typo.
13544
13545 Fri Oct 27 23:14:12 1995 Per Bothner <bothner@kalessin.cygnus.com>
13546
13547 * configure.in: Rename libFOO to target-libFOO, and xiberty
13548 to target-xiberty, to provide more flexibility.
13549 (target_subdir): Define. Create if cross.
13550 Set TARGET_SUBDIR in Makefile to ${target_subdir}.
13551 * Makefile.in: Rename all-libFOO -> all-target-libFOO, all-xiberty
13552 -> all-target-libiberty, configure-libFOO -> configure-target-libFOO,
13553 check-libFOO -> check-target-libFOO, etc.
13554 ($(DO_X)): Iterate over TARGET_CONFIGDIRS after SUBDIRS.
13555 ($(CONFIGURE_TARGET_MODULES), $(CHECK_TARGET_MODULES),
13556 $(ALL_TARGET_MODULES), $(INSTALL_TARGET_MODULES)): Update accordingly.
13557 (configure-target-XXX): Depend on $(ALL_GCC), not all-gcc, to
13558 allow ALL_GCC="" to only configure.
13559 (DEVO_SUPPORT): Add cfg-ml-com.in and cfg-ml-pos.in.
13560 (ETC_SUPPORT, ETC_SUPPORT_PFX): Merge; update 'taz' accordingly.
13561 (LIBGXX_SUPPORT_DIRS): Remove xiberty.
13562
13563 Sat Oct 28 01:53:49 1995 Ken Raeburn <raeburn@cygnus.com>
13564
13565 * Makefile.in (taz): Build "info" in etc explicitly.
13566
13567 Fri Oct 27 09:32:30 1995 Stu Grossman (grossman@cygnus.com)
13568
13569 * configure.in: Make sure that CC is undefined (as opposed to
13570 null) if toplevel/config/mh-{host} doesn't define it. Fixes a
13571 problem with autoconf trying to configure on a host without GCC.
13572
13573 Thu Oct 26 22:35:01 1995 Stan Shebs <shebs@andros.cygnus.com>
13574
13575 * mpw-configure: Set host alias from choice of host compiler,
13576 only use generic MPW Makefile sed if present, edit a file
13577 named "hacked_Makefile.in" instead of "Makefile.in" if present.
13578 * mpw-README: Add problem notes about CW6 and CW7.
13579
13580 Thu Oct 26 05:45:10 1995 Ken Raeburn <raeburn@kr-pc.cygnus.com>
13581
13582 * Makefile.in (taz): Use ";" instead of ";;".
13583
13584 Wed Oct 25 15:18:24 1995 Per Bothner <bothner@kalessin.cygnus.com>
13585
13586 * Makefile.in (taz): Grep for '^diststuff:' or '^info:' in
13587 sub-directory Makefiles, instead of using DISTSTUFFDIRS and
13588 DISTDOCDIRS.
13589 (DISTSTUFFDIRS, DISTDOCDIRS): Removed - no longer used.
13590 (newlib.tar.gz): Don't pass DISTDOCDIRS to recursive make.
13591
13592 Wed Oct 25 14:43:55 1995 Per Bothner <bothner@kalessin.cygnus.com>
13593
13594 * Makefile.in (DISTDOCDIRS): Remove ld gprof bnutils gas libg++ gdb
13595 and gnats, because they are now subsumed by DISTSTUFFDIRS.
13596 Move bfd to DISTSTUFFDIRS.
13597
13598 Tue Oct 24 18:19:09 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13599
13600 * Makefile.in (X11_LIB): Removed.
13601 (X11_FLAGS_TO_PASS): pass only X11_EXTRA_CFLAGS and X11_EXTRA_LIBS.
13602
13603 * configure.in (host_makefile_frag): mh-aix & mh-sun removed.
13604
13605 Sun Oct 22 13:04:42 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13606
13607 * cfg-ml-com.in (powerpc*): Shorten some of the multilib directory
13608 names.
13609
13610 Fri Oct 20 18:02:10 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13611
13612 * cfg-ml-com.in (powerpc*-eabi*): Add mcall-aixdesc varients.
13613
13614 Thu Oct 19 10:40:57 1995 steve chamberlain <sac@slash.cygnus.com>
13615
13616 * configure.in (i[345]86-*-win32): Always build newlib.
13617 Don't configure cvs, autoconf or texinfo.
13618 * Makefile.in (LD_FOR_TARGET): New.
13619 (BASE_FLAGS_TO_PASS, EXTRA_TARGET_FLAGS, CONFIGURE_TARGET_MODULES):
13620 Pass down LD_FOR_TARGET.
13621
13622 Wed Oct 18 15:53:56 1995 steve chamberlain <sac@slash.cygnus.com>
13623
13624 * winsup: New directory.
13625 * Makefile.in: Build winsup.
13626 * configure.in: Winsup is configured when target is win32.
13627 Can only build win32 target GDB when native.
13628
13629 Mon Oct 16 09:42:31 1995 Jeffrey A Law (law@cygnus.com)
13630
13631 * config.guess: Recognize HP model 819 machines as having
13632 a PA 1.1 processor.
13633
13634 Mon Oct 16 10:49:43 1995 Ian Lance Taylor <ian@cygnus.com>
13635
13636 * configure: Fix sed loop which substitutes for CC and CXX to
13637 avoid bug found in various sed implementations.
13638
13639 Wed Oct 11 16:16:20 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13640
13641 * cfg-ml-com.in (powerpc-*-eabisim): Delete separate rule for
13642 simulator. Use standard powerpc-*-eabi*.
13643
13644 Mon Oct 9 17:21:56 1995 Ian Lance Taylor <ian@cygnus.com>
13645
13646 * configure.in: Stop putting gas and binutils in noconfigdirs for
13647 powerpc-*-aix* and rs6000-*-*.
13648
13649 Mon Oct 9 12:38:40 1995 Michael Meissner <meissner@cygnus.com>
13650
13651 * cfg-ml-com.in (powerpc*-*-eabisim*): Add support for building
13652 -mcall-aixdesc libraries.
13653
13654 Fri Oct 6 16:17:57 1995 Ken Raeburn <raeburn@cygnus.com>
13655
13656 Mon Sep 25 22:49:32 1995 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
13657
13658 * config.sub (arm | armel | armeb): Fix shell syntax.
13659
13660 Fri Oct 6 14:40:28 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13661
13662 * cfg-ml-com.in ({powerpc,rs6000}-ibm-aix*): Add multilibs for
13663 -msoft-float and -mcpu=common support.
13664 (powerpc*-*-eabisim*): Add support for building -mcall-aix
13665 libraries.
13666
13667 Thu Oct 5 13:26:37 1995 Brendan Kehoe <brendan@lisa.cygnus.com>
13668
13669 * configure.in: Allow configuration and build of emacs19 for the alpha.
13670
13671 Wed Oct 4 22:05:36 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13672
13673 * configure.in (CC): Get ^CC, not just any old CC, from
13674 ${host_makefile_frag}.
13675
13676 Wed Oct 4 21:55:00 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13677
13678 * configure.in (CC): Try to get CC from
13679 ${srcdir}/${host_makefile_frag}, not ${host_makefile_frag}.
13680
13681 Wed Oct 4 21:44:12 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13682
13683 * Makefile.in (TARGET_CONFIGDIRS): configure targetdirs
13684 only if it exists in $(srcdir).
13685
13686 Wed Oct 4 11:52:31 1995 Ian Lance Taylor <ian@cygnus.com>
13687
13688 * configure: If CC and CXX are not set in the environment, set
13689 them, based on either an existing Makefile or on searching for gcc
13690 in PATH. Substitute for CC and CXX in Makefile.
13691 * configure.in: Remove libm from target_libs. Separate
13692 target_configdirs from configdirs. If CC is not set in
13693 environment, try to get it from a host Makefile fragment. Rewrite
13694 changes of configdirs to use skipdirs instead. A few minor
13695 tweaks. Take directories out of target_configdirs as they are
13696 taken out of configdirs. Remove existing Makefile files from
13697 subdirectories. Substitute for TARGET_CONFIGDIRS and
13698 CONFIG_ARGUMENTS in Makefile.
13699 * Makefile.in (TARGET_CONFIGDIRS): New variable, automatically set
13700 by configure.in.
13701 (CONFIG_ARGUMENTS): Likewise.
13702 (CONFIGURE_TARGET_MODULES): New variable.
13703 ($(DO_X)): Loop over TARGET_CONFIGDIRS as well as SUBDIRS.
13704 ($(CONFIGURE_TARGET_MODULES)): New target.
13705 (configure-libg++, configure-libio): New targets.
13706 (all-libg++): Depend upon configure-libg++.
13707 (all-libio): Depend upon configure-libio.
13708 (configure-libgloss, all-libgloss): New targets.
13709 (configure-libstdc++): New target.
13710 (all-libstdc++): Depend upon configure-libstdc++.
13711 (configure-librx, all-librx): New targets.
13712 (configure-newlib): New target.
13713 (all-newlib): Depend upon configure-newlib
13714 (configure-xiberty): New target.
13715 (all-xiberty): Depend upon configure-xiberty.
13716
13717 Sat Sep 30 04:32:59 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13718
13719 * configure.in (host i[345]86-*-win32): Expand the
13720 noconfigdirs again.
13721
13722 Thu Sep 28 21:18:49 1995 Stan Shebs <shebs@andros.cygnus.com>
13723
13724 * mpw-configure: Fix sed command file name.
13725
13726 Thu Sep 28 17:39:56 1995 steve chamberlain <sac@slash.cygnus.com>
13727
13728 * configure.in (host i[345]86-*-win32): Reduce the
13729 noconfigdirs again.
13730
13731 Wed Sep 27 12:24:00 1995 Ian Lance Taylor <ian@cygnus.com>
13732
13733 * configure.in: Don't configure ld and gdb for powerpc*-*-winnt*
13734 or powerpc*-*-pe*, since they are not yet supported.
13735
13736 Tue Sep 26 14:30:01 1995 Stan Shebs <shebs@andros.cygnus.com>
13737
13738 Add PowerMac support and many other enhancements.
13739 * mpw-configure: New option --cc to select compiler to use,
13740 paste options set according to --cc into the generated
13741 Makefile, generate the Makefile by sed'ing the Unix Makefile.in
13742 if mpw-make.sed is present.
13743 * mpw-config.in: Don't test for gC1, test for mpw-touch,
13744 add forward includes for PowerPC include files.
13745 * mpw-build.in: Build using Makefile.PPC if present.
13746 (do-byacc, etc): Remove separate version resource builds.
13747 (do-gas): Build "stamps" before "all".
13748 (do-gcc): Build "stamps-h" and "stamps-c" before "all".
13749 * mpw-README: Update to reflect --cc option, PowerMac support,
13750 and recently-reported compatibility problems.
13751
13752 Fri Sep 22 12:15:42 1995 Doug Evans <dje@deneb.cygnus.com>
13753
13754 * cfg-ml-com.in (m68*-*-*): Only build multilibs for
13755 embedded m68k systems (-aout, -coff, -elf, -vxworks).
13756 (--with-multilib-top): Pass to recursive invocations.
13757
13758 Tue Sep 19 13:51:05 1995 J.T. Conklin <jtc@blues.cygnus.com>
13759
13760 * configure.in (noconfigdirs): Disable libg++ and libstdc++ on
13761 v810-*-*.
13762
13763 Mon Sep 18 23:08:26 1995 J.T. Conklin <jtc@rtl.cygnus.com>
13764
13765 * configure.in (noconfigdirs): Disable bfd, binutils, gas, gcc,
13766 gdb, ld and opcodes on v810-*-*.
13767
13768 Tue Sep 12 18:03:31 1995 Ian Lance Taylor <ian@cygnus.com>
13769
13770 * Makefile.in (DO_X): Change do-realclean to do-maintainer-clean.
13771 (local-maintainer-clean): New target.
13772 (maintainer-clean): New target.
13773 (realclean): Just depend upon maintainer-clean.
13774
13775 Fri Sep 8 17:11:14 1995 J.T. Conklin <jtc@rtl.cygnus.com>
13776
13777 * configure.in (noconfigdirs): Disable gdb on m68k-*-netbsd*.
13778
13779 Fri Sep 8 16:46:29 1995 Ian Lance Taylor <ian@cygnus.com>
13780
13781 * configure.in: Build ld in mips*-*-bsd* case.
13782
13783 Thu Sep 7 20:03:41 1995 Ken Raeburn <raeburn@cygnus.com>
13784
13785 * config.sub: Accept -lites* OS. From Ian Dall.
13786
13787 Fri Sep 1 08:06:58 1995 James G. Smith <jsmith@beauty.cygnus.com>
13788
13789 * config.sub: recognise mips64vr4300 and mips64vr4300el as valid
13790 targets.
13791
13792 Wed Aug 30 21:06:50 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13793
13794 * configure.in: treat i386-win32 canadian cross the same as
13795 i386-go32 canadian cross.
13796
13797 Thu Aug 24 14:53:20 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13798
13799 * cfg-ml-com.in (powerpc*-*-eabisim): Add support for PowerPC
13800 running under the simulator to build a reduced set of libraries.
13801 (powerpc-*-eabiaix): Add fine grained multilib support added to
13802 other powerpc targets yesterday.
13803
13804 Wed Aug 23 09:41:56 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13805
13806 * cfg-ml-com.in (powerpc*): Add support for -disable-biendian,
13807 -disable-softfloat, -disable-relocatable, -disable-aix, and
13808 -disable-sysv to control which multilib libraries get built.
13809
13810 Thu Aug 17 16:03:41 1995 Ken Raeburn <raeburn@kr-laptop.cygnus.com>
13811
13812 * configure: Add Makefile.tem to list of files to remove in trap
13813 handler.
13814
13815 Mon Aug 14 19:27:56 1995 Per Bothner <bothner@kalessin.cygnus.com>
13816
13817 * config.guess (*Linux*): Add missing "exit"s.
13818 Also, need specific check for alpha-unknown-linux (uses COFF).
13819
13820 Fri Aug 11 15:38:20 1995 Per Bothner <bothner@kalessin.cygnus.com>
13821
13822 * config.guess: Merge with FSF:
13823
13824 Wed Jun 28 17:57:27 1995 David Edelsohn <edelsohn@mhpcc.edu>
13825 * config.guess (AIX4): More robust release numbering discovery.
13826
13827 Thu Jun 22 19:01:24 1995 Kenneth Stailey (kstailey@eagle.dol-esa.gov)
13828 * config.guess (i386-sequent-ptx): Properly get version number.
13829
13830 Thu Jun 22 18:36:42 1995 Uwe Seimet (seimet@iris1.chemie.uni-kl.de)
13831 * config.guess (mips:*:4*:UMIPS): New case.
13832
13833 Mon Aug 7 09:21:35 1995 Doug Evans <dje@canuck.cygnus.com>
13834
13835 * configure.in (i386-go32 host): Fix typo (deja-gnu -> dejagnu).
13836 (i386-win32 host): Likewise. Don't build readline.
13837
13838 Sat Aug 5 09:51:49 1995 Fred Fish <fnf@rtl.cygnus.com>
13839
13840 * Makefile.in (GDBTK_SUPPORT_DIRS): Define and pass as part of
13841 SUPPORT_FILES to submakes.
13842
13843 Fri Aug 4 13:04:36 1995 Fred Fish <fnf@cygnus.com>
13844
13845 * Makefile.in (GDB_SUPPORT_DIRS): Add utils.
13846 (DEVO_SUPPORT): Add mpw-README, mpw-build.in, mpw-config.h and
13847 mpw-configure.
13848
13849 Wed Aug 2 16:32:40 1995 Ken Raeburn <raeburn@cygnus.com>
13850
13851 * configure.in (appdirs): Use =, not ==, in test expression when
13852 trying to build the text to print in the warning message for
13853 Solaris users.
13854
13855 Mon Jul 31 09:56:18 1995 steve chamberlain <sac@slash.cygnus.com>
13856
13857 * cfg-ml-com.in (z8k-*-coff): Add 'std' multilib build.
13858
13859 Fri Jul 28 00:16:31 1995 Jeffrey A. Law <law@rtl.cygnus.com>
13860
13861 * config.guess: Recognize lynx-2.3.
13862
13863 Thu Jul 27 15:47:59 1995 steve chamberlain <sac@slash.cygnus.com>
13864
13865 * config.sub (z8ksim): Deleted
13866 (z8k-*-coff): New, this is the one true name of the target.
13867
13868 Thu Jul 27 14:33:33 1995 Doug Evans <dje@canuck.cygnus.com>
13869
13870 * cfg-ml-pos.in (dotdot): Work around SunOS sed bug.
13871
13872 Thu Jul 27 13:31:05 1995 Fred Fish (fnf@cygnus.com)
13873
13874 * config.guess (*:Linux:*:*): First try asking the linker what the
13875 default object file format is (elf, aout, or coff). Then if this
13876 fails, try previous methods.
13877
13878 Thu Jul 27 11:28:17 1995 J.T. Conklin <jtc@rtl.cygnus.com>
13879
13880 * configure.in: Don't build newlib for *-*-vxworks5.1.
13881
13882 Thu Jul 27 11:18:47 1995 Brendan Kehoe <brendan@lisa.cygnus.com>
13883
13884 * configure.in: Don't build newlib for a29k-*-vxworks5.1.
13885 * test-build.mk: Add setting of --with-headers for a29k-vxworks5.1.
13886
13887 Tue Jul 25 21:25:39 1995 Doug Evans <dje@canuck.cygnus.com>
13888
13889 * cfg-ml-pos.in (MULTITOP): Trim excess trailing "/.".
13890
13891 Fri Jul 21 10:41:12 1995 Doug Evans <dje@canuck.cygnus.com>
13892
13893 * cfg-ml-com.in: New file.
13894 * cfg-ml-pos.in: New file.
13895
13896 Wed Jul 19 00:37:27 1995 Jeffrey A. Law <law@rtl.cygnus.com>
13897
13898 * COPYING.NEWLIB: Add HP free copyright to list.
13899
13900 Tue Jul 18 10:58:51 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13901
13902 * config.sub: Recognize -eabi* for the system, not just -eabi.
13903
13904 Mon Jul 3 13:44:51 1995 Steve Chamberlain <sac@slash.cygnus.com>
13905
13906 * Makfile.in (DLLTOOL_FOR_TARGET): New name, pass it down.
13907 * config.sub, configure.in (win32): New target and host.
13908
13909 Wed Jun 28 23:57:08 1995 Steve Chamberlain <sac@slash.cygnus.com>
13910
13911 * configure.in: Add i386-pe configuration.
13912
13913 Fri Jun 23 14:28:44 1995 Stan Shebs <shebs@andros.cygnus.com>
13914
13915 * mpw-build.in (install): Install GDB after LD.
13916
13917 Thu Jun 22 17:10:53 1995 Stan Shebs <shebs@andros.cygnus.com>
13918
13919 * mpw-config.in (elf/mips.h): Always forward-include, needed
13920 for GDB to build.
13921
13922 Wed Jun 21 15:17:30 1995 Rob Savoye <rob@darkstar.cygnus.com>
13923
13924 * testsuite: New directory for customer acceptance and whole tool
13925 chain tests.
13926
13927 Wed Jun 21 16:50:29 1995 Ken Raeburn <raeburn@cujo.cygnus.com>
13928
13929 * configure: If per-host line isn't found, but AC_OUTPUT is found
13930 and a configure script exists, run it instead.
13931
13932 Thu Jun 15 21:09:24 1995 Per Bothner <bothner@kalessin.cygnus.com>
13933
13934 * config.guess: Update from FSF, for alpha-dec-winnt3.5 and Crays.
13935
13936 Tue Jun 13 21:43:27 1995 Rob Savoye <rob@darkstar.cygnus.com>
13937
13938 * configure: Set build_{cpu,vendor,os,alias} to host values when
13939 --build isn't specified.
13940
13941 Mon Jun 5 18:26:36 1995 Jason Merrill <jason@phydeaux.cygnus.com>
13942
13943 * Makefile.in (PICFLAG, PICFLAG_FOR_TARGET): New macros.
13944 (FLAGS_TO_PASS): Pass them.
13945 (EXTRA_TARGET_FLAGS): Ditto.
13946
13947 Wed May 31 22:27:42 1995 Jim Wilson <wilson@chestnut.cygnus.com>
13948
13949 * Makefile.in (all-libg++): Depend on all-libstdc++.
13950
13951 Thu May 25 22:40:59 1995 J.T. Conklin <jtc@rtl.cygnus.com>
13952
13953 * configure.in (noconfigdirs): Enable all packages for
13954 i386-unknown-netbsd.
13955
13956 Sat May 20 13:22:31 1995 Angela Marie Thomas <angela@cirdan.cygnus.com>
13957
13958 * configure.in (noconfigdirs): Don't configure tk for i386-go32
13959 hosted builds (DOS builds)
13960
13961 Thu May 18 18:08:49 1995 Ken Raeburn <raeburn@kr-laptop.cygnus.com>
13962
13963 Changes for ARM based on patches from Richard Earnshaw:
13964 * config.sub: Handle armeb and armel.
13965 * configure.in: Omit arm linker only for riscix.
13966
13967 Thu May 11 17:23:26 1995 Per Bothner <bothner@kalessin.cygnus.com>
13968
13969 * config.guess: Update from FSF.
13970
13971 Tue May 9 15:52:05 1995 Michael Meissner <meissner@cygnus.com>
13972
13973 * config.sub: Recognize powerpcle as the little endian varient of
13974 the PowerPC. Recgonize ppc as a PowerPC variant, and ppcle as a
13975 powerpcle variant. Convert pentium into i586, not i486. Add p5
13976 alias for i586. Map new x86 variants p6, k5, nexgen into i586
13977 temporarily.
13978
13979 Tue May 2 16:29:41 1995 Jeff Law (law@snake.cs.utah.edu)
13980
13981 * configure.in (hppa*-*-lites*): Treat like hppa*-*-*elf*.
13982
13983 Sun Apr 30 21:38:09 1995 Jeff Law (law@snake.cs.utah.edu)
13984
13985 * config.sub: Accept -lites* as a basic system type.
13986
13987 Thu Apr 27 11:33:29 1995 Michael Meissner (meissner@cygnus.com)
13988
13989 * config.guess (*:Linux:*:*): Check for whether the pre-BFD linker is
13990 installed, and if so return linuxoldld as the system name.
13991
13992 Wed Apr 26 10:59:02 1995 Jeff Law (law@snake.cs.utah.edu)
13993
13994 * config.guess: Add hppa1.1-hp-lites support.
13995
13996 Tue Apr 25 11:08:11 1995 Rob Savoye <rob@darkstar.cygnus.com>
13997
13998 * configure.in: Don't build newlib for m68k-vxworks5.1.
13999
14000 Wed Apr 19 17:02:43 1995 Jim Wilson <wilson@chestnut.cygnus.com>
14001
14002 * configure.in (mips-sgi-irix6): Use mh-irix5.
14003
14004 Fri Apr 14 15:21:17 1995 Doug Evans <dje@chestnut.cygnus.com>
14005
14006 * Makefile.in (all-gcc): Depend on all-ld (for libgcc1-test).
14007
14008 Wed Apr 12 16:06:01 1995 Jason Merrill <jason@phydeaux.cygnus.com>
14009
14010 * test-build.mk: Enable building of shared libraries on IRIX 5 and
14011 OSF/1. Fix compiler flags.
14012 * build-all.mk: Support Linux and OSF/1 3.0. Fix compiler flags.
14013
14014 Tue Apr 11 18:55:40 1995 Doug Evans <dje@canuck.cygnus.com>
14015
14016 * configure.in: Recognize --with-newlib.
14017 (sparc-*-sunos4*): Build sim, dejagnu, expect, tcl if cross target.
14018
14019 Mon Apr 10 14:38:20 1995 Jason Molenda (crash@phydeaux.cygnus.com)
14020
14021 * Makefile.in: move {all,check,install}-gdb from *_MODULES
14022 to *_X11_MODULES due to gdbtk needing X include files et al.
14023
14024 Mon Apr 10 11:42:22 1995 Stan Shebs <shebs@andros.cygnus.com>
14025
14026 Merge in support for Mac MPW as a host.
14027 (Old change descriptions retained for informational value.)
14028
14029 * mpw-config.in: Add generic include forwards for cpu-specific
14030 include files in aout and elf directories.
14031
14032 * mpw-configure: Added copyright.
14033 * mpw-config.in: Check for presence of required build tools.
14034 (target_libs): Add newlib.
14035 (target_tools): Add examples.
14036 (Read Me): Generate as "Read Me for MPW" instead.
14037 * mpw-build.in: Base sub-builds on all-foo instead of do-foo.
14038 (all-byacc, do-byacc, all-flex, do-flex, do-newlib): New actions.
14039 (do-gas, do-gcc, do-gdb, do-ld): Build Version.r first.
14040
14041 * mpw-configure: Remove subdir-specific makefile hackery,
14042 delete mk.tmp after using it.
14043
14044 * mpw-build.in (all): Display start and end times.
14045
14046 * mpw-configure (host_canonical): Set.
14047 (target_cpu): Always add to makefiles.
14048 (ARCHDEFS, EMUL): Add to makefile only if nonempty.
14049 (TM_FILE, XM_FILE, NM_FILE): No longer add to makefile.
14050 (mpw-mh-mpw): Look for in srcdir and srcroot.
14051 Use sed instead of mpw-edit-prefix to edit prefix definitions.
14052
14053 * mpw-build.in: (install-only): New target.
14054
14055 * mpw-configure (host_alias, target_alias): Rename from hostalias
14056 and targetalias, add into generated Makefile.
14057 (mk.tmp): If present, add into generated Makefile.
14058 * mpw-build.in (all-gas): Build config.h first before gas proper.
14059
14060 * mpw-configure (config.status): Write only if changed.
14061 * mpw-config.in (readline): Configure it (not built, just used for
14062 definitions).
14063
14064 * mpw-config.in (elf/mips.h): Add a forward include.
14065
14066 * mpw-config.in: Forward-include most .h files in include into
14067 extra-include.
14068 (readline): Don't build.
14069 mpw-build.in (install): Install GDB.
14070
14071 * mpw-configure (prefix, mpw_prefix): Handle it.
14072 * mpw-config.in (mmalloc, readline): Don't configure.
14073 * mpw-build.in (thisscript): Rename to ThisScript.
14074 Use mpw-build instead of BuildProgram everywhere.
14075 (mmalloc, readline): Don't build.
14076 * mpw-README: New file, basic documentation about the MPW port.
14077
14078 * mpw-config.in: Use forward-include to create include files.
14079
14080 * mpw-configure: Add more things to the top of each configured
14081 Makefile, including contents of config/mpw-mh-mpw.
14082 * mpw-config.in (extra-include): Create this directory and fill it
14083 with Posix-like include files when configuring.
14084
14085 * config.sub (apple, mac, mpw): Add various aliases.
14086
14087 * mpw-build.in: New file, top-level build script fragment for MPW.
14088 * mpw-configure: New file, configure script for MPW.
14089 * mpw-config.in: New file, config fragment for MPW.
14090
14091 Fri Apr 7 19:33:16 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
14092
14093 * configure.in (host_libs): Remove glob, since it is gone from the
14094 sources.
14095
14096 Fri Mar 31 11:36:17 1995 Jason Molenda (crash@phydeaux.cygnus.com)
14097
14098 * Makefile.in: define empty GDB_NLM_DEPS var.
14099
14100 * configure.in(target_makefile_frag): use config/mt-netware
14101 for netware targets.
14102
14103 Thu Mar 30 13:51:43 1995 Ian Lance Taylor <ian@cygnus.com>
14104
14105 * config.sub: Merge in recent FSF changes. Remove linux special
14106 cases.
14107
14108 Tue Mar 28 14:47:34 1995 Jason Molenda (crash@phydeaux.cygnus.com)
14109
14110 Revert this change:
14111
14112 Tue Mar 30 10:03:09 1993 Ian Lance Taylor (ian@cygnus.com)
14113
14114 * build-all.mk: Use CC=cc -Xs on Solaris.
14115
14116 Tue Mar 21 10:43:32 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
14117
14118 * glob/*: Removed. Schauer's 24 Feb 1994 readline change made us
14119 stop using it.
14120 * Makefile.in: Nuke all references to glob subdirectory.
14121
14122 Thu Mar 16 13:35:30 1995 Jason Merrill <jason@phydeaux.cygnus.com>
14123
14124 * configure.in: Fix --enable-shared logic in per-host.
14125
14126 Mon Mar 13 12:33:15 1995 Ian Lance Taylor <ian@cygnus.com>
14127
14128 * configure.in (*-hp-hpux[78]*): Use mh-hpux8.
14129
14130 Mon Mar 6 10:21:58 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
14131
14132 * configure.in (noconfigdirs): Don't build gas on AIX, for
14133 powerpc*-*-aix* as well as for rs6000*-*-aix*.
14134
14135 Wed Mar 1 12:51:53 1995 Ian Lance Taylor <ian@cygnus.com>
14136
14137 * configure: Fix --cache-file to work if the file argument is a
14138 relative path.
14139
14140 Tue Feb 28 17:36:07 1995 Ian Lance Taylor <ian@cygnus.com>
14141
14142 * configure: If the --cache-file is used, pass it down to
14143 configure in subdirectories.
14144
14145 Mon Feb 27 12:52:46 1995 Kung Hsu <kung@mexican.cygnus.com>
14146
14147 * config.sub: add vxworks29k configuration.
14148
14149 Fri Feb 10 16:12:26 1995 Ken Raeburn <raeburn@cujo.cygnus.com>
14150
14151 * Makefile.in (taz): Do "diststuff" part quietly.
14152
14153 Sun Feb 5 14:16:35 1995 Doug Evans <dje@canuck.cygnus.com>
14154
14155 * config.sub: Mini-merge with gcc/config.sub.
14156
14157 Sat Feb 4 12:11:35 1995 Jim Wilson <wilson@chestnut.cygnus.com>
14158
14159 * config.guess (IRIX): Sed - to _.
14160
14161 Fri Feb 3 11:54:42 1995 J.T. Conklin <jtc@rtl.cygnus.com>
14162
14163 * Makefile.in (source-vault, binary-vault): New targets.
14164
14165 Thu Jan 26 13:00:11 1995 Michael Meissner <meissner@cygnus.com>
14166
14167 * config.sub: Recognize -eabi as a basic system type.
14168
14169 Thu Jan 12 13:13:23 1995 Jason Merrill <jason@phydeaux.cygnus.com>
14170
14171 * configure.in (enable_shared stuff): Fix typo.
14172
14173 Thu Jan 12 01:36:51 1995 deanm@medulla.LABS.TEK.COM (Dean Messing)
14174
14175 * Makefile.in (BASE_FLAGS_TO_PASS): Fix typo in passing LIBCXXFLAGS*.
14176
14177 Wed Jan 11 16:29:53 1995 Jason Merrill <jason@phydeaux.cygnus.com>
14178
14179 * Makefile.in (LIBCXXFLAGS_FOR_TARGET): Add -fno-implicit-templates.
14180
14181 Mon Jan 9 12:48:01 1995 Jim Kingdon <kingdon@lioth.cygnus.com>
14182
14183 * configure.in (rs6000-*-*): Don't build gas.
14184
14185 Wed Jan 4 23:53:49 1995 Ian Lance Taylor <ian@tweedledumb.cygnus.com>
14186
14187 * Makefile.in: Use /x/x/ instead of /brokensed/brokensed/, to
14188 reduce command line length.
14189 (AS_FOR_TARGET): Check for as.new, not Makefile.
14190 (NM_FOR_TARGET): Check for nm.new, not Makefile.
14191
14192 Wed Jan 4 13:02:39 1995 Per Bothner <bothner@kalessin.cygnus.com>
14193
14194 * config.guess: Merge from FSF.
14195
14196 Thu Dec 15 17:11:37 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
14197
14198 * configure: Don't use $ when handling program_suffix.
14199
14200 Mon Dec 12 12:09:37 1994 Stu Grossman (grossman@cygnus.com)
14201
14202 * configure.in: Configure tk for hppa/hpux.
14203
14204 Fri Dec 2 15:55:38 1994 Per Bothner <bothner@kalessin.cygnus.com>
14205
14206 * Makefile.in (LIBGXX_SUPPORT_DIRS): Add libstdc++.
14207
14208 Tue Nov 29 19:37:56 1994 Per Bothner <bothner@kalessin.cygnus.com>
14209
14210 * Makefile.in: Move -fno-implicit-template from CXXFLAGS
14211 to LIBCXXFLAGS. Tests are better run without it.
14212
14213 Wed Nov 23 10:29:25 1994 Brendan Kehoe (brendan@lisa.cygnus.com)
14214
14215 * Makefile.in (all-ispell): Depend on all-emacs19 instead of all-emacs.
14216
14217 Mon Nov 21 11:14:01 1994 J.T. Conklin <jtc@rtl.cygnus.com>
14218
14219 * configure.in (*-*-netware*): Don't configure xiberty.
14220
14221 Mon Nov 14 08:49:15 1994 Stu Grossman (grossman@cygnus.com)
14222
14223 * configure.in: Remove tk from native_only list.
14224
14225 Fri Nov 11 15:31:26 1994 Bill Cox (bill@rtl.cygnus.com)
14226
14227 * build-all.mk: Add mips-ncd-elf target to sun4 targets
14228 for special NCD build.
14229
14230 Mon Nov 7 20:58:17 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
14231
14232 * Makefile.in (DEVO_SUPPORT): Remove configure.bat and
14233 makeall.bat, they're only useful for binutils snapshots.
14234 (binutils.tar.gz, gas+binutils.tar.gz): Add configure.bat and
14235 makeall.bat to specified SUPPORT_FILES.
14236
14237 Mon Nov 7 17:25:18 1994 Bill Cox (bill@cirdan.cygnus.com)
14238
14239 * build-all.mk: Add Ericsson targets to sun4 and solaris
14240 hosts. Add BNR's sun4 target to solaris host, so their
14241 build-from-source will be tested in-house first.
14242
14243 Sat Nov 5 18:43:30 1994 Jason Merrill (jason@phydeaux.cygnus.com)
14244
14245 * Makefile.in (LIBCFLAGS): New variable.
14246 (CFLAGS_FOR_TARGET): Ditto.
14247 (LIBCFLAGS_FOR_TARGET): Ditto.
14248 (LIBCXXFLAGS): Ditto.
14249 (CXXFLAGS_FOR_TARGET): Ditto.
14250 (LIBCXXFLAGS_FOR_TARGET): Ditto.
14251 (BASE_FLAGS_TO_PASS): Pass them.
14252 (EXTRA_TARGET_FLAGS): Ditto.
14253
14254 * configure.in: Support --enable-shared.
14255
14256 Sat Nov 5 15:44:00 1994 Per Bothner <bothner@kalessin.cygnus.com>
14257
14258 * configure.in (target_libs): Include libstdc++ again.
14259 * config.guess: Update from FSF (for FreeBSD).
14260
14261 Thu Nov 3 16:32:30 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
14262
14263 * Makefile.in (DEVO_SUPPORT): Include configure.bat and
14264 makeall.bat.
14265 (DISTDOCDIRS): Add `etc'.
14266 (ETC_SUPPORT_PFX): New variable.
14267 (taz): Include anything from etc starting with a word in
14268 ETC_SUPPORT_PFX.
14269
14270 Wed Oct 26 16:19:35 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
14271
14272 * config.sub: Update for recent FSF changes. Remove obsolete
14273 h8300hds entry. Add -windows* and -osx as basic os. Minor
14274 spacing changes.
14275
14276 Thu Oct 20 18:41:56 1994 Per Bothner <bothner@kalessin.cygnus.com>
14277
14278 * configure.in (target_libs): Remove libstdc++ for libg++-2.6.1.
14279
14280 * config.guess: Merge with FSF.
14281 * configure.in: Match on i?86-ncr-sysv4.3, not i?86-ncr-sysv43.
14282
14283 Thu Oct 20 19:26:56 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
14284
14285 * configure: Since the "trap 0" handler will override the exit
14286 status on many systems, only use it for "exit 1", and make it set
14287 a non-zero exit status; reset it before "exit 0". Also, check
14288 exit status of config.sub, and error out if it failed.
14289
14290 Wed Oct 19 18:49:55 1994 Rob Savoye (rob@cygnus.com)
14291
14292 * Makefile.in: (ALL_TARGET_MODULES,INSTALL_TARGET_MODULES) Build
14293 and install libgloss.
14294
14295 Tue Oct 18 15:25:24 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
14296
14297 * Makefile.in (all-binutils): Depend upon all-byacc.
14298
14299 * configure.in: Don't build emacs on Irix 5.
14300
14301 Mon Oct 17 16:22:12 1994 J.T. Conklin (jtc@phishhead.cygnus.com)
14302
14303 * configure.in (*-*-netware*): Add libio.
14304
14305 Thu Oct 13 15:51:20 1994 Jason Merrill (jason@phydeaux.cygnus.com)
14306
14307 * Makefile.in (ALL_TARGET_MODULES): Add libstdc++.
14308 (CHECK_TARGET_MODULES): Ditto.
14309 (INSTALL_TARGET_MODULES): Ditto.
14310 (TARGET_LIBS): Ditto.
14311 (all-libstdc++): Note dependencies.
14312
14313 Thu Oct 13 01:43:08 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
14314
14315 * Makefile.in (BINUTILS_SUPPORT_DIRS): Add gas.
14316
14317 Tue Oct 11 12:12:29 1994 Jason Merrill (jason@phydeaux.cygnus.com)
14318
14319 * Makefile.in (CXXFLAGS): Use -fno-implicit-templates instead of
14320 -fexternal-templates.
14321
14322 * configure.in (target_libs): Add libstdc++.
14323 (noconfigdirs): Add libstdc++ as appropriate.
14324
14325 Thu Oct 6 18:00:54 1994 Per Bothner (bothner@kalessin.cygnus.com)
14326
14327 * config.guess: Update from FSF.
14328
14329 Tue Oct 4 12:05:42 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
14330
14331 * configure: Use ${config_shell} when running ${configsub}.
14332
14333 Mon Oct 3 14:28:34 1994 Doug Evans <dje@canuck.cygnus.com>
14334
14335 * config.sub: No longer recognize h8300h.
14336
14337 Mon Oct 3 12:40:54 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
14338
14339 * config.sub: Remove extraneous differences between config.sub and
14340 gcc/config.sub.
14341
14342 Sat Oct 1 00:23:12 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
14343
14344 * Makefile.in (DISTSTUFFDIRS): Add gas.
14345
14346 Thu Sep 22 19:04:55 1994 Doug Evans (dje@canuck.cygnus.com)
14347
14348 * COPYING.NEWLIB: New file.
14349
14350 Mon Sep 19 18:25:40 1994 Per Bothner (bothner@kalessin.cygnus.com)
14351
14352 * config.guess (HP-UX): Patch from Harlan Stenn
14353 <harlan@landmark.com> to also emit release level.
14354
14355 Wed Sep 7 13:15:25 1994 Jim Wilson (wilson@sphagnum.cygnus.com)
14356
14357 * config.guess (sun4*:SunOS:*:*): Change '-JL' to '_JL'.
14358
14359 Tue Sep 6 23:23:18 1994 Per Bothner (bothner@kalessin.cygnus.com)
14360
14361 * config.sub: Merge nextstep cleanup from FSF.
14362
14363 Mon Sep 5 05:01:30 1994 Ken Raeburn (raeburn@kr-pc.cygnus.com)
14364
14365 * configure.in (arm-*-*): Don't configure ld for this target.
14366
14367 Thu Sep 1 09:35:00 1994 J.T. Conklin (jtc@phishhead.cygnus.com)
14368
14369 * configure.in (*-*-netware): don't configure libg++, libio,
14370 librx, or newlib.
14371
14372 Wed Aug 31 13:52:08 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14373
14374 * configure.in (alpha-dec-osf*): Use osf*, not osf1*. Don't
14375 configure ld--it works, but it doesn't support shared libraries.
14376
14377 Sun Aug 28 18:13:45 1994 Per Bothner (bothner@kalessin.cygnus.com)
14378
14379 * config.guess (*-unknown-freebsd*): Get rid of possible
14380 trailing "(Release)" in version string.
14381 Patch from Paul Richards <paul@isl.cf.ac.uk>.
14382
14383 Sat Aug 27 15:00:49 1994 Per Bothner (bothner@kalessin.cygnus.com)
14384
14385 * config.guess: Fix i486-ncr-sysv43 -> i486-ncr-sysv4.3.
14386 Fix type: *-next-neststep -> *-next-nextstep.
14387
14388 * config.guess: Merge from FSF:
14389
14390 Fri Aug 26 18:45:25 1994 Philippe De Muyter (phdm@info.ucl.ac.be)
14391
14392 * config.guess: Recognize powerpc-ibm-aix3.2.5.
14393
14394 Wed Apr 20 06:36:32 1994 Philippe De Muyter (phdm@info.ucl.ac.be)
14395
14396 * config.guess: Recognize UnixWare 1.1 (UNAME_SYSTEM is SYSTEM_V
14397 instead of UNIX_SV for UnixWare 1.0).
14398
14399 Sat Aug 27 01:56:30 1994 Stu Grossman (grossman@cygnus.com)
14400
14401 * Makefile.in (all-gdb): Add dependencies on all-gcc and all-ld
14402 to make gdb/nlm/* build after the compiler and linker.
14403
14404 Fri Aug 26 14:30:05 1994 Per Bothner (bothner@kalessin.cygnus.com)
14405
14406 * config.guess (netbsd, freebsd, linux): Accept any machine,
14407 not just i[34]86.
14408 (m68k-atari-sysv4): Relocate to match FSF version.
14409
14410 * config.guess: More merges from the FSF:
14411
14412 Add a space before function call or macro invocation.
14413
14414 Tue May 10 16:53:55 1994 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
14415
14416 * config.guess: Add trap cmd to remove dummy.c and dummy when
14417 interrupted.
14418
14419 Wed Apr 20 18:07:13 1994 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
14420
14421 * config.guess (dummy.c): Redirect stderr for `hostinfo' command.
14422 (dummy): Redirect stderr from compilation of dummy.c.
14423
14424 Sat Apr 9 14:59:28 1994 Christian Kranz (kranz@sent5.uni-duisburg.de)
14425
14426 * config.guess: Distinguish between NeXTStep 2.1 and 3.x.
14427
14428 Fri Aug 26 13:42:20 1994 Ken Raeburn (raeburn@kr-laptop.cygnus.com)
14429
14430 * configure: Accept and ignore --cache*, for compatibility with
14431 new autoconf.
14432
14433 Fri Aug 26 13:05:27 1994 Per Bothner (bothner@kalessin.cygnus.com)
14434
14435 * config.guess: Merge from FSF:
14436
14437 Thu Aug 25 20:28:51 1994 Richard Stallman <rms@mole.gnu.ai.mit.edu>
14438
14439 * config.guess (Pyramid*:OSx*:*:*): New case.
14440 (PATH): Add /.attbin at end for finding uname.
14441 (dummy.c): Handle i860-alliant-bsd. Follow whitespace conventions.
14442
14443 Wed Aug 17 18:21:02 1994 Tor Egge (tegge@pvv.unit.no)
14444
14445 * config.guess (M88*:DolphinOS:*:*): New case.
14446
14447 Thu Aug 11 17:00:13 1994 Stan Cox (coxs@dg-rtp.dg.com)
14448
14449 * config.guess (AViiON:dgux:*:*): Use TARGET_BINARY_INTERFACE
14450 to select whether to use ELF or COFF.
14451
14452 Sun Jul 24 16:20:53 1994 Richard Stallman <rms@mole.gnu.ai.mit.edu>
14453
14454 * config.guess: Recognize i860-stardent-sysv and i860-unknown-sysv.
14455
14456 Sun May 1 10:23:10 1994 Richard Stallman (rms@mole.gnu.ai.mit.edu)
14457
14458 * config.guess: Guess the OS version for HPUX.
14459
14460 Tue Mar 1 21:53:03 1994 Karl Heuer (kwzh@hal.gnu.ai.mit.edu)
14461
14462 * config.guess (UNAME_VERSION): Recognize aix3.2.4 and aix3.2.5.
14463
14464 Fri Aug 26 11:19:08 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14465
14466 * configure.in: Recognize --with-headers, --with-libs, and
14467 --without-newlib.
14468 * Makefile.in (all-xiberty): Depend upon all-ld.
14469
14470 Wed Aug 24 12:36:50 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14471
14472 * configure.in: Change i[34]86 to i[345]86.
14473
14474 Mon Aug 22 10:58:33 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14475
14476 * configure (version): A few more tweaks to help message.
14477
14478 Fri Aug 19 12:40:25 1994 Per Bothner (bothner@kalessin.cygnus.com)
14479
14480 * Makefile.in: Remove (for now) librx as a host library,
14481 now that we're building it for target.
14482
14483 Fri Aug 19 10:49:17 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14484
14485 * configure: Fix up help message; from karl@owl.hq.ileaf.com
14486 (Karl Berry).
14487
14488 Tue Aug 16 16:11:08 1994 Per Bothner (bothner@kalessin.cygnus.com)
14489
14490 * configure.in: Also configure librx.
14491
14492 Mon Aug 15 16:51:45 1994 Per Bothner (bothner@kalessin.cygnus.com)
14493
14494 * Makefile.in: Update various rules to reflect that librx
14495 is now needed for libg++.
14496
14497 Fri Aug 12 18:07:21 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14498
14499 * config.sub: Accept mips64orion and mips64orionel as a CPU name.
14500
14501 Mon Aug 8 11:36:17 1994 Stan Shebs (shebs@andros.cygnus.com)
14502
14503 * configure.in: Configure the examples directory.
14504
14505 Thu Aug 4 16:12:36 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14506
14507 * configure: Simplify Jun 2 1994 change.
14508
14509 Wed Aug 3 04:58:16 1994 D. V. Henkel-Wallace (gumby@cygnus.com)
14510
14511 * change CC to /usr/latest/bin/gcc for lynx host builds, since
14512 /bin/gcc isn't good enough to build gcc.
14513
14514 Wed Jul 27 09:07:14 1994 Fred Fish (fnf@cygnus.com)
14515
14516 * Makefile.in (GDB_SUPPORT_FILES): Remove
14517 (setup-dirs-gdb, gdb.tar.gz, make-gdb.tar.gz): Remove old rules.
14518 (gdb.tar.gz): Add new rule to use standard distribution building
14519 mechanism.
14520
14521 Mon Jul 25 11:10:06 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14522
14523 * configure.in: Warn about use of /usr/ucb/cc on Solaris. From
14524 Bill Cox <bill@cygnus.com>.
14525
14526 Sat Jul 23 12:19:46 1994 Per Bothner (bothner@kalessin.cygnus.com)
14527
14528 * config.guess: Recognize ISC. Patch from kwzh@gnu.ai.mit.edu.
14529
14530 Fri Jul 22 17:53:59 1994 Stu Grossman (grossman@cygnus.com)
14531
14532 * configure: Search current dir first in .gdbinit.
14533
14534 Fri Jul 22 11:28:30 1994 Per Bothner (bothner@kalessin.cygnus.com)
14535
14536 * config.sub: Recognize freebsd (merged from gcc config.sub).
14537
14538 Thu Jul 21 14:10:52 1994 Per Bothner (bothner@kalessin.cygnus.com)
14539
14540 * config.sub: Refer to NeXT's operating system as nextstep.
14541
14542 * config.sub (case $basic_machine): Re-order the cases, to match
14543 the order in the FSF version (which is mostly alphabethical).
14544 Merge in some additions and changes from the FSF.
14545
14546 Sat Jul 16 12:03:08 1994 Stan Shebs (shebs@andros.cygnus.com)
14547
14548 * config.guess: Recognize m68k-atari-sysv4 and m88k-harris-csux7.
14549 * config.sub: Recognize cxux7.
14550 * configure.in: Use mh-cxux for m88k-harris-cxux*.
14551
14552 Mon Jul 11 14:37:39 1994 Per Bothner (bothner@kalessin.cygnus.com)
14553
14554 * config.sub: Fix typo powerpc -> powerpc-*.
14555
14556 Sat Jul 9 13:03:43 1994 Michael Tiemann (tiemann@blues.cygnus.com)
14557
14558 * Makefile.in: `all-emacs19' depends on `all-byacc'.
14559
14560 * Makefile.in: Add all-emacs19 and install-emacs19 rules (in
14561 parallel with all-emacs and install-emacs). Top-level command
14562 `make all-emacs19 CC=gcc' now behaves as `make all-emacs CC=gcc'.
14563
14564 Thu Jun 30 16:53:42 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14565
14566 * test-build.mk ($(host)-stamp-stage2-installed): Remove
14567 $(relbindir)/make before doing ``make install'', and use
14568 $(GNU_MAKE) while doing it. Avoids problem on SunOS with
14569 installing over running make binary.
14570 ($(host)-stamp-stage3-installed): Likewise.
14571
14572 Tue Jun 28 13:43:25 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14573
14574 * config.guess: Recognize Mach.
14575
14576 Mon Jun 27 16:41:14 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14577
14578 * configure: Check ${exec_prefixoption}, not ${exec_prefix}, to
14579 see whether --exec-prefix was used.
14580
14581 Sun Jun 26 21:15:54 1994 Per Bothner (bothner@kalessin.cygnus.com)
14582
14583 * README: Explicitly mention libg++/README. (Zoo's idea.)
14584
14585 Tue Jun 21 12:45:55 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14586
14587 * Makefile.in: Add all-librx target similar to all-libproc.
14588
14589 Wed Jun 8 23:11:55 1994 Stu Grossman (grossman@cygnus.com)
14590
14591 * config.guess: Rearrange tests for Alpha-OSF1 to properly deal
14592 with post 1.2 uname bogosity.
14593
14594 Thu Jun 9 00:27:59 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14595
14596 * configure: Remove temporary files on receipt of a signal.
14597
14598 Tue Jun 7 12:06:24 1994 Ian Lance Taylor (ian@cygnus.com)
14599
14600 * configure: If there is a package_makefile_frag, remove
14601 ${subdir}/Makefile.tem after copying it in.
14602
14603 Mon Jun 6 21:35:02 1994 D. V. Henkel-Wallace (gumby@cygnus.com)
14604
14605 * build_all.mk: support rs6000 lynx identifies itself as
14606 rs6000-lynx-lynxos2.2.2. Also, use /usr/cygnus/progressive/bin/gcc
14607 since /bin/gcc is too feeble to compile a modern gcc.
14608
14609 Mon Jun 6 16:06:34 1994 Karen Christiansen (karen@cirdan.cygnus.com)
14610
14611 * brought devo/test-build.mk update-to-date with progressive/
14612 test-build.mk. Add lynx targets and hppa flag info.
14613
14614 Sat Jun 4 17:23:54 1994 Per Bothner (bothner@kalessin.cygnus.com)
14615
14616 * configure.in: Use mh-ncrsvr43. Patch from
14617 Tom McConnell <tmcconne@sedona.intel.com>.
14618
14619 Fri Jun 3 17:47:24 1994 Per Bothner (bothner@kalessin.cygnus.com)
14620
14621 * config.guess (i386-unknown-bsdi): No longer need to
14622 check #if defined(__bsdi__) && defined(__i386__).
14623
14624 Thu Jun 2 18:56:46 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14625
14626 * configure: Set program_transform_nameoption correctly.
14627
14628 Thu Jun 2 10:57:06 1994 Karen Christiansen (karen@cirdan.cygnus.com)
14629
14630 * brought build-all.mk update-to-date with progressive build-all.mk,
14631 added new targets and hppa info.
14632
14633 Thu Jun 2 00:12:44 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14634
14635 * configure: If config.guess result is a prefix of the user
14636 specified target, assume a native build and use the user specified
14637 target as the host alias. Remove SunOS patch suffix removal hack.
14638 * configure.in: Remove SunOS patch suffix removal hack.
14639
14640 * Makefile.in (CROSS_CHECK_MODULES): Remove check-flex, since it's
14641 in NATIVE_CHECK_MODULES.
14642
14643 Wed Jun 1 10:49:41 1994 Bill Cox (bill@rtl.cygnus.com)
14644
14645 * Makefile.in: Rename HOST_ONLY to NATIVE.
14646 * configure: Delete SunOs patch suffix from host_canonical
14647 and build_canonical variables that are prepended to Makefiles.
14648 * configure.in: Add comments for easier maintenance.
14649
14650 Tue May 31 19:39:47 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14651
14652 * Makefile.in: Add all-libproc target similar to all-gui.
14653
14654 Tue May 31 17:16:33 1994 Tom Lord (lord@cygnus.com)
14655
14656 * Makefile.in (CHECK_MODULES): split into
14657 HOST_ONLY_CHECK_MODULES and CROSS_CHECK_MODULES.
14658
14659 Tue May 31 16:36:36 1994 Paul Eggert (eggert@twinsun.com)
14660
14661 * config.guess (i386-unknown-bsdi): New system to guess.
14662
14663 Wed May 25 16:47:10 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14664
14665 * Makefile.in: Add all-gui target (but not yet build by "all").
14666
14667 Thu May 26 08:53:19 1994 Bill Cox (bill@rtl.cygnus.com)
14668
14669 * config.sub: Move deletion of patch suffix from here...
14670 * configure.in: To here, at Ian's suggestion. The top-
14671 level scripts might need to know of a patch level.
14672
14673 Wed May 25 09:15:54 1994 Bill Cox (bill@rtl.cygnus.com)
14674
14675 * config.sub: Strip off patch suffix so rtl is recognized
14676 as a sunos4.1.3 machine, even though it's been patched.
14677
14678 Fri May 20 08:25:49 1994 Steve Chamberlain (sac@deneb.cygnus.com)
14679
14680 * Makefile.in (INSTALL_LAST): Delete.
14681 (INSTALL_DOSREL): New.
14682
14683 Thu May 19 17:12:12 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14684
14685 * configure.in: Use ld for i[34]86-*-sysv4* and sparc-*-solaris2*.
14686 Don't set use_gnu_ld to no for *-*-sysv4; that only controls
14687 whether we pass down --with-gnu-ld anyhow.
14688
14689 Thu May 19 09:29:12 1994 Steve Chamberlain (sac@cygnus.com)
14690
14691 * Makefile.in (INSTALL_LAST): Change operation so it works
14692 on more flavors of make.
14693 * configure.in (go32): Don't build libg++ or libio.
14694
14695 Fri May 13 13:28:34 1994 Steve Chamberlain (sac@cygnus.com)
14696
14697 * Makefile.in (Move HOST_PREFIX_1 and friends up so
14698 they can be overriden by templates.
14699
14700 Sat May 7 16:46:44 1994 Steve Chamberlain (sac@cygnus.com)
14701
14702 * configure.in (target==go32): Don't build gdb.
14703 * dosrel: New directory.
14704
14705 Fri May 6 14:19:25 1994 Steve Chamberlain (sac@cygnus.com)
14706
14707 * configure.in (host==go32): Configure dosrel too.
14708 * Makefile.in (INTALL_TARGET): Call INSTALL_LAST last.
14709 (HOST_CC, HOST_PREFIX, HOST_PREFIX_1): Undefine, they should
14710 be set by incoming names or templates.
14711 (INSTALL_LAST): New rule.
14712
14713 Thu May 5 17:35:05 1994 Stan Shebs (shebs@andros.cygnus.com)
14714
14715 * config.sub (sparclitefrw, sparclitefrwcompat): Don't set the os.
14716
14717 Thu May 5 20:06:45 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
14718
14719 * configure.in (appdirs): New variable. Currently empty, but will
14720 be used in gas distribution. If nonempty, lists a set of
14721 directories at least one of which must get configured, or top
14722 level configuration is considered to have failed.
14723 (rs6000-*-lynxos*): Use new file name.
14724
14725 Thu May 5 13:38:36 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14726
14727 Eliminate XTRAFLAGS.
14728 * Makefile.in (CC_FOR_TARGET): If newlib exists, refer to the
14729 newlib include files using -idirafter, and also use -nostdinc.
14730 (CXX_FOR_TARGET): Likewise.
14731 (XTRAFLAGS): Removed.
14732 (BASE_FLAGS_TO_PASS): Remove XTRAFLAGS_FOR_TARGET.
14733 (EXTRA_HOST_FLAGS): Remove XTRAFLAGS.
14734 (EXTRA_TARGET_FLAGS, EXTRA_GCC_FLAGS): Likewise.
14735 ($(DO_X)): Don't pass down XTRAFLAGS.
14736
14737 Thu May 5 00:16:36 1994 Ken Raeburn (raeburn@kr-pc.cygnus.com)
14738
14739 * configure.in (mips*-dec-bsd*): New target; do build linker.
14740 (mips*-*-bsd*): New target; don't build linker.
14741
14742 Wed May 4 20:10:10 1994 D. V. Henkel-Wallace (gumby@cygnus.com)
14743
14744 * configure.in: support rs6000-*-lynxos* configuration.
14745 support sunos4 as a cross target.
14746
14747 * config.sub: look for lynx*, not lynx since the OS version may
14748 legitimately be part of the name.
14749
14750 Tue May 3 21:48:11 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
14751
14752 * configure.in (i[34]86-*-sco*): Move to be with other i386
14753 targets.
14754 (romp-*-*): New target. Skip various binary utilities.
14755 (vax-*-*): New target. Don't build newlib.
14756 (vax-*-vms): Renamed from *-*-vms. Don't build opcodes or newlib.
14757
14758 Thu Apr 28 15:03:05 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14759
14760 * configure.in: Only set host_makefile_frag if config
14761 directory exists.
14762
14763 Wed Apr 27 12:14:30 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14764
14765 * install.sh: If $dstdir exists, don't check whether each
14766 component does.
14767
14768 Tue Apr 26 18:11:33 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14769
14770 * test-build.mk (HOLES): Add sleep; used by rcs/src/conf.sh.
14771
14772 Mon Apr 25 15:06:34 1994 Stan Shebs (shebs@andros.cygnus.com)
14773
14774 * configure.in (*-*-lynxos*): Don't configure newlib for either
14775 native or cross Lynx.
14776
14777 Sat Apr 16 11:58:16 1994 Doug Evans (dje@canuck.cygnus.com)
14778
14779 * config.sub (sparc64-elf): Fix os.
14780 (z8k): Remove duplicate.
14781
14782 Thu Apr 14 23:33:17 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14783
14784 * Makefile.in (gcc-no-fixedincludes): Touch gcc/include/fixed, not
14785 gcc/stmp-fixproto, to try to prevent fixproto from being run.
14786
14787 Wed Apr 13 15:14:52 1994 Bill Cox (bill@cygnus.com)
14788
14789 * configure: Make file links cleanly even if Lynx fails on
14790 an NFS symlink (at least fail cleanly).
14791
14792 Mon Apr 11 10:58:56 1994 Jim Wilson (wilson@sphagnum.cygnus.com)
14793
14794 * test-build.mk (CC): For mips-sgi-irix4, change -XNh1500 to
14795 -XNh2000.
14796
14797 Sat Apr 9 15:10:45 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14798
14799 * configure: Unknown options are fatal again.
14800
14801 Fri Apr 8 12:01:41 1994 David J. Mackenzie (djm@cygnus.com)
14802
14803 * configure: Ignore --x-includes and --x-libraries, for Autoconf
14804 compatibility.
14805
14806 Thu Apr 7 17:31:43 1994 Doug Evans (dje@canuck.cygnus.com)
14807
14808 * build-all.mk: Add `clean' target.
14809
14810 Wed Apr 6 20:44:56 1994 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
14811
14812 * config.guess: Add SINIX support.
14813 * configure.in: Add mips-*-sysv4* support.
14814
14815 Mon Apr 4 17:41:44 1994 Doug Evans (dje@canuck.cygnus.com)
14816
14817 * build-all.mk: Document all useful targets.
14818 If canonhost is sparc-sun-solaris2.3, change it to sparc-sun-solaris2.
14819 If canonhost is mips-sgi-irix4.0.5H, change it to mips-sgi-irix4.
14820
14821 Thu Mar 31 04:55:57 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14822
14823 * configure: Support --silent, --quiet.
14824
14825 Wed Mar 30 21:37:38 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14826
14827 * configure: Support --disable-FEATURE.
14828
14829 Tue Mar 29 19:15:05 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14830
14831 * config.guess: Recognize NCR running SVR4.3.
14832
14833 Mon Mar 28 14:55:15 1994 Per Bothner (bothner@kalessin.cygnus.com)
14834
14835 * config.guess: Make BSDI generate i386-unknown-bsd386.
14836 Patch from Paul Eggert <eggert@twinsun.com>.
14837
14838 Mon Mar 28 12:54:52 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14839
14840 * configure.in (powerpc-*-aix*): Treat like rs6000-*-*.
14841
14842 Sat Mar 26 11:25:48 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14843
14844 * configure: Make unrecognized options give nonfatal warnings
14845 instead of fatal errors, and pass them to any subdirectory
14846 configures in case they recognize them.
14847 Make --x equivalent to --with-x.
14848
14849 Fri Mar 25 21:52:10 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14850
14851 * configure: Add --enable-* options. Clean up usage message and
14852 some comments.
14853
14854 Thu Mar 24 09:12:53 1994 Doug Evans (dje@canuck.cygnus.com)
14855
14856 * Makefile.in (NM_FOR_TARGET): Build tree version is now nm.new.
14857
14858 Sun Mar 20 11:28:22 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
14859
14860 * configure.in (hppa*-*-*): Enable binutils.
14861
14862 Sat Mar 19 11:50:16 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14863
14864 * config.sub: Recognize cisco.
14865
14866 Fri Mar 18 16:42:32 1994 Jason Merrill (jason@deneb.cygnus.com)
14867
14868 * Makefile.in (CXXFLAGS): Add -fexternal-templates.
14869
14870 Tue Mar 15 11:25:55 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14871
14872 * config.guess: about target *-hitachi-hiuxwe2, don't print more
14873 than one configuration name. Add comment.
14874
14875 Sun Mar 6 23:13:38 1994 Hisashi MINAMINO (minamino@sra.co.jp)
14876
14877 * config.guess: about target *-hitachi-hiuxwe2, fixed
14878 machine guessing order. [Hitachi's CPU_IS_HP_MC68K
14879 macro is incorrect.]
14880
14881 Sun Mar 13 09:10:08 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14882
14883 * Makefile.in (TAGS): Just build TAGS in each subdirectory, rather
14884 than the "make ls" stuff which used to be here.
14885
14886 Fri Mar 11 12:52:39 1994 Per Bothner (bothner@kalessin.cygnus.com)
14887
14888 * config.guess: Recognize i[34]86-unknown-freebsd.
14889 From Shawn M Carey <smcarey@rodan.syr.edu>.
14890
14891 Thu Mar 3 14:24:21 1994 Per Bothner (bothner@kalessin.cygnus.com)
14892
14893 * configure.in (noconfigdirs for alpha): Remove libg++ and libio.
14894
14895 Wed Mar 2 13:28:48 1994 Jim Kingdon (kingdon@deneb.cygnus.com)
14896
14897 * config.guess: Check for ptx.
14898
14899 Mon Feb 28 16:46:50 1994 Kung Hsu (kung@mexican.cygnus.com)
14900
14901 * config.sub: Add os9k checking.
14902
14903 Thu Feb 24 07:09:04 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
14904
14905 * config.guess: Handle OSF1 running on HPPA processors
14906
14907 Fri Feb 18 14:14:00 1994 Ken Raeburn (raeburn@rtl.cygnus.com)
14908
14909 * configure: If subdir configure fails, print out a message with
14910 subdirectory name, in case subdir's configure code didn't identify
14911 itself.
14912
14913 Fri Feb 18 12:50:15 1994 Doug Evans (dje@cygnus.com)
14914
14915 * configure.in: Remove embedded newlines from configdirs.
14916 Avoid mismatches of substrings. Fix matching strings at end
14917 of configdirs.
14918
14919 Fri Feb 11 15:33:33 1994 Stu Grossman (grossman at cygnus.com)
14920
14921 * config.guess: Add Lynx/rs6000 config support.
14922
14923 Tue Feb 8 13:41:09 1994 Ken Raeburn (raeburn@rtl.cygnus.com)
14924
14925 * configure.in (alpha-dec-osf1*, alpha*-*-*): Build gas.
14926
14927 Mon Feb 7 15:42:36 1994 Jeffrey A. Law (law@cygnus.com)
14928
14929 * configure.in (hppa*-*-osf*): Treat this just like most other
14930 PA configurations (eg no binutils or ld).
14931 (hppa*-*-*elf*): These configurations have binutils and ld.
14932
14933 Sun Feb 6 16:35:07 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
14934
14935 * config.sub (hiux): Fix typo. From m-kasahr@sramhc.sra.co.JP.
14936
14937 Sat Feb 5 01:00:33 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14938
14939 * configure.in (rs6000-*-*): Build gas.
14940
14941 Wed Feb 2 13:57:57 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
14942
14943 * Makefile.in: Avoid bug in losing hpux sed.
14944
14945 Wed Feb 2 14:53:05 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14946
14947 * Makefile.in, test-build.mk: Remove MUNCH_NM; it was only needed
14948 for GDB and GDB has been fixed to not need it.
14949
14950 Sun Jan 30 17:58:06 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
14951
14952 * config.guess: Recognize vax hosts.
14953
14954 Fri Jan 28 15:29:38 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
14955
14956 * configure (while loop): Don't use "break 2" inside case
14957 statement -- the case statement isn't an enclosing loop.
14958
14959 Mon Jan 24 18:40:06 1994 Per Bothner (bothner@kalessin.cygnus.com)
14960
14961 * config.guess: Clean up NeXT support, to allow nextstep
14962 on Intel machines. Make OS be nextstep.
14963
14964 Sun Jan 23 18:47:22 1994 Richard Kenner (kenner@vlsi1.ultra.nyu.edu)
14965
14966 * config.guess: Add alternate forms for Convex.
14967
14968 Thu Jan 20 16:13:41 1994 Stu Grossman (grossman at cygnus.com)
14969
14970 * configure: Completely rewrite option processing. Take
14971 advantage of pattern-matching to avoid invoking test frequently.
14972 Also clean up host and target defaulting logic.
14973
14974 Mon Jan 17 15:06:56 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
14975
14976 * Makefile.in: Replace all occurrances of "rootme" with "r" and
14977 "$${rootme}" with "$$r", to increase the likelihood that the do-*
14978 commands (plus user environment) will fit SCO limits.
14979
14980 Thu Jan 6 11:20:57 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14981
14982 * configure.in: Don't issue warnings about directories which are
14983 not being configured if -norecursion is set. Correct test for
14984 --with-gnu-as and --with-gnu-ld to not get confused by substring
14985 matches.
14986
14987 * configure.in: Don't build gas for alpha-dec-osf1*.
14988
14989 Tue Jan 4 17:10:19 1994 Stu Grossman (grossman at cygnus.com)
14990
14991 * configure: Back out Per's change of 12/19/1993. It changes the
14992 behavior of configure in unexpected and confusing ways.
14993
14994 Also, use different delim char when calculating
14995 program_transform_name so that the name can contain slashes.
14996
14997 Sat Jan 1 13:45:31 1994 Rob Savoye (rob@darkstar.cygnus.com)
14998
14999 * configure.in, config.sub: Add support for VSTa micro-kernel.
15000
15001 Sat Dec 25 20:00:47 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
15002
15003 * configure.in: Nuke hacks which were used to get a special
15004 version of GAS for HPPA configurations.
15005
15006 Sun Dec 19 20:40:44 1993 Per Bothner (bothner@kalessin.cygnus.com)
15007
15008 * configure: If only ${target_alias} is given, use that
15009 as the default for ${host_alias}.
15010 * configure: Add missing back-slashes before nested quotes.
15011
15012 Wed Dec 15 18:07:18 1993 david d `zoo' zuhn (zoo@andros.cygnus.com)
15013
15014 * Makefile.in (BASE_FLAGS_TO_PASS): add YACC=$(BISON)
15015
15016 Tue Dec 14 21:25:33 1993 Per Bothner (bothner@cygnus.com)
15017
15018 * config.guess: Recognize some Tektronix configurations.
15019 From Kaveh R. Ghazi <ghazi@noc.rutgers.edu>.
15020
15021 Sat Dec 11 11:18:00 1993 Steve Chamberlain (sac@thepub.cygnus.com)
15022
15023 * config.sub: Match any flavor of SH.
15024
15025 Thu Dec 2 17:16:58 1993 Ken Raeburn (raeburn@cujo.cygnus.com)
15026
15027 * configure.in: Don't try to configure newlib for Alpha.
15028
15029 Thu Dec 2 14:35:54 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
15030
15031 * configure.in: Don't build ld for Irix 5. Don't build gas,
15032 libg++ or libio for any Alpha target.
15033
15034 * configure.in (mips*-sgi-irix5*): New target; use mh-irix5.
15035
15036 Wed Dec 1 17:00:33 1993 Jason Merrill (jason@deneb.cygnus.com)
15037
15038 * Makefile.in (GZIPPROG): Renamed from GZIP, which gzip uses for
15039 default arguments -- so it tried to compress itself.
15040
15041 Tue Nov 30 13:45:15 1993 david d `zoo' zuhn (zoo@andros.cygnus.com)
15042
15043 * configure.in (notsupp): ensure that a space is always at the end
15044 of the configdirs list, since the grep checks for an explicit space
15045
15046 Tue Nov 16 15:04:27 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15047
15048 * configure.in (target i386-sysv4.2): don't build ld, since static
15049 versions of many libraries are not available.
15050
15051 Tue Nov 16 14:28:12 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15052
15053 * config.guess: Recognize Apollos (using environment variables).
15054 * configure.in: Don't configure ld, binutils, or gprof for Apollo.
15055
15056 Thu Nov 11 12:03:50 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15057
15058 * config.guess: Recognize Sony news mips running newsos.
15059
15060 Wed Nov 10 16:57:00 1993 Mark Eichin (eichin@cygnus.com)
15061
15062 * Makefile.in (all-cygnus, build-cygnus): "fi else" needs to be
15063 "fi ; else" for bash.
15064
15065 Tue Nov 9 15:54:01 1993 Mark Eichin (eichin@cygnus.com)
15066
15067 * Makefile.in (BASE_FLAGS_TO_PASS): pass SHELL.
15068
15069 Fri Nov 5 08:07:27 1993 D. V. Henkel-Wallace (gumby@blues.cygnus.com)
15070
15071 * config.sub: accept unixware as an alias for svr4.2.
15072 Fix some inconsistancies with the gcc version.
15073
15074 Fri Nov 5 15:14:12 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15075
15076 * Makefile.in (DISTDOCDIRS): Add gdb.
15077
15078 Fri Nov 5 11:59:42 1993 Per Bothner (bothner@kalessin.cygnus.com)
15079
15080 * Makefile.in (DISTDOCDIRS): Add libg++ and libio.
15081
15082 Fri Nov 5 10:35:05 1993 Ken Raeburn (raeburn@rover.cygnus.com)
15083
15084 * Makefile.in (taz): Only build "info" in DISTDOCDIRS.
15085 (DISTDOCDIRS): Don't assume libg++ and gdb folks necessarily want
15086 this now.
15087
15088 Thu Nov 4 18:58:23 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15089
15090 * config.sub: Accept hiux* as an OS name.
15091
15092 * Makefile.in: Change RUNTEST_FLAGS back to RUNTESTFLAGS per
15093 etc/make-stds.texi. The underscore came from gcc, and dje now
15094 agrees that RUNTESTFLAGS is the correct name.
15095
15096 Thu Nov 4 10:49:01 1993 Per Bothner (bothner@kalessin.cygnus.com)
15097
15098 * install.sh: Remove 'set -e'. It makes any conditionals
15099 in the script useless.
15100
15101 * config.guess: Automatically recognize arm-acorn-riscix
15102 Patch from Richard Earnshaw (rwe11@cl.cam.ac.uk).
15103
15104 Thu Nov 04 08:08:04 1993 Jeffrey Wheat (cassidy@cygnus.com)
15105
15106 * Makefile.in: Change RUNTESTFLAGS to RUNTEST_FLAGS
15107
15108 Wed Nov 3 22:09:46 1993 Ken Raeburn (raeburn@rtl.cygnus.com)
15109
15110 * Makefile.in (DISTDOCDIRS): New variable.
15111 (taz): Edit local Makefile.in sooner, instead of proto-toplev
15112 Makefile.in later. Build "info" and "dvi" in DISTDOCDIRS.
15113
15114 Wed Nov 3 21:31:52 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15115
15116 * configure.in (hppa target): check the source directory for the
15117 pagas sub-directory
15118
15119 Wed Nov 3 11:12:22 1993 Doug Evans (dje@canuck.cygnus.com)
15120
15121 * config.sub: Allow -aout* and -elf*.
15122
15123 Wed Nov 3 11:08:33 1993 Ken Raeburn (raeburn@rtl.cygnus.com)
15124
15125 * configure.in: Don't build ld on i386-solaris2, same as for
15126 sparc-solaris2.
15127
15128 Tue Nov 2 14:21:25 1993 Per Bothner (bothner@kalessin.cygnus.com)
15129
15130 * Makefile.in (taz): Add texinfo/lgpl.texinfo (for libg++).
15131
15132 Tue Nov 2 13:38:30 1993 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
15133
15134 * configure.in: Configure gdb for alpha.
15135
15136 Mon Nov 1 10:42:54 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15137
15138 * Makefile.in (CXXFLAGS): Add -O.
15139
15140 Wed Oct 27 10:45:06 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15141
15142 * config.guess: added support for DG Aviion
15143
15144 Tue Oct 26 14:37:37 1993 Ken Raeburn (raeburn@rover.cygnus.com)
15145
15146 * configure.in: Produce warning message for subdirectories not
15147 configurable for this host/target combination. Don't try to
15148 configure gdb for vms.
15149
15150 Mon Oct 25 11:22:15 1993 Ken Raeburn (raeburn@rover.cygnus.com)
15151
15152 * Makefile.in (taz): Replace "byacc" with "bison -y" in the
15153 appropriate files before making "diststuff".
15154 (DISTBISONFILES): New var: list of files to be edited.
15155 (DISTSTUFFDIRS): Add binutils.
15156
15157 Fri Oct 22 20:32:15 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15158
15159 * config.sub: also handle mipsel and mips64el (for little endian mips)
15160
15161 Fri Oct 22 07:59:20 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15162
15163 * configure.in: Add * to end of all OS names.
15164
15165 Thu Oct 21 11:38:28 1993 Stan Shebs (shebs@rtl.cygnus.com)
15166
15167 * configure.in: Build newlib for LynxOS native.
15168
15169 Wed Oct 20 09:56:12 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15170
15171 * config.guess: Add support for delta 88k running SVR3.
15172
15173 * configure.in: Add comment about HP compiler vs. emacs.
15174
15175 Tue Oct 19 16:02:22 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15176
15177 * configure.in: don't build ld on solaris2 (not a viable option
15178 due to bugs in getpwnam & getpwuid)
15179
15180 Tue Oct 19 15:13:56 1993 Ken Raeburn (raeburn@rtl.cygnus.com)
15181
15182 * configure.in: Accept alpha-dec-osf1*, not just -osf1, since
15183 config.guess will produce a full version number.
15184
15185 Tue Oct 19 15:58:01 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
15186
15187 * configure.in: Build linker and binutils for alpha-dec-osf1.
15188
15189 Tue Oct 19 11:41:55 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15190
15191 * Makefile.in: Remove -O from CXXFLAGS for consistency with CFLAGS,
15192 and gdb/testsuite/Makefile.in.
15193
15194 Sat Oct 9 18:39:07 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15195
15196 * configure.in: recognize mips*- instead of mips-
15197
15198 Fri Oct 8 14:15:39 1993 Ken Raeburn (raeburn@cygnus.com)
15199
15200 * config.sub: Accept linux*coff and linux*elf as operating
15201 systems.
15202
15203 Thu Oct 7 12:57:19 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
15204
15205 * config.sub: Recognize mips64, and mips3 as an alias for it.
15206
15207 Wed Oct 6 13:54:21 1993 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
15208
15209 * configure.in: Remove alpha-dec-osf*, no longer necessary now that
15210 gdb knows how to handle OSF/1 shared libraries.
15211
15212 Tue Oct 5 11:55:04 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15213
15214 * configure.in: Recognize hppa*-*-hiux* (currently synonym for hpux).
15215 * config.guess: Recognize Hitachi's HIUX.
15216 * config.sub: Recognize h3050r* and hppahitachi.
15217 Remove redundant cases for hp9k[23]*.
15218
15219 Mon Oct 4 16:15:09 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15220
15221 * configure.in: default to '--with-gnu-as' and '--with-gnu-ld'
15222 if gas and ld are in the source tree and are in ${configdirs}.
15223 If ${use_gnu_as} or ${use_gnu_ld} are 'no', then don't set the
15224 --with options (but still pass them down on the command line,
15225 if they were explicitly specified).
15226
15227 Fri Sep 24 19:11:13 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15228
15229 * configure: substitute SHELL value in Makefile.in with
15230 ${CONFIG_SHELL}
15231
15232 Thu Sep 23 18:05:13 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
15233
15234 * configure.in: Build gas, ld, and binutils for *-*-sysv4* and
15235 *-*-solaris2* targets.
15236
15237 Sun Sep 19 17:01:41 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15238
15239 * Makefile.in: define M4, and pass it down to sub-makes;
15240 all-autoconf now depends on all-m4
15241
15242 Sat Sep 18 00:38:23 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15243
15244 * Makefile.in ({AR,RANLIB}_FOR_TARGET): make contingent on
15245 presence of {ar,ranlib} instead of a configured directory
15246
15247 Wed Sep 15 08:41:44 1993 Jim Kingdon (kingdon@cirdan.cygnus.com)
15248
15249 * config.guess: Accept 34?? as well as 33?? for NCR.
15250
15251 Mon Sep 13 12:28:43 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15252
15253 * configure.in: grab mt-hppa for HPPA targets; use 'gas ' instead
15254 of 'gas' in sed commands, since 'gash' is now in the tree as well.
15255
15256 Fri Sep 10 11:23:52 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15257
15258 * configure: grab values for $(CC) and $(CXX) from the
15259 environment, so that someone can do "CC=gcc configure; make" and
15260 have it work right (matching the way that autoconf works now)
15261
15262 * configure.in, Makefile.in: add support for gash, the tcl
15263 interface to Galaxy
15264
15265 * config.guess: add NetBSD variants (hp300, x86)
15266
15267 Thu Sep 9 16:48:52 1993 Jason Merrill (jason@deneb.cygnus.com)
15268
15269 * install.sh: Support -d option (in the manner of SunOS 4 install,
15270 as it is more deterministic than that of GNU install)
15271 (chmodcmd): Set file to mode 755 by default (should also do default
15272 chgrp and chown, but I don't feel like dealing with that now)
15273
15274 Tue Sep 7 11:59:39 1993 Doug Evans (dje@canuck.cygnus.com)
15275
15276 * config.sub: Remove h8300hhms alias.
15277
15278 Tue Aug 31 11:00:09 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15279
15280 * configure.in: Match *-*-solaris2* not *-sun-solaris2*.
15281
15282 Mon Aug 30 18:29:10 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15283
15284 * Makefile.in (gcc-no-fixedincludes): touch stmp-fixproto as well
15285 as stmp-fixinc
15286
15287 Wed Aug 25 16:35:59 1993 K. Richard Pixley (rich@sendai.cygnus.com)
15288
15289 * config.sub: recognize m88110-bug-coff.
15290
15291 Tue Aug 24 10:23:24 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15292
15293 * Makefile.in (all-libio): all dependencies on the toolchain used
15294 to build this (gcc, gas, ld, etc)
15295
15296 Fri Aug 20 17:24:24 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15297
15298 * config.guess: Deal with OSF/1 1.3 on alpha.
15299
15300 Thu Aug 19 11:43:04 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15301
15302 * install.sh: add some 'else true' clauses for portability
15303
15304 * configure.in: don't build libio for h8[35]00-*-* targets
15305
15306 Tue Aug 17 19:02:31 1993 Per Bothner (bothner@kalessin.cygnus.com)
15307
15308 * Makefile.in: Add support for new libio.
15309
15310 Sun Aug 15 20:48:55 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15311
15312 * install.sh: If one command fails, don't try the rest. Don't try
15313 to remove $dsttmp (via trap) unless we have already created it.
15314 If $src doesn't exist, detect it and exit with an error.
15315
15316 * config.guess: Recognize BSD on hp300.
15317
15318 Wed Aug 11 18:35:13 1993 Per Bothner (bothner@kalessin.cygnus.com)
15319
15320 * config.guess: Map (9000/[34]??:HP-UX:*:*) to m68k-hp-hpux.
15321 Bug report from "Hamish (H.I.) Macdonald" <hamish@bnr.ca>.
15322
15323 Wed Aug 11 15:37:51 1993 Jason Merrill (jason@deneb.cygnus.com)
15324
15325 * Makefile.in (all-send-pr): depends on all-prms
15326
15327 Wed Aug 11 16:56:03 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15328
15329 * config.guess: Fix typo (9000/8??:4.3bsd -> 9000/7??:4.3bsd).
15330
15331 Fri Aug 6 14:45:02 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
15332
15333 * config.guess: From michael@mercury.cs.mun.ca (Michael Rendell):
15334 Added test for mips-mips-riscos5.
15335
15336 Thu Aug 5 15:45:08 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15337
15338 * configure.in: use mh-hp300 for 68k HP hosts
15339
15340 Mon Aug 2 11:56:53 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15341
15342 * configure: add support for CONFIG_SHELL, so that you can use
15343 some alternate shell for evaluating configure scripts
15344
15345 Sun Aug 1 11:36:27 1993 Fred Fish (fnf@deneb.cygnus.com)
15346
15347 * Makefile.in (make-gdb.tar.gz): Sed bug reporting address
15348 in configure script to bug-gdb@prep.ai.mit.edu when building
15349 distribution archive.
15350 * Makefile.in (COMPRESS): Remove def.
15351 * Makefile.in (gdb.tar.gz, make-gdb.tar.gz): Renamed from
15352 gdb.tar.Z and make-gdb.tar.Z respectively.
15353 * Makefile.in (make-gdb.tar.gz): Now only build gzip'd archive.
15354 * Makefile.in (make-gdb.tar.gz): Minor changes to move closer
15355 to convergence with 'taz' target in Makefile.in.
15356
15357 Fri Jul 30 12:34:57 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15358
15359 * install.sh (dsttmp): use trap to ensure that tmp files go
15360 away on error conditions
15361
15362 Wed Jul 28 11:57:36 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15363
15364 * Makefile.in (BASE_FLAGS_TO_PASS): remove LOADLIBES
15365
15366 Tue Jul 27 12:43:40 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15367
15368 * Makefile.in (install-dirs): Deal with a prefix like /gnu;
15369 its parent is '/' not ''.
15370
15371 * Makefile.in (DEVO_SUPPORT): Add comments about ChangeLog.
15372
15373 Fri Jul 23 09:53:37 1993 Jason Merrill (jason@wahini.cygnus.com)
15374
15375 * configure: if ${newsrcdir}/configure doesn't exist, don't assume
15376 that ${newsrcdir}/configure.in does.
15377
15378 Tue Jul 20 11:28:50 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15379
15380 * test-build.mk: support for CONFIG_SHELL
15381
15382 Mon Jul 19 21:54:46 1993 Fred Fish (fnf@deneb.cygnus.com)
15383
15384 * config.sub (netware): Add as a basic system type.
15385
15386 Wed Jul 14 12:03:11 1993 K. Richard Pixley (rich@sendai.cygnus.com)
15387
15388 * Makefile.in (Makefile): depend on configure.in. Also drop the
15389 $(srcdir)/ from the dependency on Makefile.in.
15390
15391 Tue Jul 13 20:10:58 1993 Doug Evans (dje@canuck.cygnus.com)
15392
15393 * config.sub: Recognize h8300hhms as h8300h-hitachi-hms.
15394 (h8300hhms is temporary until multi-libraries are implemented).
15395 * configure.in: Handle h8300h too.
15396
15397 Sun Jul 11 17:35:27 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15398
15399 * config.guess: Recognize dpx/2 as m68k-bull-sysv3.
15400
15401 Thu Jul 8 18:26:12 1993 John Gilmore (gnu@cygnus.com)
15402
15403 * configure: Remove extraneous output when guessing host type.
15404 * config.guess: Remove extraneous output when guessing using C
15405 compiler rather than uname, or when guessing fails.
15406
15407 Wed Jul 7 17:58:14 1993 david d `zoo' zuhn (zoo at rtl.cygnus.com)
15408
15409 * Makefile.in: remove all.cross and install.cross targets
15410
15411 * configure: remove CROSS=-DCROSS_COMPILE and ALL=all.cross
15412 definitions
15413
15414 Tue Jul 6 10:39:44 1993 Steve Chamberlain (sac@phydeaux.cygnus.com)
15415
15416 * configure.in (target sh): Build gprof.
15417
15418 Thu Jul 1 16:52:56 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15419
15420 * config.sub: change -solaris to -solaris2
15421
15422 Thu Jul 1 15:46:16 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15423
15424 * configure.in: Use config/mh-riscos for mips-*-sysv*.
15425
15426 Wed Jun 30 09:31:58 1993 Ian Lance Taylor (ian@cygnus.com)
15427
15428 * configure: Correct error message for missing Makefile.in to
15429 print correct directory.
15430
15431 Tue Jun 29 13:52:16 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15432
15433 * install.sh: kludge around 386BSD shell bug
15434
15435 Tue Jun 29 13:06:49 1993 Per Bothner (bothner@rtl.cygnus.com)
15436
15437 * config.guess: Recognize NeXT.
15438 * config.guess: Recognize i486-ncr-sysv4.
15439 * Makefile.in (taz): rm $(TOOL)-$$VER before linking.
15440
15441 Tue Jun 29 12:50:57 1993 Ian Lance Taylor (ian@cygnus.com)
15442
15443 * Makefile.in (MAKEINFOFLAGS): New variable.
15444 (FLAGS_TO_PASS): Pass MAKEINFO as MAKEINFO MAKEINFOFLAGS.
15445 * build-all.mk, test-build.mk: Pass down --no-split as
15446 MAKEINFOFLAGS when hosted on DOS. Compile DOS hosted without -g.
15447
15448 Thu Jun 24 13:39:11 1993 Per Bothner (bothner@rtl.cygnus.com)
15449
15450 * Makefile.in (DEVO_SUPPORT): Add COPYING COPYING.LIB install.sh.
15451
15452 Wed Jun 23 12:59:21 1993 Per Bothner (bothner@rtl.cygnus.com)
15453
15454 * Makefile.in (libg++.tar.z): New rule.
15455 * Makefile.in (taz): Replace 'configure -rm' by 'make distclean'.
15456 * Makefile.in (taz): Only do a single chmod.
15457
15458 Fri Jun 18 12:03:10 1993 david d `zoo' zuhn (zoo at majipoor.cygnus.com)
15459
15460 * install.sh: don't use dirname anymore (replaced with sed usage)
15461
15462 Thu Jun 17 18:43:42 1993 Fred Fish (fnf@cygnus.com)
15463
15464 * Makefile.in: Change extension for gzip'd files from '.z' to
15465 '.gz' per new FSF standard usage.
15466
15467 Thu Jun 17 16:58:50 1993 david d `zoo' zuhn (zoo at majipoor.cygnus.com)
15468
15469 * configure: put quotes around the final value of program_transform_name
15470
15471 Tue Jun 15 16:48:51 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15472
15473 * Makefile.in: new install.sh support; update install-info rules
15474
15475 Wed Jun 9 12:31:34 1993 Ian Lance Taylor (ian@cygnus.com)
15476
15477 * configure.in: Build diff for crosses, but not for go32 host.
15478
15479 * configure.in: Build gprof only for native, and don't build it
15480 for mips-*-*, rs6000-*-*, or i[34]86-*-sco*.
15481
15482 Mon Jun 7 13:12:11 1993 david d `zoo' zuhn (zoo at deneb.cygnus.com)
15483
15484 * configure.in: don't build gas,ld,binutils on for *-*-sysv4
15485
15486 Mon Jun 7 11:40:11 1993 Brendan Kehoe (brendan@lisa.cygnus.com)
15487
15488 * configure.in (host_tools): Add prms.
15489
15490 Fri Jun 4 13:30:42 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15491
15492 * Makefile.in: install gcc, do installation of $(INSTALL_MODULES)
15493 with $(FLAGS_TO_PASS) on the command line
15494
15495 * config.sub: Recognize lynx and lynxos
15496
15497 Fri Jun 4 10:59:56 1993 Ian Lance Taylor (ian@cygnus.com)
15498
15499 * config.sub: Accept -ecoff*, not just -ecoff.
15500
15501 Thu Jun 3 17:38:54 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15502
15503 * Makefile.in (taz): Use .gz suffix instead of .z.
15504 (binutils.tar.gz, gas+binutils.tar.gz, gas.tar.gz): Fixed target
15505 names.
15506
15507 Thu Jun 3 00:27:06 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15508
15509 * Makefile.in (vault-install): add an 'else true' (for Ultrix)
15510
15511 Wed Jun 2 18:19:16 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15512
15513 * Makefile.in (install-no-fixedincludes): install gcc last, so
15514 that rebuilds that might happen during 'make install' don't get
15515 bogus gcc include files
15516
15517 Wed Jun 2 16:14:10 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15518
15519 Change from Utah for HPPA support:
15520 * config.guess: Recognize hppa1.x-hp-bsd.
15521
15522 Wed Jun 2 11:53:33 1993 Per Bothner (bothner@rtl.cygnus.com)
15523
15524 * config.guess: Add support for Motorola Delta 68k, up to r3v7.
15525 Patch from pot@fly.cnuce.cnr.it (Francesco Potorti`).
15526
15527 Tue Jun 1 17:48:42 1993 Rob Savoye (rob at darkstar.cygnus.com)
15528
15529 * config.sub: Add support for rom68k and bug boot monitors.
15530
15531 Mon May 31 09:36:37 1993 Jim Kingdon (kingdon@cygnus.com)
15532
15533 * Makefile.in: Make all-opcodes depend on all-bfd.
15534
15535 Thu May 27 08:05:31 1993 Ian Lance Taylor (ian@cygnus.com)
15536
15537 * config.guess: Added special check for i[34]86-univel-sysv4*.
15538
15539 Wed May 26 16:33:40 1993 Ian Lance Taylor (ian@cygnus.com)
15540
15541 * config.guess: For i[34]86-unknown-sysv4 use UNAME_MACHINE for
15542 the processor rather than assuming i486.
15543
15544 Wed May 26 09:40:18 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15545
15546 * config.guess: Recognize SunOS6 as Solaris3.
15547
15548 Tue May 25 23:03:11 1993 Per Bothner (bothner@cygnus.com)
15549
15550 * config.guess: Fix typo. Avoid #elif (not in K&R 1).
15551 Recognize SunOS 5.* only (and not [6-9].*) as being Solaris2.
15552
15553 Tue May 25 12:44:18 1993 Ian Lance Taylor (ian@cygnus.com)
15554
15555 * build-all.mk (all-cross): New target for Canadian Cross.
15556 Added Q2 go32 targets.
15557 * test-build.mk: Configure go32 cross sparclite-aout and
15558 mips-idt-ecoff -with-gnu-ld. Moved build binary directory from
15559 PARTIAL_HOLE_DIRS to BUILD_HOLES_DIRS.
15560
15561 Mon May 24 15:30:06 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15562
15563 * configure.in: fix Alpha GDB typo; also, don't build DejaGnu for
15564 GO32 hosted toolchains
15565
15566 Mon May 24 14:18:41 1993 Rob Savoye (rob at darkstar.cygnus.com)
15567
15568 * configure: change so "-exec-prefix" gets passed down rather
15569 than "-exec_prefix" so autoconf generated Makefiles get the
15570 exec_prefix set right.
15571
15572 Fri May 21 10:42:25 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15573
15574 * config.guess: get the Solaris2 minor version number
15575
15576 * Makefile.in: add standards.texi and make-stds.texi to ETC_SUPPORT
15577
15578 Fri May 21 06:20:52 1993 Brendan Kehoe (brendan@lisa.cygnus.com)
15579
15580 * config.guess: Recognize some Sequent platforms.
15581
15582 Thu May 20 14:33:48 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15583
15584 * Makefile.in: added the vault-install target
15585
15586 * configure.in: actually use the Sun3 makefile fragment that's in
15587 config, also added the release dir to configdirs
15588
15589 Thu May 20 14:19:18 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15590
15591 * Makefile.in (taz): Fix modes on stuff in $(TOOL) dir also.
15592
15593 Tue May 18 20:26:41 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15594
15595 * configure.in: remove some program from Alpha targetted toolchains
15596
15597 Tue May 18 15:23:19 1993 Ken Raeburn (raeburn@cygnus.com)
15598
15599 * Makefile.in (DISTSTUFFDIRS): Renamed from PROTODIRS. Add ld and
15600 gprof.
15601 (taz): Run "make diststuff" in those directories instead of "make
15602 proto-dir". Look for "VERSION=" only at start of line in subdir
15603 Makefile. Use "gzip -9" for compression.
15604 (TEXINFO_SUPPORT, DIST_SUPPORT, BINUTILS_SUPPORT_DIRS): New vars.
15605 (binutils.tar.z): New target.
15606
15607 Mon May 17 17:01:15 1993 Ken Raeburn (raeburn@deneb.cygnus.com)
15608
15609 * Makefile.in (taz): Include gpl.texinfo.
15610
15611 Fri May 14 06:48:38 1993 Ken Raeburn (raeburn@deneb.cygnus.com)
15612
15613 * Makefile.in (setup-dirs): Merged into "taz" target.
15614 (taz): Only do `proto-dir' stuff if a directory is actually needed
15615 for this target.
15616
15617 Wed May 12 13:09:44 1993 Ian Lance Taylor (ian@cygnus.com)
15618
15619 * Makefile.in (MUNCH_NM): New variable, defined to be $(NM).
15620 (FLAGS_TO_PASS): Pass down MUNCH_NM.
15621 (HOST_CC, HOST_PREFIX, HOST_PREFIX_1): New variables.
15622 (EXTRA_GCC_FLAGS): Pass down HOST_* variables.
15623 (gcc-no-fixedincludes): Correct for current gcc Makefile.
15624
15625 Tue May 11 10:14:25 1993 Fred Fish (fnf@cygnus.com)
15626
15627 * Makefile.in (make-gdb.tar.Z): Add configure, config.guess,
15628 config.sub, and move-if-change to gdb testsuite distribution
15629 archive, so the testsuite can be extracted, configured, and
15630 run separately from the gdb distribution. Blow away the Chill
15631 tests that require a Chill compiled executable, since GNU Chill
15632 is not yet publically available.
15633
15634 Mon May 10 17:22:26 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15635
15636 * test-build.mk: set environment variables in a single command,
15637 instead of a list of assignments and exports
15638
15639 * config.guess: recognize Alpha/OSF1 systems
15640
15641 Mon May 10 14:55:51 1993 K. Richard Pixley (rich@rtl.cygnus.com)
15642
15643 * configure: Change help message to prefer --options rather than
15644 -options.
15645
15646 Mon May 10 05:58:35 1993 Ken Raeburn (raeburn@kr-pc.cygnus.com)
15647
15648 * config.sub: Convergent Tech. "miniframe" uses m68010, sez
15649 zippy@ecst.csuchico.edu.
15650 * config.guess: Recognize miniframe.
15651
15652 Sun May 9 17:47:57 1993 Rob Savoye (rob at darkstar.cygnus.com)
15653
15654 * Makefile.in: Use srcroot to find runtest rather than rootme.
15655 Pass RUNTESTFLAGS and EXPECT down in BASE_FLAGS_TO_PASS.
15656
15657 Fri May 7 14:55:59 1993 Ian Lance Taylor (ian@cygnus.com)
15658
15659 * test-build.mk: Extensive additions to support building on a
15660 machine other than the host.
15661
15662 Wed May 5 08:35:04 1993 Ken Raeburn (raeburn@deneb.cygnus.com)
15663
15664 * configure (tooldir): Fix for i386-aix again.
15665
15666 Mon May 3 19:00:27 1993 Per Bothner (bothner@cygnus.com)
15667
15668 * configure, Makefile.in: Change definition of $(tooldir)
15669 to match the FSF.
15670
15671 Fri Apr 30 15:55:21 1993 Fred Fish (fnf@cygnus.com)
15672
15673 * config.guess: Recognize i[34]86/SVR4.
15674
15675 Fri Apr 30 15:52:46 1993 Steve Chamberlain (sac@thepub.cygnus.com)
15676
15677 * Makefile.in (all-gdb): gdb depends on sim.
15678
15679 Thu Apr 29 23:30:48 1993 Fred Fish (fnf@cygnus.com)
15680
15681 * Makefile.in (gdb.tar.Z): Make prototype gdb testsuite directory
15682 at the same time we make the prototype gdb directory.
15683 * Makefile.in (make-gdb.tar.Z): Make the testsuite distribution
15684 files at the same time as the gdb base release distribution.
15685
15686 Thu Apr 29 12:50:37 1993 Ian Lance Taylor (ian@cygnus.com)
15687
15688 * Makefile.in (check): Use individual check targets rather than
15689 DO_X rule.
15690 (check-gcc): Added.
15691
15692 Thu Apr 29 09:50:07 1993 Jim Kingdon (kingdon@cygnus.com)
15693
15694 * config.sub: Use sysv3.2 not sysv32 for canonical OS
15695 for System V release 3.2.
15696
15697 Thu Apr 29 10:33:22 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15698
15699 * config.sub: Recognize hppaosf.
15700 * configure.in: Do configure ld/binutils/gas for it.
15701
15702 Tue Apr 27 06:25:34 1993 Ken Raeburn (raeburn@kr-pc.cygnus.com)
15703
15704 * configure (tooldir): Alter syntax used to set this, for systems
15705 where "\$" isn't handled right, like i386-aix.
15706
15707 Thu Apr 22 08:17:35 1993 Ian Lance Taylor (ian@cygnus.com)
15708
15709 * configure: Pass program-transform-name, not
15710 program_transform_name, to recursive configures.
15711
15712 Thu Apr 22 02:58:21 1993 Ken Raeburn (raeburn@cygnus.com)
15713
15714 * Makefile.in (gas+binutils.tar.z): New rule for building snapshots
15715 of gas+ld+binutils.
15716
15717 Mon Apr 19 17:41:30 1993 Per Bothner (bothner@cygnus.com)
15718
15719 * config.guess: Recognize AIX3.2 as distinct from 3.1.
15720
15721 Sat Apr 17 17:19:50 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15722
15723 * configure.in: rename m88k-motorola-m88kbcs to m88k-motorola-sysv
15724
15725 Tue Apr 13 16:52:16 1993 Brendan Kehoe (brendan@lisa.cygnus.com)
15726
15727 * Makefile.in (PRMS): Set back to all-prms.
15728
15729 Sat Apr 10 12:04:07 1993 Ian Lance Taylor (ian@cygnus.com)
15730
15731 * test-build.mk: Pass -with-gnu-as for known MIPS native and MIPS
15732 targets, rather than for MIPS hosts.
15733
15734 Fri Apr 9 13:51:06 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15735
15736 * configure.in: add comment for --with-x default values
15737
15738 * config.guess: handle Motorola Delta88 box for SVR3 and SVR4.
15739
15740 * Makefile.in: add check-* targets for each of the directories in
15741 the tree. Add a definition of RUNTEST that will use the one we
15742 just built, if it exists. Pass this down via FLAGS_TO_PASS.
15743
15744 Thu Apr 8 09:21:30 1993 Ian Lance Taylor (ian@cygnus.com)
15745
15746 * configure.in: Removed obsolete references to bfd_target and
15747 target_makefile_frag.
15748
15749 * build-all.mk: Set assorted targets for Q2.
15750 * config.sub: Recognize z8k-sim and h8300-hms.
15751 * test-build.mk: Really don't pass host to configure.
15752 (HOLES): Added uname.
15753
15754 Wed Apr 7 15:48:19 1993 Ian Lance Taylor (ian@cygnus.com)
15755
15756 * configure: Handle an empty program-prefix, program-suffix or
15757 program-transform-name correctly.
15758
15759 Tue Apr 6 13:48:41 1993 Ian Lance Taylor (ian@cygnus.com)
15760
15761 * build-all.mk: -G 8 no longer required for MIPS targets.
15762 * test-build.mk: Don't pass host argument to configure; make it
15763 guess.
15764
15765 Tue Apr 6 10:36:53 1993 Fred Fish (fnf@cygnus.com)
15766
15767 * Makefile.in (gdb.tar.Z): Fix for building gzip'd distribution.
15768 * Makefile.in (COMPRESS): New macro, like GZIP.
15769
15770 Fri Apr 2 09:02:31 1993 Ian Lance Taylor (ian@cygnus.com)
15771
15772 * test-build.mk: Use -with-gnu-as for mips-sgi-irix4 as well.
15773
15774 * build-all.mk: Set GCC to gcc -O -G 8 for MIPS targets, since gcc
15775 with gas currently defaults to -G 0.
15776
15777 Thu Apr 1 08:25:42 1993 Ian Lance Taylor (ian@cygnus.com)
15778
15779 * Makefile.in (all-flex): flex depends on byacc.
15780
15781 * build-all.mk: If host not specified, use config.guess. Pass TAG
15782 to test-build.mk as RELEASE_TAG.
15783 * test-build.mk (configargs): New variable containing arguments to
15784 pass to configure. Set to -with-gnu-as on mips-dec-ultrix.
15785 (FLAGS_TO_PASS): Pass down RELEASE_TAG.
15786
15787 * config.guess: Use /bin/uname when checking -X argument on SCO,
15788 to avoid invoking GNU uname which doesn't understand -X.
15789
15790 * test-build.mk: Don't use /usr/unsupported/bin/as on AIX.
15791
15792 * configure.in: Build gas for mips-*-*.
15793
15794 Wed Mar 31 21:20:58 1993 K. Richard Pixley (rich@rtl.cygnus.com)
15795
15796 * Makefile.in (all.normal): insert missing backslash.
15797
15798 Wed Mar 31 12:31:56 1993 Ian Lance Taylor (ian@cygnus.com)
15799
15800 * build-all.mk: Bump -XNh value to 1500 to match gcc requirements.
15801
15802 * Makefile.in: Complete overhaul to merge many almost identical
15803 targets.
15804
15805 Tue Mar 30 20:17:01 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15806
15807 * Makefile.in (setup-dirs-gdb): Renamed from setup-dirs.
15808 (gdb.tar.Z): Adjusted.
15809
15810 * Makefile.in (setup-dirs, taz): New targets; should be general
15811 enough to adapt for gdb sometime. Build only .z file.
15812 (gas.tar.z): New target.
15813
15814 Tue Mar 30 10:03:09 1993 Ian Lance Taylor (ian@cygnus.com)
15815
15816 * build-all.mk: Use CC=cc -Xs on Solaris.
15817
15818 Thu Mar 25 15:14:30 1993 Fred Fish (fnf@cygnus.com)
15819
15820 * Makefile.in: Incorporate changes suggested by wilson@cygnus.com
15821 for handling BISON for FSF releases.
15822
15823 Thu Mar 25 06:19:48 1993 Ken Raeburn (raeburn@kr-pc.cygnus.com)
15824
15825 * configure: Actually implement the change zoo just documented.
15826
15827 Wed Mar 24 13:02:44 1993 david d `zoo' zuhn (zoo at poseidon.cygnus.com)
15828
15829 * configure: when using config.guess, only set target_alias when
15830 it's not already been set (ie, on the command line)
15831
15832 Mon Mar 22 23:07:39 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15833
15834 * Makefile.in: add installcheck target, set PRMS to install-prms
15835
15836 Sun Mar 21 16:46:12 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15837
15838 * configure: add support for package_makefile_fragment, handle the
15839 case where a directory has a configure.in file but no Makefile.in
15840 more gracefully (with an actual understandable error message, even);
15841 add support for --without (and add this to the usage message); also
15842 explicitly add a --host=${host_alias} to the command line when
15843 config.guess is used
15844
15845 Sun Mar 21 12:11:58 1993 Jim Wilson (wilson@sphagnum.cygnus.com)
15846
15847 * configure: Must use both --host and --target in recursive calls.
15848
15849 Thu Mar 18 12:31:35 1993 Ian Lance Taylor (ian@cygnus.com)
15850
15851 * Makefile.in: Change deja-gnu to dejagnu.
15852
15853 Mon Mar 15 15:44:35 1993 Ian Lance Taylor (ian@cygnus.com)
15854
15855 * configure.in (h8300-*-*, h8500-*-*): Don't build libg++.
15856
15857 Fri Mar 12 18:30:14 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15858
15859 * configure.in: canonicalize all instances to *-*-solaris2*,
15860 also strip out a number of tools to not build for go32 host
15861
15862 Wed Mar 10 12:08:27 1993 K. Richard Pixley (rich@rtl.cygnus.com)
15863
15864 * config.guess: add GPL.
15865
15866 * Makefile.in, config.guess, config.sub, configure: bump
15867 copyrights to 93.
15868
15869 Wed Mar 10 07:12:48 1993 Ian Lance Taylor (ian@cygnus.com)
15870
15871 * Makefile.in (do-info): Removed obsolete check for existence of
15872 localenv file.
15873
15874 * Makefile.in (MAKEOVERRIDES): Define to be empty.
15875
15876 Wed Mar 10 03:11:56 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15877
15878 * Makefile.in: a couple of 'else true' for decstation,
15879 support for TclX
15880
15881 * configure.in: configure tclX too; don't remove Tk on RS/6000 anymore
15882
15883 Tue Mar 9 16:06:12 1993 K. Richard Pixley (rich@cygnus.com)
15884
15885 * Makefile.in (setup-dirs): change invocation of make to $(MAKE).
15886
15887 Mon Mar 8 14:52:11 1993 Ken Raeburn (raeburn@cambridge)
15888
15889 * config.guess: Recognize i386-ibm-aix (PS/2).
15890 * configure.in: Use config/mh-aix386 file for it.
15891
15892 Mon Mar 8 11:12:43 1993 Ian Lance Taylor (ian@cygnus.com)
15893
15894 * Makefile.in (GCC_FOR_TARGET): Eliminated definition; use
15895 CC_FOR_TARGET instead.
15896 (BASE_FLAGS_TO_PASS): Pass GCC_FOR_TARGET=$(CC_FOR_TARGET).
15897
15898 Wed Mar 3 16:00:28 1993 Steve Chamberlain (sac@ok.cygnus.com)
15899
15900 * Makefile.in: Add sim to list of directories sent with gdb
15901
15902 Wed Mar 3 11:42:39 1993 Ken Raeburn (raeburn@cygnus.com)
15903
15904 * configure.in: Put back mips-dec-bsd* case.
15905
15906 Tue Mar 2 21:15:58 1993 Fred Fish (fnf@cygnus.com)
15907
15908 (Ultrix 2.2 support from Michael Rendell <michael@mercury.cs.mun.ca>)
15909 * configure.in (vax-*-ultrix2*): Add Ultrix 2.2 triplet.
15910 * config.guess: Change 'VAX*:ULTRIX:*:*' to 'VAX*:ULTRIX*:*:*'.
15911
15912 Tue Mar 2 18:11:03 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15913
15914 * configure.in: remove no-op mips-dec-bsd* in "case $target"
15915
15916 * Makefile.in (dir.info): only run gen-info-dir if it exists,
15917 (install-info): install dir.info only if it exists,
15918 (all-expect, install-expect): pass along X11_FLAGS_TO_PASS
15919
15920 Tue Mar 2 09:01:30 1993 Ken Raeburn (raeburn@cygnus.com)
15921
15922 * configure.in: For vms target, skip bfd, ld, binutils. Do build
15923 gas for mips-dec-bsd.
15924
15925 Tue Mar 2 08:35:24 1993 Ian Lance Taylor (ian@cygnus.com)
15926
15927 * configure (makesrcdir): If ${srcdir} is relative and not ".",
15928 and ${subdir} is not ".", set makesrcdir based on ${invsubdir}.
15929
15930 Tue Feb 23 14:18:28 1993 Mike Werner (mtw@poseidon.cygnus.com)
15931
15932 * configure.in: Added "dejagnu" to hosttools list.
15933
15934 Mon Feb 22 23:28:38 1993 Per Bothner (bothner@rtl.cygnus.com)
15935
15936 * config.sub, configure.in, config.guess: Add support
15937 for Bosx, an AIX variant from Bull.
15938 Patches from F.Pierresteguy@frcl.bull.fr.
15939
15940 Sun Feb 21 11:15:22 1993 Mike Werner (mtw@poseidon.cygnus.com)
15941
15942 * devo/dejagnu: Initial creation of devo/dejagnu.
15943 Migrated dejagnu testcases and support files for testing software
15944 tools to reside as subdirectories, currently called "testsuite",
15945 within the directory of the software tool. Migrated all programs,
15946 support libraries, etc. beloging to dejagnu proper from
15947 devo/deja-gnu to devo/dejagnu. These files were moved "as is"
15948 with no modifications. The changes to these files which will
15949 allow them to configure, build, and execute properly will be made
15950 in a future update.
15951
15952 Fri Feb 19 20:19:39 1993 Brendan Kehoe (brendan@lisa.cygnus.com)
15953
15954 * Makefile.in: Change send_pr to send-pr.
15955 * configure.in: Likewise.
15956 * send_pr: Renamed directory to send-pr.
15957
15958 Fri Feb 19 19:00:13 1993 Per Bothner (bothner@cygnus.com)
15959
15960 * Makefile.in: Add some extra semi-colons (needed if SHELL=bash).
15961
15962 Fri Feb 19 00:59:33 1993 John Gilmore (gnu@cygnus.com)
15963
15964 * README: Update for gdb-4.8 release.
15965 * Makefile.in (gdb.tar.Z): Add texinfo/tex3patch. Build
15966 gdb-xxx.tar.z (gzip'd) file also.
15967
15968 Thu Feb 18 09:16:17 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15969
15970 * Makefile.in: make all-diff depend on all-libiberty
15971
15972 Tue Feb 16 16:06:31 1993 K. Richard Pixley (rich@cygnus.com)
15973
15974 * config.guess: add vax-ultrix in the spirit of mips-ultrix.
15975
15976 Tue Feb 16 05:57:15 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15977
15978 * configure.in, Makefile.in: add hello, tar, gzip, recode, indent
15979
15980 Tue Feb 16 00:58:20 1993 John Gilmore (gnu@cygnus.com)
15981
15982 * Makefile.in (DEVO_SUPPORT): Remove etc directory
15983 (ETC_SUPPORT): Only add the files GDB wants from etc/.
15984 (gdb.tar.Z): Use ETC_SUPPORT. Use byacc when building the file.
15985
15986 Thu Feb 11 20:14:28 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15987
15988 * Makefile.in: makeinfo binary is in a new location
15989
15990 Tue Feb 9 12:42:27 1993 Ian Lance Taylor (ian@cygnus.com)
15991
15992 * config.sub: Accept -ecoff as an OS.
15993
15994 * Makefile.in: Various changes to eliminate a level of make
15995 recursion and reduce the required command line length.
15996 (BASE_FLAGS_TO_PASS): New variable holding flags passed to all
15997 sub-makes.
15998 (EXTRA_HOST_FLAGS, EXTRA_TARGET_FLAGS, EXTRA_GCC_FLAGS): New
15999 variables holding settings for specific sub-makes.
16000 (FLAGS_TO_PASS, TARGET_FLAGS_TO_PASS, GCC_FLAGS_TO_PASS): Rewrote
16001 in terms of BASE_FLAGS_TO_PASS.
16002 (TARGET_LIBS): New variable listing directories which use
16003 TARGET_FLAGS_TO_PASS.
16004 (subdir_do): Eliminated.
16005 (do-*): New set of targets to replace subdir_do.
16006 (various): All targets which used subdir_do now depend on do-*.
16007 (local-clean): Renamed from do_clean.
16008 (local-distclean): New target, dependency of distclean and
16009 realclean.
16010 (install-info): Don't create directories. Depend on dir.info
16011 rather than calling make recursively.
16012 (install-dir.info): Eliminated.
16013 (install-info-dirs): Create all info directories here.
16014 (dir.info): Depend upon do-install-info.
16015
16016 * test-build.mk (HOLES): Added false.
16017
16018 Sat Feb 6 14:05:09 1993 Per Bothner (bothner@rtl.cygnus.com)
16019
16020 * config.guess: Recognize BSDI and BSDJ (Jolitz 386bsd).
16021
16022 Thu Feb 4 20:49:18 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16023
16024 * Makefile.in (info): remove dependency on all-texinfo. The
16025 problem was really in texinfo/C, not at this level.
16026
16027 Thu Feb 4 13:38:41 1993 Ian Lance Taylor (ian@cygnus.com)
16028
16029 * Makefile.in (info): Added dependency on all-texinfo (PR 2112).
16030
16031 Thu Feb 4 01:50:53 1993 John Gilmore (gnu@cygnus.com)
16032
16033 * Makefile.in (make-gdb.tar.Z): Change BISON to 'bison -y' for
16034 GDB releases.
16035
16036 Wed Feb 3 17:22:16 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
16037
16038 * configure: Include srcdir in message about target of link not
16039 being found. Don't convert `-' to `_' in `with' options being
16040 passed to subdirs.
16041
16042 Tue Feb 2 18:57:59 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16043
16044 * configure.in: add uudecode to host_tools
16045
16046 * Makefile.in: added {all,install}-uudecode targets, added them to
16047 the appropriate lists
16048
16049 Tue Feb 2 11:45:53 1993 Ian Lance Taylor (ian@cygnus.com)
16050
16051 * Makefile.in (all-gcc): Added dependency on all-gas.
16052
16053 * configure.in (mips-*-*): Build ld and binutils.
16054
16055 Mon Feb 1 12:35:41 1993 K. Richard Pixley (rich@rtl.cygnus.com)
16056
16057 * configure: check return code from mkdir, print error message and
16058 exit on failure.
16059
16060 Sat Jan 30 16:40:28 1993 John Gilmore (gnu@cygnus.com)
16061
16062 * Makefile.in (make-gdb.tar.Z): New location for texinfo.tex.
16063
16064 Thu Jan 28 15:09:59 1993 Ian Lance Taylor (ian@cygnus.com)
16065
16066 * test-build.mk (HOLES): Added tar, cpio and uudecode.
16067
16068 Wed Jan 27 16:50:32 1993 Jim Wilson (wilson@sphagnum.cygnus.com)
16069
16070 * config.sub (h8500): Recognize this as a cpu type.
16071
16072 Sat Jan 23 20:32:01 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16073
16074 * configure: source directory missing is no longer a warning
16075
16076 * configure.in: recognize irix[34]* instead of irix[34]
16077
16078 * Makefile.in: define and pass down X11_LIB
16079
16080 Sat Jan 23 13:49:40 1993 Per Bothner (bothner@cygnus.com)
16081
16082 * guess-systype: Renamed to ...
16083 * config.guess: ... by popular request.
16084 * configure.in, Makefile.in: Update accordingly.
16085
16086 Thu Jan 21 12:20:55 1993 Per Bothner (bothner@cygnus.com)
16087
16088 * guess-systype: Patches from John Eaton <jwe@che.utexas.edu>:
16089 + Add Convex, Cray/Unicos, and Encore/Multimax support.
16090 + Execute ./dummy instead of assuming . is in PATH.
16091
16092 Tue Jan 19 17:18:06 1993 Per Bothner (bothner@cygnus.com)
16093
16094 * guess-systype: New shell script. Attempts to guess the
16095 canonical host name of the executing host.
16096 Only a few hosts are supported so far.
16097 * configure: Call guess-systype if no host is specified.
16098
16099 Tue Jan 19 08:26:07 1993 Ian Lance Taylor (ian@cygnus.com)
16100
16101 * Makefile.in (gcc-no-fixedincludes): Made to work with current
16102 gcc Makefile.
16103
16104
16105 Fri Jan 15 10:27:02 1993 Ian Lance Taylor (ian@cygnus.com)
16106
16107 * Makefile.in (GCC_FLAGS_TO_PASS): New variable.
16108 (all-gcc, install-gcc, subdir_do): Use it.
16109
16110 Wed Jan 13 17:06:45 1993 Jim Wilson (wilson@sphagnum.cygnus.com)
16111
16112 * Makefile.in: Rename uninstalled gcc driver from gcc to xgcc.
16113
16114 Wed Jan 6 20:29:16 1993 Mike Werner (mtw@rtl.cygnus.com)
16115
16116 * Makefile.in: Removed explicit setting of SUBDIRS. SUBDIRS is now
16117 set exclusively by configure, using configure.in .
16118
16119 Wed Jan 6 13:44:11 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16120
16121 * test-build.mk: set $PATH for all builds
16122
16123 * Makefile.in: pass TARGET_FLAGS_TO_PASS for xiberty and libm
16124
16125 Wed Jan 6 11:02:10 1993 Fred Fish (fnf@cygnus.com)
16126
16127 * Makefile.in (GCC_FOR_TARGET): Supply a default that matches
16128 the one used in gcc/Makefile.in, so that a null expansion doesn't
16129 override the one needed to build gcc with a native cc.
16130
16131
16132 Tue Jan 5 07:55:12 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
16133
16134 * configure: Accept -with arguments.
16135
16136 Sun Jan 3 15:15:09 1993 Steve Chamberlain (sac@thepub.cygnus.com)
16137
16138 * Makefile.in: added h8300sim
16139
16140 Tue Dec 29 15:06:00 1992 Ian Lance Taylor (ian@cygnus.com)
16141
16142 * build-all.mk: If canonhost is i386-unknown-sco3.2v4, change it
16143 to i386-sco3.2v4. Set TARGETS and CFLAGS for i386-sco3.2v4.
16144 (all-cygnus, native, build-cygnus): Make
16145 $(canonhost)-stamp-3stage-done, not $(host)....
16146 * test-build.mk (stamp-3stage-compared): Use tail +10c for
16147 i386-sco3.2v4. Added else true to if command.
16148
16149 Mon Dec 28 12:08:56 1992 Ken Raeburn (raeburn@cygnus.com)
16150
16151 * config.sub: (from FSF) Sequent uses a BSD-like OS.
16152
16153 Mon Dec 28 08:32:06 1992 Minh Tran-Le (mtranle@paris.intellicorp.com)
16154
16155 * configure.in (i[34]86-*-isc*): added; uses mh-sysv.
16156
16157 Thu Dec 24 17:26:24 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16158
16159 * configure.in: don't remove binutils from Solaris builds
16160
16161 Thu Dec 24 14:08:38 1992 david d`zoo' zuhn (zoo@cygnus.com)
16162
16163 * Makefile.in: get rid of earlier definitions for *clean,
16164 also handle the recursive info rule better
16165
16166 Thu Dec 24 12:40:21 1992 Per Bothner (bothner@rtl.cygnus.com)
16167
16168 * Makefile.in (mostlyclean, distclean, realclean): Fix to
16169 do more-or-less the right thing.
16170
16171 Wed Dec 16 10:25:31 1992 Ian Lance Taylor (ian@cygnus.com)
16172
16173 * Makefile.in: Add lines defining CC and CXX, and use CXX rather
16174 than gcc in definitions of CXX_FOR_BUILD and CXX_FOR_TARGET.
16175
16176 Tue Dec 15 00:34:32 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16177
16178 * Makefile.in: change all $(host_cpu)-$(host_vendor)-$(host_os) to
16179 $(host_canonical).
16180
16181 * configure.in: split the configdirs list into 4 categories (native
16182 v. cross, library v. tool) and handle the cross-only and native-
16183 only in more reasonable (and correct!) way.
16184
16185 Mon Dec 14 17:04:22 1992 Stu Grossman (grossman at cygnus.com)
16186
16187 * configure.in (hppa*-*-*): Don't remove bfd and gdb from
16188 configdirs anymore.
16189
16190 Sun Dec 13 00:37:26 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16191
16192 * Makefile.in: extensive cleanup:: removed all of the explicit
16193 clean-* targets, collapsed many wrappers around subdir_do into
16194 one, added additional targets to satisfy standards.texi, deleted
16195 some old targets, some changes for consistency
16196
16197 Fri Dec 11 20:18:02 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16198
16199 * configure.in: handle some programs as cross-only, and others as
16200 native only
16201
16202 * test-build.mk: handle partial holes in a more generic manner
16203
16204 * Makefile.in: m4 depends on libiberty
16205
16206 Thu Dec 3 21:52:11 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16207
16208 * configure.in: add m4, textutils, fileutils, sed, shellutils,
16209 time, wdiff, and find to configdirs
16210
16211 * Makefile.in: all, clean, and install rules for the new programs
16212 added to configure.in
16213
16214 Mon Nov 30 14:54:34 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16215
16216 * configure.in: use mh-sun for all *-sun-* hosts
16217
16218 Fri Nov 27 18:35:54 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16219
16220 * Makefile.in: define flags for X11 include files and library file
16221 locations, pass them down to the programs that need this info
16222
16223 * build-all.mk: added a 'native' target, to 3stage the native toolchain
16224
16225 Sun Nov 22 18:59:13 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16226
16227 * configure.in: start building libg++ for HP-UX targets
16228
16229 Wed Nov 18 19:33:11 1992 John Gilmore (gnu@cygnus.com)
16230
16231 * README: Update references to files moved into etc/.
16232
16233 Sun Nov 15 09:36:08 1992 Fred Fish (fnf@cygnus.com)
16234
16235 * config.sub (i386sol2, i486sol2): i[34]86-unknown-solaris2.
16236 * configure.in (i[34]86-*-solaris2*): Use config/mh-sysv4.
16237
16238 Thu Nov 12 08:50:42 1992 Ian Lance Taylor (ian@cygnus.com)
16239
16240 * configure: accept dash as well as underscore in long option
16241 names for FSF compatibility.
16242
16243 Wed Nov 11 08:04:37 1992 Ian Lance Taylor (ian@cygnus.com)
16244
16245 * config.sub: added -sco3.2v4 support from FSF.
16246
16247 Sun Nov 8 21:14:30 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16248
16249 * configure.in: expand the section that adds or removes
16250 directories from the list of programs to build, to handle native
16251 vs. cross in addition to host v. native
16252
16253 Sat Nov 7 18:52:27 1992 Per Bothner (bothner@rtl.cygnus.com)
16254
16255 * Makefile.in: Replace C++ in macro names with CXX.
16256 This is less likely to break ...
16257
16258 Sat Nov 7 15:16:58 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16259
16260 * test-build.mk: add -w to GNU_MAKE
16261
16262 Fri Nov 6 23:10:37 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16263
16264 * config.sub: remove 'sparc'-->'sparc-sun' default transformation,
16265 add 'sparc' to list of recognized cpus. This needed to make
16266 'sparc-aout' expand to 'sparc-unknown-aout' instead of 'sparc-sun-aout'.
16267 Delete some redundant ose68 variants. Recognize -wrs as an os,
16268 then changes that into $CPU-wrs-vxworks.
16269
16270 * configure.in: remove most references to gdbtest, regularize
16271 target based program removal
16272
16273 * test-build.mk: import from p3 tree (many fixes and changes)
16274
16275 Fri Nov 6 20:59:00 1992 david d `zoo' zuhn (zoo@cygnus.com)
16276
16277 * Makefile.in: added rules to handle tcl, tk, and expect
16278
16279 * configure.in: handle those directories if they exist
16280
16281 Thu Nov 5 14:35:41 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16282
16283 * config.sub: removed bogus hppabsd and hppahpux names, since
16284 "hppa" is not a valid cpu (hppa1.1 or hppa1.0 are, though)
16285
16286 Thu Oct 29 00:12:41 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16287
16288 * Makefile.in: all-gcc now depends on all-binutils. all-libg++
16289 depends upon all-xiberty
16290
16291 * Makefile.in: changes from p3, including:
16292
16293 Thu Oct 8 15:00:17 1992 Ian Lance Taylor (ian@cygnus.com)
16294
16295 * Makefile.in (XTRAFLAGS): include newlib directories if
16296 newlib/Makefile exists, rather than if host != target.
16297
16298 Fri Sep 25 13:41:52 1992 Ian Lance Taylor (ian@cygnus.com)
16299
16300 * Makefile.in: added -nostdinc to XTRAFLAGS if we are using gcc
16301 from the same source tree and not building a cross-compiler. This
16302 matters for the libg++ configuration if reconfiguring a tree that
16303 has already been installed.
16304
16305 Thu Sep 10 10:35:51 1992 Ian Lance Taylor (ian@cygnus.com)
16306
16307 * Makefile.in: added -I for newlib/targ-include to XTRAFLAGS, to
16308 pick up the machine and system specific header files.
16309
16310 * Makefile.in: added AS_FOR_TARGET, passed down in
16311 TARGET_FLAGS_TO_PASS. Added CC_FOR_BUILD, which is intended to be
16312 the C compiler to use to create programs which are run in the
16313 build environment, set it to default to $(CC), and passed it down
16314 in FLAGS_TO_PASS and TARGET_FLAGS_TO_PASS.
16315
16316 Mon Sep 7 22:34:42 1992 Ian Lance Taylor (ian@cirdan.cygnus.com)
16317
16318 * Makefile.in: add $(host) = $(target) tests back to *_FOR_TARGET.
16319 We need them for unusual native builds, like systems without
16320 ranlib.
16321
16322 * configure: also define $(host_canonical) and
16323 $(target_canonical), which are the full, canonical names for the
16324 given host and target
16325
16326 Sun Nov 1 16:38:17 1992 Per Bothner (bothner@cygnus.com)
16327
16328 * Makefile.in: Added separate definitions for C++.
16329
16330 Fri Oct 30 11:37:52 1992 Fred Fish (fnf@cygnus.com)
16331
16332 * configure.in (configdirs): Add deja-gnu.
16333
16334 Fri Oct 23 00:39:18 1992 John Gilmore (gnu@cygnus.com)
16335
16336 * README: Update for configure.texi and gdb-4.7 release.
16337
16338 Wed Oct 21 21:54:27 1992 John Gilmore (gnu@cygnus.com)
16339
16340 * Makefile.in: Move "all" target to top of file.
16341 Previously, first target was ".PHONY" which caused BSD4.4 make
16342 to build .PHONY when make was run without arguments.
16343
16344 Mon Oct 19 01:17:54 1992 John Gilmore (gnu@cygnus.com)
16345
16346 * Makefile.in: Add COPYING.LIB to GDB releases, now that there's
16347 Library-copylefted code in libiberty.
16348
16349 Tue Oct 13 01:22:32 1992 John Gilmore (gnu@cygnus.com)
16350
16351 * config.sub: Replace m68kmote with plain old m68k.
16352
16353 Fri Oct 9 03:14:24 1992 John Gilmore (gnu@cygnus.com)
16354
16355 * Makefile.in: Remove space from blank line, avoid Make complaints.
16356
16357 Thu Oct 8 18:41:45 1992 Ken Raeburn (raeburn@cygnus.com)
16358
16359 * config.sub: Complain if no argument is given. Added support for
16360 386bsd as OS and target alias.
16361
16362 Thu Oct 8 15:07:22 1992 Ian Lance Taylor (ian@cygnus.com)
16363
16364 * Makefile.in (XTRAFLAGS): include newlib directories if
16365 newlib/Makefile exists, rather than if host != target.
16366
16367 Mon Oct 5 03:00:09 1992 Mark Eichin (eichin at tweedledumber.cygnus.com)
16368
16369 * config.sub: recognize sparclite-wrs-vxworks.
16370
16371 * Makefile.in (install-xiberty): added *-xiberty make rules (from
16372 p3.) Added clean-xiberty to clean.
16373
16374 Thu Oct 1 17:59:19 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16375
16376 * configure.in: use *-*-* instead of nested cases for host and target
16377
16378 Tue Sep 29 14:11:18 1992 Ian Lance Taylor (ian@cygnus.com)
16379
16380 * Makefile.in: added -nostdinc to XTRAFLAGS if we are using gcc
16381 from the same source tree and not building a cross-compiler. This
16382 matters for the libg++ configuration if reconfiguring a tree that
16383 has already been installed.
16384
16385 Sep 20 08:53:10 1992 Fred Fish (fnf@cygnus.com)
16386
16387 * config.sub (i486v/i486v4): Merge in from FSF version.
16388
16389 Fri Sep 18 00:32:00 1992 Mark Eichin (eichin@cygnus.com)
16390
16391 * configure: only set PWD if it is already set.
16392
16393 Thu Sep 17 23:05:53 1992 Mark Eichin (eichin@cygnus.com)
16394
16395 * configure: just set PWD=`pwd` at the top, since Ultrix sh
16396 doesn't have unset and all success paths (and most error paths)
16397 out set it anyway. (Note: should change all uses of ${PWD=`pwd`}
16398 to just ${PWD} to avoid confusion.)
16399
16400 Tue Sep 15 16:00:54 1992 Ian Lance Taylor (ian@cygnus.com)
16401
16402 * configure: always set $(tooldir) to $(libdir)/$(target_alias),
16403 even for a native compilation.
16404
16405 Tue Sep 15 02:22:56 1992 John Gilmore (gnu@cygnus.com)
16406
16407 Changes to make the gdb.tar.Z rule work better.
16408
16409 * Makefile.in (GDB_SUPPORT_DIRS): Add opcodes.
16410 (DEVO_SUPPORT): Add configure.texi.
16411 (bfd-ilrt.tar.Z): Remove ancient rule.
16412
16413 Thu Sep 10 10:43:19 1992 Ian Lance Taylor (ian@cygnus.com)
16414
16415 * Makefile.in: added -I for newlib/targ-include to XTRAFLAGS, to
16416 pick up the machine and system specific header files.
16417
16418 * configure.in, config.sub: added new target m68010-adobe-scout,
16419 with alias of adobe68k. Changed configure.in to check for
16420 -scout before -sco* to avoid a false match.
16421
16422 * Makefile.in: added AS_FOR_TARGET, passed down in
16423 TARGET_FLAGS_TO_PASS. Added CC_FOR_BUILD, which is intended to be
16424 the C compiler to use to create programs which are run in the
16425 build environment, set it to default to $(CC), and passed it down
16426 in FLAGS_TO_PASS and TARGET_FLAGS_TO_PASS.
16427
16428 Wed Sep 9 12:21:42 1992 Ian Lance Taylor (ian@cygnus.com)
16429
16430 * Makefile.in: added TARGET_FLAGS_TO_PASS, CC_FOR_TARGET,
16431 AR_FOR_TARGET, RANLIB_FOR_TARGET, NM_FOR_TARGET. Pass
16432 TARGET_FLAGS_TO_PASS, which defines CC, AR, RANLIB and NM as the
16433 FOR_TARGET variants, to newlib and libg++.
16434
16435 Tue Sep 8 17:28:30 1992 Ken Raeburn (raeburn@cambridge.cygnus.com)
16436
16437 * Makefile.in (all-gas, all-gdb): Require all-opcodes to be built
16438 first.
16439
16440 Wed Sep 2 02:50:05 1992 John Gilmore (gnu@cygnus.com)
16441
16442 * config.sub: Accept `elf' as an environment.
16443
16444 Tue Sep 1 15:48:30 1992 Steve Chamberlain (sac@thepub.cygnus.com)
16445
16446 * Makefile.in (all-opcodes): cd into the right directory
16447
16448 Sun Aug 30 21:12:11 1992 Ian Lance Taylor (ian@cygnus.com)
16449
16450 * configure: added -program_transform_name option, used as
16451 argument to sed when installing programs.
16452 configure.texi: added documentation for -program_prefix,
16453 -program_suffix and -program_transform_name.
16454
16455 Thu Aug 27 21:59:44 1992 John Gilmore (gnu@cygnus.com)
16456
16457 * config.sub: Accept i486 where i386 ok.
16458
16459 Thu Aug 27 13:04:42 1992 Brendan Kehoe (brendan@rtl.cygnus.com)
16460
16461 * config.sub: accept we32k
16462
16463 Mon Aug 24 14:05:14 1992 Ian Lance Taylor (ian@cygnus.com)
16464
16465 * config.sub, configure.in: accept OSE68000 and OSE68k.
16466
16467 * Makefile.in: don't create all directories for ``make install'';
16468 let the subdirectories create the ones they need.
16469
16470 Tue Aug 11 23:13:17 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16471
16472 * COPYING: new file, GPL v2
16473
16474 Tue Aug 4 01:12:43 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16475
16476 * Makefile.in: use the new gen-info-dir, which needs a template
16477 argument (which also lives in texinfo)
16478
16479 * configure.texi, standards.texi: fix INFO-DIR-ENTRY
16480
16481 Mon Aug 3 00:34:17 1992 Fred Fish (fnf@cygnus.com)
16482
16483 * config.sub (ncr3000): Change i386 to i486.
16484
16485 Thu Jul 23 00:12:17 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16486
16487 * Makefile.in: add install-rcs, install-grep to
16488 install-no-fixedincludes, removed install-bison and install-libgcc
16489
16490 Tue Jul 21 01:01:50 1992 david d `zoo' zuhn (zoo@cygnus.com)
16491
16492 * configure.in: grab the HPUX makefile fragment if on HPUX
16493
16494 Mon Jul 20 11:02:09 1992 D. V. Henkel-Wallace (gumby@cygnus.com)
16495
16496 * Makefile.in: eradicate bison spoor (ditto libgcc).
16497 configure.in: recognise m68{k,000}-ericsson-OSE.
16498 es1800 is alias for m68k-ericsson-OSE
16499
16500 Sun Jul 19 17:49:02 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16501
16502 * configure.in: rearrange the parts that remove programs from
16503 configdirs, based now on HOST==TARGET or by canonical triple.
16504
16505 Fri Jul 17 22:52:49 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16506
16507 * test-build.mk: recurse explicitly with -f test-build.mk when
16508 appropriate. predicate stage3 and comparison on the existence
16509 of gcc. That is, if gcc isn't around, we aren't three-staging.
16510 On very clean, also remove ...stamp-co. Build in-place before
16511 doing other builds.
16512
16513 Thu Jul 16 18:33:09 1992 Steve Chamberlain (sac@thepub.cygnus.com)
16514
16515 * Makefile.in, configure.in: add tgas
16516
16517 Thu Jul 16 16:05:28 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16518
16519 * Makefile.in: a number of changes merged in from progressive.
16520
16521 * configure.in: add libm.
16522
16523 * .cvsignore: ignore some stuff that comes from test-build.mk.
16524
16525 Tue Jul 7 00:24:52 1992 Fred Fish (fnf@cygnus.com)
16526
16527 * config.sub: Add es1800 (m68k-ericsson-es1800).
16528
16529 Tue Jun 30 20:24:41 1992 D. V. Henkel-Wallace (gumby@cygnus.com)
16530
16531 * configure: Add program_suffix (parallel to program_prefix)
16532 * Makefile.in: adjust directory-creating script for losing decstation
16533
16534 Mon Jun 22 23:43:48 1992 Per Bothner (bothner@cygnus.com)
16535
16536 * configure: Minor $subdir-related fixes.
16537
16538 Mon Jun 22 18:30:26 1992 Steve Chamberlain (sac@thepub.cygnus.com)
16539
16540 * configure: fix various problems with propogating
16541 makefile_target_frag in subdirs.
16542 * configure.in: config libgcc if its there
16543
16544 Fri Jun 19 15:19:40 1992 Stu Grossman (grossman at cygnus.com)
16545
16546 * config.sub: HPPA merge.
16547
16548 Sun Jun 14 10:29:19 1992 John Gilmore (gnu at cygnus.com)
16549
16550 * Makefile.in: Replace all-bison with all-byacc in all
16551 dependency lines for other tools (which now use byacc).
16552
16553 Fri Jun 12 22:21:57 1992 John Gilmore (gnu at cygnus.com)
16554
16555 * config.sub: Add sun4sol2 => sparc-sun-solaris2.
16556
16557 Thu Jun 4 12:07:32 1992 Mark Eichin (eichin@cygnus.com)
16558
16559 * Makefile.in: make gprof rules similar to byacc rules (instead of
16560 vestigal $(unsubdir) that didn't work...)
16561
16562 Thu Jun 4 00:37:05 1992 Per Bothner (bothner@rtl.cygnus.com)
16563
16564 * config.sub: Add support for Linux.
16565 * Makefile.in: Use $(FLAGS_TO_PASS) more consistently
16566 (at least for libg++).
16567
16568 Tue Jun 02 20:03:00 1992 david d `zoo' zuhn (zoo@cygnus.com)
16569
16570 * configure.texi: fix doc for the -nfp option to configure
16571
16572 Tue Jun 2 17:20:52 1992 Michael Tiemann (tiemann@cygnus.com)
16573
16574 * Makefile.in (all-binutils): ar needs flex, so depend on all-flex.
16575
16576 Sun May 31 15:04:08 1992 Mark Eichin (eichin at cygnus.com)
16577
16578 * config.sub: changed [^-]+ to [^-][^-]* so that it works under
16579 Sun sed. (BSD 4.3 sed doesn't handle [^-]+ either.)
16580 * configure.in: added solaris* host_makefile_frag hook.
16581
16582 Sun May 31 01:10:34 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16583
16584 * config.sub: changed recognition of m68000 so that various
16585 m68k types can be specified via m680[01234]0
16586
16587 Sat May 30 21:01:06 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16588
16589 * config.sub (basic_machine): fix sed so that '-foo' isn't
16590 completely substituted out while .+'-foo' loses the '-foo'
16591
16592 Wed May 27 23:18:52 1992 Michael Tiemann (tiemann@rtl.cygnus.com)
16593
16594 * config.sub ($os): Add -aout.
16595
16596 Fri May 22 14:00:02 1992 Per Bothner (bothner@cygnus.com)
16597
16598 * configure: If host_makefile_frag is absolute, don't
16599 prefix ${invsubdir} (relevant to libg++ auto-configure).
16600
16601 Thu May 21 18:00:09 1992 Michael Tiemann (tiemann@rtl.cygnus.com)
16602
16603 * Makefile.in (tooldir): Define it.
16604 (all-ld): Depend on all-flex.
16605
16606 Sun May 10 21:45:59 1992 Per Bothner (bothner@rtl.cygnus.com)
16607
16608 * Makefile.in (check): Fix libg++ special case.
16609
16610 Fri May 8 08:31:41 1992 K. Richard Pixley (rich@cygnus.com)
16611
16612 * configure: do not bury `pwd` into config.status, thus do fewer
16613 pwd's.
16614
16615 * configure: print the "Building in" message only when building in
16616 other than "." AND verbose.
16617
16618 * configure: remove -s, rework -v to better accomodate guested
16619 configures.
16620
16621 * standards.texi: updated to 3 may, fixed librid <-> libdir typo.
16622
16623 Fri May 1 18:00:50 1992 K. Richard Pixley (rich@cygnus.com)
16624
16625 * Makefile.in: macroize flags passed on recursion. remove
16626 fileutils.
16627
16628 Thu Apr 30 08:56:20 1992 K. Richard Pixley (rich@cygnus.com)
16629
16630 * configure: get makesrcdir right for subdirs deeper than 1.
16631
16632 * Makefile.in: pass INSTALL, INSTALL_DATA, INSTALL_PROGRAM on
16633 install.
16634
16635 Fri Apr 24 15:51:51 1992 K. Richard Pixley (rich@cygnus.com)
16636
16637 * Makefile.in: don't print subdir_do or recursion lines.
16638
16639 Fri Apr 24 15:22:04 1992 K. Richard Pixley (rich@cygnus.com)
16640
16641 * standards.texi: added menu item.
16642
16643 * Makefile.in: build and install standards.info.
16644
16645 * standards.texi: new file.
16646
16647 Wed Apr 22 18:06:55 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16648
16649 * configure: test for and move config.status pieces from
16650 ${subdir}/.
16651
16652 Wed Apr 22 14:38:34 1992 Fred Fish (fnf@cygnus.com)
16653
16654 * configure: Test for existance of files before trying to mv
16655 them, to avoid numerous non-existance messages.
16656
16657 Tue Apr 21 12:31:33 1992 K. Richard Pixley (rich@cygnus.com)
16658
16659 * configure: correct final line of config.status.
16660
16661 * configure: patch from eggert. Avoids a protection problem if
16662 the original Makefile.in is read only.
16663
16664 * configure: use move-if-change from gcc to create config.status.
16665 Some makefiles depend on config.status to tell if a directory
16666 has been reconfigured for a different host. This change
16667 prevents those directories from remaking everything in the case
16668 where the reconfig was only intended to rebuild a Makefile.
16669
16670 * configure: test for config.sub with "config.sub sun4" rather
16671 than "config.sub ${host_alias}". Otherwise we can't tell a bad
16672 host alias from a missing config.sub.
16673
16674 Mon Apr 20 18:16:36 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16675
16676 * Makefile.in: explicitly pass CFLAGS on recursion. no longer pass
16677 MINUS_G (this can be done with CFLAGS). Default CFLAGS to -g.
16678
16679 Fri Apr 17 18:27:51 1992 Per Bothner (bothner@cygnus.com)
16680
16681 * configure: mkdir ${subdir} as needed.
16682
16683 Wed Apr 15 17:37:22 1992 K. Richard Pixley (rich@cygnus.com)
16684
16685 * Makefile.in,configure.in: added autoconf.
16686
16687 Wed Apr 15 17:27:34 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16688
16689 * Makefile.in: no longer pass against on recursion.
16690
16691 * Makefile.in: added .NOEXPORT: so that stray makefile_frag
16692 definitions are not inherited.
16693
16694 * configure: correct makesrcdir when subdir is .
16695
16696 Tue Apr 14 11:56:09 1992 Per Bothner (bothner@cygnus.com)
16697
16698 * configure: Add support for 'subdirs' variable, which is
16699 like 'configdirs', except that configure doesn't re-invoke
16700 itself for subdirs, it just creates a Makefile for each subdir.
16701 * configure.texi: Document subdirs.
16702
16703 Mon Apr 13 18:50:16 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16704
16705 * configure.in: added flex to configdirs
16706
16707 Mon Apr 13 18:43:55 1992 K. Richard Pixley (rich@cygnus.com)
16708
16709 * Makefile.in: remove clean-stamps from clean.
16710
16711 Sat Apr 11 03:52:03 1992 John Gilmore (gnu at cygnus.com)
16712
16713 * configure.in: Add gdbtest to configdirs.
16714
16715 Fri Apr 10 23:11:49 1992 Fred Fish (fnf@cygnus.com)
16716
16717 * Makefile.in (MINUS_G): Add macro, default to -g, pass on
16718 to recursive makes.
16719 * configure.in: Recognize new ncr3000 config.
16720
16721 Wed Apr 8 23:08:12 1992 K. Richard Pixley (rich@cygnus.com)
16722
16723 * Makefile.in, configure.in: removed references to gdbm.
16724
16725 Tue Apr 7 16:48:20 1992 Per Bothner (bothner@cygnus.com)
16726
16727 * config.sub: Don't canonicalize os value
16728 newsos* to bsd (readline needs to check for newsos).
16729 (This fix was earlier made Jan 31, but got re-broken.)
16730
16731 Mon Apr 6 14:34:08 1992 Stu Grossman (grossman at cygnus.com)
16732
16733 * configure.in: sco is an os, not a vendor!
16734
16735 * configure: Quote $( better. Keep various shells happy.
16736
16737 Tue Mar 31 16:32:57 1992 K. Richard Pixley (rich@cygnus.com)
16738
16739 * Makefile.in: eliminate stamp-files.
16740
16741 Mon Mar 30 22:20:23 1992 K. Richard Pixley (rich@cygnus.com)
16742
16743 * Makefile.in: add send_pr. remove "force" from .stmp-gprof rule.
16744 Supress echoing of all the "if [ -d ... $(MAKE)" lines.
16745
16746 Wed Mar 25 15:20:04 1992 Stu Grossman (grossman@cygnus.com)
16747
16748 * config.sub: fix iris/iris3.
16749
16750 Wed Mar 25 10:34:19 1992 K. Richard Pixley (rich@cygnus.com)
16751
16752 * configure: re-add -rm.
16753
16754 Tue Mar 24 23:50:16 1992 K. Richard Pixley (rich@cygnus.com)
16755
16756 * Maskefile.in: add .stmp-rcs to all.
16757
16758 * configure.in: remove gas from rs6000 build, use aix host fragment.
16759
16760 Mon Mar 23 19:43:35 1992 K. Richard Pixley (rich@cygnus.com)
16761
16762 * configure: pass down site_option during recursion.
16763
16764 Thu Mar 19 16:49:36 1992 Stu Grossman (grossman at cygnus.com)
16765
16766 * Makefile.in (all.cross): Add .stmp-bfd .stmp-readline.
16767
16768 Wed Mar 18 15:29:33 1992 Mike Stump (mrs@cygnus.com)
16769
16770 * configure: Change exec_prefix so that it really defaults to prefix.
16771
16772 Sat Mar 14 17:20:38 1992 Fred Fish (fnf@cygnus.com)
16773
16774 * Makefile.in, configure.in: Add support for mmalloc library.
16775
16776 Fri Mar 13 18:44:18 1992 K. Richard Pixley (rich@cygnus.com)
16777
16778 * Makefile.in: add stmp dependencies for a few more things.
16779
16780 Thu Mar 12 04:56:24 1992 K. Richard Pixley (rich@cygnus.com)
16781
16782 * configure: adjusted error message on objdir/srcdir configure
16783 collision, per john's suggestion.
16784
16785 * Makefile.in: add libiberty stmp to all and all.cross.
16786
16787 Wed Mar 11 02:07:52 1992 K. Richard Pixley (rich@cygnus.com)
16788
16789 * Makefile.in: remove force dependencies, add grep to all.
16790
16791 Tue Mar 10 21:49:18 1992 K. Richard Pixley (rich@mars.cygnus.com)
16792
16793 * Makefile.in: drop flex. make stamp files work.
16794
16795 * configure: added test for conflicting configuration in srcdir,
16796 remove trailing slashes from srcdir. Otherwise emacs gdb mode
16797 gets cranky. use relative paths for configure and srcdir
16798 whenever possible. Send some error messages to stderr that were
16799 going to stdout.
16800
16801 Tue Mar 10 18:01:55 1992 Per Bothner (bothner@cygnus.com)
16802
16803 * Makefile.in: Fix libg++ rule to check for gcc directory
16804 before using gcc/gcc. Also pass XTRAFLAGS.
16805
16806 Thu Mar 5 21:45:07 1992 K. Richard Pixley (rich@sendai)
16807
16808 * Makefile.in: added stmp-files so that directories aren't polled
16809 when they are already built.
16810
16811 * configure.texi: fixed a node pointer problem.
16812
16813 Thu Mar 5 12:05:58 1992 Stu Grossman (grossman at cygnus.com)
16814
16815 * config.sub configure.in gdb/configure.in
16816 gdb/mips-tdep.c gdb/mipsread.c gdb/procfs.c gdb/signame.h
16817 gdb/tm-irix3.h gdb/tm-mips.h gdb/xm-irix4.h gdb/config/mt-irix3
16818 gdb/config/mh-irix4 texinfo/configure.in: Port to SGI Irix-4.x.
16819
16820 Wed Mar 4 02:57:46 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16821
16822 * configure: -recurring becomes -silent. corrected help message
16823 for -site= option.
16824
16825 * Makefile.in: mkdir $(exec_prefix) and $(tooldir).
16826
16827 Tue Mar 3 14:51:21 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16828
16829 * configure: when building Makefile for crosses, replace
16830 tooldir and program_prefix. default srcdir from location of
16831 config.sub. remove "for host in hosts" and "for target in
16832 targets" loops.
16833
16834 Wed Feb 26 19:48:25 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16835
16836 * Makefile.in: Do not pass bindir or mandir to cvs.
16837
16838 Wed Feb 26 18:04:40 1992 K. Richard Pixley (rich@cygnus.com)
16839
16840 * Makefile.in, configure.in: removed traces of namesubdir,
16841 -subdirs, $(subdir), $(unsubdir), some rcs triggers. Forced
16842 copyrights to '92, changed some from Cygnus to FSF.
16843
16844 * configure.texi: remove most references to multiple hosts,
16845 multiple targets, subdirs, etc.
16846
16847 * configure.man: removed rcsid. reference config.sub not
16848 config.subr.
16849
16850 * Makefile.in: mkdir $(infodir) on install-info.
16851
16852 Wed Feb 19 15:41:13 1992 John Gilmore (gnu at cygnus.com)
16853
16854 * configure.texi: Explain better about .gdbinit and about
16855 the environment that configure.in sections run in.
16856
16857 Fri Feb 7 07:55:00 1992 John Gilmore (gnu at cygnus.com)
16858
16859 * configure.in: Ultrix is only a decstation if it's a MIPS.
16860
16861 Fri Jan 31 21:54:51 1992 John Gilmore (gnu at cygnus.com)
16862
16863 * README: DOC.configure => cfg-paper.texi.
16864
16865 Fri Jan 31 21:48:18 1992 Stu Grossman (grossman at cygnus.com)
16866
16867 * config.sub (near case $os): Don't convert newsos* to bsd!
16868
16869 Fri Jan 31 02:27:32 1992 John Gilmore (gnu at cygnus.com)
16870
16871 * Makefile.in: Reinstall change from gdb-4.3 that reduces
16872 the number of copies of COPYING that go into the GDB tar file.
16873
16874 Thu Jan 30 16:17:30 1992 Stu Grossman (grossman at cygnus.com)
16875
16876 * bfd/configure.in, gdb/config/mh-i386sco,
16877 gdb/config/mt-i386v32, gdb/configure.in, readline/configure.in:
16878 Fix SCO configuration stuff.
16879
16880 Tue Jan 28 23:51:07 1992 Per Bothner (bothner at cygnus.com)
16881
16882 * Makefile.in: For libg++, make sure the -I pointing
16883 to the gcc directory goes *after* all the libg++-local -I flags.
16884 Also, move just-gcc dependency from just-libg++ to all-libg++.
16885
16886 Tue Jan 28 12:56:24 1992 Stu Grossman (grossman at cygnus.com)
16887
16888 * configure: Change -x to -f to keep Ultrix /bin/test happy.
16889
16890 Sat Jan 18 17:45:11 1992 Stu Grossman (grossman at cygnus.com)
16891
16892 * Makefile.in (make-gdb.tar.Z): Remove texinfo targets.
16893
16894 Sat Jan 18 17:03:21 1992 Fred Fish (fnf at cygnus.com)
16895
16896 * config.sub: Add stratus configuration frags. Also
16897 submitted to FSF.
16898
16899 Sat Jan 18 15:35:29 1992 Stu Grossman (grossman at cygnus.com)
16900
16901 * Makefile.in (DEV_SUPPORT): add configure.man.
16902
16903 * config.sub(Decode manufacturer-specific): add -none*.
16904
16905 Fri Jan 17 17:58:05 1992 Stu Grossman (grossman at cygnus.com)
16906
16907 * Makefile.in: remove form feeds to make Sun's make happy.
16908 (DEVO_SUPPORT): DOC.configure => cfg-paper.texi.
16909
16910 Sat Jan 4 16:11:44 1992 John Gilmore (gnu at cygnus.com)
16911
16912 * Makefile.in (AR_FLAGS): Make quieter.
16913
16914 Thu Jan 2 22:57:12 1992 John Gilmore (gnu at cygnus.com)
16915
16916 * configure.in: Add libg++.
16917 * configure: When verbose, don't output the command line at each
16918 level; it will be unremarkably the same as the previous version,
16919 which will be the same as what the user typed.
16920
16921 Fri Dec 27 16:26:47 1991 K. Richard Pixley (rich at cygnus.com)
16922
16923 * configure.in, Makefile.in: fix clean-info, add flex. add
16924 fileutils.
16925
16926 * configure: be less sensitive to spaces in Makefile.in. Do not
16927 look for sources in "..". Doing so breaks subdirectories that
16928 might have their own configure. If a subdir has it's own
16929 configure script, use it.
16930
16931 Thu Dec 26 16:30:26 1991 K. Richard Pixley (rich at cygnus.com)
16932
16933 * cfg-paper.texi: some changes suggested by rms.
16934
16935 Thu Dec 26 10:13:36 1991 Fred Fish (fnf at cygnus.com)
16936
16937 * config.sub: Merge in some small additions from the FSF version,
16938 taken from the gcc distribution, to bring the Cygnus and FSF
16939 versions into closer sync.
16940
16941 Fri Dec 20 11:34:18 1991 Fred Fish (fnf at cygnus.com)
16942
16943 * configure.in: Changed svr4 references to sysv4.
16944
16945 Thu Dec 19 15:54:29 1991 K. Richard Pixley (rich at cygnus.com)
16946
16947 * configure: added -V for version number option.
16948
16949 Wed Dec 18 15:39:34 1991 K. Richard Pixley (rich at cygnus.com)
16950
16951 * DOC.configure, cfg-paper.texi: revised, updated, and texinfo'd.
16952 renamed from DOC.configure to cfg-paper.texi.
16953
16954 Mon Dec 16 23:05:19 1991 K. Richard Pixley (rich at rtl.cygnus.com)
16955
16956 * configure, config.subr, config.sub: config.subr is now
16957 config.sub again.
16958
16959 Fri Dec 13 01:17:06 1991 K. Richard Pixley (rich at cygnus.com)
16960
16961 * configure.texi: new file, in progress.
16962
16963 * Makefile.in: build info file and install the man page for
16964 configure.
16965
16966 * configure.man: new file, first cut.
16967
16968 * configure: find config.subr again now that configuration "none"
16969 has gone. removed all traces of the -ansi option. removed all
16970 traces of the -languages option.
16971
16972 * config.subr: resync from rms.
16973
16974 1991-12-11 K. Richard Pixley (rich at rtl.cygnus.com)
16975
16976 * configure, config.sub, config.subr: merge config.sub into
16977 config.subr, call the result config.subr, remove config.sub, use
16978 config.subr.
16979
16980 * Makefile.in: revised install for dir.info.
16981
16982 1991-12-10 K. Richard Pixley (rich at rtl.cygnus.com)
16983
16984 * configure.in: add decstation host makefile frag.
16985
16986 * Makefile.in: BISON now bison -y again. also install-gcc on
16987 install. clean-gdbm on clean. infodir belongs in datadir.
16988 Make directories for info install. Build dir.info here then
16989 install it.
16990
16991 1991-12-09 K. Richard Pixley (rich at rtl.cygnus.com)
16992
16993 * Makefile.in: fix for bad directory tests.
16994
16995 1991-12-07 K. Richard Pixley (rich at rtl.cygnus.com)
16996
16997 * configure: \{1,2\} appears to be a sysv'ism. Use a different
16998 regexp. -srcdir relative was being handled incorrectly.
16999
17000 * Makefile.in: unwrapped some for loops so that parallel makes
17001 work again and so one can focus one's attention on a particular
17002 package.
17003
17004 1991-12-06 K. Richard Pixley (rich at rtl.cygnus.com)
17005
17006 * configure: added PWD as a stand in for `pwd` (for speed). use
17007 elif wherever possible. make -srcdir work without -objdir.
17008 -objdir= commented out.
17009
17010 1991-12-05 K. Richard Pixley (rich at rtl.cygnus.com)
17011
17012 * configure: +options become --options. -subdirs commented out.
17013 added -host, -datadir. Renamed -destdir to -prefix. Comment in
17014 Makefile now at top of generated Makefile. Removed cvs log
17015 entries. added -srcdir. create .gdbinit only if there is one
17016 in ${srcdir}.
17017
17018 * Makefile.in: idestdir and ddestdir go away. Added copyrights
17019 and shift gpl to v2. Added ChangeLog if it didn't exist. docdir
17020 and mandir now keyed off datadir by default.
17021
17022 1991-11-22 K. Richard Pixley (rich at rtl.cygnus.com)
17023
17024 * Freshly created ChangeLog.
17025
17026 \f
17027 Local Variables:
17028 mode: change-log
17029 left-margin: 8
17030 fill-column: 76
17031 version-control: never
17032 End: