Note that at least dejagnu version 1.5.3 is required in order to be ale to run the...
[binutils-gdb.git] / ChangeLog
1 2022-10-04 Nick Clifton <nickc@redhat.com>
2
3 * README-maintainer-mode: Add a minimum version of dejagnu
4 requirement.
5
6 2022-09-08 Nick Clifton <nickc@redhat.com>
7
8 * README-maintainer-mode: Update minimum version of gettext
9 required.
10
11 2022-07-08 Nick Clifton <nickc@redhat.com>
12
13 * 2.39 branch created.
14
15 2022-07-04 Nick Clifton <nickc@redhat.com>
16
17 * libiberty: Synchronize with GCC. Bring in:
18 2022-07-01 Nick Clifton <nickc@redhat.com>
19
20 PR demangler/105039
21 * rust-demangle.c (demangle_const): Add recursion limit.
22
23 2022-06-26 Simon Marchi <simon.marchi@efficios.com>
24
25 * configure.ac: Add AC_CONFIG_MACRO_DIRS call.
26 * configure: Re-generate.
27
28 2022-04-12 Nick Clifton <nickc@redhat.com>
29
30 * zlib: Rebase to the 1.2.12 release.
31
32 2022-04-08 Simon Marchi <simon.marchi@efficios.com>
33
34 * configure.ac: Add AC_SUBST(PKG_CONFIG_PATH).
35 * configure: Re-generate.
36 * Makefile.tpl (HOST_EXPORTS): Pass PKG_CONFIG_PATH.
37 (PKG_CONFIG_PATH): New.
38 * Makefile.in: Re-generate.
39
40 2022-03-15 Jose E. Marchesi <jose.marchesi@oracle.com>
41
42 * gprofng/src/gp-collect-app.cc (collect::check_args): Use
43 fallthrough comment instead of attribute.
44
45 2022-03-11 Vladimir Mezentsev <vladimir.mezentsev@oracle.com>
46
47 * Makefile.def: Add gprofng module.
48 * configure.ac: Add --enable-gprofng option.
49 * src-release.sh: Add gprofng.
50 * Makefile.in: Regenerate.
51 * configure: Regenerate.
52 * gprofng: New directory.
53
54 2022-01-22 Nick Clifton <nickc@redhat.com>
55
56 * 2.38 release branch created.
57
58 2022-01-17 Nick Clifton <nickc@redhat.com>
59
60 Update config.[guess|sub] from upstream:
61
62 2022-01-09 Idan Horowitz <idan.horowitz@gmail.com>
63
64 config.guess: recognize SerenityOS
65 * config.guess (*:SerenityOS:*:*): Recognize.
66 (timestamp): Update.
67
68 2022-01-03 Bernhard Voelker <mail@bernhard-voelker.de>
69
70 Fix GPLv3 license headers to use a comma instead of semicolon
71 See: https://www.gnu.org/licenses/gpl-3.0.html#howto
72
73 Update license headers automatically using the following script:
74
75 $ git grep -l 'Foundation; either version 3' \
76 | xargs sed -i '/Foundation; either version 3/ s/n; e/n, e/'
77
78 * config.guess: Adjust via the above command.
79 (timestamp): Update.
80 * config.sub: Likewise.
81 * doc/config.guess.1: Regenerate.
82 * doc/config.sub.1: Likewise.
83
84 2022-01-01 Dmitry V. Levin <ldv@altlinux.org>
85
86 Update copyright years
87 * config.guess: Update copyright years.
88 * config.sub: Likewise.
89
90 2021-12-25 Dmitry V. Levin <ldv@altlinux.org>
91
92 config.sub: alias armh to armv7l
93 ALT uses armh as an alias for armv7l-alt-linux-gnueabihf since 2012.
94
95 * config.sub (armh-unknown|armh-alt): Set cpu, vendor, and basic_os.
96 (timestamp): Update.
97
98 2021-12-24 Dmitry V. Levin <ldv@altlinux.org>
99
100 config.sub: alias aarch64le to aarch64
101 Apparently, QNX reports aarch64 as aarch64le on little-endian machines.
102
103 * config.sub (aarch64le-*): Set cpu to aarch64.
104 (timestamp): Update.
105
106 2021-12-13 Dmitry V. Levin <ldv@altlinux.org>
107
108 config.sub: fix typo in timestamp
109 * config.sub: Fix timestamp.
110
111 2021-11-30 Andreas F. Borchert <github@andreas-borchert.de>
112
113 config.guess: x86_64-pc-solaris2.11 is not properly recognized
114 config.guess guesses Solaris 11 to run on a 32-bit platform
115 despite Solaris 11 no longer supporting any 32-bit platform.
116
117 See the following code at lines 434 to 445:
118
119 | SUN_ARCH=i386
120 | # If there is a compiler, see if it is configured for 64-bit objects.
121 | # Note that the Sun cc does not turn __LP64__ into 1 like gcc does.
122 | # This test works for both compilers.
123 | if test "$CC_FOR_BUILD" != no_compiler_found; then
124 | if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \
125 | (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \
126 | grep IS_64BIT_ARCH >/dev/null
127 | then
128 | SUN_ARCH=x86_64
129 | fi
130 | fi
131
132 If "cc" is installed, i.e. the Oracle Studio compiler, this one is
133 chosen for $CC_FOR_BUILD. This compiler, the gcc provided by Oracle
134 and also gcc bootstrapped from sources on that platform with a default
135 configuration will by default generate 32-bit binaries -- even on
136 a 64-bit platform. And __amd64 will not be defined for compilations
137 targeting a 32-bit platform. This is different from the corresponding
138 behaviour on GNU/Linux systems where the local platform is targeted by
139 default.
140
141 Thus, as long as you do not add "-m64" or if you have a custom-built
142 gcc which defaults to 64 bit, you will get 32-bit binaries on Solaris
143 despite living on a 64-bit platform.
144
145 * config.guess (i86pc:SunOS:5.*:* || i86xen:SunOS:5.*:*): Adapt the
146 test by adding the "-m64" flag. This will work properly for Solaris
147 10 as well (the last Solaris release that supported x86 32-bit
148 platforms).
149
150 2021-10-27 Jordi Sanfeliu <jordi@fibranet.cat>
151
152 Recognize Fiwix
153 $ make check
154 cd testsuite && bash config-guess.sh && rm uname
155 PASS: config.guess checks (137 tests)
156 cd testsuite && bash config-sub.sh
157 PASS: config.sub checks (882 tests)
158 PASS: config.sub idempotency checks (819 tests)
159 PASS: config.sub canonicalise each config.guess testcase (137 tests)
160
161 * config.guess (i*86:Fiwix:*:*): Recognize.
162 * config.sub (fiwix*): Likewise.
163
164 2021-10-18 Kinshuk Dua <kinshukdua@gmail.com>
165
166 config.sub: Fix typo in comment
167 Fixes: 5e531d391852a54e7fab2d8ff55625fca514b305
168
169 2021-08-14 Nick Bowler <nbowler@draconx.ca>
170
171 config.sub: work around command assignment bug in some shells
172 When combining variable assignments with a shell command, some older
173 shells (notably heirloom-sh and presumably also Solaris 10 /bin/sh)
174 have a bug which causes the assignment to alter the current execution
175 environment whenever the command is a shell built-in. For example:
176
177 % dash -c 'x=good; x=bad echo >/dev/null; echo $x'
178 good
179
180 % jsh -c 'x=good; x=bad echo >/dev/null; echo $x'
181 bad
182
183 The config.sub script contains a few commands of the form:
184
185 IFS=- read ...
186
187 which triggers this bug, causing the IFS assignment to persist for the
188 remainder of the script. This can cause misbehaviour in certain cases,
189 for example:
190
191 % jsh config.sub i386-linux-gnu
192 config.sub: test: unknown operator gnu
193
194 % jsh config.sub i386-gnu/linux
195 sed: can't read s|gnu/linux|gnu|: No such file or directory
196 Invalid configuration `i386-gnu/linux': OS `' not recognized
197
198 * config.sub: Save and restore IFS explicitly to avoid shell bugs.
199 * doc/config.sub.1: Regenerate.
200
201 2021-08-04 Jeremy Soller <jackpot51@gmail.com>
202
203 config.sub: add Linux Relibc Target
204 $ make check
205 cd testsuite && bash config-guess.sh && rm uname
206 PASS: config.guess checks (136 tests)
207 cd testsuite && bash config-sub.sh
208 PASS: config.sub checks (881 tests)
209 PASS: config.sub idempotency checks (818 tests)
210 PASS: config.sub canonicalise each config.guess testcase (136 tests)
211
212 * config.sub (relibc*): Recognize.
213 * doc/config.sub.1: Regenerate.
214 * testsuite/config-sub.data (x86_64-linux-relibc): New test.
215
216 2021-07-06 Stephanos Ioannidis <root@stephanos.io>
217
218 config.sub: add Zephyr RTOS support
219 This adds the Zephyr RTOS targets in preparation for implementing the
220 Zephyr RTOS-specific toolchain support.
221
222 $ make check
223 cd testsuite && bash config-guess.sh && rm uname
224 PASS: config.guess checks (136 tests)
225 cd testsuite && bash config-sub.sh
226 PASS: config.sub checks (880 tests)
227 PASS: config.sub idempotency checks (817 tests)
228 PASS: config.sub canonicalise each config.guess testcase (136 tests)
229
230 * config.sub (zephyr*): Recognize.
231 * doc/config.sub.1: Regenerate.
232 * testsuite/config-sub.data: Add testcases for *-zephyr.
233
234 2021-07-03 Ozkan Sezer <sezero@users.sourceforge.net>
235
236 config.sub: disable shellcheck SC2006 / SC2268 warnings
237 This is in line with the recent config.guess change in commit
238 12fcf67c9108f4c4b581eaa302088782f0ee40ea
239
240 * config.sub (shellcheck disable): Add SC2006,SC2268.
241
242 Suggested-by: Jacob Bachmeyer <jcb@gnu.org>
243
244 2021-07-03 Ozkan Sezer <sezero@users.sourceforge.net>
245
246 config.sub: normalize the quoting in the `echo FOO | sed ...`
247 Some cases quote the argument to echo and some do not. At runtime
248 it probably does not matter because the substituted values will never
249 contain whitespace, but quoting them all would make shellcheck more
250 useful.
251
252 * config.sub: Consistently quote the argument of echo.
253 * doc/config.sub.1: Regenerate.
254
255 Suggested-by: Jacob Bachmeyer <jcb@gnu.org>
256
257 2021-07-02 Ozkan Sezer <sezero@users.sourceforge.net>
258
259 config.sub: replace POSIX $( ) with classic ` ` throughout
260 This is in line with the recent config.guess change in commit
261 d70c4fa934de164178054c3a60aaa0024ed07c91.
262
263 The patch was generated using patch-6.gawk script introduced in that
264 commit.
265
266 * config.sub: Revert POSIX command substitutions to classic form.
267
268 2021-06-04 Vineet Gupta <Vineet.Gupta1@synopsys.com>
269
270 Recognize arc32
271 This is the 32-bit variant of ARCv3 ISA (which is not compatible with the
272 32-bit ARCv2 ISA)
273
274 | make check
275 | cd testsuite && bash config-guess.sh && rm uname
276 | PASS: config.guess checks (136 tests)
277 | cd testsuite && bash config-sub.sh
278 | PASS: config.sub checks (864 tests)
279 | PASS: config.sub idempotency checks (801 tests)
280 | PASS: config.sub canonicalise each config.guess testcase (136 tests)
281
282 * config.guess (arc32:Linux:*:*): Recognize.
283 * config.sub (arc32): Likewise.
284
285 2021-05-27 Jacob Bachmeyer <jcb@gnu.org>
286
287 Remove automatic patch generators
288 These tools have served their purposes and need not be kept outside of
289 the repository history any longer. This patch as a diff also collects
290 the contents of the various tools in one convenient place.
291
292 * patch-1.gawk: Remove.
293 * patch-3.gawk: Likewise.
294 * patch-6.gawk: Likewise.
295
296 2021-05-26 Jacob Bachmeyer <jcb@gnu.org>
297
298 config.guess: manual fixups after previous automatic patch
299 The tool could not handle command substitutions that span lines, but
300 fortunately there were only two such substitutions in the script.
301
302 The test for which universe is active on Pyramid is rewritten into a
303 case block because it was the only use of a command substitution as an
304 argument to the test command, which would require quoting.
305
306 * config.guess: Rewrite "if" for Pyramid systems to "case".
307
308 2021-05-26 Jacob Bachmeyer <jcb@gnu.org>
309
310 config.guess: replace POSIX $( ) with classic ` ` throughout
311 The previous replacement of backticks with POSIX command substitutions
312 was ill-considered and illogical: this script recognizes many archaic
313 machine types that probably never had POSIX shells, therefore it needs
314 to be able to run successfully under pre-POSIX shells.
315
316 This patch was generated using the included GNU Awk program.
317
318 * config.guess: Revert POSIX command substitutions to classic form.
319 * patch-6.gawk: Store the tool that produced the automated patch.
320
321 2021-05-26 Jacob Bachmeyer <jcb@gnu.org>
322
323 config.guess: manual fixup after previous automated patches
324 This patch provides the special handling for the GNU system. As these
325 were two small and unique edits, they were not included in the scripts.
326
327 This patch also cleans up other minor issues that must be addressed
328 before reverting to classic command substitutions and updates
329 "shellcheck" directives to account for changes in this script and the
330 change in "shellcheck" towards reporting individual portability issues.
331
332 2021-05-26 Jacob Bachmeyer <jcb@gnu.org>
333
334 config.guess: automatic fixups after previous automated patch
335 This patch was generated using the following command:
336
337 sed -i config.guess \
338 -e '/="[^"]\+"\(-\|$\)/s/="\([^"([:space:])]\+\)"/=\1/' \
339 -e '/="[^"]\+"[[:alnum:]]/s/="\$\([^([:space:])]\+\)"/=${\1}/' \
340 -e \
341 '/\$(echo[^|]\+|/s/\([^[:space:]]\)[[:space:]]*|[[:space:]]*sed/\1 | sed/g'
342
343 * config.guess: Remove unneeded quotes in other variable assignments,
344 standardize spacing for "echo ... | sed" substitutions.
345
346 2021-05-26 Jacob Bachmeyer <jcb@gnu.org>
347
348 config.guess: remove unneeded quotes and factor command substitutions
349 This is further cleanup and simplifies some constructs that can confuse
350 Emacs' syntax highlighting while generally reducing required quoting.
351
352 This patch was generated using the included GNU Awk program.
353
354 * config.guess: Remove unneeded variable quotes and factor out command
355 substitutions when setting GUESS.
356 * patch-3.gawk: Store the tool that produced the automated patch.
357
358 2021-05-25 Jacob Bachmeyer <jcb@gnu.org>
359
360 config.guess: manual fixups after previous automatic patch
361 * config.guess: Adjust a few "leftover" cases that the tool could not
362 easily recognize and fixes comment indentation in a few other special
363 cases.
364
365 2021-05-25 Jacob Bachmeyer <jcb@gnu.org>
366
367 config.guess: use intermediate variable with uname results
368 This will allow quoting to be significantly simplified in another
369 pass through the file.
370
371 This patch was generated using the included GNU Awk program.
372
373 * config.guess: Use GUESS variable to hold results of uname analysis.
374 * patch-1.gawk: Store the tool that produced the automated patch.
375
376 2021-05-25 Jacob Bachmeyer <jcb@gnu.org>
377
378 config.guess: introduce intermediate variable with uname results
379 This will allow quoting to be significantly simplified in another
380 pass through the file.
381
382 * config.guess: Introduce GUESS variable to hold results of uname analysis.
383
384 2021-05-24 Dmitry V. Levin <ldv@altlinux.org>
385
386 config.guess: fix shellcheck warning SC2154
387 While, according to Plan 9 documentation, the environment variable
388 $cputype is set to the name of the kernel's CPU's architecture,
389 shellcheck warns that cputype is referenced but not assigned.
390 Be on the safe side and do not use cputype if it is not defined
391 or empty.
392
393 * config.guess (*:Plan9:*:*): Fix shellcheck warning SC2154.
394
395 2021-05-24 Dmitry V. Levin <ldv@altlinux.org>
396
397 config.guess: remove redundant quotes in case commands
398 According to the GNU Autoconf Portable Shell Programming manual,
399 the Bourne shell does not systematically split variables and back-quoted
400 expressions, in particular on the right-hand side of assignments and in
401 the argument of 'case'.
402
403 The change is made automatically using the following command:
404 $ sed -E -i 's/(\<case )"(\$[^"]+)"( in\>)/\1\2\3/' config.guess
405
406 * config.guess: Simplify case commands by removing quotes around the
407 argument.
408
409 Suggested-by: Jacob Bachmeyer <jcb@gnu.org>
410
411 2021-05-24 Dmitry V. Levin <ldv@altlinux.org>
412
413 config.guess: simplify exit status workaround on alphaev67-dec-osf5.1
414 Commit 29865ea8a5622cdd80b7a69a0afa78004b4cd311 introduced an exit trap
415 reset before exiting to avoid a spurious non-zero exit status on
416 alphaev67-dec-osf5.1. Simplify that code a bit by moving the exit trap
417 reset around.
418
419 * config.guess (alpha:OSF1:*:*): Reset exit trap earlier.
420 * doc/config.guess.1: Regenerate.
421
422 2021-10-29 Eli Zaretskii <eliz@gnu.org>
423
424 * gdb/doc/gdb.texinfo (Command Options): (Data): Document
425 '-memory-tag-violations'. Update the example.
426
427 2021-09-28 Andrew Burgess <andrew.burgess@embecosm.com>
428
429 * src-release.sh (GDB_SUPPPORT_DIRS): Add libbacktrace.
430
431 2021-09-27 Nick Alcock <nick.alcock@oracle.com>
432
433 PR libctf/27967
434 * libtool.m4 (LT_PATH_NM): Try BSDization flags with a user-provided
435 NM, if there is one. Run nm on itself, not on /dev/null, to avoid
436 errors from nms that refuse to work on non-regular files. Remove
437 other workarounds for this problem. Strip out blank lines from the
438 nm output.
439
440 2021-09-27 Nick Alcock <nick.alcock@oracle.com>
441
442 PR libctf/27967
443 * libtool.m4 (lt_cv_sys_global_symbol_pipe): Augment symcode for
444 Solaris 11.
445
446 2021-07-03 Nick Clifton <nickc@redhat.com>
447
448 * 2.37 release branch created.
449
450 2021-07-03 Nick Clifton <nickc@redhat.com>
451
452 * libiberty: Sync with gcc. Bring in:
453 2021-06-30 Gerald Pfeifer <gerald@pfeifer.com>
454
455 * make-temp-file.c (usrtmp): Remove.
456 (choose_tmpdir): Remove use of usrtmp.
457
458 2021-06-28 Indu Bhagat <indu.bhagat@oracle.com>
459
460 * simple-object.c (handle_lto_debug_sections): Copy over .BTF section.
461
462 2021-06-28 Indu Bhagat <indu.bhagat@oracle.com>
463 David Faust <david.faust@oracle.com>
464 Jose E. Marchesi <jose.marchesi@oracle.com>
465 Weimin Pan <weimin.pan@oracle.com>
466
467 * simple-object.c (handle_lto_debug_sections): Copy over .ctf
468 sections.
469
470 2021-06-05 John David Anglin <danglin@gcc.gnu.org>
471
472 PR target/100734
473 * configure.ac: Use libiberty snprintf and vsnprintf on
474 hppa*-*-hpux*.
475 * configure: Regenerate.
476
477 2021-05-06 Tom Tromey <tom@tromey.com>
478
479 * hashtab.c (htab_eq_string): New function.
480
481 2021-05-04 Eric Botcazou <ebotcazou@adacore.com>
482
483 * configure.ac: Make test for variables more robust.
484 * configure: Regenerate.
485
486 2021-05-03 H.J. Lu <hjl.tools@gmail.com>
487
488 PR bootstrap/99703
489 * configure: Regenerated.
490
491 2021-04-21 Andreas Schwab <schwab@linux-m68k.org>
492
493 PR demangler/100177
494 * rust-demangle.c (demangle_const_char): Properly print the
495 character value.
496
497 2021-03-31 Patrick Palka <ppalka@redhat.com>
498
499 PR c++/88115
500 * cp-demangle.c (d_dump, d_make_comp, d_expression_1)
501 (d_count_templates_scopes): Handle DEMANGLE_COMPONENT_VENDOR_EXPR.
502 (d_print_comp_inner): Likewise.
503 <case DEMANGLE_COMPONENT_EXTENDED_OPERATOR>: Revert r11-4926
504 change.
505 <case DEMANGLE_COMPONENT_UNARY>: Likewise.
506 * testsuite/demangle-expected: Adjust __alignof__ tests.
507
508 2021-03-16 Nick Clifton <nickc@redhat.com>
509
510 * sha1.c (sha1_process_bytes): Use memmove in place of memcpy.
511
512 2021-02-20 Mike Frysinger <vapier@gentoo.org>
513
514 * Makefile.in (ACLOCAL, ACLOCAL_AMFLAGS, $(srcdir)/aclocal.m4): Define.
515 (configure_deps): Rename to ...
516 (aclocal_deps): ... this. Replace aclocal.m4 with acinclude.m4.
517 ($(srcdir)/configure): Replace $(configure_deps) with
518 $(srcdir)/aclocal.m4.
519 * aclocal.m4: Move libiberty macros to acinclude.m4, then regenerate.
520 * acinclude.m4: New file.
521 * configure: Regenerate.
522
523 2021-02-19 Ayush Mittal <ayush.m@samsung.com>
524
525 * argv.c (expandargv): free allocated buffer if read fails.
526
527 2021-02-01 Martin Sebor <msebor@redhat.com>
528
529 * dyn-string.c (dyn_string_insert_cstr): Use memcpy instead of strncpy
530 to avoid -Wstringop-truncation.
531
532 2021-05-29 Mike Frysinger <vapier@gentoo.org>
533
534 * configure.ac: Add gnulib to configdirs for sim.
535 * configure: Regenerate.
536
537 2021-05-24 Maciej W. Rozycki <macro@orcam.me.uk>
538
539 * MAINTAINERS: Update path to readline config.{sub,guess} files.
540
541 2021-05-24 Maciej W. Rozycki <macro@orcam.me.uk>
542
543 * config.guess: Import from upstream.
544 * config.sub: Likewise.
545
546 2021-05-18 Mike Frysinger <vapier@gentoo.org>
547
548 * Makefile.def: Add configure-sim dependency on all-gnulib.
549 * Makefile.in: Regenerated.
550
551 2021-05-04 Nick Clifton <nickc@redhat.com>
552
553 * configure.ac (AC_PROG_CC): Replace with AC_PROG_CC_C99.
554 * configure: Regenerate.
555
556 2021-03-18 Nick Alcock <nick.alcock@oracle.com>
557
558 PR libctf/27482
559 * Makefile.def: Add install-bfd dependencies for install-libctf and
560 install-ld, and install-strip-bfd dependencies for
561 install-strip-libctf and install-strip-ld; move the install-ld
562 dependency on install-libctf to join it.
563 * Makefile.in: Regenerated.
564
565 2021-03-12 Mike Frysinger <vapier@gentoo.org>
566
567 * Makefile.def: Remove all-sim dependency on configure-gdb.
568 * Makefile.in: Regenerated.
569
570 2021-02-28 H.J. Lu <hongjiu.lu@intel.com>
571
572 PR binutils/26766
573 * Makefile.tpl (PGO_BUILD_TRAINING_FLAGS_TO_PASS): Add
574 PGO_BUILD_TRAINING=yes.
575 (PGO_BUILD_TRAINING_MFLAGS): New.
576 (all): Pass $(PGO_BUILD_TRAINING_MFLAGS) to the PGO build.
577
578 2021-02-09 Alan Modra <amodra@gmail.com>
579
580 * configure.ac: Delete arm*-*-symbianelf* entry.
581 * configure: Regenerate.
582
583 2021-01-26 Nick Alcock <nick.alcock@oracle.com>
584
585 * Makefile.def: Add install-libctf dependency to install-ld.
586 * Makefile.in: Regenerated.
587
588 2021-01-12 Mike Frysinger <vapier@gentoo.org>
589
590 * src-release.sh (do_proto_toplev): Rewrite indentation.
591
592 2021-01-11 H.J. Lu <hongjiu.lu@intel.com>
593
594 PR binutils/26766
595 * configure.ac:
596 * configure: Regenerated.
597
598 2021-01-11 H.J. Lu <hongjiu.lu@intel.com>
599
600 PR ld/27173
601 * configure: Regenerated.
602 * libtool.m4 (_LT_CMD_OLD_ARCHIVE): Check if AR works with
603 --plugin and rc before enabling --plugin.
604
605 2021-01-09 H.J. Lu <hongjiu.lu@intel.com>
606
607 PR binutils/26766
608 * Makefile.tpl (BUILD_CFLAGS): New.
609 (CFLAGS): Append $(BUILD_CFLAGS).
610 (CXXFLAGS): Likewise.
611 (PGO_BUILD_GEN_FLAGS_TO_PASS): New.
612 (PGO_BUILD_TRAINING_CFLAGS): Likewise.
613 (PGO_BUILD_TRAINING_CXXFLAGS): Likewise.
614 (PGO_BUILD_TRAINING_FLAGS_TO_PASS): Likewise.
615 (PGO_BUILD_TRAINING_MFLAGS): Likewise.
616 (PGO_BUILD_USE_FLAGS_TO_PASS): Likewise.
617 (PGO-TRAINING-TARGETS): Likewise.
618 (PGO_BUILD_TRAINING): Likewise.
619 (all): Add '+' to the command line for recursive make. Support
620 the PGO build.
621 * configure.ac: Add --enable-pgo-build[=lto].
622 AC_SUBST PGO_BUILD_GEN_CFLAGS, PGO_BUILD_USE_CFLAGS and
623 PGO_BUILD_LTO_CFLAGS. Enable the PGO build in Makefile.
624 * Makefile.in: Regenerated.
625 * configure: Likewise.
626
627 2021-01-09 H.J. Lu <hongjiu.lu@intel.com>
628
629 * Makefile.tpl (AR): Add @AR_PLUGIN_OPTION@
630 (RANLIB): Add @RANLIB_PLUGIN_OPTION@.
631 * configure.ac: Include config/gcc-plugin.m4.
632 AC_SUBST AR_PLUGIN_OPTION and RANLIB_PLUGIN_OPTION.
633 * libtool.m4 (_LT_CMD_OLD_ARCHIVE): Pass --plugin to AR and
634 RANLIB if possible.
635 * Makefile.in: Regenerated.
636 * configure: Likewise.
637
638 2021-01-09 Nick Clifton <nickc@redhat.com>
639
640 * 2.36 release branch crated.
641
642 2021-01-07 Samuel Thibault <samuel.thibault@gnu.org>
643
644 * libtool.m4: Match gnu* along with other GNU systems.
645
646 2021-01-07 Alan Modra <amodra@gmail.com>
647
648 * config.sub: Accept OS of eabi* and gnueabi*.
649
650 2021-01-05 Nick Alcock <nick.alcock@oracle.com>
651
652 * Makefile.def (libctf): No longer no_check. Checking depends on
653 all-ld.
654 * Makefile.in: Regenerated.
655
656 2021-01-05 Nick Clifton <nickc@redhat.com>
657
658 * libiberty: Sync with gcc. Bring in:
659 2021-01-04 Martin Liska <mliska@suse.cz>
660
661 * strverscmp.c: Convert to utf8 from iso8859.
662
663 2020-12-22 Jason Merrill <jason@redhat.com>
664
665 PR c++/67343
666 * cp-demangle.h (struct d_info): Add unresolved_name_state.
667 * cp-demangle.c (d_prefix): Add subst parm.
668 (d_nested_name): Pass it.
669 (d_unresolved_name): Split out from...
670 (d_expression_1): ...here.
671 (d_demangle_callback): Maybe retry with old sr mangling.
672 * testsuite/demangle-expected: Add test.
673
674 2020-12-21 Jason Merrill <jason@redhat.com>
675
676 * cp-demangle.c (d_expression_1): Recognize qualified-id
677 on RHS of dt/pt.
678 * testsuite/demangle-expected: Add test.
679
680 2020-12-21 Jason Merrill <jason@redhat.com>
681
682 * cp-demangle.c (d_unqualified_name): Clear is_expression.
683 * testsuite/demangle-expected: Add tests.
684
685 2020-11-25 Matthew Malcomson <matthew.malcomson@arm.com>
686
687 * configure: Regenerate.
688 * configure.ac: Avoid using sanitizer.
689
690 2020-11-13 Eduard-Mihai Burtescu <eddyb@lyken.rs>
691
692 * rust-demangle.c (struct rust_demangler): Add
693 skipping_printing and bound_lifetime_depth fields.
694 (eat): Add (v0-only).
695 (parse_integer_62): Add (v0-only).
696 (parse_opt_integer_62): Add (v0-only).
697 (parse_disambiguator): Add (v0-only).
698 (struct rust_mangled_ident): Add punycode{,_len} fields.
699 (parse_ident): Support v0 identifiers.
700 (print_str): Respect skipping_printing.
701 (print_uint64): Add (v0-only).
702 (print_uint64_hex): Add (v0-only).
703 (print_ident): Respect skipping_printing,
704 Support v0 identifiers.
705 (print_lifetime_from_index): Add (v0-only).
706 (demangle_binder): Add (v0-only).
707 (demangle_path): Add (v0-only).
708 (demangle_generic_arg): Add (v0-only).
709 (demangle_type): Add (v0-only).
710 (demangle_path_maybe_open_generics): Add (v0-only).
711 (demangle_dyn_trait): Add (v0-only).
712 (demangle_const): Add (v0-only).
713 (demangle_const_uint): Add (v0-only).
714 (basic_type): Add (v0-only).
715 (rust_demangle_callback): Support v0 symbols.
716 * testsuite/rust-demangle-expected: Add v0 testcases.
717
718 2020-11-13 Seija Kijin <doremylover456@gmail.com>
719
720 * strstr.c (strstr): Make implementation ANSI/POSIX compliant.
721
722 2020-11-11 Patrick Palka <ppalka@redhat.com>
723
724 PR c++/88115
725 * cp-demangle.c (d_print_comp_inner)
726 <case DEMANGLE_COMPONENT_EXTENDED_OPERATOR>: Don't print the
727 "operator " prefix for __alignof__.
728 <case DEMANGLE_COMPONENT_UNARY>: Always print parens around the
729 operand of __alignof__.
730 * testsuite/demangle-expected: Test demangling for __alignof__.
731
732 2020-11-09 Christophe Lyon <christophe.lyon@linaro.org>
733
734 * pex-win32.c (pex_win32_exec_child): Initialize orig_err.
735
736 2020-10-06 Martin Liska <mliska@suse.cz>
737
738 PR lto/97290
739 * simple-object-elf.c (simple_object_elf_copy_lto_debug_sections):
740 Use sh_link of a .symtab_shndx section.
741
742 2021-01-05 Alan Modra <amodra@gmail.com>
743
744 * config.guess: Import from upstream.
745 * config.sub: Likewise.
746
747 2020-12-16 Martin Liska <mliska@suse.cz>
748 Tom de Vries <tdevries@suse.de>
749
750 * gdb/debuginfod-support.c (struct user_data): Remove has_printed
751 field. Add meter field.
752 (progressfn): Print progress using meter.
753
754 2020-12-02 Enze Li <lienze2010@hotmail.com>
755
756 * .gitignore: Add gnu global outputs.
757
758 2020-12-02 Simon Marchi <simon.marchi@polymtl.ca>
759
760 * .gitignore: Sync with gcc.
761
762 2020-10-26 Andreas Rammhold <andreas@rammhold.de>
763
764 * src-release.sh: Use sha256sum instead of md5sum.
765
766 2020-10-14 Andrew Burgess <andrew.burgess@embecosm.com>
767
768 * Makefile.in: Rebuild.
769 * Makefile.def: Make distclean-gnulib depend on distclean-gdb and
770 distclean-gdbserver.
771
772 2020-07-24 Aaron Merey <amerey@redhat.com>
773
774 * configure: Rebuild.
775 * configure.ac: Remove AC_DEBUGINFOD.
776
777 2020-07-04 Nick Clifton <nickc@redhat.com>
778
779 Binutils 2.35 branch created.
780
781 2020-04-21 Stephen Casner <casner@acm.org>
782
783 PR 25830
784 * configure.ac (noconfigdirs): Exclude gdb & gprof for pdp11.
785 * configure: Rebuild.
786
787 2020-03-12 Tom Tromey <tom@tromey.com>
788
789 * Makefile.in: Rebuild.
790 * Makefile.def (gdbserver): Depend on gdbsupport.
791
792 2020-03-12 Tom Tromey <tom@tromey.com>
793
794 * Makefile.in: Rebuild.
795 * Makefile.def (gdbsupport): Don't depend on bfd.
796
797 2020-03-12 Tom Tromey <tom@tromey.com>
798
799 * Makefile.in: Rebuild.
800 * Makefile.def (gdbsupport): Depend on intl.
801
802 2020-02-17 Tom Tromey <tom@tromey.com>
803
804 * configure: Rebuild.
805 * configure.ac (configdirs): Add gnulib and gdbsupport when building
806 gdbserver.
807
808 2020-02-14 Tom Tromey <tom@tromey.com>
809
810 * Makefile.in: Rebuild.
811 * Makefile.def: Make gdbserver require gnulib and libiberty.
812
813 2020-02-07 Tom Tromey <tom@tromey.com>
814 Pedro Alves <palves@redhat.com>
815
816 * src-release.sh (GDB_SUPPORT_DIRS): Add gdbserver.
817 * gdbserver: New directory, moved from gdb/gdbserver.
818 * configure.ac (host_tools): Add gdbserver.
819 Only build gdbserver on certain systems.
820 * Makefile.in, configure: Rebuild.
821 * Makefile.def (host_modules, dependencies): Add gdbserver.
822 * MAINTAINERS: Add gdbserver.
823
824 2020-01-28 Sergio Durigan Junior <sergiodj@redhat.com>
825
826 * src-release.sh (getver): Look for gdbsupport's
827 create-version.sh script at the current directory if tool is
828 "gdb".
829
830 2020-01-19 Simon Marchi <simon.marchi@polymtl.ca>
831
832 * remote-sim.c (gdbsim_target::wait): Return
833 sim_data->remote_sim_ptid instead of inferior_ptid.
834
835 2020-01-18 Nick Clifton <nickc@redhat.com>
836
837 Binutils 2.34 branch created.
838
839 2020-01-18 Nick Clifton <nickc@redhat.com>
840
841 Synchronize top level configure files with master version:
842
843 2020-01-01 Ben Elliston <bje@gnu.org>
844
845 * config.guess: Update copyright years.
846 * config.sub: Likewise.
847
848 2019-12-21 Ben Elliston <bje@gnu.org>
849
850 * config.guess (set_cc_for_build): Prevent multiple calls by
851 checking if $tmp is already set. We can't check CC_FOR_BUILD as
852 the user may set it externally. Thanks to Torbjörn Granlund for
853 the bug report.
854
855 2019-12-21 Torbjörn Granlund <tg@gmplib.org>
856
857 * config.guess (alpha:Linux:*:*): Guard against missing
858 /proc/cpuinfo by redirecting standard error to /dev/null.
859
860 2019-09-12 Daniel Bittman <danielbittman1@gmail.com>
861
862 * config.guess (*:Twizzler:*:*): New.
863 * config.sub (-twizzler*): New.
864
865 2019-07-24 Ben Elliston <bje@gnu.org>
866
867 * config.guess (mips:OSF1:*.*): Whitespace cleanup.
868
869 2019-06-30 Ben Elliston <bje@gnu.org>
870
871 * config.sub (case $os): Match nsk* and powerunix. Don't later
872 match nsk* and set os=nsk which removes the OS version number.
873
874 2019-06-30 Ben Elliston <bje@gnu.org>
875
876 * config.sub: Recognise os108*.
877
878 2019-06-26 Ben Elliston <bje@gnu.org>
879
880 * config.sub (hp300): Set $os to hpux.
881
882 2019-06-26 Ben Elliston <bje@gnu.org>
883
884 * config.sub (vsta): Move into alphabetical order.
885
886 2019-06-10 Ben Elliston <bje@gnu.org>
887
888 * config.guess (*:OS108:*:*): Recognise new OS.
889
890 2019-05-28 Ben Elliston <bje@gnu.org>
891
892 * config.guess (*:Darwin:*:*): Run xcode-select to determine if a
893 system compiler is installed. If not, do not run set_cc_for_build,
894 as the default cc will open a dialog box asking to install
895 Xcode. If no C compiler is available, guess based on uname -p and
896 uname -m.
897
898 2019-05-28 Ben Elliston <bje@gnu.org>
899
900 * config.guess (*:Darwin:*:*): Simplify UNAME_PROCESSOR.
901
902 2020-01-17 Simon Marchi <simon.marchi@efficios.com>
903
904 * Makefile.def: Add dependencies of all-gdbsupport on all-bfd.
905 * Makefile.in: Re-generate.
906
907 2020-01-14 Tom Tromey <tom@tromey.com>
908
909 * src-release.sh (GDB_SUPPORT_DIRS): Add gdbsupport.
910 * MAINTAINERS: Add gdbsupport.
911 * configure: Rebuild.
912 * configure.ac (configdirs): Add gdbsupport.
913 * gdbsupport: New directory, move from gdb/gdbsupport.
914 * Makefile.def (host_modules, dependencies): Add gnulib.
915 * Makefile.in: Rebuild.
916
917 2020-01-09 Aaron Merey <amerey@redhat.com>
918
919 * config/debuginfod.m4: New file. Add macro AC_DEBUGINFOD. Adds
920 new configure option --with-debuginfod.
921 * configure: Regenerate.
922 * configure.ac: Call AC_DEBUGINFOD.
923
924 2019-12-26 Christian Biesinger <cbiesinger@google.com>
925
926 * .gitignore: Add perf.data and perf.data.old.
927
928 2019-10-17 Sergio Durigan Junior <sergiodj@redhat.com>
929
930 * src-release.sh (GDB_SUPPORT_DIRS): Add libctf.
931
932 2019-10-17 Alan Modra <amodra@gmail.com>
933
934 PR 29
935 * src-release.sh (getver): Replace "head -1" with "head -n 1".
936
937 2019-07-30 Nick Alcock <nick.alcock@oracle.com>
938
939 * Makefile.def (host_modules): libctf is no longer no_install.
940 * Makefile.in: Regenerated.
941
942 2019-07-13 Nick Alcock <nick.alcock@oracle.com>
943
944 * Makefile.def (dependencies): all-ld depends on all-libctf.
945 * Makefile.in: Regenerated.
946
947 2019-09-09 Phil Blundell <pb@pbcl.net>
948
949 binutils 2.33 branch created
950
951 2019-08-19 Tom Tromey <tom@tromey.com>
952
953 * configure: Rebuild.
954 * configure.ac: Add --with-static-standard-libraries.
955
956 2019-08-09 Nick Clifton <nickc@redhat.com>
957
958 * libiberty: Sync with gcc. Bring in:
959 2019-08-08 Martin Liska <mliska@suse.cz>
960
961 PR bootstrap/91352
962 * lrealpath.c (is_valid_fd): New function.
963
964 2019-07-24 Martin Liska <mliska@suse.cz>
965
966 PR lto/91228
967 * simple-object-elf.c (simple_object_elf_copy_lto_debug_sections):
968 Find first '\0' starting from gnu_lto + 1.
969
970 2019-07-12 Ren Kimura <rkx1209dev@gmail.com>
971
972 * simple-object-elf.c (simple_object_elf_match): Check zero value shstrndx.
973 This fixes a Bug 90924.
974
975 2019-07-22 Martin Liska <mliska@suse.cz>
976
977 * simple-object-elf.c (simple_object_elf_copy_lto_debug_sections):
978 Do not search for gnu_lto_v1, but search for first '\0'.
979
980 2019-07-18 Eduard-Mihai Burtescu <eddyb@lyken.rs>
981
982 * cplus-dem.c: Include rust-demangle.h.
983 * rust-demangle.c: Include rust-demangle.h.
984 * rust-demangle.h: New file.
985
986 2019-05-31 Michael Forney <mforney@mforney.org>
987
988 * cp-demangle.c: Don't define CP_DYNAMIC_ARRAYS if __STDC_NO_VLA__
989 is non-zero.
990
991 2019-04-30 Ben L <bobsayshilol@live.co.uk>
992
993 * d-demangle.c (dlang_parse_assocarray): Correctly handle error result.
994 * testsuite/d-demangle-expected: Add testcase.
995
996 * d-demangle.c (dlang_parse_tuple): Correctly handle error result.
997 * testsuite/d-demangle-expected: Add testcase.
998
999 * d-demangle.c (dlang_parse_structlit): Correctly handle error result.
1000 * testsuite/d-demangle-expected: Add testcase.
1001
1002 * d-demangle.c (dlang_parse_arrayliteral): Correctly handle error result.
1003 * testsuite/d-demangle-expected: Add testcase.
1004
1005 * d-demangle.c (dlang_parse_integer): Fix stack underflow.
1006 * testsuite/d-demangle-expected: Add testcase.
1007
1008 * cp-demangle (d_print_comp_inner): Guard against a NULL 'typed_name'.
1009 * testsuite/demangle-expected: Add testcase.
1010
1011 * cp-demangle.c (d_encoding): Guard against NULL return values from
1012 d_right (dc).
1013 * testsuite/demangle-expected: Add testcase.
1014
1015 2019-04-29 Ben L <bobsayshilol@live.co.uk>
1016
1017 * cp-demangle.c (d_expression_1): Don't peek ahead unless the current
1018 char is valid.
1019 * testsuite/demangle-expected: Add testcase.
1020
1021 2019-04-10 Nick Clifton <nickc@redhat.com>
1022
1023 PR 89394
1024 * cp-demangle.c (cplus_demangle_fill_name): Reject negative
1025 lengths.
1026 (d_count_templates_scopes): Replace num_templates and num_scopes
1027 parameters with a struct d_print_info pointer parameter. Adjust
1028 body of the function accordingly. Add recursion counter and check
1029 that the recursion limit is not reached.
1030 (d_print_init): Pass dpi parameter to d_count_templates_scopes.
1031 Reset recursion counter afterwards, unless the recursion limit was
1032 reached.
1033
1034 2019-07-13 Joel Brobecker <brobecker@adacore.com>
1035
1036 * src-release (getver): If $tool/gdbsupport/create-version.sh
1037 exists, use that to determine the version number.
1038
1039 2019-06-21 Andreas Schwab <schwab@linux-m68k.org>
1040
1041 * src-release.sh (GDB_SUPPORT_DIRS): Add gnulib.
1042
1043 2019-06-14 Tom Tromey <tom@tromey.com>
1044
1045 * MAINTAINERS: Add gnulib.
1046 * gnulib: New directory, move from gdb/gnulib.
1047 * configure.ac (host_libs): Add gnulib.
1048 * configure: Rebuild.
1049 * Makefile.def (host_modules, dependencies): Add gnulib.
1050 * Makefile.in: Rebuild.
1051
1052 2019-06-03 Nick Clifton <nickc@redhat.com>
1053
1054 Revert:
1055 2019-05-29 Nick Clifton <nickc@redhat.com>
1056
1057 * configure.ac (noconfigdirs): Add libctf if the target does not use
1058 the ELF file format.
1059 * configure: Regenerate.
1060
1061 2019-05-29 Nick Clifton <nickc@redhat.com>
1062
1063 * src-release.sh (do_proto_toplev): Add libctf to list of
1064 directories that can be disabled.
1065
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-28 Nick Alcock <nick.alcock@oracle.com>
1073
1074 * Makefile.def (dependencies): configure-libctf depends on all-bfd
1075 and all its deps.
1076 * Makefile.in: Regenerated.
1077
1078 2019-05-28 Nick Alcock <nick.alcock@oracle.com>
1079
1080 * MAINTAINERS: Add libctf.
1081
1082 2019-05-28 Nick Alcock <nick.alcock@oracle.com>
1083
1084 * Makefile.def (host_modules): Add libctf.
1085 * Makefile.def (dependencies): Likewise.
1086 libctf depends on zlib, libiberty, and bfd.
1087 * Makefile.in: Regenerated.
1088 * configure.ac (host_libs): Add libctf.
1089 * configure: Regenerated.
1090
1091 2019-05-23 Jose E. Marchesi <jose.marchesi@oracle.com>
1092
1093 * config.guess: Synchronize with config project master sources.
1094 * config.sub: Likewise.
1095 * readline/support/config.guess: Likewise.
1096 * readline/support/config.sub: Likewise.
1097
1098 2019-04-10 Nick Clifton <nickc@redhat.com>
1099
1100 * libiberty: Sync with gcc. Bring in:
1101 2019-04-10 Nick Clifton <nickc@redhat.com>
1102
1103 PR 89394
1104 * cp-demangle.c (cplus_demangle_fill_name): Reject negative
1105 lengths.
1106 (d_count_templates_scopes): Replace num_templates and num_scopes
1107 parameters with a struct d_print_info pointer parameter. Adjust
1108 body of the function accordingly. Add recursion counter and check
1109 that the recursion limit is not reached.
1110 (d_print_init): Pass dpi parameter to d_count_templates_scopes.
1111 Reset recursion counter afterwards, unless the recursion limit was
1112 reached.
1113
1114 2018-06-24 Nick Clifton <nickc@redhat.com>
1115
1116 2.32 branch created.
1117
1118 2019-01-14 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
1119
1120 Merge from GCC:
1121 PR target/88535
1122 * config.guess: Import upstream version 2019-01-03.
1123 * config.sub: Import upstream version 2019-01-01.
1124
1125 2019-01-10 Nick Clifton <nickc@redhat.com>
1126
1127 * libiberty: Sync with gcc. Bring in:
1128 2019-01-09 Sandra Loosemore <sandra@codesourcery.com>
1129
1130 PR other/16615
1131
1132 * cp-demangle.c: Mechanically replace "can not" with "cannot".
1133 * floatformat.c: Likewise.
1134 * strerror.c: Likewise.
1135
1136 2018-12-22 Jason Merrill <jason@redhat.com>
1137
1138 Remove support for demangling GCC 2.x era mangling schemes.
1139 * cplus-dem.c: Remove cplus_mangle_opname, cplus_demangle_opname,
1140 internal_cplus_demangle, and all subroutines.
1141 (libiberty_demanglers): Remove entries for ancient GNU (pre-3.0),
1142 Lucid, ARM, HP, and EDG demangling styles.
1143 (cplus_demangle): Remove 'work' variable. Don't call
1144 internal_cplus_demangle.
1145
1146 2019-01-03 Дилян Палаузов <dilyan.palauzov@aegee.org>
1147
1148 * configure.ac: Don't configure readline if --with-system-readline is
1149 used.
1150 * configure: Re-generate.
1151
1152 2018-10-31 Joseph Myers <joseph@codesourcery.com>
1153
1154 Merge from GCC:
1155 PR bootstrap/82856
1156 * multilib.am: New file. From automake.
1157
1158 2018-09-12 Sergio Durigan Junior <sergiodj@redhat.com>
1159
1160 * src-release.sh (GDB_SUPPORT_DIRS): Add "contrib".
1161
1162 2018-07-16 Nick Clifton <nickc@redhat.com>
1163
1164 * src-release.sh (DEVO_SUPPORT): Add test-driver and ar-lib.
1165
1166 2018-07-06 Sebastian Huber <sebastian.huber@embedded-brains.de>
1167
1168 * config.sub: Sync with upstream version 2018-07-03.
1169
1170 2018-07-05 Sebastian Huber <sebastian.huber@embedded-brains.de>
1171
1172 * config.guess: Sync with upstream version 2018-06-26.
1173 * config.sub: Sync with upstream version 2018-07-02.
1174
1175 2018-06-29 Alexandre Oliva <oliva@adacore.com>
1176
1177 * configure.ac: Introduce support for @unless/@endunless.
1178 * Makefile.tpl (dep-kind): Rewrite with cond; return
1179 postbootstrap in some cases.
1180 (make-postboot-dep, postboot-targets): New.
1181 (dependencies): Do not output postbootstrap dependencies at
1182 first. Output non-target ones changed for configure to depend
1183 on stage_last @if gcc-bootstrap, and the original deps @unless
1184 gcc-bootstrap.
1185 * configure.in, Makefile.in: Rebuilt.
1186
1187 2018-06-24 Nick Clifton <nickc@redhat.com>
1188
1189 * configure: Regenerate.
1190
1191 2018-06-19 Simon Marchi <simon.marchi@ericsson.com>
1192
1193 * libtool.m4: Use AC_LANG_SOURCE.
1194 * configure.ac: Remove AC_PREREQ, use AC_LANG_SOURCE.
1195 * README-maintainer-mode: Update version requirements.
1196 * ar-lib: New file.
1197 * test-driver: New file.
1198 * configure: Re-generate.
1199
1200 2018-06-18 Eric Botcazou <ebotcazou@adacore.com>
1201
1202 * Makefile.def (fortran): Add check-target-libgomp-fortran.
1203 * Makefile.tpl (check-target-libgomp-fortran): New phony target.
1204 * Makefile.in: Regenerate.
1205
1206 * configure: Regenerate.
1207
1208 2018-06-18 Simon Marchi <simon.marchi@ericsson.com>
1209
1210 * configure.ac: Sync with GCC, remove MPX-related things.
1211
1212 2018-05-01 Nick Clifton <nickc@redhat.com>
1213
1214 * config.guess: Synchronize with config project master sources.
1215 * config.sub: Likewise.
1216
1217 2018-05-01 Francois H. Theron <francois.theron@netronome.com>
1218
1219 * configure.ac: Added "nfp" target.
1220 * configure: Regenerate.
1221
1222 2018-02-13 Maciej W. Rozycki <macro@mips.com>
1223
1224 * configure.ac <wasm32-*-*> (noconfigdirs): Add `ld'.
1225 * configure: Regenerate.
1226
1227 2018-01-30 Nick Clifton <nickc@redhat.com>
1228
1229 * src-release.sh (do_proto_toplev): Add patterns for more junk files
1230 to delete before creating the tarball.
1231
1232 2018-01-29 Nick Clifton <nickc@redhat.com>
1233
1234 * src-release.sh (do_proto_toplev): Strip patch remnant files from
1235 the sources before creating the tarball.
1236
1237 2018-01-13 Nick Clifton <nickc@redhat.com>
1238
1239 * src-release.sh: Update copyright notice. Change reference to devo
1240 to be a reference to root.
1241
1242 2018-01-10 Nick Clifton <nickc@redhat.com>
1243
1244 * config-ml.in: Sync with gcc sources.
1245 * config.guess: Likewise.
1246 * config.sub: Likewise.
1247 * configure.ac: Likewise.
1248 * configure: Regenerate.
1249
1250 2017-12-14 Nick Clifton <nickc@redhat.com>
1251
1252 * COPYING.LIBGLOSS: Update address of FSF in copyright notice.
1253
1254 2017-12-12 Stafford Horne <shorne@gmail.com>
1255
1256 * configure.ac: Remove logic adding gdb to noconfigsdirs for or1k.
1257 * configure: Regenerate.
1258
1259 2017-09-15 Nick Clifton <nickc@redhat.com>
1260
1261 * src-release.sh (LZIPPROG): New define. Provides the name of the
1262 lzip program.
1263 (do_lz): New function. Compresses a tarball using the lzip
1264 program.
1265 (do_compress): Add support for lzip compression.
1266 (usage): Mention -l option.
1267 (build_release): Support -l option to invoke lzip compression.
1268
1269 2017-09-15 Alan Modra <amodra@gmail.com>
1270
1271 * src-release.sh (do_proto_toplev): Revert last patch. Enable or
1272 disable binutils, gas, gdb, gold, gprof, ld, libdecnumber, readline,
1273 and sim depending on $tool and $support_files. Echo configure line.
1274
1275 2017-09-14 Matt Rice <ratmice@gmail.com>
1276
1277 * src-release.sh (do_proto_toplev): Enable gold during release process.
1278
1279 2017-04-13 Andrew Jenner <andrew@codesourcery.com>
1280
1281 * config.sub: Sync with master version in config project.
1282
1283 2017-04-03 Andrew Jenner <andrew@codesourcery.com>
1284
1285 * config.sub: Handle ia16 in $basic_machine.
1286
1287 bfd/
1288 * config.bfd: Handle ia16.
1289
1290 gas/
1291 * configure.tgt: Handle ia16.
1292
1293 ld/
1294 * configure.tgt: Handle ia16.
1295
1296 2017-03-22 Nick Clifton <nickc@redhat.com>
1297
1298 * config.sub: Sync with master version in config project.
1299 * config.guess: Likewise.
1300
1301 2017-01-23 Nick Clifton <nickc@redhat.com>
1302
1303 * configure.ac: Update year in copyright notice.
1304 Sync from FSF GCC mainline, bringing in the following patches.
1305 * Makefile.def: Likewise.
1306 * Makefile.tpl: Likewise.
1307 * configure: Regenerate.
1308 * Makefile.in: Regenerate.
1309
1310 2016-12-21 Jakub Jelinek <jakub@redhat.com>
1311
1312 * configure.ac: Don't bootstrap libmpx unless --with-build-config
1313 includes bootstrap-mpx.
1314
1315 2016-12-01 Matthias Klose <doko@ubuntu.com>
1316
1317 * configure.ac: Don't use pkg-config to check for bdw-gc.
1318
1319 2016-11-30 Matthias Klose <doko@ubuntu.com>
1320
1321 * Makefile.def: Remove reference to boehm-gc target module.
1322 * configure.ac: Include pkg.m4, check for --with-target-bdw-gc
1323 options and for the bdw-gc pkg-config module.
1324
1325 2016-11-15 Matthias Klose <doko@ubuntu.com>
1326
1327 * config-ml.in: Remove references to GCJ.
1328 * configure.ac: Likewise.
1329
1330 2016-09-30 Jakub Jelinek <jakub@redhat.com>
1331
1332 * configure.ac: Add target-libffi to target_libraries.
1333 Readd libgcj target disablings, modified to only target-libffi.
1334 Readd target addition of go to unsupported languages.
1335
1336 2016-09-30 Andrew Haley <aph@redhat.com>
1337
1338 * Makefile.def: Remove libjava.
1339 * Makefile.tpl: Likewise.
1340 * configure.ac: Likewise.
1341
1342 2016-09-26 Anton Kolesov <Anton.Kolesov@synopsys.com>
1343
1344 * configure.ac: Disable "sim" directory for arc*-*-*.
1345
1346 2016-09-12 Maciej W. Rozycki <macro@imgtec.com>
1347
1348 * configure.ac: Check for the minimum in-tree MPFR version
1349 handled.
1350
1351 2016-12-31 Alan Modra <amodra@gmail.com>
1352
1353 * config.sub: Import from upstream.
1354
1355 2016-12-08 Alan Modra <amodra@gmail.com>
1356
1357 * configure: Regenerate.
1358
1359 2016-12-02 Josh Conner <joshconner@google.com>
1360
1361 * configure.ac: Add fuchsia to targets that use ELF.
1362 * configure: Regenerated.
1363
1364 2016-11-07 Doug Evans <dje@google.com>
1365
1366 * config.sub: Sync with upstream version 2016-11-03.
1367 git://git.sv.gnu.org/config.git
1368 * config.guess: Sync with upstream version 2016-10-02.
1369
1370 2016-09-27 Simon Marchi <simon.marchi@polymtl.ca>
1371
1372 * .gitignore: Add archives and make stamps.
1373
1374 2016-07-20 Yan-Ting Lin <currygt52@gmail.com>
1375
1376 * configure.ac (nds32*-*-*): Remove entry to enable gdb.
1377 * configure: Regenerated.
1378
1379 2016-06-28 Walter Lee <walt@tilera.com>
1380
1381 * configure.ac (tilepro-*-*): Add gdb to noconfigdirs.
1382 * configure: Regenerate.
1383
1384 2016-05-28 Alan Modra <amodra@gmail.com>
1385
1386 * Makefile.tpl (configure): Depend on m4 files included.
1387 * Makefile.in: Regenerate.
1388
1389 2016-05-27 Nick Clifton <nickc@redhat.com>
1390
1391 * config.guess (Alpha OSF1): Fix typo introduced during the most
1392 recent synchronization update.
1393
1394 2016-05-23 Nick Clifton <nickc@redhat.com>
1395
1396 * Import these patches from the gcc mainline:
1397
1398 2016-05-16 Jakub Sejdak <jakub.sejdak@phoesys.com>
1399
1400 * config.guess: Import version 2016-04-02 (newest).
1401 * config.sub: Import version 2016-05-10 (newest).
1402
1403 2016-04-19 Nick Clifton <nickc@redhat.com>
1404
1405 * Import this patch from the GCC mainline:
1406
1407 2016-04-13 Segher Boessenkool <segher@kernel.crashing.org>
1408
1409 PR bootstrap/70173
1410 * Makefile.tpl (local-distclean): Delete the libcc1, gnattools,
1411 and gotools directories. Delete the stage_final file.
1412 * Makefile.in: Regenerate.
1413
1414 2016-03-17 Cary Coutant <ccoutant@gmail.com>
1415
1416 * configure.ac: Add mips and s390 to the gold target check.
1417 * configure: Regenerate.
1418
1419 2016-02-10 Nick Clifton <nickc@redhat.com>
1420
1421 Import these patches from the GCC mainline:
1422
1423 2016-01-12 Andris Pavenis <andris.pavenis@iki.fi>
1424
1425 * configure.ac: Enable LTO for DJGPP
1426 * configure: Regenerate
1427
1428 2016-01-24 Mikhail Maltsev <maltsevm@gmail.com>
1429
1430 PR bootstrap/69329
1431 * Makefile.tpl (BASE_FLAGS_TO_PASS): Add LSAN_OPTIONS.
1432 * Makefile.in: Regenerate.
1433
1434 2016-01-25 Aditya Kumar <aditya.k7@samsung.com>
1435 Sebastian Pop <s.pop@samsung.com>
1436
1437 * Makefile.in: Regenerate.
1438 * Makefile.tpl: Export ISLVER.
1439 * configure: Regenerate.
1440 * config/isl.m4: Detect isl-0.15.
1441
1442 2016-01-29 Sebastian Pop <s.pop@samsung.com>
1443
1444 * config/isl.m4: Add comments about isl-0.16.
1445 * configure: Regenerate.
1446
1447 2016-01-12 H.J. Lu <hongjiu.lu@intel.com>
1448
1449 Sync with GCC
1450 2015-11-26 David Edelsohn <dje.gcc@gmail.com>
1451
1452 * m4/libtool.m4 (export_symbols_cmds) [AIX]: Add global TLS "L"
1453 symbols.
1454
1455 2016-01-12 Bernd Edlinger <bernd.edlinger@hotmail.de>
1456
1457 PR bootstrap/69134
1458 * Makefile.def (mpfr): Disable assembler.
1459 * Makefile.in: Regenerate.
1460
1461 2016-01-11 Nick Clifton <nickc@redhat.com>
1462
1463 Import the following changes from the GCC mainline:
1464
1465 2015-11-13 Tsvetkova Alexandra <aleksandra.tsvetkova@intel.com>
1466
1467 * configure.ac: Enable libmpx by default.
1468 * configure: Regenerated.
1469
1470 2015-11-19 Martin Liska <mliska@suse.cz>
1471
1472 * .gitignore: Add .clang-format to ignored files.
1473 * Makefile.tpl: Add clang-format.
1474 * Makefile.in: Regenerate.
1475
1476 2015-12-01 Andreas Tobler <andreast@gcc.gnu.org>
1477
1478 PR libffi/65726
1479 * Makefile.def (lang_env_dependencies): Make libffi depend
1480 on cxx.
1481 * Makefile.in: Regenerate.
1482
1483 2015-12-02 Ian Lance Taylor <iant@google.com>
1484
1485 PR go/66147
1486 * Makefile.tpl (HOST_EXPORTS): Add XGCC_FLAGS_FOR_TARGET.
1487 * Makefile.in: Regenerate.
1488
1489 2015-12-17 Nathan Sidwell <nathan@acm.org>
1490
1491 * config/isl.m4 (ISL_CHECK_VERSION): Add gmp libs.
1492 * configure: Regenerate.
1493
1494 2015-12-17 Sebastian Pop <s.pop@samsung.com>
1495
1496 * Makefile.in: Replace ISL with isl.
1497 * Makefile.tpl: Same.
1498 * config/isl.m4: Same.
1499 * configure.ac: Same.
1500 * contrib/download_prerequisites: Same.
1501 * configure: Regenerate.
1502
1503 2016-01-01 Ben Elliston <bje@gnu.org>
1504
1505 * config.guess: Import version 2016-01-01.
1506 * config.sub: Likewise.
1507
1508 2015-11-20 Tristan Gingold <gingold@adacore.com>
1509
1510 * configure.ac: Add aarch64-*-darwin* and arm-*-darwin*.
1511 * configure: Regenerate.
1512
1513 2015-10-21 Nick Clifton <nickc@redhat.com>
1514
1515 PR gas/19109
1516 * configure.ac: Note the 'none' is an acceptable argument to
1517 --enable-compressed-debug-sections.
1518 * configure: Regenerate.
1519
1520 2015-10-20 H.J. Lu <hongjiu.lu@intel.com>
1521
1522 PR gas/19109
1523 * configure.ac: Add
1524 --enable-compressed-debug-sections={all,gas,gold,ld}.
1525 * configure: Regenerated.
1526
1527 2015-09-30 Nick Clifton <nickc@redhat.com>
1528
1529 Import the following patches from the GCC mainline:
1530
1531 2015-08-23 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
1532
1533 PR libfortran/54572
1534 * Makefile.def: Make libgfortran depend on libbacktrace.
1535 * Makefile.in: Regenerate.
1536
1537 2015-08-12 Tom de Vries <tom@codesourcery.com>
1538
1539 PR other/67092
1540 PR other/67098
1541 * configure.ac: Remove --with_host_libstdcxx support.
1542 * configure: Regenerate.
1543
1544 2015-08-10 Thomas Schwinge <thomas@codesourcery.com>
1545 Jakub Jelinek <jakub@redhat.com>
1546
1547 * configure.ac (noconfigdirs): Don't add "target-libgomp" for target
1548 nvptx*-*-*.
1549 * configure: Regenerate.
1550
1551 2015-08-07 H.J. Lu <hongjiu.lu@intel.com>
1552
1553 Sync with GCC
1554 2015-07-28 Ben Elliston <bje@gnu.org>
1555
1556 * config.sub, config.guess: Import from upstream.
1557
1558 2015-08-06 Yaakov Selkowitz <yselkowi@redhat.com>
1559
1560 * Makefile.def (libiconv): Define bootstrap=true.
1561 Mark pdf/html/info as missing.
1562 (configure-gcc): Depend on all-libiconv.
1563 (all-gcc): Ditto.
1564 (configure-libcpp): Ditto.
1565 (all-libcpp): Ditto.
1566 (configure-intl): Ditto.
1567 (all-intl): Ditto.
1568 * Makefile.in: Regenerate.
1569
1570 2015-07-27 H.J. Lu <hongjiu.lu@intel.com>
1571
1572 Sync with GCC
1573 2015-07-24 Michael Darling <darlingm@gmail.com>
1574
1575 PR other/66259
1576 * config-ml.in: Reflects renaming of configure.in to configure.ac
1577 * configure: Likewise
1578 * configure.ac: Likewise
1579
1580 2015-07-14 H.J. Lu <hongjiu.lu@intel.com>
1581
1582 * Makefile.in: Regenerated.
1583
1584 Sync with GCC
1585 2015-05-21 Jason Merrill <jason@redhat.com>
1586
1587 * Makefile.tpl: Update comments.
1588
1589 2015-04-22 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
1590
1591 * Makefile.tpl: Remove surplus whitespace throughout.
1592
1593 2015-03-25 Martin Liska <mliska@suse.cz>
1594 Yury Gribov <y.gribov@samsung.com>
1595
1596 * Makefile.tpl: Fix ln source location for vimrc file.
1597
1598 2015-07-14 H.J. Lu <hongjiu.lu@intel.com>
1599
1600 Sync with GCC
1601 2015-05-16 James Bowman <james.bowman@ftdichip.com>
1602
1603 * configure.ac: FT32 target added.
1604 * configure: Regenerate.
1605
1606 2015-07-14 H.J. Lu <hongjiu.lu@intel.com>
1607
1608 Sync with GCC
1609 2015-06-02 Jason Merrill <jason@redhat.com>
1610
1611 PR bootstrap/66319
1612 * configure.ac: Use -std=gnu++98.
1613
1614 2015-05-28 Mike Frysinger <vapier@gentoo.org>
1615
1616 * configure.ac (--vtable-verify): Use AS_HELP_STRING for help.
1617 * configure: Regenerate.
1618
1619 2015-05-11 Paulo Matos <paulo@matos-sorge.com>
1620
1621 * configure.ac: Fix typo.
1622 * configure: Regenerate.
1623
1624 2015-05-03 Matthias Klose <doko@ubuntu.com>
1625
1626 * configure.ac: Match $host configured with triplets.
1627 * configure: Regenerate.
1628
1629 2015-04-17 Jakub Jelinek <jakub@redhat.com>
1630
1631 PR bootstrap/62077
1632 * configure.ac (--enable-stage1-checking): Default to
1633 release,misc,gimple,rtlflag,tree,types if --disable-checking
1634 or --enable-checking is not specified and DEV-PHASE is not
1635 experimental.
1636 * configure: Regenerated.
1637
1638 2015-03-27 Uros Bizjak <ubizjak@gmail.com>
1639
1640 Install back PR target/47230 fix (Revert the revert).
1641
1642 2015-06-30 H.J. Lu <hongjiu.lu@intel.com>
1643
1644 * configure.ac (ospace_frag): Enable for i?86*-*-elfiamcu
1645 target.
1646 * configure: Regenerate.
1647
1648 2015-05-13 John David Anglin <dave.anglin@bell.net>
1649
1650 * configure.ac: Disable configuration of GDB for HPUX targets.
1651 * configure: Regenerate.
1652
1653 2015-05-01 H.J. Lu <hongjiu.lu@intel.com>
1654
1655 PR ld/18355
1656 * Makefile.def: Add extra_configure_flags to host zlib.
1657 * configure.ac (extra_host_zlib_configure_flags): New. Set
1658 to --enable-host-shared When bfd is to be built as shared
1659 library. AC_SUBST.
1660 * Makefile.in: Regenerated.
1661
1662 2015-04-15 Mike Frysinger <vapier@gentoo.org>
1663 Hans-Peter Nilsson <hp@axis.com>
1664
1665 Adjust src-release.sh for sim using the gdb create-version.sh.
1666 * src-release.sh (tar_compress): If there's a fifth parameter,
1667 use that in the getver call instead of $tool.
1668 (sim_release): Pass gdb as fifth parameter to tar_compress.
1669 (SIM_SUPPORT_DIRS): Add gdb/common/create-version.sh.
1670
1671 2015-04-14 Max Ostapenko <m.ostapenko@partner.samsung.com>
1672
1673 * Makefile.tpl (EXTRA_HOST_EXPORTS): New variables.
1674 (EXTRA_BOOTSTRAP_FLAGS): Likewise.
1675 (check-[+module+]): Add EXTRA_HOST_EXPORTS and EXTRA_BOOTSTRAP_FLAGS.
1676 * Makefile.in: Regenerate.
1677
1678 2015-04-01 H.J. Lu <hongjiu.lu@intel.com>
1679
1680 * configure.ac: Add --with-system-zlib.
1681 * configure: Regenerated.
1682
1683 2015-03-31 H.J. Lu <hongjiu.lu@intel.com>
1684
1685 * src-release.sh: Don't configure with --with-target-subdir=.
1686 --disable-multilib.
1687
1688 2015-03-31 H.J. Lu <hongjiu.lu@intel.com>
1689
1690 * src-release.sh (DEVO_SUPPORT): Replace src-release with
1691 src-release.sh.
1692
1693 2015-03-30 Ed Schouten <ed@nuxi.nl>
1694
1695 * config.sub: Update from upstream, to 2015-03-04 version.
1696 * config.guess: Likewise.
1697
1698 2015-03-30 H.J. Lu <hongjiu.lu@intel.com>
1699
1700 * Makefile.def (dependencies): Add all-zlib to all-bfd.
1701 * Makefile.in: Regenerated.
1702
1703 2015-03-28 H.J. Lu <hongjiu.lu@intel.com>
1704
1705 * src-release.sh (do_proto_toplev): Configure with --target
1706 --with-target-subdir and --disable-multilib.
1707 (BINUTILS_SUPPORT_DIRS): Add zlib.
1708 (GAS_SUPPORT_DIRS): Likewise.
1709 (GDB_SUPPORT_DIRS): Likewise.
1710 (SIM_SUPPORT_DIRS): Likewise.
1711
1712 2015-03-17 H.J. Lu <hongjiu.lu@intel.com>
1713
1714 * configure.ac (target_configdirs): Exclude target-zlib if
1715 target-libjava isn't built.
1716 * configure: Regenerated.
1717
1718 2015-03-17 H.J. Lu <hongjiu.lu@intel.com>
1719
1720 Sync with GCC
1721 2014-06-13 Thomas Schwinge <thomas@codesourcery.com>
1722
1723 * config-ml.in: Robustify ac_configure_args parsing.
1724
1725 2015-03-16 H.J. Lu <hongjiu.lu@intel.com>
1726
1727 * Makefile.def: Updated from GCC trunk.
1728 * Makefile.tpl: Likewise.
1729 * configure.ac: Likewise.
1730 * Makefile.in: Regenerated.
1731 * configure: Likewise.
1732
1733 2015-01-28 James Bowman <james.bowman@ftdichip.com>
1734
1735 * configure.ac: Add FT32 support.
1736 * configure: Regenerate.
1737
1738 2015-01-12 Anthony Green <green@moxielogic.com>
1739
1740 * configure.ac: Don't disable gprof for moxie.
1741 * configure: Rebuild.
1742
1743 2015-01-03 Andrew Pinski <apinski@cavium.com>
1744
1745 * Makefile.def (flags_to_pass): Pass OBJCOPY_FOR_TARGET also.
1746 * Makefile.tpl (HOST_EXPORTS): Add OBJCOPY_FOR_TARGET.
1747 (BASE_TARGET_EXPORTS): Add OBJCOPY.
1748 (OBJCOPY_FOR_TARGET): New variable.
1749 (EXTRA_TARGET_FLAGS): Add OBJCOPY.
1750 * Makefile.in: Regenerate.
1751 * configure.ac: Check for already installed target objcopy.
1752 Also GCC_TARGET_TOOL on objcopy.
1753 * configure: Regenerate.
1754
1755 2015-01-02 Hans-Peter Nilsson <hp@bitrange.com>
1756
1757 * config.sub: Update from upstream, to 2015-01-01 version.
1758 * config.guess: Ditto.
1759
1760 2014-12-06 Eric Botcazou <ebotcazou@adacore.com>
1761
1762 * config.sub: Update from upstream config repo.
1763
1764 2014-11-24 H.J. Lu <hongjiu.lu@intel.com>
1765
1766 * libtool.m4: Updated from GCC trunk.
1767
1768 2014-11-16 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1769
1770 * config.guess: Update from upstream config repo.
1771 * config.sub: Ditto.
1772
1773 2014-11-16 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1774
1775 * move-if-change: Update from upstream gnulib.
1776
1777 2014-11-16 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1778
1779 * compile: Sync with upstream Automake.
1780 * depcomp: Ditto.
1781 * install-sh: Ditto.
1782 * missing: Ditto.
1783 * mkinstalldirs: Ditto.
1784 * ylwrap: Ditto.
1785
1786 2014-10-15 Tristan Gingold <gingold@adacore.com>
1787
1788 * src-release.sh (do_proto_toplev): Configure with --target.
1789
1790 2014-10-03 Jing Yu <jingyu@google.com>
1791
1792 * configure.ac: Add aarch64 to list of targets that support gold.
1793 * configure: Regenerate.
1794
1795 2014-09-12 Andrew Bennett <andrew.bennett@imgtec.com>
1796
1797 * configure.ac: Add mips*-img-elf* target triple.
1798 * configure: Regenerate.
1799
1800 2014-09-06 Kuan-Lin Chen <kuanlinchentw@gmail.com>
1801 * configure: Disable gdb for nds32*-*-* until supported.
1802 * configure.ac: Disable gdb for nds32*-*-* until supported.
1803
1804 2014-09-05 Joel Brobecker <brobecker@adacore.com>
1805
1806 * configure: Regenerate.
1807
1808 2014-08-27 Will Newton <will.newton@linaro.org>
1809
1810 * src-release.sh: New file.
1811 * src-release: Remove file.
1812
1813 2014-07-27 Joel Sherrill <joel.sherrill@oarcorp.com>
1814
1815 GDB not supported for or1k*-*-rtems*
1816 * configure.ac (or1k*-*-rtems*): gdb not supported. The ordering
1817 of the stanzas results in this not being caught by or1k*-*-* later.
1818 * configure. Regenerated.
1819
1820 2014-07-25 Samuel Bronson <naesten@gmail.com>
1821
1822 * .gitattributes: New file for use with git-merge-changelog.
1823
1824 2014-07-21 Joel Sherrill <joel.sherrill@oarcorp.com>
1825
1826 Disable gdb for or1k*-*-* until supported
1827 * configure.ac (or1k*-*-*): Disable gdb.
1828 * configure: Regenerated.
1829
1830 2014-05-14 Sandra Loosemore <sandra@codesourcery.com>
1831
1832 * configure.ac (target_makefile_frag): Set for nios2-*-elf*.
1833 * configure: Regenerated.
1834
1835 2014-03-26 Jakub Jelinek <jakub@redhat.com>
1836
1837 PR sanitizer/56781
1838 * Makefile.def: Set bootstrap=true; for host fixincludes.
1839 * configure.ac: Don't bootstrap host fixincludes unless
1840 --with-build-config=bootstrap-{a,ub}san.
1841 * Makefile.in: Regenerated.
1842 * configure: Regenerated.
1843
1844 2014-03-21 Jakub Jelinek <jakub@redhat.com>
1845
1846 * configure.ac: Move BUILD_CONFIG set up earlier. Add
1847 --enable-vtable-verify option parsing. Don't add
1848 target-libsanitizer to bootstrap_target_libs unless
1849 --with-build-config=bootstrap-asan or
1850 --with-build-config=bootstrap-ubsan. Don't add target-libvtv
1851 to bootstrap_target_libs unless --enable-vtable-verify.
1852 * configure: Regenerated.
1853
1854 2014-03-07 Jakub Jelinek <jakub@redhat.com>
1855
1856 PR bootstrap/58572
1857 * Makefile.tpl (POSTSTAGE1_CXX_EXPORT): Use -isystem instead of
1858 -I for libstdc++-v3 includes if $(LEAN).
1859 * Makefile.in: Regenerated.
1860
1861 2014-02-24 Walter Lee <walt@tilera.com>
1862
1863 * configure.ac (tilepro-*-*) Change to tilepro*-*-*.
1864 (tilegx-*-*): Change to tilegx*-*-*.
1865 * configure: Regenerate.
1866
1867 2014-05-01 Richard Sandiford <rdsandiford@googlemail.com>
1868
1869 * config.sub, config.guess: Import from upstream.
1870
1871 2014-04-04 Eric Botcazou <ebotcazou@adacore.com>
1872
1873 PR bootstrap/60620
1874 * Makefile.def (dependencies): Make gnattools depend on libstdc++-v3.
1875 * Makefile.in: Regenerate.
1876
1877 2014-03-28 Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
1878
1879 * Makefile.def (dependencies): Make all-ld depend on all-binutils
1880 for WINDRES_FOR_TARGET in default-manifest.o rule.
1881 * Makefile.in: Regenerate.
1882
1883 2014-02-04 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
1884
1885 PR target/59788
1886 * ltmain.sh (opt_duplicate_compiler_generated_deps): Enable on
1887 *solaris2*.
1888
1889 2013-12-19 Keven Boell <keven.boell@intel.com>
1890
1891 * cp-namespace.c (cp_lookup_nested_symbol): Enable
1892 nested lookups for fortran modules.
1893 * dwarf2read.c (read_module): Add fortran module to
1894 the symbol table.
1895 (add_partial_symbol, add_partial_module): Add fortran
1896 module to the partial symbol table.
1897 (new_symbol_full): Create full symbol for fortran module.
1898 * f-exp.y (yylex): Add new module domain to be parsed.
1899 * symtab.h: New domain for fortran modules.
1900
1901 2013-12-19 Keven Boell <keven.boell@intel.com>
1902
1903 * f-exp.y (yylex): Add domain array to enable lookup
1904 in multiple domains. Loop over lookup domains and try
1905 to find requested symbol. Add STRUCT_DOMAIN to lookup
1906 domains to be able to query for user defined types.
1907
1908 2013-12-13 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
1909
1910 * configure.ac: Add user-friendly check for native x86_64-linux
1911 multilibs.
1912 * configure: Regenerate.
1913
1914 2013-11-23 Alan Modra <amodra@gmail.com>
1915
1916 * config.sub, config.guess: Import from upstream.
1917
1918 2013-11-07 Thomas Schwinge <thomas@codesourcery.com>
1919
1920 * Makefile.in: Regenerate.
1921
1922 * Makefile.tpl: Fix typo.
1923 * Makefile.in: Regenerate partially.
1924
1925 2013-11-04 Balaji V. Iyer <balaji.v.iyer@intel.com>
1926
1927 * configure.ac: Added libcilkrts to noconfig list when C++ is not
1928 supported.
1929 * configure: Regenerated.
1930
1931 2013-10-30 Jason Merrill <jason@redhat.com>
1932
1933 * Makefile.tpl (STAGE1_CONFIGURE_FLAGS): Pass
1934 --disable-build-format-warnings.
1935
1936 2013-10-29 Balaji V. Iyer <balaji.v.iyer@intel.com>
1937
1938 * Makefile.def: Add libcilkrts to target_modules. Make libcilkrts
1939 depend on libstdc++ and libgcc.
1940 * configure: Regenerate.
1941 * configure.ac: Added libcilkrts to target binaries. Also, restrict
1942 libcilkrts for POSIX and i*86, and x86_64 architectures.
1943 * Makefile.in: Added libcilkrts related fields to support building it.
1944
1945 2013-10-26 Jeff Law <law@redhat.com>
1946
1947 * Makefile.def (target_modules): Remove libmudflap
1948 (languages): Remove check-target-libmudflap).
1949 * Makefile.in: Rebuilt.
1950 * Makefile.tpl (check-target-libmudflap-c++): Remove.
1951 * configure.ac (target_libraries): Remove target-libmudflap.
1952 Remove checks which disabled libmudflap on some systems.
1953 * configure: Rebuilt.
1954 * libmudflap: Directory removed.
1955
1956 2013-10-16 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1957
1958 * configure.ac: Update from GCC.
1959 * configure: Regenerate.
1960
1961 2013-10-15 Hans-Peter Nilsson <hp@axis.com>
1962
1963 * src-release (do-proto-toplevel): Support subdir-path-prefixed
1964 files in SUPPORT_FILES.
1965 (SIM_SUPPORT_DIRS): New variable.
1966 (sim.tar.bz2): New rule.
1967
1968 2013-10-08 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1969
1970 * configure.ac: Update from GCC.
1971 * configure: Regenerate.
1972
1973 2013-10-01 Jeff Johnston <jjohnstn@redhat.com>
1974
1975 * COPYING.NEWLIB: Update with new copyright.
1976
1977 2013-09-21 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1978
1979 * configure.ac: Update from GCC.
1980 * configure: Regenerate.
1981
1982 2013-09-20 Alan Modra <amodra@gmail.com>
1983
1984 * libtool.m4 (_LT_ENABLE_LOCK <ld -m flags>): Remove non-canonical
1985 ppc host match. Support little-endian powerpc linux hosts.
1986
1987 2013-08-16 Joel Brobecker <brobecker@adacore.com>
1988
1989 * src-release (VER): When using $(TOOL)/common/create-version.sh,
1990 strip the "-cvs" suffix from the version number if present.
1991
1992 2013-08-12 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1993
1994 * configure.ac: Sync with GCC repo.
1995 * Makefile.def: Ditto.
1996 * configure: Regenerate.
1997 * Makefile.in: Ditto.
1998
1999 2013-07-22 Joel Brobecker <brobecker@adacore.com>
2000
2001 * src-release (VER): Use $(TOOL)/common/create-version.sh
2002 if it exists.
2003
2004 2013-06-22 Richard Sandiford <rdsandiford@googlemail.com>
2005
2006 * configure.ac (mips*-*-bsd*, mips*-*-ultrix*, mips*-*-osf*)
2007 (mips*-*-ecoff*, mips*-*-pe*, mips*-*-irix* [v4 and earlier])
2008 (mips*-*-lnews*, mips*-*-riscos*): Add gas and ld to noconfigdirs.
2009 * configure: Regenerate.
2010
2011 2013-06-01 George Thomas <george.thomas@atmel.com>
2012
2013 * include/opcode/avr.h: Rename AVR_ISA_XCH to AVR_ISA_RMW. Remove
2014 from AVR_ISA_XMEGA and add new AVR_ISA_XMEGAU
2015
2016 2013-05-06 Sandra Loosemore <sandra@codesourcery.com>
2017
2018 * COPYING.NEWLIB: Add Altera Corporation copyright.
2019
2020 2013-04-29 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2021
2022 * config.guess: Update from config repo.
2023 * config.sub: Ditto.
2024
2025 2013-04-22 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2026
2027 * Makefile.def: Sync with GCC.
2028 * Makefile.in: Regenerate.
2029
2030 2013-04-22 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2031
2032 * configure.ac: Sync with GCC.
2033 * configure: Regenerate.
2034
2035 2013-03-22 Mike Frysinger <vapier@gentoo.org>
2036
2037 * src-release (VER): Change bfd/configure.in sed to use the new
2038 `bfd/configure --version` output.
2039
2040 2013-02-15 Yufeng Zhang <yufeng.zhang@arm.com>
2041
2042 * configure.ac: Sync with GCC repo.
2043 * configure: Ditto.
2044
2045 2013-02-05 Ian Lance Taylor <iant@google.com>
2046
2047 PR go/55969
2048 * configure.ac: Disable libgo on some systems where it does not
2049 work.
2050 * configure: Rebuild.
2051
2052 2013-02-05 Alan Modra <amodra@gmail.com>
2053
2054 * configure: Regenerate after syncing config/.
2055
2056 2013-01-15 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2057
2058 * configure.ac: Sync with GCC repo.
2059 * configure: Ditto.
2060 * Makefile.def: Ditto.
2061 * Makefile.in: Ditto.
2062
2063 2013-01-11 Joel Brobecker <brobecker@adacore.com>
2064
2065 Sync with GCC, merge:
2066
2067 2013-01-09 Jason Merrill <jason@redhat.com>
2068
2069 * .gitignore: Import from gdb repository.
2070
2071 2013-01-11 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2072
2073 * config.sub: Update from config repo.
2074
2075 2013-01-11 Eric Botcazou <ebotcazou@adacore.com>
2076
2077 * Makefile.tpl (BOOT_ADAFLAGS): Remove -gnata.
2078 * Makefile.in: Regenerate.
2079
2080 2013-01-09 H.J. Lu <hongjiu.lu@intel.com>
2081
2082 * Makefile.def (configure-gcc): Depend on all-gmp.
2083 (all-gcc): Remove dependency on all-gmp.
2084 * Makefile.in: Regenerated.
2085
2086 2013-01-08 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2087
2088 * config.guess: Update from config repo.
2089 * config.sub: Ditto.
2090
2091 2013-01-07 Jeff Johnston <jjohnstn@redhat.com>
2092
2093 * COPYING.LIBGLOSS: Remove license for mips/lsi33k-stub.h which no longer
2094 exists and replace the new bfin license in its location.
2095
2096 2013-01-07 H.J. Lu <hongjiu.lu@intel.com>
2097
2098 PR gas/14899
2099 * Makefile.def (dependencies): Make all-binutils, all-gprof,
2100 all-ld and all-gold depend on all-gas.
2101 * Makefile.in: Regenerated.
2102
2103 2012-12-29 Ben Elliston <bje@gnu.org>
2104
2105 * config.guess: Update to 2012-12-29 version.
2106 * config.sub: Likewise.
2107
2108 2012-12-20 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2109
2110 * Makefile.def (install-target-libgo): Depend on
2111 install-target-libatomic. Merged from GCC repo.
2112 * Makefile.in: Regenerate.
2113
2114 2012-12-17 Jeff Johnston <jjohnstn@redhat.com>
2115
2116 * COPYING.LIBGLOSS: Add license for bfin libgloss.
2117
2118 2012-12-16 Thomas Schwinge <thomas@codesourcery.com>
2119
2120 * configure.ac (ENABLE_GOLD): Consider *-*-gnu* targets ELF.
2121 * configure: Regenerate.
2122
2123 2012-12-11 H.J. Lu <hongjiu.lu@intel.com>
2124
2125 * Makefile.def (target_modules): Add bootstrap=true and
2126 raw_cxx=true to libsanitizer.
2127 * configure.ac (bootstrap_target_libs): Add libsanitizer.
2128 * Makefile.in: Regenerated.
2129 * configure: Likewise.
2130
2131 2012-12-08 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2132
2133 * config.sub: Merge from config repo.
2134
2135 2012-11-30 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2136
2137 * configure.ac: Merge from GCC.
2138 * Makefile.tpl: Ditto.
2139 * Makefile.in: Ditto.
2140 * configure: Ditto.
2141
2142 2012-11-28 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2143
2144 * configure.ac (noconfigdirs): Merge from GCC.
2145 * configure: Regenerate.
2146
2147 2012-11-19 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2148
2149 * config.sub (arm): Merge from upstream: Handle armv[6-8] targets.
2150
2151 2012-11-14 Roland McGrath <mcgrathr@google.com>
2152
2153 * configure.ac (ENABLE_GOLD): Consider *-*-nacl* targets ELF.
2154 * configure: Regenerate.
2155
2156 2012-11-13 Richard Henderson <rth@redhat.com>
2157
2158 * configure.ac: Move libsanitizer logic to subdirectory.
2159 * configure: Regenerate.
2160
2161 2012-11-13 Dodji Seketeli <dodji@redhat.com>
2162
2163 * configure.ac: Enable libsanitizer just on x86 linux for now.
2164 * configure: Re-generate.
2165
2166 2012-11-13 David Edelsohn <dje.gcc@gmail.com>
2167
2168 * configure.ac: Merge libquadmath sections.
2169 * configure: Regenerate.
2170
2171 2012-11-12 Wei Mi <wmi@google.com>
2172
2173 * configure.ac: Add libsanitizer to target_libraries.
2174 * Makefile.def: Ditto.
2175 * configure: Regenerate.
2176 * Makefile.in: Regenerate.
2177
2178 2012-11-03 H.J. Lu <hongjiu.lu@intel.com>
2179
2180 * configure: Regenerated.
2181
2182 2012-11-03 Robert Mason <rbmj@verizon.net>
2183
2184 * configure.ac: add --disable-libstdcxx configure option
2185 and handle defaulted state only for VxWorks, ARM-wince-pe and AVR.
2186
2187 2012-10-24 Corinna Vinschen <corinna@vinschen.de>
2188
2189 * configure.ac (FLAGS_FOR_TARGET,target=cygwin): Fix for building
2190 against Mingw64 w32api.
2191 * configure: Regenerate.
2192
2193 2012-10-23 Eric Botcazou <ebotcazou@adacore.com>
2194
2195 PR bootstrap/54820
2196 * configure.ac (have_static_libs): Force 'no' for GCC version < 4.5.
2197 * configure: Regenerate.
2198
2199 2012-10-22 Eric Botcazou <ebotcazou@adacore.com>
2200
2201 PR bootstrap/54820
2202 * Makefile.tpl (STAGE1_FLAGS_TO_PASS): New variable.
2203 (all-[+prefix+][+module+]): Pass stage1_args to sub-makes.
2204 (all-stage[+id+]-[+prefix+][+module+]): Likewise, if prev is false.
2205 (clean-stage[+id+]-[+prefix+][+module+]): Likewise, if prev is false.
2206 (host_modules): Set stage1_args to STAGE1_FLAGS_TO_PASS.
2207 * Makefile.in: Regenerate.
2208 * configure.ac (have_static_libs): New variable and associated check.
2209 (stage1-ldflags): Move to after stage1_libs and set to -static-libstdc++
2210 -static-libgcc if stage1_libs is empty and have_static_libs is yes.
2211 * configure: Regenerate.
2212
2213 2012-10-10 David Holsgrove <david.holsgrove@xilinx.com>
2214
2215 * config.guess, config.sub: Include updated version from
2216 config-patches. Adds microblaze little endian support.
2217
2218 2012-09-28 Ian Lance Taylor <iant@google.com>
2219
2220 * Makefile.def: Make all-target-libgo depend on
2221 all-target-libbacktrace.
2222 * Makefile.in: Rebuild.
2223
2224 2012-09-26 Ian Lance Taylor <iant@google.com>
2225
2226 * Makefile.def: Make all-gcc depend on all-libbacktrace.
2227 * Makefile.in: Rebuild.
2228
2229 2012-09-06 Diego Novillo <dnovillo@google.com>
2230
2231 * configure.ac: Bump minimum GMP version to 4.2.3.
2232 * configure: Re-generate.
2233
2234 2012-09-05 Georg-Johann Lay <avr@gjlay.de>
2235
2236 PR target/54461
2237 * configure.ac (noconfigdirs,target=avr-*-*): Add target-newlib,
2238 target-libgloss if not configured --with-avrlibc=no.
2239 * configure: Regenerate.
2240
2241 2012-09-04 Jason Merrill <jason@redhat.com>
2242
2243 * configure.ac: Fix --enable-languages=all.
2244
2245 2012-09-03 Richard Guenther <rguenther@suse.de>
2246
2247 PR bootstrap/54138
2248 * configure.ac: Re-organize ISL / CLOOG checks to allow
2249 disabling with either --without-isl or --without-cloog.
2250 * configure: Regenerated.
2251
2252 2012-09-03 Georg-Johann Lay <avr@gjlay.de>
2253
2254 * configure.ac (noconfigdirs,target=avr): Add target-libquadmath.
2255 * configure: Regenerate.
2256
2257 2012-09-21 Steve Ellcey <sellcey@mips.com>
2258
2259 * configure.ac: Add mips*-mti-elf* target.
2260 * configure: Regenerate.
2261
2262 2012-09-19 Ian Lance Taylor <iant@google.com>
2263
2264 * configure.ac (host_libs): Add libbacktrace.
2265 (target_libraries): Add libbacktrace.
2266 * Makefile.def (host_modules): Add libbacktrace.
2267 (target_modules): Likewise.
2268 * configure, Makefile.in: Rebuild.
2269
2270 2012-09-15 Jiong Wang <jiwang@tilera.com>
2271
2272 * configure.ac (ENABLE_GOLD): support tilegx*
2273 * configure: rebuild
2274
2275 2012-09-14 David Edelsohn <dje.gcc@gmail.com>
2276
2277 PR target/38607
2278 Merge upstream change.
2279 * libtool.m4 (_LT_COMPILER_PIC): Add -fPIC to GCC and GXX for AIX.
2280
2281 * configure.ac: Add target-libquadmath to noconfigdirs for AIX.
2282 Add libgomp*.o to compare_exclusions for AIX.
2283 * configure: Regenerate.
2284
2285 2012-08-26 H.J. Lu <hongjiu.lu@intel.com>
2286
2287 PR binutils/4970
2288 * Makefile.def (host_modules): Rmove lib_path=.libs from bfd
2289 and opcodes.
2290 * Makefile.in: Regenerated.
2291
2292 2012-08-14 Diego Novillo <dnovillo@google.com>
2293
2294 Merge from cxx-conversion branch.
2295
2296 * Makefile.tpl (STAGE[+id+]_CXXFLAGS): Remove
2297 POSTSTAGE1_CONFIGURE_FLAGS.
2298 * Makefile.in: Regenerate.
2299 * configure.ac (ENABLE_BUILD_WITH_CXX): Remove. Update all users.
2300 Force C++ when bootstrapping.
2301 * configure: Regenerate.
2302
2303 2012-07-06 Richard Guenther <rguenther@suse.de>
2304
2305 * Makefile.def (cloog): Pass $(HOST_GMPINC) and $(HOST_ISLINC)
2306 as CPPFLAGS, pass path to built gmp as LDFLAGS, always use
2307 --with-gmp=system.
2308 * Makefile.in: Regenerated.
2309 * configure: Likewise.
2310
2311 2012-07-06 Richard Guenther <rguenther@suse.de>
2312
2313 * configure.ac (extra_isl_gmp_configure_flags): Initialize and subst.
2314 * Makefile.def (isl): Use extra_isl_gmp_configure_flags and
2315 supply V=1 as extra_make_flags.
2316 * configure: Regenerated.
2317 * Makefile.in: Likewise.
2318
2319 2012-07-03 Richard Guenther <rguenther@suse.de>
2320
2321 * Makfile.def (isl): Remove not necessary extra_exports and
2322 extra_make_flags.
2323 (cloog): Use $$CPPFLAGS instead of ${CPPFLAGS}.
2324 * Makefile.in: Regenerated.
2325
2326 2012-07-03 Richard Guenther <rguenther@suse.de>
2327
2328 * Makefile.def (cloog): Add V=1 to extra_make_flags.
2329 * configure.ac: If either the ISL or the CLooG check failed
2330 do not try to build in-tree versions.
2331 * Makefile.in: Regenerated.
2332 * configure: Regenerated.
2333
2334 2012-07-02 Richard Guenther <rguenther@suse.de>
2335 Michael Matz <matz@suse.de>
2336 Tobias Grosser <tobias@grosser.es>
2337 Sebastian Pop <sebpop@gmail.com>
2338
2339 * Makefile.def: Add ISL host module, remove PPL host module.
2340 Adjust ClooG host module to use the proper ISL.
2341 * Makefile.tpl: Pass ISL include flags instead of PPL ones.
2342 * configure.ac: Include config/isl.m4. Add ISL host library,
2343 remove PPL. Remove PPL configury, add ISL configury, adjust
2344 ClooG configury.
2345 * Makefile.in: Regenerated.
2346 * configure: Likewise.
2347
2348 2012-07-02 Richard Guenther <rguenther@suse.de>
2349
2350 Merge from graphite branch
2351 2011-07-21 Tobias Grosser <tobias@grosser.es>
2352
2353 * configure: Regenerated.
2354 * config/cloog.m4: Remove support for CLooG-ppl and CLooG-parma,
2355 both cloog.org and legacy versions. The only supported version will
2356 be CLooG with the isl backend.
2357
2358 2011-07-21 Tobias Grosser <tobias@grosser.es>
2359
2360 * configure: Regenerated.
2361 * configure.ac: Require cloog isl 0.17.0
2362
2363 2011-07-21 Tobias Grosser <tobias@grosser.es>
2364
2365 * configure: Regenerated.
2366 * config/cloog.m4: Do not define CLOOG_ORG
2367
2368 2012-06-29 Steven Bosscher <steven@gcc.gnu.org>
2369
2370 * configure.ac: Skip C if explicitly selected.
2371 * configure: Regenerate.
2372
2373 2012-06-28 Christophe Lyon <christophe.lyon@st.com>
2374
2375 * configure.ac (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Make sure
2376 they contain -O2.
2377 * configure: Regenerate.
2378
2379 2012-06-20 Jason Merrill <jason@redhat.com>
2380
2381 * Makefile.tpl (check-target-libgomp-c++): New.
2382 (check-target-libitm-c++): New.
2383 * Makefile.def (c++): Add them.
2384 * Makefile.in: Regenerate.
2385
2386 2012-05-16 Olivier Hainque <hainque@adacore.com>
2387
2388 * Makefile.tpl (gcc-no-fixedincludes): Rename into ...
2389 (gcc-install-no-fixedincludes): Now forwarder to local target in gcc/
2390 (install-no-fixedincludes): Adjust accordingly.
2391 * Makefile.in: Regenerate.
2392
2393 2012-05-09 Nick Clifton <nickc@redhat.com>
2394 Paul Smith <psmith@gnu.org>
2395
2396 PR bootstrap/50461
2397 * configure.ac (mpfr-dir): When using in-tree MPFR sources
2398 allow for the fact that from release v3.1.0 of MPFR the source
2399 files were moved into a src sub-directory.
2400 * configure: Regenerate.
2401
2402 2012-05-07 Janne Blomqvist <jb@gcc.gnu.org>
2403
2404 * configure.ac: Bump minimum MPFR version to 2.4.0.
2405 * configure: Regenerated.
2406
2407 2012-05-01 Richard Henderson <rth@redhat.com>
2408
2409 * Makefile.def (libatomic): New target_module.
2410 * configure.ac (target_libraries): Add libatomic.
2411 (noconfigdirs): Check if libatomic is supported.
2412 * Makefile.in, configure: Rebuild.
2413
2414 2012-05-15 H.J. Lu <hongjiu.lu@intel.com>
2415
2416 Merge upstream change
2417 * libtool.m4 (_LT_ENABLE_LOCK): Support x32.
2418
2419 2011-11-21 Andreas Tobler <andreast@fgznet.ch>
2420
2421 * libtool.m4: Additional FreeBSD 10 fixes.
2422
2423 2012-06-28 Christophe Lyon <christophe.lyon@st.com>
2424
2425 * configure.ac (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Make sure
2426 they contain -O2.
2427 * configure: Regenerate.
2428
2429 2012-05-14 Catherine Moore <clm@codesourcery.com>
2430
2431 * NEWS: Mention PowerPC VLE port.
2432
2433 2012-05-11 Mike Frysinger <vapier@gentoo.org>
2434
2435 * MAINTAINERS (config/): Move to intl/ section.
2436 (compile; depcomp; install-sh; missing; ylwrap): Likewise.
2437
2438 2012-05-09 Nick Clifton <nickc@redhat.com>
2439 Paul Smith <psmith@gnu.org>
2440
2441 PR bootstrap/50461
2442 * configure.ac (mpfr-dir): When using in-tree MPFR sources
2443 allow for the fact that from release v3.1.0 of MPFR the source
2444 files were moved into a src sub-directory.
2445 * configure: Regenerate.
2446
2447 2012-05-02 Roland McGrath <mcgrathr@google.com>
2448
2449 * configure.ac (ENABLE_GOLD): Consider *-*-nacl* targets ELF.
2450 * configure: Regenerate.
2451
2452 2012-04-25 Joel Brobecker <brobecker@adacore.com>
2453
2454 * config.sub: Update to 2012-04-18 version from official repo.
2455
2456 2012-03-19 Tristan Gingold <gingold@adacore.com>
2457
2458 * configure.ac (ia64*-*-*vms*): Add support for ld.
2459 * configure: Regenerate.
2460
2461 2012-03-14 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2462
2463 * configure.ac (enable_libgomp): Remove *-*-irix6*.
2464 (unsupported_languages): Remove mips-sgi-irix6.*.
2465 (noconfigdirs): Don't add ${libgcj} for mips*-*-irix6*.
2466 (with_stabs): Remove.
2467 * configure: Regenerate.
2468
2469 2012-03-12 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2470
2471 * configure.ac (enable_libgomp): Remove *-*-osf*.
2472 (with_stabs): Remove alpha*-*-osf*.
2473 * configure: Regenerate.
2474
2475 2012-03-09 Jeff Johnston <jjohnstn@redhat.com>
2476
2477 * COPYING.NEWLIB: Modify DJ Delorie license to include
2478 modification rights in clause as permitted by DJ Delorie.
2479 * COPYING.LIBGLOSS: Ditto.
2480
2481 2012-03-09 Jeff Johnston <jjohnstn@redhat.com>
2482
2483 * COPYING.NEWLIB: Remove two unused licenses.
2484
2485 2012-03-05 Tristan Gingold <gingold@adacore.com>
2486
2487 * configure.ac: Enable gdb and readline for ia64*-*-*vms*.
2488 * configure: Regenerate.
2489
2490 2012-02-21 Joern Rennecke <joern.rennecke@embecosm.com>
2491
2492 * COPYING.NEWLIB: Add Adapteva notice.
2493 * COPYING.LIBGLOSS: Add Adapteva notice.
2494
2495 2011-12-18 Eric Botcazou <ebotcazou@adacore.com>
2496
2497 * configure: Regenerate.
2498
2499 2011-12-15 Jeff Johnston <jjohnstn@redhat.com>
2500
2501 * COPYING.LIBGLOSS: Add GPL with exception license.
2502
2503 2011-11-09 Roland McGrath <mcgrathr@google.com>
2504
2505 * configure.ac: Add tool checks for READELF and READELF_FOR_TARGET.
2506 * configure: Rebuild.
2507 * Makefile.def (flags_to_pass): Add READELF_FOR_TARGET.
2508 * Makefile.tpl (READELF, READELF_FOR_TARGET): New variables.
2509 (HOST_EXPORTS): Add READELF, READELF_FOR_TARGET.
2510 (BASE_FLAGS_TO_PASS): Add READELF_FOR_TARGET.
2511 (BASE_TARGET_EXPORTS, EXTRA_HOST_FLAGS, EXTRA_TARGET_FLAGS):
2512 Add READELF.
2513 * Makefile.in: Rebuild.
2514
2515 2011-11-08 Richard Henderson <rth@redhat.com>
2516
2517 * configure.ac: Test for libitm directory present first.
2518
2519 * configure.ac: Adjust srcdir for running libitm/configure.tgt.
2520
2521 * configure.ac: Test libitm/configure.tgt to disable libitm.
2522 * configure: Rebuild.
2523
2524 2011-11-02 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2525
2526 * Makefile.tpl (EXTRA_GCC_FLAGS): Remove LIBGCC2_CFLAGS,
2527 LIBGCC2_DEBUG_CFLAGS, LIBGCC2_INCLUDES.
2528 * Makefile.in: Regenerate.
2529
2530 2011-11-01 DJ Delorie <dj@redhat.com>
2531
2532 * configure.ac (rl78-*-*) New case.
2533 * configure: Regenerate.
2534
2535 2011-11-01 DJ Delorie <dj@redhat.com>
2536
2537 * config.sub: Update to version 2011-10-29 (added rl78)
2538
2539 2011-10-27 Nick Clifton <nickc@redhat.com>
2540
2541 * config.sub: Import these changes from the config project:
2542
2543 2011-10-08 Joern Rennecke <joern.rennecke@embecosm.com>
2544 Ben Elliston <bje@gnu.org>
2545
2546 * config.sub (epiphany): New.
2547
2548 2011-09-09 Linas Vepstas <linasvepstas@gmail.com>
2549 Ben Elliston <bje@gnu.org>
2550
2551 * config.sub (hexagon, hexagon-*): New.
2552
2553 2011-08-23 Roland McGrath <mcgrathr@google.com>
2554
2555 * config.sub: Rename 32eb to be32, 32el to le32, 64el to le64, and
2556 64eb to be64.
2557
2558 2011-08-16 Roland McGrath <mcgrathr@google.com>
2559
2560 * config.sub (32eb, 32el, 64eb, 64el): New (pseudo-)CPUs.
2561 (nacl): Grok as alias for 32el-unknown-nacl.
2562
2563 2011-08-19 Joel Brobecker <brobecker@adacore.com>
2564
2565 * src-release (GDB_SUPPORT_DIRS): Add 'cpu'.
2566
2567 2011-08-14 Yao Qi <yao@codesourcery.com>
2568
2569 Merge from gcc:
2570
2571 2011-08-14 Yao Qi <yao@codesourcery.com>
2572 * configure.ac (tic6x-*-*): Remove gdb from noconfigdirs.
2573 * configure: Regenerate.
2574
2575 2011-07-26 Ian Lance Taylor <iant@google.com>
2576
2577 Merge from gcc:
2578
2579 2011-07-26 Ian Lance Taylor <iant@google.com>
2580 * configure.ac: Set have_compiler based on whether gcc directory
2581 exists, rather than on whether gcc is in configdirs.
2582 * configure: Rebuild.
2583
2584 2011-07-20 David Edelsohn <dje.gcc@gmail.com>
2585 * Makefile.tpl (POSTSTAGE1_CONFIGURE_FLAGS): Add libsupc++ to
2586 link directories.
2587 * Makefile.in: Rebuild.
2588
2589 2011-07-20 Ian Lance Taylor <iant@google.com>
2590 PR bootstrap/49787
2591 * configure.ac: Move --enable-bootstrap handling earlier in file.
2592 If --enable-bootstrap and either --enable-build-with-cxx or
2593 --enable-build-poststage1-with-cxx, enable C++ automatically.
2594 * configure: Rebuild.
2595
2596 2011-07-19 Ian Lance Taylor <iant@google.com>
2597 * configure.ac: Add --enable-build-poststage1-with-cxx. If set,
2598 make C++ a boot_language. Set and substitute
2599 POSTSTAGE1_CONFIGURE_FLAGS.
2600 * Makefile.tpl (POSTSTAGE1_CONFIGURE_FLAGS): New variable.
2601 (STAGE[+id+]_CONFIGURE_FLAGS): Add $(POSTSTAGE1_CONFIGURE_FLAGS).
2602 * configure, Makefile.in: Rebuild.
2603
2604 2011-07-16 Jason Merrill <jason@redhat.com>
2605 * Makefile.def (language=c++): Add check-c++0x and
2606 check-target-libmudflap-c++.
2607 * Makefile.tpl (check-target-libmudflap-c++): New.
2608 * Makefile.in: Regenerate.
2609
2610 2011-07-16 Matthias Klose <doko@ubuntu.com>
2611 * Makefile.tpl (EXTRA_CONFIGARGS_LIBJAVA): Define.
2612 * Makefile.def (target_modules/libjava): Pass
2613 $(EXTRA_CONFIGARGS_LIBJAVA).
2614 * configure.ac: Pass --disable-static in EXTRA_CONFIGARGS_LIBJAVA,
2615 if not configured with --enable-static-libjava.
2616 * Makefile.in: Regenerate.
2617 * configure: Likewise.
2618
2619 2011-06-22 Hans-Peter Nilsson <hp@axis.com>
2620 PR regression/47836
2621 PR bootstrap/23656
2622 PR other/47733
2623 PR bootstrap/49247
2624 PR c/48825
2625 * configure.ac (target_libraries): Remove target-libiberty.
2626 Remove case-statement setting skipdirs=target-libiberty for
2627 multiple targets. Remove checking target_configdirs and
2628 removing target-libiberty but keeping target-libgcc if
2629 otherwise empty.
2630 * Makefile.def (target_modules): Don't add libiberty.
2631 (dependencies): Remove all traces of target-libiberty.
2632 * configure, Makefile.in: Regenerate.
2633
2634 2011-07-22 Jason Merrill <jason@redhat.com>
2635
2636 * Makefile.def (language=c++): Add check-c++0x and
2637 check-target-libmudflap-c++.
2638 * Makefile.tpl (check-target-libmudflap-c++): New.
2639 * Makefile.in: Regenerate.
2640
2641 2011-07-18 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2642
2643 * configure: Regenerate.
2644
2645 2011-07-07 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2646
2647 PR target/39150
2648 * configure.ac (i[3456789]86-*-solaris2*): Also accept
2649 x86_64-*-solaris2.1[0-9]*.
2650 * configure: Regenerate.
2651
2652 2011-06-13 Walter Lee <walt@tilera.com>
2653
2654 * configure.ac (tilepro-*-*) New case.
2655 (tilegx-*-*): Likewise.
2656 * configure: Regenerate.
2657
2658 2011-06-06 Nick Clifton <nickc@redhat.com>
2659
2660 * config.sub: Sync from upstream.
2661
2662 2011-05-08 Doug Kwan <dougkwan@google.com>
2663
2664 Merge from gcc:
2665
2666 2011-05-08 Doug Kwan <dougkwan@google.com>
2667
2668 * configure.ac: Propagate LDFLAGS_FOR_TARGET.
2669 * configure: Regenerated.
2670 * Makefile.tpl (LDFLAGS_FOR_TARGET): Use LDFLAGS_FOR_TARGET
2671 value from configure.
2672 * Makefile.in: Regenerated.
2673
2674 2011-05-05 Joseph Myers <joseph@codesourcery.com>
2675
2676 * configure.ac (alpha*-dec-osf*, i[[3456789]]86-*-rdos*,
2677 sh*-*-pe|mips*-*-pe|arm-wince-pe, sparc-*-sunos4*, *-*-aix*,
2678 *-*-beos*, *-*-chorusos, *-*-dragonfly*, *-*-freebsd*, *-*-linux*
2679 | *-*-gnu* | *-*-k*bsd*-gnu | *-*-kopensolaris*-gnu, *-*-lynxos*,
2680 *-*-mingw*, *-*-netbsd*, *-*-netware*, *-*-tpf*, *-*-uclinux*,
2681 *-*-vxworks*): Disable newlib and libgloss in separate case
2682 statement.
2683 (i[[3456789]]86-*-linux*): Move logic allowing newlib to be built
2684 to separate case statement.
2685 (*-*-chorusos, *-*-dragonfly*, *-*-freebsd*, *-*-netbsd*,
2686 *-*-netware*, *-*-tpf*, *-*-uclinux*, *-*-vxworks*,
2687 alpha*-dec-osf*, alpha*-*-linux*, am33_2.0-*-linux*, sh-*-linux*,
2688 sh*-*-pe|mips*-*-pe|*arm-wince-pe, arm-*-coff, arm-*-elf* |
2689 arm*-*-eabi*, arm*-*-linux-gnueabi, arm*-*-symbianelf*, avr-*-*,
2690 bfin-*-*, cris-*-* | crisv32-*-*, frv-*-*, i[[3456789]]86-*-coff |
2691 i[[3456789]]86-*-elf, i[[3456789]]86-w64-mingw*,
2692 i[[3456789]]86-*-mingw*, x86_64-*-mingw*,
2693 i[[3456789]]86-*-interix*, i[[3456789]]86-*-beos*,
2694 i[[3456789]]86-*-rdos*, m32r-*-*,
2695 m68hc11-*-*|m6811-*-*|m68hc12-*-*|m6812-*-*, m68k-*-elf*, m68*-*-*
2696 | fido-*-*, powerpc-*-aix*, powerpc-*-beos*, powerpc-*-eabi,
2697 powerpc-*-eabi* | powerpcle-*-eabi* | powerpc-*-rtems*,
2698 rs6000-*-lynxos*, rs6000-*-aix*, mips*-*-linux*, sparclet-*-aout*
2699 | sparc86x-*-*, sparc-*-elf*, sparc64-*-elf*, sparclite-*-*,
2700 sparc-*-sunos4*, sparc-*-solaris* | sparc64-*-solaris* |
2701 sparcv9-*-solaris*, *-*-linux* | *-*-gnu* | *-*-k*bsd*-gnu |
2702 *-*-kopensolaris*-gnu, *-*-lynxos*, *-*-*): Don't disable newlib
2703 and libgloss in main case over targets. Remove most empty cases
2704 in main case over targets.
2705 * configure: Regenerate.
2706
2707 2011-05-04 Joseph Myers <joseph@codesourcery.com>
2708
2709 * configure.ac: Remove code setting special library locations for
2710 hppa*64*-*-hpux11*. Remove code setting compiler for
2711 sparc-sun-solaris2*.
2712 * configure: Regenerate.
2713
2714 2011-05-04 Joseph Myers <joseph@codesourcery.com>
2715
2716 * configure.ac: Separate libgloss_dir settings from general case
2717 over targets.
2718 * configure: Regenerate.
2719
2720 2011-04-28 Joseph Myers <joseph@codesourcery.com>
2721
2722 * configure.ac (*-*-dragonfly*, *-*-freebsd*, *-*-netbsd*,
2723 alpha*-dec-osf*, alpha*-*-linux*, alpha*-*-*, sh-*-linux*,
2724 arm-*-elf* | arm*-*-eabi*, arm*-*-linux-gnueabi, frv-*-*): Remove
2725 cases in libgcj-disabling case statement.
2726 (hppa*64*-*-linux*): Set unsupported_languages instead of
2727 disabling target-zlib.
2728 (hppa*64*-*-*): Restrict case in libgcj-disabling case statement
2729 to hppa*64*-*-hpux*.
2730 (hppa*-*-*): Restrict case in libgcj-disabling case statement to
2731 hppa*-*-hpux*.
2732 (ia64*-*-elf*, ia64*-**-hpux*, i[[3456789]]86-*-elf,
2733 i[[3456789]]86-*-linux*, *-*-cygwin*, i[[3456789]]86-*-interix*,
2734 i[[3456789]]86-*-solaris2*, m32r-*-*, m68k-*-elf*, m68*-*-* |
2735 fido-*-*, powerpc-*-eabi, powerpc-*-eabi* | powerpcle-*-eabi* |
2736 powerpc-*-rtems*, mips*-*-linux*, mips*-*-*, sh-*-* | sh64-*-*,
2737 sparc-*-elf*, sparc64-*-elf*, sparc-*-solaris* |
2738 sparc64-*-solaris* | sparcv9-*-solaris*, *-*-linux* | *-*-gnu* |
2739 *-*-k*bsd*-gnu | *-*-kopensolaris*-gnu, *-*-*): Remove cases in
2740 libgcj-disabling case statement.
2741 * configure: Regenerate.
2742
2743 2011-04-28 Joseph Myers <joseph@codesourcery.com>
2744
2745 * configure.ac: Disable Java for targets not supporting libffi.
2746 (*-*-chorusos, *-*-kaos*, am33_2.0-*-linux*, sh*-*-pe|mips*-*-pe):
2747 Remove cases in Java-disabling statement.
2748 (*arm-wince-pe): Change to arm-wince-pe.
2749 (arc-*-*, arm-*-coff, arm-*-pe*, arm-*-riscix*, avr-*-*): Remove
2750 cases in Java-disabling statement.
2751 (bfin-*-*): Don't disable Java again.
2752 (c4x-*-* | tic4x-*-*, tic54x-*-*, cr16-*-*, d10v-*-*, d30v-*-*,
2753 fr30-*-elf*, moxie-*-*, h8300*-*-*, h8500-*-*, hppa1.1-*-osf* |
2754 hppa1.1-*-bsd*, hppa*-*-*elf* | hppa*-*-lites* | hppa*-*-openbsd*,
2755 hppa*-*-pro*, i960-*-*, i[[3456789]]86-*-coff,
2756 i[[3456789]]86-*-pe, i[[3456789]]86-*-sco3.2v5*,
2757 i[[3456789]]86-*-sco*, i[[3456789]]86-*-sysv4*,
2758 i[[3456789]]86-*-beos*, i[[3456789]]86-*-rdos*,
2759 m68hc11-*-*|m6811-*-*|m68hc12-*-*|m6812-*-*): Remove cases in
2760 Java-disabling statement.
2761 (mmix-*-*): Don't disable Java again.
2762 (mt-*-*, powerpc*-*-winnt* | powerpc*-*-pe*, powerpcle-*-solaris*,
2763 powerpc-*-beos*, rs6000-*-lynxos*, rs6000-*-*, m68k-apollo-*,
2764 microblaze*, mips*-sde-elf*, mips*-*-irix5*, mips*-*-bsd*,
2765 sparclet-*-aout* | sparc86x-*-*, sparclite-*-*, sparc-*-sunos4*,
2766 tic6x-*-*, v810-*-*, vax-*-*): Remove cases in Java-disabling
2767 statement.
2768 * configure: Regenerate.
2769
2770 2011-04-28 Joseph Myers <joseph@codesourcery.com>
2771
2772 Merge from GCC:
2773
2774 2011-04-18 Jack Howarth <howarth@bromo.med.uc.edu>
2775
2776 PR lto/48086
2777 * configure.ac: Re-enable LTO on *-apple-darwin9*.
2778 * configure: Regenerate.
2779
2780 2011-04-28 Joseph Myers <joseph@codesourcery.com>
2781
2782 * configure.ac: Separate cases disabling Java and Java libraries
2783 from general case over targets.
2784 * configure: Regenerate.
2785
2786 2011-04-06 Joseph Myers <joseph@codesourcery.com>
2787
2788 * configure.ac (build_tools): Remove build-byacc.
2789 (host_libs): Remove mmalloc.
2790 (host_tools): Remove byacc make patch prms send-pr ash bash bzip2
2791 autoconf automake libtool diff rcs fileutils shellutils time
2792 textutils wdiff find uudecode hello tar gzip indent recode release
2793 sed perl gawk findutils gettext zip.
2794 (libgcj): Remove target-qthreads.
2795 (target_tools): Remove target-examples target-gperf.
2796 (YACC): Don't handle building byacc.
2797 * configure: Regenerate.
2798 * Makefile.def (ash, autoconf, automake, bash, byacc, bzip2, diff,
2799 dosutils, examples, fileutils, find, findutils, gawk, gettext,
2800 gnuserv, gperf, gzip, hello, indent, libtool, make, mmalloc,
2801 patch, perl, prms, qthreads, rcs, recode, release, sed, send-pr,
2802 shellutils, tar, textutils, time, uudecode, wdiff, zip): Don't
2803 handle building components.
2804 * Makefile.in: Regenerate.
2805
2806 2011-04-05 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
2807
2808 * config.sub: Sync from upstream.
2809
2810 2011-04-01 Joseph Myers <joseph@codesourcery.com>
2811
2812 * configure.ac (avr-*-*): Add comment about why libssp is disabled.
2813 (microblaze*): Don't disable libssp.
2814 * configure: Regenerate.
2815
2816 2011-04-01 Joseph Myers <joseph@codesourcery.com>
2817
2818 * configure.ac: Remove code setting CONFIG_SHELL, config_shell and
2819 moveifchange.
2820 * configure: Regenerate.
2821 * Makefile.tpl: Use @SHELL@ not @config_shell@.
2822 * Makefile.in: Regenerate.
2823
2824 2011-04-01 Joseph Myers <joseph@codesourcery.com>
2825
2826 * configure.ac (*-*-sysv4*): Don't enable libgomp.
2827 (alpha*-*-*vms*, i[[34567]]86-*-sco3.2v5*, mn10300-*-*,
2828 powerpc-*-chorusos*, powerpc*-*-eabi*, powerpc*-*-sysv*,
2829 powerpc*-*-kaos*, s390x-ibm-tpf*, sparc64-*-elf*, v850*-*-*,
2830 xtensa*-*-elf*, *-*-beos*, *-*-elf*, *-*-netware*, *-*-rtems*,
2831 *-*-sysv[[45]]*, *-*-vxworks*, *-wrs-windiss): Remove
2832 md_exec_prefix cases.
2833 * configure: Regenerate.
2834
2835 2011-04-01 Joseph Myers <joseph@codesourcery.com>
2836
2837 * configure.ac: Separate cases disabling target-libssp,
2838 target-libiberty, target-libstdc++-v3 and Fortran from general
2839 case over targets.
2840 * configure: Regenerate.
2841
2842 2011-04-01 Joseph Myers <joseph@codesourcery.com>
2843
2844 * configure.ac (*-*-chorusos): Don't disable libgcj.
2845 (*-*-freebsd[[12]] | *-*-freebsd[[12]].* | *-*-freebsd*aout*):
2846 Remove case.
2847 (*-*-kaos*): Don't disable GCC libraries, zlib or fastjar.
2848 (arm-*-coff): Don't disable libgcj.
2849 (arm*-*-linux-gnueabi): Remove useless assignment.
2850 (arm-*-riscix*): Don't disable libgcj.
2851 (bfin-*-*): Don't enable target-bsp and target-cygmon depending on
2852 configuration.
2853 (c4x-*-* | tic4x-*-*): Don't disable GCC libraries.
2854 (c54x*-*-*): Remove case.
2855 (tic54x-*-*): Don't disable GCC or GCC libraries.
2856 (cris-*-* | crisv32-*-*): Don't handle *-*-aout. Change *-*-elf
2857 to *.
2858 (d10v-*-*): Don't disable GCC libraries.
2859 (d30v-*-*): Don't disable libgcj.
2860 (h8500-*-*): Don't disable GCC libraries.
2861 (i960-*-*): Don't disable libgcj.
2862 (i[[3456789]]86-*-linux*): Don't handle *-*-*libc1*.
2863 (i[[3456789]]86-*-sco3.2v5*, i[[3456789]]86-*-sco*,
2864 i[[3456789]]86-*-sysv4*, i[[3456789]]86-*-beos*): Don't disable
2865 libgcj.
2866 (m68k-*-coff*): Remove case.
2867 (mmix-*-*): Don't disable libgloss on host.
2868 (mn10200-*-*, mn10300-*-*): Remove cases.
2869 (powerpc*-*-winnt* | powerpc*-*-pe*, powerpcle-*-solaris*,
2870 powerpc-*-beos*, m68k-apollo-*, mips*-*-irix5*, mips*-*-bsd*):
2871 Don't disable libgcj.
2872 (romp-*-*): Remove case.
2873 (sparclite-*-*, sparc-*-sunos4*): Don't disable libgcj.
2874 (sparc-*-solaris2.[[0-6]] | sparc-*-solaris2.[[0-6]].*): Remove
2875 case.
2876 (v810-*-*): Don't disable GCC libraries.
2877 (v850*-*-*, vax-*-vms, xtensa*-*-*): Remove cases.
2878 (ip2k-*-*): Don't disable GCC libraries.
2879 * configure: Regenerate.
2880
2881 2011-03-28 Joseph Myers <joseph@codesourcery.com>
2882
2883 * configure.ac (i[[3456789]]86-*-msdosdjgpp*): Don't disable
2884 libffi on host.
2885 (x86_64-*-mingw*, i[[3456789]]86-*-mingw32*): Don't disable newlib
2886 on host.
2887 (c54x*-*-* | tic54x-*-*): Don't disable newlib on host.
2888 * configure: Regenerate.
2889
2890 2011-03-26 John Marino <binutils@marino.st>
2891
2892 * configure.ac: Add support for *-*-dragonfly*
2893 * configure: Regenerate.
2894
2895 2011-03-25 Joseph Myers <joseph@codesourcery.com>
2896
2897 * configure.ac (native_only): Remove.
2898 (i[[3456789]]86-*-msdosdjgpp*): Don't disable expect dejagnu
2899 send-pr uudecode guile gnuserv on host.
2900 (x86_64-*-mingw*): Don't disable expect dejagnu autoconf automake
2901 send-pr rcs guile perl texinfo libtool on host.
2902 (i[[3456789]]86-*-mingw32*): Don't disable expect dejagnu autoconf
2903 automake send-pr rcs guile perl texinfo libtool on host.
2904 (*-*-cygwin*, *-*-netbsd*): Remove host cases.
2905 (*-*-kaos*): Don't disable target-examples target-gperf on target.
2906 (alpha*-dec-osf*): Don't disable fileutils on target.
2907 (sh*-*-pe|mips*-*-pe|*arm-wince-pe): Don't disable target-examples
2908 texinfo send-pr expect dejagnu on target.
2909 (arm-*-elf* | arm*-*-eabi*, arm*-*-linux-gnueabi): Don't disable
2910 target-qthreads on target.
2911 (hppa*-hp-hpux11*, hppa*-*-*): Don't disable shellutils on target.
2912 (ia64*-*-elf*, ia64*-*-*vms*): Don't disable mmalloc on target.
2913 (i[[3456789]]86-w64-mingw*, i[[3456789]]86-*-mingw*,
2914 x86_64-*-mingw*): Don't disable expect on target.
2915 (*-*-cygwin*): Don't disable target-gperf on target.
2916 (powerpc*-*-winnt* | powerpc*-*-pe*): Don't disable make expect
2917 gnuserv on target.
2918 (powerpcle-*-solaris*): Don't disable make expect gnuserv on
2919 target.
2920 * configure: Regenerate.
2921
2922 2011-03-25 Joseph Myers <joseph@codesourcery.com>
2923
2924 * configure.ac (target_tools): Remove target-groff.
2925 (native_only): Remove target-groff.
2926 (hppa*64*-*-*): Don't disable byacc.
2927 (i[[3456789]]86-*-mingw32*): Remove commented-out noconfigdirs
2928 setting.
2929 (*-*-kaos*): Don't skip target-librx and target-groff.
2930 (*-*-netware*): Don't skip target-libmudflap.
2931 (*-*-tpf*): Don't skip target-libmudflap.
2932 (sh*-*-pe|mips*-*-pe|*arm-wince-pe): Don't condition configured
2933 directories on the host.
2934 (ia64*-*-*vms*): Don't skip tix.
2935 (sh-*-* | sh64-*-*): Don't condition skipped directories on the
2936 host.
2937 * configure: Regenerate.
2938
2939 2011-03-24 Paolo Bonzini <pbonzini@redhat.com>
2940
2941 * configure.ac: Remove references to mt-mep, mt-netware,
2942 mt-wince.
2943 * Makefile.def: Add all-utils soft dependencies.
2944 * Makefile.tpl: Remove GDB_NLM_DEPS.
2945 * configure: Regenerate.
2946 * Makefile.in: Regenerate.
2947
2948 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2949
2950 Sync from GCC:
2951
2952 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2953
2954 * configure.ac: Do not include mh-x86omitfp.
2955 * configure: Regenerate.
2956
2957 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2958
2959 * configure.ac: Remove empty cases.
2960 * configure: Regenerate.
2961
2962 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2963
2964 * Makefile.def: Add dependency from termcap to gdb.
2965 * Makefile.in: Regenerate.
2966
2967 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2968
2969 * configure.ac: Remove all mentions of mh-sysv4 and mh-solaris.
2970 * configure: Regenerate.
2971 * Makefile.def: Remove all mentions of X11_FLAGS_TO_PASS.
2972 * Makefile.tpl: Likewise.
2973 * Makefile.in: Regenerate.
2974
2975 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2976
2977 * configure.ac: Remove all mentions of tentative_cc.
2978 * configure: Regenerate.
2979
2980 2011-03-16 Jack Howarth <howarth@bromo.med.uc.edu>
2981
2982 PR lto/48086
2983 * configure.ac: Re-enable LTO on *-apple-darwin9.
2984 * configure: Regenerate.
2985
2986 2011-03-24 Joseph Myers <joseph@codesourcery.com>
2987
2988 * configure.ac (i[[3456789]]86-*-vsta, i[[3456789]]86-*-go32*,
2989 i[[3456789]]86-*-beos*, powerpc-*-beos*, m68k-hp-hpux*,
2990 m68k-apollo-sysv*, m68k-apollo-bsd*, m88k-dg-dgux*,
2991 m88k-harris-cxux*, m88k-motorola-sysv*, mips*-dec-ultrix*,
2992 mips*-nec-sysv4*, mips*-sgi-irix4*, mips*-*-sysv4*, mips*-*-sysv*,
2993 i370-ibm-opened*, i[[3456789]]86-*-sysv5*, i[[3456789]]86-*-dgux*,
2994 i[[3456789]]86-ncr-sysv4.3*, i[[3456789]]86-ncr-sysv4*,
2995 i[[3456789]]86-*-sco3.2v5*, i[[3456789]]86-*-sco*,
2996 i[[3456789]]86-*-udk*, vax-*-ultrix2*, m68k-sun-sunos*,
2997 hppa*-*-hiux*, *-*-hiux*, rs6000-*-lynxos*, *-*-sysv4*,
2998 *-*-rhapsody*): Remove host cases.
2999 * configure: Regenerate.
3000
3001 2011-03-24 Joseph Myers <joseph@codesourcery.com>
3002
3003 * configure.ac (ppc*-*-pe): Remove host case.
3004 (strongarm-*-coff | xscale-*-coff, strongarm-*-elf* |
3005 xscale-*-elf*, thumb-*-coff, thumb-*-elf, thumb-*-pe, ep9312-*-elf
3006 | ep9312-*-coff, parisc*64*-*-linux*, ppc*-*-pe): Remove target
3007 cases.
3008 * configure: Regenerate.
3009
3010 2011-03-24 Joseph Myers <joseph@codesourcery.com>
3011
3012 * config.sub: Update to version 2011-03-23.
3013
3014 2011-03-22 Joseph Myers <joseph@codesourcery.com>
3015
3016 * configure.ac (arm-semi-aof, crx-*-*, parisc*-*-linux*,
3017 i370-*-opened*, i[[3456789]]86-moss-msdos | i[[3456789]]86-*-moss*
3018 | i[[3456789]]86-*-uwin*, mcore-*-pe*): Remove empty cases.
3019 * configure: Regenerate.
3020
3021 2011-03-22 Joseph Myers <joseph@codesourcery.com>
3022
3023 * config-ml.in: Don't handle arc-*-elf*.
3024 * configure.ac (arc-*-*, crx-*-*, i[[3456789]]86-*-pe,
3025 m68hc11-*-*|m6811-*-*|m68hc12-*-*|m6812-*-*, mcore-*-pe*): Don't
3026 handle GCC libraries.
3027 * configure: Regenerate.
3028
3029 2011-03-21 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3030
3031 PR bootstrap/48120:
3032 * configure.ac (pwllib): Use LIBS instead of LDFLAGS.
3033 Add -lstdc++ -lm to LIBS.
3034 * configure: Regenerate.
3035
3036 2011-03-18 David Edelsohn <dje.gcc@gmail.com>
3037
3038 * config.guess: Update to version 2011-02-02
3039 * config.sub: Update to version 2011-02-24
3040
3041 2011-03-03 Sebastian Pop <sebastian.pop@amd.com>
3042
3043 * configure.ac: Adjust test of with_ppl.
3044 * configure: Regenerated.
3045
3046 2011-03-02 Sebastian Pop <sebastian.pop@amd.com>
3047
3048 * configure.ac: Add -lpwl to ppllibs.
3049 * config/cloog.m4: Add -lisl to clooglibs.
3050 * configure: Regenerated.
3051
3052 2011-02-13 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3053
3054 Import from Libtool and gnulib:
3055
3056 2011-01-27 Gerald Pfeifer <gerald@pfeifer.com>
3057
3058 Prepare for supporting FreeBSD 10.
3059 * config.rpath: Remove handling of freebsd1* which soon would
3060 match FreeBSD 10.0.
3061
3062 2011-01-20 Gerald Pfeifer <gerald@pfeifer.com> (tiny change)
3063
3064 Remove support for FreeBSD 1.x.
3065 * libtool.m4 (_LT_LINKER_SHLIBS)
3066 (_LT_SYS_DYNAMIC_LINKER): Remove handling of freebsd1* which
3067 soon would incorrectly match FreeBSD 10.0.
3068
3069 2011-02-12 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3070
3071 PR binutils/12283
3072 * MAINTAINERS (mkinstalldirs): Comes from Automake.
3073 (move-if-change): Comes from gnulib.
3074 * move-if-change: Import version from gnulib.
3075
3076 2011-02-12 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3077
3078 Sync from GCC:
3079
3080 2011-02-12 Alexandre Oliva <aoliva@redhat.com>
3081
3082 PR lto/47225
3083 * Makefile.def (lto-plugin): Double dash for enable-shared.
3084 (configure-gcc): Depend on all-lto-plugin.
3085 * Makefile.in: Rebuilt.
3086
3087 2011-02-11 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3088
3089 * configure.ac: Remove extra bracket.
3090 * configure: Regenerate.
3091
3092 2011-02-06 Kai Tietz <kai.tietz@onevision.com>
3093
3094 PR lto/47225
3095 * Makefile.def: Add dependency for install-gcc
3096 on install-lto-plugin.
3097 * Makfile.in: Regenerated
3098
3099 2011-01-25 Jakub Jelinek <jakub@redhat.com>
3100
3101 * configure.ac: If with_ppl is no, move setting with_cloog=no
3102 after CLOOG_REQUESTED check.
3103 * configure: Regenerated.
3104
3105 2011-01-25 Sebastian Pop <sebastian.pop@amd.com>
3106
3107 * configure.ac: Call AC_MSG_ERROR when PPL 0.11 is not present and
3108 CLooG has been requested.
3109 * configure: Regenerated.
3110
3111 2011-01-25 Sebastian Pop <sebastian.pop@amd.com>
3112
3113 * configure: Regenerated.
3114 * configure.ac: Check for version 0.11 (or later revision) of PPL.
3115
3116 2011-01-25 Tobias Grosser <grosser@fim.uni-passau.de>
3117
3118 * configure: Regenerated.
3119 * configure.ac: Use CLOOG_CHECK_VERSION(0,16,1).
3120
3121 2011-01-07 Jan Hubicka <jh@suse.cz>
3122
3123 PR lto/47225
3124 * Makefile.in: Regenerate.
3125 * Makefile.def (lto-plugin): Always pass enable-shared to the plugin
3126 configure.
3127
3128 2011-01-31 Alexandre Oliva <aoliva@redhat.com>
3129
3130 PR libgcj/44341
3131 * configure.ac: Discard --with-* flags for host when configuring
3132 target libraries for cross build.
3133 * configure: Rebuilt.
3134
3135 2011-01-21 Andreas Schwab <schwab@redhat.com>
3136
3137 Sync from GCC:
3138
3139 2011-01-21 Andreas Schwab <schwab@redhat.com>
3140
3141 * configure.ac: Use AS_HELP_STRING throughout.
3142 * configure: Regenerate.
3143
3144 2011-01-18 Jie Zhang <jie.zhang@analog.com>
3145
3146 * configure.ac (bfin-*-*): Remove gdb from noconfigdirs.
3147 * configure: Regenerate.
3148
3149 2010-12-10 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
3150
3151 * ltmain.sh (relink): Use absolute path when hardcoding with -L.
3152
3153 2011-01-13 Joel Brobecker <brobecker@adacore.com>
3154
3155 * configure.ac: Remove readline, mmalloc, and gdb from noconfigdirs
3156 for ia64-hpux.
3157 * configure: Regenerate.
3158
3159 2011-01-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3160
3161 Sync from GCC:
3162 2010-12-22 Hariharan Sandanagobalane <hariharan@picochip.com>
3163
3164 * configure.ac: (picochip): Disable libiberty.
3165 * configure: Regenerate.
3166
3167 2010-12-18 Jeff Johnston <jjohnstn@redhat.com>
3168
3169 * COPYING.LIBGLOSS: Remove the GPL for fr30 target.
3170
3171 2010-12-10 Ian Lance Taylor <iant@google.com>
3172
3173 PR bootstrap/46819
3174 * configure.ac: For --disable-libgcj clear libgcj_saved.
3175 * configure: Rebuild.
3176
3177 2010-12-10 Tobias Burnus <burnus@net-b.de>
3178
3179 PR fortran/46540
3180 * configure.ac: Add --disable-libquadmath and
3181 --disable-libquadmath-support.
3182 * configure: Regenerate.
3183
3184 2010-12-10 Tristan Gingold <gingold@adacore.com>
3185
3186 * src-release (ETC_SUPPORT): add gnu-oids.texi
3187
3188 2010-12-03 Hans-Peter Nilsson <hp@axis.com>
3189
3190 PR libffi/46792
3191 * configure.ac (cris-*-elf, crisv32-*-elf): Disable target-libffi.
3192 * configure: Regenerate.
3193
3194 2010-12-02 Ian Lance Taylor <iant@google.com>
3195
3196 * configure.ac: Always set default for poststage1_ldflags to
3197 -static-libstdc++ -static-libgcc.
3198
3199 2010-12-02 Jeff Johnston <jjohnstn@redhat.com>
3200
3201 * COPYING.NEWLIB: Add National Semiconductor notice.
3202
3203 2010-11-29 Andreas Schwab <schwab@redhat.com>
3204
3205 * configure.ac: Move comment to remove extra space in last argument
3206 of GCC_TARGET_TOOL.
3207
3208 2010-11-26 Alexandre Oliva <aoliva@redhat.com>
3209
3210 PR other/46026
3211 * configure.ac (CXX_FOR_TARGET): Add -funconfigured-libstdc++-v3.
3212 * Makefile.def (CXX_FOR_TARGET): Removed from flags_to_pass.
3213 * Makefile.tpl (CXX_FOR_TARGET_FLAG_TO_PASS): New.
3214 (BASE_FLAGS_TO_PASS): Use it.
3215 * configure: Rebuilt.
3216 * Makefile.in: Rebuilt.
3217
3218 2010-11-23 H.J. Lu <hongjiu.lu@intel.com>
3219
3220 PR binutils/12258
3221 * configure.ac: Correct comments for --enable-gold/--enable-ld.
3222 Properly check default linker.
3223 * configure: Regnerated.
3224
3225 2010-11-23 Matthias Klose <doko@ubuntu.com>
3226
3227 * configure.ac: For --enable-gold, handle value `default' instead of
3228 `both*'. New configure option --{en,dis}able-ld.
3229 * configure: Regenerate.
3230
3231 2010-11-20 Ian Lance Taylor <iant@google.com>
3232
3233 * configure.ac: Only disable a language library if no language needs
3234 it. Don't let --disable-libgcj uncondtionally disable libffi.
3235 * configure: Rebuild.
3236
3237 2010-11-20 Paolo Bonzini <bonzini@gnu.org>
3238
3239 * configure: Regenerate.
3240
3241 2010-11-20 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3242
3243 PR other/46202
3244 * configure.ac: Fix just-built in-tree STRIP name to be
3245 binutils/strip-new.
3246 * configure: Regenerate.
3247 * Makefile.def (install-strip-gcc, install-strip-binutils)
3248 (install-strip-opcodes, install-strip-ld, install-strip-itcl)
3249 (install-strip-sid): Mirror dependencies on non-strip variants
3250 of these targets on the respective -strip prerequisites.
3251 * Makefile.tpl (install-strip, install-strip-host)
3252 (install-strip-target): New targets.
3253 (install-strip-[+module+], install-strip-target-[+module+]):
3254 New targets.
3255 * Makefile.in: Regenerate.
3256
3257 2010-11-19 Ian Lance Taylor <iant@google.com>
3258 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3259
3260 * configure.ac: Add target-libgo to target_libraries. Set
3261 and substitute GOC_FOR_BUILD and GOC_FOR_TARGET.
3262 * Makefile.tpl (BUILD_EXPORTS): Add GOC and GOCFLAGS.
3263 (HOST_EXPORTS): Add GOC.
3264 (BASE_TARGET_EXPORTS): Add GOC.
3265 (GOC_FOR_BUILD, GOCFLAGS, GOC_FOR_TARGET): New variables.
3266 (GOCFLAGS_FOR_TARGET): New variable.
3267 (EXTRA_HOST_FLAGS): Add GOC.
3268 (EXTRA_TARGET_FLAGS): Add GOC and GOCFLAGS.
3269 * Makefile.def (target_modules): Add libgo.
3270 (flags_to_pass): Add GOC_FOR_TARGET and GOCFLAGS_FOR_TARGET.
3271 (dependencies): Add dependency from configure-target-libgo to
3272 configure-target-libffi and all-target-libstdc++-v3. Add
3273 dependencies from all-target-libgo to all-target-libffi.
3274 (languages): Add go.
3275 * configure: Rebuild.
3276 * Makefile.in: Rebuild.
3277
3278 2010-11-19 Ian Lance Taylor <iant@google.com>
3279
3280 * config-ml.in: Add Go support: treat GOC and GOCFLAGS like other
3281 compiler/flag environment variables.
3282
3283 2010-11-18 Ian Lance Taylor <iant@google.com>
3284
3285 * configure.ac: Check for lang_requires_boot_languages in
3286 config-lang.in files.
3287 * configure: Rebuild.
3288
3289 2010-11-17 Mike Frysinger <vapier@gentoo.org>
3290
3291 * .gitignore: New file.
3292
3293 2010-11-16 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
3294 Tobias Burnus <burnus@net-b.de>
3295
3296 PR fortran/32049
3297 * Makefile.def: Add libquadmath; build it with language=fortran.
3298 * configure.ac: Add libquadmath.
3299 * Makefile.tpl: Handle multiple libs in check-[+language+].
3300 * Makefile.in: Regenerate.
3301 * configure: Regenerate.
3302
3303 2010-11-15 Andreas Schwab <schwab@redhat.com>
3304
3305 * configure.ac: Fix spelling in option names.
3306 * configure: Regenerated.
3307
3308 2010-11-13 Georg-Johann Lay <georgjohann@web.de>
3309
3310 PR bootstrap/39622
3311 * configure.ac (FLAGS_FOR_TARGET): Add include-fixed path.
3312 * configure: Regenerated.
3313
3314 2010-11-12 Tobias Grosser <grosser@fim.uni-passau.de>
3315
3316 * config/cloog.m4: Add -enable-cloog-backend=(isl|ppl|ppl-legacy) to
3317 define the cloog backend to use. Furthermore, only pass the ppllibs to
3318 the configure checks, if necessary.
3319 * configure: Regenerate.
3320
3321 2010-11-12 Tobias Grosser <grosser@fim.uni-passau.de>
3322
3323 * config/cloog.m4: Use CLooG predefined macro to check for CLooG PPL.
3324 * configure: regenerate
3325
3326 2010-11-12 Tobias Grosser <grosser@fim.uni-passau.de>
3327
3328 * config/cloog.m4: Fix typo. verison -> version.
3329 * configure: Regenerate.
3330
3331 2010-11-12 Tobias Grosser <grosser@fim.uni-passau.de>
3332
3333 * config/cloog.m4: Pass ppl libraries to the CLooG version check.
3334 * configure: Regenerate.
3335
3336 2010-11-11 Andreas Simbuerger <simbuerg@fim.uni-passau.de>
3337
3338 * configure.ac: Support official CLooG.org versions.
3339 * configure: Regenerate.
3340 * config/cloog.m4: New.
3341
3342 2010-11-05 Michael Eager <eager@eagercon.com>
3343
3344 * COPYING.LIBGLOSS: Correct typo in microblaze.
3345 * COPYING.NEWLIB: Same.
3346
3347 2010-11-04 Iain Sandoe <iains@gcc.gnu.org>
3348
3349 * configure.ac (*-*-darwin*): Use mh-darwin for all Darwin variants.
3350 * configure: Regenerate.
3351
3352 2010-11-03 Ian Lance Taylor <iant@google.com>
3353 Dave Korn <dave.korn.cygwin@gmail.com>
3354
3355 PR lto/46273
3356 * configure.ac: Remove libelf tests. Build lto-plugin on ELF always
3357 and on other supported platforms whenever LTO is enabled.
3358 * configure: Rebuild.
3359
3360 2010-11-02 Alan Modra <amodra@gmail.com>
3361
3362 PR binutils/12110
3363 * configure.ac: Error when source path contains spaces.
3364 * configure: Regenerate.
3365
3366 2010-10-20 Ian Lance Taylor <iant@google.com>
3367
3368 * Makefile.def (target_modules): Set lib_path to src/.libs for
3369 libstdc++-v3 module.
3370 * Makefile.tpl: Fix typo in TARGET_LIB_PATH comment.
3371 * Makefile.in: Rebuild.
3372
3373 2010-10-08 Bernd Schmidt <bernds@codesourcery.com>
3374 Joseph Myers <joseph@codesourcery.com>
3375
3376 * COPYING.LIBGLOSS: Add National Semiconductor and CodeSourcery
3377 notices.
3378 * COPYING.NEWLIB: Add Texas Instruments notice.
3379
3380 2010-10-07 Dave Korn <dave.korn.cygwin@gmail.com>
3381
3382 * configure.ac (build_lto_plugin): New shell variable.
3383 (--enable-lto): Turn on by default for all non-ELF platforms that
3384 have had LTO support added so far. Set build_lto_plugin appropriately
3385 for both ELF and non-ELF.
3386 (configdirs): Add lto-plugin or not based on build_lto_plugin.
3387 * configure: Regenerate.
3388
3389 2010-10-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3390
3391 PR bootstrap/45326
3392 PR bootstrap/45174
3393 * configure.ac: Honor initial values of $build_configargs,
3394 $host_configargs, $target_configargs. Mark the precious, so
3395 environment settings get recorded.
3396 * configure: Regenerate.
3397
3398 2010-10-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3399
3400 Sync from GCC:
3401
3402 2010-09-30 Michael Eager <eager@eagercon.com>
3403
3404 * configure.ac (microblaze): Add target-libssp to noconfigdirs.
3405 * configure: Regenerate.
3406
3407 2010-09-21 Iain Sandoe <iains@gcc.gnu.org>
3408
3409 * configure.ac (enable-lto): Add Darwin to the list of supported lto
3410 targets and amend comment.
3411 * configure: Regenerate.
3412
3413 2010-09-03 Jack Howarth <howarth@bromo.med.uc.edu>
3414
3415 * configure.ac: Enable LTO by default on Darwin.
3416 * configure: Regenerate.
3417
3418 2010-07-23 Marc Glisse <marc.glisse@normalesup.org>
3419
3420 PR bootstrap/44455
3421 * configure.ac (extra_mpfr_configure_flags): Copy from
3422 extra_mpc_gmp_configure_flags.
3423 * configure: Re-generated.
3424
3425 2010-09-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3426
3427 Sync from GCC:
3428
3429 PR bootstrap/45796
3430 * Makefile.def (info-gcc, dvi-gcc, pdf-gcc, html-gcc):
3431 Depend on all-build-libiberty.
3432 * Makefile.in: Regenerate.
3433
3434 2010-09-27 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3435
3436 Sync from GCC:
3437
3438 PR bootstrap/44621
3439 * configure.ac: Fix unportable shell quoting.
3440 * configure: Regenerate.
3441
3442 2010-07-26 Naveen.H.S <naveen.S@kpitcummins.com>
3443
3444 * configure.ac: Support all v850 targets.
3445 * configure: Regenerate.
3446
3447 2010-07-17 Jack Howarth <howarth@bromo.med.uc.edu>
3448
3449 PR target/44862
3450 * Makefile.tpl (POSTSTAGE1_CXX_EXPORT):
3451 Provide -B option to allow for link spec %s substitutions for
3452 libstdc++.a on darwin.
3453 * Makefile.in: Regenerate.
3454
3455 2010-06-10 Alexandre Oliva <aoliva@redhat.com>
3456
3457 * Makefile.def (configure-gcc): Depend on all-libelf.
3458 * Makefile.in: Rebuild.
3459
3460 2010-06-01 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3461
3462 * config.sub, config.guess: Update from upstream sources.
3463
3464 2010-06-01 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3465
3466 Sync from GCC:
3467
3468 2010-05-05 Sebastian Pop <sebastian.pop@amd.com>
3469 * configure.ac: Allow all the versions greater than 0.10 of PPL.
3470 * configure: Regenerated.
3471
3472 2010-04-20 Eric Botcazou <ebotcazou@adacore.com>
3473 * configure.ac (BUILD_CONFIG): Redirect output to /dev/null.
3474 * configure: Regenerate.
3475
3476 2010-04-17 Ralf Cors<E9>pius <ralf.corsepius@rtems.org>
3477 * configure.ac (*-*-rtems*): Add target-libiberty to $skipdirs.
3478 * configure: Regenerate.
3479
3480 2010-04-16 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3481 * configure.ac: Check for elf_getshdrstrndx or elf_getshstrndx
3482 separately.
3483 * configure: Regenerate.
3484
3485 2010-04-13 Steve Ellcey <sje@cup.hp.com>
3486 * configure: Regenerate after change to elf.m4.
3487
3488 2010-04-02 Sebastian Pop <sebastian.pop@amd.com>
3489 * configure.ac: Add brackets around AC_TRY_COMPILE alternative.
3490 * configure: Regenerated.
3491
3492 2010-04-02 Sebastian Pop <sebastian.pop@amd.com>
3493 * configure.ac: Print "buggy but acceptable" when CLooG
3494 revision is less than 9.
3495 * configure: Regenerated.
3496
3497 2010-05-26 Dave Korn <dave.korn.cygwin@gmail.com>
3498
3499 Merge from gcc:
3500
3501 2010-05-18 Steven Bosscher <steven@gcc.gnu.org>
3502 * configure.ac (--enable-lto): All *-apple-darwin* now support LTO.
3503 * configure: Regenerate.
3504
3505 2010-05-07 Steven Bosscher <steven@gcc.gnu.org>
3506 * configure.ac (--enable-lto): Add x86_64-apple-darwin* as
3507 a platform that supports LTO.
3508 * configure: Regenerate.
3509
3510 2010-04-27 Dave Korn <dave.korn.cygwin@gmail.com>
3511 PR lto/42776
3512 * configure.ac (--enable-lto): Refactor handling so libelf tests
3513 are only performed inside then-clause of ACX_ELF_TARGET_IFELSE,
3514 and allow LTO to be explicitly enabled on non-ELF platforms that
3515 are known to support it inside else-clause.
3516 * configure: Regenerate.
3517
3518 2010-04-27 Roland McGrath <roland@redhat.com>
3519 H.J. Lu <hongjiu.lu@intel.com>
3520
3521 * configure.ac (--enable-gold): Support both, both/gold and
3522 both/bfd to add gold to configdirs without removing ld.
3523 * configure: Regenerated.
3524
3525 * Makefile.def: Add install-gold dependency to install-ld.
3526 * Makefile.in: Regenerated.
3527
3528 2010-04-14 Tristan Gingold <gingold@adacore.com>
3529
3530 * configure.ac (alpha*-*-*vms*): Remove ld from noconfigdirs.
3531 * configure: Regenerate.
3532
3533 2010-04-08 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3534
3535 Merge from gcc:
3536 PR bootstrap/43615
3537 PR bootstrap/43328
3538 Revert:
3539 2010-03-31 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3540 * configure.ac: Do not pass --enable-multilib nor
3541 --disable-multilib in baseargs. Accept explicitly passed
3542 --enable_multilib.
3543 * configure: Regenerate.
3544
3545 2010-03-31 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3546
3547 PR bootstrap/43328
3548 * configure.ac: Do not pass --enable-multilib nor
3549 --disable-multilib in baseargs. Accept explicitly passed
3550 --enable_multilib.
3551 * configure: Regenerate.
3552
3553 2010-03-23 Joseph Myers <joseph@codesourcery.com>
3554
3555 * configure.ac (tic6x-*-*): New case.
3556 * configure: Regenerate.
3557
3558 2010-03-23 Joseph Myers <joseph@codesourcery.com>
3559
3560 Merge from gcc:
3561 2010-03-19 Jack Howarth <howarth@bromo.med.uc.edu>
3562 PR ada/42554
3563 * configure.ac: Only pass -c to ranlib for darwin9 and earlier.
3564 * configure: Regenerate.
3565
3566 2010-03-23 Joseph Myers <joseph@codesourcery.com>
3567
3568 * config.sub: Update to version 2010-03-22.
3569 * config.guess: Update to version 2009-12-30.
3570
3571 2010-03-14 Joseph Myers <joseph@codesourcery.com>
3572
3573 Merge from gcc:
3574 2010-01-11 Richard Guenther <rguenther@suse.de>
3575 PR lto/41569
3576 * Makefile.def (all-lto-plugin): Depend on all-gcc.
3577 * Makefile.in: Regenerated.
3578
3579 2010-03-01 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3580
3581 PR libstdc++/32499
3582 * configure.ac (RANLIB): Default to true.
3583 (STRIP): Likewise.
3584 (RANLIB_FOR_TARGET): Remove superfluous : argument.
3585 * configure: Regenerate.
3586
3587 2010-02-17 Nick Clifton <nickc@redhat.com>
3588
3589 PR 11238
3590 * Makefile.tpl (local-distclean): Also remove config.cache files in
3591 sub-directories as there may not be Makefiles present in the
3592 sub-directories.
3593 * Makefile.tpl: Use "-exec rm {}" rather than "-delete" to delete
3594 the config.cache files found by the find command.
3595
3596 * Makefile.in: Regenerate.
3597 * configure.ac: Revert previous delta.
3598 * configure: Regenerate.
3599
3600 2010-02-15 Nick Clifton <nickc@redhat.com>
3601
3602 PR 11238
3603 * configure.ac: Delete config.cache files in sub-directories when
3604 deleting Makefiles.
3605 * configure: Regenerate.
3606
3607 2010-02-15 Nick Clifton <nickc@redhat.com>
3608
3609 * configure.ac: Sync from gcc.
3610 * configure: Regenerate.
3611
3612 2010-01-31 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3613
3614 Sync from gcc:
3615 * configure.ac: Add "recommended" version checks for GMP/MPC.
3616 Update recommended GMP/MPFR/MPC versions.
3617 * configure: Regenerate.
3618
3619 2010-01-25 Joern Rennecke <amylaar@spamcop.net>
3620
3621 gcc PR libstdc++/36101, gcc PR libstdc++/42813
3622 * configure.ac (bootstrap_target_libs): Make inclusion of
3623 target-libgomp conditional on libgomb being in target_configdirs.
3624 * configure: Regenerate.
3625
3626 2010-01-23 Joern Rennecke <amylaar@spamcop.net>
3627
3628 gcc PR libstdc++/36101, gcc PR libstdc++/42813
3629 * configure.ac (bootstrap_target_libs): Include target-libgomp.
3630 * configure: Regenerate.
3631
3632 2010-01-22 Joern Rennecke <amylaar@spamcop.net>
3633
3634 gcc PR libstdc++/36101, gcc PR libstdc++/42813
3635 * configure.ac (target_configdirs): Substitute.
3636 * Makefile.def: Bootstrap target module libgomp.
3637 Add dependency of all-target-libstdc++-v3 on configure-target-libgomp.
3638 * Makefile.tpl (TARGET_CONFIGDIRS): New makefile variable.
3639 (BASE_TARGET_EXPORTS): Export TARGET_CONFIGDIRS.
3640 * configure, Makefile.in: Regenerate.
3641
3642 2009-12-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3643
3644 * libtool.m4: Sync from git Libtool.
3645 * ltmain.sh: Likewise.
3646 * ltoptions.m4: Likewise.
3647 * ltversion.m4: Likewise.
3648 * lt~obsolete.m4: Likewise.
3649
3650 2010-01-07 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3651 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
3652
3653 PR bootstrap/42424
3654 * configure.ac: Include libtool m4 files.
3655 (_LT_CHECK_OBJDIR): Call it.
3656 (extra_mpc_mpfr_configure_flags, extra_mpc_gmp_configure_flags,
3657 gmplibs, ppllibs, clooglibs): Use $lt_cv_objdir.
3658
3659 * configure: Regenerate.
3660
3661 2010-01-07 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3662
3663 PR bootstrap/41818
3664 * Makefile.tpl (BASE_TARGET_EXPORTS): Only add TARGET_LIB_PATH
3665 to $(RPATH_ENVVAR) if bootstrapping. Fix typo in comment.
3666 * Makefile.in: Regenerate.
3667
3668 2009-12-18 Ben Elliston <bje@au.ibm.com>
3669
3670 * config.sub, config.guess: Update from upstream sources.
3671
3672 2009-12-17 Jeff Johnston <jjohnstn@redhat.com>
3673
3674 * COPYING.NEWLIB: Update copyright date.
3675 * COPYING.LIBGLOSS: Ditto.
3676
3677 2009-12-07 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3678
3679 PR middle-end/30447
3680 PR middle-end/30789
3681 PR other/40302
3682
3683 * configure.ac: Require MPC.
3684 * configure: Regenerate.
3685
3686 * configure.ac: Update minimum MPC version to 0.8.
3687 * configure: Regenerate.
3688
3689 2009-11-20 Paolo Bonzini <bonzini@gnu.org>
3690
3691 * config.guess: Sync with upstream and gcc.
3692 * config.sub: Sync with upstream and gcc.
3693
3694 2009-11-16 Alexandre Oliva <aoliva@redhat.com>
3695
3696 * Makefile.def: Restore host and target settings for gmp.
3697 * Makefile.in: Rebuild.
3698
3699 2009-11-16 Alexandre Oliva <aoliva@redhat.com>
3700
3701 * configure.ac: Add libelf to host_libs. Enable in-tree configury
3702 of ppl and cloog. Fix in-tree configury of libelf, skip tests.
3703 Fix portability of test of C++ as bootstrap language. Add
3704 ppl/src/ppl-config.o to the bootstrap compare exclusion list.
3705 * configure: Rebuild.
3706 * Makefile.def: Drop host and target settings from gmp, mpfr, ppl,
3707 and cloog. Fix in-tree ppl configuration. Introduce libelf
3708 in-tree building.
3709 * Makefile.tpl (POSTSTAGE1_CXX_EXPORT): New.
3710 (POSTSTAGE1_HOST_EXPORTS): Use it.
3711 (STAGE[+id+]_CXXFLAGS): New.
3712 (BASE_FLAGS_TO_PASS): Pass it down.
3713 (configure-stage[+id+]-[+prefix+][+module+]): Use it. Add
3714 extra_exports.
3715 (all-stage[+id+]-[+prefix+][+module+]): Likewise.
3716 (configure-[+prefix+][+module+], all-[+prefix+][+module+]): Add
3717 extra_exports.
3718 * Makefile.in: Rebuild.
3719
3720 2009-11-06 Ozkan Sezer <sezeroz@gmail.com>
3721
3722 * configure.ac (FLAGS_FOR_TARGET): Add -L and -isystem
3723 paths for *-w64-mingw* and x86_64-*mingw*.
3724 * configure: Regenerated.
3725
3726 2009-10-30 Kai Tietz <kai.tietz@onevision.com>
3727
3728 * configure.ac: Disable target-winsup & co for
3729 x86_64-*-mingw* and *-w64-mingw* targets.
3730 * configure: Regenerated.
3731
3732 2009-10-23 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3733
3734 * configure.ac (CLooG test): Use = with test.
3735 * configure: Regenerate.
3736
3737 2009-10-22 Richard Guenther <rguenther@suse.de>
3738
3739 * configure.ac: Do not set LIBS for ppl/cloog checks. Disable
3740 cloog if the ppl version check failed. Move flags saving
3741 before setting in libelf check.
3742 * configure: Regenerate.
3743
3744 2009-10-21 Richard Guenther <rguenther@suse.de>
3745
3746 * configure.ac: Adjust the ppl and cloog configure to work as
3747 documented. Disable cloog if ppl was disabled. Omit the version
3748 checks if they were disabled.
3749 * configure: Re-generate.
3750
3751 2009-10-13 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3752
3753 * configure.ac: Add 'lto' to enable_languages, not
3754 new_enable_languages, and only if not already present.
3755 * configure: Regenerate.
3756
3757 2009-10-06 Ian Lance Taylor <iant@google.com>
3758
3759 * Makefile.def: check-gold depends upon all-gas.
3760 * Makefile.in: Rebuild.
3761
3762 2009-10-03 2009-02-05 Rafael Avila de Espindola <espindola@google.com>
3763
3764 * Makefile.def: all-lto-plugin depends on all-libiberty.
3765 set bootstrap=true for lto-plugin.
3766 Add lto-plugin.
3767 * Makefile.in: Regenerate.
3768 * configure.ac (host_libs): Add lto-plugin.
3769 * configure: Regenerate.
3770
3771 2009-10-03 Diego Novillo <dnovillo@google.com>
3772
3773 * Makefile.tpl (HOST_EXPORTS): Add LIBELFLIBS and LIBELFINC.
3774 (HOST_LIBELFLIBS): Define.
3775 (HOST_LIBELFINC): Define.
3776 * Makefile.in: Regenerate.
3777 * configure.ac: Add --enable-lto.
3778 Add --with-libelf, --with-libelf-include and --with-libelf-lib.
3779 If --enable-lto is used, add 'lto' to new_enable_languages.
3780 If --enable-lto is used and gold is enabled, add
3781 lto-plugin to configdirs.
3782 * configure: Regenerate.
3783
3784 2009-10-03 Simon Baldwin <simonb@google.com>
3785
3786 * configure.ac: If --with-system-zlib, suppress local zlib and
3787 pass --with-system-zlib to subdir configure scripts.
3788 * configure: Regenerate.
3789
3790 2009-10-01 Loren J. Rittle <ljrittle@acm.org>
3791 Paolo Bonzini <bonzini@gnu.org>
3792
3793 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Use $$s rather than
3794 $(srcdir).
3795 * Makefile.in: Rebuilt.
3796
3797 2009-09-29 Paolo Bonzini <bonzini@gnu.org>
3798
3799 Sync from gcc:
3800 2009-09-26 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3801
3802 * configure.ac: Update minimum MPC version to 0.7.
3803 * configure: Regenerate.
3804
3805 2009-09-25 Nick Clifton <nickc@redhat.com>
3806
3807 * configure.ac: Pass any --cache-file=/dev/null option on to
3808 subconfigures.
3809 * configure: Regenerate.
3810
3811 2009-09-23 Nick Clifton <nickc@redhat.com>
3812
3813 * config.sub, config.guess: Update from upstream sources.
3814
3815 2009-09-22 Loren J. Rittle <ljrittle@acm.org>
3816
3817 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Remove stray $$r/.
3818 * Makefile.in: Rebuilt.
3819
3820 2009-09-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3821
3822 PR bootstrap/32272
3823 * configure.ac: Error out if $srcdir isn't '.' but contains
3824 host-${host_noncanonical}.
3825 * configure: Regenerate.
3826
3827 2009-09-21 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3828
3829 * configure.ac: If bootstrapping a combined tree with
3830 --enable-gold, require c++ in stage1_languages.
3831 * configure: Regenerate.
3832
3833 * configure.ac: Also add target_libs of stage1_languages to
3834 bootstrap_target_libs.
3835 * configure: Regenerate.
3836
3837 * configure.ac: Diagnose --enable-build-with-cxx bootstrap
3838 with --enable-languages not containing c++.
3839 * configure: Regenerate.
3840
3841 2009-09-16 Jie Zhang <jie.zhang@analog.com>
3842
3843 * configure.ac: Disable java and boehm-gc for bfin-*-*.
3844 * configure: Regenerate.
3845
3846 2009-09-08 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3847
3848 * configure.ac: Do not use $extrasub for replacing @if/@endif
3849 parts in Makefile; instead, use additional arguments to
3850 AC_CONFIG_COMMANDS to do the replacement manually, with several
3851 sed invocations, to avoid HP-UX sed command limits.
3852 * configure: Regenerate.
3853
3854 2009-09-04 Alexandre Oliva <aoliva@redhat.com>
3855
3856 * configure.ac (with-build-config): Document. Handle without.
3857 Handle missing argument.
3858 * configure: Rebuilt.
3859
3860 2009-09-03 Alexandre Oliva <aoliva@redhat.com>
3861
3862 * configure.ac (--with-build-config): New. Set BUILD_CONFIG.
3863 Default to bootstrap-debug only if compare-debug works.
3864 * configure: Rebuilt.
3865 * Makefile.tpl: Make BUILD_CONFIG configure-configurable.
3866 * Makefile.in: Rebuilt.
3867
3868 2009-09-01 Alexandre Oliva <aoliva@redhat.com>
3869
3870 * Makefile.tpl (BUILD_CONFIG): Default to bootstrap-debug.
3871 * Makefile.in: Rebuilt.
3872
3873 2009-09-02 Paolo Bonzini <bonzini@gnu.org>
3874
3875 * Makefile.tpl (AWK): Fix typo.
3876 * Makefile.in: Regenerate.
3877
3878 2009-09-02 Paolo Bonzini <bonzini@gnu.org>
3879
3880 * configure.ac: Detect awk and sed.
3881 * Makefile.def (flags_to_pass): Add AWK and SED.
3882 * Makefile.tpl (AWK, SED): New.
3883 (BASE_FLAGS_TO_PASS): Add AWK and SED.
3884 * configure: Regenerate.
3885 * Makefile.in: Regenerate.
3886
3887 2009-09-01 Tristan Gingold <gingold@adacore.com>
3888
3889 * setup.com: Ported to Itanium VMS. Can also build using DCL scripts.
3890 Remove logical names.
3891
3892 2009-08-31 Dave Korn <dave.korn.cygwin@gmail.com>
3893
3894 * ltmain.sh (func_normal_abspath): New function.
3895 (func_relative_path): Likewise.
3896 (func_mode_help): Document new -bindir option for link mode.
3897 (func_mode_link): Add new -bindir option, and use it to place
3898 output DLL if specified.
3899
3900 2009-08-24 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3901
3902 * configure.ac (AC_PREREQ): Bump to 2.64.
3903
3904 2009-08-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3905
3906 * README-maintainer-mode: Point directly to upstream locations
3907 for autoconf, automake, libtool, gettext, instead of copies on
3908 sources.redhat.com. Document required versions.
3909 * configure.ac: Do not substitute datarootdir, htmldir,
3910 pdfdir, docdir. Do not process --with-datarootdir,
3911 --with-htmldir, --with-pdfdir, --with-docdir.
3912 * configure: Regenerate.
3913
3914 * configure: Regenerate.
3915
3916 * compile: Sync from Automake 1.11.
3917 * depcomp: Likewise.
3918 * install-sh: Likewise.
3919 * missing: Likewise.
3920 * mkinstalldirs: Likewise.
3921 * ylwrap: Likewise.
3922
3923 2009-08-19 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3924
3925 * configure.ac: Call AC_DISABLE_OPTION_CHECKING.
3926 (baseargs): Add --disable-option-checking.
3927 * configure: Regenerate.
3928
3929 * Makefile.def (configure-target-libiberty): Depend on
3930 all-binutils and all-ld.
3931 (configure-target-newlib): Likewise.
3932 * Makefile.in: Regenerate.
3933
3934 2009-08-19 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3935
3936 Sync with GCC, merge:
3937
3938 2009-07-31 Christian Bruel <christian.bruel@st.com>
3939
3940 * configure.ac (sh*-*-elf): Don't add target-libgloss to noconfigdirs.
3941 * configure: Regenerate.
3942
3943 2009-07-06 Ian Lance Taylor <iant@google.com>
3944
3945 * configure.ac: Add missing comma in AC_ARG_WITH(boot-libs).
3946 * configure: Rebuild.
3947
3948 2009-06-26 Steve Ellcey <sje@cup.hp.com>
3949
3950 PR bootstrap/40338
3951 * configure.ac (comparestring): Create new variable.
3952 * Makefile.tpl (comparestring): Use to skip some comparisions.
3953 * configure: Regenerate.
3954 * Makefile.in: Regenerate.
3955
3956 2009-06-23 Ian Lance Taylor <iant@google.com>
3957
3958 * configure.ac: Add --enable-build-with-cxx. When set, add c++ to
3959 boot_languages. Only bootstrap target libraries listed in
3960 target_libs for some boot language. Add --with-stage1-ldflags,
3961 --with-stage1-libs, --with-boot-ldflags, --with-boot-libs. Remove
3962 with_host_libstdcxx from ppllibs. Only add -fkeep-inline-functions
3963 if not building with C++.
3964 * Makefile.def: For target_module libstdc++-v3, set bootstrap=true.
3965 * Makefile.tpl (STAGE1_LDFLAGS, STAGE1_LIBS): New variables.
3966 (POSTSTAGE1_LDFLAGS, POSTSTAGE1_LIBS): New variables.
3967 (HOST_EXPORTS): Add STAGE1_LDFLAGS to LDFLAGS. Export HOST_LIBS.
3968 (POSTSTAGE1_HOST_EXPORTS): Set CXX and CXX_FOR_BUILD. Add
3969 POSTSTAGE1_LDFLAGS to LDFLAGS. Export HOST_LIBS.
3970 (POSTSTAGE1_FLAGS_TO_PASS): Likewise.
3971 * configure, Makefile.in: Rebuild.
3972
3973 2009-06-08 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3974
3975 * configure.ac: Detect MPC in default directory.
3976 * configure: Regenerate.
3977
3978 2009-06-02 Richard Sandiford <r.sandiford@uk.ibm.com>
3979
3980 * configure.ac (powerpc-*-aix*, rs6000-*-aix*): Add target-newlib
3981 to noconfdirs.
3982 * configure: Regenerate.
3983
3984 2009-05-29 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3985
3986 * Makefile.def: Add MPC support and dependencies.
3987 * configure.ac: Likewise. Reorganize GMP/MPFR checks.
3988
3989 * Makefile.in, configure: Regenerate.
3990
3991 2009-05-24 Nicolas Roche <roche@adacore.com>
3992
3993 * Makefile.tpl (compare-target): Skip ./ada/*tools directories.
3994 * Makefile.in: Regenerate.
3995
3996 2009-05-21 Dave Korn <dave.korn.cygwin@gmail.com>
3997
3998 * configure.ac (cygwin noconfigdirs): Remove libgcj.
3999 * configure: Regenerate.
4000
4001 2009-05-07 Dave Korn <dave.korn.cygwin@gmail.com>
4002
4003 * configure.ac ($with_ppl): Default to no if not supplied.
4004 ($with_cloog): Likewise.
4005 configure: Regenerate.
4006
4007 2009-04-24 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4008
4009 PR bootstrap/39739
4010 * configure.ac (extra_mpfr_configure_flags): Set and AC_SUBST.
4011 * Makefile.def (module=mpfr): Use extra_mpfr_configure_flags.
4012
4013 * configure, Makefile.in: Regenerate.
4014
4015 2009-04-14 Jakub Jelinek <jakub@redhat.com>
4016
4017 * configure.ac: Change copyright header to refer to version
4018 3 of the GNU General Public License and to point readers at the
4019 COPYING3 file and the FSF's license web page.
4020 * Makefile.def: Likewise.
4021 * Makefile.tpl: Likewise.
4022 * Makefile.in: Regenerate.
4023
4024 2009-04-09 Jack Howarth <howarth@bromo.med.uc.edu>
4025
4026 * configure.ac: Restore match for darwin9 or later. Use double
4027 brackets since regeneration eats one pair.
4028 * configure: Regenerate.
4029
4030 2009-08-18 Christopher Faylor <me+cygwin@cgf.cx>
4031
4032 * MAINTAINERS: Perform some obvious fixups.
4033
4034 2009-08-17 Ben Elliston <bje@au.ibm.com>
4035
4036 * config.sub, config.guess: Update from upstream sources.
4037
4038 2009-08-06 Michael Eager <eager@eagercon.com>
4039
4040 * configure.ac: Add Microblaze target.
4041 * configure: Regenerate.
4042
4043 2009-07-02 Tristan Gingold <gingold@adacore.com>
4044
4045 * configure.ac: Do not exclude gas for i386-*-darwin.
4046 Add a case for x86_64-*-darwin.
4047 * configure: Regenerate.
4048
4049 2009-06-26 Doug Evans <dje@sebabeach.org>
4050
4051 * Makefile.def (host_modules): Add cgen.
4052 * Makefile.in: Regenerate.
4053 * configure.ac (host_tools): Add cgen.
4054 * configure: Regenerate.
4055
4056 2009-06-17 Michael Eager <eager@eagercon.com>
4057
4058 * COPYING.LIBGLOSS: Add Xilinx license.
4059
4060 2009-06-15 Ryan Mansfield <rmansfield@qnx.com>
4061
4062 * configure.ac: Define is_elf for QNX Neutrino targets.
4063 * configure: Regenerate.
4064
4065 2009-06-03 Jerome Guitton <guitton@adacore.com>
4066 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4067
4068 * Makefile.tpl (all): Avoid a trailing backslash.
4069 * Makefile.in: Regenerate.
4070
4071 2009-06-03 Ben Elliston <bje@au.ibm.com>
4072
4073 * config.sub, config.guess: Update from upstream sources.
4074
4075 2009-06-02 Alexandre Oliva <aoliva@redhat.com>
4076
4077 * Makefile.tpl ([+compare-target+]): Compare all stage
4078 directories, rather than just gcc.
4079 * Makefile.in: Rebuilt.
4080
4081 2009-05-28 Doug Kwan <dougkwan@google.com>
4082
4083 * configure.ac: Support gold for target arm*-*-*.
4084 * configure: Regenerate.
4085
4086 2009-05-27 Alexandre Oliva <aoliva@redhat.com>
4087
4088 * Makefile.tpl (all): Avoid harmless warning in make all when
4089 gcc-bootstrap is enabled but stage_last does not exist.
4090 * Makefile.in: Rebuilt.
4091
4092 2009-05-25 Tristan Gingold <gingold@adacore.com>
4093
4094 * setup.com: Complete the file with configuration and build.
4095
4096 2009-05-18 Alexandre Oliva <aoliva@redhat.com>
4097
4098 PR other/40159
4099 * Makefile.tpl (all): Don't assume gcc-bootstrap and
4100 gcc-no-bootstrap are mutually exclusive.
4101 * Makefile.in: Rebuilt.
4102
4103 2009-05-18 Alexandre Oliva <aoliva@redhat.com>
4104
4105 PR other/40159
4106 * Makefile.tpl (all): Don't end with unconditional success.
4107 * Makefile.in: Rebuilt.
4108
4109 2009-05-12 Alexandre Oliva <aoliva@redhat.com>
4110
4111 PR target/37137
4112 * Makefile.def (flags_to_pass): Remove redundant and incomplete
4113 STAGE1_CFLAGS, STAGE2_CFLAGS, STAGE3_CFLAGS, and STAGE4_CFLAGS.
4114 Add FLAGS_FOR_TARGET and BUILD_CONFIG.
4115 (bootstrap_stage): Remove bootstrap-debug custom stages. Turn
4116 stage_configureflags, stage_cflags and stage_libcflags into
4117 explicit Makefile macros.
4118 * Makefile.tpl (HOST_EXPORTS, EXTRA_HOST_FLAGS): Pass GCJ and
4119 GFORTRAN.
4120 (POSTSTAGE1_HOST_EXPORTS): Add XGCC_FLAGS_FOR_TARGET and TFLAGS to
4121 CC. Set CC_FOR_BUILD from CC.
4122 (BASE_TARGET_EXPORTS, RAW_CXX_TARGET_EXPORTS,
4123 NORMAL_TARGET_EXPORTS): Move SYSROOT_CFLAGS_FOR_TARGET and
4124 DEBUG_PREFIX_CFLAGS_FOR_TARGET from CFLAGS and CXXFLAGS to
4125 XGCC_FLAGS_FOR_TARGET. Add it along with TFLAGS to CC, CXX, GCJ,
4126 and GFORTRAN.
4127 (TFLAGS, STAGE_CFLAGS, STAGE_TFLAGS, STAGE_CONFIGURE_FLAGS): New.
4128 (_LIBCFLAGS): Renamed to _TFLAGS.
4129 (do-compare-debug, do-compare3-debug): Drop.
4130 (CC, GCC_FOR_TARGET, CXX_FOR_TARGET, RAW_CXX_FOR_TARGET,
4131 GCJ_FOR_TARGET, GFORTRAN_FOR_TARGET): Remove FLAGS_FOR_TARGET.
4132 (FLAGS_FOR_TARGET, SYSROOT_CFLAGS_FOR_TARGET,
4133 DEBUG_PREFIX_CFLAGS_FOR_TARGET): Move down.
4134 (XGCC_FLAGS_FOR_TARGET): New.
4135 (BASE_FLAGS_TO_PASS): Pass STAGEid_CFLAGS, STAGEid_TFLAGS and TFLAGS.
4136 (EXTRA_HOST_FLAGS): Pass GCJ and GFORTRAN.
4137 (POSTSTAGE1_FLAGS_TO_PASS): Move SYSROOT_CFLAGS_FOR_TARGET and
4138 DEBUG_PREFIX_CFLAGS_FOR_TARGET from CFLAGS, CXXFLAGS, LIBCFLAGS,
4139 LIBCXXFLAGS to XGCC_FLAGS_FOR_TARGET. Add it along with TFLAGS
4140 to CC, CXX, GCJ, and GFORTRAN. Pass XGCC_FLAGS_FOR_TARGET and
4141 TFLAGS.
4142 (BUILD_CONFIG): Include if requested.
4143 (all): Set TFLAGS on bootstrap.
4144 (configure-stageid-prefixmodule): Pass TFLAGS, adjust FLAGS.
4145 (all-stageid-prefixmodule): Likewise.
4146 (do-clean, distclean-stageid): Set TFLAGS.
4147 (restrap): Fix whitespace.
4148 * Makefile.in: Rebuilt.
4149
4150 2009-04-25 Eric Botcazou <ebotcazou@adacore.com>
4151
4152 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Add GNATBIND.
4153 (POSTSTAGE1_FLAGS_TO_PASS): Pick up exported value for GNATBIND.
4154 * Makefile.in: Regenerate.
4155
4156 2009-04-24 Eli Zaretskii <eliz@gnu.org>
4157
4158 * config.guess (pc:*:*:*): Return i586-pc-msdosdjgpp, for
4159 consistency with config.sub. (Update from upstream sources.)
4160
4161 2009-04-21 Joseph Myers <joseph@codesourcery.com>
4162
4163 * texinfo/texinfo.tex: Update to version 2009-03-28.05.
4164
4165 2009-04-17 Ben Elliston <bje@au.ibm.com>
4166
4167 * config.sub, config.guess: Update from upstream sources.
4168
4169 2009-04-15 Anthony Green <green@moxielogic.com>
4170
4171 * configure.ac: Add moxie support.
4172 * configure: Rebuilt.
4173
4174 2009-04-09 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4175
4176 * configure.ac: Bump minimum GMP/MPFR versions to 4.2 and 2.3.1.
4177 * configure: Regenerate.
4178
4179 2009-04-09 H.J. Lu <hongjiu.lu@intel.com>
4180
4181 PR gas/10039
4182 * configure.ac: Require texinfo 4.7.
4183 * configure: Regenerated.
4184
4185 2009-04-09 Steve Ellcey <sje@cup.hp.com>
4186
4187 * Makefil.def (languages): New entries.
4188 * Makefile.tpl (check-gcc-*): New generic target.
4189 * Makefile.in: Regenerate.
4190
4191 2009-03-27 Eli Zaretskii <eliz@gnu.org>
4192
4193 * djunpack.bat: Use ".." quoting in Sed command, for the sake of
4194 Windows builds of Sed.
4195
4196 2009-03-18 Tom Tromey <tromey@redhat.com>
4197
4198 * configure: Rebuild.
4199 * configure.ac (host_libs): Add libiconv.
4200 * Makefile.in: Rebuild.
4201 * Makefile.def (host_modules): Add libiconv.
4202 (configure-gdb, all-gdb): Depend on libiconv.
4203
4204 2009-03-16 Tristan Gingold <gingold@adacore.com>
4205
4206 * configure.ac: Treat gdb as supported on x86_64-darwin.
4207 * configure: Regenerate.
4208
4209 2009-03-16 Joseph Myers <joseph@codesourcery.com>
4210
4211 Merge from GCC:
4212
4213 2009-03-16 Joseph Myers <joseph@codesourcery.com>
4214
4215 * configure.ac (--with-host-libstdcxx): New option.
4216 * configure: Regenerate.
4217
4218 2009-01-29 Robert Millan <rmh@aybabtu.com>
4219
4220 * configure.ac: Recognize GNU/kOpenSolaris (*-*-kopensolaris*-gnu).
4221 * configure: Regenerate.
4222
4223 2009-01-12 Sebastian Pop <sebastian.pop@amd.com>
4224
4225 PR tree-optimization/38515
4226 * configure.ac (cloog-polylib): Removed.
4227 (with_ppl, with_cloog): Test for "no".
4228 * configure: Regenerated.
4229
4230 2009-03-01 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4231
4232 Backport from git Libtool:
4233
4234 2009-01-19 Robert Millan <rmh@aybabtu.com>
4235 Support GNU/kOpenSolaris.
4236 * libltdl/m4/libtool.m4 (_LT_SYS_DYNAMIC_LINKER)
4237 (_LT_CHECK_MAGIC_METHOD, _LT_COMPILER_PIC, _LT_LINKER_SHLIBS)
4238 (_LT_LANG_CXX_CONFIG) [kopensolaris*-gnu]: Recognize
4239 GNU/kOpenSolaris.
4240
4241 2009-02-05 Andreas Schwab <schwab@suse.de>
4242
4243 * Makefile.tpl (stage_last): Define $r and $s before using
4244 $(RECURSE_FLAGS_TO_PASS).
4245 * Makefile.in: Regenerate
4246
4247 2009-01-21 Jeff Johnston <jjohnstn@redhat.com>
4248
4249 * COPYING.NEWLIB: Add ARM license.
4250
4251 2009-01-16 Alan Modra <amodra@bigpond.net.au>
4252
4253 * Makefile.def (configure-opcodes): Depend on configure-libiberty.
4254 (all-opcodes): Depend on all-libiberty.
4255 * Makefile.in: Regenerate.
4256
4257 2009-01-15 Douglas B Rupp <rupp@gnat.com>
4258
4259 * configure.ac (ia64*-*-*vms*): Add case with no gdb or ld support.
4260 * configure: Regenerate.
4261
4262 2008-12-18 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4263
4264 Backport link test fix from upstream Libtool:
4265
4266 * libltdl.m4 (_LT_SYS_DYNAMIC_LINKER, _LT_LINKER_SHLIBS):
4267 Add cache variables to tests that require the linker to work.
4268 For shlibpath_overrides_runpath, this also changes the semantics
4269 to let the result from the C compiler take precedence.
4270 compiler take precedence.
4271
4272 2008-12-02 Ben Elliston <bje@au.ibm.com>
4273
4274 * config.sub, config.guess: Update from upstream sources.
4275
4276 2008-12-17 Jeff Johnston <jjohnstn@redhat.com>
4277
4278 * COPYING.NEWLIB: Updated.
4279 * COPYING.LIBGLOSS: Ditto.
4280
4281 2008-12-16 Paolo Bonzini <bonzini@gnu.org>
4282
4283 Sync with GCC:
4284
4285 2008-12-12 Sebastian Pop <sebastian.pop@amd.com>
4286
4287 * configure.ac (ppllibs): Add by default the lib flags.
4288 * configure: Regenerate.
4289
4290 2008-12-04 Jack Howarth <howarth@bromo.med.uc.edu>
4291
4292 * configure.ac: Add double brackets on darwin[912].
4293 * configure: Regenerate.
4294
4295 2008-12-02 Jack Howarth <howarth@bromo.med.uc.edu>
4296
4297 * configure.ac: Expand to darwin10 and later.
4298 * configure: Regenerate.
4299
4300 2008-12-02 Andreas Schwab <schwab@suse.de>
4301
4302 * Makefile.def: configure-target-boehm-gc depends on
4303 all-target-libstdc++-v3.
4304 * Makefile.in: Regenerate.
4305
4306 2008-12-02 Ben Elliston <bje@au.ibm.com>
4307
4308 * config.sub, config.guess: Update from upstream sources.
4309
4310 2008-11-27 Joseph Myers <joseph@codesourcery.com>
4311
4312 Merge from GCC:
4313
4314 2007-12-02 Matthias Klose <doko@ubuntu.com>
4315
4316 * config-ml.in: Remove 64bit configure tests.
4317
4318 2008-05-14 Rafael Espindola <espindola@google.com>
4319
4320 * config-ml.in: don't handle --enable-shared and --enable-static.
4321
4322 2008-09-02 Sebastian Pop <sebastian.pop@amd.com>
4323 Tobias Grosser <grosser@fim.uni-passau.de>
4324 Jan Sjodin <jan.sjodin@amd.com>
4325 Harsha Jagasia <harsha.jagasia@amd.com>
4326 Dwarakanath Rajagopal <dwarak.rajagopal@amd.com>
4327 Konrad Trifunovic <konrad.trifunovic@inria.fr>
4328 Adrien Eliche <aeliche@isty.uvsq.fr>
4329
4330 Merge from graphite branch.
4331 * configure: Regenerate.
4332 * Makefile.in: Regenerate.
4333 * configure.ac (host_libs): Add ppl and cloog.
4334 Add checks for PPL and CLooG.
4335 * Makefile.def (ppl, cloog): Added modules and dependences.
4336 * Makefile.tpl (PPLLIBS, PPLINC, CLOOGLIBS, CLOOGINC): New.
4337 (HOST_PPLLIBS, HOST_PPLINC, HOST_CLOOGLIBS, HOST_CLOOGINC): New.
4338
4339 2008-09-03 Richard Guenther <rguenther@suse.de>
4340
4341 * configure.ac: Always pass -DCLOOG_PPL_BACKEND to the
4342 cloog test.
4343 * configure: Re-generate.
4344
4345 2008-09-03 Sebastian Pop <sebastian.pop@amd.com>
4346
4347 * configure.ac (--with-cloog-polylib): New.
4348 (--disable-cloog-version-check): New.
4349 (--disable-ppl-version-check): New.
4350 * configure: Re-generate.
4351
4352 2008-09-05 Richard Guenther <rguenther@suse.de>
4353
4354 * configure.ac: Initialize clooglibs to -lcloog.
4355 * configure: Re-generate.
4356
4357 2008-10-13 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4358
4359 * configure.ac (MPFR check): Bump minimum version to 2.3.0 and
4360 recommended version to 2.3.2.
4361
4362 * configure: Regenerate.
4363
4364 2008-10-31 Ben Elliston <bje@au.ibm.com>
4365
4366 * configure.ac (spu-*-*): Remove special case.
4367 * configure: Regenerate.
4368
4369 Complete comment text from GCC version of:
4370
4371 2008-08-31 Aaron W. LaFramboise <aaronavay62@aaronwl.com>
4372
4373 * configure.ac (RPATH_ENVVAR): Use PATH on Windows.
4374 (GCC_SHLIB_SUBDIR): New.
4375 * Makefile.tpl (HOST_LIB_PATH_gcc): Use GCC_SHLIB_SUBDIR.
4376 * configure: Regenerate.
4377 * Makefile.in: Regenerate.
4378
4379 2008-11-27 Tristan Gingold <gingold@adacore.com>
4380
4381 * configure.ac: Build gdb for i?86-*-darwin*
4382 * configure: Regenerated.
4383
4384 2008-11-14 Daniel Jacobowitz <dan@codesourcery.com>
4385
4386 PR bootstrap/38014
4387 PR bootstrap/37923
4388
4389 Revert:
4390
4391 2008-10-24 Daniel Jacobowitz <dan@codesourcery.com>
4392
4393 * Makefile.tpl (HOST_EXPORTS): Correct CPPFLAGS typo.
4394 * Makefile.in: Regenerated.
4395
4396 2008-10-22 Daniel Jacobowitz <dan@codesourcery.com>
4397
4398 PR gdb/921
4399 PR gdb/1646
4400 PR gdb/2175
4401 PR gdb/2176
4402
4403 * Makefile.def (flags_to_pass): Add CPPFLAGS_FOR_BUILD and CPPFLAGS.
4404 * Makefile.tpl (BUILD_EXPORTS): Set CPPFLAGS.
4405 (EXTRA_BUILD_FLAGS): Correct typo. Pass CPPFLAGS.
4406 (HOST_EXPORTS): Pass CPPFLAGS.
4407 (CPPFLAGS_FOR_BUILD, CPPFLAGS, CPPFLAGS_FOR_TARGET): Define.
4408 (LDFLAGS_FOR_TARGET): Initialize from configure script.
4409 (EXTRA_TARGET_FLAGS): Set CPPFLAGS.
4410 * Makefile.in, configure: Regenerated.
4411 * configure.ac: Set CPPFLAGS_FOR_TARGET, LDFLAGS_FOR_TARGET,
4412 and CPPFLAGS_FOR_BUILD.
4413
4414 2008-10-29 Stefan Schulze Frielinghaus <xxschulz@de.ibm.com>
4415
4416 * configure.ac [spu-*-*]: Do not set skipdirs.
4417 * configure: Re-generate.
4418
4419 2008-10-24 Daniel Jacobowitz <dan@codesourcery.com>
4420
4421 * Makefile.tpl (HOST_EXPORTS): Correct CPPFLAGS typo.
4422 * Makefile.in: Regenerated.
4423
4424 2008-10-22 Daniel Jacobowitz <dan@codesourcery.com>
4425
4426 PR gdb/921
4427 PR gdb/1646
4428 PR gdb/2175
4429 PR gdb/2176
4430
4431 * Makefile.def (flags_to_pass): Add CPPFLAGS_FOR_BUILD and CPPFLAGS.
4432 * Makefile.tpl (BUILD_EXPORTS): Set CPPFLAGS.
4433 (EXTRA_BUILD_FLAGS): Correct typo. Pass CPPFLAGS.
4434 (HOST_EXPORTS): Pass CPPFLAGS.
4435 (CPPFLAGS_FOR_BUILD, CPPFLAGS, CPPFLAGS_FOR_TARGET): Define.
4436 (LDFLAGS_FOR_TARGET): Initialize from configure script.
4437 (EXTRA_TARGET_FLAGS): Set CPPFLAGS.
4438 * Makefile.in, configure: Regenerated.
4439 * configure.ac: Set CPPFLAGS_FOR_TARGET, LDFLAGS_FOR_TARGET,
4440 and CPPFLAGS_FOR_BUILD.
4441
4442 2008-09-29 Peter O'Gorman <pogma@thewrittenword.com>
4443
4444 * libtool.m4: Update to libtool 2.2.6.
4445 * lt~obsolete.m4: Update to libtool 2.2.6.
4446 * ltmain.sh: Update to libtool 2.2.6.
4447 * ltsugar.m4: Update to libtool 2.2.6.
4448 * ltversion.m4: Update to libtool 2.2.6.
4449 * ltoptions.m4: Update to libtool 2.2.6.
4450 * ltgcc.m4: Update to match changes from libtool 2.2.6.
4451
4452 2008-08-31 Aaron W. LaFramboise <aaronavay62@aaronwl.com>
4453
4454 * configure.ac (RPATH_ENVVAR): Use PATH on Windows.
4455 (GCC_SHLIB_SUBDIR): New.
4456 * Makefile.tpl (HOST_LIB_PATH_gcc): Use GCC_SHLIB_SUBDIR.
4457 * configure: Regenerate.
4458 * Makefile.in: Regenerate.
4459
4460 2008-08-28 Tristan Gingold <gingold@adacore.com>
4461
4462 * configure.ac (powerpc-*-darwin*, i?86-*-darwin*,x86_64-*-darwin9):
4463 Enable bfd, binutils and opcodes.
4464 * configure: Regenerate.
4465
4466 2008-08-16 Nicolas Roche <roche@adacore.com>
4467
4468 * Makefile.tpl: Add BOOT_ADAFLAGS.
4469 * Makefile.in: Regenerate.
4470
4471 2008-08-16 Richard Sandiford <rdsandiford@googlemail.com>
4472
4473 * configure.ac (mips*-*-*linux*, mips*-*-gnu*): Use mt-mips-gnu.
4474 * configure: Regenerate.
4475
4476 2008-07-30 Paolo Bonzini <bonzini@gnu.org>
4477
4478 Sync with gcc:
4479 2008-07-30 Paolo Bonzini <bonzini@gnu.org>
4480
4481 * configure.ac: Add makefile fragments for hpux.
4482 * Makefile.def (flags_to_pass): Add ADA_CFLAGS.
4483 * Makefile.tpl (HOST_EXPORTS): Pass ADA_CFLAGS.
4484 * configure: Regenerate.
4485 * Makefile.in: Regenerate.
4486
4487 2008-06-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4488
4489 * Makefile.tpl ($(srcdir)/configure): Update dependencies.
4490 * Makefile.in: Regenerate.
4491 * configure: Regenerate.
4492
4493 2008-06-18 Ian Lance Taylor <iant@google.com>
4494
4495 * src-release (BINUTILS_SUPPORT_DIRS): Remove mkdep and depcomp.
4496
4497 * src-release (BINUTILS_SUPPORT_DIRS): Add depcomp.
4498
4499 2008-06-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4500
4501 * configure: Regenerate.
4502
4503 2008-06-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4504
4505 * configure.ac: Set TOPLEVEL_CONFIGURE_ARGUMENTS early, when
4506 "$@" is still intact with both Autoconf 2.59 and 2.62.
4507 * configure: Regenerate.
4508
4509 2008-06-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4510
4511 * Makefile.tpl: Fix comment errors.
4512 * Makefile.in: Regenerate.
4513
4514 2008-06-13 Julian Brown <julian@codesourcery.com>
4515
4516 * configure.ac (arm*-*-linux-gnueabi): Don't disable building
4517 of libobjc for ARM EABI Linux.
4518 * configure: Regenerate.
4519
4520 2008-06-12 David S. Miller <davem@davemloft.net>
4521 David Edelsohn <edelsohn@gnu.org>
4522
4523 * configure.ac: Add powerpc*-*-* to gold supported targets.
4524 * configure: Regenerate.
4525
4526 2008-06-08 Joseph Myers <joseph@codesourcery.com>
4527
4528 PR tree-optimization/36218
4529 * Makefile.def (flags_to_pass): Add LDFLAGS_FOR_BUILD.
4530 * Makefile.tpl (EXTRA_BUILD_FLAGS): Define.
4531 (all prefix="build-"): Pass them to build-system sub-makes.
4532 * Makefile.in: Regenerate.
4533
4534 2008-05-16 Daniel Jacobowitz <dan@codesourcery.com>
4535
4536 * src-release (DEVO_SUPPORT): Add ChangeLog, MAINTAINERS,
4537 README-maintainer-mode, lt~obsolete.m4, ltgcc.m4, depcomp,
4538 mkdep, and compile. Update comments.
4539 (ETC_SUPPORT): Add ChangeLog and update comments.
4540
4541 2008-05-11 Ian Lance Taylor <iant@google.com>
4542
4543 * src-release (BINUTILS_SUPPORT_DIRS): Add elfcpp and gold.
4544
4545 2008-04-18 Paolo Bonzini <bonzini@gnu.org>
4546
4547 Sync with gcc:
4548 2008-04-18 Paolo Bonzini <bonzini@gnu.org>
4549
4550 PR bootstrap/35457
4551 * configure.ac: Include override.m4.
4552 * configure: Regenerate.
4553
4554 2008-04-18 Paolo Bonzini <bonzini@gnu.org>
4555
4556 * Makefile.tpl (restrap): Call `make all' using double-colon rules.
4557 * Makefile.in: Regenerate.
4558
4559 2008-04-11 Eric B. Weddington <eweddington@cso.atmel.com>
4560
4561 * configure.ac: Do not build libssp for the AVR.
4562 * configure: Regenerate.
4563
4564 2008-04-18 Nick Clifton <nickc@redhat.com>
4565
4566 * MAINTAINERS: Replace reference to configure.in with reference to
4567 configure.ac.
4568
4569 2008-04-18 M R Swami Reddy <MR.Swami.Reddy@nsc.com>
4570
4571 * configure.ac (cr16-*-*): Add case for cr16 target and include gdb
4572 as nonconfigurable directories list.
4573 * configure: Regenerate.
4574
4575 2008-04-14 David S. Miller <davem@davemloft.net>
4576
4577 * configure.ac: Add sparc*-*-* to gold supported targets.
4578 * configure: Regenerate.
4579
4580 2008-04-14 Ben Elliston <bje@au.ibm.com>
4581
4582 * config.sub, config.guess: Update from upstream sources.
4583
4584 2008-04-12 Hans-Peter Nilsson <hp@axis.com>
4585
4586 * Makefile.tpl <gcc>: Error early unless at least GNU make 3.80.
4587 * Makefile.in: Regenerate.
4588
4589 2008-04-07 Ian Lance Taylor <iant@google.com>
4590
4591 * Makefile.def: check-gold depends upon all-binutils.
4592 * Makefile.in: Regenerate.
4593
4594 2008-04-04 Nick Clifton <nickc@redhat.com>
4595
4596 PR binutils/4334
4597 * configure.ac: Run ACX_CHECK_CYGWIN_CAT_WORKS for cygwin hosted
4598 builds.
4599 * configure: Regenerate.
4600
4601 2008-04-04 NightStrike <NightStrike@gmail.com>
4602
4603 PR other/35151
4604 * configure.ac: Combine rules for mingw32 and mingw64.
4605 * configure: Regenerate.
4606
4607 2008-03-27 Paolo Bonzini <bonzini@gnu.org>
4608
4609 * Makefile.tpl (PICFLAG, PICFLAG_FOR_TARGET): Remove.
4610 * Makefile.in: Regenerate.
4611
4612 2008-03-20 Ian Lance Taylor <iant@google.com>
4613
4614 * configure.ac: Add support for --enable-gold.
4615 * Makefile.def: Add gold as a directory like ld.
4616 * configure, Makefile.in: Regenerate.
4617
4618 2008-03-19 Andreas Krebbel <krebbel1@de.ibm.com>
4619
4620 * opcodes/s390-mkopc.c (s390_opcode_cpu_val): S390_OPCODE_Z10 added.
4621 (s390_cond_extensions): Reduced extensions to the compare related.
4622 (main): z10 cpu type option added.
4623 (expandConditionalJump): Renamed to ...
4624 (insertExpandedMnemonic): ... this.
4625
4626 * opcodes/s390-opc.c: Re-group the operand format makros.
4627 (INSTR_RIE_RRPU, INSTR_RIE_RRP0, INSTR_RIE_RUPI,
4628 INSTR_RIE_R0PI, INSTR_RIE_RUPU, INSTR_RIE_R0PU, INSTR_RIE_R0IU,
4629 INSTR_RIE_R0I0, INSTR_RIE_R0UU, INSTR_RIE_R0U0,
4630 INSTR_RIE_RRUUU, INSTR_RIS_RURDI, INSTR_RIS_R0RDI, INSTR_RIS_RURDU,
4631 INSTR_RIS_R0RDU, INSTR_RRF_U0RR, INSTR_RRF_00RR, INSTR_RRS_RRRDU,
4632 INSTR_RRS_RRRD0, INSTR_RXY_URRD, INSTR_SIY_IRD, INSTR_SIL_RDI,
4633 INSTR_SIL_RDU): New instruction formats added.
4634 (MASK_RIE_RRPU, MASK_RIE_RRP0, MASK_RIE_RUPI, MASK_RIE_R0PI,
4635 MASK_RIE_RUPU, MASK_RIE_R0PU, MASK_RIE_R0IU, MASK_RIE_R0I0,
4636 MASK_RIE_R0UU, MASK_RIE_R0U0, MASK_RIE_RRUUU, MASK_RIS_RURDI,
4637 MASK_RIS_R0RDI, MASK_RIS_RURDU, MASK_RIS_R0RDU, MASK_RRF_U0RR,
4638 MASK_RRF_00RR, MASK_RRS_RRRDU, MASK_RRS_RRRD0, MASK_RXY_URRD,
4639 MASK_SIY_IRD, MASK_SIL_RDI, MASK_SIL_RDU): New instruction format
4640 masks added.
4641 (s390_opformats): New formats added "ris", "rrs", "sil".
4642 * opcodes/s390-opc.txt: Add the conditional jumps with the
4643 extensions removed from automatic expansion in s390-mkopc.c manually.
4644 (asi - trtre): Add new System z10 EC instructions.
4645 * include/opcode/s390.h (s390_opcode_cpu_val): S390_OPCODE_Z10 added.
4646
4647 2008-03-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4648
4649 * configure.ac: m4_include config/proginstall.m4.
4650 * configure: Regenerate.
4651
4652 2008-03-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4653
4654 Backport from upstream Libtool:
4655
4656 2007-10-12 Eric Blake <ebb9@byu.net>
4657
4658 Deal with Autoconf 2.62's semantic change in m4_append.
4659 * ltsugar.m4 (lt_append): Replace broken versions of
4660 m4_append.
4661 (lt_if_append_uniq): Don't require separator to be overquoted,
4662 and avoid broken m4_append.
4663 (lt_dict_add): Fix typo.
4664 * libtool.m4 (_LT_DECL): Don't overquote separator.
4665
4666 2008-03-13 David Edelsohn <edelsohn@gnu.org>
4667
4668 * config.rpath: Add AIX 6 support.
4669
4670 2008-03-13 Paolo Bonzini <bonzini@gnu.org>
4671
4672 * Makefile.def (stageprofile). Remove -fprofile-generate
4673 from stage_libcflags.
4674 * Makefile.in: Regenerate.
4675
4676 2008-03-13 Ben Elliston <bje@au.ibm.com>
4677
4678 * config.sub, config.guess: Update from upstream sources.
4679
4680 2008-03-06 Florian Krohm <fkrohm@us.ibm.com>
4681
4682 * s390-opc.c (INSTR_RSL_R0RD): Fix operands.
4683 * s390-opc.txt (cmpsc): Duplicate entry removed.
4684 (dxr, sqdr, sqer, cxfbr, cdfbr, cefbr, lzer, lzdr, lzxr,
4685 cegbr, cdgbr, cxgbr, cegr, cdgr, cxgr, cxfr, cdfr, cefr, fixr, fidr,
4686 fier, cu42, cu41): Fix operand format.
4687
4688 2008-02-20 Paolo Bonzini <bonzini@gnu.org>
4689
4690 PR bootstrap/32009
4691 PR bootstrap/32161
4692
4693 * configure.ac (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Compute here.
4694 * configure: Regenerate.
4695
4696 * Makefile.def: Define stage_libcflags for all bootstrap stages.
4697 * Makefile.tpl (BOOT_LIBCFLAGS, STAGE2_LIBCFLAGS, STAGE3_LIBCFLAGS,
4698 STAGE4_LIBCFLAGS): New.
4699 (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Subst from autoconf, without
4700 $(SYSROOT_CFLAGS_FOR_TARGET) and $(DEBUG_PREFIX_CFLAGS_FOR_TARGET).
4701 (BASE_TARGET_EXPORTS): Append them here to C{,XX}FLAGS.
4702 (EXTRA_TARGET_FLAGS): Append them here to {LIB,}C{,XX}FLAGS.
4703 (configure-stage[+id+]-[+prefix+][+module+]): Pass stage_libcflags
4704 for target modules. Don't export LIBCFLAGS.
4705 (all-stage[+id+]-[+prefix+][+module+]): Pass stage_libcflags; pass
4706 $(BASE_FLAGS_TO_PASS) where [+args+] was passed, and [+args+] after
4707 the overridden CFLAGS_FOR_TARGET and CXXFLAGS_FOR_TARGET.
4708 (invocations of `all'): Replace $(TARGET_FLAGS_TO_PASS) with
4709 $(EXTRA_TARGET_FLAGS), $(FLAGS_TO_PASS) with $(EXTRA_HOST_FLAGS).
4710 * Makefile.in: Regenerate.
4711
4712 2008-02-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4713
4714 PR libgcj/33085
4715 * libtool.m4 (_LT_COMPILER_PIC) [ mingw, cygwin ] <GCJ>:
4716 Do not use -DDLL_EXPORT. Backport from upstream.
4717
4718 2008-02-14 Nick Clifton <nickc@redhat.com>
4719
4720 Import this patch from gcc:
4721 2008-01-24 David Edelsohn <edelsohn@gnu.org>
4722
4723 * libtool.m4: Backport AIX 6 support from ToT Libtool.
4724
4725 2008-02-02 Hans-Peter Nilsson <hp@axis.com>
4726
4727 * configure.ac: Enable fortran for cris-*-elf and crisv32-*-elf.
4728 * configure: Regenerate.
4729
4730 2008-01-31 Marc Gauthier <marc@tensilica.com>
4731
4732 * configure.ac (xtensa*-*-*): Recognize processor variants.
4733 * configure: Regenerate.
4734
4735 2008-01-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4736
4737 PR bootstrap/34922
4738 * configure.ac (PARSE_ARGS): Push suitable setting of
4739 ac_subdirs_all, for `./configure --help=recursive'.
4740 Handle `+' in generic toplevel directory disabling.
4741 * configure: Regenerate.
4742
4743 2008-01-23 Ben Elliston <bje@au.ibm.com>
4744
4745 * config.sub, config.guess: Update from upstream sources.
4746
4747 2008-01-08 Ben Elliston <bje@au.ibm.com>
4748
4749 * config.sub, config.guess: Update from upstream sources.
4750
4751 2007-12-19 Jeff Johnston <jjohnstn@redhat.com>
4752
4753 * COPYING.LIBGLOSS: Update default copyright.
4754
4755 2007-12-19 Jeff Johnston <jjohnstn@redhat.com>
4756
4757 * COPYING.NEWLIB: Update default copyright.
4758
4759 2007-12-17 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4760
4761 * configure.ac: Change required MPFR from 2.2.0 -> 2.2.1.
4762 Change recommended MPFR from 2.2.1 > 2.3.0.
4763 * configure: Regenerate.
4764
4765 2007-12-13 Richard Sandiford <rsandifo@nildram.co.uk>
4766
4767 * Makefile.tpl (CFLAGS_FOR_TARGET): Add -g.
4768 (CXXFLAGS_FOR_TARGET): Add -O2 -g.
4769 * Makefile.in: Regenerate.
4770
4771 2007-12-10 Andreas Tobler <a.tobler@schweiz.org>
4772
4773 * configure.ac: Enable libjava for x86_64-*-darwin9.
4774 * configure: Regenerate.
4775
4776 2007-12-05 Ben Elliston <bje@au.ibm.com>
4777
4778 * config.sub, config.guess: Update from upstream sources.
4779
4780 2007-11-28 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4781
4782 * config-ml.in: Robustify against white space in absolute file
4783 names.
4784
4785 * config-ml.in (multi-clean): Substitute ${Makefile}.
4786 Remove superfluous ${Makefile} in list.
4787
4788 2007-10-23 Daniel Jacobowitz <dan@codesourcery.com>
4789
4790 * Makefile.def (dependencies): Make configure-gdb depend on
4791 all-intl.
4792 * Makefile.in: Regenerated.
4793
4794 2007-10-15 Patrick Mansfield <patmans@us.ibm.com>
4795
4796 * Makefile.def: To avoid problems running with parallel makes,
4797 build newlib before libgloss so that target specific header
4798 files are availble.
4799 * Makefile.in: Regenerate.
4800
4801 2007-10-11 Daniel Jacobowitz <dan@codesourcery.com>
4802
4803 * Makefile.def (dependencies): Add all-gdb -> all-libdecnumber.
4804 * Makefile.in: Regenerate.
4805
4806 2007-10-11 Daniel Jacobowitz <dan@codesourcery.com>
4807
4808 * src-release (GDB_SUPPORT_DIRS): Add libdecnumber.
4809 * libdecnumber: New directory, imported from GCC.
4810
4811 2007-10-08 Mike Frysinger <vapier@gentoo.org>
4812
4813 * configure.ac (CFLAGS_FOR_BUILD, CXXFLAGS_FOR_BUILD,
4814 LDFLAGS_FOR_BUILD): Default them to host flags only for $host = $build.
4815 Set default CXXFLAGS_FOR_BUILD to CXXFLAGS, not CFLAGS. Set default
4816 LDFLAGS_FOR_BUILD to LDFLAGS, not CFLAGS.
4817 * configure: Regenerate.
4818
4819 2007-10-01 Paolo Bonzini <bonzini@gnu.org>
4820
4821 * Makefile.tpl (AR_FOR_BUILD, AS_FOR_BUILD, CXX_FOR_BUILD,
4822 DLLTOOL_FOR_BUILD, GCJ_FOR_BUILD, GFORTRAN_FOR_BUILD,
4823 LDFLAGS_FOR_BUILD, LD_FOR_BUILD, NM_FOR_BUILD, RANLIB_FOR_BUILD,
4824 WINDMC_FOR_BUILD, WINDRES_FOR_BUILD): Use autoconf substitutions.
4825 * configure.ac: Default them to host tools for $host = $build.
4826 Subst them.
4827
4828 * configure: Regenerate.
4829 * Makefile.in: Regenerate.
4830
4831 2007-09-20 Richard Sandiford <rsandifo@nildram.co.uk>
4832
4833 * configure.ac (mipsisa*-*-elfoabi*): New stanza.
4834 * configure: Regenerate.
4835
4836 2007-09-19 Benjamin Kosnik <bkoz@redhat.com>
4837
4838 * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Move libgomp before
4839 libstdc++.
4840 * Makefile.def: Add libgomp config as a maybe dependency for libstdc++.
4841 * configure: Regenerate.
4842 * Makefile.in: Regenerate.
4843
4844 2007-09-17 Andreas Schwab <schwab@suse.de>
4845
4846 * configure.ac: Raise minimum makeinfo version to 4.6.
4847 * configure: Regenerate.
4848
4849 2007-09-15 Alan Modra <amodra@bigpond.net.au>
4850
4851 * configure.ac: Correct makeinfo version check.
4852 * configure: Regenerate.
4853
4854 2007-09-14 Richard Sandiford <richard@codesourcery.com>
4855
4856 * configure.ac (mips*-sde-elf*): New stanza. Add target-libiberty
4857 to $skipdirs and only disable gprof for newlib. Use the normal
4858 mips*-elf* handling in other respects.
4859 * configure: Regnerate.
4860
4861 2007-09-12 David Daney <ddaney@avtrex.com>
4862
4863 * configure.ac: Remove mips64*-*-linux* noconfigdirs section, thus
4864 enabling libgcj.
4865 * configure: Regenerate.
4866
4867 2007-09-12 Richard Guenther <rguenther@suse.de>
4868
4869 * configure.ac (--enable-stage1-checking): If neither --enable-checking
4870 nor --disable-checking is provided also turn on yes and types
4871 checking for stage1.
4872 * configure: Re-generate.
4873
4874 2007-09-11 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
4875
4876 PR target/33281
4877 * configure.ac: Use config/mh-mingw on mingw.
4878 * configure: Regenerate.
4879
4880 2007-09-10 Rask Ingemann Lambertsen <rask@sygehus.dk>
4881
4882 PR other/32154
4883 * configure.ac: For libgloss targets, point the linker to the linker
4884 script, startup code and simulator library.
4885 * configure: Regenerate.
4886
4887 2007-09-09 Andrew Haley <aph@redhat.com>
4888
4889 * configure.ac (noconfigdirs): Remove target-libffi and
4890 target-libjava.
4891
4892 2007-08-29 Nick Clifton <nickc@redhat.com>
4893
4894 * config.sub, config.guess: Update from upstream sources.
4895
4896 2007-08-21 Richard Guenther <rguenther@suse.de>
4897
4898 * configure.ac: Add types checking to stage1 checking flags.
4899 * configure: Regenerate.
4900
4901 2007-08-18 Paul Brook <paul@codesourcery.com>
4902 Joseph Myers <joseph@codesourcery.com>
4903
4904 * Makefile.tpl (DEBUG_PREFIX_CFLAGS_FOR_TARGET): New.
4905 (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Include it.
4906 * Makefile.in: Regenerate.
4907 * configure.ac (--with-debug-prefix-map): New.
4908 * configure: Regenerate.
4909
4910 2007-08-17 Richard Sandiford <richard@codesourcery.com>
4911 Nigel Stephens <nigel@mips.com>
4912
4913 * configure.ac (mips*-sde-elf*): New stanza. Use config/mt-sde
4914 as target_makefile_frag.
4915 * configure: Regenerate.
4916
4917 2007-08-16 Alexandre Oliva <aoliva@redhat.com>
4918
4919 * Makefile.def (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS):
4920 Add to flags_to_pass. Adjust uses of BOOT_CFLAGS.
4921 (bootstrap2-debug, bootstrap-debug): New bootstrap stages.
4922 * Makefile.tpl (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS): New.
4923 (do-compare, do-compare3, do-compare-debug): New.
4924 ([+compare-target+]): Use them.
4925
4926 2007-08-16 Alexandre Oliva <aoliva@redhat.com>
4927
4928 * Makefile.def (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS):
4929 Add to flags_to_pass. Adjust uses of BOOT_CFLAGS.
4930 (bootstrap2-debug, bootstrap-debug): New bootstrap stages.
4931 * Makefile.tpl (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS): New.
4932 (do-compare, do-compare3, do-compare-debug): New.
4933 ([+compare-target+]): Use them.
4934
4935 2007-08-13 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4936 Ben Elliston <bje@au.ibm.com>
4937
4938 * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS, baseargs): Pass
4939 --silent if $silent.
4940 * configure: Regenerate.
4941
4942 2007-08-12 Daniel Jacobowitz <dan@codesourcery.com>
4943
4944 * src-release (DEVO_SUPPORT): Add COPYING3 and COPYING3.LIB.
4945
4946 2007-07-17 Nick Clifton <nickc@redhat.com>
4947
4948 * COPYING3: New file. Contains version 3 of the GNU General
4949 Public License.
4950 * COPYING3.LIB: New file. Contains version 3 of the GNU
4951 Lesser General Public License.
4952
4953 2007-07-11 Bernd Schmidt <bernd.schmidt@analog.com>
4954
4955 * configure.ac: Fix my previous change to really match GCC.
4956 * configure: Regenerate.
4957
4958 2007-07-11 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4959
4960 * configure.ac: Rewrite 'configure --help' strings to look nicer.
4961 * configure: Regenerate.
4962
4963 2007-07-11 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4964
4965 * configure.ac: Add some missing m4 quotation.
4966 * configure: Regenerate.
4967
4968 2007-07-09 Kai Tietz <kai.tietz@onevision.com>
4969
4970 * Makefile.def: Add windmc tool to build.
4971 * Makefile.tpl: Likewise.
4972 * configure.ac: Likewise.
4973 * Makefile.in: Regenerate.
4974 * configure: Regenerate.
4975
4976 2007-07-05 H.J. Lu <hongjiu.lu@intel.com>
4977
4978 * lt~obsolete.m4: New. Import from 20070318 libtool.
4979
4980 2007-06-29 Bernd Schmidt <bernd.schmidt@analog.com>
4981
4982 * configure.ac: Don't add target-libmudflap to noconfigdirs for
4983 uclinux and linux-uclibc targets.
4984 * configure: Regenerate.
4985
4986 2007-06-28 DJ Delorie <dj@redhat.com>
4987
4988 * configure.ac (arm*-*-linux-gnueabi): Don't build libgloss if we're
4989 not building newlib.
4990 * configure: Regenerated.
4991
4992 2007-06-22 Daniel Jacobowitz <dan@codesourcery.com>
4993
4994 * src-release (DEVO_SUPPORT): Correct typos.
4995
4996 2007-06-18 Daniel Jacobowitz <dan@codesourcery.com>
4997
4998 * Makefile.def: Add dependency from configure-gdb to all-bfd.
4999 * Makefile.in: Regenerated.
5000
5001 2007-06-14 Paolo Bonzini <bonzini@gnu.org>
5002
5003 * Makefile.tpl (cleanstrap): Don't delete the toplevel Makefile.
5004 (distclean-stage[+id+]): Possibly delete stage_last.
5005 * Makefile.in: Regenerate.
5006
5007 2007-06-07 Ben Elliston <bje@au.ibm.com>
5008
5009 * config.sub, config.guess: Update from upstream sources.
5010
5011 2007-06-07 Ben Elliston <bje@au.ibm.com>
5012
5013 * Makefile.tpl: Fix spelling error.
5014 * Makefile.in: Regenerate.
5015
5016 2007-06-04 Paolo Bonzini <bonzini@gnu.org>
5017
5018 Sync with gcc:
5019 2007-05-30 Jakub Jelinek <jakub@redhat.com>
5020
5021 PR bootstrap/29382
5022 * configure.ac: Don't use -fkeep-inline-functions for GCC < 3.3.1.
5023 * configure: Rebuilt.
5024
5025 2007-06-01 Steve Ellcey <sje@cup.hp.com>
5026
5027 * libtool.m4 (LT_CMD_MAX_LEN): Try using getconf to set
5028 lt_cv_sys_max_cmd_len.
5029
5030 2007-05-31 Paolo Bonzini <bonzini@gnu.org>
5031
5032 * ltgcc.m4: Update from GCC.
5033
5034 2007-05-25 Andreas Tobler <a.tobler@schweiz.org>
5035
5036 * ltmain.sh: Fix Darwin verstring, remove ${wl}.
5037
5038 2007-05-24 Steve Ellcey <sje@cup.hp.com>
5039
5040 * ltmain.sh: Update from GCC.
5041 * libtool.m4: Update from GCC.
5042 * ltsugar.m4: New. Update from GCC.
5043 * ltversion.m4: New. Update from GCC.
5044 * ltoptions.m4: New. Update from GCC.
5045 * ltconfig: Remove.
5046 * ltcf-c.sh: Remove.
5047 * ltcf-cxx.sh: Remove.
5048 * ltcf-gcj.sh: Remove.
5049 * src-release: Update with new libtool file list.
5050
5051 2007-05-16 Paolo Bonzini <bonzini@gnu.org>
5052
5053 * Makefile.def (bootstrap_stage): Replace stage_make_flags with
5054 stage_cflags.
5055 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS, POSTSTAGE1_FLAGS_TO_PASS):
5056 Remove CFLAGS/LIBCFLAGS.
5057 (configure-stage[+id+]-[+prefix+][+module+],
5058 all-stage[+id+]-[+prefix+][+module+]): Pass it from [+stage_cflags+].
5059 * Makefile.in: Regenerate.
5060
5061 2007-04-14 Steve Ellcey <sje@cup.hp.com>
5062
5063 * config-ml.in: Update from GCC.
5064
5065 2007-04-09 Daniel Jacobowitz <dan@codesourcery.com>
5066
5067 * src-release (do-proto-toplev): Process the support directories before
5068 the tool directory.
5069
5070 2007-03-21 Richard Sandiford <richard@codesourcery.com>
5071
5072 * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Fix m4 quoting
5073 of glob. Quote arguments with single quotes too.
5074 * configure: Regenerate.
5075
5076 2007-03-12 Brooks Moses <brooks.moses@codesourcery.com>
5077
5078 * Makefile.def (fixincludes): Remove unneeded "missing" lines.
5079 * Makefile.in: Regenerate
5080
5081 2007-03-07 Andreas Schwab <schwab@suse.de>
5082
5083 * configure: Regenerate.
5084
5085 2007-03-01 Brooks Moses <brooks.moses@codesourcery.com>
5086
5087 * configure.ac: Add "--with-pdfdir" configure option,
5088 which defines pdfdir variable.
5089 * Makefile.def (target=fixincludes): Add install-pdf to
5090 missing targets.
5091 (recursive_targets): Add install-pdf target.
5092 (flags_to_pass): Add pdfdir.
5093 * Makefile.tpl: Add pdfdir handling, add do-install-pdf
5094 target.
5095 * configure: Regenerate
5096 * Makefile.in: Regenerate
5097
5098 2007-02-28 Eric Christopher <echristo@apple.com>
5099
5100 Revert:
5101 2006-12-07 Mike Stump <mrs@apple.com>
5102
5103 * Makefile.def (dependencies): Add dependency for
5104 install-target-libssp and install-target-libgomp on
5105 install-gcc.
5106 * Makefile.in: Regenerate.
5107
5108 2007-02-27 Matt Kraai <kraai@ftbfs.org>
5109
5110 * configure: Regenerate.
5111 * configure.ac: Move statements after variable declarations.
5112
5113 2007-02-19 Joseph Myers <joseph@codesourcery.com>
5114
5115 * configure.ac: Adjust for loop syntax.
5116 * configure: Regenerate.
5117
5118 2007-02-18 Alexandre Oliva <aoliva@redhat.com>
5119
5120 * configure: Rebuilt.
5121
5122 2007-02-18 Alexandre Oliva <aoliva@redhat.com>
5123
5124 * configure.ac: Drop multiple occurrences of --enable-languages,
5125 and fix its quoting.
5126 * configure: Rebuilt.
5127
5128 2007-02-17 Mark Mitchell <mark@codesourcery.com>
5129 Nathan Sidwell <nathan@codesourcery.com>
5130 Vladimir Prus <vladimir@codesourcery.com
5131 Joseph Myers <joseph@codesourcery.com>
5132
5133 * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Fix quoting.
5134 * configure: Regenerate.
5135
5136 2007-02-13 Daniel Jacobowitz <dan@codesourcery.com>
5137
5138 * configure.ac (target_libraries): Move libgcc before libiberty.
5139 * configure: Regenerated.
5140
5141 2007-02-13 Paolo Bonzini <bonzini@gnu.org>
5142
5143 * configure: Regenerate again?
5144
5145 2007-02-13 Paolo Bonzini <bonzini@gnu.org>
5146
5147 * configure: Reapply PR30748 fix which was lost in the previous commit.
5148
5149 2007-02-13 Daniel Jacobowitz <dan@codesourcery.com>
5150 Paolo Bonzini <bonzini@gnu.org>
5151
5152 PR bootstrap/30753
5153 * configure.ac: Remove obsolete build / host tests. Use AC_PROG_CC
5154 unconditionally. Use AC_PROG_CXX. Use ACX_TOOL_DIRS to find $prefix.
5155 * configure: Regenerated.
5156
5157 2007-02-10 Paolo Bonzini <bonzini@gnu.org>
5158
5159 * configure: Regenerate.
5160
5161 2007-02-09 Daniel Jacobowitz <dan@codesourcery.com>
5162
5163 PR bootstrap/30748
5164 * configure.ac: Correct syntax for Solaris ksh.
5165 * configure: Regenerated.
5166
5167 2007-02-09 Paolo Bonzini <bonzini@gnu.org>
5168
5169 * Makefile.def: Sync with GCC.
5170 * Makefile.tpl: Sync with GCC.
5171 * Makefile.in: Regenerate.
5172 * configure: Regenerate.
5173
5174 2007-02-09 Daniel Jacobowitz <dan@codesourcery.com>
5175
5176 * Makefile.tpl (build_alias, host_alias, target_alias): Use
5177 noncanonical equivalents.
5178 * configure.in: Rename to...
5179 * configure.ac: ...this. Update AC_PREREQ. Prevent error for
5180 AS_FOR_TARGET. Set build_noncanonical, host_noncanonical, and
5181 target_noncanonical. Use them. Rewrite removal of configure
5182 arguments for autoconf 2.59. Discard variable settings. Force
5183 program_transform_name for native tools.
5184
5185 * Makefile.in: Regenerated.
5186 * configure: Regenerated with autoconf 2.59.
5187
5188 * src-release (DEVO_SUPPORT, do-proto-toplev): Expect configure.ac.
5189
5190 2007-02-08 Jeff Johnston <jjohnstn@redhat.com>
5191
5192 * COPYING.LIBGLOSS: Reformat default Red Hat
5193 license to fit within 80 columns.
5194 * COPYING.NEWLIB: Ditto.
5195
5196 2007-02-05 Dave Brolley <brolley@redhat.com>
5197
5198 * Contribute the following changes:
5199 2006-11-28 DJ Delorie <dj@redhat.com>
5200
5201 * configure.in: Fix typo for mep's target_makefile_frag.
5202 * configure: Regenerated.
5203
5204 2005-04-22 Richard Sandiford <rsandifo@redhat.com>
5205
5206 * configure.in (mep*): Add -mlibrary to FLAGS_FOR_TARGET.
5207 * configure: Regenerate.
5208
5209 2001-09-19 DJ Delorie <dj@redhat.com>
5210
5211 * configure.in (target_makefile_frag): use mt-mep
5212
5213 2001-06-12 Don Howard <dhoward@redhat.com>
5214
5215 * configure.in: Remove gdb from MeP skip list.
5216
5217 2001-04-05 DJ Delorie <dj@redhat.com>
5218
5219 * configure.in (noconfigdirs): Remove gcc from MeP skip list.
5220
5221 2001-03-20 Ben Elliston <bje@redhat.com>
5222
5223 * configure.in (noconfigdirs): Add gcc and gdb for MeP.
5224
5225 2001-03-19 Ben Elliston <bje@redhat.com>
5226
5227 * config.sub (mep, mep-*): Add.
5228
5229 2007-01-31 Andreas Schwab <schwab@suse.de>
5230
5231 * Makefile.tpl (LDFLAGS): Substitute it.
5232 * Makefile.in: Regenerate.
5233
5234 2007-01-11 Paolo Bonzini <bonzini@gnu.org>
5235
5236 * configure.in: Change == to = in test command.
5237 * configure: Regenerate.
5238
5239 2007-01-11 Paolo Bonzini <bonzini@gnu.org>
5240 Nick Clifton <nickc@redhat.com>
5241 Kaveh R. Ghazi <ghazi@caip.rutgets.edu>
5242
5243 * configure.in (build_configargs, host_configargs, target_configargs):
5244 Remove build/host/target parameters.
5245 (host_libs): Add gmp and mpfr.
5246 (GMP tests): Reorganize to allow in-tree GMP/MPFR.
5247 * Makefile.def (gmp, mpfr): New.
5248 (gcc): Remove target.
5249 * Makefile.tpl (build_os, build_vendor, host_os, host_vendor,
5250 target_os, target_vendor): New.
5251 (configure): Add host_alias/target_alias arguments. Adjust invocations.
5252 * configure: Regenerate.
5253 * Makefile.in: Regenerate.
5254
5255 2007-01-11 Matt Fago <fago@earthlink.net>
5256
5257 * configure.in: Try to link to functions only in mpfr 2.2.x
5258 to improve robustness of configure tests.
5259 * configure: Regenerate.
5260
5261 2007-01-08 Kai Tietz <kai.tietz@onevision.com>
5262
5263 * configure.in: Add support for an x86_64-mingw* target.
5264 * configure: Regenerate.
5265
5266 2007-01-05 Daniel Jacobowitz <dan@codesourcery.com>
5267
5268 * Makefile.tpl (all-target): Correct @if conditional for target
5269 modules.
5270 * configure.in: Omit libiberty if building only target libgcc.
5271 * configure, Makefile.in: Regenerated.
5272
5273 2007-01-04 Paolo Bonzini <bonzini@gnu.org>
5274
5275 * configure.in: Use DEV-PHASE to detect the default for --enable-werror.
5276 * configure: Regenerate.
5277
5278 2007-01-03 Daniel Jacobowitz <dan@codesourcery.com>
5279
5280 * Makefile.def (target_modules): Add libgcc.
5281 (lang_env_dependencies): Remove default items. Use no_c and no_gcc.
5282 * Makefile.tpl (clean-target-libgcc): Delete.
5283 (configure-target-[+module+]): Emit --disable-bootstrap dependencies
5284 on gcc even for bootstrapped modules. Rewrite handling of
5285 lang_env_dependencies to loop over target_modules.
5286 * configure.in (target_libraries): Add target-libgcc.
5287 * Makefile.in, configure: Regenerated.
5288
5289 2006-12-29 Paolo Bonzini <bonzini@gnu.org>
5290
5291 Sync with gcc:
5292 2006-12-29 Paolo Bonzini <bonzini@gnu.org>
5293
5294 * configure.in: Reorganize recognition of languages. Add
5295 --enable-stage1-languages. Show supported languages for the chosen
5296 target rather than all recognized languages.
5297 * configure: Regenerate.
5298
5299 2006-12-29 Paolo Bonzini <bonzini@gnu.org>
5300
5301 * Makefile.tpl (GCC_STRAP_TARGETS, all-prebootstrap): Remove.
5302 * Makefile.in: Regenerate.
5303
5304 2006-12-29 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5305
5306 * configure.in: Warn that MPFR 2.2.0 is buggy.
5307 * configure: Regenerate.
5308
5309 2006-12-27 Ian Lance Taylor <iant@google.com>
5310
5311 * configure.in: When removing Makefiles to force a reconfigure, also
5312 remove prev-DIR*/Makefile.
5313 * configure: Regenerate.
5314
5315 2006-12-23 Kazu Hirata <kazu@codesourcery.com>
5316
5317 * config.bfd: Recognize fido.
5318
5319 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
5320
5321 Sync with gcc:
5322
5323 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
5324
5325 * configure.in: Remove "$build" case for powerpc-*-darwin* since
5326 it only affects bootstrap and could be tested on "$host" as well.
5327 * configure: Regenerate.
5328 * config/mh-ppc-darwin: Add to the stage1 cflags here.
5329
5330 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
5331
5332 PR bootstrap/29544
5333 * Makefile.def (flags_to_pass): Add STAGE1_CHECKING.
5334 (bootstrap_stage): Add STAGE1_CHECKING to stage1 configure flags,
5335 move here comment from Makefile.tpl.
5336 * Makefile.tpl: Move some definitions higher in the file.
5337 (STAGE1_CHECKING): New.
5338 * configure.in: Add --enable-stage1-checking.
5339 * configure: Regenerate.
5340 * Makefile.in: Regenerate.
5341
5342 2006-12-03 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5343
5344 * configure.in: Update error message for missing GMP/MPFR.
5345
5346 * configure: Regenerate.
5347
5348 2006-12-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5349
5350 * configure.in: Update MPFR version in error message.
5351
5352 * configure: Regenerate.
5353
5354 2006-11-26 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5355
5356 * configure.in (--with-mpfr-dir, --with-gmp-dir): Remove flags.
5357 (--with-mpfr-include, --with-mpfr-lib, --with-gmp-include,
5358 --with-gmp-lib): New flags.
5359
5360 * configure: Regenerate.
5361
5362 2006-12-12 Andreas Tobler <a.tobler@schweiz.org>
5363
5364 PR bootstrap/30134
5365 * configure.in: Correct x86 darwin support for libjava to powerpc
5366 and i?86 only.
5367 * configure: Regenerate.
5368
5369 2006-12-11 Alan Modra <amodra@bigpond.net.au>
5370
5371 * configure.in: Handle spu makefile frag.
5372 * Makefile.tpl (MAINT): Define
5373 (MAINTAINER_MODE_FALSE, MAINTAINER_MODE_TRUE): Define.
5374 * configure: Regenerate.
5375 * Makefile.in: Regenerate.
5376
5377 2006-12-11 Ben Elliston <bje@au.ibm.com>
5378
5379 * config.sub, config.guess: Update from upstream sources.
5380
5381 2006-12-11 Ben Elliston <bje@au.ibm.com>
5382
5383 * configure.in: Sync with GCC (spu-*-*).
5384 * configure: Sync with GCC.
5385
5386 2006-12-07 Mike Stump <mrs@apple.com>
5387
5388 * Makefile.def (dependencies): Add dependency for
5389 install-target-libssp and install-target-libgomp on
5390 install-gcc.
5391 * Makefile.in: Regenerate.
5392
5393 2006-11-16 Paolo Bonzini <bonzini@gnu.org>
5394
5395 * Makefile.tpl (clean-target-libgcc): Test for gcc Makefile presence.
5396 (unstage): Test for stage_last presence.
5397
5398 PR bootstrap/29802
5399 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Add HOST_SUBDIR in STAGE_PREFIX.
5400 * Makefile.in: Regenerate.
5401
5402 2006-11-14 DJ Delorie <dj@redhat.com>
5403
5404 * Makefile.tpl (clean-stage*): Sync with GCC (clean).
5405 * Makefile.in: Sync with GCC.
5406 * configure.in: Sync with GCC (mpfr, gmp).
5407 * configure: Sync with GCC.
5408
5409 2006-11-08 Jie Zhang <jie.zhang@analog.com>
5410
5411 * configure.in: Remove target-libgloss from noconfigdirs for
5412 bfin-*-*.
5413 * configure: Regenerated.
5414
5415 2006-10-27 Jeff Johnston <jjohnstn@redhat.com>
5416
5417 * COPYING.NEWLIB: Add spu license.
5418 * COPYING.LIBGLOSS: Ditto.
5419
5420 2006-10-17 Brooks Moses <bmoses@stanford.edu>
5421
5422 * Makefile.def: Added pdf target handling.
5423 * Makefile.tpl: Added pdf target handling.
5424 * Makefile.in: Regenerated.
5425
5426 2006-10-11 Jeff Johnston <jjohnstn@redhat.com>
5427
5428 * COPYING.NEWLIB: Updated.
5429 * COPYING.LIBGLOSS: Ditto.
5430
5431 2006-09-27 Dave Brolley <brolley@redhat.com>
5432
5433 * configure.in (RUNTEST): Look for 'runtest' in the source tree by using
5434 $s instead of $r.
5435 * configure: Regenerated.
5436
5437 2006-09-26 Ben Elliston <bje@au.ibm.com>
5438
5439 * config.sub, config.guess: Update from upstream sources.
5440
5441 2006-09-20 Thiemo Seufer <ths@mips.com>
5442
5443 * configure.in: Remove redundant handling of mips*-dec-bsd*. Likewise
5444 for mipstx39-*-*. Disable libgloss for mips64*-*-linux*.
5445 * configure: Regenerate.
5446
5447 2006-08-30 Corinna Vinschen <corinna@vinschen.de>
5448
5449 * configure.in: Never build newlib for a Mingw host.
5450 Never build newlib as Mingw target library.
5451 Test the existence of winsup/cygwin for building a Cygwin newlib,
5452 rather than just winsup.
5453 Add winsup/mingw and winsup/w32api paths to FLAGS_FOR_TARGET if
5454 building a Mingw target.
5455 * configure: Regenerate.
5456
5457 2006-08-15 Thiemo Seufer <ths@mips.com>
5458 Nigel Stephens <nigel@mips.com>
5459 David Ung <davidu@mips.com>
5460
5461 * config.sub: Add support for sde as alias of mipsisa32-sde-elf.
5462
5463 2006-07-25 Paolo Bonzini <bonzini@gnu.org>
5464
5465 Sync from GCC:
5466 2006-07-04 Eric Botcazou <ebotcazou@libertysurf.fr>
5467
5468 PR bootstrap/18058
5469 * configure.in: Add -fkeep-inline-functions to CFLAGS for stage 1
5470 if the bootstrap compiler is a GCC version that supports it.
5471 * configure: Regenerate.
5472
5473 2006-07-22 Daniel Jacobowitz <dan@codesourcery.com>
5474
5475 * configure.in: Allow mingw32 and cygwin targets to build cross-gdb.
5476 * configure: Regenerated.
5477
5478 2006-07-18 Paolo Bonzini <bonzini@gnu.org>
5479
5480 * Makefile.tpl (configure-stageN-MODULE): Pass --with-build-libsubdir
5481 for stages after the first.
5482
5483 2006-07-17 Jakub Jelinek <jakub@redhat.com>
5484
5485 * Makefile.def: Add dependencies for configure-opcodes
5486 on configure-intl and all-opcodes on all-intl.
5487 * Makefile.in: Regenerated.
5488
5489 2006-07-04 Peter O'Gorman <peter@pogma.com>
5490
5491 * ltconfig: chmod 644 before ranlib during install.
5492
5493 2006-07-03 Paolo Bonzini <bonzini@gnu.org>
5494
5495 * configure.in: Fix thinkos in previous check-in.
5496 * configure: Regenerate.
5497
5498 2006-07-03 Paolo Bonzini <bonzini@gnu.org>
5499
5500 Sync from gcc:
5501
5502 2007-07-03 Paolo Bonzini <bonzini@gnu.org>
5503
5504 PR other/27063
5505 * configure.in: Test subdir_requires and give an appropriate
5506 error message.
5507 * configure: Regenerate.
5508
5509 2006-06-16 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
5510
5511 PR target/27540
5512 * configure.in: Only enable libgomp on IRIX 6.
5513 * configure: Regenerate.
5514
5515 2006-06-20 David Ayers <d.ayers@inode.at>
5516
5517 PR bootstrap/28072
5518 * configure.in: Add target-boehm-gc to noconfigdirs depending on
5519 whether target-libjava is being configured instead of whether the
5520 java front end is enabled.
5521 * configure: Regenerate.
5522
5523 2006-06-15 Mark Shinwell <shinwell@codesourcery.com>
5524
5525 * include/elf/arm.h: Correct names of R_ARM_LDC_G{0,1,2}
5526 to R_ARM_LDC_SB_G{0,1,2} respectively.
5527
5528 2006-06-15 Paolo Bonzini <bonzini@gnu.org>
5529
5530 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Export CFLAGS and LDFLAGS
5531 too.
5532 * Makefile.in: Regenerate.
5533
5534 2006-06-13 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
5535
5536 Sync from gcc:
5537
5538 2006-06-12 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
5539 * configure.in: Don't enable libgomp on hpux10.
5540 * configure: Rebuilt.
5541
5542 2006-06-13 David Ayers <d.ayers@inode.at>
5543
5544 Sync from gcc:
5545
5546 2006-06-12 David Ayers <d.ayers@inode.at>
5547
5548 PR bootstrap/27963
5549 PR target/19970
5550 * configure.in: Remove target-boehm-gc from noconfigdirs where
5551 ${libgcj} is specified.
5552 * configure: Regenerate.
5553
5554 2006-06-08 Jeff Johnston <jjohnstn@redhat.com>
5555
5556 Sync from gcc:
5557
5558 2005-01-12 David Edelsohn <edelsohn@gnu.org>
5559 Andreas Schwab <schwab@suse.de>
5560
5561 PR bootstrap/18033
5562 * config-ml.in: Eval option if surrounded by single quotes.
5563
5564 2006-06-07 Carlos O'Donell <carlos@codesourcery.com>
5565
5566 Sync from gcc:
5567
5568 2006-06-06 David Ayers <d.ayers@inode.at>
5569
5570 PR libobjc/13946
5571 * Makefile.def: Add dependencies for libobjc which boehm-gc.
5572 * Makefile.in: Regenerate.
5573 * configure.in: Add --enable-objc-gc at toplevel and have it
5574 enable boehm-gc for Objective-C.
5575 Remove target-boehm-gc from libgcj.
5576 Add target-boehm-gc to target_libraries.
5577 Add target-boehm-gc to noconfigdirs where ${libgcj}
5578 is specified.
5579 Assert that boehm-gc is supported when requested for Objective-C.
5580 Only build boehm-gc if needed either for Java or Objective-C.
5581 * configure: Regenerate.
5582
5583 2006-06-05 Paolo Bonzini <bonzini@gnu.org>
5584
5585 PR 27674
5586 * Makefile.tpl (configure-[+prefix+][+module+],
5587 all-[+prefix+][+module+]): Depend on stage_current if bootstrapping.
5588 Remove rule to unstage bootstrapped modules.
5589 (stage_current): New.
5590 * Makefile.in: Regenerate.
5591
5592 2006-05-20 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
5593 Andreas Tobler <a.tobler@schweiz.ch>
5594
5595 * configure.in: Enable libgcj for hppa*-hp-hpux11*.
5596 * configure: Rebuilt.
5597
5598 Revert
5599 2006-01-31 Richard Guenther <rguenther@suse.de>
5600 Paolo Bonzini <bonzini@gnu.org>
5601
5602 * Makefile.def (target_modules): Add libgcc-math target module.
5603 * configure.in (target_libraries): Add libgcc-math target library.
5604 (--enable-libgcc-math): New configure switch.
5605 * Makefile.in: Re-generate.
5606 * configure: Re-generate.
5607
5608 2006-06-05 Jeff Johnston <jjohnstn@redhat.com>
5609
5610 * config-ml.in: Alter CCASFLAGS to include special
5611 multilib options the same as is done for CFLAGS.
5612
5613 2006-05-31 Daniel Jacobowitz <dan@codesourcery.com>
5614
5615 * Makefile.def: Added dependencies from sim and gdb on intl, and
5616 added configure dependencies to everything with an all dependency
5617 on intl.
5618 * gettext.m4: Removed.
5619 * src-release (DEVO_SUPPORT): Don't mention gettext.m4.
5620 (GDB_SUPPORT_DIRS): Add intl.
5621 * Makefile.in: Regenerated.
5622
5623 2006-05-25 Daniel Jacobowitz <dan@codesourcery.com>
5624
5625 * src-release (DEVO_SUPPORT): Add config.rpath.
5626
5627 2006-05-25 Paolo Bonzini <bonzini@gnu.org>
5628
5629 * Makefile.def (bfd, opcodes): Fix lib_path.
5630 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Replace ADAC with ADAFLAGS.
5631 (restrap): Move under "@if gcc-bootstrap". Fix typo.
5632 * Makefile.in: Regenerate.
5633
5634 2006-05-24 Mark Shinwell <shinwell@codesourcery.com>
5635
5636 * configure.in: Enable gprof for cross builds.
5637 * configure: Regenerate.
5638
5639 2006-05-17 Daniel Jacobowitz <dan@codesourcery.com>
5640
5641 * src-release (MAKEINFOFLAGS): Define.
5642 (do-proto-toplev): Pass MAKEINFOFLAGS to submakes.
5643
5644 2006-05-14 Ben Elliston <bje@au.ibm.com>
5645
5646 * config.sub, config.guess: Update from upstream sources.
5647
5648 2006-05-12 Ben Elliston <bje@au.ibm.com>
5649
5650 * config.sub, config.guess: Update from upstream sources.
5651
5652 2006-05-04 Steve Ellcey <sje@cup.hp.com>
5653
5654 * blt, iwidgets, mmalloc: Remove directories.
5655
5656 2006-05-01 DJ Delorie <dj@redhat.com>
5657
5658 * configure.in: Restore CFLAGS if GMP isn't present.
5659 * configure: Regenerate.
5660
5661 2006-04-18 DJ Delorie <dj@redhat.com>
5662
5663 * configure.in (m32c): Build libstdc++-v3. Pass flags to
5664 reference libgloss so that libssp can be built in a combined
5665 tree.
5666 * configure: Regenerate.
5667
5668 2006-04-10 Ben Elliston <bje@au.ibm.com>
5669
5670 * contrib: Remove directory.
5671
5672 2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
5673
5674 * Makefile.tpl: Add install-html target.
5675 * Makefile.def: Add install-html target.
5676 * Makefile.in: Regenerate.
5677 * configure.in: Add --with-datarootdir, --with-docdir,
5678 and --with-htmldir options.
5679 * configure: Regenerate.
5680
5681 2006-03-31 Ben Elliston <bje@au.ibm.com>
5682
5683 PR binutils/1860
5684 * configure.in: Require makeinfo 4.4 or higher.
5685 * configure: Regenerate.
5686
5687 2006-03-14 Paolo Bonzini <bonzini@gnu.org>
5688
5689 * Makefile.in: Regenerate.
5690
5691 2006-03-14 Paolo Bonzini <bonzini@gnu.org>
5692
5693 Sync with gcc:
5694 2006-03-10 Aldy Hernandez <aldyh@redhat.com>
5695
5696 * configure.in: Handle --disable-<component> generically.
5697 * configure: Regenerate.
5698
5699 2006-02-21 Rafael Avila de Espindola <rafael.espindola@gmail.com>
5700
5701 * Makefile.tpl (BUILD_CONFIGDIRS): Remove.
5702 (TARGET_CONFIGDIRS): Remove.
5703 * configure.in: Remove AC_SUBST(target_configdirs).
5704 * Makefile.in, configure: Regenerated.
5705
5706
5707 2006-03-01 H.J. Lu <hongjiu.lu@intel.com>
5708
5709 PR libgcj/17311
5710 * ltmain.sh: Don't use "$finalize_rpath" for compile.
5711
5712 2006-02-20 Paolo Bonzini <bonzini@gnu.org>
5713
5714 PR bootstrap/25670
5715
5716 * Makefile.tpl ([+compare-target+]): Print explanation messages.
5717
5718 * Makefile.def (ADAFLAGS, BOOT_ADAFLAGS, LANGUAGES): New flags_to_pass.
5719 * Makefile.tpl (BASE_FLAGS_TO_PASS): Support optional flags_to_pass.
5720 (EXTRA_GCC_FLAGS): Remove ADAFLAGS, BOOT_ADAFLAGS, LANGUAGES,
5721 BUILD_PREFIX, BUILD_PREFIX_1.
5722 * configure.in: (BUILD_PREFIX, BUILD_PREFIX_1): Don't substitute.
5723
5724 * Makefile.def (bootstrap stage 1): Pass LIBCFLAGS too.
5725 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Override LIBCFLAGS too.
5726
5727 * Makefile.tpl (configure-stage[+id+]-[+prefix+][+module+],
5728 all-stage[+id+]-[+prefix+][+module+], : Use $(current_stage) instead
5729 of `cat stage_current`. Always provide the `r' and `s' variables.
5730 (clean-stage[+id+]-[+prefix+][+module+]): Likewise, and make it into
5731 a single shell execution.
5732 (configure-[+prefix+][+module+], all-[+prefix+][+module+]): For
5733 bootstrapped modules, make the stage1 module if the build was not
5734 started yet, else build the current stage.
5735 (all-host, all-target): Omit bootstrapped modules (if bootstrapping).
5736 (all-build, all-host, all-target, [+make_target+]-host,
5737 [+make_target+]-target): Do not use \-continued lines.
5738 (target modules): Depend on stage_last, not all-gcc, if bootstrapping.
5739 (current_stage, restrap, stage_last): New.
5740
5741 * Makefile.in: Regenerate.
5742 * configure: Regenerate.
5743
5744 2006-02-14 Paolo Bonzini <bonzini@gnu.org>
5745
5746 Sync from gcc:
5747
5748 2006-01-31 Richard Guenther <rguenther@suse.de>
5749 Paolo Bonzini <bonzini@gnu.org>
5750
5751 * Makefile.def (target_modules): Add libgcc-math target module.
5752 * configure.in (target_libraries): Add libgcc-math target library.
5753 (--enable-libgcc-math): New configure switch.
5754 * Makefile.in: Re-generate.
5755 * configure: Re-generate.
5756 * libgcc-math: New toplevel directory.
5757
5758 2006-01-18 Richard Henderson <rth@redhat.com>
5759 Jakub Jelinek <jakub@redhat.com>
5760 Diego Novillo <dnovillo@redhat.com>
5761
5762 * libgomp: New directory.
5763 * Makefile.def: Add target_module libgomp.
5764 * Makefile.in: Regenerate.
5765 * configure.in (target_libraries): Add target-libgomp.
5766 * configure: Regenerate.
5767
5768 2006-02-14 Paolo Bonzini <bonzini@gnu.org>
5769 Andreas Schwab <schwab@suse.de>
5770
5771 * configure: Regenerate.
5772
5773 2006-01-16 Paolo Bonzini <bonzini@gnu.org>
5774
5775 * configure.in: Set with_gnu_as, with_gnu_ld, with_newlib earlier.
5776 Set md_exec_prefix. Use ACX_CHECK_INSTALLED_TARGET_TOOL to find
5777 the assembler, linker and binutils.
5778 * configure: Regenerate.
5779
5780 2006-01-16 Nick Clifton <nickc@redhat.com>
5781
5782 * config.sub, config.guess: Sync from config repository.
5783
5784 2006-01-05 Alexandre Oliva <aoliva@redhat.com>
5785
5786 * Makefile.tpl (clean-stage[+id+]-[+prefix+][+module+]): Remove
5787 @ from continuation.
5788 * Makefile.in: Rebuilt.
5789
5790 2006-01-04 Paolo Bonzini <bonzini@gnu.org>
5791
5792 Sync from gcc:
5793
5794 2006-01-04 Paolo Bonzini <bonzini@gnu.org>
5795
5796 PR bootstrap/24252
5797
5798 * Makefile.def (flags_to_pass): Add STAGE1_CFLAGS and STAGE1_LANGUAGES.
5799 * Makefile.tpl (OBJDUMP): New.
5800 (EXTRA_HOST_FLAGS): Add it.
5801 (EXTRA_GCC_FLAGS): Remove flags already specified in flags_to_pass.
5802
5803 * Makefile.tpl (stage[+id+]-start, stage[+id+]-end): Do not try
5804 to use symbolic links between directories. Avoid race conditions
5805 or make them harmless.
5806 * configure.in: Do not try to use symbolic links between directories.
5807
5808 * Makefile.def (LEAN): Pass.
5809 * Makefile.tpl (LEAN): Define.
5810 (stage[+id+]-start): Accept that the previous directory does not
5811 exist, if the bootstrap is lean.
5812 (stage[+id+]-bubble): Invoke lean bootstrap commands after
5813 stage[+id+]-start. Use a makefile variable and an `if' instead of a
5814 configure substitution.
5815 ([+compare-target+]): Likewise.
5816 ([+bootstrap-target+]-lean): New.
5817 * configure.in: Remove lean bootstrap support from here.
5818
5819 * Makefile.in: Regenerate.
5820 * configure: Regenerate.
5821
5822 2006-01-02 Andreas Schwab <schwab@suse.de>
5823
5824 * configure.in: When reconfiguring remove Makefile in
5825 all stage directories.
5826 * configure: Regenerate.
5827
5828 2005-12-27 Leif Ekblad <leif@rdos.net>
5829
5830 * configure.in: Add support for RDOS target.
5831 * configure: Regenerate.
5832
5833 2005-12-27 Nick Clifton <nickc@redhat.com>
5834
5835 PR binutils/1990
5836 * libtool.m4: Synchronize with version in GCC sources.
5837
5838 2005-12-20 Paolo Bonzini <bonzini@gnu.org>
5839
5840 Revert Ada-related part of the previous change.
5841
5842 * Makefile.def (ADAFLAGS, BOOT_ADAFLAGS, ADAFLAGS_FOR_TARGET):
5843 Do not pass.
5844 * Makefile.tpl (BOOT_ADAFLAGS): Do not define.
5845 * Makefile.in: Regenerate.
5846 * configure.in: Do not include mt-ppc-aix target fragment.
5847 * configure: Regenerate.
5848
5849 2005-12-19 Paolo Bonzini <bonzini@gnu.org>
5850
5851 * configure.in: Select appropriate fragments for PowerPC/AIX.
5852 * configure: Regenerate.
5853
5854 * Makefile.def (flags_to_pass): Add ADAFLAGS, BOOT_ADAFLAGS,
5855 BOOT_CFLAGS, BOOT_LDFLAGS.
5856 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Handle BOOT_ADAFLAGS,
5857 BOOT_CFLAGS, BOOT_LDFLAGS.
5858 (TARGET_FLAGS_TO_PASS): Handle ADAFLAGS_FOR_TARGET.
5859 (stage[+id+]-bubble): Pass flags recursively to the comparison target.
5860 (stage): Fail if we cannot complete the work.
5861 * Makefile.in: Regenerate.
5862
5863 2005-12-16 Jeff Johnston <jjohnstn@redhat.com>
5864
5865 * COPYING.NEWLIB: Update copyright year for default
5866 copyright.
5867
5868 2005-12-15 Paolo Bonzini <bonzini@gnu.org>
5869
5870 * Makefile.tpl (all, do-[+make_target+], do-check, install,
5871 install-host-nogcc): Don't invoke $(stage) at the end.
5872 * Makefile.in: Regenerate.
5873
5874 2005-12-14 Paolo Bonzini <bonzini@gnu.org>
5875
5876 * configure.in: Flip the top-level bootstrap switch.
5877 * configure: Regenerate.
5878
5879 Merge from gcc:
5880
5881 2005-12-14 Daniel Jacobowitz <dan@codesourcery.com>
5882
5883 * Makefile.tpl: Throughout the file, use : $(MAKE) along with
5884 $(stage) and $(unstage).
5885 (EXTRA_TARGET_FLAGS): Correct double-quoting.
5886 (all): Remove stray semicolon.
5887 (local-distclean): Don't handle multilib.tmp and multilib.out.
5888 (install.all): Set $s for consistency.
5889 (configure-[+prefix+][+module+]): Instead of [+deps+], handle
5890 check_multilibs setting. Always make the install directory.
5891 (configure-stage[+id+]-[+prefix+][+module+]): Likewise.
5892 Correct @if/@endif.
5893 (all-stage[+id+]-[+prefix+][+module+]): Correct @if/@endif.
5894 ($(TARGET_SUBDIR)/[+module+]/multilib.out): Remove.
5895 (stage[+id+]-start, stage[+id+]-end): Stage $(TARGET_SUBDIR).
5896 (multilib.out): Remove.
5897 * Makefile.in: Regenerated.
5898
5899 2005-12-12 Nathan Sidwell <nathan@codesourcery.com>
5900
5901 * config.sub: Replace ms1 arch with mt. Allow ms1 as alias.
5902 * configure.in: Replace ms1 arch with mt.
5903 * configure: Rebuilt.
5904
5905 2005-12-05 Paolo Bonzini <bonzini@gnu.org>
5906
5907 Sync with gcc:
5908
5909 2005-12-12 Nathan Sidwell <nathan@codesourcery.com>
5910
5911 * config.sub: Replace ms1 arch with mt. Allow ms1 as alias.
5912 * configure.in: Replace ms1 arch with mt.
5913 * configure: Rebuilt.
5914
5915 2005-12-05 Paolo Bonzini <bonzini@gnu.org>
5916
5917 Sync with gcc:
5918
5919 2005-12-05 Paolo Bonzini <bonzini@gnu.org>
5920
5921 * configure.in (CONFIGURED_BISON, CONFIGURED_YACC, CONFIGURED_M4,
5922 CONFIGURED_FLEX, CONFIGURED_LEX, CONFIGURED_MAKEINFO): Remove
5923 "CONFIGURED_" from the AC_CHECK_PROGS invocation. Move below.
5924 Find in-tree tools if available.
5925 (EXPECT, RUNTEST, LIPO, STRIP): Find them and substitute them.
5926 (CONFIGURED_*_FOR_TARGET): Don't set nor substitute.
5927 (*_FOR_TARGET): Set them with GCC_TARGET_TOOL.
5928 (COMPILER_*_FOR_TARGET): New.
5929 * Makefile.tpl (HOST_EXPORTS): Add *_FOR_TARGET symbols that gcc needs.
5930 (BASE_TARGET_EXPORTS): Use COMPILER_*_FOR_TARGET symbols.
5931 (CONFIGURED_*, USUAL_*): Remove.
5932 (BISON, YACC, FLEX, LEX, M4, MAKEINFO, EXPECT, RUNTEST, LIPO,
5933 STRIP): Use autoconf substitutions.
5934 (COMPILER_AS_FOR_TARGET, COMPILER_LD_FOR_TARGET,
5935 COMPILER_NM_FOR_TARGET): New.
5936 (EXTRA_HOST_FLAGS): Pass LIPO and STRIP.
5937
5938 (all): Make all-host and all-target in parallel.
5939 (do-[+make_target+], do-check, install, [+compare-target+]): Ensure
5940 that $$r and $$s are set before invoking a recursive make.
5941 (stage[+id+]-bubble): Likewise, and invoke the comparison at the end.
5942 ([+bootstrap-target+]): Inline most of the `all' target.
5943
5944 2005-11-29 Ben Elliston <bje@au.ibm.com>
5945
5946 * Makefile.tpl (clean-target-libgcc): Invoke clean-target-libgcc
5947 from the gcc build directory.
5948 * Makefile.in: Regenerate.
5949
5950 2005-11-29 Ben Elliston <bje@au.ibm.com>
5951
5952 * Makefile.def: Add new libdecnumber host_module. Make all-gcc
5953 depend on all-libdecnumber.
5954 * configure.in (host_libs): Include libdecnumber.
5955 * Makefile.in: Regenerate.
5956 * configure: Likewise.
5957
5958 2005-11-21 Kean Johnston <jkj@sco.com>
5959
5960 * config.sub, config.guess: Sync from upstream sources.
5961
5962 2005-11-11 Daniel Jacobowitz <dan@codesourcery.com>
5963
5964 * Makefile.def: Remove gdb dependencies for gdbtk.
5965 * Makefile.tpl (CONFIGURE_GDB_TK, INSTALL_GDB_TK): New variables.
5966 (configure-gdb, install-gdb): New rules.
5967 * configure.in: Set CONFIGURE_GDB_TK and INSTALL_GDB_TK.
5968 * Makefile.in, configure: Regenerated.
5969
5970 2005-10-22 Paolo Bonzini <bonzini@gnu.org>
5971
5972 PR bootstrap/24297
5973 * Makefile.tpl (do-[+make-target+], do-check, install,
5974 stage[+id+]-bubble, [+compare-target+]): Ensure $$r and $$s
5975 are set before recursing.
5976 * Makefile.in: Regenerate.
5977
5978 2005-10-20 Eric Botcazou <ebotcazou@adacore.com>
5979
5980 PR bootstrap/18939
5981 * Makefile.def (gcc) <target>: Fix thinko.
5982 * Makefile.in: Regenerate.
5983
5984 2005-10-17 Bernd Schmidt <bernd.schmidt@analog.com>
5985
5986 * configure.in (bfin-*-*): Use test, not brackets, in if statement.
5987 * configure: Regenerate.
5988
5989 2005-10-09 Kazu Hirata <kazu@codesourcery.com>
5990
5991 * configure.in (arm-*-linux-gnueabi): Add to noconfigdirs
5992 target-libffi, target-qthreads, target-libjava, and
5993 targetlibobjc.
5994 * configure: Regenerate.
5995
5996 2005-10-06 Daniel Jacobowitz <dan@codesourcery.com>
5997
5998 * Makefile.def (flags_to_pass): Add OBJDUMP_FOR_TARGET.
5999 * Makefile.tpl (BASE_TARGET_EXPORTS): Add OBJDUMP.
6000 (OBJDUMP_FOR_TARGET, CONFIGURED_OBJDUMP_FOR_TARGET)
6001 (USUAL_OBJDUMP_FOR_TARGET): New.
6002 (EXTRA_TARGET_FLAGS): Add OBJDUMP.
6003 * configure.in: Check for $OBJDUMP_FOR_TARGET.
6004 * configure, Makefile.in: Regenerated.
6005
6006 2005-10-05 Paolo Bonzini <bonzini@gnu.org>
6007
6008 * Makefile.tpl (all) [gcc-no-bootstrap]: Make prebootstrap packages
6009 before other host packages.
6010
6011 2005-10-05 Paolo Bonzini <bonzini@gnu.org>
6012
6013 PR bootstrap/22340
6014
6015 * configure.in (default_target): Remove.
6016 * Makefile.tpl (all): Do not use prerequisites as subroutines
6017 (all) [gcc-bootstrap]: Bootstrap gcc first if it was not done yet.
6018 (do-[+make_target+], check, install, [+bootstrap_target+]): Do not
6019 use prerequisites as subroutines.
6020 (check-host, check-target): New.
6021 (bootstrap configure & all targets): Do not use stage*-start
6022 if the directory layout is already ok.
6023 (non-bootstrap configure & all targets): Prepend a $(unstage).
6024 (stage[+id+]-bubble): Do that here. Do not use NOTPARALLEL.
6025 (NOTPARALLEL): Remove.
6026 (unstage, stage variables): New variables.
6027 (unstage, stage targets): Simply expand to those variables.
6028
6029 * configure: Regenerate.
6030 * Makefile.in: Regenerate.
6031
6032 2005-10-04 James E Wilson <wilson@specifix.com>
6033
6034 * Makefile.def (lang_env_dependencies): Add libmudflap.
6035 * Makefile.in: Regenerate.
6036
6037 2005-10-03 Catherine Moore <clm@cm00re.com>
6038
6039 * configure.in (bfin-*-*): Support bfin.
6040 * configure: Regenerated.
6041
6042 2005-09-30 H.J. Lu <hongjiu.lu@intel.com>
6043
6044 * configure.in (*-*-darwin*): Build bfd, binutils and opcodes.
6045 * configure: Regenerated.
6046
6047 2005-09-28 Geoffrey Keating <geoffk@apple.com>
6048
6049 * Makefile.tpl (BASE_TARGET_EXPORTS): Add LIPO, STRIP.
6050 (LIPO_FOR_TARGET): New.
6051 (CONFIGURED_LIPO_FOR_TARGET): New.
6052 (USUAL_LIPO_FOR_TARGET): New.
6053 (STRIP_FOR_TARGET): New.
6054 (CONFIGURED_STRIP_FOR_TARGET): New.
6055 (USUAL_STRIP_FOR_TARGET): New.
6056 * Makefile.def (flags_to_pass): Add LIPO_FOR_TARGET and
6057 STRIP_FOR_TARGET.
6058 * configure.in: Set LIPO_FOR_TARGET, STRIP_FOR_TARGET,
6059 CONFIGURED_LIPO_FOR_TARGET, CONFIGURED_STRIP_FOR_TARGET.
6060 * Makefile.in: Regenerate.
6061 * configure: Regenerate.
6062
6063 2005-09-19 David Edelsohn <edelsohn@gnu.org>
6064
6065 * configure.in (powerpc-*-aix*): Add target-libssp to noconfigdirs.
6066 (rs6000-*-aix*): Same.
6067 * configure: Regenerate.
6068
6069 2005-09-14 Francois-Xavier Coudert <coudert@clipper.ens.fr>
6070
6071 * configure.in: Recognize f95 in the --enable-languages option,
6072 and substitute it for fortran, issuing a warning.
6073 * configure: Regenerate.
6074
6075 2005-09-07 Ben Elliston <bje@au.ibm.com>
6076
6077 Import from Autoconf sources:
6078
6079 2005-09-06 Paul Eggert <eggert@cs.ucla.edu>
6080 * move-if-change: Don't output "$2 is unchanged"; suggested by Ben
6081 Elliston. Handle weird characters correctly.
6082
6083 2005-08-30 Phil Edwards <phil@codesourcery.com>
6084
6085 * configure.in (*-*-vxworks*): Add target-libstdc++-v3 to noconfigdirs.
6086 * configure: Regenerated.
6087
6088 2005-08-20 Richard Earnshaw <richard.earnshaw@arm.com>
6089
6090 * Makefile.def (libssp): Add to lang_env_dependencies.
6091 * Makefile.in: Regenerate.
6092
6093 2005-08-17 Christian Groessler <chris@groessler.org>
6094
6095 * Makefile.tpl: (USUAL_CC_FOR_TARGET): Add missing trailing slash.
6096 * Makefile.in: Regenerate.
6097
6098 2005-08-12 Paolo Bonzini <bonzini@gnu.org>
6099
6100 * configure.in: Replace NCN_STRICT_CHECK_TOOL with
6101 NCN_STRICT_CHECK_TOOLS, and likewise for NCN_STRICT_CHECK_TARGET_TOOLS.
6102 Look for alternate names of the target cc and c++
6103 * configure: Regenerate.
6104
6105 2005-08-08 Paolo Bonzini <bonzini@gnu.org>
6106
6107 * configure.in (CC_FOR_TARGET, CXX_FOR_TARGET, GCJ_FOR_TARGET,
6108 GCC_FOR_TARGET, RAW_CXX_FOR_TARGET, GFORTRAN_FOR_TARGET): Find
6109 them with NCN_STRICT_CHECK_TARGET_TOOL, like the other target
6110 tools; remove code to manually set them.
6111 (Target tools): Look in the environment for them.
6112 * Makefile.tpl (CC_FOR_TARGET, CXX_FOR_TARGET, GCJ_FOR_TARGET,
6113 GCC_FOR_TARGET, RAW_CXX_FOR_TARGET, GFORTRAN_FOR_TARGET): Redefine.
6114 (AS_FOR_TARGET, LD_FOR_TARGET, NM_FOR_TARGET): Look into gcc
6115 build directory.
6116 (CONFIGURED_CC_FOR_TARGET, CONFIGURED_CXX_FOR_TARGET,
6117 CONFIGURED_GCJ_FOR_TARGET, CONFIGURED_GCC_FOR_TARGET,
6118 CONFIGURED_GFORTRAN_FOR_TARGET, USUAL_CC_FOR_TARGET,
6119 USUAL_CXX_FOR_TARGET, USUAL_GCJ_FOR_TARGET, USUAL_GCC_FOR_TARGET,
6120 USUAL_RAW_CXX_FOR_TARGET, USUAL_GFORTRAN_FOR_TARGET): New.
6121 (CXX_FOR_TARGET_FOR_RECURSIVE_MAKE,
6122 RAW_CXX_FOR_TARGET_FOR_RECURSIVE_MAKE, RECURSE_FLAGS): Delete.
6123 * configure: Regenerate.
6124 * Makefile.in: Regenerate.
6125
6126 2005-07-27 Mark Mitchell <mark@codesourcery.com>
6127
6128 * Makefile.tpl (EXTRA_TARGET_FLAGS): Set LDFLAGS=LDFLAGS_FOR_TARGET.
6129 * Makefile.def (flags_to_pass): Add LDFLAGS_FOR_TARGET.
6130 * Makefile.in: Regenerated.
6131
6132 2005-07-26 Mark Mitchell <mark@codesourcery.com>
6133
6134 * Makefile.tpl (SYSROOT_CFLAGS_FOR_TARGET): New variable.
6135 (CFLAGS_FOR_TARGET): Use it.
6136 (CXXFLAGS_FOR_TARGET): Likewise.
6137 * Makefile.in: Regenerated.
6138 * configure.in (--with-build-sysroot): New option.
6139 * configure: Regenerated.
6140
6141 2005-07-24 Paolo Bonzini <bonzini@gnu.org>
6142
6143 * Makefile.tpl: Wrap install between unstage and stage
6144 * Makefile.in: Regenerate.
6145
6146 2005-07-16 Kelley Cook <kcook@gcc.gnu.org>
6147
6148 * all files: Update FSF address.
6149
6150 2005-07-14 Jim Blandy <jimb@redhat.com>
6151
6152 * configure.in: Add cases for Renesas m32c.
6153 * configure: Regenerated.
6154
6155 2005-07-14 Kelley Cook <kcook@gcc.gnu.org>
6156
6157 * COPYING, compile, config-ml.in, config.guess,
6158 config.sub, install-sh, missing, mkinstalldirs,
6159 symlink-tree, ylwrap: Sync from upstream sources.
6160
6161 2005-07-13 Eric Christopher <echristo@redhat.com>
6162
6163 * configure.in: Add toplevel noconfigdir support for tpf.
6164 * configure: Regenerate.
6165
6166 2005-07-11 Jakub Jelinek <jakub@redhat.com>
6167
6168 * Makefile.def (target_modules): Add libssp.
6169 * configure.in (target_libraries): Add target-libssp.
6170 * configure: Rebuilt.
6171 * Makefile.in: Rebuilt.
6172
6173 2005-07-11 Paolo Bonzini <bonzini@gnu.org>
6174
6175 PR ada/22340
6176
6177 * Makefile.def: Sync with gcc.
6178 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Fix pasto.
6179 * Makefile.in: Regenerate.
6180
6181 2005-07-07 Andreas Schwab <schwab@suse.de>
6182
6183 * Makefile.def (flags_to_pass): Add CFLAGS_FOR_BUILD.
6184 * Makefile.tpl (EXTRA_GCC_FLAGS): Don't pass CFLAGS_FOR_BUILD here.
6185 * Makefile.in: Regenerated.
6186
6187 2005-07-07 Kazu Hirata <kazu@codesourcery.com>
6188
6189 * configure.in: Add --enable-libssp and --disable-libssp.
6190 * configure: Regenerate with autoconf-2.13.
6191
6192 2005-07-06 Geoffrey Keating <geoffk@apple.com>
6193
6194 * configure.in: Don't build sim or rda when targetting darwin.
6195 * configure: Regenerate.
6196
6197 2005-07-04 Ben Elliston <bje@gnu.org>
6198
6199 * src-release (do-proto-toplev): Remove dejagnu bits.
6200 (DEJAGNU_SUPPORT_DIRS): Remove.
6201 (dejagnu.tar.bz2, dejagnu.tar): Likewise.
6202 (GDBD_SUPPORT_DIRS): Likewise.
6203 (gdb+dejagnu.tar.bz2, gdb+dejagnu.tar): Likewise.
6204 (INSIGHTD_SUPPORT_DIRS): Likewise.
6205 (insight+dejagnu.tar.bz2, insight+dejagnu.tar): Likewise.
6206
6207 2005-06-30 Ben Elliston <bje@gnu.org>
6208
6209 * setup.com (mpw): Remove unused directive.
6210
6211 2005-06-22 Paolo Bonzini <bonzini@gnu.org>
6212
6213 * Makefile.def (stagefeedback): Come after profile.
6214 Define profiledbootstrap target.
6215 * Makefile.tpl (profiledbootstrap): Remove.
6216 (stageprofile-end): Zap stagefeedback.
6217 (stagefeedback-start): Copy all .gcda files, not only GCC's.
6218 * Makefile.in: Regenerate.
6219
6220 2005-06-13 Zack Weinberg <zack@codesourcery.com>
6221
6222 * depcomp: Update from automake CVS. Add 'ia64hp' stanza.
6223 In 'cpp' stanza, support '#line' as well as '# '.
6224
6225 2005-06-07 Hans-Peter Nilsson <hp@axis.com>
6226
6227 * configure.in (unsupported_languages): New macro.
6228 <mmix-knuth-mmixware>: Set unsupported_languages. Name explicit
6229 non-ported target libraries in noconfigdirs.
6230 <cris-*, crisv32-*> Ditto, except for non-aout, non-elf,
6231 non-linux-gnu. Remove libgcj_ex_libffi.
6232 <lang_frag loop>: Set add_this_lang=no if the language is in
6233 unsupported_languages.
6234 * configure: Regenerate.
6235
6236 2005-06-04 Tobias Schl"uter <tobias.schlueter@physik.uni-muenchen.de>
6237
6238 * configure.in: Fix typo in handling of --with-mpfr-dir.
6239 * configure: Regenerate.
6240
6241 2005-06-02 Jim Blandy <jimb@redhat.com>
6242
6243 * config.sub: Add cases for the Renesas m32c. (This patch has been
6244 accepted into the master sources.)
6245
6246 2005-06-02 Aldy Hernandez <aldyh@redhat.com>
6247 Michael Snyder <msnyder@redhat.com>
6248 Stan Cox <scox@redhat.com>
6249
6250 * configure.in: Set noconfigdirs for ms1.
6251
6252 * configure: Regenerate.
6253
6254 2005-05-25 Paolo Bonzini <bonzini@gnu.org>
6255
6256 * Makefile.tpl (stage[+id+]-start): Iterate over target module as well.
6257 (Dependencies): Consider target modules for bootstrap dependencies.
6258 Make target bootstrap modules depend on each stage's gcc.
6259 * Makefile.in: Regenerate.
6260
6261 2005-05-20 Paolo Bonzini <bonzini@gnu.org>
6262
6263 * Makefile.def (configure-gcc): Depend on binutils having been built.
6264 (all-gcc): No need to do it here.
6265 * Makefile.in: Regenerate.
6266
6267 2005-05-19 Paul Brook <paul@codesourcery.com>
6268
6269 * configure.in: Rewrite misleading error message when requested
6270 language cannot be built.
6271 * configure: Regenerate.
6272
6273 2005-05-15 Daniel Jacobowitz <dan@codesourcery.com>
6274
6275 * ylwrap: Import from Automake 1.9.5.
6276
6277 2005-05-04 Mike Stump <mrs@apple.com>
6278
6279 * configure.in: Always pass --target to target configures as
6280 otherwise rebuilds that do --recheck will fail.
6281 * configure: Rebuilt.
6282
6283 2005-05-04 Paolo Bonzini <bonzini@gnu.org>
6284
6285 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Rename from
6286 STAGE_HOST_EXPORTS.
6287 (configure, all): Add bootstrap support.
6288 (Host modules, target modules): Pass post-stage1 flags and exports.
6289 (Top-level bootstrap): Remove bootstrap rules, expanded elsewhere.
6290 * Makefile.in: Regenerate.
6291
6292 2005-04-29 Paolo Bonzini <bonzini@gnu.org>
6293
6294 Sync from gcc:
6295
6296 2005-04-22 Bernd Schmidt <bernd.schmidt@analog.com>
6297
6298 * config.sub: Update from master copy.
6299
6300 2005-04-19 Hans-Peter Nilsson <hp@axis.com>
6301
6302 * configure.in <crisv32-*-*, cris-*-*>: New local variable
6303 libgcj_ex_libffi. Have specific match for *-*-linux*. Separate
6304 matches for "*-*-aout" and "*-*-elf". Don't disable libffi for
6305 "*-*-elf" and "*-*-linux*".
6306 * configure: Regenerate.
6307
6308 2005-04-06 Paolo Bonzini <bonzini@gnu.org>
6309
6310 * Makefile.tpl (BUILD_CONFIGARGS): Include --with-build-subdir.
6311 (TARGET_CONFIGARGS): Include --with-target-subdir.
6312 (configure, all): New macros. Use them throughout.
6313
6314 2005-04-05 Paolo Bonzini <bonzini@gnu.org>
6315
6316 * Makefile.tpl: Sync with gcc.
6317 * Makefile.in: Regenerate.
6318
6319 2005-03-30 J"orn Rennecke <joern.rennecke@st.com>
6320
6321 * config/mh-mingw32: Delete.
6322 * configure.in: Don't use it.
6323 * configure: Regenerate.
6324
6325 2005-03-31 Paolo Bonzini <bonzini@gnu.org>
6326
6327 * Makefile.def (bfd, opcodes, libstdc++-v3, libmudflap): Set lib_path.
6328 * Makefile.tpl (SET_LIB_PATH, REALLY_SET_LIB_PATH): Remove.
6329 (HOST_EXPORTS, STAGE_HOST_EXPORTS, TARGET_EXPORTS): Set $(RPATH_ENVVAR).
6330 (HOST_LIB_PATH): Generate from Makefile.def.
6331 (TARGET_LIB_PATH): Likewise.
6332 (Old bootstrap targets): Include TARGET_LIB_PATH into RPATH_ENVVAR.
6333 * Makefile.in: Regenerate.
6334 * configure.in (set_lib_path, SET_LIB_PATH, SET_GCC_LIB_PATH): Remove.
6335 (RPATH_ENVVAR): Include Darwin case.
6336 * configure: Regenerate.
6337
6338 2005-03-25 Paolo Bonzini <bonzini@gnu.org>
6339
6340 * configure.in (RPATH_ENVVAR): Set to DYLD_LIBRARY_PATH on Darwin.
6341 * configure: Regenerate.
6342
6343 2005-03-21 Zack Weinberg <zack@codesourcery.com>
6344
6345 * Makefile.def: Remove libstdcxx_incdir, libsubdir, gxx_include_dir,
6346 gcc_version, and gcc_version_trigger from set of flags to pass.
6347 * Makefile.tpl: Remove definitions of above variables.
6348 (config.status): Remove dependency on $(gcc_version_trigger).
6349 * Makefile.in: Regenerate.
6350 * configure.in: Do not reference config/gcc-version.m4 nor
6351 config/gxx-include-dir.m4. Do not invoke TL_AC_GCC_VERSION nor
6352 TL_AC_GXX_INCLUDE_DIR. Do not set gcc_version_trigger.
6353 * configure: Regenerate.
6354
6355 2005-03-16 Manfred Hollstein <manfred.h@gmx.net>
6356 Andrew Pinski <pinskia@physics.uc.edu>
6357
6358 * Makefile.tpl (check-[+module+]): Fix shell statement inside if ... fi.
6359 * Makefile.in: Regenerate.
6360
6361 2005-03-01 Alexandre Oliva <aoliva@redhat.com>
6362
6363 PR libgcj/20160
6364 * ltmain.sh: Avoid creating archives with components that have
6365 duplicate basenames.
6366
6367 2005-02-28 Andrew Pinski <pinskia@physics.uc.edu>
6368
6369 PR bootstrap/20250
6370 * Makefile.tpl (HOST target installs): Fix copy and pasto, use install
6371 instead of check.
6372 * Makefile.in: Regenerate.
6373
6374 2005-02-28 Paolo Bonzini <bonzini@gnu.org>
6375
6376 Sync from gcc.
6377
6378 2005-02-28 Paolo Bonzini <bonzini@gnu.org>
6379
6380 PR bootstrap/17383
6381 * Makefile.def (target_modules): Remove "stage", now unnecessary.
6382 * Makefile.tpl (HOST_SUBDIR): New substitution.
6383 (STAGE_HOST_EXPORTS, EXPECT, HOST_LIB_PATH, USUAL_AR_FOR_TARGET,
6384 USUAL_AS_FOR_TARGET, USUAL_DLLTOOL_FOR_TARGET, USUAL_GCC_FOR_TARGET,
6385 USUAL_LD_FOR_TARGET, USUAL_NM_FOR_TARGET, USUAL_OBJDUMP_FOR_TARGET,
6386 USUAL_RANLIB_FOR_TARGET, USUAL_WINDRES_FOR_TARGET): Use it.
6387 (Host modules, Bootstrapped modules): Use it.
6388 (Build modules, Target modules): Do not create symlink trees,
6389 always configure out-of-srcdir.
6390 (distclean): Try removing $(host_subdir) with rm before using rm -rf.
6391 * configure.in (FLAGS_FOR_TARGET, CC_FOR_TARGET, GCJ_FOR_TARGET,
6392 GFORTRAN_FOR_TARGET, CXX_FOR_TARGET, RAW_CXX_FOR_TARGET): Use
6393 $(HOST_SUBDIR). Create a symlink for host_subdir.
6394
6395 * Makefile.in: Regenerate.
6396 * configure: Regenerate.
6397
6398 Merged from libada-gnattools-branch:
6399 2004-11-28 Nathanael Nerode <neroden@gcc.gnu.org>
6400
6401 * Makefile.def: Add gnattools as a module, depending on target-libada.
6402 * Makefile.in: Regenerate.
6403 * configure.in: Include gnattools in host_tools; disable it if ada
6404 is disabled.
6405 * configure: Regenerate.
6406
6407 2005-02-23 Nick Clifton <nickc@redhat.com>
6408
6409 * configure: Regenerate.
6410
6411 2005-02-22 Paul Schlie <schlie@comcast.net>
6412
6413 * configure.in: Allow darwin targeted ports to build tk, itcl and
6414 libgui.
6415
6416 2005-02-21 Eric Botcazou <ebotcazou@libertysurf.fr>
6417
6418 PR libgcj/10353
6419 * configure.in (noconfigdirs) <sparc-*-solaris2.[0-6]>: Add libgcj.
6420 * configure: Regenerate.
6421
6422 2005-02-08 Andrew Cagney <cagney@gnu.org>
6423
6424 * MAINTAINERS: Delete reference to dejagnu/ and mmalloc/ from the
6425 gdb/ section. Update GDB's URL.
6426
6427 2005-01-31 Andrew Cagney <cagney@gnu.org>
6428
6429 * gettext.m4: Only set ENABLE_NLS when gettext is present.
6430
6431 2005-01-29 Hans-Peter Nilsson <hp@axis.com>
6432
6433 * configure.in (noconfigdirs) <crisv32-*-*>: Match like cris-*-*.
6434 <crisv32-*-*, cris-*-*>: Only disable target-newlib and
6435 target-libgloss when not *-*-elf and *-*-aout.
6436 * configure: Regenerate.
6437
6438 2005-01-27 Andrew Cagney <cagney@gnu.org>
6439
6440 * gettext.m4: Don't use NONE as a default for CATOBJEXT.
6441
6442 2005-01-24 Andrew Cagney <cagney@gnu.org>
6443
6444 * gettext.m4: Only fall back to ../intl/ when it's present.
6445
6446 2005-01-17 Kelley Cook <kcook@gcc.gnu.org>
6447
6448 * install-sh, config.sub: Import from upstream.
6449
6450 2005-01-17 Kelley Cook <kcook@gcc.gnu.org>
6451
6452 PR bootstrap/18222
6453 * Makefile.def: Pass CPPFLAGS_FOR_TARGET.
6454 * Makefile.tpl: Define target CPPFLAGS on CPPFLAGS_FOR_TARGET.
6455 * Makefile.in: Regenerate.
6456
6457 2005-01-03 Paolo Bonzini <bonzini@gnu.org>
6458
6459 Revert 2004-12-28 Makefile changes, a better fix will be
6460 applied to mainline and src after GCC 4.0 branches.
6461
6462 2004-12-28 Paolo Bonzini <bonzini@gnu.org>
6463
6464 PR bootstrap/17383
6465
6466 * Makefile.def (target_modules): Remove stage parameter,
6467 it is always true now.
6468 * Makefile.tpl (configure-build-[+module+],
6469 configure-target-[+module+]): Always build symlink tree
6470 for the directory and for include. BUILD_SUBDIR and
6471 TARGET_SUBDIR cannot be . anymore.
6472 * Makefile.in: Regenerate.
6473
6474 2004-12-25 David Edelsohn <edelsohn@gnu.org>
6475
6476 Revert 2004-12-08 Makefile changes.
6477
6478 2004-12-16 Andrew Stubbs <andrew.stubbs@st.com>
6479
6480 * configure.in (sh64-*-*): Reenable gprof.
6481 * configure: Regenerate.
6482
6483 2004-12-09 Jim Blandy <jimb@redhat.com>
6484
6485 * MAINTAINERS: List 'depcomp' as part of automake.
6486
6487 2004-12-08 David Edelsohn <edelsohn@gnu.org>
6488
6489 * Makefile.def (flags_to_pass): Add PICFLAG_FOR_TARGET.
6490 * Makefile.tpl (EXTRA_HOST_FLAGS): Add PICFLAG.
6491 (EXTRA_TARGET_FLAGS): Add PICFLAG.
6492 * Makefile.in: Regenerate.
6493
6494 2004-12-07 Matt Kraai <kraai@ftbfs.org>
6495
6496 * Makefile.tpl: Generate normal dependencies if the LHS module is
6497 not bootstrapped.
6498 * Makefile.in: Regenerate.
6499
6500 2004-12-03 Richard Sandiford <rsandifo@redhat.com>
6501
6502 * configure.in: Include config/gxx-include-dir.m4. Use
6503 TL_AC_GXX_INCLUDE_DIR. Remove some now-redundant AC_SUBSTs.
6504 * configure: Regenerate.
6505
6506 2004-12-03 Richard Sandiford <rsandifo@redhat.com>
6507
6508 * config.if: Delete.
6509 * configure.in: Set libstdcxx_incdir directly.
6510 * configure: Regenerate.
6511 * MAINTAINERS: Remove mention of config.if.
6512 * src-release (DEVO_SUPPORT): Remove config.if.
6513
6514 2004-12-02 Eric Christopher <echristo@redhat.com>
6515
6516 * Makefile.tpl (clean-target-libgcc): Add stmp-dirs to list
6517 of things to remove.
6518 * Makefile.in: Regenerate.
6519
6520 2004-12-02 Richard Sandiford <rsandifo@redhat.com>
6521
6522 * configure.in: Clear gcc_version_trigger if the file doesn't exist.
6523 * configure: Regenerate.
6524
6525 2004-12-02 Richard Sandiford <rsandifo@redhat.com>
6526
6527 * configure.in: Include config/gcc-version.m4. Use TL_AC_GCC_VERSION
6528 to set gcc_version_trigger. Remove some now-redundant AC_SUBSTs.
6529 * configure: Regenerate.
6530
6531 2004-11-26 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
6532
6533 * configure.in (hppa*-*-linux*): Don't add libgcj to noconfigdirs.
6534 (hppa*64*-*-*): Delete incorrect comment.
6535 * configure: Rebuilt.
6536
6537 2004-11-15 Kelley Cook <kcook@gcc.gnu.org>
6538
6539 * install-sh, compile: Import from automake.
6540
6541 2004-11-15 Kelley Cook <kcook@gcc.gnu.org>
6542
6543 * config.guess, config.sub: Import from savannnah.
6544
6545 2004-11-12 Mike Stump <mrs@apple.com>
6546
6547 * Makefile.def: Add html support.
6548 * Makefile.tpl: Likewise.
6549 * Makefile.in: Regenerate.
6550
6551 2004-11-11 Geoffrey Keating <geoffk@apple.com>
6552
6553 PR 18423
6554 * configure.in: Remove all instances of build-fixincludes from
6555 noconfigdirs.
6556 (build_configargs): Supply --target to subdirectories.
6557 * configure: Regenerate.
6558
6559 * Makefile.def: Make gcc install depend on fixincludes install.
6560 * Makefile.in: Regenerate.
6561
6562 2004-11-08 Hans-Peter Nilsson <hp@bitrange.com>
6563
6564 * configure.in (noconfigdirs) [mmix-*-*]: Disable
6565 target-libgfortran.
6566 * configure: Regenerate.
6567
6568 2004-11-07 David Edelsohn <edelsohn@gnu.org>
6569
6570 * config-ml.in: Pass FCFLAGS for multilibs, handle GFORTRAN
6571 like CC.
6572
6573 2004-11-05 Paolo Bonzini <bonzini@gnu.org>
6574
6575 * Makefile.def (host fixincludes): Specify missing targets.
6576 * Makefile.in: Regenerate.
6577
6578 2004-11-04 H.J. Lu <hongjiu.lu@intel.com>
6579
6580 PR other/17783
6581 * configure.in: Set up LD_LIBRARY_PATH by default for gcc.
6582 * configure: Regenerated.
6583
6584 2004-11-04 Daniel Jacobowitz <dan@debian.org>
6585
6586 * configure.in (arm-*-oabi*, thumb-*-oabi*): Remove.
6587 * configure: Regenerated.
6588
6589 2004-10-28 Eric B. Weddington <ericw@evcohs.com>
6590
6591 PR target/18151
6592 * configure.in (case ${target}): Do not build fixincludes for avr.
6593 * configure: Regenerated.
6594
6595 2004-10-26 Paolo Bonzini <bonzini@gnu.org>
6596
6597 * configure.in (case ${target}): Do not build fixincludes
6598 on platforms where it is not used.
6599 * configure: Regenerated.
6600
6601 2004-10-23 Daniel Jacobowitz <dan@debian.org>
6602
6603 * configure.in: Use an absolute path to install-sh.
6604 * configure: Regenerated.
6605
6606 2004-10-19 Andrew Cagney <cagney@gnu.org>
6607
6608 * src-release (do-djunpack, do-md5sum): Install the generated file
6609 directly into the proto-toplev/ directory.
6610
6611 2004-10-19 Andrew Cagney <cagney@gnu.org>
6612
6613 * src-release (GDB_SUPPORT_DIRS): Remove utils and intl.
6614
6615 2004-10-12 Kelley Cook <kcook@gcc.gnu.org>
6616
6617 * configure.in (*-*-cygwin*): Supress warning if newlib not present.
6618 * configure: Regenerate.
6619
6620 2004-10-06 Paolo Bonzini <bonzini@gnu.org>
6621
6622 Fix wrong conflict resolution in:
6623
6624 2004-08-16 Paolo Bonzini <bonzini@gnu.org>
6625
6626 * Makefile.in: Regenerate.
6627 * Makefile.tpl (Autogenerated `all-*' targets): Invoke $(TARGET-*)
6628 in the recursive `make', instead of hardwiring `all'.
6629 (Autogenerated TARGET-* variables): New.
6630
6631 2004-10-05 Ulrich Weigand <uweigand@de.ibm.com>
6632
6633 Merged from GCC / libtool upstream:
6634 2004-10-02 P.J. Darcy <darcypj@us.ibm.com>
6635 * ltcf-c.sh (tpf*): Add ld_shlibs=yes.
6636 * ltcf-cxx.sh (tpf*): Likewise.
6637 * ltconfig (tpf*): Add TPF OS configuration support.
6638
6639 2004-09-30 Tomer Levi <Tomer.Levi@nsc.com>
6640
6641 * configure.in: Enable target-libgloss for crx-*-*.
6642 * configure: Regenerate.
6643
6644 2004-09-24 Michael Roth <mroth@nessie.de>
6645
6646 * configure.in (--without-headers): Add missing double quotes.
6647 * configure: Regenerate.
6648
6649 2004-09-24 Kelley Cook <kcook@gcc.gnu.org>
6650
6651 * ylwrap: Revert to previous version.
6652
6653 2004-09-23 H.J. Lu <hongjiu.lu@intel.com>
6654
6655 PR bootstrap/17369
6656 * Makefile.tpl (REALLY_SET_LIB_PATH): Add @SET_GCC_LIB_PATH@.
6657 (HOST_EXPORTS]): Add @SET_GCC_LIB_PATH@. Set and export
6658 SET_GCC_LIB_PATH_CMD.
6659 (BASE_TARGET_EXPORTS): Likewise.
6660 * Makefile.in: Regenerated.
6661
6662 * configure.in (SET_GCC_LIB_PATH): Set and substitute.
6663 * configure: Regenerated.
6664
6665 2004-09-23 Kelley Cook <kcook@gcc.gnu.org>
6666
6667 * config.guess: New upstream version
6668 * compile, depcomp, install-sh, ylwrap: Likewise.
6669
6670 2004-09-19 Roger Sayle <roger@eyesopen.com>
6671
6672 * config/mh-x86omitfp: New host makefile fragment. Add
6673 -fomit-frame-pointer to the default BOOT_CFLAGS.
6674 * configure.in: Use it to speed up bootstrap on some IA-32 hosts.
6675 * configure: Regenerate.
6676
6677 2004-09-15 Andrew Pinski <pinskia@physics.uc.edu>
6678
6679 PR target/11572
6680 * configure.in (*-*-darwin*): Renable libobjc.
6681 * configure: Regenerate.
6682
6683 2004-09-09 Daniel Berlin <dberlin@dberlin.org>
6684
6685 * Makefile.def: Remove libbanshee.
6686 * Makefile.tpl: Ditto.
6687 * configure.in: Ditto.
6688 * Makefile.in: Regen.
6689 * configure: Ditto.
6690
6691 2004-09-07 Paolo Bonzini <bonzini@gnu.org>
6692
6693 * missing: Import latest version from master repository.
6694
6695 2004-09-04 Nick Clifton <nickc@redhat.com>
6696
6697 * config.sub: Import latest version from master repository.
6698 * config.guess: Likewise.
6699 This includes these changes:
6700
6701 2004-08-27 Hans-Peter Nilsson <hp@axis.com>
6702
6703 * config.sub: Handle crisv32, alias etraxfs.
6704 * config.guess (crisv32:Linux:*:*): Handle.
6705
6706 2004-08-13 Brad Smith <brad@comstyle.com>
6707
6708 * config.guess (*:OpenBSD:*:*): Remove defunct MIPS machines.
6709 (sgi:OpenBSD:*:*): Emit mips64, not mipseb.
6710
6711 2004-08-11 Paul Eggert <eggert@cs.ucla.edu>
6712
6713 * config.guess (*:Darwin:*:*): If uname -p reports "unknown",
6714 assume the processor is a powerpc. This is because coreutils
6715 uname (at least versions 4.5.7 through 5.2.1) outputs "unknown"
6716 in this case, due to a MacOS X bug that causes
6717 sysctl ((int[]) {CTL_HW, HW_MACHINE_ARCH}, 2, buffer, &bufsize, 0, 0)
6718 to return a negative number.
6719 Problem reported by Petter Reinholdtsen in:
6720 http://lists.gnu.org/archive/html/bug-gnu-utils/2003-02/msg00201.html
6721
6722 2004-07-19 Ben Elliston <bje@gnu.org>
6723
6724 * config.guess (S7501:*:4.0:3.0): Handle NCR System V UNIX machine.
6725
6726 2004-06-24 Ben Elliston <bje@gnu.org>
6727
6728 * config.guess: Update copyright years.
6729 * config.sub: Likewise.
6730
6731 2004-06-22 Robert Millan <robertmh@gnu.org>
6732
6733 * config.guess (*:FreeBSD:*:*): Remove check for glibc (unneeded
6734 since GNU/kFreeBSD systems match *:GNU/*:*:* instead).
6735
6736 2004-06-22 Stanley F. Quayle <stan@stanq.com>
6737
6738 * config.guess (*:*VMS:*:*): New entry. Replaces
6739 Alpha:OpenVMS:*. Recognize and advertise all VMS flavors as dec
6740 manufacturer.
6741
6742 2004-06-22 Ben Elliston <bje@gnu.org>
6743
6744 * config.guess: Cray fixes from Wendy Palm <wendyp@cray.com>.
6745 * config.sub: Likewise.
6746
6747 2004-06-22 Ben Elliston <bje@gnu.org>
6748
6749 Reported by Hans-Peter Nilsson <hp@bitrange.com>:
6750 * config.sub: Correctly handle mmix-knuth and mmix-knuth-mmixware.
6751
6752 2004-06-11 Ben Elliston <bje@gnu.org>
6753
6754 * config.guess (pegasos:OpenBSD:*:*): Remove.
6755
6756 2004-06-11 Ben Elliston <bje@gnu.org>
6757
6758 From Wouter Verhelst <wouter@grep.be>:
6759 * config.guess (M68*:*:R3V[5678]:*): Detect R3V8.
6760
6761 2004-06-11 Ben Elliston <bje@gnu.org>
6762
6763 * config.guess (luna88k:OpenBSD:*:*): New.
6764
6765 2004-03-12 Kazuhiro Inaoka <inaoka.kazuhiro@renesas.com>
6766
6767 * config.guess (m32r*:Linux:*:*): New case.
6768 * config.sub: Handle m32rle.
6769
6770 2004-03-12 Ben Elliston <bje@wasabisystems.com>
6771
6772 From Jens Petersen <petersen@redhat.com>:
6773 * config.sub: Handle sparcv8.
6774
6775 2004-03-03 Ben Elliston <bje@wasabisystems.com>
6776
6777 From Tom Smith <smith@cag.lkg.hp.com>:
6778 * config.guess: Version suffixes are equally significant on Tru64
6779 V4.* and V5.*, so do not ignore them on V5.*. Handle a version
6780 prefix of "P" (patched kernel).
6781
6782 2004-02-23 Tal Agmon <Tal.Agmon@nsc.com>
6783
6784 * config.sub: Add support for National Semiconductor CRX target.
6785
6786 2004-09-03 Jan Beulich <jbeulich@novell.com>
6787
6788 * configure.in: Remove target-libstdc++-v3 from noconfigdirs for
6789 *-*-netware, but add target-libmudflap.
6790 Consolidate *-*-netware targets (of which really only i?86 exists)
6791 into a single entry.
6792 * configure: Likewise.
6793
6794 2004-09-01 Paolo Bonzini <bonzini@gnu.org>
6795
6796 * Makefile.tpl (sorry): Remove.
6797 (clean-stage[+id+], clean-stage[+id+]-module): New targets.
6798 (cleanstrap targets): Depend on distclean, not distclean-stage1.
6799 (do-clean): Clean per-stage directories too.
6800 (do-distclean): Run distclean-stage1 too.
6801 (.NOTPARALLEL): Enable during toplevel bootstrap.
6802 (stage[+id+]-bubble): Enable parallel execution during
6803 the recursive invocation.
6804 * Makefile.in: Regenerate.
6805
6806 Sync from gcc (moving the Makefile.in change to Makefile.tpl):
6807
6808 2004-08-31 Robert Bowdidge <bowdidge@apple.com>
6809
6810 * Makefile.in: Move BOOT_CFLAGS above host makefile fragment include.
6811 * configure.in: add test for powerpc-*-darwin* to specify makefile frag
6812 * configure: regenerate
6813 * config/mh-ppc-darwin: create file, override BOOT_CFLAGS for
6814 -mdynamic-no-pic
6815
6816 2004-08-31 Paolo Bonzini <bonzini@gnu.org>
6817
6818 * Makefile.tpl: Move BOOT_CFLAGS above host makefile fragment
6819 include.
6820 * configure.in: Fix indentation.
6821 * configure: Regenerate.
6822
6823 2004-08-31 Paolo Bonzini <bonzini@gnu.org>
6824
6825 * Makefile.def (build_modules): Add fixincludes.
6826 (dependencies): Make gcc depend on fixincludes.
6827 * configure.in (build_tools): Add fixincludes.
6828 (build_configdirs): Always include build_libs.
6829 * Makefile.in: Regenerate.
6830 * configure: Regenerate.
6831
6832 2004-08-30 Paolo Bonzini <bonzini@gnu.org>
6833
6834 * Makefile.def (bootstrap stages): Add 'lean' parameter.
6835 * Makefile.tpl (configure-stageN-*, all-stageN-*): Turned into
6836 phony targets; do not generate timestamp files.
6837 (distclean-stageN): Remove references to their timestamp files.
6838 (restageN, touch-stageN): Remove.
6839 (stageN-bubble): Rewritten.
6840 (compare): Support lean bootstraps.
6841 * Makefile.in: Regenerate.
6842
6843 * configure.in: Only warn when bootstrapping but
6844 build != host or build != target. Support lean bootstraps.
6845 * configure: Regenerate.
6846
6847 Sync from gcc:
6848 2004-08-26 Phil Edwards <phil@codesourcery.com>
6849
6850 * configure.in: Give a better error message if GMP/MPFR are missing
6851 and a language needing them has been requested.
6852 * configure: Regenerated.
6853
6854 2004-08-25 Phil Edwards <phil@codesourcery.com>
6855
6856 * configure.in: Print a list of available language front-ends if
6857 a requested one is missing. Tidy stray tab characters.
6858 * configure: Regenerated.
6859
6860 2004-08-17 Paolo Bonzini <bonzini@gnu.org>
6861
6862 * Makefile.in: Regenerate.
6863 * configure: Regenerate.
6864
6865 * Makefile.def (bootstrap-stage): Rename extra_*_flags to
6866 stage_*_flags.
6867 * Makefile.tpl (configure-[+module+], all-[+module+]): Exit
6868 for bootstrapped modules if toplevel bootstrap is going.
6869 (GCC bootstrap): Generate per-stage targets for all bootstrapped
6870 modules. Adjust for changes in Makefile.def. Enable several
6871 rules even in non-bootstrap mode, just to avoid peppering the
6872 template with unnecessary "@if/@endif gcc-bootstrap" pairs.
6873 (stage-[+prev+]-bubble): Remove.
6874
6875 * Makefile.def (Dependencies): Depend on all-build-bison,
6876 all-build-flex, all-build-byacc, all-build-texinfo, rather
6877 than the host variations.
6878 * Makefile.tpl (BUILD_DIR_PREFIX): Remove. Replace throughout
6879 with BUILD_SUBDIR.
6880 (BISON): Update for recent Bisons.
6881 (YACC): Fix typo.
6882 (cross): Depend on all-build.
6883 (all): Do not depend on all-build.
6884 (prebootstrap): Remove.
6885 (dep-kind): Accept separate prefixes for MODULE and ON variables.
6886 (Prebootstrap dependencies): Add them to the per-stage targets
6887 and to all-prebootstrap.
6888 * configure.in (build_configdirs): Always enable build_tools.
6889 (BUILD_DIR_PREFIX): Remove.
6890
6891 * Makefile.def (gcc): Add target variable.
6892 (gdb, expect, guile, tk, tix): Replace with_x with extra_make_flags.
6893 * Makefile.tpl (Autogenerated `all-*' targets): Invoke $(TARGET-*)
6894 in the recursive `make', instead of hardwiring `all'.
6895 (Autogenerated TARGET-* variables): New.
6896
6897 2004-08-17 Robert Millan <robertmh@gnu.org>
6898
6899 * configure.in: In noconfigdirs check, match GNU/k*BSD with GNU/Linux
6900 (instead of FreeBSD).
6901 * configure: Regenerate.
6902
6903 2004-08-12 Nathanael Nerode <neroden@gcc.gnu.org>
6904
6905 * Makefile.def, configure.in, src-release: Remove useless, bogus
6906 references to tix.
6907 * Makefile.in, configure: Regenerate.
6908
6909 * src-release: Stop distributing mmalloc with gdb (which doesn't
6910 use it).
6911 * Makefile.def: GDB doesn't depend on mmalloc anymore.
6912 * Makefile.in: Regenerate.
6913
6914 2004-08-09 Mark Mitchell <mark@codesourcery.com>
6915
6916 * configure.in (arm*-*-eabi*): New target.
6917 * configure: Regenerate.
6918
6919 2004-08-01 Robert Millan <robertmh@gnu.org>
6920
6921 * configure.in: Turn mt-linux into mt-gnu. Use mt-gnu and enable
6922 libmudflap for all GNU-based systems (with Glibc).
6923 * configure: Regenerate.
6924
6925 2004-08-06 Paolo Bonzini <bonzini@gnu.org>
6926
6927 * Makefile.def (bfd, opcodes, gcc, zlib): Mark as bootstrap module.
6928 (bison, byacc, flex, texinfo): Do not mark as bootstrap module.
6929 (Dependencies): New section.
6930 * Makefile.tpl (Dependencies): Generate from Makefile.def.
6931 (configure-target-[+module+]): Depend on maybe-all-gcc
6932 (all-prebootstrap): New name of all-bootstrap. Changed throughout.
6933 (toplevel profiledbootstrap): Fix dependencies.
6934 * Makefile.in: Regenerate.
6935
6936 2004-08-03 Mark Mitchell <mark@codesourcery.com>
6937
6938 * configure.in (arm*-*-symbianelf*): Add ${libgcj} and
6939 target-libiberty to noconfigdirs.
6940
6941 2004-08-03 Paul Brook <paul@codesourcery.com>
6942
6943 * configure.in: Check for MPFR as well as GMP.
6944 * configure: Regenerate.
6945
6946 2004-08-03 Paolo Bonzini <bonzini@gnu.org>
6947
6948 * Makefile.def (host-modules): Add gcc.
6949 * Makefile.in: Regenerate.
6950 * Makefile.tpl (sorry): New rule.
6951 (configure-host, all-host, [+make_target+]-host, do-check,
6952 install-host): Do not add gcc as a special case.
6953 (host modules): Add a small special-casing for gcc. Export
6954 extra_make_flags through the environment.
6955 (maybe-configure-gcc, configure-gcc, maybe-all-gcc, all-gcc,
6956 maybe-check-gcc, check-gcc, maybe-install-gcc, install-gcc,
6957 other recursive targets for gcc): Remove.
6958
6959 (all, do-[+make_target+], do-check): Wrap between unstage and stage.
6960 (stage, unstage): New rules.
6961 (stage[+id+]-start, stage[+id+]-end, [+compare-target+],
6962 distclean-stage[+id+]): Use stage_current.
6963 ([+bootstrap-target+], profiledbootstrap): Do not invoke manually
6964 the stage*-start rules.
6965
6966 2004-07-19 Robert Millan <robertmh@gnu.org>
6967
6968 Synced from gcc:
6969
6970 2004-04-26 Robert Millan <robertmh@gnu.org>
6971
6972 Add patches from libtool CVS.
6973 * libtool.m4: Add kfreebsd*-gnu and knetbsd*-gnu.
6974 * ltconfig: Likewise.
6975 * ltcf-c.sh: Likewise.
6976 * ltcf-cxx.sh: Likewise.
6977 * ltcf-gcj.sh: Likewise.
6978
6979 2004-07-12 Paolo Bonzini <bonzini@gnu.org>
6980
6981 * configure.in: Add noconfigdirs for crx-*-*.
6982 * configure: Regenerate.
6983
6984 2004-07-12 Paolo Bonzini <bonzini@gnu.org>
6985
6986 Synced from gcc:
6987
6988 2004-07-09 Loren J. Rittle <ljrittle@acm.org>
6989
6990 * configure.in: Build libmudflap by default on FreeBSD.
6991 * configure: Regenerated.
6992
6993 2004-07-09 Mark Mitchell <mark@codesourcery.com>
6994
6995 * configure.in: Do not build libmudflap by default on non-GNU/Linux
6996 systems.
6997 * configure: Regenerated.
6998
6999 2004-07-08 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
7000
7001 PR target/16344
7002 * Makefile.tpl (profiledbootstrap): Build runtime libraries with
7003 feedback based compiler.
7004 * Makefile.in: Rebuilt.
7005
7006 2004-07-05 Phil Edwards <phil@codesourcery.com>
7007
7008 * configure.in: Do not prepend $srcdir to /dev/null in
7009 makefile fragments.
7010 * configure: Regenerate.
7011
7012 2004-07-08 Alexandre Oliva <aoliva@redhat.com>
7013
7014 * Makefile.def (host_modules): Set bootstrap=true for flex.
7015 * Makefile.tpl (all-gcc): Depend on texinfo and flex.
7016 * Makefile.in: Rebuilt.
7017
7018 2004-07-01 Paolo Bonzini <bonzini@gnu.org>
7019
7020 * Makefile.def (build_modules): Add bison, byacc, flex,
7021 m4, texinfo.
7022 (flags_to_pass): Add FLEX.
7023 * Makefile.tpl (BUILD_DIR_PREFIX, BASE_EXPORTS): New.
7024 (BUILD_EXPORTS, HOST_EXPORTS, BASE_TARGET_EXPORTS): Include it.
7025 (DEFAULT_YACC, USUAL_YACC, DEFAULT_LEX, USUAL_LEX, DEFAULT_M4,
7026 DEFAULT_MAKEINFO): Remove.
7027 (CONFIGURED_YACC, CONFIGURED_FLEX, CONFIGURED_BISON,
7028 CONFIGURED_LEX, CONFIGURED_M4, CONFIGURED_MAKEINFO): Substitute.
7029 (YACC, FLEX, BISON, LEX, M4, MAKEINFO): Define to look into
7030 objdir or else use configured tool.
7031 (all-build): New.
7032 (all): Depend on it.
7033 (Build module dependencies): Add.
7034 * Makefile.in: Regenerate.
7035 * configure.in: Better support for multiple build modules,
7036 matching what is done for host/target modules. Do not look
7037 for "plausible" locations of build tools if Canadian cross.
7038 Use autoconf's AC_PROG_CC to find a C compiler. Define
7039 BUILD_DIR_PREFIX. Look for flex, makeinfo and m4.
7040 * configure: Regenerate.
7041
7042 2004-06-22 Paolo Bonzini <bonzini@gnu.org>
7043
7044 * Makefile.tpl (HOST_EXPORTS): Fix pasto.
7045 * Makefile.in: Regenerate.
7046
7047 2004-06-22 Paolo Bonzini <bonzini@gnu.org>
7048
7049 * Makefile.tpl (configure-build-[+module+],
7050 configure-[+module+], configure-target-[+module+]): Pass
7051 [+extra_configure_args+].
7052 (all-build-[+module+], all-[+module+], check-[+module+],
7053 install-[+module+], [+make_target+]-[+module+],
7054 all-target-[+module+], check-target-[+module+],
7055 install-target-[+module+], [+make_target+]-target-[+module+]):
7056 Pass [+extra_make_args+].
7057 (HOST_EXPORTS): Include the former GCC_HOST_EXPORTS.
7058 (GCC_HOST_EXPORTS): Remove.
7059 (configure-gcc, all-gcc, GCC_STRAP_TARGETS, profiledbootstrap,
7060 cross, check-gcc, check-gcc-c++, install-gcc,
7061 gcc-no-fixedincludes, [+make_target+]-gcc, stage[+id+]-bubble):
7062 Replace GCC_HOST_EXPORTS with HOST_EXPORTS.
7063 * Makefile.in: Regenerate.
7064
7065 2004-06-21 Christopher Faylor <cgf@alum.bu.edu>
7066
7067 * configure.in: Check for srcdir/winsup rather than build directory
7068 winsup.
7069 * configure: Regenerate.
7070
7071 2004-06-17 Corinna Vinschen <vinschen@redhat.com>
7072
7073 * configure.in: Don't build Cygwin native newlib if winsup
7074 directory is missing. Emit warning instead.
7075 * configure: Regenerate.
7076
7077 2004-06-09 Paolo Bonzini <bonzini@gnu.org>
7078
7079 * Makefile.tpl (touch-stage[+id+]): New.
7080 (restage[+prev+]): Depend on touch-stage[+id+].
7081
7082 * Makefile.tpl (RECURSE_FLAGS_TO_PASS): New.
7083 Use it throughout.
7084
7085 * Makefile.def: Add profile and feedback bootstrap stages.
7086 Remove next field from bootstrap stages.
7087 * Makefile.tpl (LN, LN_S): Substitute.
7088 (stageN-start, stageN-end): Use double-colon rules, to
7089 provide a hook for additional setup commands.
7090 (distclean-stageN-gcc, restageN): Create dependencies from
7091 [+prev+], not from [+next+].
7092 (stageN-bubble): Add commands for successive stages from
7093 [+prev+], using double-colon rules.
7094 (all-stageN-gcc): Fix typo.
7095 (stagefeedback-start, profiledbootstrap): New.
7096 * Makefile.in: Regenerate.
7097 * configure.in: Call ACX_PROG_LN.
7098 * configure: Regenerate.
7099
7100 2004-06-03 Paolo Bonzini <bonzini@gnu.org>
7101
7102 * configure.in: Fix --enable-bootstrap breakage introduced in trees
7103 without gcc.
7104 * configure: Regenerate.
7105
7106 2004-06-01 Paolo Bonzini <bonzini@gnu.org>
7107
7108 * Makefile.tpl: Fix typo.
7109 * Makefile.in: Regenerate.
7110
7111 2004-06-01 Paolo Bonzini <bonzini@gnu.org>
7112
7113 * configure.in: Remove new- prefix from toplevel
7114 bootstrap targets.
7115 * configure: Regenerate.
7116
7117 2004-06-01 Paolo Bonzini <bonzini@gnu.org>
7118
7119 Merge this patch from the gcc tree:
7120
7121 2004-05-30 Andreas Jaeger <aj@suse.de>
7122 Jim Wilson <wilson@specifixinc.com>
7123
7124 * config-ml.in: Pass FFLAGS and ADAFLAGS for multilibs, handle F77
7125 like CC.
7126
7127 2004-06-01 Paolo Bonzini <bonzini@gnu.org>
7128
7129 * Makefile.tpl (all.normal): Rename to all.
7130 (all): Replace with a rule to pick the default
7131 target from configure.
7132 (all-gcc, configure-gcc): Use conditionals to
7133 do nothing when toplevel bootstrap is going on.
7134 (GCC directory bootstrap) [gcc-bootstrap]: Disable.
7135 (Toplevel bootstrap) [gcc-no-bootstrap]: Disable.
7136 * configure.in: Support --enable-bootstrap.
7137
7138 * Makefile.def: Remove new- prefix from toplevel
7139 bootstrap targets.
7140 * Makefile.tpl: Likewise.
7141
7142 * Makefile.def: Add bootstrap_stage 4. Add bootstrap2
7143 target.
7144
7145 * Makefile.tpl (Toplevel bootstrap): Pass $(BASE_FLAGS_TO_PASS)
7146 $(RECURSE_FLAGS) to recursive invocation of make.
7147
7148 * Makefile.in: Regenerate.
7149 * configure: Regenerate.
7150
7151 2004-05-27 Daniel Jacobowitz <dan@debian.org>
7152
7153 * configure.in: Fix sed invocation for GFORTRAN_FOR_TARGET.
7154 * configure: Regenerate.
7155
7156 2004-05-25 Daniel Jacobowitz <drow@false.org>
7157
7158 * Makefile.tpl (BUILD_EXPORTS, HOST_EXPORTS, GCC_HOST_EXPORTS)
7159 (STAGE_HOST_EXPORTS, BASE_TARGET_EXPORTS, RAW_CXX_TARGET_EXPORTS)
7160 (NORMAL_TARGET_EXPORTS): New macros. Use them in all the recursive
7161 targets.
7162 * Makefile.in: Regenerate.
7163
7164 2005-05-24 Paolo Bonzini <bonzini@gnu.org>
7165
7166 * configure.in: Test the ability to symlink directories.
7167 * configure: Regenerate.
7168
7169 * Makefile.def (bootstrap-stage): New definitions.
7170 * Makefile.tpl (configure-stage1-gcc,
7171 configure-stage2-gcc, configure-stage3-gcc,
7172 all-stage1-gcc, all-stage2-gcc, all-stage3-gcc,
7173 new-bootstrap, new-cleanstrap, new-restage1, new-restage2,
7174 new-restage3, compare): Autogenerate, see Makefile.in
7175 entry for behavioral changes.
7176 (distclean-stage1, new-stage1-start, new-stage1-end,
7177 new-stage1-bubble, distclean-stage2, new-stage2-start,
7178 new-stage2-end, new-stage2-bubble, distclean-stage3,
7179 new-stage3-start, new-stage3-end): New autogenerated targets.
7180 (objext, prebootstrap, BOOT_CFLAGS,
7181 POSTSTAGE1_FLAGS_TO_PASS): Move above the autogenerated
7182 targets.
7183
7184 * Makefile.in: Regenerate.
7185 (distclean-stage1, new-stage1-start, new-stage1-end,
7186 new-stage1-bubble, distclean-stage2, new-stage2-start,
7187 new-stage2-end, new-stage2-bubble, distclean-stage3,
7188 new-stage3-start, new-stage3-end): New targets.
7189 (all-stage1-gcc): Move prebootstrap dependency from here...
7190 (configure-stage1-gcc): ...to here.
7191 (new-bootstrap): Use bubble targets.
7192 (new-cleanstrap, new-restage1, new-restage2, new-restage3):
7193 Use per-stage distclean targets.
7194 (configure-stage1-gcc, configure-stage2-gcc,
7195 configure-stage3-gcc, all-stage1-gcc,
7196 all-stage2-gcc, all-stage3-gcc, new-bootstrap):
7197 Use new-stageN-start to prepare the tree.
7198
7199 2004-05-23 Paolo Bonzini <bonzini@gnu.org>
7200
7201 * Makefile.def (host_modules): add libcpp.
7202 * Makefile.tpl: Add dependencies on and for libcpp.
7203 * Makefile.in: Regenerate.
7204 * configure.in: Add libcpp host module.
7205 * configure: Regenerate.
7206
7207 2004-05-17 Zack Weinberg <zack@codesourcery.com>
7208
7209 * Makefile.def, Makefile.tpl, configure.in: Remove all mention
7210 of libf2c.
7211 * configure, Makefile.in: Regenerate.
7212
7213 2004-05-13 Diego Novillo <dnovillo@redhat.com>
7214
7215 Merge from tree-ssa-20020619-branch.
7216
7217 * Makefile.def: Add libbanshee, libmudflap and libgfortran.
7218 * Makefile.tpl (BUILD_CONFIGDIRS): Add libbanshee.
7219 (HOST_GMPLIBS): Define.
7220 (HOST_GMPINC): Define.
7221 (TARGET_LIB_PATH): Add libmudflap.
7222 (GFORTRAN_FOR_TARGET): Define.
7223 (configure-build*): Export GFORTRAN.
7224 (configure-gcc): Export GMPLIBS and GMPINC.
7225 (all-gcc): Add maybe-all-libbanshee.
7226 (configure-target-libgfortran): Define.
7227 * Makefile.in: Regenerate.
7228 * configure.in (host_libs): Add libbanshee.
7229 (target_libraries): Add target-libmudflap and target-libgfortran.
7230 Add --with-libbanshee.
7231 Handle --disable-libmudflap.
7232 (*-*-freebsd*): Use with_gmp.
7233 Add $(libgcj) to noconfigdirs.
7234 * configure: Regenerate.
7235 * depcomp: New file.
7236 * MAINTAINERS: Add tree-ssa maintainers.
7237
7238 2004-04-28 Paolo Bonzini <bonzini@gnu.org>
7239
7240 * config/acx.m4: Fix fastcompare support for new-bootstrap.
7241 * configure: Regenerate.
7242
7243 2004-04-27 Paolo Bonzini <bonzini@gnu.org>
7244
7245 Revert:
7246 2004-04-26 Paolo Bonzini <bonzini@gnu.org>
7247
7248 * Makefile.def (flags_to_pass): Remove *dir variables that
7249 are passed to the modules via TOPLEVEL_CONFIGURE_ARGUMENTS,
7250 as well as prefix and exec_prefix.
7251 * Makefile.in: Regenerate.
7252
7253 2004-04-26 Paolo Bonzini <bonzini@gnu.org>
7254
7255 * Makefile.def (host_modules): Mark with the bootstrap
7256 flag packages on which gcc depends.
7257 * Makefile.tpl (all-bootstrap): Use it.
7258 * Makefile.in: Regenerate.
7259
7260 2004-04-26 Paolo Bonzini <bonzini@gnu.org>
7261
7262 * Makefile.def (flags_to_pass): Remove *dir variables that
7263 are passed to the modules via TOPLEVEL_CONFIGURE_ARGUMENTS,
7264 as well as prefix and exec_prefix.
7265 * Makefile.in: Regenerate.
7266
7267 2004-04-26 Paolo Bonzini <bonzini@gnu.org>
7268
7269 * configure.in: Invoke ACX_PROG_CMP_IGNORE_INITIAL.
7270 * configure: Regenerate.
7271 * config/acx.m4: Mutuate ACX_PROG_CMP_IGNORE_INITIAL from gcc.
7272 * gcc/Makefile.tpl (compare): Use the result of the test.
7273 * gcc/Makefile.in: Regenerate.
7274
7275 2004-04-23 Paolo Bonzini <bonzini@gnu.org>
7276
7277 * Makefile.tpl (all-stage1-gcc, all-stage2-gcc, all-stage3-gcc):
7278 Always relocate gcc and prev-gcc to the original names, even
7279 if the build fails.
7280 (new-cleanstrap, new-restage1, new-restage2, new-restage3):
7281 New targets.
7282
7283 2004-04-19 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
7284
7285 * configure.in (mips*-*-irix5*): Enable ld.
7286 * configure: Regenerate.
7287
7288 2004-04-15 James E Wilson <wilson@specifixinc.com>
7289
7290 * Makefile.tpl (configure-[+module+], configure-gcc,
7291 configure-stage1-gcc, configure-stage2-gcc, configure-stage3-gcc):
7292 Set and export LDFLAGS.
7293 * Makefile.in: Regenerate.
7294
7295 2004-04-09 Nathanael Nerode <neroden@gcc.gnu.org>
7296
7297 PR bootstrap/14871
7298 * Makefile.tpl: If we don't have built-in-tree target tools,
7299 use the ones found by configure rather than hacking around with
7300 program_transform_name.
7301 * configure.in: Give Makefile.tpl the information necessary
7302 to do that.
7303 * Makefile.in: Regenerate.
7304 * configure: Regenerate.
7305
7306 2004-04-06 Nathanael Nerode <neroden@gcc.gnu.org>
7307
7308 PR bootstrap/14760
7309 * configure.in: When computing baseargs, strip *all* copies of
7310 offending options. Also, don't match/substitute the trailing space,
7311 so that this actually works when two similar options are separated by
7312 only one space.
7313 * configure: Regenerate.
7314
7315 2004-04-06 David Edelsohn <edelsohn@gnu.org>
7316
7317 * configure.in (powerpc-*-aix*): Remove target-libada from noconfigdirs.
7318 (rs6000-*-aix*): Same.
7319 * configure: Regenerate.
7320
7321 2004-03-25 Stan Shebs <shebs@apple.com>
7322
7323 Remove MPW support, no longer used.
7324 * mpw-README, mpw-build.in, mpw-config.in, mpw-configure,
7325 mpw-install: Remove files.
7326 * src-release (DEVO_SUPPORT): Remove names of removed files.
7327 * MAINTAINERS: Likewise.
7328
7329 2004-03-24 Nathanael Nerode <neroden@gcc.gnu.org>
7330
7331 * Makefile.tpl (top level bootstrap support): Remove now-unneeded
7332 STRICT_WARN, WARN_CFLAGS flags passed down to make.
7333 * Makefile.in: Regenerate.
7334
7335 * configure.in (top level bootstrap support): Rework --enable-werror
7336 to set @stage2_werror_flag@.
7337 * configure: Regenerate.
7338 * Makefile.tpl (top level bootstrap support): Pass
7339 @stage2_werror_flag@ down to configure in stages 2 and 3.
7340 * Makefile.in: Regenerate.
7341
7342 2004-03-23 Nathanael Nerode <neroden@gcc.gnu.org>
7343
7344 * Makefile.tpl (new-bootstrap): Set CC and CC_FOR_BUILD in configure
7345 for stages 2 and 3 as well as in make. As a consequence, remove
7346 OUTPUT_OPTION (now detected by configure) from the flags passed down
7347 to make.
7348 * Makefile.in: Regenerate.
7349
7350 * Makefile.tpl (new-bootstrap): Fix typo.
7351 * Makefile.in: Regenerate.
7352
7353 2004-03-22 Nathanael Nerode <neroden@gcc.gnu.org>
7354
7355 * Makefile.tpl: Rearrange by moving recursive_targets rules
7356 into their proper sections.
7357 * Makefile.tpl (top level bootstrap support): Move disabling
7358 of coverage flags from 'make' to 'configure'; improve comments.
7359 * Makefile.in: Regenerate.
7360
7361 * Makefile.tpl (experimental top level bootstrap) Move stage1
7362 language setting from all- target to configure- target; disable
7363 intermodule optimization in stage 1; prevent gratuitous rebuilds
7364 of stage 1.
7365 * Makefile.in: Regenerate.
7366 * configure.in: Comma-separate stage 1 language list for top
7367 level bootstrap.
7368 * configure: Regenerate.
7369
7370 * Makefile.tpl: Clean up experimental top level bootstrap support:
7371 note known problems; set CONFIG_SHELL; don't set BUILD_CC; relocate
7372 prev-gcc in configure- targets as well as all- targets.
7373 * Makefile.in: Regenerate.
7374
7375 2004-03-17 Paolo Bonzini <bonzini@gnu.org>
7376
7377 * configure.in: Remove symbolic link section.
7378 * configure: Regenerate.
7379 * Makefile.tpl (links): Remove.
7380 * Makefile.in: Regenerate.
7381
7382 2004-03-15 Paolo Bonzini <bonzini@gnu.org>
7383 Nathanael Nerode <neroden@gcc.gnu.org>
7384
7385 * configure.in (DEFAULT_YACC, DEFAULT_M4, DEFAULT_LEX):
7386 Set with AC_CHECK_PROGS.
7387 * configure.in: Fix comment typo from last patch.
7388 * configure: Regenerate.
7389
7390 2004-03-15 Nathanael Nerode <neroden@gcc.gnu.org>
7391
7392 * Makefile.tpl: Introduce experimental top level bootstrap support.
7393 * Makefile.in: Regenerate.
7394 * configure.in: Introduce support for top level bootstrap.
7395 * configure: Regenerate.
7396
7397 2004-03-12 Eric Botcazou <ebotcazou@gcc.gnu.org>
7398 Paolo Bonzini <bonzini@gnu.org>
7399
7400 PR bootstrap/14522
7401 * configure.in: Cope with shells that do not support unquoted ^
7402 * configure: Regenerate.
7403
7404 2004-03-11 Eric Botcazou <ebotcazou@gcc.gnu.org>
7405 Paolo Bonzini <bonzini@gnu.org>
7406
7407 PR bootstrap/14522
7408 * configure.in: Cope with shell that do not support nesting
7409 quotes inside quoted backquote substitutions.
7410 * configure: Regenerate.
7411
7412 2004-03-10 Andrew Pinski <pinskia@physics.uc.edu>
7413
7414 PR bootstrap/14522
7415 * configure.in: Fix escaping of $.
7416 * configure: Regenerate.
7417
7418 2004-03-11 Nathanael Nerode <neroden@gcc.gnu.org>
7419
7420 * configure: Regenerate.
7421
7422 2004-03-08 Paolo Bonzini <bonzini@gnu.org>
7423
7424 PR ada/14131
7425 Move language detection to the top level.
7426 * configure.in: Find default values for the tools as
7427 soon as possible. Disable ada if GNAT is not found.
7428 Emit error message about missing languages. Expand
7429 --enable-languages=all for the gcc subdirectory.
7430
7431 2004-03-01 Richard Sandiford <rsandifo@redhat.com>
7432
7433 * configure.in (mips64*-*-linux*): Override mips*-*-linux* case
7434 and disable libgcj.
7435 * configure: Regenerated.
7436
7437 2004-02-28 Nathanael Nerode <neroden@gcc.gnu.org>
7438
7439 PR bootstrap/7087
7440 * Makefile.tpl: Guard XFOO sed statements better.
7441 * Makefile.tpl: Add dependency for configure-target-libada.
7442 * Makefile.in: Regenerate (incidentally fixes broken
7443 commit when libada-branch was merged).
7444
7445 2004-02-28 Andrew Cagney <cagney@redhat.com>
7446
7447 * src-release (CVS_NAMES): Define.
7448 (do-tar, do-tar): Prune $(CVS_NAMES).
7449
7450 2004-02-23 Andrew Cagney <cagney@redhat.com>
7451
7452 * texinfo/texinfo.tex: Update from version 2003-02-03.16 to
7453 2004-02-19.09.
7454
7455 2004-02-19 Nathanael Nerode <neroden@gcc.gnu.org>
7456
7457 PR bootstrap/11932
7458 * mkinstalldirs, install-sh: Import from automake CVS HEAD.
7459
7460 2004-02-19 Andrew Cagney <cagney@redhat.com>
7461
7462 * config.guess: Update from version 2003-06-12 to 2004-02-16.
7463 * config.sub: Update from version 2003-06-13 to 2004-02-16.
7464
7465 2004-02-11 David Edelsohn <edelsohn@gnu.org>
7466
7467 * configure.in (powerpc-*-aix*): Add target-libada to noconfigdirs.
7468 (rs6000-*-aix*): Same.
7469 * configure: Regenerate.
7470
7471 2004-02-11 Kelley Cook <kcook@gcc.gnu.org>
7472
7473 * configure.in (host): Add in missing $noconfigdirs to defines.
7474 * configure: Regenerate.
7475
7476 2004-02-10 Arnaud Charlet <charlet@act-europe.fr>,
7477 Nathanael Nerode <neroden@gcc.gnu.org>
7478
7479 PR ada/6637, PR ada/5911
7480 Merge with libada-branch:
7481 * configure.in, Makefile.tpl, Makefile.def: Add target-libada,
7482 with appropriate dependencies. Add --enable-libada configure switch.
7483 * configure, Makefile.in: Regenerate.
7484
7485 2004-02-05 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
7486
7487 * configure.in: Don't pass --with-stabs on IRIX 5 either.
7488 * configure: Regenerate.
7489
7490 2004-02-02 Jeff Johnston <jjohnstn@redhat.com>
7491
7492 * COPYING.NEWLIB: Update Red Hat license to 2004.
7493
7494 2004-01-23 DJ Delorie <dj@redhat.com>
7495
7496 * Makefile.def (target_modules) [libiberty]: Don't stage.
7497 * Makefile.in: Rebuilt.
7498
7499 2004-01-23 Jeff Johnston <jjohnstn@redhat.com>
7500
7501 * COPYING.NEWLIB: Update to include copyrights for new
7502 iconv code.
7503
7504 2004-01-15 Andrew Cagney <cagney@redhat.com>
7505
7506 * src-release: Update copyright year.
7507 (do-proto-toplev): Configure using i686-pc-linux-gnu.
7508 (NEWLIB_SUPPORT_DIRS): Delete macro.
7509 (newlib.tar.bz2): Delete rule.
7510
7511 2004-01-14 Loren J. Rittle <ljrittle@acm.org>
7512
7513 * Makefile.def (target_modules) [libtermcap, libiberty, zlib]: Stage.
7514 * Makefile.tpl (configure-target-[+module+]): Support stage.
7515 * Makefile.in: Rebuilt.
7516
7517 2003-01-14 Maciej W. Rozycki <macro@ds2.pg.gda.pl>
7518
7519 * gettext.m4: Quote names of macros to be defined by AC_DEFUN
7520 throughout.
7521
7522 2004-01-04 Nathanael Nerode <neroden@gcc.gnu.org>
7523
7524 * configure.in: Use ./config.cache, not config.cache.
7525 * configure: Regenerate.
7526 * Makefile.tpl: Special-casing not needed for GCC any more.
7527 * Makefile.in: Regenerate.
7528
7529 * configure.in: Don't share a cache file for host dirs.
7530 * configure: Regenerate.
7531
7532 * config-ml.in: Don't mess with the cache file.
7533
7534 2004-01-03 Nathanael Nerode <neroden@gcc.gnu.org>
7535
7536 * Makefile.tpl: Make GCC use a separate config.cache.
7537 * Makefile.in: Regenerate.
7538
7539 PR bootstrap/11932, PR bootstrap/11933
7540 (I don't know if it will fix either of them, but it relates
7541 to them.)
7542 * configure.in: Don't use shared config.cache for target
7543 directories.
7544 * configure: Regenerate.
7545
7546 2003-12-31 Roger Sayle <roger@eyesopen.com>
7547
7548 * configure.in (ia64*-*-hpux*): Disable building java libraries.
7549 * configure: Regenerated.
7550
7551 2003-12-21 Bernardo Innocenti <bernie@develer.com>
7552
7553 * configure.in (*-*-uclinux): Exclude newlib, libgloss and rda.
7554 * configure: Regenerated.
7555
7556 2003-12-19 Nathanael Nerode <neroden@gcc.gnu.org>
7557
7558 Port change over from GCC:
7559 2003-11-20 Kelley Cook <kcook@gcc.gnu.org>
7560 * Makefile.tpl (BASE_FLAGS_TO_PASS): Pass along CONFIG_SHELL.
7561 (configure-build-[+module+], configure-[+module+]): Likewise.
7562 (configure-target-[+module+], configure-gcc, config.status): Likewise.
7563 * Makefile.in: Regenerate.
7564
7565 2003-12-08 Thomas Fitzsimmons <fitzsim@redhat.com>
7566
7567 * configure.in (raw_libstdcxx_flags): Remove the leading space.
7568 * configure: Regenerate.
7569
7570 2003-11-27 Jeff Johnston <jjohnstn@redhat.com>
7571
7572 * COPYING.NEWLIB: Add license info for long long routines added to
7573 stdlib.
7574
7575 2003-11-14 Arnaud Charlet <charlet@act-europe.fr>
7576
7577 * Makefile.tpl (EXTRA_GCC_FLAGS): Pass BOOT_ADAFLAGS.
7578 * Makefile.in: Regenerate.
7579
7580 2003-10-20 Phil Edwards <phil@codesourcery.com>
7581
7582 * configure.in (*-*-vxworks): Add target-libiberty to noconfdirs.
7583 * configure: Regenerate.
7584
7585 2003-10-13 Nathanael Nerode <neroden@gcc.gnu.org>
7586
7587 * Makefile.tpl: Make GCC_FLAGS_TO_PASS a superset of
7588 HOST_FLAGS_TO_PASS.
7589 * Makefile.in: Regenerate.
7590
7591 2003-10-05 Mohan Embar <gnustuff@thisiscool.com>
7592
7593 * configure.in: Allow explicit specification of CFLAGS_FOR_BUILD.
7594 * configure: Rebuilt
7595 * Makefile.tpl: Use CFLAGS_FOR_BUILD computed by configure
7596 * Makefile.in: Rebuilt
7597
7598 2003-10-03 H.J. Lu <hongjiu.lu@intel.com>
7599
7600 * ltconfig (sys_lib_search_path_spec): Fix a typo for HPUX.
7601
7602 2003-10-01 Phil Edwards <pme@gcc.gnu.org>
7603
7604 * config-ml.in: Use ac_configure_args directly instead of
7605 ml_arguments. Only set ml_norecursion if --no[-]recursion is
7606 actually seen.
7607
7608 2003-10-01 Eric Botcazou <ebotcazou@libertysurf.fr>
7609
7610 * config-ml.in: Propagate INSTALL variables.
7611
7612 2003-09-21 Daniel Jacobowitz <drow@mvista.com>
7613
7614 * configure.in: Pass a computed --program-transform-name
7615 to subconfigures.
7616 * configure: Regenerated.
7617
7618 2003-09-20 Nathanael Nerode <neroden@gcc.gnu.org>
7619
7620 * Makefile.tpl: Don't pass down obsolete ENQUIRE variable.
7621 * Makefile.in: Regenerate.
7622
7623 * Makefile.tpl: Don't pass (unused) DLLTOOL or WINDRES to gcc.
7624 * Makefile.in: Regenerate.
7625
7626 2003-09-17 Daniel Jacobowitz <drow@mvista.com>
7627
7628 * configure.in (TOPLEVEL_CONFIGURE_ARGUMENTS, baseargs): Fix
7629 quoting.
7630 * configure: Regenerated.
7631
7632 2003-09-12 Michael Chastain <mec@shout.net>
7633
7634 Fix PR gdb/857.
7635 * src-release (do-proto-topleve): Remove junk files
7636 intl/config.cache, intl/config.status,
7637 intl/config.h, intl/stamp-h.
7638
7639 2003-09-14 Andrew Cagney <cagney@redhat.com>
7640
7641 * src-release (dejagnu.tar): New target.
7642 (dejagnu.tar.bz2): Recursively call "gdb-taz" rule.
7643 (do-djunpack): Use $(PACKAGE) for the package name.
7644
7645 2003-09-04 DJ Delorie <dj@redhat.com>
7646
7647 * configure: Regenerate.
7648
7649 2003-09-04 Robert Millan <robertmh@gnu.org>
7650
7651 * configure.in: Match GNU/KFreeBSD with new kfreebsd*-gnu triplet.
7652
7653 2003-09-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
7654
7655 * configure.in: Ensure arguments to sed are properly spaced.
7656 * configure: Regenerate.
7657
7658 2003-08-28 Daniel Jacobowitz <drow@mvista.com>
7659
7660 Merge from gcc:
7661 2003-07-20 Phil Edwards <pme@gcc.gnu.org>
7662 * install-sh: Update to newer upstream versions (associated with
7663 aclocal 1.7).
7664 * missing: Likewise, plus $1Help2man -> $1 typo fix.
7665
7666 2003-08-27 Daniel Jacobowitz <drow@mvista.com>
7667
7668 * configure.in: Set RAW_CXX_FOR_TARGET if unset.
7669 * configure: Regenerated.
7670
7671 2003-08-23 Phil Edwards <pme@gcc.gnu.org>
7672
7673 * configure.in: Use newline instead of semicolon when assuming
7674 shell arguments in a for loop.
7675 * configure: Regenerated.
7676
7677 2003-08-20 Geoffrey Keating <geoffk@apple.com>
7678
7679 PR 8180
7680 * configure.in: When testing with_libs and with_headers, treat
7681 'no' as unset. Based on a patch by Dan Kegel <dank@kegel.com>.
7682 * configure: Regenerate.
7683
7684 * configure.in (TOPLEVEL_CONFIGURE_ARGUMENTS): Quote properly for
7685 make, shell, etc.
7686 (baseargs): Likewise.
7687 * configure: Regenerate.
7688
7689 2003-08-19 Geoffrey Keating <geoffk@apple.com>
7690
7691 * configure.in: Disable libgcj for darwin not on powerpc.
7692 * configure: Rebuild.
7693
7694 2003-08-15 Michael Chastain <mec@shout.net>
7695
7696 * src-release (do-proto-toplev): Remove junk files
7697 dejagnu/example/calc/config.status,
7698 dejagnu/example/calc/config.log.
7699
7700 2003-08-14 Alexandre Duret-Lutz <adl@gnu.org>
7701
7702 * config-ml.in, symlink-tree: Add license.
7703
7704 2003-08-01 Nathanael Nerode <neroden@gcc.gnu.org>
7705
7706 Merge from gcc:
7707
7708 2003-08-01 Matt Kraai <kraai@alumni.cmu.edu>
7709 * Makefile.tpl (check, check-c++): Express dependencies using
7710 dependencies rather than commands.
7711 * Makefile.in: Regenerate.
7712
7713 2003-07-31 Geoffrey Keating <geoffk@apple.com>
7714 * Makefile.tpl (libsubdir): Use gcc instead of gcc-lib.
7715 * Makefile.in: Update.
7716
7717 2003-08-01 Andrew Cagney <cagney@redhat.com>
7718
7719 * configure.in (noconfigdirs): Do not add GDB when m32r-*-*.
7720 * configure: Ditto.
7721
7722 2003-07-30 Andreas Tobler <a.tobler@schweiz.ch>
7723
7724 * configure.in: Enable libgcj for darwin.
7725 * configure: Rebuild.
7726
7727 2003-07-29 Nathanael Nerode <neroden@gcc.gnu.org>
7728
7729 * mkinstalldirs: Import autoconf 2.57 / automake 1.7 version.
7730
7731 2003-07-27 Nathanael Nerode <neroden@gcc.gnu.org>
7732
7733 * Makefile.tpl: Use 'mkinstalldirs' rather than 'mkdir' when
7734 creating target and build subdirs to build all parent dirs as needed.
7735 * Makefile.in: Rebuild.
7736 * configure.in: Don't build dirs explicitly here.
7737 * configure: Rebuild.
7738
7739 2003-07-22 Alexandre Oliva <aoliva@redhat.com>
7740
7741 * Makefile.tpl (all-make): Depend on intl.
7742 * Makefile.in: Rebuilt.
7743
7744 2003-07-16 Nathanael Nerode <neroden@gcc.gnu.org>
7745
7746 * config.if: Remove unused libc_interface determination.
7747
7748 2003-07-14 Nathanael Nerode <neroden@gcc.gnu.org>
7749
7750 * Makefile.in: Regenerate, correctly this time.
7751
7752 2003-07-13 Nathanael Nerode <neroden@gcc.gnu.org>
7753
7754 * Makefile.tpl: Set INSTALL and friends using autoconf. Remove
7755 unused INSTALL_PROGRAM_ARGS.
7756 * configure.in: Use AC_PROG_INSTALL.
7757 * Makefile.in: Regenerate.
7758 * configure: Regenerate.
7759
7760 2003-07-10 Alexandre Oliva <aoliva@redhat.com>
7761
7762 * configure: Rebuilt.
7763 2001-09-26 Alexandre Oliva <aoliva@redhat.com>
7764 * configure.in (noconfigdirs) [am33_2.0-*-linux*]: Don't build
7765 newlib nor libgloss.
7766 Wed May 9 10:07:19 2001 Alexandre Oliva <aoliva@redhat.com>
7767 * configure.in (am33_2.0-*-linux*): Added.
7768
7769 2003-07-09 Bob Wilson <bob.wilson@acm.org>
7770
7771 * configure.in: Add ${libgcj} to noconfigdirs for xtensa-*-* targets.
7772 * configure: Regenerate.
7773
7774 2003-07-06 H.J. Lu <hongjiu.lu@intel.com>
7775
7776 * config-ml.in: Replace PWD with PWD_COMMAND.
7777 * Makefile.tpl: Likewise.
7778 * Makefile.in: Regenerated.
7779
7780 2003-06-27 Nathanael Nerode <neroden@gcc.gnu.org>
7781
7782 * configure.in: Clean up config-lang.in handling. Delete
7783 useless assignment to "subdirs".
7784 * configure: Regenerate.
7785
7786 2003-06-26 Nathanael Nerode <neroden@gcc.gnu.org>
7787
7788 * configure.in: Rename 'target_libs' to 'target_libraries'.
7789 Remove useless reference to 'target_libs'.
7790 * configure: Regenerate.
7791
7792 2003-06-23 Keith Seitz <kseitz@sources.redhat.com>
7793
7794 * Makefile.tpl: Add maybe-configure-itcl to configure-gdb.
7795 * Makefile.in: Regenerate.
7796
7797 2003-06-23 Nathanael Nerode <neroden@gcc.gnu.org>
7798
7799 * Makefile.def: Introduce flags_to_pass.
7800 * Makefile.tpl: Generate BASE_FLAGS_TO_PASS using it.
7801 * Makefile.in: Regenerate.
7802
7803 2003-06-23 Hans-Peter Nilsson <hp@bitrange.com>
7804
7805 * configure.in (noconfigdirs) <cris-*-*>: Disable target-newlib
7806 and target-libgloss.
7807 <d30v-*-*, fr30-*-*, i960-*-*, m32r-*-*>: Disable gdb.
7808 <h8300*-*-*>: Disable libf2c and ${libgcj}.
7809 * configure: Regenerate.
7810
7811 2003-06-17 Benjamin Kosnik <bkoz@redhat.com>
7812
7813 * configure.in: Update testsuite_flags to new location.
7814 * configure. Regenerate.
7815
7816 2003-06-18 Nathanael Nerode <neroden@gcc.gnu.org>
7817
7818 * Makefile.tpl: Remove BUILD_CC stuff.
7819 * Makefile.in: Regenerate.
7820
7821 2003-06-14 H.J. Lu <hongjiu.lu@intel.com>
7822
7823 * config.guess: Update to 2003-06-12 version.
7824 * config.sub: Update to 2003-06-13 version.
7825
7826 2003-06-12 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
7827
7828 * MAINTAINERS: Add myself as MIPS co-maintainer.
7829
7830 2003-06-12 H.J. Lu <hongjiu.lu@intel.com>
7831
7832 * config.guess: Update to 2003-06-06 version.
7833 * config.sub: Update to 2003-06-06 version.
7834
7835 2003-06-11 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
7836
7837 * configure.in: Don't pass --with-stabs for mips*-sgi-irix6*o32.
7838 * configure. Regenerate.
7839
7840 2003-06-10 Nathanael Nerode <neroden@gcc.gnu.org>
7841
7842 * configure.in: Disable serial configure by default.
7843 * configure: Regenerate.
7844 * Makefile.tpl: Abolish .NOTPARALLEL.
7845 * Makefile.in: Regenerate.
7846
7847 * Makefile.tpl: Replace {build,host,target}_canonical by
7848 {build,host,target}.
7849 * Makefile.in: Regenerate.
7850
7851 * Makefile.tpl: Fix stupid pasto.
7852 * Makefile.in: Regenerate.
7853
7854 2003-06-09 Nathanael Nerode <neroden@gcc.gnu.org>
7855
7856 * Makefile.tpl: Remove bogus conditional.
7857 * Makefile.in: Regenerate.
7858
7859 2003-06-03 Nathanael Nerode <neroden@gcc.gnu.org>
7860
7861 * Makefile.tpl: Make 'recursive targets' using autogen rather
7862 than shell loop. Remove duplicate 'clean' targets and false
7863 comments.
7864 * Makefile.def: Add systematic dependencies to 'recursive' targets.
7865 Add systematic method of specifying missing targets in subdirs.
7866 Add copyright boilerplate.
7867 * Makefile.in: Regenerate.
7868 * configure.in: Add 'recursive targets' to maybe list.
7869 * configure: Regenerate.
7870
7871 * Makefile.tpl: Rename [+target+] to [+make_target+].
7872 * Makefile.def: Rename 'target' to 'make_target'.
7873
7874 2003-05-30 Nick Clifton <nickc@redhat.com>
7875
7876 * README-maintainer-mode: Update URL for locating blessed config
7877 tools.
7878
7879 2003-05-29 Robert Millan <rmh@debian.org>
7880
7881 * ltconfig: Import this patch and modify for use with current
7882 version of ltconfig:
7883
7884 2003-05-21 Bruno Haible <bruno@clisp.org>
7885
7886 * libtool.m4 (AC_LIBTOOL_SYS_DYNAMIC_LINKER): Add support for
7887 GNU/FreeBSD.
7888
7889 2003-05-28 DJ Delorie <dj@redhat.com>
7890
7891 * Makefile.tpl: Make maybe-check-gcc .PHONY.
7892 * Makefile.in: Regenerate.
7893
7894 2003-05-28 Jeff Johnston <jjohnstn@redhat.com>
7895
7896 * COPYING.NEWLIB: Add license info for newlib/libc/sys/linux/stdlib.
7897
7898 2003-05-21 DJ Delorie <dj@redhat.com>
7899
7900 * Makefile.tpl (configure-target-libiberty): Depend only on gcc, not
7901 newlib or libgloss.
7902 * Makefile.in: Regenerate.
7903
7904 2003-05-21 DJ Delorie <dj@redhat.com>
7905
7906 * Makefile.tpl: Add missing empty maybe-check-gcc target.
7907 * Makefile.in: Regenerate.
7908
7909 2003-05-20 Maciej W. Rozycki <macro@ds2.pg.gda.pl>
7910
7911 * configure.in: Use curly braces in the definition of tooldir.
7912 * configure: Regenerate.
7913
7914 2003-05-19 Nathanael Nerode <neroden@gcc.gnu.org>
7915
7916 * configure.in: Switch more things to use maybe dependencies.
7917 * Makefile.tpl: Switch more things to use maybe dependencies.
7918 Factor out common code from autogen IF statements.
7919 * configure: Regenerate.
7920 * Makefile.in: Regenerate.
7921
7922 2003-05-14 Kelley Cook <kelleycook@wideopenwest.com>
7923
7924 * configure.in: Accept i[3456789]86 for machine type.
7925 * configure: Regenerate.
7926
7927 2003-05-18 Nathanael Nerode <neroden@gcc.gnu.org>
7928
7929 * configure.in: Switch more things to use maybe dependencies.
7930 Rearrange a little. Use GCC_TOPLEV_SUBDIRS.
7931 * configure: Regenerate.
7932 * Makefile.tpl: Switch more things to use maybe dependencies.
7933 * Makefile.in: Regenerate.
7934
7935 2003-05-16 Andreas Schwab <schwab@suse.de>
7936
7937 * Makefile.tpl (install-opcodes): Define.
7938 * Makefile.in: Rebuild.
7939
7940 2003-05-13 Andreas Jaeger <aj@suse.de>
7941
7942 * config.guess: Update to 2003-05-09 version.
7943 * config.sub: Update to 2003-05-09 version.
7944
7945 2003-05-13 Michael Eager <eager@mvista.com>
7946
7947 * configure.in: Correct sed script so that options in quotes are not
7948 deleted.
7949 * configure: Rebuild.
7950
7951 2003-05-12 Corinna Vinschen <corinna@vinschen.de>
7952
7953 * configure.in (FLAGS_FOR_TARGET): Remove $$s/newlib/libc/sys/cygwin
7954 and $$s/newlib/libc/sys/cygwin32 include paths.
7955 * configure: Ditto.
7956
7957 2003-05-05 H.J. Lu <hjl@gnu.org>
7958
7959 * config-ml.in: Restored from gcc repository.
7960
7961 2003-05-02 Chris Demetriou <cgd@broadcom.com>
7962
7963 * Makefile.tpl: Require "makeinfo" from texinfo 4.2 or later.
7964 * Makefile.in: Regenerate.
7965
7966 2003-04-27 Daniel Jacobowitz <drow@mvista.com>
7967
7968 * src-release (DEVO_SUPPORT): Add src-release, Makefile.tpl,
7969 and Makefile.def.
7970
7971 2003-04-27 Daniel Jacobowitz <drow@mvista.com>
7972
7973 * Makefile.tpl: Clean $(BUILD_SUBDIR).
7974 * Makefile.in: Regenerated.
7975
7976 2003-04-18 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
7977
7978 * Makefile.tpl (MAKEINFOFLAGS): Default to --split-size=5000000.
7979 * Makefile.in: Regenerate.
7980
7981 2003-04-18 Jakub Jelinek <jakub@redhat.com>
7982
7983 * configure.in (powerpc64*-*-linux*): Remove.
7984 * configure: Rebuilt.
7985
7986 2003-04-17 Phil Edwards <pme@gcc.gnu.org>
7987
7988 * Makefile.tpl (GCC_STRAP_TARGETS): New variable containing all the
7989 previous bootstrap targets, plus bubblestrap, quickstrap, cleanstrap,
7990 and restrap.
7991 * Makefile.in: Regenerate.
7992
7993 2003-04-16 Richard Earnshaw <rearnsha@arm.com>
7994
7995 * configure.in (arm-*-netbsdelf*): Enable building java libraries.
7996 * configure: Regenerated.
7997
7998 2003-04-11 Alexandre Oliva <aoliva@redhat.com>
7999
8000 * libtool.m4 (lt_cv_deplibs_check_method): Use pass_all on mips*.
8001 * */configure: Rebuilt.
8002
8003 2003-03-14 Nathanael Nerode <neroden@gcc.gnu.org>
8004
8005 * Makefile.tpl: Move .NOEXPORT, MAKEOVERRIDES back down.
8006 * Makefile.in: Regenerate.
8007
8008 2003-03-14 Michael Chastain <mec@shout.net>
8009
8010 * Makefile.in: Regenerate with correct Makefile.def.
8011
8012 2003-03-12 Nathanael Nerode <neroden@gcc.gnu.org>
8013
8014 * Makefile.tpl: Move .NOEXPORT, MAKEOVERRIDES up. Delete unused
8015 Make macro.
8016 * Makefile.in: Regenerate.
8017 * configure.in: Clean up gxx_include_dir logic.
8018 * configure: Regenerate.
8019
8020 2003-03-09 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
8021
8022 * configure.in (gxx_include_dir): Fix typo.
8023 * configure: Regenerated.
8024
8025 2003-03-06 Andrew Cagney <cagney@redhat.com>
8026
8027 * texinfo/texinfo.tex: Import version 2003-02-03.16.
8028
8029 2003-03-04 Daniel Jacobowitz <drow@mvista.com>
8030
8031 * configure.in: Include $(build_tooldir)/sys-include in
8032 FLAGS_FOR_TARGET.
8033 * configure: Regenerated.
8034
8035 2003-03-04 Nathanael Nerode <neroden@gcc.gnu.org>
8036
8037 * Makefile.tpl: Reindent.
8038 * Makefile.in: Regenerate.
8039 * configure.in: Reindent. Don't set unused variables.
8040 * configure: Regenerate.
8041
8042 * Makefile.tpl: Always pass down RANLIB.
8043 * Makefile.in: Regenerate.
8044
8045 * Makefile.tpl: Don't set unused enable_shared, enable_threads macros.
8046 * Makefile.in: Regenerate.
8047 * configure.in: Remove unused logic relating to --enable-shared
8048 and --enable-threads. Remove bogus comments. Remove redundant
8049 noconfigdirs.
8050 * configure: Regenerate.
8051
8052 * configure.in: Replace ${libstdcxx_version} by its value.
8053 Remove reference to mh-dgux.
8054 * configure: Regenerate.
8055
8056 2003-02-28 Nathanael Nerode <neroden@gcc.gnu.org>
8057
8058 * Makefile.tpl: Rearrange.
8059 * Makefile.in: Regenerate.
8060
8061 2003-02-25 Nick Clifton <nickc@redhat.com>
8062
8063 * configure: Remove site-file supprot - it is obsolete.
8064
8065 2003-02-24 Uwe Stieber <uwe@wwws.de>
8066
8067 * configure.in: Add support for kaOS as cross build target system.
8068 * configure: Regenerated.
8069
8070 2003-02-20 Sean McNeil <sean@blue.mcneil.com>
8071
8072 * Makefile.tpl: Add definition of CPPFLAGS to pass into
8073 configure-target-* as some target builds may require additional
8074 flags for preprocessor tests.
8075 * Makefile.in: Regenerated.
8076
8077 2003-02-19 Alexandre Oliva <aoliva@redhat.com>
8078
8079 * libtool.m4 (LD): Append -melf* option to LD on IRIX with GNU ld.
8080 * ltconfig: Handle it.
8081 * ltcf-cxx.sh: Use with_gnu_ld passed as a shell variable instead of
8082 auto-detecting it.
8083
8084 2003-02-19 Alexandre Oliva <aoliva@redhat.com>
8085
8086 * ltcf-cxx.sh: Replace $linker_flags with $compiler_flags wherever
8087 it is used as argument to $CC.
8088 * ltcf-gcj.sh: Likewise.
8089
8090 2003-02-19 Alexandre Oliva <aoliva@redhat.com>
8091
8092 * configure.in: Introduce --enable-maintainer-mode.
8093 * configure: Rebuilt.
8094 * Makefile.tpl (Makefile.in, configure): Enable dependencies only
8095 for maintainer mode.
8096 * Makefile.in: Rebuilt.
8097
8098 2003-02-19 Andrew Cagney <ac131313@redhat.com>
8099
8100 * configure: Regenerate using autoconf 2.13.
8101
8102 2003-02-19 Alan Modra <amodra@bigpond.net.au>
8103
8104 * config.guess: Import latest version.
8105 * config.sub: Import latest version.
8106
8107 2003-02-18 Jason Merrill <jason@redhat.com>
8108
8109 * Makefile.tpl (check-c++): Allow parallelism.
8110
8111 2003-02-17 Andrew Cagney <ac131313@redhat.com>
8112
8113 * configure: Regenerate using autoconf 000227.
8114
8115 2003-02-15 Geoffrey Keating <geoffk@apple.com>
8116
8117 * configure.in (*-*-darwin*): Rename from powerpc*-*-darwin*,
8118 don't configure target-libobjc.
8119 * configure: Regenerate.
8120
8121 2003-02-14 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
8122
8123 * Makefile.tpl (RANLIB): Define.
8124 * Makefile.in: Regenerate.
8125
8126 2003-02-06 Keith R Seitz <keiths@redhat.com>
8127
8128 * Makefile.def: Remove "snavigator", "grep", and "db" modules.
8129 * Makefile.tpl: Remove "all-snavigator" and "all-grep".
8130 * Makefile.in: Regenerated.
8131 * configure.in: Remove all traces of snavigator, db, and grep.
8132 * configure: Regenerated.
8133
8134 2003-01-31 Frank Ch. Eigler <fche@redhat.com>
8135
8136 * Makefile.tpl (all-sid): Add libiberty/bfd/opcodes dependencies.
8137 * Makefile.in: Regenerated.
8138
8139 2003-01-30 Alexandre Oliva <aoliva@redhat.com>
8140
8141 * config.if: Copy from GCC.
8142
8143 2003-01-27 Phil Edwards <pme@gcc.gnu.org>
8144
8145 * configure.in: Revert 24Jan change.
8146 * configure: Regenerate.
8147
8148 2003-01-23 Nathanael Nerode <neroden@gcc.gnu.org>
8149
8150 * configure.in: Revert previous change.
8151 * configure: Regenerate.
8152
8153 2003-01-23 Nathanael Nerode <neroden@gcc.gnu.org>
8154
8155 * configure.in: Make rda native-only.
8156 * configure: Regenerate.
8157
8158 2003-01-19 Nathanael Nerode <neroden@gcc.gnu.org>
8159
8160 * configure.in: Add missing \.
8161 * configure: Rebuilt.
8162
8163 2003-01-17 Jakub Jelinek <jakub@redhat.com>
8164
8165 * configure.in (baseargs): Avoid using \| in sed regular
8166 expressions.
8167 * configure: Rebuilt.
8168
8169 2003-01-16 Jakub Jelinek <jakub@redhat.com>
8170
8171 * configure.in (baseargs): Remove all supported forms of
8172 --cache-file, --srcdir, --host, --build and --target options
8173 from argument lists.
8174 * configure: Rebuilt.
8175
8176 2003-01-15 Alexandre Oliva <aoliva@redhat.com>
8177
8178 * configure.in (noconfigdirs): Don't skip gas on IRIX 6.
8179 * configure: Rebuilt.
8180
8181 2003-01-09 Nathanael Nerode <neroden@gcc.gnu.org>
8182
8183 * configure.in: Substitute TOPLEVEL_CONFIGURE_ARGUMENTS.
8184 * Makefile.tpl: Pass TOPLEVEL_CONFIGURE_ARGUMENTS to gcc.
8185 * Makefile.in: Regenerate.
8186 * configure: Regenerate.
8187
8188 2003-01-09 Christian Cornelssen <ccorn@cs.tu-berlin.de>
8189
8190 * Makefile.tpl (BASE_FLAGS_TO_PASS): Also pass DESTDIR.
8191 (install-info, dir.info): Prepend $(DESTDIR) to $(infodir).
8192 * Makefile.in: Regenerate.
8193
8194 2003-01-09 Alexandre Oliva <aoliva@redhat.com>
8195
8196 * configure.in: Remove Makefile in build, host and target modules
8197 unless configure was run with --no-recursion.
8198 * configure: Rebuilt.
8199
8200 2003-01-08 Chris Demetriou <cgd@broadcom.com>
8201
8202 * config.guess: Update to 2003-01-03 version.
8203 * config.sub: Update to 2003-01-03 version.
8204
8205 2003-01-07 Christopher Faylor <cgf@redhat.com>
8206
8207 * configure: Regenerate with proper autoconf 2.13.
8208
8209 2003-01-07 Christopher Faylor <cgf@redhat.com>
8210
8211 * configure.in: Add AC_PREREQ for consistency.
8212 * configure: Regenerate.
8213
8214 2003-01-06 Andrew Cagney <ac131313@redhat.com>
8215
8216 * configure.in (GDB_TK): Add tcl directories conditional on
8217 gdb/gdbtk directory being present.
8218 * configure: Regenerate.
8219
8220 2003-01-04 John David Anglin <dave.anglin@nrc.ca>
8221
8222 * configure.in (LD): Improve test for gcc. Try to set LD to the ld used
8223 by gcc if LD is not defined and we are not doing a Canadian Cross.
8224 * configure: Rebuilt.
8225
8226 2003-01-01 Daniel Jacobowitz <drow@mvista.com>
8227
8228 * src-release (ETC_SUPPORT): Add fdl.texi and texi2pod.pl.
8229
8230 2002-12-31 Tom Tromey <tromey@redhat.com>
8231
8232 * Makefile.in: Rebuilt.
8233 * Makefile.def (target_modules) [libffi]: Allow installation.
8234
8235 2002-12-31 Andreas Schwab <schwab@suse.de>
8236
8237 * configure.in: Fix use of $program_transform_name.
8238 * configure: Regenerated.
8239
8240 2002-12-30 Daniel Jacobowitz <drow@mvista.com>
8241
8242 * configure.in (baseargs): Don't remove first configure argument.
8243 * configure: Regenerated.
8244
8245 2002-12-29 Alexandre Oliva <aoliva@redhat.com>
8246
8247 * Makefile.tpl (local-distclean): Don't remove...
8248 (multilib.ts): ... this. Moved into...
8249 (multilib.out): ... this. Don't use sub-make.
8250 ($(BUILD_SUBDIR)/[+module+]/Makefile, [+module+]/Makefile,
8251 $(TARGET_SUBDIR)/[+module+]/Makefile, gcc/Makefile): Moved into...
8252 (configure-build-[+module+], configure-[+module+],
8253 configure-target-[+module+], configure-gcc): ... these. Test
8254 for Makefile existence. Drop config.status from dependencies.
8255 * Makefile.in: Rebuilt.
8256 * configure.in: Move gcc-version-trigger to the end of
8257 ac_configure_args. Add comments to maybedep.tmp and
8258 serdep.tmp. Introduce --disable-serial-configure. Remove
8259 nonopt from baseargs, matching and removing corresponding
8260 whitespace while at it.
8261 * configure: Rebuilt.
8262
8263 2002-12-28 Alexandre Oliva <aoliva@redhat.com>
8264
8265 * configure.in (host_configargs): Replace reference to
8266 no-longer-defined buildopts with --build=${build_alias}.
8267 * configure: Rebuilt.
8268
8269 2002-12-28 Alexandre Oliva <aoliva@redhat.com>
8270
8271 * Makefile.tpl ($(NOTPARALLEL)): Move to the end. Bring uses of
8272 program_transform_name to standard idiom.
8273 (AUTOGEN, AUTOCONF): Define.
8274 (Makefile.in): Use $(AUTOGEN).
8275 (Makefile): Depend on config.status, and use autoconf-style rule to
8276 build it. Move original commands to...
8277 (config.status): ... this new target.
8278 (configure): Add $(srcdir). Depend on config/acx.m4. Use
8279 $(AUTOCONF).
8280 * Makefile.in: Rebuilt.
8281
8282 2002-12-28 Nathanael Nerode <neroden@gcc.gnu.org>
8283
8284 * Makefile.tpl: Fix dramatic bustage due to change in
8285 program_transform_name.
8286 * Makefile.in: Regenerate.
8287
8288 * configure.in: Remove unnecessary PATH setting.
8289 * configure: Regnerate.
8290
8291 * configure.in: Don't default to unprefixed tools unless
8292 the native tools will work.
8293 * configure: Regenerate.
8294
8295 * configure.in: Convert to autoconf script. Blow away lots
8296 of now-redundant Makefile fragments.
8297 * configure: Generate using Autoconf.
8298 * Makefile.tpl: Rewrite to reflect autoconfiscation.
8299 * Makefile.in: Regenerate.
8300
8301 2002-12-27 Nathanael Nerode <neroden@gcc.gnu.org>
8302
8303 * configure: Remove unneeded 'export's. Make CC_FOR_TARGET,
8304 CXX_FOR_TARGET, GCJ_FOR_TARGET substituted in configure.in only.
8305
8306 * ChangeLog: Move a couple of entries from here to winsup/cygwin,
8307 where they belong.
8308
8309 2002-12-24 Andreas Schwab <schwab@suse.de>
8310
8311 * Makefile.tpl (multilib.out): Fix missing space.
8312 * Makefile.in: Regenerate.
8313
8314 2002-12-23 Nathanael Nerode <neroden@gcc.gnu.org>
8315
8316 * Makefile.tpl: Use shared multilib.out. Use move-if-change for it.
8317 Convert (cd foo; make) to (cd foo && make). Clean up multilib.out.
8318 * Makefile.in: Regenerate.
8319 * configure.in: Remove unnecessary leftovers.
8320
8321 2002-12-21 Geoffrey Keating <geoffk@apple.com>
8322
8323 * configure.in (extra_ranlibflags_for_target): New variable.
8324 (*-*-darwin): Add -c to ranlib commands.
8325 * configure (tooldir): Handle extra_ranlibflags_for_target.
8326
8327 2002-12-20 Jeff Johnston <jjohnstn@redhat.com>
8328
8329 * COPYING.NEWLIB: Updated.
8330 * COPYING.LIBGLOSS: Ditto.
8331
8332 2002-12-19 Nathanael Nerode <neroden@gcc.gnu.org>
8333
8334 * Makefile.tpl: Revert HJL's change.
8335 * Makefile.in: Regenerated.
8336 * configure.in: Put build_prefix before $(BUILD_SUBDIR) here, and
8337 always.
8338
8339 2002-12-19 Andreas Schwab <schwab@suse.de>
8340
8341 * Makefile.tpl, configure.in: Substitute libstdcxx_incdir.
8342 * Makefile.in: Regenerate.
8343
8344 2002-12-18 H.J. Lu <hjl@gnu.org>
8345
8346 * Makefile.tpl: Add @build_prefix@ before $(BUILD_SUBDIR).
8347 * Makefile.in: Regenerated.
8348
8349 * configure.in (build_prefix): New. Substitute.
8350
8351 2002-12-18 Nathanael Nerode <neroden@gcc.gnu.org>
8352
8353 * Makefile.tpl: Don't let real targets depend on phony targets.
8354 * Makefile.in: Regenerate.
8355
8356 * Makefile.tpl (do-info): Depend on maybe-all-texinfo, not all-texinfo.
8357 * Makefile.in: Regenerate.
8358
8359 2002-12-16 Jason Merrill <jason@redhat.com>
8360
8361 * Makefile.tpl (all-gcc): Use 'make quickstrap' if there was a
8362 previous 'make bootstrap'.
8363 * Makefile.in: Regenerate.
8364
8365 2002-12-17 Hans-Peter Nilsson <hp@bitrange.com>
8366
8367 * configure.in (noconfigdirs) [mmix-*-*]: Disable libgloss and gdb.
8368
8369 2002-12-13 Jason Merrill <jason@redhat.com>
8370
8371 * Makefile.tpl (check-gcc-c++): Renamed from check-c++. Don't run
8372 library tests.
8373 (check-c++): Just depend on it and check-target-libstdc++-v3.
8374 * Makefile.in: Regenerate.
8375
8376 2002-12-13 Nathanael Nerode <neroden@gcc.gnu.org>
8377
8378 * configure.in, Makefile.tpl, Makefile.def: Remove tclX.
8379 * Makefile.in: Regenerate.
8380
8381 2002-12-12 Jeff Johnston <jjohnstn@redhat.com>
8382
8383 * COPYING.NEWLIB: Update list of alternate Regent of California
8384 licenses and discuss official revoking of advertising clause.
8385 * COPYING.LIBGLOSS: Ditto.
8386
8387 2002-12-12 Alexandre Oliva <aoliva@redhat.com>
8388
8389 * Makefile.tpl (configure-target-rda): Depend on $(ALL_GCC_C).
8390 * Makefile.in: Rebuilt.
8391
8392 2002-12-10 Nathanael Nerode <neroden@gcc.gnu.org>
8393
8394 * configure: Fix bug put in by gremlins.
8395
8396 * Makefile.tpl: Substitute more autoconfily.
8397 * configure: Substitute more autoconfily.
8398 * Makefile.in: Regenerate.
8399
8400 2002-12-08 Andrew Cagney <ac131313@redhat.com>
8401
8402 * Makefile.tpl (all-sim): Depend on maybe-configure-gdb.
8403 * Makefile.in (all-sim): Ditto.
8404
8405 2002-12-06 DJ Delorie <dj@redhat.com>
8406
8407 * Makefile.tpl: Change configure dependencies to not have real
8408 targets depend on phony targets.
8409
8410 2002-12-05 Nathanael Nerode <neroden@gcc.gnu.org>
8411
8412 * configure.in: Revert unintentional change.
8413
8414 * src-release: Configure host subdirs.
8415
8416 * Makefile.tpl: Change dependency for */multilib.out so that
8417 it works when gcc isn't in the tree.
8418
8419 * configure.in: Substitute more.
8420 * configure: Run subconfigures from the Makefile.
8421 * Makefile.tpl: Run subconfigures from the Makefile; add a few
8422 convenience targets. Make sure gcc isn't rebuilt after bootstrap.
8423
8424 2002-12-03 Nathanael Nerode <neroden@gcc.gnu.org>
8425
8426 * Makefile.tpl: Add targets for configuring host subdirs in Makefile,
8427 and corresponding dependencies.
8428 * Makefile.in: Regenerate.
8429
8430 * configure.in (host_tools): Order binutils, gas and ld for
8431 convenience in running the testsuites.
8432
8433 * Makefile.tpl: Introduce rules to serialize subconfigure runs.
8434 * Makefile.in: Regenerate.
8435 * configure.in: Introduce rules to serialize subconfigure runs.
8436
8437 * configure.in: Introduce BASE_CC_FOR_TARGET.
8438 * Makefile.tpl: Reorganize and comment. Introduce HOST_CONFIGARGS.
8439 Realize configure-build-* targets. Realize configure-target-* targets.
8440 * Makefile.in: Regenerate.
8441
8442 2002-12-02 Nathanael Nerode <neroden@gcc.gnu.org>
8443
8444 * configure: Move gcc_version_trigger stuff from here...
8445 * configure.in: ...to here.
8446
8447 * configure.in: Separate subconfigure options added by this file from
8448 options given by the user. Add machinery to put args for host
8449 subconfigures into the Makefile.
8450
8451 * Makefile.tpl: Remove 'vault' targets.
8452 * Makefile.tpl: Reorder and comment dependencies.
8453 * Makefile.in: Regenerate.
8454
8455 2002-11-28 Geoffrey Keating <geoffk@apple.com>
8456
8457 * configure.in: Move host-specific darwin noconfigdirs into
8458 the host-specific section.
8459
8460 2002-12-02 Nathanael Nerode <neroden@gcc.gnu.org>
8461
8462 * Makefile.tpl: Restore bkorb's style patch, accidentally lost
8463 during replay.
8464 * Makefile.in: Regenerate.
8465
8466 (finishing slow-motion replay)
8467 * configure: Remove skip-this-dir support.
8468 * Makefile.tpl: Remove skip-this-dir support.
8469
8470 * Makefile.tpl: Remove leftover support for non-autoconfiscated
8471 subdirectories.
8472 * Makefile.in: Regenerate.
8473
8474 * Makefile.tpl: Strip out useless setting of 'dir'.
8475 * Makefile.in: Regenerate.
8476
8477 2002-12-02 Nathanael Nerode <neroden@gcc.gnu.org>
8478
8479 (finishing slow-motion replay)
8480 * configure.in: Fix deeply stupid bug.
8481
8482 * configure.in: Introduce RAW_CXX_FOR_TARGET and simplify embedded
8483 shell code in CXX_FOR_TARGET
8484 * Makefile.def: Introduce raw_cxx.
8485 * Makefile.tpl: Use raw_cxx to select between CXX_FOR_TARGET and
8486 RAW_CXX_FOR_TARGET.
8487 * Makefile.in: Regenerate.
8488
8489 2002-12-02 Nathanael Nerode <neroden@gcc.gnu.org>
8490
8491 (finishing slow-motion replay)
8492 * Makefile.tpl: Remove unnecessary ifs.
8493 * Makefile.in: Regenerate.
8494
8495 * Makefile.tpl: Implement soft dependency machinery. Maybe-ize
8496 dependencies. Maybe-ize build-libiberty. Create dummy install
8497 targets for 'no_install' modules.
8498 * configure: Move GDB_TK substitution to configure.in. Move
8499 build_modules stuff to configure.in.
8500 * configure.in: Implement soft dependency machinery. Maybe-ize
8501 GDB_TK, rearrange slightly. Move build_modules stuff from configure.
8502 * Makefile.in: Regenerate.
8503
8504 2002-12-01 Nathanael Nerode <neroden@gcc.gnu.org>
8505
8506 (continuing slow-motion replay)
8507 * Makefile.tpl: Make all-target, install-target behave similarly
8508 to all, install (only hitting configured targets). Eliminate
8509 unused macro defintions.
8510
8511 * Makefile.tpl: Add all-gcc: all-build-libiberty dependency when
8512 build != host.
8513
8514 * Makefile.tpl: Add all-gcc: all-libiberty dependency.
8515
8516 * ltcf-c.sh, ltcf-gcj.sh, Makefile.tpl: Correct BUILD/HOST confusion.
8517
8518 * configure.in: Produce lists of subdir targets we're actually
8519 configuring. Remove references to "dosrel".
8520 * Makefile.tpl: Let configure set which subdir targets are hit.
8521 Remove install-cross; clean up install; remove ALL. Remove
8522 references to "dosrel". Remove "EXTRA_TARGET_HOST" hackery.
8523 Autogenerate host module targets. Remove empty dependency lines
8524 and redundant dependency; rearrange slightly.
8525 * Makefile.def: Add host-side libtermcap, utils.
8526
8527 * Makefile.in: Regenerate.
8528
8529 2002-12-01 Nathanael Nerode <neroden@gcc.gnu.org>
8530
8531 (Continuing slow-motion replay)
8532 * Makefile.def: Add list of recursive targets to autogenerate.
8533 Add build_modules.
8534 * Makefile.tpl: Autogenerate do-* targets. Autogenerate *-target-*
8535 targets. Autogenerate *-build-* targets.
8536 * Makefile.in: Regenerate.
8537
8538 2002-11-30 Nathanael Nerode <neroden@gcc.gnu.org>
8539
8540 (Continuing slow-motion replay)
8541 * configure: More autoconf-style substitutions.
8542 * Makefile.tpl: More autoconf-style substitutions.
8543 * Makefile.in: Regenerate.
8544
8545 2002-11-30 Nathanael Nerode <neroden@gcc.gnu.org>
8546
8547 (Continuing slow-motion replay)
8548 * configure: Substitute more variables in a more autoconf-friendly
8549 way. Simplify slightly.
8550 * Makefile.tpl: Make more variables substitutable in an
8551 autoconf-friendly way.
8552 * Makefile.in: Regenerate.
8553
8554 2002-11-29 Nathanael Nerode <neroden@gcc.gnu.org>
8555
8556 (Continuing slow-motion replay)
8557 * configure.in (v810*): Remove special setting of tools.
8558
8559 * configure: Add support for extra required flags for ar or nm.
8560 * configure.in (aix4.3+): Use above support for target-specific
8561 issues, rather than using config/mt-aix43.
8562
8563 2002-11-29 Nathanael Nerode <neroden@gcc.gnu.org>
8564
8565 (Starting slow-motion replay merge from gcc 3.4 b-i-b branch)
8566 * configure: Remove 'removing', which doesn't work. Replace $subdir
8567 with . everywhere. Replace $subdirs with ''. Replace $makesrcdir
8568 with $srcdir. Reformat indentation. Substitute some variables
8569 formerly hard-coded in the Makefile for build=host.
8570 * Makefile.tpl: Autogenerate more; make more autoconf-friendly.
8571 * Makefile.def: Autogenerate more.
8572 * Makefile.in: Regenerate.
8573
8574 2002-11-13 Bruce Korb <bkorb@gnu.org>
8575
8576 * Makefile.tpl: syntactic cleanup
8577
8578 2002-11-04 Kevin Buettner <kevinb@redhat.com>
8579
8580 * Makefile.def (host_modules): Add rda.
8581 * Makefile.in: Regenerate.
8582 * configure.in (target_tool): Add target-rda to list.
8583
8584 2002-10-25 Phil Edwards <pme@gcc.gnu.org>
8585
8586 * Makefile.tpl (bootstrap): Add bubblestrap, quickstrap, cleanstrap,
8587 and restrap targets to this rule.
8588 * Makefile.in: Regenerate.
8589
8590 2002-10-24 Hans-Peter Nilsson <hp@bitrange.com>
8591
8592 * configure.in (i[3456]86-*-linux*): Add check to disable
8593 ${libgcj} for glibc1.
8594
8595 2002-10-07 Svein E. Seldal <Svein.Seldal@solidas.com>
8596
8597 * configure.in: Add tic4x target.
8598
8599 2002-10-03 Nathanael Nerode <neroden@gcc.gnu.org>
8600
8601 * Makefile.tpl: Make SET_LIB_PATH substitution more autoconfy.
8602 * Makefile.tpl: Make RPATH_ENVVAR substitution more autoconfy.
8603 * configure.in: Make SET_LIB_PATH substitution more autoconfy.
8604 * configure.in: Make RPATH_ENVVAR substitution more autoconfy.
8605 * Makefile.in: Regenerate.
8606
8607 2002-10-02 Nathanael Nerode <neroden@gcc.gnu.org>
8608
8609 * Makefile.tpl: Eliminate reference to all-gui, all-libproc.
8610 * Makefile.in: Regenerate.
8611
8612 * Makefile.def: Remove order dependency comments.
8613 * Makefile.tpl: Add explicit install-install dependencies.
8614 * Makefile.in: Regenerate.
8615
8616 * Makefile.tpl: Remove material now in src-release. (Finally!)
8617 * Makefile.in: Regenerate.
8618
8619 * configure: Restore my original patch by syncing with gcc version.
8620
8621 * Bring following over from gcc:
8622
8623 2002-09-30 Ulrich Weigand <uweigand@de.ibm.com>
8624
8625 * configure.in (s390*-*-linux*): Enable libgcj.
8626
8627 2002-10-02 Nathanael Nerode <neroden@gcc.gnu.org>
8628
8629 * Makefile.in: Regenerate. This really ought to fix things. :sigh:
8630
8631 2002-10-02 Alan Modra <amodra@bigpond.net.au>
8632
8633 * configure: Move stray lines back to where they belong.
8634
8635 2002-10-01 Nathanael Nerode <neroden@gcc.gnu.org>
8636
8637 * Makefile.tpl: Insert configure-target target, for src-release.
8638
8639 * configure: Finish reverting change which Andrew Cagney started
8640 reverting. Should fix bustage.
8641
8642 * src-release (BINUTILS_SUPPORT_DIRS): Add cpu directory.
8643 * src-release: New file. Contains material for making net
8644 releases for gdb, binutils, et al., formerly in Makefile.in.
8645
8646 2002-09-30 Nick Clifton <nickc@redhat.com>
8647
8648 * cpu: New top level directory. Intended to hold input files for
8649 CGEN which have FSF copyright assignment.
8650 * Makefile.in (BINUTILS_SUPPORT_DIRS): Add cpu directory.
8651
8652 2002-09-29 Andrew Cagney <ac131313@redhat.com>
8653
8654 Revert below (note that src does not contain Makefile.tpl):
8655 * Makefile.tpl: Make subsituted variables more autoconfy.
8656 * Makefile.in: Regenerate.
8657
8658 2002-09-29 Nathanael Nerode <neroden@gcc.gnu.org>
8659
8660 * configure: Revert accidentally applied changes.
8661
8662 * Makefile.tpl: Make more autoconf-friendly.
8663 * Makefile.in: Regenerate.
8664 * configure: Make substitution more autoconf-like.
8665
8666 2002-09-28 Richard Earnshaw <rearnsha@arm.com>
8667
8668 * configure.in (arm-*-coff, strongarm-*-coff, xscale-*-coff): Use a
8669 single entry to handle all these.
8670 (arm-*-elf, strongarm-*-elf, xscale-*-elf): Likewise. Also enable
8671 libjava on arm-*-elf.
8672
8673 2002-09-27 Geoffrey Keating <geoffk@apple.com>
8674
8675 * configure.in (powerpc-*-darwin*): Don't configure BFD, TK, or the
8676 things that depend on them.
8677
8678 2002-09-25 Nathanael Nerode <neroden@gcc.gnu.org>
8679
8680 * Makefile.tpl: Make subsituted variables more autoconfy.
8681 * Makefile.in: Regenerate.
8682 * configure: Make seds more autoconfy.
8683
8684 2002-09-25 Nathanael Nerode <neroden@gcc.gnu.org>
8685
8686 * Makefile.tpl: Rewrite substituted lines to look autoconfy.
8687 * Makefile.in: Regenerate.
8688 * configure.in: Rewrite sed statements to look autoconfy.
8689
8690 * Makefile.tpl: Autogenerate *-target-* lists, dependencies of
8691 all-target-foo on configure-target-foo.
8692 * Makefile.def: Ditto.
8693 * Makefile.in: Rebuild.
8694
8695 2002-09-22 Nathanael Nerode <neroden@gcc.gnu.org>
8696
8697 * Makefile.def: New file.
8698 * Makefile.tpl: New file.
8699 * Makefile.in: Generate from Makefile.tpl with 'autogen Makefile.def'.
8700
8701 * configure.in: Minor rearrangement. Simplify tests.
8702
8703 2002-09-23 Jason Thorpe <thorpej@wasabisystems.com>
8704
8705 * configure.in (with_headers): Skip copy if value is "yes".
8706 (with_libs): Likewise.
8707
8708 2002-09-20 Nathanael Nerode <neroden@gcc.gnu.org>
8709
8710 * configure.in (*-*-netbsd*): Use noconfigdirs, not skipdirs.
8711 * configure.in (sh*-*-pe*): Ditto.
8712 * configure.in (mips*-*-pe*): Ditto.
8713 * configure.in (*arm-wince-pe): Ditto.
8714
8715 * configure.in: Rearrange.
8716
8717 2002-09-12 Nick Clifton <nickc@redhat.com>
8718
8719 * Import these changes from the config master repository:
8720
8721 2002-09-05 Svein E. Seldal <Svein.Seldal@solidas.com>
8722
8723 * config.sub: Add tic4x target.
8724
8725 2002-09-03 Ben Elliston <bje@redhat.com>
8726
8727 * config.guess: Detect NSR-D machines for nsr-tandem-nsk.
8728 Reported by <Duncan_Stodart@insession.com>.
8729
8730 2002-09-10 Jeff Johnston <jjohnstn@redhat.com>
8731
8732 * COPYING.NEWLIB: More updates.
8733
8734 2002-09-09 Jeff Johnston <jjohnstn@redhat.com>
8735
8736 * COPYING.NEWLIB: Update.
8737
8738 2002-08-23 Andrew Cagney <ac131313@redhat.com>
8739
8740 * texinfo/texinfo.tex: Import version 2002-06-04.06.
8741
8742 * config.guess: Import version 2002-08-23.
8743 * config.sub: Import version 2002-08-22.
8744
8745 2002-08-20 Alexandre Oliva <aoliva@redhat.com>
8746
8747 * Makefile.in (GCC_FOR_TARGET): Prepend STAGE_CC_WRAPPER.
8748 * configure.in (CC_FOR_TARGET, GCJ_FOR_TARGET, CXX_FOR_TARGET,
8749 CXX_FOR_TARGET_FOR_RECURSIVE_MAKE): Likewise.
8750
8751 2002-08-06 Federico G. Schwindt <fgsch@olimpo.com.br>
8752
8753 * configure.in (hppa*-*-openbsd*): Treat like hppa*-*-*elf*.
8754
8755 2002-08-04 H.J. Lu (hjl@gnu.org)
8756
8757 * configure.in (mips*-*-linux*): Don't skip target-libffi.
8758
8759 2002-07-31 Alan Modra <amodra@bigpond.net.au>
8760
8761 * configure.in: Move generic linux case to end. Copy generic
8762 linux noconfigdirs to mips*-*-linux* entry and new
8763 powerpc64*-*-linux* entry. Add target-libffi for the latter.
8764
8765 2002-07-19 Chris Demetriou <cgd@broadcom.com>
8766
8767 * MAINTAINERS: Clarify on config.guess and config.sub, and add
8768 one instance of them which was missed to the list to update.
8769
8770 2002-07-16 Chris Demetriou <cgd@broadcom.com>
8771
8772 * config.guess: Update to 2002-07-09 version.
8773 * config.sub: Update to 2002-07-03 version.
8774
8775 2002-07-11 Nathanael Nerode <neroden@gcc.gnu.org>
8776
8777 * configure.in: Remove two redundant tests.
8778
8779 2002-07-11 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
8780
8781 * configure.in (mips*-*-irix6*o32): Enable stabs.
8782
8783 2002-07-08 Nathanael Nerode <neroden@gcc.gnu.org>
8784
8785 * configure.in: Don't build grez.
8786 * Makefile.in: Ditto.
8787
8788 * Makefile.in: Remove references to bsp, cygmon, libstub.
8789 * configure.in: Ditto.
8790
8791 * configure.in: Remove leftover reference to gdbtest.
8792
8793 2002-07-08 Phil Edwards <pme@gcc.gnu.org>
8794
8795 * configure.in (gxx_include_dir): Change to match versioned
8796 C++ headers if --enable-version-specific-runtime-libs is used.
8797
8798 2002-07-04 Steve Ellcey <sje@cup.hp.com>
8799
8800 * ltcf-cxx.sh (hpux*): Modify to support ia64-*-hpux*.
8801
8802 2002-07-03 Nathanael Nerode <neroden@gcc.gnu.org>
8803
8804 * configure.in: Make --without-x work.
8805
8806 2002-07-03 Nick Clifton <nickc@cambridge.redhat.com>
8807
8808 * contrib: New directory. Created to contain a copy of the
8809 texi2pod.pl script so that it is in the same place as the version in
8810 the FSF GCC sources.
8811
8812 2002-07-02 Nathanael Nerode <neroden@gcc.gnu.org>
8813
8814 * configure.in: Rearrange target Makefile fragment collection.
8815
8816 * Makefile.in: Don't try to build gdbtest, tgas, ispell, inet, or
8817 cvs[src].
8818 * configure.in: Ditto.
8819
8820 2002-07-01 Nathanael Nerode <neroden@gcc.gnu.org>
8821
8822 * Makefile.in: Eliminate 'apache' targets.
8823 * configure.in: Eliminate 'apache' targets.
8824
8825 * configure.in: Eliminate redundant tests. Reorganize.
8826
8827 * Makefile.in: Eliminate last reference to LIBGCC1_TEST.
8828
8829 * config-ml.in: Eliminate references to Cygnus configure.
8830
8831 * Makefile.in: Eliminate references to building emacs.
8832
8833 2002-07-01 Denis Chertykov <denisc@overta.ru>
8834
8835 * configure.in: Add support for ip2k.
8836
8837 2002-06-24 Ben Elliston <bje@redhat.com>
8838
8839 * configure.in (host_tools): Remove cgen.
8840
8841 * Makefile.in (all-cgen): Remove; runs from its source directory.
8842 (check-cgen, install-cgen, clean-cgen): Likewise.
8843 (all-opcodes): No not depend on all-cgen.
8844 (all-sim): Likewise.
8845
8846 2002-06-22 Nathanael Nerode <neroden@twcny.rr.com>
8847
8848 * configure.in: Fix AIX configury bug.
8849
8850 2002-06-19 Nathanael Nerode <neroden@twcny.rr.com>
8851
8852 * configure.in: Replace ${topsrcdir} with ${srcdir}.
8853
8854 * configure.in: Move definition of libstdcxx_flags right above
8855 usage, rather than way earlier.
8856
8857 * configure.in: Pull definition of is_cross_compiler earlier.
8858
8859 * configure.in: Rearrange a little.
8860
8861 * configure.in: Remove references to librx.
8862 * Makefile.in: Remove references to librx.
8863
8864 2002-06-19 Nathanael Nerode <neroden@twcny.rr.com>
8865
8866 * configure.in: Eliminate ${gasdir} variable.
8867
8868 2002-06-18 Dave Brolley <brolley@redhat.com>
8869
8870 * configure.in: Add support for frv.
8871 * config.sub: Add support for frv.
8872
8873 2002-06-12 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
8874
8875 * Makefile.in (CFLAGS_FOR_TARGET): Add -O2.
8876
8877 2002-06-08 Jason Thorpe <thorpej@wasabisystems.com>
8878
8879 * configure.in (vax-*-netbsd*): Re-enable gas.
8880
8881 2002-05-31 Nathanael Nerode <neroden@twcny.rr.com>
8882
8883 * Makefile.in: Replace HOST_PREFIX, HOST_PREFIX_1 with BUILD_PREFIX,
8884 BUILD_PREFIX_1, to correct nomenclature.
8885 * configure: Likewise.
8886
8887 * Makefile.in: Eliminate version-specific references to tcl8.1, tk8.1.
8888 * configure.in: Eliminate version-specific references to tcl8.1, tk8.1.
8889
8890 2002-05-31 Olaf Hering <olh@suse.de>
8891
8892 * config-ml.in: Propogate DESTDIR also.
8893
8894 2002-05-29 Jason Thorpe <thorpej@wasabisystems.com>
8895
8896 * configure.in (vax-*-netbsd*): Don't build gas for this
8897 platform.
8898
8899 2002-05-28 Marek Michalkiewicz <marekm@amelek.gda.pl>
8900
8901 * configure.in (noconfigdirs): Don't compile libiberty, libstdcxx
8902 and libgcj for AVR.
8903
8904 2002-05-28 Nick Clifton <nickc@cambridge.redhat.com>
8905
8906 * config.sub: Add DLX target.
8907
8908 2002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
8909
8910 * config.guess: Update to 2002-05-22 version.
8911 * config.sub: Likewise.
8912
8913 2002-05-16 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
8914
8915 * Makefile.in: Allow for PWDCMD to override hardcoded pwd.
8916 * config-ml.in: Likewise.
8917 * configure: Likewise.
8918 * configure.in: Likewise.
8919
8920 2002-05-13 Nathanael Nerode <neroden@twcny.rr.com>
8921
8922 * configure.in: Simplify makefile fragment collection.
8923
8924 * configure.in: Remove code to build emacs.
8925
8926 * configure.in : Remove --srcdir argument from targargs and buildargs
8927 (it's always overridden in the Makefile anyway). Rearrange a bit.
8928
8929 * configure: Move some logic to configure.in.
8930 * configure.in: Move some logic from configure.
8931
8932 2002-05-07 Jeff Johnston <jjohnstn@redhat.com>
8933
8934 * COPYING.LIBGLOSS: New file.
8935
8936 2002-05-07 Federico G. Schwindt <fgsch@olimpo.com.br>
8937
8938 * Makefile.in: Honour DESTDIR.
8939
8940 2002-05-05 Alexandre Oliva <aoliva@redhat.com>
8941
8942 * configure.in (noconfigdirs): Don't disable libgcj on
8943 sparc64-*-solaris* and sparcv9-*-solaris*.
8944
8945 2002-05-03 Alexandre Oliva <aoliva@redhat.com>
8946
8947 * configure.in: Revert 2002-04-18's patch; fixed in libjava.
8948
8949 2002-05-03 Thomas Fitzsimmons <fitzsim@redhat.com>
8950
8951 * configure.in (FLAGS_FOR_TARGET): Do not add
8952 -B$$r/$(TARGET_SUBDIR)/newlib/ when compiling newlib natively
8953 on i[3456]86-*-linux*.
8954
8955 2002-05-01 Thomas Fitzsimmons <fitzsim@redhat.com>
8956
8957 * configure.in (noconfigdirs): Replace [ ] with test.
8958
8959 * configure.in (noconfigdirs): Do not add target-newlib if
8960 target == i[3456]86-*-linux*, and host == target.
8961
8962 2002-04-29 Mark Mitchell <mark@codesourcery.com>
8963
8964 * config.guess: Updated to 2002-04-26's version.
8965 * config.sub: Updated to 2002-04-26's version.
8966
8967 2002-04-29 Nathanael Nerode <neroden@doctormoo.dyndns.org>
8968
8969 * configure.in: delete reference to absent file
8970
8971 * configure.in: replace '[' with 'test'
8972
8973 * configure.in: Eliminate references to gash.
8974 * Makefile.in: Eliminate references to gash.
8975
8976 * configure.in: remove useless references to 'pic' makefile fragments.
8977
8978 * configure.in: (*-*-windows*) Finish removing.
8979
8980 * configure.in: Eliminate redundant test for libgui.
8981
8982 2002-04-26 Joel Sherrill <joel@OARcorp.com>
8983
8984 * configure.in (h8300*-*-rtems*): Disable libf2c and libgcj.
8985 (sparc-*-elf*, sparc64-*-elf*): Disable libgcj.
8986
8987 2002-04-19 Nathanael Nerode <neroden@twcny.rr.com>
8988
8989 * configure.in: remove references to dead files
8990
8991 2002-04-18 Tom Tromey <tromey@redhat.com>
8992
8993 * configure.in: Disallow configuring libgcj when it is already
8994 installed and we're using Solaris 2.8 linker. Do enable libgcj on
8995 Solaris 2.8 by default. For PR libgcj/6158.
8996
8997 2002-04-17 Nathanael Nerode <neroden@twcny.rr.com>
8998
8999 * configure.in: Move default CC setting out of config/mh-* fragments
9000 directly into here.
9001
9002 2002-04-17 Nathanael Nerode <neroden@twcny.rr.com>
9003
9004 * configure.in: don't even try to configure or make a subdirectory
9005 if there's no configure script for it.
9006
9007 2002-04-15 Mark Mitchell <mark@codesourcery.com>
9008
9009 * MAINTAINERS: Remove chill maintainers.
9010 * Makefile.in (CHILLFLAGS): Remove.
9011 (CHILL_LIB): Remove.
9012 (TARGET_CONFIGDIRS): Remove libchill.
9013 (CHILL_FOR_TARGET): Remove.
9014 (BASE_FLAGS_TO_PASS): Don't pass CHILLFLAGS, CHILL_FOR_TARGET, or
9015 CHILL_LIB.
9016 (CONFIGURE_TARGET_MODULES): Remove configure-target-libchill.
9017 (CHECK_TARGET_MODULES): Likewise.
9018 (INSTALL_TARGET_MODULES): Likewise.
9019 (CLEAN_TARGET_MODULES): Likewise.
9020 (configure-target-libchill): Remove.
9021 (all-target-libchill): Remove.
9022 * configure.in (target_libs): Remove target-libchill.
9023 Do not compute CHILL_FOR_TARGET.
9024 * libchill: Remove directory.
9025
9026 2002-04-15 DJ Delorie <dj@redhat.com>
9027
9028 * Makefile.in, configure.in, configure: Sync with gcc, entries
9029 follow...
9030
9031 2002-04-08 Tom Tromey <tromey@redhat.com>
9032
9033 * configure.in: Add FLAGS_FOR_TARGET to GCJ_FOR_TARGET.
9034 Fixes PR libgcj/6068.
9035
9036 2002-03-30 Krister Walfridsson <cato@df.lth.se>
9037
9038 * configure.in (i*86-*-netbsdelf*): Don't disable libgcj.
9039
9040 2002-03-27 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
9041
9042 * configure.in (alpha*-dec-osf*): Enable libgcj.
9043
9044 2002-03-24 Nick Clifton <nickc@cambridge.redhat.com>
9045
9046 Fix for: PR bootstrap/3591, target/5676
9047 * configure.in (mcore-pe): Disable the configuration of
9048 libstdc++-v3 since exceptions are not supported.
9049
9050 2002-03-20 Anthony Green <green@redhat.com>
9051
9052 * configure.in: Enable libgcj for xscale-elf target.
9053
9054 2002-02-28 Alexandre Oliva <aoliva@redhat.com>
9055
9056 * configure.in (libstdcxx_flags): Don't add libstdc++-v3 flags for
9057 libjava.
9058 (CXX_FOR_TARGET): Explain why -shared-libgcc here.
9059
9060 2002-02-22 Alexandre Oliva <aoliva@redhat.com>
9061
9062 * configure.in (CXX_FOR_TARGET): Add -shared-libgcc for
9063 libstdc++-v3 and libjava.
9064
9065 2002-02-11 Adam Megacz <adam@xwt.org>
9066
9067 * gcc/Makefile.in: Removed libstdc++-v3 dependancy for libjava and
9068 boehm-gc
9069
9070 2002-02-09 Alexandre Oliva <aoliva@redhat.com>
9071
9072 * config.guess: Updated to 2002-01-30's version.
9073 * config.sub: Updated to 2002-02-01's version.
9074 Contribute sh64-elf.
9075 2000-12-01 Alexandre Oliva <aoliva@redhat.com>
9076 * configure.in: Added sh64-*-*.
9077
9078 2002-01-17 H.J. Lu <hjl@gnu.org>
9079
9080 * Makefile.in (all-fastjar): Also depend on all-libiberty.
9081 (all-target-fastjar): Also depend on all-target-libiberty.
9082
9083 Wed Dec 5 07:33:45 2001 Douglas B. Rupp <rupp@gnat.com>
9084
9085 * configure, configure.in: Use temp file for long sed commands.
9086
9087 2001-11-14 Hans-Peter Nilsson <hp@bitrange.com>
9088
9089 * configure.in (noconfigdirs) [h8300*-*-*, h8500-*-*]: Disable
9090 libf2c.
9091
9092 2001-11-03 Hans-Peter Nilsson <hp@bitrange.com>
9093
9094 * configure.in (noconfigdirs) [mmix-*-*]: Disable libgcj.
9095
9096 2001-10-11 Hans-Peter Nilsson <hp@axis.com>
9097
9098 * configure.in (noconfigdirs) [cris-*-*]: Disable libgcj.
9099
9100 2001-10-02 Joseph S. Myers <jsm28@cam.ac.uk>
9101
9102 * configure: Handle temporary files securely using mkdir.
9103
9104 2001-09-26 Will Cohen <wcohen@redhat.com>
9105
9106 * configure.in (*-*-linux*): Disable configuration of target-newlib
9107 and target-libgloss.
9108
9109 2001-09-26 Alexandre Oliva <aoliva@redhat.com>
9110
9111 * Makefile.in (EXTRA_TARGET_FLAGS): Pass RANLIB_FOR_TARGET for
9112 RANLIB.
9113
9114 2001-08-11 Graham Stott <grahams@redhat.com>
9115
9116 * Makefile.in (check-c++): Add missing semicolon.
9117
9118 2001-07-25 Andrew Haley <aph@cambridge.redhat.com>
9119
9120 * configure.in (sh-*-linux*): New.
9121
9122 2001-07-12 Stephane Carrez <Stephane.Carrez@worldnet.fr>
9123
9124 * configure.in (noconfigdirs): Don't compile libiberty, libstdcxx
9125 and libgcj on m68hc11/m68hc12.
9126
9127 2001-06-27 H.J. Lu (hjl@gnu.org)
9128
9129 * Makefile (CFLAGS_FOR_BUILD): New.
9130 (EXTRA_GCC_FLAGS): Add CFLAGS_FOR_BUILD.
9131
9132 2001-06-01 Hans-Peter Nilsson <hp@axis.com>
9133
9134 * configure.in (libstdcxx_flags): Do not try to execute
9135 libstdc++-v3/testsuite_flags until it exists.
9136
9137 2001-05-18 Benjamin Kosnik <bkoz@redhat.com>
9138
9139 * configure.in (libstdcxx_flags): Remove reference to libstdc++.INC.
9140
9141 2001-05-09 Jeffrey Oldham <oldham@codesourcery.com>
9142
9143 * ltcf-cxx.sh: Add -nostdlib to IRIX 6 archive_cmds.
9144
9145 Mon Apr 23 09:15:03 2001 Anthony Green <green@redhat.com>
9146
9147 * configure.in: Move *-chorusos target case to the proper switch.
9148 Disable libgcj.
9149
9150 2001-04-13 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
9151
9152 * Makefile.in (STAGE1_CFLAGS): Pass down.
9153
9154 2001-04-13 Alan Modra <amodra@one.net.au>
9155
9156 * config.guess: Add hppa64-linux support. Note for next import that
9157 this is already in the master file.
9158 * configure.in: Likewise. Accept `parisc' alias for `hppa'.
9159
9160 2001-03-22 Colin Howell <chowell@redhat.com>
9161
9162 * Makefile.in (DO_X): Do not backslash single-quotes in
9163 backquotes (two places).
9164
9165 2001-03-18 Laurynas Biveinis <lauras@softhome.net>
9166
9167 * Makefile.in (DO_X): Quote nested quotes.
9168
9169 2001-03-15 Laurynas Biveinis <lauras@softhome.net>
9170
9171 * Makefile.in (DO_X): Use double quotes for quoting
9172 "RANLIB=$${RANLIB}".
9173
9174 2001-03-09 Nicola Pero <n.pero@mi.flashnet.it>
9175
9176 * configure.in: Only use `lang_requires' for languages athat are
9177 actually enabled.
9178
9179 2001-03-07 Tom Tromey <tromey@redhat.com>
9180
9181 * configure.in: Allow config-lang.in to set `lang_requires' to list
9182 of other required languages.
9183
9184 2001-03-06 Laurynas Biveinis <lauras@softhome.net>
9185
9186 * Makefile.in: Remove RANLIB definition. Use RANLIB
9187 in RANLIB_FOR_TARGET, EXTRA_HOST_FLAGS, EXTRA_TARGET_FLAGS,
9188 EXTRA_GCC_FLAGS, $(DO_X) targets only when the RANLIB is set.
9189
9190 2001-02-28 Benjamin Kosnik <bkoz@redhat.com>
9191 Alexandre Oliva <aoliva@redhat.com>
9192
9193 * Makefile.in (check-c++): Use tabs, not spaces.
9194
9195 2001-02-19 Benjamin Kosnik <bkoz@redhat.com>
9196
9197 * Makefile.in (check-c++): New rule.
9198
9199 * configure.in (target_libs): Remove libg++.
9200 (noconfigdirs): Remove libg++.
9201 (noconfigdirs): Same.
9202 (noconfigdirs): Same.
9203 (noconfigdirs): Same.
9204
9205 * config-ml.in: Remove libg++ references.
9206
9207 * Makefile.in (TARGET_CONFIGDIRS): Remove libio, libstdc++, libg++.
9208 (ALL_TARGET_MODULES): Same.
9209 (configure-target-libg++): Remove.
9210 (all-target-libg++): Remove.
9211 (configure-target-libio): Remove.
9212 (all-target-libio): Remove.
9213 (check-target-libio): Remove.
9214 (.PHONY): Remove.
9215 (libg++.tar.bz2): Remove.
9216 (all-target-cygmon): Remove libio.
9217 (all-target-libstdc++): Remove.
9218 (configure-target-libstdc++): Remove.
9219 (TARGET_LIB_PATH): Remove libstdc++.
9220 (ALL_GCC_CXX): Remove libstdc++.
9221 (all-target-gperf): Correct.
9222
9223 2001-02-15 Anthony Green <green@redhat.com>
9224
9225 * configure: Introduce GCJ_FOR_TARGET.
9226 * configure.in: Ditto.
9227 * Makefile.in: Ditto.
9228
9229 2001-02-08 Chandrakala Chavva <cchavva@redhat.com>
9230
9231 * configure.in: for *-chorusos, don't config target-newlib and
9232 target-libgloss.
9233
9234 2001-02-04 Mark Mitchell <mark@codesourcery.com>
9235
9236 Remove V2 C++ library.
9237 * configure.in: Remove --enable-libstdcxx_v3 support.
9238
9239 2001-01-27 Richard Henderson <rth@redhat.com>
9240
9241 * configure.in (target_makefile_frag) [alpha*-*]: Use mt-alphaieee.
9242
9243 2001-01-26 Tom Tromey <tromey@redhat.com>
9244
9245 * configure.in: Allow libgcj to be built on Sparc Solaris.
9246
9247 2001-01-23 Bryce McKinlay <bryce@albatross.co.nz>
9248
9249 * configure.in: Enable libgcj on several additional platforms.
9250
9251 2001-01-22 Bryce McKinlay <bryce@albatross.co.nz>
9252
9253 * configure.in: Enable libgcj for linux targets.
9254
9255 2001-01-09 Mike Stump <mrs@wrs.com>
9256
9257 * Makefile.in (CONFIGURE_TARGET_MODULES): Pass back configuration
9258 failures of subdirectories.
9259
9260 2001-01-02 Laurynas Biveinis <lauras@softhome.net>
9261
9262 * configure: handle DOS-style absolute paths.
9263
9264 2001-01-02 Laurynas Biveinis <lauras@softhome.net>
9265
9266 * configure.in: remove supported directories from $noconfigdirs for DJGPP.
9267
9268 2000-12-18 Benjamin Kosnik <bkoz@redhat.com>
9269
9270 * Makefile.in (BASE_FLAGS_TO_PASS): Alphabetize.
9271 (libstdcxx_incdir): Pass down.
9272 * config.if: Remove expired bits for cxx_interface, add stub.
9273 (libstdcxx_incdir): Add variable for g++ include directory.
9274 * configure.in (gxx_include_dir): Use it.
9275
9276 2000-12-15 Andreas Jaeger <aj@suse.de>
9277
9278 * configure.in: Handle lang_dirs.
9279
9280 2000-12-13 Anthony Green <green@redhat.com>
9281
9282 * configure.in: Disable libgcj for any target not specifically
9283 listed. Disable libgcj for x86 and Alpha Linux until compatible
9284 with g++ abi.
9285
9286 2000-12-13 Mike Stump <mrs@wrs.com>
9287
9288 * Makefile.in (local-distclean): Also remove fastjar.
9289
9290 2000-12-10 Anthony Green <green@redhat.com>
9291
9292 * configure.in: Define libgcj. Disable libgcj target libraries for
9293 most targets.
9294
9295 2000-12-09 Alexandre Petit-Bianco <apbianco@cygnus.com>
9296
9297 * configure.in (target_libs): Revert 2000-12-08 patch.
9298 (noconfigdirs): Added target-libjava.
9299
9300 2000-12-09 Laurynas Biveinis <lauras@softhome.net>
9301
9302 * Makefile.in: handle DOS-style absolute paths.
9303
9304 2000-12-08 Alexandre Petit-Bianco <apbianco@cygnus.com>
9305
9306 * Makefile.in (TARGET_CONFIGDIRS): Wrong place. Removed note about
9307 libjava.
9308 * configure.in (target_libs): Removed `target-libjava'.
9309
9310 2000-12-08 Alexandre Petit-Bianco <apbianco@cygnus.com>
9311
9312 * Makefile.in (TARGET_CONFIGDIRS): Added note about libjava.
9313 (ALL_MODULES): Added fastjar.
9314 (NATIVE_CHECK_MODULES, INSTALL_MODULES, CLEAN_MODULES): Likewise.
9315 (all-target-libjava): all-fastjar replaces all-zip.
9316 (all-fastjar): Added.
9317 (configure-target-fastjar, all-target-fastjar): Likewise.
9318 * configure.in (host_tools): Added fastjar.
9319
9320 2000-12-07 Mike Stump <mrs@wrs.com>
9321
9322 * Makefile.in (local-distclean): Remove leftover built files.
9323
9324 2000-11-16 Fred Fish <fnf@be.com>
9325
9326 * configure.in (enable_libstdcxx_v3): Fix typo,
9327 libstd++ -> libstdc++.
9328
9329 2000-11-13 Joseph S. Myers <jsm28@cam.ac.uk>
9330
9331 * configure: Provide the original toplevel configure arguments
9332 (including $0) to subprocesses in the environment rather than
9333 through gcc/configargs.h.
9334
9335 2000-11-12 Mark Mitchell <mark@codesourcery.com>
9336
9337 * configure: Turn on libstdc++ V3 by default.
9338
9339 2000-10-16 Michael Meissner <meissner@redhat.com>
9340
9341 * configure (gcc/configargs.h): Only create if there is a build GCC
9342 directory created.
9343
9344 2000-10-05 Phil Edwards <pme@gcc.gnu.org>
9345
9346 * configure: Save configure arguments to gcc/configargs.h.
9347
9348 2000-10-04 Andris Pavenis <pavenis@latnet.lv>
9349
9350 * Makefile.in (bootstrap): avoid recursion if subdir missing
9351 (cross): ditto
9352 (do-proto-toplev): ditto
9353
9354 Wed Sep 13 11:11:29 2000 Jeffrey A Law (law@cygnus.com)
9355
9356 * configure.in: Do not build byacc for hppa64. Provide paths to the
9357 X11 libraries for hppa64.
9358
9359 2000-09-02 Anthony Green <green@cygnus.com>
9360
9361 * Makefile.in (all-gcc): Depend on all-zlib.
9362 (CLEAN_MODULES): Add clean-zlib.
9363 (ALL_MODULES): Add all-zlib.
9364 * configure.in (host_libs): Add zlib.
9365
9366 2000-08-25 Alexandre Oliva <aoliva@redhat.com>
9367
9368 * configure.in (FLAGS_FOR_TARGET): Use $target_configdirs and
9369 $targargs to tell whether newlib is going to be built.
9370
9371 * configure.in [disable-libstdcxx-v3] (libstdcxx_flags): Search
9372 $$r/TARGET_SUBDIR/libio for _G_config.h.
9373
9374 2000-08-14 Zack Weinberg <zack@wolery.cumb.org>
9375
9376 * configure.in (libstdcxx_flags): Remove -isystem $$s/libio/stdio.
9377
9378 * configure: Make enable_threads and enable_shared defaults
9379 explicit. Substitute enable_threads into generated Makefiles.
9380 * configure.in: Accept *-*-linux* not just *-*-linux-gnu*.
9381 * libtool.m4: Accept *-*-linux* not just *-*-linux-gnu*.
9382
9383 2000-08-02 Manfred Hollstein <manfredh@redhat.com>
9384
9385 * configure.in: Re-enable all references to libg++ and librx.
9386
9387 2002-04-09 Loren James Rittle <rittle@labs.mot.com>
9388
9389 * configure.in: Add *-*-freebsd* configurations.
9390
9391 2002-04-07 Andrew Cagney <ac131313@redhat.com>
9392
9393 * Makefile.in (do-tar-bz2): Delete rule. Replace with ...
9394 (do-tar, do-bz2): New rules.
9395 (taz): Update. Replace do-tar-bz2 with do-tar and do-bz2.
9396 (gdb-tar): New rule.
9397 (gdb-taz): Rewrite. Use gdb-tar and do-bz2.
9398 (insight_dejagnu.tar): New rule.
9399 (insight.tar): New rule.
9400 (gdb+dejagnu.tar): New rule.
9401 (gdb.tar): New rule.
9402
9403 2002-04-07 Andrew Cagney <ac131313@redhat.com>
9404
9405 * MAINTAINERS: Update dejagnu/
9406
9407 2002-03-16 Alexandre Oliva <aoliva@redhat.com>
9408
9409 * ltmain.sh (relink_command): Fix typo in previous change.
9410
9411 2002-03-15 Alexandre Oliva <aoliva@redhat.com>
9412
9413 * ltmain.sh (taglist): Initialized. Don't let `CC' tag out of it.
9414 (relink_command): Added --tag flags.
9415 (mode=install): If relinking fails; error out.
9416
9417 2002-03-12 Richard Henderson <rth@redhat.com>
9418
9419 * Makefile.in (NOTPARALLEL): New. Use it instead of explicit
9420 .NOTPARALLEL tag.
9421 (do-check): Rename from check.
9422 (check): Allow parallel check.
9423
9424 2002-03-11 Richard Henderson <rth@redhat.com>
9425
9426 * Makefile.in (.NOTPARALLEL): Add fake tag.
9427
9428 2002-03-07 H.J. Lu (hjl@gnu.org)
9429
9430 * configure.in: Enable gprof for mips*-*-linux*.
9431
9432 2002-02-28 Alexandre Oliva <aoliva@redhat.com>
9433
9434 * configure.in (libstdcxx_flags): Don't add libstdc++-v3 flags for
9435 libjava.
9436 (CXX_FOR_TARGET): Add -shared-libgcc for libstdc++-v3 and libjava.
9437
9438 2002-02-24 Andrew Cagney <ac131313@redhat.com>
9439
9440 * texinfo/texinfo.tex: Update to version 2002-02-14.08.
9441
9442 2002-02-23 Daniel Jacobowitz <drow@mvista.com>
9443
9444 * config.guess: Import from master sources, rev 1.232.
9445 * config.sub: Import from master sources, rev 1.246.
9446
9447 2002-02-23 Alexandre Oliva <aoliva@redhat.com>
9448
9449 * Makefile.in (MAKEINFO): Don't assume makeinfo will be built just
9450 because its Makefile is there; test for the executable instead.
9451
9452 2002-02-09 Alexandre Oliva <aoliva@redhat.com>
9453
9454 Contribute sh64-elf.
9455 2000-12-01 Alexandre Oliva <aoliva@redhat.com>
9456 * configure.in: Added sh64-*-*.
9457
9458 2002-02-04 Jeff Johnston <jjohnstn@redhat.com>
9459
9460 * COPYING.NEWLIB: Remove advertising clause from
9461 Berkeley and Red Hat licenses.
9462
9463 2002-02-01 Mo DeJong <supermo@bayarea.net>
9464
9465 * Makefile.in: Add all-tix to deps for all-snavigator
9466 so that tix is built when building snavigator.
9467
9468 2002-02-01 Ben Elliston <bje@redhat.com>
9469
9470 * config.guess: Import from master sources, rev 1.229.
9471 * config.sub: Import from master sources, rev 1.240.
9472
9473 2002-01-27 Daniel Jacobowitz <drow@mvista.com>
9474
9475 From Steve Ellcey <sje@cup.hp.com>:
9476 * libtool.m4 (HPUX_IA64_MODE): Set to 32 or 64 based on ABI.
9477 (lt_cv_deplibs_check_method, lt_cv_file_magic_cmd,
9478 lt_cv_file_magic_test_file): Set to appropriate values for HP-UX
9479 IA64.
9480 * ltcf-c.sh (archive_cmds, hardcode_*): Ditto.
9481 * ltconfig (shlibpath_*, dynamic_linker, library_names_spec,
9482 soname_spec, sys_lib_search_path_spec): Ditto.
9483
9484 2002-01-26 Jason Thorpe <thorpej@wasabisystems.com>
9485
9486 * configure.in (*-*-netbsd*): New. Skip target-newlib,
9487 target-libiberty, and target-libgloss. Skip Java-related
9488 libraries if not supported for NetBSD on target CPU.
9489
9490 2002-01-23 Nick Clifton <nickc@cambridge.redhat.com>
9491
9492 * configure.in: Import StrongARM and XScale target_configdirs from
9493 FSF GCC version.
9494
9495 2002-01-16 H.J. Lu (hjl@gnu.org)
9496
9497 * config.guess: Import from master sources, rev 1.225.
9498 * config.sub: Import from master sources, rev 1.238.
9499
9500 * MAINTAINERS: Updated notes on config.guess and config.sub.
9501
9502 2002-01-11 Steve Ellcey <sje@cup.hp.com>
9503
9504 * configure.in (ia64*-*-hpux*): New target for IA64 HP-UX,
9505 ld and gdb are not supported.
9506
9507 2002-01-07 Jeff Johnston <jjohnstn@redhat.com>
9508
9509 * Change reference to Cygnus Solutions to be Red Hat.
9510
9511 2002-01-07 Jeff Johnston <jjohnstn@redhat.com>
9512
9513 * COPYING.NEWLIB: Update generic copyright date.
9514
9515 2002-01-07 Mark Salter <msalter@redhat.com>
9516
9517 * configure.in: Remove target-bsp and target-cygmon from arm builds.
9518 Allow target-libgloss to be built for arm, strongarm, and xscale.
9519
9520 2002-01-03 Ben Elliston <bje@redhat.com>
9521
9522 * MAINTAINERS: Update URL for config.* scripts.
9523
9524 2001-12-18 Alan Modra <amodra@bigpond.net.au>
9525
9526 * config.sub: Import latest version.
9527 * config.guess: Likewise.
9528
9529 2001-12-13 Thomas Fitzsimmons <fitzsim@redhat.com>
9530
9531 * configure.in (FLAGS_FOR_TARGET): Remove -nostdinc and -isystem
9532 options for i[3456]86-pc-linux* native builds.
9533
9534 2001-12-05 Laurent Guerby <guerby@acm.org>
9535
9536 * MAINTAINERS: gcc adopts symlink-tree, refer more to
9537 libiberty.
9538
9539 Import this patch from gcc:
9540
9541 2000-12-09 Laurynas Biveinis <lauras@softhome.net>
9542
9543 * symlink-tree: handle DOS-style absolute paths.
9544
9545 2001-11-28 DJ Delorie <dj@redhat.com>
9546 Zack Weinberg <zack@codesourcery.com>
9547
9548 When build != host, create libiberty for the build machine.
9549
9550 * Makefile.in (TARGET_CONFIGARGS, BUILD_CONFIGARGS): Replace
9551 CONFIG_ARGUMENTS.
9552 (ALL_BUILD_MODULES_LIST, BUILD_CONFIGDIRS, BUILD_SUBDIR):
9553 New variables.
9554 (ALL_BUILD_MODULES, CONFIGURE_BUILD_MODULES): New variables
9555 and rules.
9556 (all.normal): Depend on ALL_BUILD_MODULES.
9557 (CONFIGURE_TARGET_MODULES rule): Use TARGET_CONFIGARGS.
9558 (all-build-libiberty): Depend on configure-build-libiberty.
9559
9560 * configure: Calculate and substitute proper value for
9561 ALL_BUILD_MODULES.
9562 * configure.in: Create the build subdirectory.
9563 Calculate and substitute TARGET_CONFIGARGS (formerly
9564 CONFIG_ARGUMENTS); also BUILD_SUBDIR and BUILD_CONFIGARGS (new).
9565
9566 2001-11-26 Geoffrey Keating <geoffk@redhat.com>
9567
9568 * config.sub: Update to version 1.232 on subversion.
9569
9570 2001-11-20 Nick Clifton <nickc@cambridge.redhat.com>
9571
9572 * Makefile.in (do-proto-toplev): Use msgfmt to generate .gmo
9573 files from .po files for a distribution.
9574
9575 2001-11-19 Hans-Peter Nilsson <hp@bitrange.com>
9576
9577 * COPYING.NEWLIB: Mention preserved notice in specific parts.
9578
9579 2001-11-13 Jeff Holcomb <jeffh@redhat.com>
9580
9581 Merged from net gcc:
9582 2001-07-30 Jeff Sturm <jsturm@one-pont.com>
9583 * ltcf-c.sh: Use $objext, not $ac_objext.
9584 2001-07-27 Mark Kettenis <kettenis@gnu.org>
9585 * ltcf-cxx.sh: Add support for GNU.
9586 2001-07-22 Timothy Wall <twall@redhat.com>
9587 * ltcf-c.sh: Don't disable shared libraries for AIX5/IA64. Preserve
9588 default settings if using GNU tools with that configuration.
9589 * ltcf-cxx.sh: Ditto.
9590 * ltcf-gcj.sh: Ditto.
9591 2001-07-21 Michael Chastain <chastain@redhat.com>
9592 * ltconfig: Set max_cmd_len to a maximum of 512Kb, as it seems some
9593 HPUX 11.0 systems have trouble with 1MB. Mark as gcc-local.
9594 * ltmain.sh: Mark as gcc-local.
9595
9596 2001-11-13 Jeff Holcomb <jeffh@redhat.com>
9597
9598 * Makefile.in (all-bison): Revert 2001-10-24.
9599 Don't depend on texinfo.
9600
9601 2001-11-12 Hans-Peter Nilsson <hp@bitrange.com>
9602
9603 * COPYING.NEWLIB: Add BSD-style license/copyright blurb for my work.
9604
9605 2001-11-08 Phil Edwards <pedwards@disaster.jaj.com>
9606
9607 * configure.in (--enable-languages): Be more permissive about
9608 syntax. Check for empty lists better. Warn about $LANGUAGES.
9609
9610 2001-11-06 Hans-Peter Nilsson <hp@bitrange.com>
9611
9612 * Makefile.in (MAKEINFO): Use "missing" for makeinfo older than 4.0.
9613
9614 2001-10-24 Jeff Holcomb <jeffh@redhat.com>
9615
9616 Makefile.in (all-bison): Don't depend on texinfo.
9617
9618 2001-10-03 Alan Modra <amodra@bigpond.net.au>
9619
9620 * gettext.m4: Test po/POTFILES.in exists before trying to read.
9621
9622 2001-09-29 Alexandre Oliva <aoliva@redhat.com>
9623
9624 * Makefile.in (configure-target-gperf): Depend on $(ALL_GCC_CXX).
9625
9626 2001-09-28 Hans-Peter Nilsson <hp@axis.com>
9627
9628 * config.sub, config.guess: Import latest from subversions.
9629
9630 2001-09-21 Alexandre Oliva <aoliva@redhat.com>
9631
9632 * Makefile.in (AS_FOR_TARGET, LD_FOR_TARGET,
9633 DLLTOOL_FOR_TARGET, WINDRES_FOR_TARGET, AR_FOR_TARGET,
9634 RANLIB_FOR_TARGET, NM_FOR_TARGET): Don't use double quotes to
9635 avoid quotes nesting problems.
9636 (NATIVE_CHECK_MODULES): Ditto, just for consistency.
9637 (DO_X): Export only variables that are set.
9638
9639 2001-09-19 Ben Elliston <bje@redhat.com>
9640
9641 * configure.in (sparc-sun-solaris2*): Don't use /usr/bin/which on
9642 Solaris when testing for the /usr/ucb/cc compiler; it has incorrect
9643 semantics. Use the shell built-in "type" command instead.
9644
9645 2001-09-15 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
9646
9647 * config.sub: Reverted the earlier change, this version is not the
9648 master file.
9649
9650 2001-09-14 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
9651
9652 * config.sub: Change machine triplets from mipsel*-* to mips*el-*.
9653 Add support for mips64.
9654
9655 2001-09-03 Jeff Holcomb <jeffh@redhat.com>
9656
9657 * configure.in: Enable libstdc++-v3 for h8300 targets.
9658
9659 2001-08-30 Eric Christopher <echristo@redhat.com>
9660 Jason Eckhardt <jle@redhat.com>
9661
9662 * config.sub: Add support for mipsisa32.
9663
9664 2001-08-30 Eric Christopher <echristo@redhat.com>
9665
9666 * config.sub, config.guess: Import latest from subversions.
9667
9668 2001-08-20 Alan Modra <amodra@bigpond.net.au>
9669
9670 * config.sub, config.guess: Import latest from subversions.
9671
9672 2001-07-26 DJ Delorie <dj@redhat.com>
9673
9674 * MAINTAINERS: Clarify libiberty merge rules and procedures.
9675
9676 2001-06-19 Alan Modra <amodra@bigpond.net.au>
9677
9678 * Makefile.in: Revert 2001-06-17.
9679 (VER): If AM_INIT_AUTOMAKE uses BFD_VERSION, get version from bfd/.
9680
9681 2001-06-17 H.J. Lu <hjl@gnu.org>
9682
9683 * Makefile.in (gas.tar.bz2): Pass TOOL=bfd PACKAGE=gas to make.
9684 (gas+binutils.tar.bz2): Likewise.
9685 (binutils.tar.bz2): Pass TOOL=bfd PACKAGE=binutils to make.
9686
9687 Fri Jun 8 11:14:02 2001 Andrew Cagney <cagney@b1.cygnus.com>
9688
9689 * Makefile.in (VER): When present, extract the version number from
9690 the file version.in.
9691
9692 2001-06-08 Alexandre Oliva <aoliva@redhat.com>, Jeff Sturm <jsturm@one-point.com>
9693
9694 * Makefile.in (AS_FOR_TARGET, LD_FOR_TARGET, NM_FOR_TARGET): If
9695 gcc/xgcc is built, use -print-prog-name to find out the program
9696 name to use.
9697
9698 2001-06-04 Mark Mitchell <mark@codesourcery.com>
9699
9700 * ltcf-c.sh (archive_cmds, archive_expsym_cmds) [solaris,
9701 with_gcc]: Use `gcc -shared' to build a shared library.
9702
9703 2001-06-04 John David Anglin <dave@hiauly1.hia.nrc.ca>
9704
9705 * ltcf-c.sh (archive_cmd) [hpux, with_gcc]: Use gcc to link shared
9706 archives.
9707
9708 2001-05-28 Simon Patarin <simon.patarin@inria.fr>
9709
9710 * ltcf-cxx.sh (osf3/osf4/osf5): Support creation of C++ shared
9711 libraries when using g++ with native linker.
9712
9713 2001-05-28 Alexandre Oliva <aoliva@redhat.com>
9714
9715 * ltconfig, ltmain.sh: Upgrade to libtool 1.4a 1.641.2.256.
9716
9717 2001-05-24 Tom Rix <trix@redhat.com>
9718
9719 * configure.in : enable ld for aix
9720
9721 2001-05-22 Alexandre Oliva <aoliva@redhat.com>
9722
9723 * ltcf-cxx.sh (allow_undefined_flag, no_undefined_flag)
9724 [aix4*|aix5*]: Prepend blank.
9725
9726 2001-05-20 Alexandre Oliva <aoliva@redhat.com>
9727
9728 * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh, ltcf-cxx.sh,
9729 ltcf-gcj.sh: Upgraded to libtool 1.4a 1.641.2.254. Rebuilt a number
9730 of subdir/configure scripts to use the new libtool.m4.
9731
9732 2001-05-14 H.J. Lu <hjl@gnu.org>
9733
9734 * config.if (libc_interface): Set to -libc6.2- for cross
9735 compiling to Linux/glibc 2.2.
9736
9737 2001-05-03 Alexandre Oliva <aoliva@redhat.com>
9738
9739 * configure.in (noconfigdirs) [*-cygwin*, *-mingw*, *-beos]: Disable
9740 libgcj.
9741
9742 2001-04-26 Alexandre Oliva <aoliva@redhat.com>
9743
9744 * configure.in (noconfigdirs): Don't reset it from scratch in the
9745 target case; only append to it.
9746
9747 2001-04-26 Alexandre Oliva <aoliva@redhat.com>
9748
9749 * configure.in (noconfigdirs) [hppa*-*-*, mips*-*-irix6*,
9750 sparc-*-solaris2.8]: Disable ${libgcj}.
9751
9752 2001-04-25 Alexandre Oliva <aoliva@redhat.com>
9753
9754 * configure.in (libgcj_saved): Copy from $libgcj.
9755 (libgcj): Zero out if --enable-libgcj; add to noconfigdirs is
9756 --disable-libgcj.
9757
9758 2001-04-20 Alexandre Oliva <aoliva@redhat.com>
9759
9760 * ltconfig, ltmain.sh, ltcf-cxx.sh: Upgraded to libtool 1.4a
9761 1.641.2.228.
9762
9763 2001-04-12 Alexandre Oliva <aoliva@redhat.com>
9764
9765 * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh, ltcf-cxx.sh,
9766 ltcf-gcj.sh: Upgraded to libtool 1.4a 1.641.2.226.
9767
9768 2001-04-01 Alexandre Oliva <aoliva@redhat.com>
9769
9770 * Makefile.in (CXX_FOR_TARGET_FOR_RECURSIVE_MAKE, RECURSE_FLAGS):
9771 New macros.
9772 (bootstrap, cross): Use RECURSE_FLAGS.
9773 * configure.in: Subst CXX_FOR_TARGET_FOR_RECURSIVE_MAKE.
9774
9775 2001-03-27 Alexandre Oliva <aoliva@redhat.com>
9776
9777 * configure.in (CXX_FOR_TARGET): Use xgcc for libstdc++-v3.
9778
9779 2001-03-23 Nick Clifton <nickc@redhat.com>
9780
9781 * README-maintainer-mode: Add note about inability to use "make
9782 distclean" in maintainer mode.
9783
9784 2001-03-22 Alexandre Oliva <aoliva@redhat.com>
9785
9786 Re-installed:
9787 2001-01-02 Laurynas Biveinis <lauras@softhome.net>
9788 * ltcf-c.sh: Clear ac_cv_prog_cc_pic for DJGPP. Do not add
9789 '-DPIC' to ac_cv_prog_cc_pic for DJGPP.
9790 * ltcf-cxx.sh: Likewise.
9791 * ltcf-gcj.sh: Likewise.
9792
9793 2001-03-22 Philip Blundell <philb@gnu.org>
9794
9795 * config.sub, config.guess: Import latest from subversions.
9796
9797 2001-03-22 Alexandre Oliva <aoliva@redhat.com>
9798
9799 * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh, ltcf-cxx.sh,
9800 ltcf-gcj.sh: Upgraded to libtool 1.4a 1.641.2.198.
9801
9802 2001-03-20 Michael Chastain <chastain@redhat.com>
9803
9804 * Makefile.in: all-m4 depends on all-texinfo.
9805
9806 2001-03-08 Alexandre Oliva <aoliva@redhat.com>
9807
9808 * Makefile.in (ALL_GCC, ALL_GCC_C, ALL_GCC_CXX): Set before use.
9809
9810 2001-02-22 Jeff Johnston <jjohnstn@redhat.com>
9811
9812 * COPYING.NEWLIB: Remove DJ Delorie's address because it is no
9813 longer valid.
9814
9815 2001-02-16 Nick Clifton <nickc@redhat.com>
9816
9817 * configure.in (noconfigdirs): Allow configuration of texinfo
9818 for Cygwin hosts.
9819
9820 2001-02-09 Martin Schwidefsky <schwidefsky@de.ibm.com>
9821
9822 * config.guess: Add linux target for S/390.
9823 * config.sub: Likewise.
9824 * configure.in: Likewise.
9825
9826 2001-02-06 Ben Elliston <bje@redhat.com>
9827
9828 * configure: Output host type to stdout, not stderr.
9829
9830 2001-02-04 Michael Sokolov <msokolov@ivan.Harhan.ORG>
9831
9832 * config.guess: Import from subversions.gnu.org (revision 1.181).
9833 * config.sub: Import from subversions.gnu.org (revision 1.199).
9834
9835 2001-01-30 Alan Modra <alan@linuxcare.com.au>
9836
9837 * config.guess: Handle hppa64-linux systems.
9838
9839 2001-01-27 Michael Sokolov <msokolov@ivan.Harhan.ORG>
9840
9841 * ltcf-cxx.sh (ac_cv_prog_cc_pic_works, ac_cv_prog_cc_static_works):
9842 Don't unset, it's non-portable and no longer necessary, set to empty
9843 instead.
9844
9845 2001-01-27 Michael Sokolov <msokolov@ivan.Harhan.ORG>, Alexandre Oliva <oliva@lsd.ic.unicamp.br>
9846
9847 * ltconfig: Shell portability fix for the tagname validity check.
9848
9849 2001-01-27 Michael Sokolov <msokolov@ivan.Harhan.ORG>
9850
9851 * ltcf-cxx.sh: Use parentheses around eval $ac_compile.
9852
9853 2001-01-27 Alexandre Oliva <aoliva@redhat.com>
9854
9855 * ltcf-c.sh (ld_shlibs) [aix5*]: Disable on unknown CPU types.
9856 * ltcf-cxx.sh, ltcf-gcj.sh: Likewise.
9857
9858 2001-01-24 Alexandre Oliva <aoliva@redhat.com>
9859
9860 * ltmain.sh (TAG disable-shared, TAG disable-static): Make sure we
9861 keep at least one of build_libtool_libs or build_old_libs set to
9862 yes.
9863
9864 2001-01-24 Alexandre Oliva <aoliva@redhat.com>
9865
9866 * ltcf-gcj.sh (lt_simple_link_test_code): Remove stray `(0)'.
9867 * libtool.m4 (_AC_LIBTOOL_GCJ): Pass $CPPFLAGS on.
9868
9869 2000-11-07 Philip Blundell <pb@futuretv.com>
9870
9871 * Makefile.in (ETC_SUPPORT): Also add configbuild.* and configdev.*.
9872
9873 2000-11-03 Philip Blundell <pb@futuretv.com>
9874
9875 * Makefile.in (ETC_SUPPORT): Add configure.texi and associated info
9876 files.
9877
9878 2001-01-15 Jeff Johnston <jjohnstn@redhat.com>
9879
9880 * COPYING.NEWLIB: Put into source repository.
9881
9882 2001-01-15 Ben Elliston <bje@redhat.com>
9883
9884 * configure.in (host_tools): Add sid.
9885 Always configure cgen.
9886 * Makefile.in (all-sid): New target.
9887 (check-sid, clean-sid, install-sid): Likewise.
9888
9889 2001-01-07 Andreas Jaeger <aj@suse.de>
9890
9891 * config.sub, config.guess: Update from subversions.
9892
9893 2000-12-12 Alexandre Oliva <aoliva@redhat.com>
9894
9895 * configure.in: Disable language-specific target libraries for
9896 languages that aren't enabled.
9897
9898 2000-11-24 Nick Clifton <nickc@redhat.com>
9899
9900 * configure.in (xscale-elf): Add target.
9901 (xscale-coff): Add target.
9902 (c4x, c5x, tic54x): Move after ARM targets.
9903
9904 2000-11-23 Alexandre Oliva <aoliva@redhat.com>
9905
9906 * ltcf-gcj.sh: Added file, required by 2000-11-18 merge.
9907
9908 2000-11-20 Ian Lance Taylor <ian@zembu.com>
9909
9910 * ltcf-cxx.sh: Added file, required by 2000-11-18 merge.
9911
9912 2000-11-18 Alexandre Oliva <aoliva@redhat.com>
9913
9914 * Makefile.in: Merge with GCC and libgcj.
9915 (ALL_GCC_C, ALL_GCC_CXX): New macros. Use them as dependencies of
9916 configure-target-<library> when their configure scripts need the C
9917 or C++ library to have already been built to work properly.
9918 (do_proto_toplev): Set them to an empty string.
9919
9920 2000-11-18 Alexandre Oliva <aoliva@redhat.com>
9921
9922 * Makefile.in (HOST_LIB_PATH, TARGET_LIB_PATH): New macros.
9923 (REALLY_SET_LIB_PATH): Use them.
9924
9925 2000-11-06 Christopher Faylor <cgf@cygnus.com>
9926
9927 * config.sub: Add support for Sun Chorus
9928
9929 2000-11-02 Per Lundberg <plundis@chaosdev.org>
9930
9931 * config.sub: Add support for the *-storm-chaos OS.
9932
9933 2000-10-30 Stephane Carrez <stcarrez@worldnet.fr>
9934
9935 * configure.in (noconfigdirs): Don't compile some
9936 of the libraries for 68HC11 & 68hc12 targets.
9937
9938 2000-09-30 Alexandre Oliva <aoliva@redhat.com>
9939
9940 * ltconfig, ltmain.sh, libtool.m4: Updated from libtool
9941 multi-language branch, to work around Solaris' /bin/sh bug. Rebuilt
9942 all affected `configure' scripts.
9943
9944 2000-09-25 Alexandre Oliva <aoliva@redhat.com>
9945
9946 * Makefile.in (DEVO_SUPPORT): Added gettext.m4, libtool.m4 and
9947 ltcf-c.sh.
9948
9949 2000-09-12 Philip Blundell <philb@gnu.org>
9950
9951 * config.sub, config.guess: Update from subversions.
9952
9953 2000-09-06 Alexandre Oliva <aoliva@redhat.com>
9954
9955 * Makefile.in (all-zlib): Added dummy target.
9956
9957 * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh: Updated from libtool
9958 multi-language branch.
9959
9960 2000-09-05 Alexandre Oliva <aoliva@redhat.com>
9961
9962 * Makefile.in (all-bootstrap): Added all-texinfo and all-zlib.
9963 (bootstrap*): Depend on all-bootstrap.
9964
9965 2000-09-02 Alexandre Oliva <aoliva@redhat.com>, DJ Delorie <dj@redhat.com>
9966
9967 * configure.in (FLAGS_FOR_TARGET): Use -nostdinc even for Canadian
9968 crosses, but add gcc/include to the header search path for them.
9969
9970 2000-08-31 Alexandre Oliva <aoliva@redhat.com>
9971
9972 * ltconfig, ltmain.sh: Updated from libtool multi-language branch.
9973 * libtool.m4, ltcf-c.sh: Copied from libtool multi-language branch.
9974 * gettext.m4: New file, extracted from aclocal.m4.
9975
9976 2000-08-22 Alexandre Oliva <aoliva@redhat.com>
9977
9978 * config-ml.in (CC, CXX): Avoid trailing whitespace.
9979 (LD_LIBRARY_PATH, SHLIB_PATH): Adjust for multilibs and export to
9980 sub-configures.
9981
9982 2000-08-20 Doug Evans <dje@casey.transmeta.com>
9983
9984 * Makefile.in (ALL_MODULES): Add all-cgen.
9985 (CROSS_CHECK_MODULES,INSTALL_MODULES,CLEAN_MODULES): Similarily.
9986 (all-cgen): New target.
9987 (all-opcodes,all-sim): Depend on all-cgen.
9988 * configure.in (host_tools): Add cgen.
9989 Only configure cgen if --enable-cgen-maint.
9990
9991 2000-08-17 Alexandre Oliva <aoliva@redhat.com>
9992
9993 * config-ml.in (CC, CXX): Don't introduce a leading space.
9994
9995 2000-08-16 Alexandre Oliva <aoliva@redhat.com>
9996
9997 * configure.in (libstdcxx_flags): Use
9998 libstdc++-v3/src/libstdc++.INC.
9999
10000 2000-08-15 Alexandre Oliva <aoliva@redhat.com>
10001
10002 * configure.in (libstdcxx_flags): Use libstdc++-v3/src/INCLUDES.
10003
10004 2000-08-11 Jason Merrill <jason@redhat.com>
10005
10006 * configure.in (CC_FOR_TARGET, CHILL_FOR_TARGET,
10007 CXX_FOR_TARGET): Add -B$$r/gcc/ here.
10008 (FLAGS_FOR_TARGET): Not here.
10009 (CHILL_FOR_TARGET, CXX_FOR_TARGET): Don't check the list of languages.
10010
10011 2000-08-07 DJ Delorie <dj@redhat.com>
10012
10013 * configure.in (FLAGS_FOR_TARGET): invert test for xgcc, should mean
10014 "if we're also building gcc, and it's a gcc that will run on the
10015 build machine, we want to use its includes instead of the system's
10016 default includes".
10017
10018 2000-08-03 Alexandre Oliva <aoliva@redhat.com>
10019
10020 * configure.in (libstdcxx_flags): Don't use `"'.
10021
10022 * config-ml.in: Adjust multilib search paths to the
10023 appropriate multilib tree.
10024
10025 2000-08-02 Alexandre Oliva <aoliva@redhat.com>
10026
10027 * configure.in (CHILL_FOR_TARGET, CXX_FOR_TARGET): Convert blanks to
10028 commas in $LANGUAGES.
10029
10030 2000-08-01 Alexandre Oliva <aoliva@redhat.com>
10031
10032 * configure.in (qCXX_FOR_TARGET): Use echo instead of expr.
10033
10034 2000-07-31 Alexandre Oliva <aoliva@redhat.com>
10035
10036 * configure.in (qCXX_FOR_TARGET): Quote `&' characters in
10037 CXX_FOR_TARGET for sed.
10038
10039 2000-07-30 Alexandre Oliva <aoliva@redhat.com>
10040
10041 * configure.in (CC_FOR_TARGET, CHILL_FOR_TARGET, CXX_FOR_TARGET):
10042 Do not override if already set in the environment or in configure.
10043 Don't duplicate $(FLAGS_FOR_TARGET) if it already appears in them.
10044 (FLAGS_FOR_TARGET): Don't use host directories on Canadian crosses.
10045
10046 2000-07-27 Alexandre Oliva <aoliva@redhat.com>
10047
10048 * Makefile.in (FLAGS_FOR_TARGET): New macro.
10049 (GCC_FOR_TARGET): Use it.
10050 (CC_FOR_TARGET, CXX_FOR_TARGET, CHILL_FOR_TARGET): Now defined...
10051 * configure.in: ... here.
10052 (FLAGS_FOR_TARGET): Define. Add ld build dir to -L path.
10053 (libstdcxx_flags): Define and append to CXX_FOR_TARGET.
10054
10055 2000-07-24 Alexandre Oliva <aoliva@redhat.com>
10056
10057 * Makefile.in (configure-target-libf2c): Depend on $(ALL_GCC).
10058 (configure-target-libchill, configure-target-libobjc): Likewise.
10059
10060 * configure.in: Use the same cache file for all target libs.
10061 * config-ml.in: But different cache files per multilib variant.
10062
10063 2000-07-23 Michael Sokolov <msokolov@ivan.Harhan.ORG>
10064
10065 * configure (topsrcdir): Don't use dirname.
10066
10067 2000-07-20 Jason Merrill <jason@redhat.com>
10068
10069 * configure.in: Remove all references to libg++ and librx.
10070
10071 * configure, configure.in, Makefile.in: Unify gcc and binutils.
10072
10073 2000-07-20 Hans-Peter Nilsson <hp@axis.com>
10074
10075 * config.sub: Update to subversions version 2000-07-06.
10076
10077 2000-07-12 Andrew Haley <aph@cygnus.com>
10078
10079 * configure.in (host_makefile_frag): Use mh-ia64pic on IA-64 hosts.
10080 (target_makefile_frag): Use mt-ia64pic on IA-64 targets.
10081
10082 2000-07-07 Phil Edwards <pme@sourceware.cygnus.com>
10083
10084 * symlink-tree: Check number of arguments.
10085
10086 2000-06-06 Andrew Cagney <cagney@b1.cygnus.com>
10087
10088 * texinfo/texinfo.tex: Update to version 2000-05-28.15.
10089
10090 2000-07-05 Jim Wilson <wilson@cygnus.com>
10091
10092 * Makefile.in (CXX_FOR_TARGET): Add libstdc++ to the library
10093 search path for a g++ extracted from the build tree. This
10094 will allow link tests run by configure scripts in
10095 subdirectories to succeed.
10096
10097 2000-07-01 Koundinya K <kk@ddeorg.soft.net>
10098
10099 * ltconfig: Add support for mips-dde-sysv4.2MP
10100
10101 2000-06-28 Corinna Vinschen <vinschen@cygnus.com>
10102
10103 * ltconfig: Check for host_os beeing one of `cygwin', `mingw' or
10104 `os2'. Force ac_cv_exeext to be ".exe" in that case.
10105
10106 2000-06-19 Timothy Wall <twall@cygnus.com>
10107
10108 * configure.in (noconfigdirs): Set noconfigdirs for tic54x target.
10109 * config.sub: Add tic54x target.
10110
10111 2000-06-07 Phillip Thomas <pthomas@suse.de>
10112
10113 * README-maintainer-mode: New file: Contains notes on using
10114 --enable-maintainer-mode with binutils.
10115
10116 2000-05-29 Andrew Cagney <cagney@b1.cygnus.com>
10117
10118 * texinfo/texinfo.tex: Update. Version from makeinfo 4.0.
10119
10120 2000-05-30 Andrew Cagney <cagney@b1.cygnus.com>
10121
10122 * config.sub: Import CVS version 1.167 Tue May 30 09:00:07 2000.
10123 * config.guess: Import CVS version 1.148 Tue May 30 09:00:06 2000
10124
10125 20000-05-21 H.J. Lu (hjl@gnu.org)
10126
10127 * Makefile.in (CC_FOR_TARGET): Make sure as/ld in the gcc
10128 directory are used if they exist. Make sure
10129 $(build_tooldir)/include is searched for header files,
10130 $(build_tooldir)/lib/ for library files.
10131 (GCC_FOR_TARGET): Likewise.
10132 (CXX_FOR_TARGET): Likewise.
10133
10134 2000-05-18 Jeffrey A Law (law@cygnus.com)
10135
10136 * configure.in (hppa*64*-*-*): Do build ld for this configuration.
10137
10138 2000-05-17 Alexandre Oliva <aoliva@cygnus.com>
10139
10140 * Makefile.in (configure-target-libiberty): Depend on
10141 configure-target-newlib.
10142
10143 2000-05-16 Alexandre Oliva <aoliva@cygnus.com>
10144
10145 * configure.in, Makefile.in: Merge all libffi-related
10146 configury stuff from the libgcj tree.
10147
10148 2000-05-16 Andrew Cagney <cagney@b1.cygnus.com>
10149
10150 Thu Apr 27 11:01:48 2000 Andrew Cagney <cagney@b1.cygnus.com>:
10151 * Makefile.in (do-tar-bz2, do-md5sum): Skip CVS directories.
10152
10153 2000-05-16 Andrew Cagney <cagney@b1.cygnus.com>
10154
10155 Wed Apr 26 17:03:53 2000 Andrew Cagney <cagney@b1.cygnus.com>:
10156 * Makefile.in (do-djunpack): New target. Update djunpack.bat with
10157 current version information. Add to proto-toplev directory.
10158 (gdb-taz): Build do-djunpack.
10159
10160 2000-05-15 David Edelsohn <edelsohn@gnu.org>
10161
10162 * configure.in: Special case powerpc*-*-aix* target_makefile_frag.
10163
10164 2000-05-13 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
10165
10166 * ltmain.sh: Preserve in relink_command any environment
10167 variables that may affect the linker behavior.
10168
10169 2000-05-12 Jeffrey A Law (law@cygnus.com)
10170
10171 * config.sub (basic_machine): Recognize hppa64 as a valid cpu type.
10172
10173 2000-05-10 Jim Wilson <wilson@cygnus.com>
10174
10175 * configure.in (ia64*-*-elf*): Add gdb and friends to noconfigdirs.
10176
10177 2000-05-08 Eli Zaretskii <eliz@is.elta.co.il>
10178
10179 * djunpack.bat: Change the Sed script to replace @V@ in fnchange.lst
10180 with the version name.
10181
10182 2000-05-01 Benjamin Kosnik <bkoz@cygnus.com>
10183
10184 * config.if: Tweak.
10185
10186 2000-04-23 Eli Zaretskii <eliz@is.elta.co.il>
10187
10188 * djunpack.bat: New file.
10189
10190 2000-04-19 Andrew Cagney <cagney@b1.cygnus.com>
10191
10192 * Makefile.in (taz, gdb-taz, gas.tar.bz2, binutils.tar.bz2,
10193 gas+binutils.tar.bz2, libg++.tar.bz2, gnats.tar.bz2, gdb.tar.bz2,
10194 dejagnu.tar.bz2, gdb+dejagnu.tar.bz2, insight.tar.bz2,
10195 insight+dejagnu.tar.bz2, newlib.tar.bz2): Pass MD5PROG to sub-make.
10196
10197 2000-04-16 Dave Pitts <dpitts@cozx.com>
10198
10199 * config.sub (case $basic_machine): Change default for "ibm-*"
10200 to "openedition".
10201
10202 2000-04-12 Andrew Cagney <cagney@b1.cygnus.com>
10203
10204 * Makefile.in (gdb-taz): New target. GDB specific archive.
10205 (do-md5sum): New target.
10206 (MD5PROG): Define.
10207 (PACKAGE): Default to TOOL.
10208 (VER): Default to a shell script.
10209 (taz): Rewrite target. Move real work to do-proto-toplev. Include
10210 md5 checksum generation.
10211 (do-proto-toplev): New target. Create $(PACKAGE)-$(VER) link.
10212 (do-tar-bz2): Delete creation of $(PACKAGE)-$(VER) link.
10213 (gdb.tar.bz2, dejagnu.tar.bz2, gdb+dejagnu.tar.bz2,
10214 insight.tar.bz2): Use gdb-taz to create archive.
10215
10216 2000-04-07 Andrew Cagney <cagney@b1.cygnus.com>
10217
10218 * configure (warn_cflags): Delete.
10219
10220 2000-04-05 Benjamin Kosnik <bkoz@cygnus.com>
10221 Martin v. Loewis <martin@loewis.home.cs.tu-berlin.de>
10222
10223 * configure.in (enable_libstdcxx_v3): Add.
10224 (target_libs): Add bits here to switch between libstdc++-v2 and
10225 libstdc++-v3.
10226 * config.if: And this file too.
10227 * Makefile.in: Add libstdc++-v3 targets.
10228
10229 2000-04-05 Michael Meissner <meissner@redhat.com>
10230
10231 * config.sub (d30v): Add d30v as a basic machine type.
10232
10233 2000-03-29 Jason Merrill <jason@casey.cygnus.com>
10234
10235 * configure.in: -linux-gnu*, not -linux-gnu.
10236
10237 2000-03-03 Andrew Cagney <cagney@b1.cygnus.com>
10238
10239 * Makefile.in (taz): Set PACKAGE to TOOL when not defined.
10240 (do-tar-bz2): Replace TOOL with PACKAGE.
10241 (gdb.tar.bz2): Remove GDBTK from GDB package.
10242 (gdb+dejagnu.tar.bz2, insight.tar.bz2, insight+dejagnu.tar.bz2,
10243 dejagnu.tar.bz2): New packages.
10244
10245 2000-02-27 Andreas Jaeger <aj@suse.de>
10246
10247 * configure.in: Add entry for mips*-*-linux*, move catch all
10248 *-*-*linux* entry below this one.
10249
10250 2000-02-27 Ian Lance Taylor <ian@zembu.com>
10251
10252 * ltconfig, ltmain.sh: Update to libtool 1.3.4.
10253
10254 2000-02-24 Nick Clifton <nickc@cygnus.com>
10255
10256 * config.sub: Support an OS of "wince".
10257
10258 2000-02-24 Andrew Cagney <cagney@b1.cygnus.com>
10259
10260 * config.guess, config.sub: Updated to match config's 2000-02-15
10261 version.
10262
10263 2000-02-23 Linas Vepstas <linas@linas.org>
10264
10265 * config.sub: Add support for Linux/IBM 370.
10266 * configure.in: Likewise.
10267
10268 2000-02-22 Nick Clifton <nickc@cygnus.com>
10269
10270 * configure.in: Add mips-pe, sh-pe and arm-wince-pe targets.
10271
10272 2000-02-20 Christopher Faylor <cgf@cygnus.com>
10273
10274 * config.guess: Guess "cygwin" rather than "cygwin32".
10275
10276 2000-02-16 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10277
10278 * configure (gcc_version): When setting, narrow search to
10279 lines containing `version_string'.
10280
10281 2000-02-15 Denis Chertykov <denisc@overta.ru>
10282
10283 * config.sub: Add support for avr target.
10284
10285 2000-02-01 Hans-Peter Nilsson <hp@bitrange.com>
10286
10287 * config.sub: Add mmix-knuth-mmixware.
10288
10289 2000-01-27 Christopher Faylor <cgf@redhat.com>
10290
10291 * Makefile.in (CC_FOR_TARGET): Add new winsup directory
10292 structure stuff to -L library search.
10293 (CXX_FOR_TARGET): Ditto.
10294 (CROSS_CHECK_MODULES): Fix spelling mistake.
10295
10296 2000-01-24 Mark Mitchell <mark@codesourcery.com>
10297
10298 * Makefile.in (CXX_FOR_TARGET): Use g++, not xgcc, to invoke
10299 the C++ compiler.
10300
10301 2000-01-12 Richard Henderson <rth@cygnus.com>
10302
10303 * configure.in: Don't build some bits for beos.
10304
10305 2000-01-12 Joel Sherrill (joel@OARcorp.com)
10306
10307 * Makefile.in (CC_FOR_TARGET): Use newlib libraries as well
10308 as include files.
10309
10310 2000-01-06 Geoff Keating <geoffk@cygnus.com>
10311
10312 * configure.in: Use mt-aix43 to handle *_TARGET defs,
10313 not mh-aix43.
10314
10315 1999-12-14 Richard Henderson <rth@cygnus.com>
10316
10317 * config.guess (alpha-osf, alpha-linux): Detect ev67.
10318 * config.sub: Accept alphaev[78], alphaev8.
10319
10320 1999-12-03 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
10321
10322 * config.guess, config.sub: Update from autoconf.
10323
10324 Tue Nov 23 00:57:41 1999 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
10325
10326 * config-ml.in (sparc*-*-*): Disable sparcv9 support if the
10327 necessary libraries are missing.
10328
10329 1999-10-25 Andreas Schwab <schwab@suse.de>
10330
10331 * configure: Fix quoting inside arguments of eval.
10332
10333 1999-10-21 Nick Clifton <nickc@cygnus.com>
10334
10335 * config-ml.in: Allow suppression of some ARM multilibs.
10336
10337 Tue Sep 7 23:33:57 1999 Linas Vepstas <linas@linas.org>
10338
10339 * config.guess: Add OS/390 match pattern.
10340 * config.sub: Add mvs, openedition targets.
10341 * configure.in (i370-ibm-opened*): New.
10342
10343 1999-09-04 Steve Chamberlain <sac@pobox.com>
10344
10345 * config.sub: Add support for configuring for pj.
10346
10347 1999-08-31 Nick Clifton <nickc@cygnus.com>
10348
10349 * config.sub (maybe_os): Add support for configuring for fr30.
10350
10351 1999-08-25 Nick Clifton <nickc@cygnus.com>
10352
10353 * configure.in: Do not configure or build ld for AIX
10354 platforms. ld is known to be broken on these platforms.
10355
10356 Wed Aug 25 01:12:25 1999 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
10357
10358 * config-ml.in: Pass compiler flag corresponding to multidirs to
10359 subdir configures.
10360
10361 1999-08-09 Ian Lance Taylor <ian@zembu.com>
10362
10363 * Makefile.in (LDFLAGS): Define.
10364
10365 1999-08-08 Mumit Khan <khan@xraylith.wisc.edu>
10366
10367 * configure.in (i[3456]-*-mingw32*): Don't put gprof in
10368 noconfigdirs.
10369 (*-*-cygwin*): Likewise.
10370
10371 1999-08-08 Ian Lance Taylor <ian@zembu.com>
10372
10373 * mkdep: New file.
10374 * Makefile.in (GAS_SUPPORT_DIRS): Add mkdep.
10375 (BINUTILS_SUPPORT_DIRS): Add mkdep.
10376
10377 From Eli Zaretskii <eliz@is.elta.co.il>:
10378 * configure (tmpfile): Change cONf$$ to cNf$$ to avoid an overly
10379 long file name when using DJGPP on MS-DOS.
10380
10381 Wed Aug 4 02:07:14 1999 Jeffrey A Law (law@cygnus.com)
10382
10383 * config.sub (vxworks case): Use os=-vxworks, not os=vxworks.
10384
10385 1999-07-30 Alan Modra <alan@spri.levels.unisa.edu.au>
10386
10387 * Makefile.in (check-target-libio): Remove all-target-libstdc++
10388 dependency as this causes "make check" to globally "make all"
10389
10390 Tue Jun 22 23:45:18 1999 Tom Tromey <tromey@cygnus.com>
10391
10392 * configure.in (target_libs): Added target-zlib.
10393 * Makefile.in (ALL_TARGET_MODULES): Added zlib.
10394 (CONFIGURE_TARGET_MODULES): Likewise.
10395 (CHECK_TARGET_MODULES): Likewise.
10396 (INSTALL_TARGET_MODULES): Likewise.
10397 (CLEAN_TARGET_MODULES): Likewise.
10398 (configure-target-zlib): New target.
10399 (all-target-zlib): Likewise.
10400 (all-target-libjava): Depend on all-target-zlib.
10401 (configure-target-libjava): Depend on configure-target-zlib.
10402
10403 * Makefile.in (configure-target-libjava): Depend on
10404 configure-target-newlib.
10405 (configure-target-boehm-gc): New target.
10406 (configure-target-qthreads): New target.
10407
10408 * configure.in (target_libs): Added target-qthreads.
10409 * Makefile.in (ALL_TARGET_MODULES): Added qthreads.
10410 (CONFIGURE_TARGET_MODULES): Likewise.
10411 (CHECK_TARGET_MODULES): Likewise.
10412 (INSTALL_TARGET_MODULES): Likewise.
10413 (CLEAN_TARGET_MODULES): Likewise.
10414 (all-target-qthreads): New target.
10415 (configure-target-libjava): Depend on configure-target-qthreads.
10416 (all-target-libjava): Depend on all-target-qthreads.
10417
10418 * Makefile.in (ALL_TARGET_MODULES): Added libjava, boehm-gc.
10419 (CONFIGURE_TARGET_MODULES): Likewise.
10420 (CHECK_TARGET_MODULES): Likewise.
10421 (INSTALL_TARGET_MODULES): Likewise.
10422 (CLEAN_TARGET_MODULES): Likewise.
10423 (all-target-libjava): New target.
10424 (all-target-boehm-gc): Likewise.
10425 * configure.in (target_libs): Added libjava, boehm-gc.
10426
10427 1999-07-22 Ian Lance Taylor <ian@zembu.com>
10428
10429 * Makefile.in (binutils.tar.bz2): Don't pass makeall.bat and
10430 configure.bat in SUPPORT_FILES.
10431 (gas+binutils.tar.bz2): Likewise.
10432
10433 * makeall.bat: Remove; obsolete.
10434
10435 1999-07-21 Ian Lance Taylor <ian@zembu.com>
10436
10437 From Mark Elbrecht:
10438 * configure.bat: Remove; obsolete.
10439
10440 1999-07-11 Ian Lance Taylor <ian@zembu.com>
10441
10442 * configure: Add -W -Wall to the default CFLAGS when compiling with
10443 gcc.
10444
10445 Thu Jul 8 12:32:23 1999 John David Anglin <dave@hiauly1.hia.nrc.ca>
10446
10447 * configure.in: Build ld, binutils & gas for hppa*-*-linux-gnu*.
10448
10449 1999-06-30 Mark Mitchell <mark@codesourcery.com>
10450
10451 * configure.in: Build ld on IRIX6.
10452
10453 1999-06-12 Ian Lance Taylor <ian@zembu.com>
10454
10455 * Makefile.in: Change distribution targets to use bzip2 instead of
10456 gzip.
10457 (TEXINFO_SUPPORT): Set to just texinfo/texinfo.tex.
10458 (taz): Don't use texinfo/gpl.texinfo or texinfo/lgpl.texinfo.
10459
10460 1999-06-04 Nick Clifton <nickc@cygnus.com>
10461
10462 * config.sub: Add mcore target.
10463
10464 1999-05-30 Cort Dougan <cort@cs.nmt.edu>
10465
10466 * config.guess (ppc-*-linux-gnu): Also use ld emul elf32ppclinux.
10467
10468 1999-05-25 H.J. Lu (hjl@gnu.org)
10469
10470 * config.guess (dummy): Changed to $dummy.
10471
10472 1999-05-24 Nick Clifton <nickc@cygnus.com>
10473
10474 * config.sub: Tidied up case statements.
10475
10476 1999-05-22 Ben Elliston <bje@cygnus.com>
10477
10478 * config.guess: Handle NEC UX/4800. Contributed by Jiro Takabatake
10479 <jiro@din.or.jp>.
10480
10481 * config.guess: Merge with FSF version. Future changes will be
10482 more accurately recorded in this ChangeLog.
10483 * config.sub: Likewise.
10484
10485 1999-05-20 Stephen L Moshier <moshier@world.std.com>
10486
10487 * Makefile.in (GCC_FOR_TARGET): Add -I$(build_tooldir)/include.
10488
10489 1999-04-30 Tom Tromey <tromey@cygnus.com>
10490
10491 * ltmain.sh: [mode link] Always use CC given by ltconfig.
10492
10493 1999-04-23 Tom Tromey <tromey@cygnus.com>
10494
10495 * ltconfig, ltmain.sh: Update to libtool 1.2f.
10496
10497 1999-04-20 Drew Moseley <dmoseley@cygnus.com>
10498
10499 * configure.in (noconfigdirs): Don't build libstub for arm-elf targets.
10500 (noconfigdirs): Don't build any bsp stuff for for arm-oabi targets.
10501 Bad merge removed these two changes.
10502
10503 Tue Apr 13 22:50:54 1999 Donn Terry (donn@interix.com)
10504 Martin Heller (Ing.-Buero_Heller@t-online.de)
10505
10506 * config.guess (interix Alpha): Add.
10507
10508 1999-04-11 Richard Henderson <rth@cygnus.com>
10509
10510 * configure.in (i?86-*-beos*): Do config gperf; don't config
10511 gdb, newlib, or libgloss.
10512
10513 1999-04-11 Alexandre Oliva <oliva@dcc.unicamp.br>
10514
10515 * config-ml.in: On mips*-*-*, if multidirs contains mabi=64, try to
10516 link a trivial program with -mabi=64. If it fails, remove mabi=64
10517 from multidirs.
10518
10519 1999-04-10 Philipp Thomas (kthomas@gwdg.de)
10520
10521 * config.sub: Set basic_machine to i586 when target_alias = k6-*.
10522
10523 1999-04-08 Nick Clifton <nickc@cygnus.com>
10524
10525 * config.sub: Add support for mcore targets.
10526
10527 1999-04-07 Michael Meissner <meissner@cygnus.com>
10528
10529 * configure.in (d30v-*): Use config/mt-d30v as makefile fragment,
10530 not mt-ospace, in order to shut up assembler warning about using
10531 symbols that are named the same as registers.
10532
10533 1999-04-07 Drew Moseley <dmoseley@cygnus.com>
10534
10535 * Makefile.in (all-target-cygmon): Added all-target-bsp to the
10536 dependency list for all-target-cygmon.
10537
10538 1999-04-05 Doug Evans <devans@casey.cygnus.com>
10539
10540 * config-ml.in: Check $host, not $target, for selective multilibs.
10541 (arm-*-*): Allow disabling of biendian, h/w fp, 26 bit apcs,
10542 thumb interworking, and underscore prefix multilibs.
10543
10544 1999-04-04 Ian Lance Taylor <ian@zembu.com>
10545
10546 * missing: Update to version from current automake.
10547
10548 Fri Apr 2 15:11:32 1999 H.J. Lu (hjl@gnu.org)
10549
10550 * configure (gxx_include_dir): Removed.
10551
10552 * configure.in (gxx_include_dir): Handle it.
10553 * Makefile.in: Likewise.
10554
10555 1999-03-29 Gavin Romig-Koch <gavin@cygnus.com>
10556
10557 * config.sub (mips64vr4111,mips64vr4111el) Add.
10558
10559 1999-03-21 Ben Elliston <bje@cygnus.com>
10560
10561 * config.guess: Correct typo for detecting ELF on FreeBSD.
10562
10563 Thu Mar 18 00:17:50 1999 Mark Elbrecht <snowball3@usa.net>
10564
10565 * configure.in (pc-msdosdjgpp): Set host_makefile_frag to
10566 config/mh-djgpp.
10567
10568 Thu Mar 11 18:37:23 1999 Drew Moseley <dmoseley@cygnus.com>
10569
10570 * Makefile.in (all-target-bsp): Added all-gcc all-binutils and
10571 all-target-newlib to dependency list for all-target-bsp.
10572
10573 Thu Mar 11 01:19:31 1999 Mumit Khan <khan@xraylith.wisc.edu>
10574
10575 * config.sub: Add i386-uwin support.
10576 * config.guess: Likewise.
10577
10578 Thu Mar 11 01:07:55 1999 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
10579
10580 * configure.in: cleanup, add mh-*pic handling for arm, special
10581 case powerpc*-*-aix*
10582
10583 Wed Mar 10 18:35:07 1999 Jeff Johnston <jjohnstn@cygnus.com>
10584
10585 * configure.in (noconfigdirs): Removed target-libgloss so libnosys.a
10586 can be built.
10587
10588 Wed Mar 10 17:39:09 1999 Drew Moseley <dmoseley@cygnus.com>
10589
10590 * configure.in: Added bsp support to arm-*-coff and arm-*-elf
10591 targets.
10592
10593 1999-03-02 Nick Clifton <nickc@cygnus.com>
10594
10595 * config.sub: Rename CYGNUS LOCAL to EGCS LOCAL
10596
10597 1999-02-28 Geoffrey Noer <noer@cygnus.com>
10598
10599 * config.sub: Check for "cygwin*" rather than "cygwin32*"
10600
10601 1999-02-24 Nick Clifton <nickc@cygnus.com>
10602
10603 * config.sub: Fix typo in arm recognition.
10604
10605 1999-02-24 Drew Moseley <dmoseley@cygnus.com>
10606
10607 * configure.in (noconfigdirs): Changed target_configdirs to
10608 include target-bsp only for m68k-*-elf* and m68k-*-coff*
10609 rather than m68k-*-* since it is not known to work on
10610 m68k-aout. Ditto for arm-*-*oabi.
10611
10612 1999-02-24 Stan Shebs <shebs@andros.cygnus.com>
10613
10614 * configure.in (*-*-windows*): Remove, no longer used.
10615
10616 1999-02-19 Ben Elliston <bje@cygnus.com>
10617
10618 * config.guess: Automatically recognise ELF on FreeBSD. From Niall
10619 Smart and improved by Andrew Cagney.
10620
10621 1999-02-18 Marc Espie <espie@cvs.openbsd.org>
10622
10623 * config.guess: Recognize openbsd-*-hppa.
10624
10625 1999-02-17 H.J. Lu (hjl@gnu.org)
10626
10627 * Makefile.in (REALLY_SET_LIB_PATH): Append $$$(RPATH_ENVVAR)
10628 only if it is not empty.
10629
10630 1999-02-17 Nick Clifton <nickc@cygnus.com>
10631
10632 Patch from: Scott Bambrough <scottb@corelcomputer.com>
10633
10634 * config.guess: Modified to recognize uname's armv* syntax.
10635
10636 * config.sub: Modified to recognize uname's armv* syntax.
10637
10638 1999-02-17 Mark Salter <msalter@cygnus.com>
10639
10640 * configure.in: Added target-bsp for sparclite.
10641
10642 1999-02-08 Richard Henderson <rth@cygnus.com>
10643
10644 * config.sub: Recognize alphapca5[67] and up to alphaev8.
10645
10646 1999-02-08 Nick Clifton <nickc@cygnus.com>
10647
10648 * configure.in: Add support for strongarm port.
10649 * config.sub: Add support for strongarm target.
10650
10651 1999-02-07 Mumit Khan <khan@xraylith.wisc.edu>
10652
10653 * configure.in (*-*-cygwin32*): Use config/mh-cygwin instead of
10654 the old name config/mh-cygwin32.
10655 Enable texinfo.
10656
10657 1999-02-04 Ian Lance Taylor <ian@cygnus.com>
10658
10659 * configure.in: Do build ld for ix86 Solaris.
10660
10661 1999-02-02 Jim Wilson <wilson@cygnus.com>
10662
10663 * Makefile.in (EXTRA_GCC_FLAGS): Set AR to $AR instead of
10664 $AR_FOR_TARGET. Likewise for RANLIB.
10665
10666 1999-02-02 Catherine Moore <clm@cygnus.com>
10667
10668 * config.sub (oabi): Recognize.
10669 * configure.in (arm-*-oabi): Handle.
10670
10671 1999-01-30 Robert Lipe (robertlipe@usa.net)
10672
10673 * config.guess: Improve detection of i686 on UnixWare 7.
10674
10675 1999-01-30 Mumit Khan <khan@xraylith.wisc.edu>
10676
10677 * config.guess: Add support for i386-pc-interix.
10678 * config.sub: Likewise.
10679 * configure.in: Likewise.
10680
10681 1999-01-18 Christopher Faylor <cgf@cygnus.com>
10682
10683 * Makefile.in: Remove unneeded all-target-libio from
10684 from all-target-winsup target since it is now unneeded.
10685 Add all-target-libtermcap in its place since it is now
10686 needed.
10687
10688 1998-12-30 Christopher Faylor <cgf@cygnus.com>
10689
10690 * configure.in: makefile stub for cygwin target is probably
10691 unnecessary. Remove it for now.
10692
10693 1998-12-30 Christopher Faylor <cgf@cygnus.com>
10694
10695 * configure.in: libtermcap.a should be built when cygwin is the
10696 target as well as the host.
10697 * config.guess: Allow mixed case in cygwin uname output.
10698 * Makefile.in: Add libtermcap target.
10699
10700 1998-12-23 Jeffrey A Law (law@cygnus.com)
10701
10702 * config.sub: Clean up handling of hppa2.0.
10703
10704 1998-12-22 Rodney Brown (rodneybrown@pmsc.com)
10705
10706 * config.guess: Use C code to identify more HP machines.
10707
10708 Thu Dec 17 01:22:30 1998 Jeffrey A Law (law@cygnus.com)
10709
10710 * config.sub: Handle hppa2.0.
10711
10712 Tue Dec 15 17:02:58 1998 Bob Manson <manson@charmed.cygnus.com>
10713
10714 * configure.in: Add cygmon for x86-coff and x86-elf. Configure
10715 cygmon for all sparclite targets, regardless of object format.
10716
10717 1998-12-15 Mark Salter <msalter@cygnus.com>
10718
10719 * configure.in: Added target-bsp for several target architectures.
10720
10721 * Makefile.in: Added rules for bsp.
10722
10723 Fri Dec 4 01:34:02 1998 Jeffrey A Law (law@cygnus.com)
10724
10725 * config.guess: Improve detection of hppa2.0 processors.
10726
10727 Fri Dec 4 01:33:05 1998 Niall Smart <nialls@euristix.ie>
10728
10729 * config.guess: Recognize FreeBSD using ELF automatically.
10730
10731 1998-11-26 Manfred Hollstein <manfred@s-direktnet.de>
10732
10733 * configure (skip-this-dir): Add handling for new shell script, which
10734 might be created by a sub-directory's configure to indicate, this particular
10735 directory is "unwanted".
10736 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): Likewise.
10737
10738 Wed Nov 18 18:28:45 1998 Geoffrey Noer <noer@cygnus.com>
10739
10740 * ltconfig: import from libtool, after changing libtool to
10741 account for the cygwin name change.
10742
10743 Wed Nov 18 18:09:14 1998 Geoffrey Noer <noer@cygnus.com>
10744
10745 * Makefile.in: CC_FOR_TARGET and CXX_FOR_TARGET should also
10746 include newlib/libc/sys/cygwin and newlib/libc/sys/cygwin32.
10747
10748 Wed Nov 18 20:13:29 1998 Christopher Faylor <cgf@cygnus.com>
10749
10750 * configure.in: Add libtermcap to list of cygwin dependencies.
10751
10752 1998-11-17 Geoffrey Noer <noer@cygnus.com>
10753
10754 * Makefile.in: modify CC_FOR_TARGET and CXX_FOR_TARGET so that
10755 they include winsup/include when it's a cygwin target.
10756
10757 1998-11-12 Tom Tromey <tromey@cygnus.com>
10758
10759 * configure.in (host_tools): Added zip.
10760 * Makefile.in (all-target-libjava): Depend on all-zip.
10761 (all-zip): New target.
10762 (ALL_MODULES): Added all-zip.
10763 (NATIVE_CHECK_MODULES): Added check-zip.
10764 (INSTALL_MODULES): Added install-zip.
10765 (CLEAN_MODULES): Added clean-zip.
10766
10767 1998-11-12 Geoffrey Noer <noer@cygnus.com>
10768
10769 * Makefile.in: lose "32" from comment about cygwin.
10770
10771 1998-11-05 Nick Clifton <nickc@cygnus.com>
10772
10773 * configure.in: Use -Os to build target libraries for the fr30.
10774
10775 1998-11-04 Dave Brolley <brolley@cygnus.com>
10776
10777 * config.sub: Add fr30.
10778
10779 1998-11-02 Geoffrey Noer <noer@cygnus.com>
10780
10781 * configure.in: drop "32" from config/mh-cygwin32. Check
10782 cygwin* instead of cygwin32*.
10783 * config.sub: Check cygwin* instead of cygwin32*.
10784
10785 1998-10-22 Robert Lipe <robertl@dgii.com>
10786
10787 * config.guess: Match any version of Unixware7.
10788
10789 1998-10-20 Syd Polk <spolk@cygnus.com>
10790
10791 * Makefile.in configure.in: Add the ability to use tcl8.1 and tk8.1
10792 if desired.
10793
10794 1998-10-18 Jeffrey A Law (law@cygnus.com)
10795
10796 * config.if (cxx_interface, libstdcxx_interface): Do not try to set
10797 these if the appropriate directories and files to not exist.
10798
10799 1998-10-14 Jeffrey A Law (law@cygnus.com)
10800
10801 * Makefile.in (DEVO_SUPPORT): Add config.if.
10802
10803 1998-10-13 Manfred Hollstein <manfred@s-direktnet.de>
10804
10805 * configure: Add pattern to replace "build_tooldir"'s
10806 definition in the generated Makefile with "tooldir"'s
10807 actual value.
10808
10809 Tue Oct 13 09:17:06 1998 Jeffrey A Law (law@cygnus.com)
10810
10811 * config.sub: Bring back lost sparcv9.
10812
10813 * Makefile.in (all-snvavigator): Remove all-flexlm dependency.
10814
10815 Mon Oct 12 12:09:44 1998 Jeffrey A Law (law@cygnus.com)
10816
10817 * Makefile.in (CHILL_FOR_TARGET): Mirror recent changes to
10818 CC_FOR_TARGET and friends.
10819
10820 Mon Oct 12 12:09:30 1998 Alexandre Oliva <oliva@dcc.unicamp.br>
10821
10822 * Makefile.in (build_tooldir): New variable, same as tooldir.
10823 (CC_FOR_TARGET, GCC_FOR_TARGET, CXX_FOR_TARGET): Add
10824 -B$(build_tooldir)/bin/.
10825 (BASE_FLAGS_TO_PASS): Pass build_tooldir down.
10826
10827 Wed Sep 30 22:20:50 1998 Robert Lipe <robertl@dgii.com>
10828
10829 * config.sub: Add support for i[34567]86-pc-udk.
10830 * configure.in: Likewise.
10831
10832 Wed Sep 30 19:23:48 1998 Geoffrey Noer <noer@cygnus.com>
10833
10834 * Makefile.in: add bzip2 package building bits for user
10835 tools module
10836 * configure.in: ditto
10837
10838 Wed Sep 30 03:00:05 1998 Jeffrey A Law (law@cygnus.com)
10839
10840 * Makefile.in (TARGET_CONFIGDIRS): Add libobjc.
10841 (ALL_TARGET_MODULES): Add all-target-libobjc.
10842 (CONFIGURE_TARGET_MODULES, CHECK_TARGET_MODULES): Similarly.
10843 (INSTALL_TARGET_MODULES, CLEAN_TARGET_MODULES): Similarly.
10844 (all-target-libchill): Add dependencies.
10845 * configure.in (target_libs): Add libchill.
10846
10847 1998-09-30 Manfred Hollstein <manfred@s-direktnet.de>
10848
10849 * configure.in (target_subdir): Remove duplicate line.
10850
10851 Tue Sep 29 22:45:41 1998 Felix Lee <flee@cygnus.com>
10852
10853 * Makefile.in (all-automake): fix dependencies.
10854
10855 Mon Sep 28 04:04:27 1998 Jeffrey A Law (law@cygnus.com)
10856
10857 * configure.in: Minor cleanups for building in the $(target_alias)
10858 subdir.
10859
10860 1998-09-22 Jim Wilson <wilson@cygnus.com>
10861
10862 * Makefile.in (bootstrap): Set r and s before make all. Use
10863 BASE_FLAGS_TO_PASS in make all.
10864 (cross): Likewise.
10865
10866 1998-09-20 Mark Mitchell <mark@markmitchell.com>
10867
10868 * Makefile.in (bootstrap): Pass TARGET_FLAGS_TO_PASS to `make all'.
10869
10870 Sun Sep 20 00:13:02 1998 Richard Henderson <rth@cygnus.com>
10871
10872 * config.sub: Fix typo in last change.
10873
10874 1998-09-19 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
10875
10876 * config.sub: Add support for C4x target.
10877 * configure.in: Likewise.
10878
10879 1998-09-13 David S. Miller <davem@pierdol.cobaltmicro.com>
10880
10881 * config.sub: Recognize sparcv9 just like sparc64.
10882
10883 Wed Sep 9 15:44:52 1998 Robert Lipe <robertl@dgii.com>
10884
10885 * config.guess: Match "Pent II" or "PentII" for OpenServer.
10886
10887 Tue Sep 8 01:18:39 1998 Jeffrey A Law (law@cygnus.com)
10888
10889 * config.guess: Correctly identify Pentium II sco boxes.
10890
10891 * config.guess: Fix "tr" code. From Weiwen Liu.
10892
10893 Sat Sep 5 13:56:52 1998 John Hughes <john@Calva.COM>
10894
10895 * configure.in: Do not assume x86-svr4 or x86-unixware can handle
10896 stabs.
10897
10898 Sat Sep 5 02:12:02 1998 Jeffrey A Law (law@cygnus.com)
10899
10900 * Makefile.in (TARGET_CONFIGDIRS): Add libchill.
10901 (ALL_TARGET_MODULES): Add all-target-libchill.
10902 (CONFIGURE_TARGET_MODULES, CHECK_TARGET_MODULES): Similarly.
10903 (INSTALL_TARGET_MODULES, CLEAN_TARGET_MODULES): Similarly.
10904 (all-target-libchill): Add dependencies.
10905 * configure.in (target_libs): Add libchill.
10906
10907 Sun Aug 30 22:27:02 1998 Lutz Wohlrab <lutz.wohlrab@informatik.tu-chemnitz.de>
10908
10909 * config.guess: Avoid assumptions about "tr" behaves when
10910 LANG is set to something other than English.
10911
10912 Sun Aug 30 22:14:44 1998 H.J. Lu (hjl@gnu.org)
10913
10914 * configure (gxx_include_dir): Changed to
10915 '${prefix}/include/g++'-${libstdcxx_interface}.
10916
10917 * config.if: New to determine the interfaces.
10918
10919 Sun Aug 30 21:15:19 1998 Mark Klein (mklein@dis.com)
10920
10921 * config.guess: Detect and handle MPE/IX.
10922 * config.sub: Deal with MPE/IX.
10923
10924 Sat Aug 29 14:32:55 1998 David Edelsohn <edelsohn@mhpcc.edu>
10925
10926 * configure.in: Use mh-aix43.
10927
10928 1998-07-29 Manfred Hollstein <manfred@s-direktnet.de>
10929
10930 * configure: Fix --without/--disable cases for gxx-include-dir.
10931
10932 Fri Aug 28 12:28:26 1998 Per Bothner <bothner@cygnus.com>
10933
10934 * mdata-sh: Imported. Needed for automake support.
10935
10936 Thu Aug 13 12:49:29 1998 H.J. Lu <hjl@gnu.org>
10937
10938 * Makefile.in (taz): Try "chmod -R og=u ." before
10939 "chmod og=u `find . -print`".
10940
10941 Fri Jul 31 09:38:33 1998 Catherine Moore <clm@cygnus.com>
10942
10943 * configure.in: Add arm-elf and thumb-elf support.
10944
10945 Mon Jul 27 16:23:58 1998 Doug Evans <devans@canuck.cygnus.com>
10946
10947 * Makefile.in: Undo previous patch.
10948
10949 Fri Jul 24 19:55:24 1998 Doug Evans <devans@canuck.cygnus.com>
10950
10951 * Makefile.in (INSTALL_TARGET): Move EXTRA_TARGET_HOST_INSTALL_MODULES
10952 to here ...
10953 (install-no-fixedincludes): and here
10954 (INSTALL_MODULES): ... from here.
10955
10956 Fri Jul 24 17:01:42 1998 Ian Lance Taylor <ian@cygnus.com>
10957
10958 * config.sub: Merge with FSF.
10959
10960 * config.guess: Merge with FSF.
10961
10962 Fri Jul 24 08:43:36 1998 Doug Evans <devans@canuck.cygnus.com>
10963
10964 * configure (extraconfigdirs): New variable.
10965 (SUBDIRS): Add extraconfigdirs and recurse on them too.
10966 * Makefile.in (all): Move higher in file.
10967 (EXTRA_TARGET_HOST_ALL_MODULES): New variable.
10968 (EXTRA_TARGET_HOST_{INSTALL,CHECK}_MODULES): New variables.
10969 (ALL_MODULES): Add EXTRA_TARGET_HOST_ALL_MODULES.
10970 (CROSS_CHECK_MODULES): Add EXTRA_TARGET_HOST_CHECK_MODULES.
10971 (INSTALL_MODULES): Add EXTRA_TARGET_HOST_INSTALL_MODULES.
10972
10973 1998-07-23 Brendan Kehoe <brendan@cygnus.com>
10974
10975 * Makefile.in (all-target-libjava): Depend on all-gcc and
10976 all-target-newlib.
10977 (configure-target-libjava): Depend on $(ALL_GCC).
10978
10979 Sat Jul 18 14:32:43 CDT 1998 Robert Lipe <robertl@dgii.com>
10980
10981 * config.guess: (*-pc-sco3.2v5) Add detection for Pentium II.
10982 (*-pc-unixware7) Add detection for Pentium II, Pentium Pro.
10983
10984 Fri Jul 17 13:30:18 1998 Ian Lance Taylor <ian@cygnus.com>
10985
10986 * ylwrap: Change absolute path checks to check for DOS style path
10987 names.
10988
10989 * ylwrap: Don't use a full path name if the source file is in the
10990 same directory. From hjl@lucon.org (H.J. Lu).
10991
10992 * config-ml.in: Default to being verbose, to match Feb 18 change to
10993 configure.
10994
10995 Thu Jul 16 12:29:51 1998 Ian Lance Taylor <ian@cygnus.com>
10996
10997 Brought over from egcs:
10998
10999 Sat Jun 27 22:46:32 1998 Jeffrey A Law (law@cygnus.com)
11000
11001 * configure.in (target_subdir): Set to ${target_alias} instead
11002 of "libraries".
11003
11004 Mon Sep 1 16:45:44 1997 Jim Wilson <wilson@cygnus.com>
11005
11006 * configure.in (target_subdir): Set to libraries if enable_multilib.
11007
11008 Wed Jul 15 01:00:54 1998 Ian Lance Taylor <ian@cygnus.com>
11009
11010 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): If there are any
11011 multilibs, force reconfiguration the first time we create
11012 multilib.out in a subdirectory, in case TARGET_SUBDIR is `.'.
11013
11014 Tue Jul 14 23:41:03 1998 Ian Lance Taylor <ian@cygnus.com>
11015
11016 * configure.in: Strip any --no option from CONFIG_ARGUMENTS, to
11017 avoid confusion with --no-recursion.
11018
11019 Tue Jul 14 15:37:41 1998 Geoffrey Noer <noer@cygnus.com>
11020
11021 * configure.in: Win32 hosts shouldn't use install -x
11022 * install-sh: remove -x option, and special .exe-handling
11023 hack.
11024
11025 Tue Jul 14 15:28:41 1998 Richard Henderson <rth@cygnus.com>
11026
11027 * config.guess: Recognize i586-pc-beos.
11028 * configure.in: Don't build some bits for beos.
11029
11030 Tue Jul 14 13:22:18 1998 Ian Lance Taylor <ian@cygnus.com>
11031
11032 * configure: If CC is set but CFLAGS is not, and CC is gcc, make
11033 CFLAGS default to -O2.
11034
11035 * ltmain.sh: Add some hacks to make SunOS --enable-shared work
11036 when using GNU ld.
11037
11038 Fri Jul 10 13:18:23 1998 Ian Lance Taylor <ian@cygnus.com>
11039
11040 * ltmain.sh: Correct install when using a different shell.
11041
11042 Tue Jul 7 15:24:38 1998 Ian Lance Taylor <ian@cygnus.com>
11043
11044 * ltconfig, ltmain.sh: Update to libtool 1.2b.
11045
11046 Thu Jul 2 13:57:36 1998 Klaus Kaempf <kkaempf@rmi.de>
11047
11048 * makefile.vms: Update to build binutils/makefile.vms. Add install
11049 target.
11050
11051 Wed Jul 1 16:45:21 1998 Ian Lance Taylor <ian@cygnus.com>
11052
11053 * ltconfig: Update to correct AIX handling.
11054
11055 Sat Jun 27 22:46:32 1998 Jeffrey A Law (law@cygnus.com)
11056
11057 * Makefile.in (BASE_FLAGS_TO_PASS): Add TARGET_SUBDIR.
11058
11059 * configure.in (target_subdir): Set to ${target_alias} instead
11060 of "libraries".
11061
11062 1998-06-26 Manfred Hollstein <manfred@s-direktnet.de>
11063
11064 * Makefile.in (BASE_FLAGS_TO_PASS): Add gcc_version_trigger.
11065 (Makefile): Depend on $(gcc_version_trigger).
11066
11067 * configure (gcc_version): Change default initializer to empty
11068 string.
11069 (gcc_version_trigger): New variable; pass this variable down
11070 to subdir configures to enable them checking gcc's version
11071 themselves. Emit make macros for both gcc_version vars.
11072 (topsrcdir): Initialize reliably.
11073 (recursion line): Remove --with-gcc-version=${gcc_version}.
11074
11075 1998-06-24 Manfred Hollstein <manfred@s-direktnet.de>
11076
11077 * configure (enable_version_specific_runtime_libs): Implement new flag
11078 --enable-version-specific-runtime-libs which installs C++ runtime stuff
11079 in $(libsubdir); emit definition in each generated Makefile.
11080 (gxx_include_dir): Initialize depending on
11081 $enable_version_specific_runtime_libs.
11082
11083 1998-06-24 Manfred Hollstein <manfred@s-direktnet.de>
11084
11085 * configure (gcc_version): Initialize properly depending on
11086 how and where configure is started.
11087 (recursion line): Pass a --with-gcc-version=${gcc_version}
11088 to configures in subdirs.
11089
11090 Wed Jun 24 16:01:59 1998 John Metzler <jmetzler@cygnus.com>
11091
11092 * configure.in (noconfigdirs): Add configure pattern for mips tx39
11093 cygmon
11094
11095 Tue Jun 23 22:42:32 1998 Mark Alexander <marka@cygnus.com>
11096
11097 * configure.in: Add cygmon and libstub support for mn10200.
11098
11099 1998-06-19 Manfred Hollstein <manfred@s-direktnet.de>
11100
11101 * configure (gcc_version): Add new variable describing the
11102 particular gcc version we're building.
11103 * Makefile.in (libsubdir): Add new macro for the directory
11104 in which the compiler finds executables, libraries, etc.
11105 (BASE_FLAGS_TO_PASS): Pass down gcc_version, target_alias
11106 and libsubdir.
11107
11108 Fri Jun 19 02:36:59 1998 Alexandre Oliva <oliva@dcc.unicamp.br>
11109
11110 * Makefile.in (local-clean): Remove *.log.
11111 (warning.log): Built with warn_summary from build.log.
11112 (mail-report.log): Run test_summary.
11113 (mail-report-with-warnings.log): Run test_summary including
11114 warning.log in the report.
11115
11116 Thu Jun 18 11:26:03 1998 Robert Lipe <robertl@dgii.com>
11117
11118 * config.guess: Detection of Pentium II for *-sco-3.2v5*.
11119
11120 Mon Jun 15 14:53:54 1998 Andrew Cagney <cagney@b1.cygnus.com>
11121
11122 * Makefile.in (grep): Grep no longer depends on libiberty.
11123
11124 Fri Jun 12 14:03:34 1998 Syd Polk <spolk@cygnus.com>
11125
11126 * Makefile.in: all-snavigator needs all-libgui.
11127
11128 Thu Jun 11 19:43:47 1998 Mark Alexander <marka@cygnus.com>
11129
11130 * configure.in: Add cygmon and libstub support for mn10300.
11131
11132 Wed Jun 10 11:19:47 1998 Ian Lance Taylor <ian@cygnus.com>
11133
11134 * missing: Update to version from automake 1.3.
11135
11136 * ltmain.sh: On installation, don't get confused if the same name
11137 appears more than once in the list of library names.
11138
11139 Wed Jun 3 14:51:42 1998 Ian Lance Taylor <ian@cygnus.com>
11140
11141 * config.sub: Accept m68060 and m5200 as CPU names.
11142
11143 Mon Jun 1 17:25:16 1998 Ian Lance Taylor <ian@cygnus.com>
11144
11145 * configure: Use && rather than using -a in test, because odd
11146 strings can confuse test.
11147 * configure.in: Likewise.
11148
11149 Thu May 28 19:31:13 1998 Ian Lance Taylor <ian@cygnus.com>
11150
11151 * ltconfig, ltmain.sh: Bring in Visual C++ support.
11152
11153 Sat May 23 23:44:13 1998 Alexandre Oliva <oliva@dcc.unicamp.br>
11154
11155 * Makefile.in (boostrap2-lean, bootstrap3-lean,
11156 bootstrap4-lean): New targets.
11157
11158 Mon May 11 23:55:56 1998 Jeffrey A Law (law@cygnus.com)
11159
11160 * mpw-* Delete. Not used.
11161
11162 Mon May 11 23:11:34 1998 Jeffrey A Law (law@cygnus.com)
11163
11164 * COPYING.LIB: Update FSF address.
11165
11166 Fri May 8 01:30:20 1998 Ian Lance Taylor <ian@cygnus.com>
11167
11168 * ltconfig, ltmain.sh: Update to libtool 1.2a.
11169
11170 * Makefile.in (GASB_SUPPORT_DIRS): Remove intl; already included via
11171 GAS_SUPPORT_DIRS.
11172
11173 Thu May 7 17:27:35 1998 Ian Lance Taylor <ian@cygnus.com>
11174
11175 * ltconfig, ltmain.sh: Avoid producing a version number if
11176 -version-info was not used.
11177
11178 Tue May 5 18:02:24 1998 Ian Lance Taylor <ian@cygnus.com>
11179
11180 * configure.in: Add --with-newlib to CONFIG_ARGUMENTS if we are
11181 building with newlib.
11182
11183 1998-04-30 Paul Eggert <eggert@twinsun.com>
11184
11185 * Makefile.in (EXTRA_GCC_FLAGS): Remove backslash at end;
11186 Solaris `make' causes it to continue to next definition.
11187
11188 Tue Apr 28 16:24:24 1998 Jason Molenda (crash@bugshack.cygnus.com)
11189
11190 * Makefile.in (install-gdbtk): Call this 'install-gdb' so that
11191 the right GUI libraries and files are installed along with GDB.
11192
11193 Tue Apr 28 18:11:24 1998 Ian Lance Taylor <ian@cygnus.com>
11194
11195 * configure.in: Change alpha to alpha* in several places.
11196
11197 Tue Apr 28 07:42:00 1998 Mark Alexander <marka@cygnus.com>
11198
11199 * config.sub: Recognize sparc86x.
11200
11201 Tue Apr 28 07:35:02 1998 Michael Meissner <meissner@cygnus.com>
11202
11203 * configure.in (--enable-target-optspace): Remove debug echo.
11204
11205 Thu Apr 23 21:31:16 1998 Jim Wilson <wilson@cygnus.com>
11206
11207 * configure: Set CXXFLAGS from CXXFLAGS, not CFLAGS.
11208
11209 Thu Apr 23 12:26:38 1998 Ian Lance Taylor <ian@cygnus.com>
11210
11211 * ltconfig: Update cygwin32 support.
11212
11213 * Makefile.in (GAS_SUPPORT_DIRS): Add intl.
11214 (BINUTILS_SUPPORT_DIRS, GASB_SUPPORT_DIRS): Likewise.
11215 (GDB_SUPPORT_DIRS): Likewise.
11216
11217 Wed Apr 22 12:30:10 1998 Michael Meissner <meissner@cygnus.com>
11218
11219 * configure.in (target_makefile_frag): If --enable-target-optspace,
11220 use -Os to compile target libraries rather than -O2. Default to
11221 using -Os for d10v and m32r if --{enable,disable}-target-optspace is
11222 not used.
11223 * configure.in (target_cflags): Ditto for d30v.
11224
11225 Tue Apr 21 23:06:54 1998 Tom Tromey <tromey@cygnus.com>
11226
11227 * Makefile.in (all-bfd): Depend on all-intl.
11228 (all-binutils): Likewise.
11229 (all-gas): Likewise.
11230 (all-gprof): Likewise.
11231 (all-ld): Likewise.
11232
11233 1998-04-19 Brendan Kehoe <brendan@cygnus.com>
11234
11235 * configure.in (host_tools): Fix typo, lbtool -> libtool.
11236
11237 Fri Apr 17 16:20:42 1998 Ian Lance Taylor <ian@cygnus.com>
11238
11239 * Makefile.in (all-bfd): Depend upon all-libiberty.
11240
11241 * ltconfig, ltmain.sh: Bring in newer cygwin32 support.
11242
11243 Fri Apr 17 12:22:22 1998 Bob Manson <manson@charmed.cygnus.com>
11244
11245 * Makefile.in: Add libstub.
11246
11247 * configure.in: Ditto. Build libstub for targets that have cygmon
11248 support.
11249
11250 Tue Apr 14 18:01:55 1998 Ian Lance Taylor <ian@cygnus.com>
11251
11252 * configure.in: Don't set PICFLAG on ix86-cygwin32.
11253
11254 Tue Apr 14 12:24:45 1998 J. Kean Johnston <jkj@sco.com>
11255
11256 * configure.in: Recognise i[3456]96-*-sysv5* as a valid host, and
11257 use mh-sysv5 if specified. Support gprof on SCO Open Server.
11258
11259 Tue Apr 14 11:33:51 1998 Krister Walfridsson <cato@df.lth.se>
11260
11261 * configure: Define DEFAULT_M4 by searching PATH.
11262 * Makfile.in: Use DEFAULT_M4.
11263
11264 Mon Apr 13 15:37:24 1998 Ian Lance Taylor <ian@cygnus.com>
11265
11266 * ltconfig: Add cygwin32 support.
11267
11268 * Makefile.in, configure.in: Add libtool as a native only directory
11269 to configure and build.
11270
11271 Sun Apr 12 20:58:46 1998 Jeffrey A Law (law@cygnus.com)
11272
11273 * Makefile.in (INSTALL_MODULES): Remove texinfo.
11274
11275 Wed Apr 8 13:18:56 1998 Philippe De Muyter <phdm@macqel.be>
11276
11277 * Makefile.in (EXTRA_GCC_FLAGS): XFOO lines shortened.
11278
11279 Thu Apr 2 14:48:44 1998 Geoffrey Noer <noer@cygnus.com>
11280
11281 * Makefile.in: add ash make rules
11282 * configure.in: add ash to native_only and host_tools lists
11283
11284 Thu Mar 26 12:53:20 1998 Tom Tromey <tromey@cygnus.com>
11285
11286 * Makefile.in (all-gettext, all-intl): New targets.
11287 (ALL_MODULES): Added all-gettext, all-intl.
11288 (CROSS_CHECK_MODULES): Added check-gettext, check-intl.
11289 (INSTALL_MODULES): Added install-gettext, install-intl.
11290 (CLEAN_MODULES): Added clean-gettext, clean-intl.
11291
11292 * configure.in (host_tools): Added gettext.
11293 (native_only): Likewise.
11294 (noconfigdirs) [various cases]: Likewise.
11295 (host_libs): Added intl.
11296
11297 Thu Mar 26 15:00:11 1998 Keith Seitz <keiths@onions.cygnus.com>
11298
11299 * configure: Do not disable building gdbtk for cygwin32 hosts.
11300
11301 Wed Mar 25 10:04:18 1998 Nick Clifton <nickc@cygnus.com>
11302
11303 * configure.in: Add thumb-coff target.
11304 * config.sub: Add thumb-coff target.
11305
11306 Wed Mar 25 11:49:12 1998 Jason Molenda (crash@bugshack.cygnus.com)
11307
11308 * Makefile.in: Revert yesterday's change.
11309 (all-target-winsup): all-target-librx stays out of here.
11310
11311 Tue Mar 24 16:58:29 1998 Jason Molenda (crash@bugshack.cygnus.com)
11312
11313 * Makefile.in (TARGET_CONFIGDIRS, ALL_TARGET_MODULES,
11314 CONFIGURE_TARGET_MODULES, CHECK_TARGET_MODULES,
11315 INSTALL_TARGET_MODULES, CLEAN_TARGET_MODULES, all-target-winsup):
11316 Remove references to librx and libg++.
11317
11318 Tue Mar 24 18:28:12 1998 Eric Mumpower <nocturne@cygnus.com>
11319
11320 * Makefile.in (BASE_FLAGS_TO_PASS): Pass $(lispdir) down to
11321 recursive makes
11322
11323 Tue Mar 24 11:37:45 1998 Ian Lance Taylor <ian@cygnus.com>
11324
11325 * Makefile.in (CC_FOR_TARGET): Use $(TARGET_SUBDIR) when passing -B
11326 for newlib directory.
11327 (CXX_FOR_TARGET): Likewise.
11328
11329 Mon Mar 23 11:30:21 1998 Jeffrey A Law (law@cygnus.com)
11330
11331 * ltconfig: Update after libtool/ltconfig.in change for
11332 hpux11.
11333
11334 Fri Mar 20 18:51:43 1998 Ian Lance Taylor <ian@cygnus.com>
11335
11336 * ltconfig, ltmain.sh: Update to libtool 1.2.
11337
11338 Fri Mar 20 09:32:14 1998 Manfred Hollstein <manfred@s-direktnet.de>
11339
11340 * Makefile.in (install-gcc): Don't specify LANGUAGES here.
11341 (install-gcc-cross): Instead, override LANGUAGES here.
11342
11343 1998-03-18 Dave Love <d.love@dl.ac.uk>
11344
11345 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): Set CONFIG_SITE to a
11346 non-existent file since /dev/null loses with bash 2.0/autoconf 2.12.
11347
11348 Wed Mar 18 09:24:59 1998 Nick Clifton <nickc@cygnus.com>
11349
11350 * configure.in: Add Thumb-pe target.
11351
11352 Tue Mar 17 16:59:00 1998 Syd Polk <spolk@cygnus.com>
11353
11354 * Makefile.in - changed sn targets to snavigator
11355 * configure.in - changed sn targets to snavigator
11356
11357 Tue Mar 17 10:33:28 1998 Manfred Hollstein <manfred@s-direktnet.de>
11358
11359 * config-ml.in: After building symlink tree call make distclean
11360 if a Makefile got linked into ${ml_dir}/${ml_libdir}; this happens
11361 to be the case for libiberty.
11362
11363 Tue Mar 17 10:22:37 1998 H.J. Lu (hjl@gnu.ai.mit.edu)
11364
11365 * configure: When making link, also check the current
11366 directory. The configure scripts may create one.
11367
11368 Fri Mar 6 01:02:03 1998 Richard Henderson <rth@cygnus.com>
11369
11370 * config.sub: Accept alphapca56 and alphaev6 properly.
11371
11372 Fri Mar 6 00:14:55 1998 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
11373
11374 * configure.in: Revert 3 Jan change for powerpc-linux-gnulibc1.
11375
11376 Mon Feb 23 15:09:18 1998 Bruno Haible <bruno@linuix.mathematik.uni-karlsruhe.de
11377
11378 * config.sub (sco5): Fix typo.
11379
11380 Mon Feb 23 14:46:06 1998 Ian Lance Taylor <ian@cygnus.com>
11381
11382 * Makefile.in (INSTALL_MODULES): Move install-tcl before
11383 install-itcl.
11384 (install-itcl): Remove dependency on install-tcl.
11385
11386 Mon Feb 23 09:53:28 1998 Mark Alexander <marka@cygnus.com>
11387
11388 * configure.in: Remove libgloss from noconfigdirs for MN10300.
11389
11390 Thu Feb 19 13:40:41 1998 Ian Lance Taylor <ian@cygnus.com>
11391
11392 * configure.in: Don't build libgui for a cygwin32 target when not on
11393 a cygwin32 host.
11394
11395 Wed Feb 18 12:29:00 1998 Jason Molenda (crash@bugshack.cygnus.com)
11396
11397 * configure (redirect): Set to null, so default behavior of
11398 configure is now --verbose.
11399
11400 1998-02-16 Dave Love <d.love@dl.ac.uk>
11401
11402 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): Run configure with
11403 CONFIG_SITE=/dev/null to forestall lossage with site configuration.
11404
11405 Mon Feb 16 12:23:53 1998 Manfred Hollstein <Manfred.Hollstein@ks.sel.alcatel.de>
11406
11407 * Makefile.in (BASE_FLAGS_TO_PASS, EXTRA_TARGET_FLAGS): Really add
11408 this change to sync Makefile.in with its ChangeLog entries.
11409
11410 Thu Feb 12 15:03:08 1998 H.J. Lu <hjl@gnu.org>
11411
11412 * ltmain.sh (mkdir): Check that the directory doesn't exist
11413 before we exit with error, so that we don't get races during
11414 parallel builds.
11415
11416 Sat Feb 7 15:19:18 1998 Ian Lance Taylor <ian@cygnus.com>
11417
11418 * ltconfig, ltmain.sh: Update from libtool 1.0i.
11419
11420 Fri Feb 6 01:33:52 1998 Manfred Hollstein <manfred@s-direktnet.de>
11421
11422 * Makefile.in (BASE_FLAGS_TO_PASS): Don't pass PICFLAG and
11423 PICFLAG_FOR_TARGET.
11424 (EXTRA_TARGET_FLAGS): Don't pass PICFLAG_FOR_TARGET.
11425
11426 * configure: Emit a definition for the new macro enable_shared
11427 into each Makefile.
11428
11429 Thu Feb 5 17:01:12 1998 Jason Molenda (crash@bugshack.cygnus.com)
11430
11431 * configure.in (host_tools, native_only): Add libtool.
11432
11433 Wed Feb 4 16:53:58 1998 Geoffrey Noer <noer@cygnus.com>
11434
11435 * configure.in: add target-gperf to noconfigdirs for Cygwin32.
11436 Fix typo in ming config comment.
11437
11438 Wed Feb 4 18:56:13 1998 Ian Lance Taylor <ian@cygnus.com>
11439
11440 * ltconfig, ltmain.sh: Update from libtool 1.0h.
11441
11442 Mon Feb 2 19:38:19 1998 Ian Lance Taylor <ian@cygnus.com>
11443
11444 * config.sub: Add tic30 cases, and map c30 to tic30.
11445
11446 Sun Feb 1 02:40:41 1998 Richard Henderson <rth@cygnus.com>
11447
11448 * Makefile.in (TARGET_CONFIGDIRS): Add libf2c.
11449 (ALL_TARGET_MODULES, CONFIGURE_TARGET_MODULES): Similarly
11450 (CHECK_TARGET_MODULES, INSTALL_TARGET_MODULES): Similarly
11451 (CLEAN_TARGET_MODULES): Similarly
11452 (all-target-libf2c): Add dependences.
11453 * configure.in (target_libs): Add libf2c.
11454
11455 Fri Jan 30 17:18:32 1998 Geoffrey Noer <noer@cygnus.com>
11456
11457 * configure.in: Remove expect from noconfigdirs when target
11458 is cygwin32. OK to build expect and dejagnu with Canadian
11459 Cross.
11460
11461 Wed Jan 28 12:58:49 1998 Ian Lance Taylor <ian@cygnus.com>
11462
11463 * configure.in: Do build expect, dejagnu, and cvssrc for a cygwin32
11464 host.
11465
11466 * config.guess: Use ${UNAME_MACHINE} rather than i386 for cygwin32
11467 and mingw32.
11468
11469 Wed Jan 28 10:26:37 1998 Manfred Hollstein <manfred@s-direktnet.de>
11470
11471 * Makefile.in (BASE_FLAGS_TO_PASS): Remove passing $(local_prefix)
11472 here as it is not defined in the toplevel Makefile.
11473
11474 Tue Jan 27 23:25:06 1998 Manfred Hollstein <manfred@s-direktnet.de>
11475
11476 * configure (package_makefile_rules_frag): New variable, which names
11477 a file with generic rules, ...
11478 Change comment to mention we now have FIVE parts.
11479 * configure: Undo last change.
11480
11481 Tue Jan 27 23:15:55 1998 Lassi A. Tuura <lat@iki.fi>
11482
11483 * config.guess: More accurate determination of HP processor types.
11484 * config.sub: More accurate determination of HP processor types.
11485
11486 Sat Jan 24 01:59:45 1998 Manfred Hollstein <manfred@s-direktnet.de>
11487
11488 * configure (package_makefile_frag): Move inserting the
11489 ${package_makefile_frag} to where it should be according
11490 to the comment.
11491
11492 Fri Jan 23 00:29:28 1998 Philip Blundell <pb@nexus.co.uk>
11493
11494 * config.guess: Add support for Linux/ARM.
11495
11496 Thu Jan 22 15:14:01 1998 Fred Fish <fnf@cygnus.com>
11497
11498 * .cvsignore: Remove *-info and *-install since they match
11499 release-info and mpw-install, which we don't want to just ignore.
11500
11501 Thu Jan 22 01:38:33 1998 Richard Henderson <rth@cygnus.com>
11502
11503 * configure.in: Revert 3 Jan change for alpha-linux-gnulibc1.
11504
11505 Sat Jan 17 21:28:08 1998 Pieter Nagel <pnagel@epiuse.co.za>
11506
11507 * Makefile.in (FLAGS_TO_PASS): Pass down gcc_include_dir and
11508 local_prefix to sub-make invocations.
11509
11510 Sat Jan 17 21:04:59 1998 H.J. Lu (hjl@gnu.org)
11511
11512 * configure.in: Check makefile fragments in the source
11513 directory.
11514
11515 Fri Jan 16 00:41:37 1998 Alexandre Oliva <oliva@dcc.unicamp.br>
11516
11517 * configure.in: Check whether host and target makefile
11518 fragments exist before adding them to *_makefile_frag.
11519
11520 Wed Jan 14 23:39:10 1998 Bob Manson <manson@charmed.cygnus.com>
11521
11522 * configure.in (target_configdirs): Add cygmon for sparc64-elf.
11523
11524 Wed Jan 14 12:48:07 1998 Keith Seitz <keiths@pizza.cygnus.com>
11525
11526 * configure.in: Make sure we only replace RPATH_ENVVAR on
11527 lines which begin with RPATH_ENVVAR, i.e. add "^" to the
11528 regexp to sed.
11529
11530 * Makefile.in (BASE_FLAGS_TO_PASS): Pass RRPATH_ENVVAR down
11531 to sub-makes.
11532
11533 1998-01-13 Lee Iverson (leei@ai.sri.com)
11534
11535 * config-ml.in (multi-do): LDFLAGS must include multilib
11536 designator.
11537
11538 Tue Jan 13 01:13:24 1998 Robert Lipe (robertl@dgii.com)
11539
11540 * config.guess: Recognize i[3456]-i586-UnixWare7-sysv5.
11541
11542 Sun Jan 4 01:06:55 1998 Mumit Khan <khan@xraylith.wisc.edu>
11543
11544 * config.sub: Add mingw32 support.
11545 * configure.in: Likewise.
11546
11547 Sat Jan 3 12:11:05 1998 Franz Sirl <franz.sirl-kernel@lauterbach.com>
11548
11549 * configure.in: Finalize support for {alpha|powerpc}*-*-linux-gnulibc1
11550
11551 Sun Dec 28 11:28:58 1997 Jeffrey A Law (law@cygnus.com)
11552
11553 * Makefile.in (INSTALL_TARGET): Do install-gcc first.
11554 * configure (gxx_include_dir): Provide a definition for subdirs
11555 which do not use autoconf.
11556
11557 Wed Dec 24 22:46:55 1997 Jeffrey A Law (law@cygnus.com)
11558
11559 * config.guess: Sync with egcs. Picks up new alpha support,
11560 BeOS & some additional linux support.
11561
11562 Tue Dec 23 12:44:24 1997 Jeffrey A Law (law@cygnus.com)
11563
11564 * config.guess: HP 9000/803 is a PA1.1 machine.
11565
11566 Mon Dec 22 02:39:24 1997 Richard Henderson <rth@cygnus.com>
11567
11568 * configure.in: It's alpha*-...
11569
11570 Sun Dec 21 16:53:12 1997 H.J. Lu (hjl@gnu.ai.mit.edu)
11571
11572 * configure.in (host_makefile_frag, target_makefile_frag):
11573 Handle multiple config files.
11574 (alpha-*-linux*): Treat alpha-*-linux* as alpha-*-linux* and
11575 alpha-*-*.
11576
11577 Thu Dec 18 13:13:03 1997 Doug Evans <devans@canuck.cygnus.com>
11578
11579 * mkdep: New file.
11580
11581 Wed Dec 17 09:53:02 1997 Michael Meissner <meissner@cygnus.com>
11582
11583 * configure.in (d30v-*-*): Allow configuring of libide, vmake, etc.
11584
11585 Tue Dec 16 17:36:05 1997 Ian Lance Taylor <ian@cygnus.com>
11586
11587 * Makefile.in: Add libgui directory.
11588 (GDB_TK): Add all-libgui.
11589 * configure.in: Add libgui directory.
11590 * configure: Add all-libgui to GDB_TK.
11591
11592 Mon Dec 15 16:12:28 1997 Nick Clifton <nickc@cygnus.com>
11593
11594 * config-ml.in (multidirs): Add m32r to multilib list.
11595
11596 Fri Dec 12 10:43:31 1997 Brendan Kehoe <brendan@canuck.cygnus.com>
11597
11598 * Makefile.in (all-target-gperf): Change dependency to
11599 all-target-libstdc++.
11600
11601 Thu Dec 11 23:30:51 1997 Fred Fish <fnf@ninemoons.com>
11602
11603 * config.guess: Add BeOS support.
11604
11605 Wed Dec 10 15:10:38 1997 Ian Lance Taylor <ian@cygnus.com>
11606
11607 Source directory cvs renamed to cvssrc:
11608 * configure.in (host_tools): Change cvs to cvssrc.
11609 (native_only): Likewise.
11610 (noconfigdirs) [various cases]: Likewise.
11611 * Makefile.in (ALL_MODULES): Change all-cvs to all-cvssrc.
11612 (CROSS_CHECK_MODULES): Change check-cvs to check-cvssrc.
11613 (INSTALL_MODULES): Change install-cvs to install-cvssrc.
11614 (CLEAN_MODULES): Change clean-cvs to clean-cvssrc.
11615 (all-cvssrc): Rename target from all-cvs.
11616
11617 Wed Dec 3 07:55:59 1997 Jeffrey A Law (law@cygnus.com)
11618
11619 * configure (gxx_include_dir): Fix thinko.
11620
11621 Tue Dec 2 10:55:34 1997 Jeffrey A Law (law@cygnus.com)
11622
11623 * Makefile.in (INSTALL_TARGET_CROSS): Define.
11624 (install-cross, install-gcc-cross): New targets.
11625
11626 Tue Dec 2 10:08:31 1997 Nick Clifton <nickc@cygnus.com>
11627
11628 * configure.in (noconfigdirs): Add support for Thumb target.
11629
11630 * config.sub (maybe_os): Add support for Thumb target.
11631
11632 Sun Nov 30 16:12:27 1997 Bob Manson <manson@charmed.cygnus.com>
11633
11634 * Makefile.in: Add rules for cygmon.
11635
11636 * configure.in: Build cygmon for sparc-elf and sparclite-aout.
11637
11638 Thu Nov 27 01:31:30 1997 Jeffrey A Law (law@cygnus.com)
11639
11640 * Makefile.in (INSTALL_TARGET): Do install-gcc first.
11641 * configure (gxx_include_dir): Provide a definition for subdirs
11642 which do not use autoconf.
11643
11644 Wed Nov 26 11:53:33 1997 Keith Seitz <keiths@onions.cygnus.com>
11645
11646 * Makefile.in, configure, configure.in, ChangeLog: merge with foundry's
11647 11/18/97 build
11648
11649 Wed Nov 26 16:08:50 1997 Jeffrey A Law (law@cygnus.com)
11650
11651 * From Franz Sirl.
11652 * config.guess (powerpc*-*-linux): Handle glibc2 beta release
11653 found on RedHat Linux systems.
11654
11655 Fri Nov 21 09:51:01 1997 Jeffrey A Law (law@cygnus.com)
11656
11657 * config.guess (alpha stuff): Merge with FSF to avoid incorrect
11658 guesses.
11659
11660 Thu Nov 13 11:38:37 1997 Jeffrey A Law (law@cygnus.com)
11661
11662 * configure.in (i[3456]86-ncr-sysv4.3*): Tweak.
11663
11664 Mon Nov 10 15:23:21 1997 H.J. Lu <hjl@gnu.ai.mit.edu>
11665
11666 * ltmain.sh: If mkdir fails, check whether the directory was created
11667 anyhow by some other process.
11668
11669 Mon Nov 10 14:38:03 1997 Michael Meissner <meissner@cygnus.com>
11670
11671 * configure.in (d30v-*-*): Configure all directories.
11672
11673 Sun Nov 9 17:36:20 1997 Michael Meissner <meissner@cygnus.com>
11674
11675 * configure.in (d30v-*-*): Configure newlib, libiberty directories
11676 for the D30V.
11677
11678 Sat Nov 8 14:42:59 1997 Michael Meissner <meissner@cygnus.com>
11679
11680 * configure.in (d30v-*-*): Configure target-libgloss on the D30V.
11681
11682 Fri Nov 7 10:34:09 1997 Rob Savoye <rob@darkstar.cygnus.com>
11683
11684 * include/libiberty.h: Add extern "C" { so it can be used with C++
11685 progrms.
11686 * include/remote-sim.h: Add extern "C" { so it can be used with C++
11687 programs.
11688
11689 Thu Oct 30 11:09:29 1997 Michael Meissner <meissner@cygnus.com>
11690
11691 * configure.in (d30v-*-*): Configure GCC now.
11692
11693 Mon Oct 27 13:17:24 1997 Stan Shebs <shebs@andros.cygnus.com>
11694
11695 * configure.in: Remove a "second pass" of tweaking noconfigdirs,
11696 is no longer needed.
11697
11698 Mon Oct 27 12:03:53 1997 Jason Merrill <jason@yorick.cygnus.com>
11699
11700 * Makefile.in: check-target-libio depends on all-target-libstdc++.
11701
11702 Sun Oct 26 11:48:27 1997 Manfred Hollstein (manfred@s-direktnet.de)
11703
11704 * Makefile.in (bootstrap-lean): Combined with `normal' bootstrap
11705 targets using "$@" to provide support for similar but not identical
11706 targets without having to duplicate code.
11707
11708 Mon Oct 20 15:28:49 1997 Klaus K"ampf <kkaempf@progis.de>
11709
11710 * makefile.vms: Fix to work with DEC C.
11711
11712 Tue Oct 7 23:58:57 1997 Gavin Koch <gavin@cygnus.com>
11713
11714 * config.sub: Add mips-tx39-elf to marketing names.
11715
11716 Tue Oct 7 14:24:41 1997 Ian Lance Taylor <ian@cygnus.com>
11717
11718 * ltmain.sh: Handle symlinks in generated script.
11719
11720 Wed Oct 1 13:11:27 1997 Ian Lance Taylor <ian@cygnus.com>
11721
11722 * configure: Handle autoconf style directory options: --bindir,
11723 --datadir, --includedir, --infodir, --libdir, --libexecdir,
11724 --mandir, --oldincludedir, --sbindir, --sharedstatedir,
11725 --sysconfdir.
11726 * Makefile.in (sbindir, libexecdir, sysconfdir): New variables.
11727 (sharedstatedir, localstatedir, oldincludedir): New variables.
11728 (BASE_FLAGS_TO_PASS): Pass down bindir, datadir, includedir,
11729 infodir, libdir, libexecdir, localstatedir, mandir, oldincludedir,
11730 sbindir, sharedstatedir, and sysconfdir.
11731
11732 Mon Sep 29 00:38:08 1997 Aaron Jackson <jackson@negril.msrce.howard.edu>
11733
11734 * Makefile.in (bootstrap-lean): New target.
11735
11736 Wed Sep 24 18:06:27 1997 Stu Grossman <grossman@babylon-5.cygnus.com>
11737
11738 * configure.in (d30v): Remove tcl, tk, expect, gdb, itcl, tix, db,
11739 sn, and gnuserv from noconfigdirs.
11740
11741 Wed Sep 24 15:18:32 1997 Ian Lance Taylor <ian@cygnus.com>
11742
11743 * ltmain.sh: Tweak shell pattern to avoid bug in NetBSD /bin/sh.
11744
11745 Thu Sep 18 23:58:27 1997 Jeffrey A Law (law@cygnus.com)
11746
11747 * Makefile.in (cross): New target.
11748
11749 Thu Sep 18 21:43:23 1997 Alexandre Oliva <oliva@dcc.unicamp.br>
11750 Jeff Law <law@cygnus.com>
11751
11752 * Makefile.in (bootstrap2, bootstrap3): New targets.
11753 (all-bootstrap): Remove outdated and confusing target.
11754 (bootstrap, bootstrap2, bootstrap3): Don't pass BOOT_CFLAGS down.
11755
11756 Thu Sep 18 15:37:42 1997 Andrew Cagney <cagney@b1.cygnus.com>
11757
11758 * configure (tooldir): enable_gdbtk=YES for cygwin32, NO for
11759 windows. Consistent with gdb/configure.
11760
11761 1997-09-15 02:37 Ulrich Drepper <drepper@cygnus.com>
11762
11763 * configure.in: Name Linux target fragment.
11764
11765 * configure: Rewrite so that project Makefile fragment is inserted
11766 first and appears last in the resulting Makefile.
11767
11768 Tue Sep 16 09:55:07 1997 Andrew Cagney <cagney@b1.cygnus.com>
11769
11770 * Makefile.in (install-itcl): Install tcl first.
11771
11772 Fri Sep 12 16:19:20 1997 Geoffrey Noer <noer@cygnus.com>
11773
11774 * configure.in: remove bison from noconfigdirs for Cygwin32 host
11775
11776 Thu Sep 11 16:40:46 1997 H.J. Lu (hjl@gnu.ai.mit.edu)
11777
11778 * Makefile.in (local-distclean): Also remove mh-frag mt-frag.
11779
11780 * configure.in (skipdirs): Add target-librx for Linux.
11781 (alpha-*-linux*): Use config/mh-elfalphapic and config/mt-elfalphapic.
11782
11783 Wed Sep 10 21:29:54 1997 Jeffrey A Law (law@cygnus.com)
11784
11785 * Makefile.in (bootstrap): New target.
11786
11787 Wed Sep 10 15:19:22 1997 Jeffrey A Law (law@cygnus.com)
11788
11789 * config.sub: Accept 'amigados' for backward compatability.
11790
11791 Mon Sep 8 20:46:20 1997 Ian Lance Taylor <ian@cygnus.com>
11792
11793 * config.guess: Merge with FSF.
11794
11795 Sun Sep 7 23:18:32 1997 Fred Fish <fnf@ninemoons.com>
11796
11797 * config.sub: Change 'amigados' to 'amigaos' to match current usage.
11798
11799 Sun Sep 7 15:55:28 1997 Gavin Koch <gavin@cygnus.com>
11800
11801 * config.sub: Add "marketing-names" patch.
11802
11803 Fri Sep 5 16:11:28 1997 Joel Sherrill (joel@OARcorp.com)
11804
11805 * configure.in (*-*-rtems*): Do not build libgloss for rtems.
11806
11807 Fri Sep 5 12:27:17 1997 Jeffrey A Law (law@cygnus.com)
11808
11809 * config.sub: Handle v850-elf.
11810
11811 Wed Sep 3 22:01:58 1997 Fred Fish <fnf@ninemoons.com>
11812
11813 * .cvsignore (*-install): Remove.
11814
11815 Wed Sep 3 12:15:24 1997 Chris Provenzano <proven@cygnus.com>
11816
11817 * ltconfig: Set CONFIG_SHELL in libtool.
11818 * ltmain.sh: Use CONFIG_SHELL instead of /bin/sh
11819
11820 Mon Sep 1 16:45:44 1997 Jim Wilson <wilson@cygnus.com>
11821
11822 * configure.in (target_subdir): Set to libraries if enable_multilib.
11823
11824 Wed Aug 27 16:15:11 1997 Jim Wilson <wilson@cygnus.com>
11825
11826 * config.guess: Update from gcc directory.
11827
11828 Tue Aug 26 16:46:46 1997 Andrew Cagney <cagney@b1.cygnus.com>
11829
11830 * Makefile.in (all-sim): Depends on all-readline.
11831
11832 Wed Aug 20 19:57:37 1997 Jason Merrill <jason@yorick.cygnus.com>
11833
11834 * Makefile.in (BISON, YACC): Use $$s.
11835 (all-bison): Depend on all-texinfo.
11836
11837 Tue Aug 19 01:41:32 1997 Jason Merrill <jason@yorick.cygnus.com>
11838
11839 * Makefile.in (BISON): Add -L flag.
11840 (YACC): Likewise.
11841
11842 Mon Aug 18 11:30:50 1997 Nick Clifton <nickc@cygnus.com>
11843
11844 * configure.in (noconfigdirs): Add support for v850e target.
11845
11846 * config.sub (maybe_os): Add support for v850e target.
11847
11848 Mon Aug 18 11:30:50 1997 Nick Clifton <nickc@cygnus.com>
11849
11850 * configure.in (noconfigdirs): Add support for v850ea target.
11851
11852 * config.sub (maybe_os): Add support for v850ea target.
11853
11854 Mon Aug 18 09:24:06 1997 Gavin Koch <gavin@cygnus.com>
11855
11856 * config.sub: Add mipstx39. Delete r3900.
11857
11858 Mon Aug 18 17:20:10 1997 Jason Molenda (crash@godzilla.cygnus.co.jp)
11859
11860 * Makefile.in (all-autoconf): Depends on all-texinfo.
11861
11862 Fri Aug 15 23:09:26 1997 Michael Meissner <meissner@cygnus.com>
11863
11864 * config-ml.in ({powerpc,rs6000}*-*-*): Update to current AIX and
11865 eabi targets.
11866
11867 Thu Aug 14 14:42:17 1997 Ian Lance Taylor <ian@cygnus.com>
11868
11869 * configure: Get CFLAGS and CXXFLAGS from Makefile, if possible.
11870
11871 * configure: When handling a Canadian Cross, handle YACC as well as
11872 BISON. Just set BISON to bison. When setting YACC, prefer bison.
11873 * Makefile.in (all-bison): Depend upon all-texinfo.
11874
11875 Tue Aug 12 20:09:48 1997 Jason Merrill <jason@yorick.cygnus.com>
11876
11877 * Makefile.in (BISON): bison, not byacc or bison -y.
11878 (YACC): bison -y or byacc or yacc.
11879 (various): Add *-bison as appropriate.
11880 (taz): No need to mess with BISON anymore.
11881
11882 Tue Aug 12 22:33:08 1997 Ian Lance Taylor <ian@cygnus.com>
11883
11884 * configure: If OSTYPE matches *win32*, try to find a good value for
11885 CONFIG_SHELL.
11886
11887 Sun Aug 10 14:41:11 1997 Ian Lance Taylor <ian@cygnus.com>
11888
11889 * Makefile.in (taz): Get the version number from AM_INIT_AUTOMAKE in
11890 configure.in if it is present.
11891
11892 Sat Aug 9 00:58:01 1997 Ian Lance Taylor <ian@cygnus.com>
11893
11894 * Makefile.in (LD_FOR_TARGET): Change ld.new to ld-new.
11895
11896 Fri Aug 8 16:30:13 1997 Doug Evans <dje@canuck.cygnus.com>
11897
11898 * config.sub: Recognize `arc' cpu.
11899 * configure.in: Likewise.
11900 * config-ml.in: Likewise.
11901
11902 Thu Aug 7 11:02:34 1997 Ian Lance Taylor <ian@cygnus.com>
11903
11904 * Makefile.in ($(INSTALL_X11_MODULES)): Depend upon installdirs.
11905
11906 Wed Aug 6 16:27:29 1997 Chris Provenzano <proven@cygnus.com>
11907
11908 * configure: Changed sed delimiter from ':' to '|' when
11909 attempting to substitute ${config_shell} for SHELL. On
11910 NT ${config_shell} may contain a ':' in it.
11911
11912 Wed Aug 6 12:29:05 1997 Jason Merrill <jason@yorick.cygnus.com>
11913
11914 * Makefile.in (EXTRA_GCC_FLAGS): Fix for non-bash shells.
11915
11916 Wed Aug 6 00:42:35 1997 Ian Lance Taylor <ian@cygnus.com>
11917
11918 * Makefile.in (AS_FOR_TARGET): Change as.new to as-new.
11919
11920 Tue Aug 5 14:08:51 1997 Ian Lance Taylor <ian@cygnus.com>
11921
11922 * Makefile.in (NM_FOR_TARGET): Change nm.new to nm-new.
11923
11924 * ylwrap: If the program is a relative path, force it to be
11925 absolute.
11926
11927 Tue Aug 5 12:12:44 1997 Andrew Cagney <cagney@b1.cygnus.com>
11928
11929 * configure (tooldir): Set BISON to `bison -y' and not just bison.
11930
11931 Mon Aug 4 22:59:02 1997 Andrew Cagney <cagney@b1.cygnus.com>
11932
11933 * Makefile.in (CC_FOR_TARGET): When winsup/Makefile present,
11934 correctly specify the target build directory $(TARGET_SUBDIR)/winsup
11935 for libraries.
11936
11937 Mon Aug 4 12:40:24 1997 Jason Merrill <jason@yorick.cygnus.com>
11938
11939 * Makefile.in (EXTRA_GCC_FLAGS): Fix handling of macros with values
11940 separated by spaces.
11941
11942 Thu Jul 31 19:49:49 1997 Ian Lance Taylor <ian@cygnus.com>
11943
11944 * ylwrap: New file.
11945 * Makefile.in (DEVO_SUPPORT): Add ylwrap.
11946
11947 * ltmain.sh: Handle /bin/sh at start of install program.
11948
11949 * Makefile.in (DEVO_SUPPORT): Add ltconfig, ltmain.sh, and missing.
11950
11951 * ltconfig, ltmain.sh: New files, from libtool 1.0.
11952 * missing: New file, from automake 1.2.
11953
11954 Thu Jul 24 12:57:56 1997 Ian Lance Taylor <ian@cygnus.com>
11955
11956 * Makefile.in: Treat tix like tk, putting it in X11_MODULES. Add
11957 check-tk to CHECK_X11_MODULES.
11958
11959 Wed Jul 23 17:03:29 1997 Ian Lance Taylor <ian@cygnus.com>
11960
11961 * config.sub: Merge with FSF.
11962
11963 Tue Jul 22 19:08:29 1997 Ian Lance Taylor <ian@cygnus.com>
11964
11965 * config.guess: Merge with FSF.
11966
11967 Tue Jul 22 14:50:42 1997 Robert Hoehne <robert.hoehne@Mathematik.TU-Chemnitz.DE>
11968
11969 * configure: Treat msdosdjgpp like go32.
11970 * configure.in: Likewise. Don't remove gprof for go32.
11971
11972 * configure: Change Makefile.tem2 to Makefile.tm2.
11973
11974 Mon Jul 21 10:31:26 1997 Stephen Peters <speters@cygnus.com>
11975
11976 * configure.in (noconfigdirs): For alpha-dec-osf*, don't ignore grep.
11977
11978 Tue Jul 15 14:33:03 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
11979
11980 * install-sh (chmodcmd): Set to null if the DST directory already
11981 exists. Same as Nov 11th change.
11982
11983 Mon Jul 14 11:01:15 1997 Martin M. Hunt <hunt@cygnus.com>
11984
11985 * configure (GDB_TK): Needs itcl and tix.
11986
11987 Mon Jul 14 00:32:10 1997 Jason Merrill <jason@yorick.cygnus.com>
11988
11989 * config.guess: Update from FSF.
11990
11991 Fri Jul 11 11:57:11 1997 Martin M. Hunt <hunt@cygnus.com>
11992
11993 * Makefile.in (GDB_TK): Depend on itcl and tix.
11994
11995 Fri Jul 4 13:25:31 1997 Ian Lance Taylor <ian@cygnus.com>
11996
11997 * Makefile.in (INSTALL_PROGRAM_ARGS): New variable.
11998 (INSTALL_PROGRAM): Use $(INSTALL_PROGRAM_ARGS).
11999 (INSTALL_SCRIPT): New variable.
12000 (BASE_FLAGS_TO_PASS): Pass down INSTALL_SCRIPT.
12001 * configure.in: If host is *-*-cygwin32*, set INSTALL_PROGRAM_ARGS
12002 to -x.
12003 * install-sh: Add support for -x option.
12004
12005 Mon Jun 30 15:51:30 1997 Ian Lance Taylor <ian@cygnus.com>
12006
12007 * configure.in, Makefile.in: Treat tix like itcl.
12008
12009 Thu Jun 26 13:59:19 1997 Ian Lance Taylor <ian@cygnus.com>
12010
12011 * Makefile.in (WINDRES): New variable.
12012 (WINDRES_FOR_TARGET): New variable.
12013 (BASE_FLAGS_TO_PASS): Add WINDRES_FOR_TARGET.
12014 (EXTRA_HOST_FLAGS): Add WINDRES.
12015 (EXTRA_TARGET_FLAGS): Add WINDRES.
12016 (EXTRA_GCC_FLAGS): Add WINDRES.
12017 ($(DO_X)): Pass down WINDRES.
12018 ($(CONFIGURE_TARGET_MODULES)): Set WINDRES when configuring.
12019 * configure: Treat WINDRES like DLLTOOL, and WINDRES_FOR_TARGET like
12020 DLLTOOL_FOR_TARGET.
12021
12022 Wed Jun 25 15:01:26 1997 Felix Lee <flee@cygnus.com>
12023
12024 * configure.in: configure sim before gdb for win32-x-ppc
12025
12026 Wed Jun 25 12:18:54 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
12027
12028 Move gperf into the toplevel, from libg++.
12029 * configure.in (target_tools): Add target-gperf.
12030 (native_only): Add target-gperf.
12031 * Makefile.in (all-target-gperf): New target, depend on
12032 all-target-libg++.
12033 (configure-target-gperf): Empty rule.
12034 (ALL_TARGET_MODULES): Add all-target-gperf.
12035 (CONFIGURE_TARGET_MODULES): Add configure-target-gperf.
12036 (CHECK_TARGET_MODULES): Add check-target-gperf.
12037 (INSTALL_TARGET_MODULES): Add install-target-gperf.
12038 (CLEAN_TARGET_MODULES): Add clean-target-gperf.
12039
12040 Mon Jun 23 10:51:53 1997 Jeffrey A Law (law@cygnus.com)
12041
12042 * config.sub (mn10200): Recognize new basic machine.
12043
12044 Thu Jun 19 14:16:42 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
12045
12046 * configure.in: Don't set ENABLE_MULTILIB, so we'll be passing
12047 --enable-multilib down to subdirs; setting TARGET_SUBDIR was enough.
12048
12049 Tue Jun 17 15:31:20 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
12050
12051 * configure.in: If we're building mips-sgi-irix6* native, turn on
12052 ENABLE_MULTILIB and set TARGET_SUBDIR.
12053
12054 Tue Jun 17 12:20:59 1997 Tom Tromey <tromey@cygnus.com>
12055
12056 * Makefile.in (all-sn): Depend on all-grep.
12057
12058 Mon Jun 16 11:11:10 1997 Ian Lance Taylor <ian@cygnus.com>
12059
12060 * configure.in: Use mh-ppcpic and mt-ppcpic for powerpc*-* targets.
12061
12062 * configure: Set CFLAGS and CXXFLAGS, and substitute them into
12063 Makefile. From Jeff Makey <jeff@cts.com>.
12064 * Makefile.in: Add comment for CFLAGS and CXXFLAGS.
12065
12066 * Makefile.in (DISTBISONFILES): Remove.
12067 (taz): Don't futz with DISTBISONFILES. Change BISON to use
12068 $(DEFAULT_YACC).
12069
12070 * configure.in: Build itl, db, sn, etc., when building for native
12071 cygwin32.
12072
12073 * Makefile.in (LD): New variable.
12074 (EXTRA_HOST_FLAGS): Pass down LD.
12075 ($(DO_X)): Likewise.
12076
12077 Mon Jun 16 11:10:35 1997 Philip Blundell <Philip.Blundell@pobox.com>
12078
12079 * Makefile.in (INSTALL): Use $(SHELL) when executing install-sh.
12080
12081 Fri Jun 13 10:22:56 1997 Bob Manson <manson@charmed.cygnus.com>
12082
12083 * configure.in (targargs): Strip out any supplied --build argument
12084 before adding our own. Always add --build.
12085
12086 Thu Jun 12 21:12:28 1997 Bob Manson <manson@charmed.cygnus.com>
12087
12088 * configure.in (targargs): Pass --build if we're doing
12089 a cross-compile.
12090
12091 Fri Jun 6 21:38:40 1997 Rob Savoye <rob@chinadoll.cygnus.com>
12092
12093 * configure: Use '|' instead of ":" as the separator in
12094 sed. Otherwise sed chokes on NT path names with drive
12095 designators. Also look for "?:*" as the leading characters in an
12096 absolute pathname.
12097
12098 Mon Jun 2 13:05:20 1997 Gavin Koch <gavin@cygnus.com>
12099
12100 * config.sub: Support for r3900.
12101
12102 Wed May 21 17:33:31 1997 Ian Lance Taylor <ian@cygnus.com>
12103
12104 * configure.in: Use install-sh, not install.sh.
12105
12106 Wed May 14 16:06:51 1997 Ian Lance Taylor <ian@cygnus.com>
12107
12108 * Makefile.in (taz): Improve check for BISON so it doesn't try to
12109 apply it twice.
12110
12111 Fri May 9 17:22:05 1997 Ian Lance Taylor <ian@cygnus.com>
12112
12113 * Makefile.in (INSTALL_MODULES): Put install-opcodes before
12114 install-binutils.
12115
12116 Thu May 8 17:29:50 1997 Ian Lance Taylor <ian@cygnus.com>
12117
12118 * Makefile.in: Add automake targets.
12119 * configure.in (host_tools): Add automake.
12120
12121 Tue May 6 15:49:52 1997 Ian Lance Taylor <ian@cygnus.com>
12122
12123 * configure: Default CXX to c++, not gcc.
12124 * Makefile.in (CXX): Set to c++, not gcc.
12125 (CXX_FOR_TARGET): When cross, transform c++, not gcc.
12126
12127 Thu May 1 10:11:43 1997 Geoffrey Noer <noer@cygnus.com>
12128
12129 * install-sh: try appending a .exe if source file doesn't
12130 exist
12131
12132 Wed Apr 30 12:05:36 1997 Jason Merrill <jason@yorick.cygnus.com>
12133
12134 * configure.in: Turn on multilib by default.
12135 (cross_only): Remove target-libiberty.
12136
12137 * Makefile.in (all-gcc): Don't depend on libiberty.
12138
12139 Mon Apr 28 18:39:45 1997 Michael Snyder <msnyder@cleaver.cygnus.com>
12140
12141 * config.guess: improve algorithm for recognizing Gnu Hurd x86.
12142
12143 Thu Apr 24 19:30:07 1997 Ian Lance Taylor <ian@cygnus.com>
12144
12145 * Makefile.in (DEVO_SUPPORT): Add mpw-install.
12146 (DISTBISONFILES): Add ld/Makefile.in
12147
12148 Tue Apr 22 17:17:28 1997 Geoffrey Noer <noer@pizza.cygnus.com>
12149
12150 * configure.in: if target is cygwin32 but host isn't cygwin32,
12151 don't configure gdb tcl tk expect, not just gdb.
12152
12153 Mon Apr 21 13:33:39 1997 Tom Tromey <tromey@cygnus.com>
12154
12155 * configure.in: Added gnuserv everywhere sn appears.
12156
12157 * Makefile.in (ALL_MODULES): Added all-gnuserv.
12158 (CROSS_CHECK_MODULES): Added check-gnuserv.
12159 (INSTALL_MODULES): Added install-gnuserv.
12160 (CLEAN_MODULES): Added clean-gnuserv.
12161 (all-gnuserv): New target.
12162
12163 Thu Apr 17 13:57:06 1997 Per Fogelstrom <pefo@openbsd.org>
12164
12165 * config.guess: Fixes for MIPS OpenBSD systems.
12166
12167 Tue Apr 15 12:21:07 1997 Ian Lance Taylor <ian@cygnus.com>
12168
12169 * Makefile.in (INSTALL_XFORM): Remove.
12170 (BASE_FLAGS_TO_PASS): Remove INSTALL_XFORM.
12171
12172 * mkinstalldirs: New file, copied from automake.
12173 * Makefile.in (installdirs): Rename from install-dirs. Use
12174 mkinstalldirs. Change all users.
12175 (DEVO_SUPPORT): Add mkinstalldirs.
12176
12177 Mon Apr 14 11:21:38 1997 Ian Lance Taylor <ian@cygnus.com>
12178
12179 * install-sh: Rename from install.sh.
12180 * Makefile.in (INSTALL): Change install.sh to install-sh.
12181 (DEVO_SUPPORT): Likewise.
12182
12183 * configure: Use ${config_shell} with ${moveifchange}. From Thomas
12184 Graichen <graichen@rzpd.de>.
12185
12186 Fri Apr 11 16:37:10 1997 Niklas Hallqvist <niklas@appli.se>
12187
12188 * config.guess: Recognize OpenBSD systems correctly.
12189
12190 Fri Apr 11 17:07:04 1997 Jason Molenda (crash@godzilla.cygnus.co.jp)
12191
12192 * README, Makefile.in (ETC_SUPPORT): Remove references to
12193 cfg-paper*, configure.{texi,man,info*}._
12194
12195 Sun Apr 6 18:47:57 1997 Andrew Cagney <cagney@kremvax.cygnus.com>
12196
12197 * Makefile.in (all.normal): Ensure that gcc is built after all
12198 the x11 - ie gdb - targets.
12199
12200 Tue Apr 1 16:28:50 1997 Klaus Kaempf <kkaempf@progis.de>
12201
12202 * makefile.vms: Don't run conf-a-gas.
12203
12204 Mon Mar 31 16:26:55 1997 Joel Sherrill <joel@oarcorp.com>
12205
12206 * configure.in (hppa1.1-*-rtems*): New target, like hppa-*-*elf*.
12207
12208 Sun Mar 30 12:38:27 1997 Fred Fish <fnf@cygnus.com>
12209
12210 * configure.in: Remove noconfigdirs case since gdb also
12211 configures and builds for tic80-coff.
12212
12213 Fri Mar 28 18:28:52 1997 Ian Lance Taylor <ian@cygnus.com>
12214
12215 * configure: Set cache_file to config.cache.
12216 * Makefile.in (local-distclean): Remove config.cache.
12217
12218 Wed Mar 26 18:49:39 1997 Ian Lance Taylor <ian@cygnus.com>
12219
12220 * COPYING: Update FSF address.
12221
12222 Wed Mar 26 10:38:25 1997 Michael Meissner <meissner@cygnus.com>
12223
12224 * configure.in (tic80-*-*): Remove G++ libraries and libgloss from
12225 noconfigdirs.
12226
12227 Mon Mar 24 15:02:39 1997 Ian Lance Taylor <ian@cygnus.com>
12228
12229 * Makefile.in (install-dirs): Don't crash if prefix, and hence
12230 MAKEDIRS, is empty.
12231
12232 Mon Mar 24 12:40:55 1997 Doug Evans <dje@canuck.cygnus.com>
12233
12234 * config.sub: Tweak mn10300 entry.
12235
12236 Fri Mar 21 15:35:27 1997 Michael Meissner <meissner@cygnus.com>
12237
12238 * configure.in (host_tools): Put sim before gdb, so gdb's
12239 configure.tgt can determine if the simulator was configured.
12240
12241 Sun Mar 16 16:07:08 1997 Fred Fish <fnf@cygnus.com>
12242
12243 * config.sub: Move BeOS $os case to be with other Cygnus
12244 local cases.
12245
12246 Sun Mar 16 01:34:55 1997 Martin Hunt <hunt@cygnus.com>
12247
12248 * config.sub: Remove misplaced comment that broke Linux.
12249
12250 Sat Mar 15 22:50:15 1997 Fred Fish <fnf@cygnus.com>
12251
12252 * config.sub: Add BeOS support.
12253
12254 Mon Mar 10 13:30:11 1997 Tom Tromey <tromey@cygnus.com>
12255
12256 * Makefile.in (CHECK_X11_MODULES): Don't run check-tk.
12257
12258 Wed Mar 5 12:09:29 1997 Martin <hunt@cygnus.com>
12259
12260 * configure.in (noconfigdirs): Remove tcl and tk from
12261 noconfigdirs for cygwin32 builds.
12262
12263 Fri Feb 28 18:20:15 1997 Fred Fish <fnf@cygnus.com>
12264
12265 * configure.in (tic80-*-*): Remove ld from noconfigdirs.
12266
12267 Thu Feb 27 14:57:26 1997 Ken Raeburn <raeburn@cygnus.com>
12268
12269 * Makefile.in (GAS_SUPPORT_DIRS, BINUTILS_SUPPORT_DIRS): Remove
12270 make-all.com, use makefile.vms instead.
12271
12272 Tue Feb 25 18:46:14 1997 Stan Shebs <shebs@andros.cygnus.com>
12273
12274 * config.sub: Accept -lnews*.
12275
12276 Tue Feb 25 13:19:14 1997 Andrew Cagney <cagney@kremvax.tpgi.com.au>
12277
12278 * configure.in (noconfigdirs): Disable target-newlib,
12279 target-examples and target-libiberty for d30v.
12280
12281 Fri Feb 21 17:56:25 1997 Martin M. Hunt <hunt@pizza.cygnus.com>
12282
12283 * configure.in (noconfigdirs): Enable ld for d30v.
12284
12285 Fri Feb 21 20:58:51 1997 Michael Meissner <meissner@cygnus.com>
12286
12287 * configure.in (tic80-*-*): Build compiler.
12288
12289 Sun Feb 16 15:41:09 1997 Andrew Cagney <cagney@critters.cygnus.com>
12290
12291 * configure.in (d30v-*): Remove sim directory from list of
12292 unsupported d30v directories
12293
12294 Tue Feb 18 17:32:42 1997 Martin M. Hunt <hunt@pizza.cygnus.com>
12295
12296 * config.sub, configure.in: Add d30v target cpu.
12297
12298 Thu Feb 13 22:04:44 1997 Klaus Kaempf <kkaempf@progis.de>
12299
12300 * makefile.vms: New file.
12301 * make-all.com: Remove.
12302
12303 Wed Feb 12 12:54:18 1997 Jim Wilson <wilson@cygnus.com>
12304
12305 * Makefile.in (EXTRA_GCC_FLAGS): Add LIBGCC2_DEBUG_CFLAGS.
12306
12307 Sat Feb 8 20:36:49 1997 Michael Meissner <meissner@cygnus.com>
12308
12309 * Makefile.in (all-itcl): The rule is all-itcl, not all-tcl.
12310
12311 Tue Feb 4 11:39:29 1997 Tom Tromey <tromey@cygnus.com>
12312
12313 * Makefile.in (ALL_MODULES): Added all-db.
12314 (CROSS_CHECK_MODULES): Addec check-db.
12315 (INSTALL_MODULES): Added install-db.
12316 (CLEAN_MODULES): Added clean-db.
12317
12318 Mon Feb 3 13:29:36 1997 Ian Lance Taylor <ian@cygnus.com>
12319
12320 * config.guess: Merge with latest FSF sources.
12321
12322 Tue Jan 28 09:20:37 1997 Tom Tromey <tromey@cygnus.com>
12323
12324 * Makefile.in (ALL_MODULES): Added all-itcl.
12325 (CROSS_CHECK_MODULES): Added check-itcl.
12326 (INSTALL_MODULES): Added install-itcl.
12327 (CLEAN_MODULES): Added clean-itcl.
12328
12329 Thu Jan 23 01:44:27 1997 Geoffrey Noer <noer@cygnus.com>
12330
12331 * configure.in: build gdb for mn10200
12332
12333 Fri Jan 17 15:32:15 1997 Doug Evans <dje@canuck.cygnus.com>
12334
12335 * Makefile.in (all-target-winsup): Depend on all-target-libio.
12336
12337 Mon Jan 13 22:46:54 1997 Michael Meissner <meissner@tiktok.cygnus.com>
12338
12339 * configure.in (tic80-*-*): Turn off most targets right now.
12340
12341 Fri Jan 3 16:04:03 1997 Ian Lance Taylor <ian@cygnus.com>
12342
12343 * Makefile.in (MAKEINFO): Check for the existence of the Makefile,
12344 rather than the makeinfo program.
12345 (do-info): Depend upon all-texinfo.
12346
12347 Tue Dec 31 16:00:31 1996 Ian Lance Taylor <ian@cygnus.com>
12348
12349 * configure.in: Remove uses of config/mh-linux.
12350
12351 * config.sub, config.guess: Merge with latest FSF sources.
12352
12353 Fri Dec 27 23:04:33 1996 Fred Fish <fnf@cygnus.com>
12354
12355 * config.sub (case $basic_machine): Add tic80 entries.
12356
12357 Fri Dec 27 12:07:59 1996 Ian Lance Taylor <ian@cygnus.com>
12358
12359 * config.sub, config.guess: Merge with latest FSF sources.
12360
12361 Wed Dec 18 22:46:39 1996 Stan Shebs <shebs@andros.cygnus.com>
12362
12363 * mpw-build.in: Build ld before gcc, use NewFolderRecursive.
12364 * mpw-config.in: Test for NewFolderRecursive.
12365 * mpw-install: Use symbolic name for startup filename.
12366 * mpw-README: Add various additional details.
12367
12368 Wed Dec 18 13:11:46 1996 Jim Wilson <wilson@cygnus.com>
12369
12370 * configure.in (mips*-sgi-irix6*): Remove binutils from noconfigdirs.
12371
12372 Wed Dec 18 10:29:31 1996 Jeffrey A Law (law@cygnus.com)
12373
12374 * configure.in: Do build gcc and the target libraries for
12375 the mn10200.
12376
12377 Wed Dec 4 16:53:05 1996 Geoffrey Noer <noer@cygnus.com>
12378
12379 * configure.in: don't avoid building gdb for mn10300 any more
12380 * Makefile.in: double-quote GCC_FOR_TARGET line in EXTRA_GCC_FLAGS
12381 instead of single-quoting it.
12382
12383 Tue Dec 3 23:26:50 1996 Jason Merrill <jason@yorick.cygnus.com>
12384
12385 * configure.in: Don't use --with-stabs on IRIX 6.
12386
12387 Tue Dec 3 09:05:25 1996 Doug Evans <dje@canuck.cygnus.com>
12388
12389 * configure.in (m32r): Build gdb, libg++ now.
12390
12391 Sun Dec 1 00:18:59 1996 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
12392
12393 * configure.in (mips*-sgi-irix6*): Remove gdb and related
12394 directories from noconfigdirs.
12395
12396 Tue Nov 26 11:45:33 1996 Kim Knuttila <krk@cygnus.com>
12397
12398 * config.sub (basic_machine): added mips16 configuration
12399
12400 Sat Nov 23 19:26:22 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12401
12402 * config.sub: Handle d10v-unknown.
12403
12404 Sat Nov 23 10:23:01 1996 Gavin Koch <gavin@cygnus.com>
12405
12406 * config.sub: Handle v850-unknown.
12407
12408 Thu Nov 21 16:19:44 1996 Geoffrey Noer <noer@cygnus.com>
12409
12410 * Makefile.in: add findutils
12411 * configure.in: add findutils to list of host_tools
12412
12413 Wed Nov 20 10:09:01 1996 Jeffrey A Law (law@cygnus.com)
12414
12415 * config.sub: Handle mn10200 and mn10300.
12416
12417 Tue Nov 19 16:35:14 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12418
12419 * configure.in (d10v-*): Do not build librx.
12420
12421 Mon Nov 18 13:28:41 1996 Jeffrey A Law (law@cygnus.com)
12422
12423 * configure.in (mn10300): Build everything except gdb & libgloss.
12424
12425 Wed Nov 13 14:59:46 1996 Per Bothner <bothner@deneb.cygnus.com>
12426
12427 * config.guess: Patch for Dansk Data Elektronik servers,
12428 from Niels Skou Olsen <nso@dde.dk>.
12429
12430 For ncr, use /bin/uname rather than uname, since GNU uname does not
12431 support -p. Suggested by Mark Mitchell <mmitchell@usa.net>.
12432
12433 Patch for MIPS R4000 running System V,
12434 from Eric S. Raymond <esr@snark.thyrsus.com>.
12435
12436 Fix thinko for nextstep.
12437
12438 Patch for OSF1 in i?86, from Dan Murphy <dlm@osf.org> via Harlan Stenn.
12439
12440 Sat Jun 24 18:58:17 1995 Morten Welinder <terra+@cs.cmu.edu>
12441 * config.guess: Guess mips-dec-mach_bsd4.3.
12442
12443 Thu Oct 10 04:07:04 1996 Harlan Stenn <harlan@pfcs.com>
12444 * config.guess (i?86-ncr-sysv*): Emit just enough of the minor
12445 release numbers.
12446 * config.guess (mips-mips-riscos*): Emit just enough of the
12447 release number.
12448
12449 Tue Oct 8 10:37:22 1996 Frank Vance <fvance@waii.com>
12450 * config.guess (sparc-auspex-sunos*): Added.
12451 (f300-fujitsu-*): Added.
12452
12453 Wed Sep 25 22:00:35 1996 Jeff Woolsey <woolsey@jlw.com>
12454 * config.guess: Recognize a Tadpole as a sparc.
12455
12456 Wed Nov 13 00:53:09 1996 David J. MacKenzie <djm@churchy.gnu.ai.mit.edu>
12457
12458 * config.guess: Don't assume that NextStep version is either 2 or
12459 3. NextStep 4 (aka OpenStep 4) has come out now.
12460
12461 Mon Nov 11 23:52:03 1996 David J. MacKenzie <djm@churchy.gnu.ai.mit.edu>
12462
12463 * config.guess: Support Cray T90 that reports itself as "CRAY TS".
12464 From Rik Faith <faith@cs.unc.edu>.
12465
12466 Fri Nov 8 11:34:58 1996 David J. MacKenzie <djm@geech.gnu.ai.mit.edu>
12467
12468 * config.sub: Contributions from bug-gnu-utils to:
12469 Support plain "hppa" (no version given) architecture, reported by
12470 OpenStep.
12471 OpenBSD like NetBSD.
12472 LynxOs is not a hardware supplier.
12473
12474 * config.guess: Contributions from bug-gnu-utils to add support for:
12475 OpenBSD like NetBSD.
12476 Stratus systems.
12477 More Pyramid systems.
12478 i[n>4]86 Intel chips.
12479 M680[n>4]0 Motorola chips.
12480 Use unknown instead of lynx for hardware manufacturer.
12481
12482 Mon Nov 11 10:09:08 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
12483
12484 * install.sh (chmodcmd): Set to null if the DST directory already
12485 exists.
12486
12487 Mon Nov 11 10:43:41 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12488
12489 * configure.in (powerpc*-{eabi,elf,linux,rtem,sysv,solaris}*): Do
12490 not use mt-ppc target Makefile fragment any more.
12491
12492 Sun Nov 3 19:17:07 1996 Stu Grossman (grossman@critters.cygnus.com)
12493
12494 * configure.in (*-*-windows): Exclude everything but those dirs
12495 needed to build windows.
12496
12497 Tue Oct 29 16:41:31 1996 Doug Evans <dje@canuck.cygnus.com>
12498
12499 * Makefile.in (all-target-winsup): Depend on all-target-librx.
12500
12501 Mon Oct 28 17:32:46 1996 Stu Grossman (grossman@critters.cygnus.com)
12502
12503 * configure.in: Exclude mmalloc from i386-windows.
12504
12505 Thu Oct 24 09:22:46 1996 Stu Grossman (grossman@critters.cygnus.com)
12506
12507 * Undo my previous change.
12508
12509 Thu Oct 24 12:12:04 1996 Ian Lance Taylor <ian@cygnus.com>
12510
12511 * Makefile.in (EXTRA_GCC_FLAGS): Pass down GCC_FOR_TARGET
12512 unconditionally.
12513 (MAKEOVERRIDES): Define (revert this part of October 18 change).
12514
12515 Thu Oct 24 09:02:07 1996 Stu Grossman (grossman@critters.cygnus.com)
12516
12517 * Makefile.in (FLAGS_TO_PASS): Add $(HOST_FLAGS) to allow the
12518 host to add it's own flags.
12519
12520 Tue Oct 22 15:20:26 1996 Ian Lance Taylor <ian@cygnus.com>
12521
12522 * configure: Handle GCC_FOR_TARGET like CC_FOR_TARGET.
12523
12524 Fri Oct 18 13:37:13 1996 Ian Lance Taylor <ian@cygnus.com>
12525
12526 * Makefile.in (CC_FOR_TARGET): Check for xgcc, not Makefile.
12527 (CXX_FOR_TARGET): Likewise.
12528 (GCC_FOR_TARGET): Define.
12529 (BASE_FLAGS_TO_PASS): Remove GCC_FOR_TARGET.
12530 (EXTRA_GCC_FLAGS): Define GCC_FOR_TARGET based on whether
12531 CC_FOR_TARGET was specified on the command line.
12532 (MAKEOVERRIDES): Don't define.
12533
12534 Thu Oct 17 10:27:56 1996 Doug Evans <dje@canuck.cygnus.com>
12535
12536 * configure.in (m32r): Fix spelling of libg++ libs.
12537
12538 Thu Oct 10 10:37:17 1996 Stan Shebs <shebs@andros.cygnus.com>
12539
12540 * config.sub (-apple*): Remove, now redundant.
12541
12542 Thu Oct 10 12:30:54 1996 Ian Lance Taylor <ian@cygnus.com>
12543
12544 * configure: Don't get confused by CPU-VENDOR-linux-gnu.
12545
12546 * configure: Rework yesterday's sed script patch.
12547
12548 * config.sub: Merge with FSF.
12549
12550 Wed Oct 9 17:24:59 1996 Per Bothner <bothner@deneb.cygnus.com>
12551
12552 * config.guess: Merge from FSF.
12553
12554 1996-09-12 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
12555 * config.guess: Use pc instead of unknown, for pc clone systems.
12556 Change linux to linux-gnu.
12557
12558 Mon Jul 15 23:51:11 1996 Karl Heuer <kwzh@gnu.ai.mit.edu>
12559 * config.guess: Avoid non-portable tr syntax.
12560
12561 Wed Oct 9 06:06:46 1996 Jeffrey A Law (law@cygnus.com)
12562
12563 * test-build.mk (HOLES): Add "xargs" for gdb.
12564
12565 * configure: Avoid hpux10.20 sed bug.
12566
12567 Tue Oct 8 08:32:48 1996 Stu Grossman (grossman@critters.cygnus.com)
12568
12569 * configure.in: Add support for windows host
12570 (that is a build done under the Microsoft build environment).
12571
12572 Tue Oct 8 10:39:08 1996 Ian Lance Taylor <ian@cygnus.com>
12573
12574 * Makefile.in: Replace all uses of srcroot with s, to shrink
12575 command line lengths.
12576
12577 Patches from Geoffrey Noer <noer@cygnus.com>:
12578 * configure.in: If configuring for newlib, pass --with-newlib to
12579 subdirectories.
12580 * Makefile.in (CC_FOR_TARGET): If winsup/Makefile exists, pass a
12581 -Bnewlib/ and -Lwinsup to gcc.
12582 (CXX_FOR_TARGET): Likewise.
12583
12584 Mon Oct 7 10:59:35 1996 Ian Lance Taylor <ian@cygnus.com>
12585
12586 * Makefile.in (ETC_SUPPORT): Add configure.
12587
12588 Fri Oct 4 12:22:58 1996 Angela Marie Thomas (angela@cygnus.com)
12589
12590 * configure.in: Use config/mh-dgux386 for i[345]86-dg-dgux
12591 host configuration file.
12592
12593 Thu Oct 3 09:28:25 1996 Jeffrey A Law (law@cygnus.com)
12594
12595 * configure.in: Break mn10x00 support into separate
12596 mn10200 and mn10300 configurations.
12597 * config.sub: Likewise.
12598
12599 Wed Oct 2 22:27:52 1996 Jeffrey A Law (law@cygnus.com)
12600
12601 * configure.in: Add lots of stuff to noconfigdirs for
12602 the mn10x00 targets.
12603
12604 * config.sub, configure.in: Add mn10x00 support.
12605
12606 Wed Oct 2 15:52:36 1996 Klaus Kaempf <kkaempf@progis.de>
12607
12608 * make-all.com: Call conf-a-gas, not config-a-gas.
12609
12610 Tue Oct 1 01:28:41 1996 James G. Smith <jsmith@cygnus.co.uk>
12611
12612 * configure.in (noconfigdirs): Don't build libgloss for arm-coff
12613 targets.
12614
12615 Mon Sep 30 14:24:01 1996 Stan Shebs <shebs@andros.cygnus.com>
12616
12617 * mpw-README: Add much more detail for native PowerMac.
12618 * mpw-install: New file.
12619 * mpw-configure: Add --norecursion and --help options.
12620 * mpw-config.in: Translate readme and install files when
12621 copying to objdir.
12622 * mpw-build.in: Don't always depend on byacc and flex.
12623 (install-only-top): New action.
12624
12625 Fri Sep 27 17:39:44 1996 Stu Grossman (grossman@critters.cygnus.com)
12626
12627 * configure.in: You can now configure GDB for the v850.
12628
12629 Tue Sep 24 19:05:12 1996 Stan Shebs <shebs@andros.cygnus.com>
12630
12631 * configure.in (noconfigdirs): Don't configure any C++ dirs
12632 if targeting D10V.
12633
12634 Tue Sep 17 12:15:31 1996 Ian Lance Taylor <ian@cygnus.com>
12635
12636 * config.sub: Recognize mips64vr5000.
12637
12638 Mon Sep 16 17:00:52 1996 Ian Lance Taylor <ian@cygnus.com>
12639
12640 * configure.in: Use a single line for host_tools and native_only.
12641
12642 Mon Sep 9 12:21:30 1996 Doug Evans <dje@canuck.cygnus.com>
12643
12644 * config.sub, configure.in: Add entries for m32r.
12645
12646 Thu Sep 5 13:52:47 1996 Tom Tromey <tromey@creche.cygnus.com>
12647
12648 * Makefile.in (inet-install): Don't run install-gzip.
12649
12650 Wed Sep 4 17:26:13 1996 Stu Grossman (grossman@critters.cygnus.com)
12651
12652 * configure.in: Don't config lots of things for *-*-windows*.
12653
12654 Sat Aug 31 11:45:57 1996 Stan Shebs <shebs@andros.cygnus.com>
12655
12656 * mpw-config.in: Test for mpw-true, true, and null-command scripts.
12657 (host_libs, host_tools): Copy from configure.in.
12658 * mpw-configure: Don't complain about directories not found.
12659
12660 Thu Aug 29 16:44:58 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12661
12662 * configure.in (i[345]86): Recognize i686 for pentium pro.
12663 (i[3456]86-*-dgux*): Use config/mh-sysv for the host configuration
12664 file.
12665
12666 * config.guess (i[345]86): Ditto.
12667
12668 Mon Aug 26 18:34:42 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
12669
12670 * configure.in (noconfigdirs): Removed gdb for D10V.
12671
12672 Thu Aug 22 17:13:52 1996 Jeffrey A Law (law@cygnus.com)
12673
12674 * configure.in: Remove ld, target-libio, target-libg++, and
12675 target-libstdc++ from noconfigdirs.
12676
12677 Wed Aug 21 18:56:38 1996 Fred Fish <fnf@cygnus.com>
12678
12679 * configure: Fix three locations where shell scripts were
12680 being run directly rather than with config_shell.
12681
12682 Tue Aug 20 13:08:47 1996 J.T. Conklin <jtc@hippo.cygnus.com>
12683
12684 * configure.in (v850-*-*): Set up initial $noconfigdirs.
12685 * config.sub (basic_machine): Recognize v850.
12686
12687 Thu Aug 15 12:19:33 1996 Stan Shebs <shebs@andros.cygnus.com>
12688
12689 * mpw-configure: Handle multiple enable/disable options and
12690 pass them down recursively, handle -c and -s flags appropriately
12691 depending on choice of compiler, add escape mechanism for
12692 quoted arguments to gC.
12693
12694 Mon Aug 12 13:15:13 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12695
12696 * configure.in (powerpc*-*-*): For eabi, system V.4, Linux, and
12697 solaris targets, use config/mt-ppc to set C{,XX}FLAGS_FOR_TARGETS
12698 so that -mrelocatable-lib and -mno-eabi are used.
12699
12700 * Makefile.in (CONFIGURE_TARGET_MODULES): If target compiler does
12701 not support --print-multi-lib, don't abort.
12702
12703 Thu Aug 8 12:18:59 1996 Klaus Kaempf <kkaempf@progis.de>
12704
12705 * make-all.com: Run config-a-gas.
12706 * setup.com: Don't copy subdirectory files around.
12707
12708 Tue Jul 30 17:49:31 1996 Brendan Kehoe <brendan@cygnus.com>
12709
12710 * configure.in (*-*-ose): Remove exclusion of libgloss for this
12711 target, it now compiles correctly.
12712
12713 Sat Jul 27 15:10:43 1996 Stan Shebs <shebs@andros.cygnus.com>
12714
12715 * mpw-config.in: Generate Mac include for elf/dwarf2.h.
12716
12717 Tue Jul 23 10:47:04 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
12718
12719 * configure.in (d10v-*-*): Remove ld from $noconfigdirs.
12720
12721 Mon Jul 22 13:28:51 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
12722
12723 * configure.in (native_only): Add prms.
12724
12725 Mon Jul 22 12:27:58 1996 Ian Lance Taylor <ian@cygnus.com>
12726
12727 * Makefile.in (GAS_SUPPORT_DIRS): Add make-all.com and setup.com.
12728 (BINUTILS_SUPPORT_DIRS): Likewise.
12729
12730 Thu Jul 18 12:55:40 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12731
12732 * configure.in (d10v-*-*): Don't configure ld or gdb until the
12733 d10v support is added.
12734
12735 Wed Jul 17 14:33:09 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
12736
12737 * configure.in (d10v-*-*): New target.
12738
12739 Mon Jul 15 11:53:00 1996 Jeffrey A Law (law@cygnus.com)
12740
12741 * config.guess (HP 9000/811): Recognize this as a PA1.1
12742 machine.
12743
12744 Fri Jul 12 23:21:17 1996 Ken Raeburn <raeburn@cygnus.com>
12745
12746 * Makefile.in (do-tar-gz): New target, split out from tail end of
12747 taz target. Run each command separately, don't use pipes.
12748 (taz): Use it.
12749
12750 Fri Jul 12 12:08:04 1996 Stan Shebs <shebs@andros.cygnus.com>
12751
12752 * mpw-configure: Look for g-mpw-make.sed in config/mpw.
12753 * mpw-build.in: No builds should depend on building byacc or flex,
12754 they are assumed to be installed already.
12755
12756 Fri Jul 12 09:52:52 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12757
12758 * Makefile.in (CONFIGURE_TARGET_MODULES): Set r environment
12759 variable that CC_FOR_TARGET needs.
12760
12761 Thu Jul 11 10:09:45 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12762
12763 * Makefile.in (CONFIGURE_TARGET_MODULES): Determine if the multlib
12764 options have changed since the last time the subdirectory was
12765 configured, and if it has, reconfigure.
12766 (CLEAN_TARGET_MODULES): Delete multilib.out and tmpmulti.out, which
12767 CONFIGURE_TARGET_MODULES uses to remember the old multilib options.
12768
12769 Wed Jul 10 18:56:59 1996 Doug Evans <dje@canuck.cygnus.com>
12770
12771 * Makefile.in (ALL_MODULES,CROSS_CHECK_MODULES,INSTALL_MODULES,
12772 CLEAN_MODULES): Add bash.
12773 (all-bash): New target.
12774
12775 Mon Jul 8 17:33:14 1996 Jim Wilson <wilson@cygnus.com>
12776
12777 * configure.in (mips-sgi-irix6*): Use mh-irix6 instead of mh-irix5.
12778
12779 Mon Jul 1 13:31:35 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12780
12781 * config.sub (basic_machine): Recognize d10v as a valid processor.
12782
12783 Fri Jun 28 12:14:35 1996 Stan Shebs <shebs@andros.cygnus.com>
12784
12785 * mpw-configure: Add support for --bindir.
12786 * mpw-build.in: Use a GCC-specific build script for GCC actions.
12787
12788 Wed Jun 26 17:20:12 1996 Geoffrey Noer <noer@cygnus.com>
12789
12790 * configure.in: add bash, time, gawk to list of hosttools and things
12791 to only build for native toolchains
12792
12793 Tue Jun 25 23:09:03 1996 Jason Molenda (crash@godzilla.cygnus.co.jp)
12794
12795 * Makefile.in (docdir): Remove.
12796
12797 Tue Jun 25 19:00:08 1996 Jason Molenda (crash@godzilla.cygnus.co.jp)
12798
12799 * Makefile.in (datadir): Set to $(prefix)/share.
12800
12801 Mon Jun 24 23:26:07 1996 Geoffrey Noer <noer@cygnus.com>
12802
12803 * configure.in: build diff and patch for cygwin32-hosted
12804 toolchains.
12805
12806 Mon Jun 24 15:01:12 1996 Joel Sherrill <joel@merlin.gcs.redstone.army.mil>
12807
12808 * config.sub: Accept -rtems*.
12809
12810 Sun Jun 23 22:41:54 1996 Geoffrey Noer <noer@cygnus.com>
12811
12812 * configure.in: enable dosrel for cygwin32-hosted builds,
12813 remove diff from the list of things not buildable
12814 via Canadian Cross
12815
12816 Sat Jun 22 11:39:01 1996 Jason Merrill <jason@yorick.cygnus.com>
12817
12818 * Makefile.in (TARGET_SUBDIR): Move comment to previous line so we
12819 don't get ". ".
12820
12821 Fri Jun 21 17:24:48 1996 Jim Wilson <wilson@cygnus.com>
12822
12823 * configure.in (mips*-sgi-irix6*): Set noconfigdirs appropriately.
12824
12825 Thu Jun 20 16:57:40 1996 Ken Raeburn <raeburn@cygnus.com>
12826
12827 * Makefile.in (taz): Handle case where tex3patch didn't even get
12828 checked out. Also, if it was found, put the symlink in a new util
12829 subdirectory.
12830
12831 Thu Jun 20 12:20:33 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12832
12833 * config.guess (*:Linux:*:*): Add support for PowerPC Linux.
12834
12835 Tue Jun 18 14:24:12 1996 Klaus Kaempf (kkaempf@progis.de)
12836
12837 * config.sub: Recognize -openvms.
12838 * configure.in (alpha*-*-*vms*): Set noconfigdirs.
12839 * make-all.com, setup.com: New files.
12840
12841 Mon Jun 17 16:34:46 1996 Jason Merrill <jason@yorick.cygnus.com>
12842
12843 * Makefile.in (taz): tex3patch moved to texinfo/util.
12844
12845 Sat Jun 15 17:13:25 1996 Geoffrey Noer <noer@cygnus.com>
12846
12847 * configure: enable_gdbtk=no for cygwin32-hosted toolchains
12848 * configure.in: remove make from disable-if-Can-Cross list
12849 enable gdb if ${host} and ${target} are cygwin32
12850
12851 Fri Jun 7 18:16:52 1996 Harlan Stenn <harlan@pfcs.com>
12852
12853 * config.guess (i?86-ncr-sysv*): Emit minor release numbers.
12854 Recognize the NCR 4850 machine and NCR Pentium-based platforms.
12855
12856 Wed Jun 5 00:09:17 1996 Per Bothner <bothner@wombat.gnu.ai.mit.edu>
12857
12858 * config.guess: Combine mips-mips-riscos cases, and use cpp to
12859 distinguish sysv/svr4/bsd variants.
12860 Based on a patch from Harlan Stenn <harlan@pfcs.com>.
12861
12862 Fri Jun 7 14:24:49 1996 Tom Tromey <tromey@creche.cygnus.com>
12863
12864 * configure.in: Added copyright notice.
12865 * move-if-change: Added copyright notice.
12866
12867 Thu Jun 6 16:27:05 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12868
12869 * configure.in (powerpcle-*-solaris*): Until we get shared
12870 libraries working, don't build gdb, sim, make, tcl, tk, or
12871 expect.
12872
12873 Tue Jun 4 20:41:45 1996 Per Bothner <bothner@deneb.cygnus.com>
12874
12875 * config.guess: Merge with FSF:
12876
12877 Mon Jun 3 08:49:14 1996 Karl Heuer <kwzh@gnu.ai.mit.edu>
12878 * config.guess (*:Linux:*:*): Add guess for sparc-unknown-linux.
12879
12880 Fri May 24 18:34:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
12881 * config.guess (AViiON:dgux:*:*): Fix typo in recognizing mc88110.
12882
12883 Fri Apr 12 20:03:59 1996 Per Bothner <bothner@spiff.gnu.ai.mit.edu>
12884 * config.guess: Combine two OSF1 rules.
12885 Also recognize field test versions. From mjr@zk3.dec.com.
12886 * config.guess (dgux): Use /usr/bin/uname rather than uname,
12887 because GNU uname does not support -p. From pmr@pajato.com.
12888
12889 Tue Jun 4 11:07:25 1996 Tom Tromey <tromey@csk3.cygnus.com>
12890
12891 * Makefile.in (MAKEDIRS): Removed $(tooldir).
12892
12893 Tue May 28 12:30:50 1996 Stan Shebs <shebs@andros.cygnus.com>
12894
12895 * mpw-README: Document GCCIncludes.
12896
12897 Sun May 26 15:16:27 1996 Fred Fish <fnf@cygnus.com>
12898
12899 * configure.in (alpha-*-linux*): Set enable_shared to yes.
12900
12901 Tue May 21 15:41:39 1996 Stan Shebs <shebs@andros.cygnus.com>
12902
12903 * mpw-configure: Handle --enable-FOO and --disable-FOO.
12904
12905 Mon May 20 10:12:29 1996 Geoffrey Noer <noer@cygnus.com>
12906
12907 * configure.in (*-*-cygwin32): Configure make.
12908
12909 Tue May 7 14:19:42 1996 Tom Tromey <tromey@snuffle.cygnus.com>
12910
12911 * Makefile.in (inet-install): Quote value of INSTALL_MODULES.
12912
12913 Fri May 3 08:57:17 1996 Tom Tromey <tromey@lisa.cygnus.com>
12914
12915 * Makefile.in (all-inet): Depend on all-perl.
12916
12917 * Makefile.in (inet-install): New target.
12918
12919 * Makefile.in (all-inet): Depend on all-tcl.
12920 (all-inet): Depend on all-send-pr.
12921
12922 Tue Apr 30 13:55:51 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12923
12924 * configure.in (powerpcle-*-solaris*): Turn off tk and tcl
12925 temporarily.
12926
12927 Thu Apr 25 11:48:20 1996 Ian Lance Taylor <ian@cygnus.com>
12928
12929 * configure.in: Don't configure --with-gnu-ld on AIX.
12930
12931 Thu Apr 25 06:33:36 1996 Michael Meissner <meissner@wogglebug.tiac.net>
12932
12933 * configure.in (powerpcle-*-solaris*): Turn off gdb temporarily.
12934
12935 Tue Apr 23 09:07:39 1996 Tom Tromey <tromey@creche.cygnus.com>
12936
12937 * Makefile.in (ALL_MODULES): Added all-inet.
12938 (CROSS_CHECK_MODULES): Added check-inet.
12939 (INSTALL_MODULES): Added install-inet.
12940 (CLEAN_MODULES): Added clean-inet.
12941 (all-indent): New target.
12942
12943 * configure.in (host_tools): Added inet.
12944 (native_only): Added inet.
12945 (noconfigdirs): Added inet.
12946
12947 Fri Apr 19 15:35:29 1996 Ian Lance Taylor <ian@cygnus.com>
12948
12949 * configure.in: Don't configure libgloss if we are not configuring
12950 newlib.
12951
12952 Wed Apr 17 19:30:01 1996 Rob Savoye <rob@chinadoll.cygnus.com>
12953
12954 * configure.in: Don't configure libgloss for unsupported
12955 architectures.
12956
12957 Tue Apr 16 11:17:05 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12958
12959 * Makefile.in (CLEAN_MODULES): Add clean-apache.
12960
12961 Mon Apr 15 15:09:05 1996 Tom Tromey <tromey@creche.cygnus.com>
12962
12963 * Makefile.in (ALL_MODULES): Include all-apache.
12964 (CROSS_CHECK_MODULES): Include check-apache.
12965 (INSTALL_MODULES): Include install-apache.
12966 (all-apache): New target.
12967
12968 * configure.in: Added apache everywhere perl is seen.
12969
12970 Mon Apr 15 14:59:13 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12971
12972 * Makefile.in: Add support for clean-{module} and
12973 clean-target-{module} rules.
12974
12975 Wed Apr 10 21:37:41 PDT 1996 Marilyn E. Sander <msander@cygnus.com>
12976
12977 * configure.in (*-*-ose) do not build libgloss.
12978
12979 Mon Apr 8 16:16:20 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12980
12981 * config.guess (prep*:SunOS:5.*:*): Turn into
12982 powerpele-unknown-solaris2.
12983
12984 Mon Apr 8 14:45:41 1996 Ian Lance Taylor <ian@cygnus.com>
12985
12986 * configure.in: Permit --enable-shared to specify a list of
12987 directories.
12988
12989 Fri Apr 5 08:17:57 1996 Jason Molenda (crash@phydeaux.cygnus.com)
12990
12991 * configure.in (host==solaris): Pass only the first word of $CC
12992 to /usr/bin/which when checking if we're using /usr/ccs/bin/cc.
12993
12994 Fri Apr 5 03:16:13 1996 Jason Molenda (crash@phydeaux.cygnus.com)
12995
12996 * Makefile.in (BASE_FLAGS_TO_PASS): pass down $(MAKE).
12997
12998 Thu Mar 28 14:11:11 1996 Tom Tromey <tromey@creche.cygnus.com>
12999
13000 * Makefile.in (ALL_MODULES): Include all-perl.
13001 (CROSS_CHECK_MODULES): Include check-perl.
13002 (INSTALL_MODULES): Include install-perl.
13003 (ALL_X11_MODULES): Include all-guile.
13004 (CHECK_X11_MODULES): Include check-guile.
13005 (INSTALL_X11_MODULES): Include install-guile.
13006 (all-perl): New target.
13007 (all-guile): New target.
13008
13009 * configure.in (host_tools): Include perl and guile.
13010 (native_only): Include perl and guile.
13011 (noconfigdirs): Don't build guile and perl; no ports have been
13012 done.
13013
13014 Tue Mar 26 21:18:50 1996 Andrew Cagney <cagney@kremvax.highland.com.au>
13015
13016 * configure (--enable-*): Handle quoted option lists such as
13017 --enable-sim-cflags='-g0 -O' better.
13018
13019 Thu Mar 21 11:53:08 1996 Michael Meissner <meissner@tiktok.cygnus.com>
13020
13021 * Makefile.in ({,inst}all-target): New rule so we can make and
13022 install all of the target directories easily.
13023
13024 Wed Mar 20 18:10:57 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
13025
13026 * configure.in: Add missing global flag in sed substitution when
13027 deleting `target-' from ${configdirs}.
13028
13029 Thu Mar 14 19:15:06 1996 Ian Lance Taylor <ian@cygnus.com>
13030
13031 * Makefile.in (DO_X): Don't get confused if CC contains `=' in an
13032 option.
13033
13034 * configure.in (mips*-nec-sysvr4*): Use a host_makefile_frag of
13035 config/mh-necv4.
13036
13037 * install.sh: Correct misspelling of transformbasename.
13038
13039 * config.guess: Recognize mips-*-sysv*.
13040
13041 Mon Mar 11 15:36:42 1996 Dawn Perchik <dawn@critters.cygnus.com>
13042
13043 * config.sub: Recognize mon960.
13044
13045 Sun Mar 10 13:18:38 1996 Ian Lance Taylor <ian@cygnus.com>
13046
13047 * configure: Restore Canadian Cross handling of BISON and LEX,
13048 removed in Feb 20 change.
13049
13050 Fri Mar 8 20:07:09 1996 Per Bothner <bothner@kalessin.cygnus.com>
13051
13052 * README: Suggestions from Torbjorn Granlund <tege@matematik.su.se>:
13053 Mention make install. Remove the old copyright date as well the
13054 clumsy and rather pointless copyright on the README file.
13055
13056 Fri Mar 8 17:51:35 1996 Ian Lance Taylor <ian@cygnus.com>
13057
13058 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): If there is a
13059 Makefile after running symlink-tree, then run `make distclean' to
13060 avoid clobbering any generated files in srcdir.
13061
13062 Tue Mar 5 08:21:44 1996 J.T. Conklin <jtc@rtl.cygnus.com>
13063
13064 * configure.in (m68k-*-netbsd*): Build everything now.
13065
13066 Wed Feb 28 12:25:46 1996 Jason Merrill <jason@yorick.cygnus.com>
13067
13068 * Makefile.in (taz): Fix quoting.
13069
13070 Tue Feb 27 11:33:57 1996 Doug Evans <dje@charmed.cygnus.com>
13071
13072 * configure.in (sparclet-*-*): Build everything now.
13073
13074 Tue Feb 27 14:31:51 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
13075
13076 * configure.in (m68k-*-linux*): New host.
13077
13078 Mon Feb 26 14:32:44 1996 Ian Lance Taylor <ian@cygnus.com>
13079
13080 * configure: Check for bison before byacc.
13081
13082 Tue Feb 20 23:12:35 1996 Stu Grossman (grossman@critters.cygnus.com)
13083
13084 * Makefile.in configure: Change the way LEX and BISON/YACC are
13085 set. configure now defines DEFAULT_LEX and DEFAULT_YACC by
13086 searching PATH. These are used as fallbacks by Makefile.in if
13087 flex/bison/byacc aren't in objdir.
13088
13089 Mon Feb 19 11:45:30 1996 Ian Lance Taylor <ian@cygnus.com>
13090
13091 * Makefile.in: Make everything which depends upon all-bfd also
13092 depend upon all-opcodes, in case --with-commonbfdlib is used.
13093
13094 Thu Feb 15 19:50:50 1996 Michael Meissner <meissner@tiktok.cygnus.com>
13095
13096 * configure.in (host *-*-cygwin32): Don't build gdb if we are
13097 building NT native compilers on Unix.
13098
13099 Thu Feb 15 17:42:25 1996 Ian Lance Taylor <ian@cygnus.com>
13100
13101 * configure.in: Don't get CC from the host Makefile fragment if we
13102 can find gcc in PATH, or if this is a Canadian Cross. Move the
13103 Solaris test for /usr/ucb/cc to the post target script, just after
13104 the compiler sanity test.
13105
13106 Wed Feb 14 16:57:40 1996 Ian Lance Taylor <ian@cygnus.com>
13107
13108 * config.sub: Merge with FSF.
13109
13110 Tue Feb 13 14:27:48 1996 Ian Lance Taylor <ian@cygnus.com>
13111
13112 * Makefile.in (RPATH_ENVVAR): New variable.
13113 (REALLY_SET_LIB_PATH): Use it.
13114 * configure.in: On HP/UX, set RPATH_ENVVAR to SHLIB_PATH.
13115
13116 Mon Feb 12 15:28:49 1996 Doug Evans <dje@charmed.cygnus.com>
13117
13118 * config.sub, configure.in: Recognize sparclet cpu.
13119
13120 Mon Feb 12 15:33:59 1996 Christian Bauernfeind <chrisbfd@theorie3.physik.uni-erlangen.de>
13121
13122 * config.guess: Support m68k-cbm-sysv4.
13123
13124 Sat Feb 10 12:06:42 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
13125
13126 * config.guess (*:Linux:*:*): Guess m68k-unknown-linux and
13127 m68k-unknown-linuxaout from linker help string. Put quotes around
13128 $ld_help_string.
13129
13130 Thu Dec 7 09:03:24 1995 Tom Horsley <Tom.Horsley@mail.hcsc.com>
13131
13132 * config.guess (powerpc-harris-powerunix): Add guess for port
13133 to new target.
13134
13135 Thu Feb 8 15:37:52 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
13136
13137 * config.guess (UNAME_VERSION): Recognize X4.x as an OSF version.
13138
13139 Mon Feb 5 16:36:51 1996 Ian Lance Taylor <ian@cygnus.com>
13140
13141 * configure.in: If --enable-shared was used, set SET_LIB_PATH to
13142 $(REALLY_SET_LIB_PATH) in Makefile.
13143 * Makefile.in (SET_LIB_PATH): New variable.
13144 (REALLY_SET_LIB_PATH): New variable.
13145 ($(DO_X)): Use $(SET_LIB_PATH).
13146 (install.all, gcc-no-fixedincludes, $(ALL_MODULES)): Likewise.
13147 ($(NATIVE_CHECK_MODULES), $(CROSS_CHECK_MODULES)): Likewise.
13148 ($(INSTALL_MODULES), $(CONFIGURE_TARGET_MODULES)): Likewise.
13149 ($(ALL_TARGET_MODULES), $(CHECK_TARGET_MODULES)): Likewise.
13150 ($(INSTALL_TARGET_MODULES), $(ALL_X11_MODULES)): Likewise.
13151 ($(CHECK_X11_MODULES), $(INSTALL_X11_MODULES)): Likewise.
13152 (all-gcc, all-bootstrap, check-gcc, install-gcc): Likewise.
13153 (install-dosrel): Likewise.
13154 (all-opcodes): Depend upon all-libiberty.
13155
13156 Sun Feb 4 16:51:11 1996 Steve Chamberlain <sac@slash.cygnus.com>
13157
13158 * config.guess (*:CYGWIN*): New
13159
13160 Sat Feb 3 10:42:35 1996 Michael Meissner <meissner@tiktok.cygnus.com>
13161
13162 * Makefile.in (all-target-winsup): All all-target-libiberty.
13163
13164 Fri Feb 2 17:58:56 1996 Michael Meissner <meissner@tiktok.cygnus.com>
13165
13166 * configure.in (noconfigdirs): Add missing # in front of comment.
13167
13168 Thu Feb 1 14:38:13 1996 Geoffrey Noer <noer@cygnus.com>
13169
13170 * configure.in: add second pass to things added to noconfigdirs
13171 so *-gm-magic can exclude libgloss properly.
13172
13173 Thu Feb 1 11:10:16 1996 Stan Shebs <shebs@andros.cygnus.com>
13174
13175 * mpw-configure (extralibs_name, rez_name): Set correctly
13176 for MWC68K compiler.
13177
13178 * mpw-README: Add more info on the necessary build tools.
13179
13180 Thu Feb 1 10:22:38 1996 Steve Chamberlain <sac@slash.cygnus.com>
13181
13182 * configure.in, config.sub: Recognize cygwin32.
13183
13184 Wed Jan 31 14:17:10 1996 Richard Henderson <rth@tamu.edu>
13185
13186 * config.guess, config.sub: Recognize A/UX.
13187
13188 Wed Jan 31 13:52:14 1996 Ian Lance Taylor <ian@cygnus.com>
13189
13190 * config.sub: Merge with gcc/config.sub.
13191
13192 Thu Jan 25 11:01:10 1996 Raymond Jou <rjou@mexican.cygnus.com>
13193
13194 * mpw-build.in (do-binutils): Add build of stamps.
13195
13196 Thu Jan 25 17:05:26 1996 James G. Smith <jsmith@cygnus.co.uk>
13197
13198 * config.sub: Add recognition for mips64vr4100*-* targets.
13199
13200 Wed Jan 24 12:47:55 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
13201
13202 * test-build.mk: Add checking of `hpux9' rather than just `hpux'.
13203 Add creation of gconfigargs with `--enable-shared' turned on.
13204 ($(host)-stamp-stage2-configured): Pass $(gconfigargs).
13205 ($(host)-stamp-stage3-configured): Likewise.
13206 (HOLES): Add chatr and ldd.
13207 (i386-ncr-sysv4.3*): Add use of /usr/ccs/bin in the PATH and HOLE_DIRS.
13208
13209 Wed Jan 24 20:32:30 1996 Torbjorn Granlund <tege@noisy.matematik.su.se>
13210
13211 * configure: Pass --nfp to recursive configures.
13212
13213 Mon Jan 22 10:41:56 1996 Steve Chamberlain <sac@slash.cygnus.com>
13214
13215 * Makefile.in (DLLTOOL): New.
13216 (DLLTOOL_FOR_TARGET): New.
13217 (EXTRA_HOST_FLAGS): Pass down DLLTOOL.
13218 (EXTRA_TARGET_FLAGS): Ditto.
13219 (EXTRA_GCC_FLAGS): Ditto.
13220 (CONFIGURE_TARGET_MODULES): Ditto.
13221 (DO_X): Ditto.
13222 * configure: Add DLLTOOL.
13223
13224 Fri Jan 19 13:30:15 1996 Stan Shebs <shebs@andros.cygnus.com>
13225
13226 SCO OpenServer 5 changes from Robert Lipe <robertl@dgii.com>:
13227 * configure.in (i[345]86-*-sco3.2v5*): Use mh-sysv instead of
13228 mh-sco, since old workarounds no longer needed, and don't
13229 build ld, since libraries have weak symbols in COFF.
13230
13231 Sun Jan 14 23:01:31 1996 Fred Fish <fnf@cygnus.com>
13232
13233 * Makefile.in (CONFIGURE_TARGET_MODULES): Add missing ';'.
13234
13235 Fri Jan 12 15:25:35 1996 Ian Lance Taylor <ian@cygnus.com>
13236
13237 * configure.in: Make sure that ${CC} can be used to compile an
13238 executable.
13239
13240 Sat Jan 6 07:23:33 1996 Michael Meissner <meissner@wogglebug.tiac.net>
13241
13242 * Makefile.in (all-gdb): Depend on $(GDB_TK).
13243 * configure (GDB_TK): Set GDB_TK to either "all-tcl all-tk" or
13244 nothing depending on whether gdbtk is being built.
13245
13246 Wed Jan 3 17:54:41 1996 Doug Evans <dje@canuck.cygnus.com>
13247
13248 * Makefile.in (newlib.tar.gz): Delete building of newlib's info files.
13249
13250 Mon Jan 1 19:09:14 1996 Brendan Kehoe <brendan@rtl.cygnus.com>
13251
13252 * configure.in (noconfigdirs): Put ld or gas in this early, if the
13253 user specifically used --with-gnu-ld=no or --with-gnu-as=no.
13254
13255 Sat Dec 30 16:08:57 1995 Doug Evans <dje@canuck.cygnus.com>
13256
13257 * config-ml.in: Add support for
13258 --disable-{softfloat,m68881,m68000,m68020} on m68*-*-*.
13259 Simplify setting of multidirs from --disable-foo.
13260
13261 Fri Dec 29 07:56:11 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13262
13263 * Makefile.in (EXTRA_GCC_FLAGS): If any of the make variables
13264 LANGUAGES, BOOT_CFLAGS, STMP_FIXPROTO, LIMITS_H_TEST,
13265 LIBGCC1_TEST, LIBGCC2_CFLAGS, LIBGCC2_INCLUDES, and ENQUIRE are
13266 non-empty, pass them on to the GCC make.
13267 (all-bootstrap): New rule that is like all-gcc, except it executes
13268 the GCC bootstrap rule instead of the GCC all rule.
13269
13270 Wed Dec 27 15:51:48 1995 Doug Evans <dje@canuck.cygnus.com>
13271
13272 * config-ml.in (ml_realsrcdir): New, to account for ${subdir}.
13273
13274 Tue Dec 26 11:45:31 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13275
13276 * config.guess (AViiON:dgux:*:*): Update from FSF to add pentium
13277 DG/UX support.
13278
13279 Fri Dec 15 10:01:27 1995 Stan Cox <coxs@dg-rtp.dg.com>
13280
13281 * config.sub (i*86*) Change [345] to [3456]
13282
13283 Wed Dec 20 17:41:40 1995 Brendan Kehoe <brendan@lisa.cygnus.com>
13284
13285 * configure.in (noconfigdirs): Add gas or ld if --with-gnu-as=no or
13286 --with-gnu-ld=no.
13287
13288 Wed Dec 20 15:15:35 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13289
13290 * config-ml.in (rs6000*, powerpc*): Add switches to control which
13291 AIX multilibs get built.
13292
13293 Mon Dec 18 17:55:46 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13294
13295 * configure.in (i386-win32): Don't build expect if we're not
13296 building the tcl subdir.
13297
13298 Mon Dec 18 11:47:19 1995 Stan Shebs <shebs@andros.cygnus.com>
13299
13300 * Makefile.in: (configure-target-examples, all-target-examples):
13301 New targets, configure and build example programs.
13302
13303 Fri Dec 15 16:13:03 1995 Stan Shebs <shebs@andros.cygnus.com>
13304
13305 * mpw-configure: If an mpw-config.in generated a file mk.sed,
13306 use it as input to sedit the generated MPW makefile.
13307 * mpw-README: Add a suggestion about Gestalt.h.
13308
13309 Wed Dec 13 16:43:51 1995 Ian Lance Taylor <ian@cygnus.com>
13310
13311 * config.sub: Accept *-*-ieee*.
13312
13313 Tue Dec 12 11:52:57 1995 Ian Lance Taylor <ian@cygnus.com>
13314
13315 * Makefile.in (local-distclean): Remove $(TARGET_SUBDIR). From
13316 Ronald F. Guilmette <rfg@monkeys.com>.
13317
13318 Mon Dec 11 15:31:58 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13319
13320 * configure.in (host==powerpc-pe): Add many directories to noconfigdirs
13321 for powerpc-pe native.
13322 (target==i386-win32): add tcl, make to noconfigdirs if canadian cross.
13323 (target==powerpc-pe): duplicate i386-win32 entry.
13324
13325 Sat Dec 9 14:58:28 1995 Jim Wilson <wilson@chestnut.cygnus.com>
13326
13327 * configure.in (noconfigdirs): Exclude target-newlib for all versions
13328 of vxworks, not just vxworks5.1.
13329
13330 Mon Dec 4 12:05:40 1995 Stan Shebs <shebs@andros.cygnus.com>
13331
13332 * mpw-configure: Add support for exec-prefix.
13333
13334 Mon Dec 4 10:22:50 1995 Jeffrey A. Law <law@rtl.cygnus.com>
13335
13336 * config.guess: Recognize HP model 816 machines as having
13337 a PA1.1 processor.
13338
13339 Mon Dec 4 12:38:15 1995 Ian Lance Taylor <ian@cygnus.com>
13340
13341 * configure: Ignore new autoconf configure options.
13342
13343 Thu Nov 30 16:57:33 1995 Per Bothner <bothner@wombat.gnu.ai.mit.edu>
13344
13345 * config.guess: Recognize Pentium under SCO.
13346 From Robert Lipe <robertl@arnet.com>.
13347
13348 Wed Nov 29 13:49:08 1995 J.T. Conklin <jtc@rtl.cygnus.com>
13349
13350 * configure.in (noconfigdirs): Disable target-libio on v810-*-*.
13351
13352 Wed Nov 29 12:12:01 1995 Ian Lance Taylor <ian@cygnus.com>
13353
13354 * configure.in: Don't configure gas for alpha-dec-osf*.
13355
13356 Tue Nov 28 17:16:48 1995 Ian Lance Taylor <ian@cygnus.com>
13357
13358 * configure.in: Default to --with-stabs for some targets for which
13359 it makes sense: mips*-*-*, alpha*-*-osf*, i[345]86*-*-sysv4* and
13360 i[345]86*-*-unixware*.
13361
13362 Mon Nov 27 13:44:15 1995 Ian Lance Taylor <ian@cygnus.com>
13363
13364 * config-ml.in: Get list of multidirs using gcc --print-multi-lib
13365 rather than basing it on the target. Simplify handling of options
13366 controlling which directories to configure. Remove extraneous
13367 slash in multi-clean target.
13368
13369 Fri Nov 24 17:29:29 1995 Doug Evans <dje@deneb.cygnus.com>
13370
13371 * config-ml.in: Prefix more variables with ml_ so they don't collide
13372 with configure's.
13373
13374 Wed Nov 22 11:27:02 1995 Ian Lance Taylor <ian@cygnus.com>
13375
13376 * configure: Don't turn -v into --v.
13377
13378 Tue Nov 21 16:48:02 1995 Doug Evans <dje@deneb.cygnus.com>
13379
13380 * configure.in (targargs): Fix typo.
13381
13382 * Makefile.in (DEVO_SUPPORT): Add symlink-tree.
13383
13384 Tue Nov 21 14:08:28 1995 Ian Lance Taylor <ian@cygnus.com>
13385
13386 * configure.in: Strip --host and --target options from
13387 CONFIG_ARGUMENTS, and always configure for --host only. Add
13388 --with-cross-host option when building with a cross-compiler.
13389 * configure: Canonicalize the arguments put into config.status by
13390 always using `=' for an option with an argument. Pass a presumed
13391 --host or --target explicitly.
13392
13393 Fri Nov 17 17:50:30 1995 Stan Shebs <shebs@andros.cygnus.com>
13394
13395 * config.sub: Merge -macos*, -magic*, -pe*, and -win32 cases
13396 into general OS recognition case.
13397
13398 Fri Nov 17 17:42:25 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13399
13400 * configure.in (target_configdirs): add target-winsup only
13401 for win32 target systems.
13402
13403 Thu Nov 16 14:04:47 1995 Ian Lance Taylor <ian@cygnus.com>
13404
13405 * Makefile.in (all-target-libgloss): Depend upon
13406 configure-target-newlib, since when libgloss is built it looks to
13407 see if the newlib directory exists.
13408
13409 Wed Nov 15 14:47:52 1995 Ken Raeburn <raeburn@cygnus.com>
13410
13411 * Makefile.in (DEVO_SUPPORT): Use config-ml.in instead of
13412 cfg-ml-*.in.
13413
13414 Wed Nov 15 11:45:23 1995 Ian Lance Taylor <ian@cygnus.com>
13415
13416 * configure: Handle LD and LD_FOR_TARGET when configuring a
13417 Canadian Cross.
13418
13419 Tue Nov 14 14:56:11 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13420
13421 * configure.in (target_libs): add target-winsup.
13422 (target==i386-win32): add patch diff flex make to $noconfigdirs.
13423 (target==ppcle-pe): remove ld from $noconfigdirs.
13424
13425 Tue Nov 14 01:25:50 1995 Doug Evans <dje@canuck.cygnus.com>
13426
13427 * Makefile.in (CONFIGURE_TARGET_MODULES): Pass --with-target-subdir.
13428 Preserve relative path names in $srcdir. Build symlink tree if
13429 configuring cross target dir and srcdir=. (= no VPATH support).
13430 (configure-target-libg++): Depend on configure-target-librx.
13431 * cfg-ml-com.in, cfg-ml-pos.in: Deleted.
13432 * config-ml.in: New file.
13433 * symlink-tree: New file.
13434 * configure: Ensure srcdir="." if that's what it is.
13435
13436 Mon Nov 13 12:34:20 1995 Stan Shebs <shebs@andros.cygnus.com>
13437
13438 * mpw-README: Clarify some phrasing, add notes about CodeWarrior
13439 includes and FLEX_SKELETON setting.
13440 * mpw-configure (--with-gnu-ld): New option, controls whether
13441 to use PPCLink or ld with PowerMac GCC.
13442 * mpw-build.in (all-grez, do-grez, install-grez): New targets.
13443 * mpw-config.in: Configure grez if targeting Mac.
13444
13445 * config.sub: Accept pmac and pmac-mpw as names for PowerMacs,
13446 accept mpw and mac-mpw as names for m68k Macs, change macos7 to
13447 just macos.
13448 * configure.in: Configure grez resource compiler if targeting Mac.
13449 * Makefile.in (all-grez, install-grez): New targets.
13450
13451 Wed Nov 8 17:33:51 1995 Jason Merrill <jason@yorick.cygnus.com>
13452
13453 * configure: CXX defaults to gcc, not g++. If we find
13454 gcc in the path, set CC to gcc -O2.
13455
13456 Tue Nov 7 15:45:17 1995 Ian Lance Taylor <ian@cygnus.com>
13457
13458 * configure: Default ${build} correctly. Avoid picking up extra
13459 spaces when reading CC and CXX from Makefile. When doing a
13460 Canadian Cross, use plausible default values for numerous
13461 variables.
13462 * configure.in: When doing a Canadian Cross, don't try to
13463 configure tools whose configure script can't handle it.
13464
13465 Mon Nov 6 19:32:17 1995 Jim Wilson <wilson@chestnut.cygnus.com>
13466
13467 * cfg-ml-com.in (sh-*-*): Add m2 and ml/m2 to multidirs.
13468
13469 Sun Nov 5 00:15:41 1995 Per Bothner <bothner@kalessin.cygnus.com>
13470
13471 * configure: Remove dubious bug reporting address.
13472
13473 Fri Nov 3 08:17:54 1995 Per Bothner <bothner@kalessin.cygnus.com>
13474
13475 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): If subdir has
13476 configure script, run that instead of this directory's configure.
13477 In either case, print a message that we're configuring the sub-dir.
13478
13479 Thu Nov 2 23:23:36 1995 Per Bothner <bothner@kalessin.cygnus.com>
13480
13481 * configure.in: Before checking for the existence of various files,
13482 use sed to filter out "target-".
13483
13484 Thu Nov 2 13:24:56 1995 Ian Lance Taylor <ian@cygnus.com>
13485
13486 * Makefile.in (DO_X): Split rule to decrease command line length
13487 for systems with small ARG_MAX values. From phdm@info.ucl.ac.be
13488 (Philippe De Muyter).
13489
13490 Wed Nov 1 15:18:35 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13491
13492 * Makefile.in (all-patch): depend on all-libiberty.
13493
13494 Wed Nov 1 12:23:20 1995 Ian Lance Taylor <ian@cygnus.com>
13495
13496 * configure.in: If the only directory in target_configdirs which
13497 actually exists is libiberty, then set target_configdirs to empty,
13498 to avoid trying to build a target libiberty in a gas or gdb
13499 distribution.
13500
13501 Tue Oct 31 17:52:39 1995 J.T. Conklin <jtc@slave.cygnus.com>
13502
13503 * configure.in (host_makefile_frag): Use m68k-sun-sunos* instead
13504 of m68k-sun-* when selecting mh-sun3 to avoid matching NetBSD/sun3
13505 systems.
13506
13507 Tue Oct 31 16:57:32 1995 Jim Wilson <wilson@chestnut.cygnus.com>
13508
13509 * configure.in (copy_dirs): Use sys-include instead of include
13510 for --with-headers option.
13511
13512 Tue Oct 31 10:29:36 1995 steve chamberlain <sac@slash.cygnus.com>
13513
13514 * Makefile.in, configure.in: Make winsup builds work with
13515 new scheme.
13516
13517 Mon Oct 30 18:57:09 1995 Ian Lance Taylor <ian@cygnus.com>
13518
13519 * configure.in: Build the linker on AIX.
13520
13521 Mon Oct 30 12:27:16 1995 Per Bothner <bothner@kalessin.cygnus.com>
13522
13523 * Makefile.in (CC_FOR_TARGET, CXX_FOR_TARGET): Add $(TARGET_SUBDIR)
13524 where needed.
13525
13526 Mon Oct 30 12:45:25 1995 Doug Evans <dje@cygnus.com>
13527
13528 * Makefile.in (all-gcc): Fix typo.
13529
13530 Sat Oct 28 10:27:59 1995 Per Bothner <bothner@kalessin.cygnus.com>
13531
13532 * Makefile.in ($(CHECK_TARGET_MODULES)): Fix typo.
13533
13534 Fri Oct 27 23:14:12 1995 Per Bothner <bothner@kalessin.cygnus.com>
13535
13536 * configure.in: Rename libFOO to target-libFOO, and xiberty
13537 to target-xiberty, to provide more flexibility.
13538 (target_subdir): Define. Create if cross.
13539 Set TARGET_SUBDIR in Makefile to ${target_subdir}.
13540 * Makefile.in: Rename all-libFOO -> all-target-libFOO, all-xiberty
13541 -> all-target-libiberty, configure-libFOO -> configure-target-libFOO,
13542 check-libFOO -> check-target-libFOO, etc.
13543 ($(DO_X)): Iterate over TARGET_CONFIGDIRS after SUBDIRS.
13544 ($(CONFIGURE_TARGET_MODULES), $(CHECK_TARGET_MODULES),
13545 $(ALL_TARGET_MODULES), $(INSTALL_TARGET_MODULES)): Update accordingly.
13546 (configure-target-XXX): Depend on $(ALL_GCC), not all-gcc, to
13547 allow ALL_GCC="" to only configure.
13548 (DEVO_SUPPORT): Add cfg-ml-com.in and cfg-ml-pos.in.
13549 (ETC_SUPPORT, ETC_SUPPORT_PFX): Merge; update 'taz' accordingly.
13550 (LIBGXX_SUPPORT_DIRS): Remove xiberty.
13551
13552 Sat Oct 28 01:53:49 1995 Ken Raeburn <raeburn@cygnus.com>
13553
13554 * Makefile.in (taz): Build "info" in etc explicitly.
13555
13556 Fri Oct 27 09:32:30 1995 Stu Grossman (grossman@cygnus.com)
13557
13558 * configure.in: Make sure that CC is undefined (as opposed to
13559 null) if toplevel/config/mh-{host} doesn't define it. Fixes a
13560 problem with autoconf trying to configure on a host without GCC.
13561
13562 Thu Oct 26 22:35:01 1995 Stan Shebs <shebs@andros.cygnus.com>
13563
13564 * mpw-configure: Set host alias from choice of host compiler,
13565 only use generic MPW Makefile sed if present, edit a file
13566 named "hacked_Makefile.in" instead of "Makefile.in" if present.
13567 * mpw-README: Add problem notes about CW6 and CW7.
13568
13569 Thu Oct 26 05:45:10 1995 Ken Raeburn <raeburn@kr-pc.cygnus.com>
13570
13571 * Makefile.in (taz): Use ";" instead of ";;".
13572
13573 Wed Oct 25 15:18:24 1995 Per Bothner <bothner@kalessin.cygnus.com>
13574
13575 * Makefile.in (taz): Grep for '^diststuff:' or '^info:' in
13576 sub-directory Makefiles, instead of using DISTSTUFFDIRS and
13577 DISTDOCDIRS.
13578 (DISTSTUFFDIRS, DISTDOCDIRS): Removed - no longer used.
13579 (newlib.tar.gz): Don't pass DISTDOCDIRS to recursive make.
13580
13581 Wed Oct 25 14:43:55 1995 Per Bothner <bothner@kalessin.cygnus.com>
13582
13583 * Makefile.in (DISTDOCDIRS): Remove ld gprof bnutils gas libg++ gdb
13584 and gnats, because they are now subsumed by DISTSTUFFDIRS.
13585 Move bfd to DISTSTUFFDIRS.
13586
13587 Tue Oct 24 18:19:09 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13588
13589 * Makefile.in (X11_LIB): Removed.
13590 (X11_FLAGS_TO_PASS): pass only X11_EXTRA_CFLAGS and X11_EXTRA_LIBS.
13591
13592 * configure.in (host_makefile_frag): mh-aix & mh-sun removed.
13593
13594 Sun Oct 22 13:04:42 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13595
13596 * cfg-ml-com.in (powerpc*): Shorten some of the multilib directory
13597 names.
13598
13599 Fri Oct 20 18:02:10 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13600
13601 * cfg-ml-com.in (powerpc*-eabi*): Add mcall-aixdesc varients.
13602
13603 Thu Oct 19 10:40:57 1995 steve chamberlain <sac@slash.cygnus.com>
13604
13605 * configure.in (i[345]86-*-win32): Always build newlib.
13606 Don't configure cvs, autoconf or texinfo.
13607 * Makefile.in (LD_FOR_TARGET): New.
13608 (BASE_FLAGS_TO_PASS, EXTRA_TARGET_FLAGS, CONFIGURE_TARGET_MODULES):
13609 Pass down LD_FOR_TARGET.
13610
13611 Wed Oct 18 15:53:56 1995 steve chamberlain <sac@slash.cygnus.com>
13612
13613 * winsup: New directory.
13614 * Makefile.in: Build winsup.
13615 * configure.in: Winsup is configured when target is win32.
13616 Can only build win32 target GDB when native.
13617
13618 Mon Oct 16 09:42:31 1995 Jeffrey A Law (law@cygnus.com)
13619
13620 * config.guess: Recognize HP model 819 machines as having
13621 a PA 1.1 processor.
13622
13623 Mon Oct 16 10:49:43 1995 Ian Lance Taylor <ian@cygnus.com>
13624
13625 * configure: Fix sed loop which substitutes for CC and CXX to
13626 avoid bug found in various sed implementations.
13627
13628 Wed Oct 11 16:16:20 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13629
13630 * cfg-ml-com.in (powerpc-*-eabisim): Delete separate rule for
13631 simulator. Use standard powerpc-*-eabi*.
13632
13633 Mon Oct 9 17:21:56 1995 Ian Lance Taylor <ian@cygnus.com>
13634
13635 * configure.in: Stop putting gas and binutils in noconfigdirs for
13636 powerpc-*-aix* and rs6000-*-*.
13637
13638 Mon Oct 9 12:38:40 1995 Michael Meissner <meissner@cygnus.com>
13639
13640 * cfg-ml-com.in (powerpc*-*-eabisim*): Add support for building
13641 -mcall-aixdesc libraries.
13642
13643 Fri Oct 6 16:17:57 1995 Ken Raeburn <raeburn@cygnus.com>
13644
13645 Mon Sep 25 22:49:32 1995 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
13646
13647 * config.sub (arm | armel | armeb): Fix shell syntax.
13648
13649 Fri Oct 6 14:40:28 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13650
13651 * cfg-ml-com.in ({powerpc,rs6000}-ibm-aix*): Add multilibs for
13652 -msoft-float and -mcpu=common support.
13653 (powerpc*-*-eabisim*): Add support for building -mcall-aix
13654 libraries.
13655
13656 Thu Oct 5 13:26:37 1995 Brendan Kehoe <brendan@lisa.cygnus.com>
13657
13658 * configure.in: Allow configuration and build of emacs19 for the alpha.
13659
13660 Wed Oct 4 22:05:36 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13661
13662 * configure.in (CC): Get ^CC, not just any old CC, from
13663 ${host_makefile_frag}.
13664
13665 Wed Oct 4 21:55:00 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13666
13667 * configure.in (CC): Try to get CC from
13668 ${srcdir}/${host_makefile_frag}, not ${host_makefile_frag}.
13669
13670 Wed Oct 4 21:44:12 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13671
13672 * Makefile.in (TARGET_CONFIGDIRS): configure targetdirs
13673 only if it exists in $(srcdir).
13674
13675 Wed Oct 4 11:52:31 1995 Ian Lance Taylor <ian@cygnus.com>
13676
13677 * configure: If CC and CXX are not set in the environment, set
13678 them, based on either an existing Makefile or on searching for gcc
13679 in PATH. Substitute for CC and CXX in Makefile.
13680 * configure.in: Remove libm from target_libs. Separate
13681 target_configdirs from configdirs. If CC is not set in
13682 environment, try to get it from a host Makefile fragment. Rewrite
13683 changes of configdirs to use skipdirs instead. A few minor
13684 tweaks. Take directories out of target_configdirs as they are
13685 taken out of configdirs. Remove existing Makefile files from
13686 subdirectories. Substitute for TARGET_CONFIGDIRS and
13687 CONFIG_ARGUMENTS in Makefile.
13688 * Makefile.in (TARGET_CONFIGDIRS): New variable, automatically set
13689 by configure.in.
13690 (CONFIG_ARGUMENTS): Likewise.
13691 (CONFIGURE_TARGET_MODULES): New variable.
13692 ($(DO_X)): Loop over TARGET_CONFIGDIRS as well as SUBDIRS.
13693 ($(CONFIGURE_TARGET_MODULES)): New target.
13694 (configure-libg++, configure-libio): New targets.
13695 (all-libg++): Depend upon configure-libg++.
13696 (all-libio): Depend upon configure-libio.
13697 (configure-libgloss, all-libgloss): New targets.
13698 (configure-libstdc++): New target.
13699 (all-libstdc++): Depend upon configure-libstdc++.
13700 (configure-librx, all-librx): New targets.
13701 (configure-newlib): New target.
13702 (all-newlib): Depend upon configure-newlib
13703 (configure-xiberty): New target.
13704 (all-xiberty): Depend upon configure-xiberty.
13705
13706 Sat Sep 30 04:32:59 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13707
13708 * configure.in (host i[345]86-*-win32): Expand the
13709 noconfigdirs again.
13710
13711 Thu Sep 28 21:18:49 1995 Stan Shebs <shebs@andros.cygnus.com>
13712
13713 * mpw-configure: Fix sed command file name.
13714
13715 Thu Sep 28 17:39:56 1995 steve chamberlain <sac@slash.cygnus.com>
13716
13717 * configure.in (host i[345]86-*-win32): Reduce the
13718 noconfigdirs again.
13719
13720 Wed Sep 27 12:24:00 1995 Ian Lance Taylor <ian@cygnus.com>
13721
13722 * configure.in: Don't configure ld and gdb for powerpc*-*-winnt*
13723 or powerpc*-*-pe*, since they are not yet supported.
13724
13725 Tue Sep 26 14:30:01 1995 Stan Shebs <shebs@andros.cygnus.com>
13726
13727 Add PowerMac support and many other enhancements.
13728 * mpw-configure: New option --cc to select compiler to use,
13729 paste options set according to --cc into the generated
13730 Makefile, generate the Makefile by sed'ing the Unix Makefile.in
13731 if mpw-make.sed is present.
13732 * mpw-config.in: Don't test for gC1, test for mpw-touch,
13733 add forward includes for PowerPC include files.
13734 * mpw-build.in: Build using Makefile.PPC if present.
13735 (do-byacc, etc): Remove separate version resource builds.
13736 (do-gas): Build "stamps" before "all".
13737 (do-gcc): Build "stamps-h" and "stamps-c" before "all".
13738 * mpw-README: Update to reflect --cc option, PowerMac support,
13739 and recently-reported compatibility problems.
13740
13741 Fri Sep 22 12:15:42 1995 Doug Evans <dje@deneb.cygnus.com>
13742
13743 * cfg-ml-com.in (m68*-*-*): Only build multilibs for
13744 embedded m68k systems (-aout, -coff, -elf, -vxworks).
13745 (--with-multilib-top): Pass to recursive invocations.
13746
13747 Tue Sep 19 13:51:05 1995 J.T. Conklin <jtc@blues.cygnus.com>
13748
13749 * configure.in (noconfigdirs): Disable libg++ and libstdc++ on
13750 v810-*-*.
13751
13752 Mon Sep 18 23:08:26 1995 J.T. Conklin <jtc@rtl.cygnus.com>
13753
13754 * configure.in (noconfigdirs): Disable bfd, binutils, gas, gcc,
13755 gdb, ld and opcodes on v810-*-*.
13756
13757 Tue Sep 12 18:03:31 1995 Ian Lance Taylor <ian@cygnus.com>
13758
13759 * Makefile.in (DO_X): Change do-realclean to do-maintainer-clean.
13760 (local-maintainer-clean): New target.
13761 (maintainer-clean): New target.
13762 (realclean): Just depend upon maintainer-clean.
13763
13764 Fri Sep 8 17:11:14 1995 J.T. Conklin <jtc@rtl.cygnus.com>
13765
13766 * configure.in (noconfigdirs): Disable gdb on m68k-*-netbsd*.
13767
13768 Fri Sep 8 16:46:29 1995 Ian Lance Taylor <ian@cygnus.com>
13769
13770 * configure.in: Build ld in mips*-*-bsd* case.
13771
13772 Thu Sep 7 20:03:41 1995 Ken Raeburn <raeburn@cygnus.com>
13773
13774 * config.sub: Accept -lites* OS. From Ian Dall.
13775
13776 Fri Sep 1 08:06:58 1995 James G. Smith <jsmith@beauty.cygnus.com>
13777
13778 * config.sub: recognise mips64vr4300 and mips64vr4300el as valid
13779 targets.
13780
13781 Wed Aug 30 21:06:50 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13782
13783 * configure.in: treat i386-win32 canadian cross the same as
13784 i386-go32 canadian cross.
13785
13786 Thu Aug 24 14:53:20 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13787
13788 * cfg-ml-com.in (powerpc*-*-eabisim): Add support for PowerPC
13789 running under the simulator to build a reduced set of libraries.
13790 (powerpc-*-eabiaix): Add fine grained multilib support added to
13791 other powerpc targets yesterday.
13792
13793 Wed Aug 23 09:41:56 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13794
13795 * cfg-ml-com.in (powerpc*): Add support for -disable-biendian,
13796 -disable-softfloat, -disable-relocatable, -disable-aix, and
13797 -disable-sysv to control which multilib libraries get built.
13798
13799 Thu Aug 17 16:03:41 1995 Ken Raeburn <raeburn@kr-laptop.cygnus.com>
13800
13801 * configure: Add Makefile.tem to list of files to remove in trap
13802 handler.
13803
13804 Mon Aug 14 19:27:56 1995 Per Bothner <bothner@kalessin.cygnus.com>
13805
13806 * config.guess (*Linux*): Add missing "exit"s.
13807 Also, need specific check for alpha-unknown-linux (uses COFF).
13808
13809 Fri Aug 11 15:38:20 1995 Per Bothner <bothner@kalessin.cygnus.com>
13810
13811 * config.guess: Merge with FSF:
13812
13813 Wed Jun 28 17:57:27 1995 David Edelsohn <edelsohn@mhpcc.edu>
13814 * config.guess (AIX4): More robust release numbering discovery.
13815
13816 Thu Jun 22 19:01:24 1995 Kenneth Stailey (kstailey@eagle.dol-esa.gov)
13817 * config.guess (i386-sequent-ptx): Properly get version number.
13818
13819 Thu Jun 22 18:36:42 1995 Uwe Seimet (seimet@iris1.chemie.uni-kl.de)
13820 * config.guess (mips:*:4*:UMIPS): New case.
13821
13822 Mon Aug 7 09:21:35 1995 Doug Evans <dje@canuck.cygnus.com>
13823
13824 * configure.in (i386-go32 host): Fix typo (deja-gnu -> dejagnu).
13825 (i386-win32 host): Likewise. Don't build readline.
13826
13827 Sat Aug 5 09:51:49 1995 Fred Fish <fnf@rtl.cygnus.com>
13828
13829 * Makefile.in (GDBTK_SUPPORT_DIRS): Define and pass as part of
13830 SUPPORT_FILES to submakes.
13831
13832 Fri Aug 4 13:04:36 1995 Fred Fish <fnf@cygnus.com>
13833
13834 * Makefile.in (GDB_SUPPORT_DIRS): Add utils.
13835 (DEVO_SUPPORT): Add mpw-README, mpw-build.in, mpw-config.h and
13836 mpw-configure.
13837
13838 Wed Aug 2 16:32:40 1995 Ken Raeburn <raeburn@cygnus.com>
13839
13840 * configure.in (appdirs): Use =, not ==, in test expression when
13841 trying to build the text to print in the warning message for
13842 Solaris users.
13843
13844 Mon Jul 31 09:56:18 1995 steve chamberlain <sac@slash.cygnus.com>
13845
13846 * cfg-ml-com.in (z8k-*-coff): Add 'std' multilib build.
13847
13848 Fri Jul 28 00:16:31 1995 Jeffrey A. Law <law@rtl.cygnus.com>
13849
13850 * config.guess: Recognize lynx-2.3.
13851
13852 Thu Jul 27 15:47:59 1995 steve chamberlain <sac@slash.cygnus.com>
13853
13854 * config.sub (z8ksim): Deleted
13855 (z8k-*-coff): New, this is the one true name of the target.
13856
13857 Thu Jul 27 14:33:33 1995 Doug Evans <dje@canuck.cygnus.com>
13858
13859 * cfg-ml-pos.in (dotdot): Work around SunOS sed bug.
13860
13861 Thu Jul 27 13:31:05 1995 Fred Fish (fnf@cygnus.com)
13862
13863 * config.guess (*:Linux:*:*): First try asking the linker what the
13864 default object file format is (elf, aout, or coff). Then if this
13865 fails, try previous methods.
13866
13867 Thu Jul 27 11:28:17 1995 J.T. Conklin <jtc@rtl.cygnus.com>
13868
13869 * configure.in: Don't build newlib for *-*-vxworks5.1.
13870
13871 Thu Jul 27 11:18:47 1995 Brendan Kehoe <brendan@lisa.cygnus.com>
13872
13873 * configure.in: Don't build newlib for a29k-*-vxworks5.1.
13874 * test-build.mk: Add setting of --with-headers for a29k-vxworks5.1.
13875
13876 Tue Jul 25 21:25:39 1995 Doug Evans <dje@canuck.cygnus.com>
13877
13878 * cfg-ml-pos.in (MULTITOP): Trim excess trailing "/.".
13879
13880 Fri Jul 21 10:41:12 1995 Doug Evans <dje@canuck.cygnus.com>
13881
13882 * cfg-ml-com.in: New file.
13883 * cfg-ml-pos.in: New file.
13884
13885 Wed Jul 19 00:37:27 1995 Jeffrey A. Law <law@rtl.cygnus.com>
13886
13887 * COPYING.NEWLIB: Add HP free copyright to list.
13888
13889 Tue Jul 18 10:58:51 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13890
13891 * config.sub: Recognize -eabi* for the system, not just -eabi.
13892
13893 Mon Jul 3 13:44:51 1995 Steve Chamberlain <sac@slash.cygnus.com>
13894
13895 * Makfile.in (DLLTOOL_FOR_TARGET): New name, pass it down.
13896 * config.sub, configure.in (win32): New target and host.
13897
13898 Wed Jun 28 23:57:08 1995 Steve Chamberlain <sac@slash.cygnus.com>
13899
13900 * configure.in: Add i386-pe configuration.
13901
13902 Fri Jun 23 14:28:44 1995 Stan Shebs <shebs@andros.cygnus.com>
13903
13904 * mpw-build.in (install): Install GDB after LD.
13905
13906 Thu Jun 22 17:10:53 1995 Stan Shebs <shebs@andros.cygnus.com>
13907
13908 * mpw-config.in (elf/mips.h): Always forward-include, needed
13909 for GDB to build.
13910
13911 Wed Jun 21 15:17:30 1995 Rob Savoye <rob@darkstar.cygnus.com>
13912
13913 * testsuite: New directory for customer acceptance and whole tool
13914 chain tests.
13915
13916 Wed Jun 21 16:50:29 1995 Ken Raeburn <raeburn@cujo.cygnus.com>
13917
13918 * configure: If per-host line isn't found, but AC_OUTPUT is found
13919 and a configure script exists, run it instead.
13920
13921 Thu Jun 15 21:09:24 1995 Per Bothner <bothner@kalessin.cygnus.com>
13922
13923 * config.guess: Update from FSF, for alpha-dec-winnt3.5 and Crays.
13924
13925 Tue Jun 13 21:43:27 1995 Rob Savoye <rob@darkstar.cygnus.com>
13926
13927 * configure: Set build_{cpu,vendor,os,alias} to host values when
13928 --build isn't specified.
13929
13930 Mon Jun 5 18:26:36 1995 Jason Merrill <jason@phydeaux.cygnus.com>
13931
13932 * Makefile.in (PICFLAG, PICFLAG_FOR_TARGET): New macros.
13933 (FLAGS_TO_PASS): Pass them.
13934 (EXTRA_TARGET_FLAGS): Ditto.
13935
13936 Wed May 31 22:27:42 1995 Jim Wilson <wilson@chestnut.cygnus.com>
13937
13938 * Makefile.in (all-libg++): Depend on all-libstdc++.
13939
13940 Thu May 25 22:40:59 1995 J.T. Conklin <jtc@rtl.cygnus.com>
13941
13942 * configure.in (noconfigdirs): Enable all packages for
13943 i386-unknown-netbsd.
13944
13945 Sat May 20 13:22:31 1995 Angela Marie Thomas <angela@cirdan.cygnus.com>
13946
13947 * configure.in (noconfigdirs): Don't configure tk for i386-go32
13948 hosted builds (DOS builds)
13949
13950 Thu May 18 18:08:49 1995 Ken Raeburn <raeburn@kr-laptop.cygnus.com>
13951
13952 Changes for ARM based on patches from Richard Earnshaw:
13953 * config.sub: Handle armeb and armel.
13954 * configure.in: Omit arm linker only for riscix.
13955
13956 Thu May 11 17:23:26 1995 Per Bothner <bothner@kalessin.cygnus.com>
13957
13958 * config.guess: Update from FSF.
13959
13960 Tue May 9 15:52:05 1995 Michael Meissner <meissner@cygnus.com>
13961
13962 * config.sub: Recognize powerpcle as the little endian varient of
13963 the PowerPC. Recgonize ppc as a PowerPC variant, and ppcle as a
13964 powerpcle variant. Convert pentium into i586, not i486. Add p5
13965 alias for i586. Map new x86 variants p6, k5, nexgen into i586
13966 temporarily.
13967
13968 Tue May 2 16:29:41 1995 Jeff Law (law@snake.cs.utah.edu)
13969
13970 * configure.in (hppa*-*-lites*): Treat like hppa*-*-*elf*.
13971
13972 Sun Apr 30 21:38:09 1995 Jeff Law (law@snake.cs.utah.edu)
13973
13974 * config.sub: Accept -lites* as a basic system type.
13975
13976 Thu Apr 27 11:33:29 1995 Michael Meissner (meissner@cygnus.com)
13977
13978 * config.guess (*:Linux:*:*): Check for whether the pre-BFD linker is
13979 installed, and if so return linuxoldld as the system name.
13980
13981 Wed Apr 26 10:59:02 1995 Jeff Law (law@snake.cs.utah.edu)
13982
13983 * config.guess: Add hppa1.1-hp-lites support.
13984
13985 Tue Apr 25 11:08:11 1995 Rob Savoye <rob@darkstar.cygnus.com>
13986
13987 * configure.in: Don't build newlib for m68k-vxworks5.1.
13988
13989 Wed Apr 19 17:02:43 1995 Jim Wilson <wilson@chestnut.cygnus.com>
13990
13991 * configure.in (mips-sgi-irix6): Use mh-irix5.
13992
13993 Fri Apr 14 15:21:17 1995 Doug Evans <dje@chestnut.cygnus.com>
13994
13995 * Makefile.in (all-gcc): Depend on all-ld (for libgcc1-test).
13996
13997 Wed Apr 12 16:06:01 1995 Jason Merrill <jason@phydeaux.cygnus.com>
13998
13999 * test-build.mk: Enable building of shared libraries on IRIX 5 and
14000 OSF/1. Fix compiler flags.
14001 * build-all.mk: Support Linux and OSF/1 3.0. Fix compiler flags.
14002
14003 Tue Apr 11 18:55:40 1995 Doug Evans <dje@canuck.cygnus.com>
14004
14005 * configure.in: Recognize --with-newlib.
14006 (sparc-*-sunos4*): Build sim, dejagnu, expect, tcl if cross target.
14007
14008 Mon Apr 10 14:38:20 1995 Jason Molenda (crash@phydeaux.cygnus.com)
14009
14010 * Makefile.in: move {all,check,install}-gdb from *_MODULES
14011 to *_X11_MODULES due to gdbtk needing X include files et al.
14012
14013 Mon Apr 10 11:42:22 1995 Stan Shebs <shebs@andros.cygnus.com>
14014
14015 Merge in support for Mac MPW as a host.
14016 (Old change descriptions retained for informational value.)
14017
14018 * mpw-config.in: Add generic include forwards for cpu-specific
14019 include files in aout and elf directories.
14020
14021 * mpw-configure: Added copyright.
14022 * mpw-config.in: Check for presence of required build tools.
14023 (target_libs): Add newlib.
14024 (target_tools): Add examples.
14025 (Read Me): Generate as "Read Me for MPW" instead.
14026 * mpw-build.in: Base sub-builds on all-foo instead of do-foo.
14027 (all-byacc, do-byacc, all-flex, do-flex, do-newlib): New actions.
14028 (do-gas, do-gcc, do-gdb, do-ld): Build Version.r first.
14029
14030 * mpw-configure: Remove subdir-specific makefile hackery,
14031 delete mk.tmp after using it.
14032
14033 * mpw-build.in (all): Display start and end times.
14034
14035 * mpw-configure (host_canonical): Set.
14036 (target_cpu): Always add to makefiles.
14037 (ARCHDEFS, EMUL): Add to makefile only if nonempty.
14038 (TM_FILE, XM_FILE, NM_FILE): No longer add to makefile.
14039 (mpw-mh-mpw): Look for in srcdir and srcroot.
14040 Use sed instead of mpw-edit-prefix to edit prefix definitions.
14041
14042 * mpw-build.in: (install-only): New target.
14043
14044 * mpw-configure (host_alias, target_alias): Rename from hostalias
14045 and targetalias, add into generated Makefile.
14046 (mk.tmp): If present, add into generated Makefile.
14047 * mpw-build.in (all-gas): Build config.h first before gas proper.
14048
14049 * mpw-configure (config.status): Write only if changed.
14050 * mpw-config.in (readline): Configure it (not built, just used for
14051 definitions).
14052
14053 * mpw-config.in (elf/mips.h): Add a forward include.
14054
14055 * mpw-config.in: Forward-include most .h files in include into
14056 extra-include.
14057 (readline): Don't build.
14058 mpw-build.in (install): Install GDB.
14059
14060 * mpw-configure (prefix, mpw_prefix): Handle it.
14061 * mpw-config.in (mmalloc, readline): Don't configure.
14062 * mpw-build.in (thisscript): Rename to ThisScript.
14063 Use mpw-build instead of BuildProgram everywhere.
14064 (mmalloc, readline): Don't build.
14065 * mpw-README: New file, basic documentation about the MPW port.
14066
14067 * mpw-config.in: Use forward-include to create include files.
14068
14069 * mpw-configure: Add more things to the top of each configured
14070 Makefile, including contents of config/mpw-mh-mpw.
14071 * mpw-config.in (extra-include): Create this directory and fill it
14072 with Posix-like include files when configuring.
14073
14074 * config.sub (apple, mac, mpw): Add various aliases.
14075
14076 * mpw-build.in: New file, top-level build script fragment for MPW.
14077 * mpw-configure: New file, configure script for MPW.
14078 * mpw-config.in: New file, config fragment for MPW.
14079
14080 Fri Apr 7 19:33:16 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
14081
14082 * configure.in (host_libs): Remove glob, since it is gone from the
14083 sources.
14084
14085 Fri Mar 31 11:36:17 1995 Jason Molenda (crash@phydeaux.cygnus.com)
14086
14087 * Makefile.in: define empty GDB_NLM_DEPS var.
14088
14089 * configure.in(target_makefile_frag): use config/mt-netware
14090 for netware targets.
14091
14092 Thu Mar 30 13:51:43 1995 Ian Lance Taylor <ian@cygnus.com>
14093
14094 * config.sub: Merge in recent FSF changes. Remove linux special
14095 cases.
14096
14097 Tue Mar 28 14:47:34 1995 Jason Molenda (crash@phydeaux.cygnus.com)
14098
14099 Revert this change:
14100
14101 Tue Mar 30 10:03:09 1993 Ian Lance Taylor (ian@cygnus.com)
14102
14103 * build-all.mk: Use CC=cc -Xs on Solaris.
14104
14105 Tue Mar 21 10:43:32 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
14106
14107 * glob/*: Removed. Schauer's 24 Feb 1994 readline change made us
14108 stop using it.
14109 * Makefile.in: Nuke all references to glob subdirectory.
14110
14111 Thu Mar 16 13:35:30 1995 Jason Merrill <jason@phydeaux.cygnus.com>
14112
14113 * configure.in: Fix --enable-shared logic in per-host.
14114
14115 Mon Mar 13 12:33:15 1995 Ian Lance Taylor <ian@cygnus.com>
14116
14117 * configure.in (*-hp-hpux[78]*): Use mh-hpux8.
14118
14119 Mon Mar 6 10:21:58 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
14120
14121 * configure.in (noconfigdirs): Don't build gas on AIX, for
14122 powerpc*-*-aix* as well as for rs6000*-*-aix*.
14123
14124 Wed Mar 1 12:51:53 1995 Ian Lance Taylor <ian@cygnus.com>
14125
14126 * configure: Fix --cache-file to work if the file argument is a
14127 relative path.
14128
14129 Tue Feb 28 17:36:07 1995 Ian Lance Taylor <ian@cygnus.com>
14130
14131 * configure: If the --cache-file is used, pass it down to
14132 configure in subdirectories.
14133
14134 Mon Feb 27 12:52:46 1995 Kung Hsu <kung@mexican.cygnus.com>
14135
14136 * config.sub: add vxworks29k configuration.
14137
14138 Fri Feb 10 16:12:26 1995 Ken Raeburn <raeburn@cujo.cygnus.com>
14139
14140 * Makefile.in (taz): Do "diststuff" part quietly.
14141
14142 Sun Feb 5 14:16:35 1995 Doug Evans <dje@canuck.cygnus.com>
14143
14144 * config.sub: Mini-merge with gcc/config.sub.
14145
14146 Sat Feb 4 12:11:35 1995 Jim Wilson <wilson@chestnut.cygnus.com>
14147
14148 * config.guess (IRIX): Sed - to _.
14149
14150 Fri Feb 3 11:54:42 1995 J.T. Conklin <jtc@rtl.cygnus.com>
14151
14152 * Makefile.in (source-vault, binary-vault): New targets.
14153
14154 Thu Jan 26 13:00:11 1995 Michael Meissner <meissner@cygnus.com>
14155
14156 * config.sub: Recognize -eabi as a basic system type.
14157
14158 Thu Jan 12 13:13:23 1995 Jason Merrill <jason@phydeaux.cygnus.com>
14159
14160 * configure.in (enable_shared stuff): Fix typo.
14161
14162 Thu Jan 12 01:36:51 1995 deanm@medulla.LABS.TEK.COM (Dean Messing)
14163
14164 * Makefile.in (BASE_FLAGS_TO_PASS): Fix typo in passing LIBCXXFLAGS*.
14165
14166 Wed Jan 11 16:29:53 1995 Jason Merrill <jason@phydeaux.cygnus.com>
14167
14168 * Makefile.in (LIBCXXFLAGS_FOR_TARGET): Add -fno-implicit-templates.
14169
14170 Mon Jan 9 12:48:01 1995 Jim Kingdon <kingdon@lioth.cygnus.com>
14171
14172 * configure.in (rs6000-*-*): Don't build gas.
14173
14174 Wed Jan 4 23:53:49 1995 Ian Lance Taylor <ian@tweedledumb.cygnus.com>
14175
14176 * Makefile.in: Use /x/x/ instead of /brokensed/brokensed/, to
14177 reduce command line length.
14178 (AS_FOR_TARGET): Check for as.new, not Makefile.
14179 (NM_FOR_TARGET): Check for nm.new, not Makefile.
14180
14181 Wed Jan 4 13:02:39 1995 Per Bothner <bothner@kalessin.cygnus.com>
14182
14183 * config.guess: Merge from FSF.
14184
14185 Thu Dec 15 17:11:37 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
14186
14187 * configure: Don't use $ when handling program_suffix.
14188
14189 Mon Dec 12 12:09:37 1994 Stu Grossman (grossman@cygnus.com)
14190
14191 * configure.in: Configure tk for hppa/hpux.
14192
14193 Fri Dec 2 15:55:38 1994 Per Bothner <bothner@kalessin.cygnus.com>
14194
14195 * Makefile.in (LIBGXX_SUPPORT_DIRS): Add libstdc++.
14196
14197 Tue Nov 29 19:37:56 1994 Per Bothner <bothner@kalessin.cygnus.com>
14198
14199 * Makefile.in: Move -fno-implicit-template from CXXFLAGS
14200 to LIBCXXFLAGS. Tests are better run without it.
14201
14202 Wed Nov 23 10:29:25 1994 Brendan Kehoe (brendan@lisa.cygnus.com)
14203
14204 * Makefile.in (all-ispell): Depend on all-emacs19 instead of all-emacs.
14205
14206 Mon Nov 21 11:14:01 1994 J.T. Conklin <jtc@rtl.cygnus.com>
14207
14208 * configure.in (*-*-netware*): Don't configure xiberty.
14209
14210 Mon Nov 14 08:49:15 1994 Stu Grossman (grossman@cygnus.com)
14211
14212 * configure.in: Remove tk from native_only list.
14213
14214 Fri Nov 11 15:31:26 1994 Bill Cox (bill@rtl.cygnus.com)
14215
14216 * build-all.mk: Add mips-ncd-elf target to sun4 targets
14217 for special NCD build.
14218
14219 Mon Nov 7 20:58:17 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
14220
14221 * Makefile.in (DEVO_SUPPORT): Remove configure.bat and
14222 makeall.bat, they're only useful for binutils snapshots.
14223 (binutils.tar.gz, gas+binutils.tar.gz): Add configure.bat and
14224 makeall.bat to specified SUPPORT_FILES.
14225
14226 Mon Nov 7 17:25:18 1994 Bill Cox (bill@cirdan.cygnus.com)
14227
14228 * build-all.mk: Add Ericsson targets to sun4 and solaris
14229 hosts. Add BNR's sun4 target to solaris host, so their
14230 build-from-source will be tested in-house first.
14231
14232 Sat Nov 5 18:43:30 1994 Jason Merrill (jason@phydeaux.cygnus.com)
14233
14234 * Makefile.in (LIBCFLAGS): New variable.
14235 (CFLAGS_FOR_TARGET): Ditto.
14236 (LIBCFLAGS_FOR_TARGET): Ditto.
14237 (LIBCXXFLAGS): Ditto.
14238 (CXXFLAGS_FOR_TARGET): Ditto.
14239 (LIBCXXFLAGS_FOR_TARGET): Ditto.
14240 (BASE_FLAGS_TO_PASS): Pass them.
14241 (EXTRA_TARGET_FLAGS): Ditto.
14242
14243 * configure.in: Support --enable-shared.
14244
14245 Sat Nov 5 15:44:00 1994 Per Bothner <bothner@kalessin.cygnus.com>
14246
14247 * configure.in (target_libs): Include libstdc++ again.
14248 * config.guess: Update from FSF (for FreeBSD).
14249
14250 Thu Nov 3 16:32:30 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
14251
14252 * Makefile.in (DEVO_SUPPORT): Include configure.bat and
14253 makeall.bat.
14254 (DISTDOCDIRS): Add `etc'.
14255 (ETC_SUPPORT_PFX): New variable.
14256 (taz): Include anything from etc starting with a word in
14257 ETC_SUPPORT_PFX.
14258
14259 Wed Oct 26 16:19:35 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
14260
14261 * config.sub: Update for recent FSF changes. Remove obsolete
14262 h8300hds entry. Add -windows* and -osx as basic os. Minor
14263 spacing changes.
14264
14265 Thu Oct 20 18:41:56 1994 Per Bothner <bothner@kalessin.cygnus.com>
14266
14267 * configure.in (target_libs): Remove libstdc++ for libg++-2.6.1.
14268
14269 * config.guess: Merge with FSF.
14270 * configure.in: Match on i?86-ncr-sysv4.3, not i?86-ncr-sysv43.
14271
14272 Thu Oct 20 19:26:56 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
14273
14274 * configure: Since the "trap 0" handler will override the exit
14275 status on many systems, only use it for "exit 1", and make it set
14276 a non-zero exit status; reset it before "exit 0". Also, check
14277 exit status of config.sub, and error out if it failed.
14278
14279 Wed Oct 19 18:49:55 1994 Rob Savoye (rob@cygnus.com)
14280
14281 * Makefile.in: (ALL_TARGET_MODULES,INSTALL_TARGET_MODULES) Build
14282 and install libgloss.
14283
14284 Tue Oct 18 15:25:24 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
14285
14286 * Makefile.in (all-binutils): Depend upon all-byacc.
14287
14288 * configure.in: Don't build emacs on Irix 5.
14289
14290 Mon Oct 17 16:22:12 1994 J.T. Conklin (jtc@phishhead.cygnus.com)
14291
14292 * configure.in (*-*-netware*): Add libio.
14293
14294 Thu Oct 13 15:51:20 1994 Jason Merrill (jason@phydeaux.cygnus.com)
14295
14296 * Makefile.in (ALL_TARGET_MODULES): Add libstdc++.
14297 (CHECK_TARGET_MODULES): Ditto.
14298 (INSTALL_TARGET_MODULES): Ditto.
14299 (TARGET_LIBS): Ditto.
14300 (all-libstdc++): Note dependencies.
14301
14302 Thu Oct 13 01:43:08 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
14303
14304 * Makefile.in (BINUTILS_SUPPORT_DIRS): Add gas.
14305
14306 Tue Oct 11 12:12:29 1994 Jason Merrill (jason@phydeaux.cygnus.com)
14307
14308 * Makefile.in (CXXFLAGS): Use -fno-implicit-templates instead of
14309 -fexternal-templates.
14310
14311 * configure.in (target_libs): Add libstdc++.
14312 (noconfigdirs): Add libstdc++ as appropriate.
14313
14314 Thu Oct 6 18:00:54 1994 Per Bothner (bothner@kalessin.cygnus.com)
14315
14316 * config.guess: Update from FSF.
14317
14318 Tue Oct 4 12:05:42 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
14319
14320 * configure: Use ${config_shell} when running ${configsub}.
14321
14322 Mon Oct 3 14:28:34 1994 Doug Evans <dje@canuck.cygnus.com>
14323
14324 * config.sub: No longer recognize h8300h.
14325
14326 Mon Oct 3 12:40:54 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
14327
14328 * config.sub: Remove extraneous differences between config.sub and
14329 gcc/config.sub.
14330
14331 Sat Oct 1 00:23:12 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
14332
14333 * Makefile.in (DISTSTUFFDIRS): Add gas.
14334
14335 Thu Sep 22 19:04:55 1994 Doug Evans (dje@canuck.cygnus.com)
14336
14337 * COPYING.NEWLIB: New file.
14338
14339 Mon Sep 19 18:25:40 1994 Per Bothner (bothner@kalessin.cygnus.com)
14340
14341 * config.guess (HP-UX): Patch from Harlan Stenn
14342 <harlan@landmark.com> to also emit release level.
14343
14344 Wed Sep 7 13:15:25 1994 Jim Wilson (wilson@sphagnum.cygnus.com)
14345
14346 * config.guess (sun4*:SunOS:*:*): Change '-JL' to '_JL'.
14347
14348 Tue Sep 6 23:23:18 1994 Per Bothner (bothner@kalessin.cygnus.com)
14349
14350 * config.sub: Merge nextstep cleanup from FSF.
14351
14352 Mon Sep 5 05:01:30 1994 Ken Raeburn (raeburn@kr-pc.cygnus.com)
14353
14354 * configure.in (arm-*-*): Don't configure ld for this target.
14355
14356 Thu Sep 1 09:35:00 1994 J.T. Conklin (jtc@phishhead.cygnus.com)
14357
14358 * configure.in (*-*-netware): don't configure libg++, libio,
14359 librx, or newlib.
14360
14361 Wed Aug 31 13:52:08 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14362
14363 * configure.in (alpha-dec-osf*): Use osf*, not osf1*. Don't
14364 configure ld--it works, but it doesn't support shared libraries.
14365
14366 Sun Aug 28 18:13:45 1994 Per Bothner (bothner@kalessin.cygnus.com)
14367
14368 * config.guess (*-unknown-freebsd*): Get rid of possible
14369 trailing "(Release)" in version string.
14370 Patch from Paul Richards <paul@isl.cf.ac.uk>.
14371
14372 Sat Aug 27 15:00:49 1994 Per Bothner (bothner@kalessin.cygnus.com)
14373
14374 * config.guess: Fix i486-ncr-sysv43 -> i486-ncr-sysv4.3.
14375 Fix type: *-next-neststep -> *-next-nextstep.
14376
14377 * config.guess: Merge from FSF:
14378
14379 Fri Aug 26 18:45:25 1994 Philippe De Muyter (phdm@info.ucl.ac.be)
14380
14381 * config.guess: Recognize powerpc-ibm-aix3.2.5.
14382
14383 Wed Apr 20 06:36:32 1994 Philippe De Muyter (phdm@info.ucl.ac.be)
14384
14385 * config.guess: Recognize UnixWare 1.1 (UNAME_SYSTEM is SYSTEM_V
14386 instead of UNIX_SV for UnixWare 1.0).
14387
14388 Sat Aug 27 01:56:30 1994 Stu Grossman (grossman@cygnus.com)
14389
14390 * Makefile.in (all-gdb): Add dependencies on all-gcc and all-ld
14391 to make gdb/nlm/* build after the compiler and linker.
14392
14393 Fri Aug 26 14:30:05 1994 Per Bothner (bothner@kalessin.cygnus.com)
14394
14395 * config.guess (netbsd, freebsd, linux): Accept any machine,
14396 not just i[34]86.
14397 (m68k-atari-sysv4): Relocate to match FSF version.
14398
14399 * config.guess: More merges from the FSF:
14400
14401 Add a space before function call or macro invocation.
14402
14403 Tue May 10 16:53:55 1994 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
14404
14405 * config.guess: Add trap cmd to remove dummy.c and dummy when
14406 interrupted.
14407
14408 Wed Apr 20 18:07:13 1994 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
14409
14410 * config.guess (dummy.c): Redirect stderr for `hostinfo' command.
14411 (dummy): Redirect stderr from compilation of dummy.c.
14412
14413 Sat Apr 9 14:59:28 1994 Christian Kranz (kranz@sent5.uni-duisburg.de)
14414
14415 * config.guess: Distinguish between NeXTStep 2.1 and 3.x.
14416
14417 Fri Aug 26 13:42:20 1994 Ken Raeburn (raeburn@kr-laptop.cygnus.com)
14418
14419 * configure: Accept and ignore --cache*, for compatibility with
14420 new autoconf.
14421
14422 Fri Aug 26 13:05:27 1994 Per Bothner (bothner@kalessin.cygnus.com)
14423
14424 * config.guess: Merge from FSF:
14425
14426 Thu Aug 25 20:28:51 1994 Richard Stallman <rms@mole.gnu.ai.mit.edu>
14427
14428 * config.guess (Pyramid*:OSx*:*:*): New case.
14429 (PATH): Add /.attbin at end for finding uname.
14430 (dummy.c): Handle i860-alliant-bsd. Follow whitespace conventions.
14431
14432 Wed Aug 17 18:21:02 1994 Tor Egge (tegge@pvv.unit.no)
14433
14434 * config.guess (M88*:DolphinOS:*:*): New case.
14435
14436 Thu Aug 11 17:00:13 1994 Stan Cox (coxs@dg-rtp.dg.com)
14437
14438 * config.guess (AViiON:dgux:*:*): Use TARGET_BINARY_INTERFACE
14439 to select whether to use ELF or COFF.
14440
14441 Sun Jul 24 16:20:53 1994 Richard Stallman <rms@mole.gnu.ai.mit.edu>
14442
14443 * config.guess: Recognize i860-stardent-sysv and i860-unknown-sysv.
14444
14445 Sun May 1 10:23:10 1994 Richard Stallman (rms@mole.gnu.ai.mit.edu)
14446
14447 * config.guess: Guess the OS version for HPUX.
14448
14449 Tue Mar 1 21:53:03 1994 Karl Heuer (kwzh@hal.gnu.ai.mit.edu)
14450
14451 * config.guess (UNAME_VERSION): Recognize aix3.2.4 and aix3.2.5.
14452
14453 Fri Aug 26 11:19:08 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14454
14455 * configure.in: Recognize --with-headers, --with-libs, and
14456 --without-newlib.
14457 * Makefile.in (all-xiberty): Depend upon all-ld.
14458
14459 Wed Aug 24 12:36:50 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14460
14461 * configure.in: Change i[34]86 to i[345]86.
14462
14463 Mon Aug 22 10:58:33 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14464
14465 * configure (version): A few more tweaks to help message.
14466
14467 Fri Aug 19 12:40:25 1994 Per Bothner (bothner@kalessin.cygnus.com)
14468
14469 * Makefile.in: Remove (for now) librx as a host library,
14470 now that we're building it for target.
14471
14472 Fri Aug 19 10:49:17 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14473
14474 * configure: Fix up help message; from karl@owl.hq.ileaf.com
14475 (Karl Berry).
14476
14477 Tue Aug 16 16:11:08 1994 Per Bothner (bothner@kalessin.cygnus.com)
14478
14479 * configure.in: Also configure librx.
14480
14481 Mon Aug 15 16:51:45 1994 Per Bothner (bothner@kalessin.cygnus.com)
14482
14483 * Makefile.in: Update various rules to reflect that librx
14484 is now needed for libg++.
14485
14486 Fri Aug 12 18:07:21 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14487
14488 * config.sub: Accept mips64orion and mips64orionel as a CPU name.
14489
14490 Mon Aug 8 11:36:17 1994 Stan Shebs (shebs@andros.cygnus.com)
14491
14492 * configure.in: Configure the examples directory.
14493
14494 Thu Aug 4 16:12:36 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14495
14496 * configure: Simplify Jun 2 1994 change.
14497
14498 Wed Aug 3 04:58:16 1994 D. V. Henkel-Wallace (gumby@cygnus.com)
14499
14500 * change CC to /usr/latest/bin/gcc for lynx host builds, since
14501 /bin/gcc isn't good enough to build gcc.
14502
14503 Wed Jul 27 09:07:14 1994 Fred Fish (fnf@cygnus.com)
14504
14505 * Makefile.in (GDB_SUPPORT_FILES): Remove
14506 (setup-dirs-gdb, gdb.tar.gz, make-gdb.tar.gz): Remove old rules.
14507 (gdb.tar.gz): Add new rule to use standard distribution building
14508 mechanism.
14509
14510 Mon Jul 25 11:10:06 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14511
14512 * configure.in: Warn about use of /usr/ucb/cc on Solaris. From
14513 Bill Cox <bill@cygnus.com>.
14514
14515 Sat Jul 23 12:19:46 1994 Per Bothner (bothner@kalessin.cygnus.com)
14516
14517 * config.guess: Recognize ISC. Patch from kwzh@gnu.ai.mit.edu.
14518
14519 Fri Jul 22 17:53:59 1994 Stu Grossman (grossman@cygnus.com)
14520
14521 * configure: Search current dir first in .gdbinit.
14522
14523 Fri Jul 22 11:28:30 1994 Per Bothner (bothner@kalessin.cygnus.com)
14524
14525 * config.sub: Recognize freebsd (merged from gcc config.sub).
14526
14527 Thu Jul 21 14:10:52 1994 Per Bothner (bothner@kalessin.cygnus.com)
14528
14529 * config.sub: Refer to NeXT's operating system as nextstep.
14530
14531 * config.sub (case $basic_machine): Re-order the cases, to match
14532 the order in the FSF version (which is mostly alphabethical).
14533 Merge in some additions and changes from the FSF.
14534
14535 Sat Jul 16 12:03:08 1994 Stan Shebs (shebs@andros.cygnus.com)
14536
14537 * config.guess: Recognize m68k-atari-sysv4 and m88k-harris-csux7.
14538 * config.sub: Recognize cxux7.
14539 * configure.in: Use mh-cxux for m88k-harris-cxux*.
14540
14541 Mon Jul 11 14:37:39 1994 Per Bothner (bothner@kalessin.cygnus.com)
14542
14543 * config.sub: Fix typo powerpc -> powerpc-*.
14544
14545 Sat Jul 9 13:03:43 1994 Michael Tiemann (tiemann@blues.cygnus.com)
14546
14547 * Makefile.in: `all-emacs19' depends on `all-byacc'.
14548
14549 * Makefile.in: Add all-emacs19 and install-emacs19 rules (in
14550 parallel with all-emacs and install-emacs). Top-level command
14551 `make all-emacs19 CC=gcc' now behaves as `make all-emacs CC=gcc'.
14552
14553 Thu Jun 30 16:53:42 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14554
14555 * test-build.mk ($(host)-stamp-stage2-installed): Remove
14556 $(relbindir)/make before doing ``make install'', and use
14557 $(GNU_MAKE) while doing it. Avoids problem on SunOS with
14558 installing over running make binary.
14559 ($(host)-stamp-stage3-installed): Likewise.
14560
14561 Tue Jun 28 13:43:25 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14562
14563 * config.guess: Recognize Mach.
14564
14565 Mon Jun 27 16:41:14 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14566
14567 * configure: Check ${exec_prefixoption}, not ${exec_prefix}, to
14568 see whether --exec-prefix was used.
14569
14570 Sun Jun 26 21:15:54 1994 Per Bothner (bothner@kalessin.cygnus.com)
14571
14572 * README: Explicitly mention libg++/README. (Zoo's idea.)
14573
14574 Tue Jun 21 12:45:55 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14575
14576 * Makefile.in: Add all-librx target similar to all-libproc.
14577
14578 Wed Jun 8 23:11:55 1994 Stu Grossman (grossman@cygnus.com)
14579
14580 * config.guess: Rearrange tests for Alpha-OSF1 to properly deal
14581 with post 1.2 uname bogosity.
14582
14583 Thu Jun 9 00:27:59 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14584
14585 * configure: Remove temporary files on receipt of a signal.
14586
14587 Tue Jun 7 12:06:24 1994 Ian Lance Taylor (ian@cygnus.com)
14588
14589 * configure: If there is a package_makefile_frag, remove
14590 ${subdir}/Makefile.tem after copying it in.
14591
14592 Mon Jun 6 21:35:02 1994 D. V. Henkel-Wallace (gumby@cygnus.com)
14593
14594 * build_all.mk: support rs6000 lynx identifies itself as
14595 rs6000-lynx-lynxos2.2.2. Also, use /usr/cygnus/progressive/bin/gcc
14596 since /bin/gcc is too feeble to compile a modern gcc.
14597
14598 Mon Jun 6 16:06:34 1994 Karen Christiansen (karen@cirdan.cygnus.com)
14599
14600 * brought devo/test-build.mk update-to-date with progressive/
14601 test-build.mk. Add lynx targets and hppa flag info.
14602
14603 Sat Jun 4 17:23:54 1994 Per Bothner (bothner@kalessin.cygnus.com)
14604
14605 * configure.in: Use mh-ncrsvr43. Patch from
14606 Tom McConnell <tmcconne@sedona.intel.com>.
14607
14608 Fri Jun 3 17:47:24 1994 Per Bothner (bothner@kalessin.cygnus.com)
14609
14610 * config.guess (i386-unknown-bsdi): No longer need to
14611 check #if defined(__bsdi__) && defined(__i386__).
14612
14613 Thu Jun 2 18:56:46 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14614
14615 * configure: Set program_transform_nameoption correctly.
14616
14617 Thu Jun 2 10:57:06 1994 Karen Christiansen (karen@cirdan.cygnus.com)
14618
14619 * brought build-all.mk update-to-date with progressive build-all.mk,
14620 added new targets and hppa info.
14621
14622 Thu Jun 2 00:12:44 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14623
14624 * configure: If config.guess result is a prefix of the user
14625 specified target, assume a native build and use the user specified
14626 target as the host alias. Remove SunOS patch suffix removal hack.
14627 * configure.in: Remove SunOS patch suffix removal hack.
14628
14629 * Makefile.in (CROSS_CHECK_MODULES): Remove check-flex, since it's
14630 in NATIVE_CHECK_MODULES.
14631
14632 Wed Jun 1 10:49:41 1994 Bill Cox (bill@rtl.cygnus.com)
14633
14634 * Makefile.in: Rename HOST_ONLY to NATIVE.
14635 * configure: Delete SunOs patch suffix from host_canonical
14636 and build_canonical variables that are prepended to Makefiles.
14637 * configure.in: Add comments for easier maintenance.
14638
14639 Tue May 31 19:39:47 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14640
14641 * Makefile.in: Add all-libproc target similar to all-gui.
14642
14643 Tue May 31 17:16:33 1994 Tom Lord (lord@cygnus.com)
14644
14645 * Makefile.in (CHECK_MODULES): split into
14646 HOST_ONLY_CHECK_MODULES and CROSS_CHECK_MODULES.
14647
14648 Tue May 31 16:36:36 1994 Paul Eggert (eggert@twinsun.com)
14649
14650 * config.guess (i386-unknown-bsdi): New system to guess.
14651
14652 Wed May 25 16:47:10 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14653
14654 * Makefile.in: Add all-gui target (but not yet build by "all").
14655
14656 Thu May 26 08:53:19 1994 Bill Cox (bill@rtl.cygnus.com)
14657
14658 * config.sub: Move deletion of patch suffix from here...
14659 * configure.in: To here, at Ian's suggestion. The top-
14660 level scripts might need to know of a patch level.
14661
14662 Wed May 25 09:15:54 1994 Bill Cox (bill@rtl.cygnus.com)
14663
14664 * config.sub: Strip off patch suffix so rtl is recognized
14665 as a sunos4.1.3 machine, even though it's been patched.
14666
14667 Fri May 20 08:25:49 1994 Steve Chamberlain (sac@deneb.cygnus.com)
14668
14669 * Makefile.in (INSTALL_LAST): Delete.
14670 (INSTALL_DOSREL): New.
14671
14672 Thu May 19 17:12:12 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14673
14674 * configure.in: Use ld for i[34]86-*-sysv4* and sparc-*-solaris2*.
14675 Don't set use_gnu_ld to no for *-*-sysv4; that only controls
14676 whether we pass down --with-gnu-ld anyhow.
14677
14678 Thu May 19 09:29:12 1994 Steve Chamberlain (sac@cygnus.com)
14679
14680 * Makefile.in (INSTALL_LAST): Change operation so it works
14681 on more flavors of make.
14682 * configure.in (go32): Don't build libg++ or libio.
14683
14684 Fri May 13 13:28:34 1994 Steve Chamberlain (sac@cygnus.com)
14685
14686 * Makefile.in (Move HOST_PREFIX_1 and friends up so
14687 they can be overriden by templates.
14688
14689 Sat May 7 16:46:44 1994 Steve Chamberlain (sac@cygnus.com)
14690
14691 * configure.in (target==go32): Don't build gdb.
14692 * dosrel: New directory.
14693
14694 Fri May 6 14:19:25 1994 Steve Chamberlain (sac@cygnus.com)
14695
14696 * configure.in (host==go32): Configure dosrel too.
14697 * Makefile.in (INTALL_TARGET): Call INSTALL_LAST last.
14698 (HOST_CC, HOST_PREFIX, HOST_PREFIX_1): Undefine, they should
14699 be set by incoming names or templates.
14700 (INSTALL_LAST): New rule.
14701
14702 Thu May 5 17:35:05 1994 Stan Shebs (shebs@andros.cygnus.com)
14703
14704 * config.sub (sparclitefrw, sparclitefrwcompat): Don't set the os.
14705
14706 Thu May 5 20:06:45 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
14707
14708 * configure.in (appdirs): New variable. Currently empty, but will
14709 be used in gas distribution. If nonempty, lists a set of
14710 directories at least one of which must get configured, or top
14711 level configuration is considered to have failed.
14712 (rs6000-*-lynxos*): Use new file name.
14713
14714 Thu May 5 13:38:36 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14715
14716 Eliminate XTRAFLAGS.
14717 * Makefile.in (CC_FOR_TARGET): If newlib exists, refer to the
14718 newlib include files using -idirafter, and also use -nostdinc.
14719 (CXX_FOR_TARGET): Likewise.
14720 (XTRAFLAGS): Removed.
14721 (BASE_FLAGS_TO_PASS): Remove XTRAFLAGS_FOR_TARGET.
14722 (EXTRA_HOST_FLAGS): Remove XTRAFLAGS.
14723 (EXTRA_TARGET_FLAGS, EXTRA_GCC_FLAGS): Likewise.
14724 ($(DO_X)): Don't pass down XTRAFLAGS.
14725
14726 Thu May 5 00:16:36 1994 Ken Raeburn (raeburn@kr-pc.cygnus.com)
14727
14728 * configure.in (mips*-dec-bsd*): New target; do build linker.
14729 (mips*-*-bsd*): New target; don't build linker.
14730
14731 Wed May 4 20:10:10 1994 D. V. Henkel-Wallace (gumby@cygnus.com)
14732
14733 * configure.in: support rs6000-*-lynxos* configuration.
14734 support sunos4 as a cross target.
14735
14736 * config.sub: look for lynx*, not lynx since the OS version may
14737 legitimately be part of the name.
14738
14739 Tue May 3 21:48:11 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
14740
14741 * configure.in (i[34]86-*-sco*): Move to be with other i386
14742 targets.
14743 (romp-*-*): New target. Skip various binary utilities.
14744 (vax-*-*): New target. Don't build newlib.
14745 (vax-*-vms): Renamed from *-*-vms. Don't build opcodes or newlib.
14746
14747 Thu Apr 28 15:03:05 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14748
14749 * configure.in: Only set host_makefile_frag if config
14750 directory exists.
14751
14752 Wed Apr 27 12:14:30 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14753
14754 * install.sh: If $dstdir exists, don't check whether each
14755 component does.
14756
14757 Tue Apr 26 18:11:33 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14758
14759 * test-build.mk (HOLES): Add sleep; used by rcs/src/conf.sh.
14760
14761 Mon Apr 25 15:06:34 1994 Stan Shebs (shebs@andros.cygnus.com)
14762
14763 * configure.in (*-*-lynxos*): Don't configure newlib for either
14764 native or cross Lynx.
14765
14766 Sat Apr 16 11:58:16 1994 Doug Evans (dje@canuck.cygnus.com)
14767
14768 * config.sub (sparc64-elf): Fix os.
14769 (z8k): Remove duplicate.
14770
14771 Thu Apr 14 23:33:17 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14772
14773 * Makefile.in (gcc-no-fixedincludes): Touch gcc/include/fixed, not
14774 gcc/stmp-fixproto, to try to prevent fixproto from being run.
14775
14776 Wed Apr 13 15:14:52 1994 Bill Cox (bill@cygnus.com)
14777
14778 * configure: Make file links cleanly even if Lynx fails on
14779 an NFS symlink (at least fail cleanly).
14780
14781 Mon Apr 11 10:58:56 1994 Jim Wilson (wilson@sphagnum.cygnus.com)
14782
14783 * test-build.mk (CC): For mips-sgi-irix4, change -XNh1500 to
14784 -XNh2000.
14785
14786 Sat Apr 9 15:10:45 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14787
14788 * configure: Unknown options are fatal again.
14789
14790 Fri Apr 8 12:01:41 1994 David J. Mackenzie (djm@cygnus.com)
14791
14792 * configure: Ignore --x-includes and --x-libraries, for Autoconf
14793 compatibility.
14794
14795 Thu Apr 7 17:31:43 1994 Doug Evans (dje@canuck.cygnus.com)
14796
14797 * build-all.mk: Add `clean' target.
14798
14799 Wed Apr 6 20:44:56 1994 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
14800
14801 * config.guess: Add SINIX support.
14802 * configure.in: Add mips-*-sysv4* support.
14803
14804 Mon Apr 4 17:41:44 1994 Doug Evans (dje@canuck.cygnus.com)
14805
14806 * build-all.mk: Document all useful targets.
14807 If canonhost is sparc-sun-solaris2.3, change it to sparc-sun-solaris2.
14808 If canonhost is mips-sgi-irix4.0.5H, change it to mips-sgi-irix4.
14809
14810 Thu Mar 31 04:55:57 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14811
14812 * configure: Support --silent, --quiet.
14813
14814 Wed Mar 30 21:37:38 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14815
14816 * configure: Support --disable-FEATURE.
14817
14818 Tue Mar 29 19:15:05 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14819
14820 * config.guess: Recognize NCR running SVR4.3.
14821
14822 Mon Mar 28 14:55:15 1994 Per Bothner (bothner@kalessin.cygnus.com)
14823
14824 * config.guess: Make BSDI generate i386-unknown-bsd386.
14825 Patch from Paul Eggert <eggert@twinsun.com>.
14826
14827 Mon Mar 28 12:54:52 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14828
14829 * configure.in (powerpc-*-aix*): Treat like rs6000-*-*.
14830
14831 Sat Mar 26 11:25:48 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14832
14833 * configure: Make unrecognized options give nonfatal warnings
14834 instead of fatal errors, and pass them to any subdirectory
14835 configures in case they recognize them.
14836 Make --x equivalent to --with-x.
14837
14838 Fri Mar 25 21:52:10 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14839
14840 * configure: Add --enable-* options. Clean up usage message and
14841 some comments.
14842
14843 Thu Mar 24 09:12:53 1994 Doug Evans (dje@canuck.cygnus.com)
14844
14845 * Makefile.in (NM_FOR_TARGET): Build tree version is now nm.new.
14846
14847 Sun Mar 20 11:28:22 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
14848
14849 * configure.in (hppa*-*-*): Enable binutils.
14850
14851 Sat Mar 19 11:50:16 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14852
14853 * config.sub: Recognize cisco.
14854
14855 Fri Mar 18 16:42:32 1994 Jason Merrill (jason@deneb.cygnus.com)
14856
14857 * Makefile.in (CXXFLAGS): Add -fexternal-templates.
14858
14859 Tue Mar 15 11:25:55 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14860
14861 * config.guess: about target *-hitachi-hiuxwe2, don't print more
14862 than one configuration name. Add comment.
14863
14864 Sun Mar 6 23:13:38 1994 Hisashi MINAMINO (minamino@sra.co.jp)
14865
14866 * config.guess: about target *-hitachi-hiuxwe2, fixed
14867 machine guessing order. [Hitachi's CPU_IS_HP_MC68K
14868 macro is incorrect.]
14869
14870 Sun Mar 13 09:10:08 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14871
14872 * Makefile.in (TAGS): Just build TAGS in each subdirectory, rather
14873 than the "make ls" stuff which used to be here.
14874
14875 Fri Mar 11 12:52:39 1994 Per Bothner (bothner@kalessin.cygnus.com)
14876
14877 * config.guess: Recognize i[34]86-unknown-freebsd.
14878 From Shawn M Carey <smcarey@rodan.syr.edu>.
14879
14880 Thu Mar 3 14:24:21 1994 Per Bothner (bothner@kalessin.cygnus.com)
14881
14882 * configure.in (noconfigdirs for alpha): Remove libg++ and libio.
14883
14884 Wed Mar 2 13:28:48 1994 Jim Kingdon (kingdon@deneb.cygnus.com)
14885
14886 * config.guess: Check for ptx.
14887
14888 Mon Feb 28 16:46:50 1994 Kung Hsu (kung@mexican.cygnus.com)
14889
14890 * config.sub: Add os9k checking.
14891
14892 Thu Feb 24 07:09:04 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
14893
14894 * config.guess: Handle OSF1 running on HPPA processors
14895
14896 Fri Feb 18 14:14:00 1994 Ken Raeburn (raeburn@rtl.cygnus.com)
14897
14898 * configure: If subdir configure fails, print out a message with
14899 subdirectory name, in case subdir's configure code didn't identify
14900 itself.
14901
14902 Fri Feb 18 12:50:15 1994 Doug Evans (dje@cygnus.com)
14903
14904 * configure.in: Remove embedded newlines from configdirs.
14905 Avoid mismatches of substrings. Fix matching strings at end
14906 of configdirs.
14907
14908 Fri Feb 11 15:33:33 1994 Stu Grossman (grossman at cygnus.com)
14909
14910 * config.guess: Add Lynx/rs6000 config support.
14911
14912 Tue Feb 8 13:41:09 1994 Ken Raeburn (raeburn@rtl.cygnus.com)
14913
14914 * configure.in (alpha-dec-osf1*, alpha*-*-*): Build gas.
14915
14916 Mon Feb 7 15:42:36 1994 Jeffrey A. Law (law@cygnus.com)
14917
14918 * configure.in (hppa*-*-osf*): Treat this just like most other
14919 PA configurations (eg no binutils or ld).
14920 (hppa*-*-*elf*): These configurations have binutils and ld.
14921
14922 Sun Feb 6 16:35:07 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
14923
14924 * config.sub (hiux): Fix typo. From m-kasahr@sramhc.sra.co.JP.
14925
14926 Sat Feb 5 01:00:33 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14927
14928 * configure.in (rs6000-*-*): Build gas.
14929
14930 Wed Feb 2 13:57:57 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
14931
14932 * Makefile.in: Avoid bug in losing hpux sed.
14933
14934 Wed Feb 2 14:53:05 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14935
14936 * Makefile.in, test-build.mk: Remove MUNCH_NM; it was only needed
14937 for GDB and GDB has been fixed to not need it.
14938
14939 Sun Jan 30 17:58:06 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
14940
14941 * config.guess: Recognize vax hosts.
14942
14943 Fri Jan 28 15:29:38 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
14944
14945 * configure (while loop): Don't use "break 2" inside case
14946 statement -- the case statement isn't an enclosing loop.
14947
14948 Mon Jan 24 18:40:06 1994 Per Bothner (bothner@kalessin.cygnus.com)
14949
14950 * config.guess: Clean up NeXT support, to allow nextstep
14951 on Intel machines. Make OS be nextstep.
14952
14953 Sun Jan 23 18:47:22 1994 Richard Kenner (kenner@vlsi1.ultra.nyu.edu)
14954
14955 * config.guess: Add alternate forms for Convex.
14956
14957 Thu Jan 20 16:13:41 1994 Stu Grossman (grossman at cygnus.com)
14958
14959 * configure: Completely rewrite option processing. Take
14960 advantage of pattern-matching to avoid invoking test frequently.
14961 Also clean up host and target defaulting logic.
14962
14963 Mon Jan 17 15:06:56 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
14964
14965 * Makefile.in: Replace all occurrances of "rootme" with "r" and
14966 "$${rootme}" with "$$r", to increase the likelihood that the do-*
14967 commands (plus user environment) will fit SCO limits.
14968
14969 Thu Jan 6 11:20:57 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14970
14971 * configure.in: Don't issue warnings about directories which are
14972 not being configured if -norecursion is set. Correct test for
14973 --with-gnu-as and --with-gnu-ld to not get confused by substring
14974 matches.
14975
14976 * configure.in: Don't build gas for alpha-dec-osf1*.
14977
14978 Tue Jan 4 17:10:19 1994 Stu Grossman (grossman at cygnus.com)
14979
14980 * configure: Back out Per's change of 12/19/1993. It changes the
14981 behavior of configure in unexpected and confusing ways.
14982
14983 Also, use different delim char when calculating
14984 program_transform_name so that the name can contain slashes.
14985
14986 Sat Jan 1 13:45:31 1994 Rob Savoye (rob@darkstar.cygnus.com)
14987
14988 * configure.in, config.sub: Add support for VSTa micro-kernel.
14989
14990 Sat Dec 25 20:00:47 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
14991
14992 * configure.in: Nuke hacks which were used to get a special
14993 version of GAS for HPPA configurations.
14994
14995 Sun Dec 19 20:40:44 1993 Per Bothner (bothner@kalessin.cygnus.com)
14996
14997 * configure: If only ${target_alias} is given, use that
14998 as the default for ${host_alias}.
14999 * configure: Add missing back-slashes before nested quotes.
15000
15001 Wed Dec 15 18:07:18 1993 david d `zoo' zuhn (zoo@andros.cygnus.com)
15002
15003 * Makefile.in (BASE_FLAGS_TO_PASS): add YACC=$(BISON)
15004
15005 Tue Dec 14 21:25:33 1993 Per Bothner (bothner@cygnus.com)
15006
15007 * config.guess: Recognize some Tektronix configurations.
15008 From Kaveh R. Ghazi <ghazi@noc.rutgers.edu>.
15009
15010 Sat Dec 11 11:18:00 1993 Steve Chamberlain (sac@thepub.cygnus.com)
15011
15012 * config.sub: Match any flavor of SH.
15013
15014 Thu Dec 2 17:16:58 1993 Ken Raeburn (raeburn@cujo.cygnus.com)
15015
15016 * configure.in: Don't try to configure newlib for Alpha.
15017
15018 Thu Dec 2 14:35:54 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
15019
15020 * configure.in: Don't build ld for Irix 5. Don't build gas,
15021 libg++ or libio for any Alpha target.
15022
15023 * configure.in (mips*-sgi-irix5*): New target; use mh-irix5.
15024
15025 Wed Dec 1 17:00:33 1993 Jason Merrill (jason@deneb.cygnus.com)
15026
15027 * Makefile.in (GZIPPROG): Renamed from GZIP, which gzip uses for
15028 default arguments -- so it tried to compress itself.
15029
15030 Tue Nov 30 13:45:15 1993 david d `zoo' zuhn (zoo@andros.cygnus.com)
15031
15032 * configure.in (notsupp): ensure that a space is always at the end
15033 of the configdirs list, since the grep checks for an explicit space
15034
15035 Tue Nov 16 15:04:27 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15036
15037 * configure.in (target i386-sysv4.2): don't build ld, since static
15038 versions of many libraries are not available.
15039
15040 Tue Nov 16 14:28:12 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15041
15042 * config.guess: Recognize Apollos (using environment variables).
15043 * configure.in: Don't configure ld, binutils, or gprof for Apollo.
15044
15045 Thu Nov 11 12:03:50 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15046
15047 * config.guess: Recognize Sony news mips running newsos.
15048
15049 Wed Nov 10 16:57:00 1993 Mark Eichin (eichin@cygnus.com)
15050
15051 * Makefile.in (all-cygnus, build-cygnus): "fi else" needs to be
15052 "fi ; else" for bash.
15053
15054 Tue Nov 9 15:54:01 1993 Mark Eichin (eichin@cygnus.com)
15055
15056 * Makefile.in (BASE_FLAGS_TO_PASS): pass SHELL.
15057
15058 Fri Nov 5 08:07:27 1993 D. V. Henkel-Wallace (gumby@blues.cygnus.com)
15059
15060 * config.sub: accept unixware as an alias for svr4.2.
15061 Fix some inconsistancies with the gcc version.
15062
15063 Fri Nov 5 15:14:12 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15064
15065 * Makefile.in (DISTDOCDIRS): Add gdb.
15066
15067 Fri Nov 5 11:59:42 1993 Per Bothner (bothner@kalessin.cygnus.com)
15068
15069 * Makefile.in (DISTDOCDIRS): Add libg++ and libio.
15070
15071 Fri Nov 5 10:35:05 1993 Ken Raeburn (raeburn@rover.cygnus.com)
15072
15073 * Makefile.in (taz): Only build "info" in DISTDOCDIRS.
15074 (DISTDOCDIRS): Don't assume libg++ and gdb folks necessarily want
15075 this now.
15076
15077 Thu Nov 4 18:58:23 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15078
15079 * config.sub: Accept hiux* as an OS name.
15080
15081 * Makefile.in: Change RUNTEST_FLAGS back to RUNTESTFLAGS per
15082 etc/make-stds.texi. The underscore came from gcc, and dje now
15083 agrees that RUNTESTFLAGS is the correct name.
15084
15085 Thu Nov 4 10:49:01 1993 Per Bothner (bothner@kalessin.cygnus.com)
15086
15087 * install.sh: Remove 'set -e'. It makes any conditionals
15088 in the script useless.
15089
15090 * config.guess: Automatically recognize arm-acorn-riscix
15091 Patch from Richard Earnshaw (rwe11@cl.cam.ac.uk).
15092
15093 Thu Nov 04 08:08:04 1993 Jeffrey Wheat (cassidy@cygnus.com)
15094
15095 * Makefile.in: Change RUNTESTFLAGS to RUNTEST_FLAGS
15096
15097 Wed Nov 3 22:09:46 1993 Ken Raeburn (raeburn@rtl.cygnus.com)
15098
15099 * Makefile.in (DISTDOCDIRS): New variable.
15100 (taz): Edit local Makefile.in sooner, instead of proto-toplev
15101 Makefile.in later. Build "info" and "dvi" in DISTDOCDIRS.
15102
15103 Wed Nov 3 21:31:52 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15104
15105 * configure.in (hppa target): check the source directory for the
15106 pagas sub-directory
15107
15108 Wed Nov 3 11:12:22 1993 Doug Evans (dje@canuck.cygnus.com)
15109
15110 * config.sub: Allow -aout* and -elf*.
15111
15112 Wed Nov 3 11:08:33 1993 Ken Raeburn (raeburn@rtl.cygnus.com)
15113
15114 * configure.in: Don't build ld on i386-solaris2, same as for
15115 sparc-solaris2.
15116
15117 Tue Nov 2 14:21:25 1993 Per Bothner (bothner@kalessin.cygnus.com)
15118
15119 * Makefile.in (taz): Add texinfo/lgpl.texinfo (for libg++).
15120
15121 Tue Nov 2 13:38:30 1993 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
15122
15123 * configure.in: Configure gdb for alpha.
15124
15125 Mon Nov 1 10:42:54 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15126
15127 * Makefile.in (CXXFLAGS): Add -O.
15128
15129 Wed Oct 27 10:45:06 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15130
15131 * config.guess: added support for DG Aviion
15132
15133 Tue Oct 26 14:37:37 1993 Ken Raeburn (raeburn@rover.cygnus.com)
15134
15135 * configure.in: Produce warning message for subdirectories not
15136 configurable for this host/target combination. Don't try to
15137 configure gdb for vms.
15138
15139 Mon Oct 25 11:22:15 1993 Ken Raeburn (raeburn@rover.cygnus.com)
15140
15141 * Makefile.in (taz): Replace "byacc" with "bison -y" in the
15142 appropriate files before making "diststuff".
15143 (DISTBISONFILES): New var: list of files to be edited.
15144 (DISTSTUFFDIRS): Add binutils.
15145
15146 Fri Oct 22 20:32:15 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15147
15148 * config.sub: also handle mipsel and mips64el (for little endian mips)
15149
15150 Fri Oct 22 07:59:20 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15151
15152 * configure.in: Add * to end of all OS names.
15153
15154 Thu Oct 21 11:38:28 1993 Stan Shebs (shebs@rtl.cygnus.com)
15155
15156 * configure.in: Build newlib for LynxOS native.
15157
15158 Wed Oct 20 09:56:12 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15159
15160 * config.guess: Add support for delta 88k running SVR3.
15161
15162 * configure.in: Add comment about HP compiler vs. emacs.
15163
15164 Tue Oct 19 16:02:22 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15165
15166 * configure.in: don't build ld on solaris2 (not a viable option
15167 due to bugs in getpwnam & getpwuid)
15168
15169 Tue Oct 19 15:13:56 1993 Ken Raeburn (raeburn@rtl.cygnus.com)
15170
15171 * configure.in: Accept alpha-dec-osf1*, not just -osf1, since
15172 config.guess will produce a full version number.
15173
15174 Tue Oct 19 15:58:01 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
15175
15176 * configure.in: Build linker and binutils for alpha-dec-osf1.
15177
15178 Tue Oct 19 11:41:55 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15179
15180 * Makefile.in: Remove -O from CXXFLAGS for consistency with CFLAGS,
15181 and gdb/testsuite/Makefile.in.
15182
15183 Sat Oct 9 18:39:07 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15184
15185 * configure.in: recognize mips*- instead of mips-
15186
15187 Fri Oct 8 14:15:39 1993 Ken Raeburn (raeburn@cygnus.com)
15188
15189 * config.sub: Accept linux*coff and linux*elf as operating
15190 systems.
15191
15192 Thu Oct 7 12:57:19 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
15193
15194 * config.sub: Recognize mips64, and mips3 as an alias for it.
15195
15196 Wed Oct 6 13:54:21 1993 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
15197
15198 * configure.in: Remove alpha-dec-osf*, no longer necessary now that
15199 gdb knows how to handle OSF/1 shared libraries.
15200
15201 Tue Oct 5 11:55:04 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15202
15203 * configure.in: Recognize hppa*-*-hiux* (currently synonym for hpux).
15204 * config.guess: Recognize Hitachi's HIUX.
15205 * config.sub: Recognize h3050r* and hppahitachi.
15206 Remove redundant cases for hp9k[23]*.
15207
15208 Mon Oct 4 16:15:09 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15209
15210 * configure.in: default to '--with-gnu-as' and '--with-gnu-ld'
15211 if gas and ld are in the source tree and are in ${configdirs}.
15212 If ${use_gnu_as} or ${use_gnu_ld} are 'no', then don't set the
15213 --with options (but still pass them down on the command line,
15214 if they were explicitly specified).
15215
15216 Fri Sep 24 19:11:13 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15217
15218 * configure: substitute SHELL value in Makefile.in with
15219 ${CONFIG_SHELL}
15220
15221 Thu Sep 23 18:05:13 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
15222
15223 * configure.in: Build gas, ld, and binutils for *-*-sysv4* and
15224 *-*-solaris2* targets.
15225
15226 Sun Sep 19 17:01:41 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15227
15228 * Makefile.in: define M4, and pass it down to sub-makes;
15229 all-autoconf now depends on all-m4
15230
15231 Sat Sep 18 00:38:23 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15232
15233 * Makefile.in ({AR,RANLIB}_FOR_TARGET): make contingent on
15234 presence of {ar,ranlib} instead of a configured directory
15235
15236 Wed Sep 15 08:41:44 1993 Jim Kingdon (kingdon@cirdan.cygnus.com)
15237
15238 * config.guess: Accept 34?? as well as 33?? for NCR.
15239
15240 Mon Sep 13 12:28:43 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15241
15242 * configure.in: grab mt-hppa for HPPA targets; use 'gas ' instead
15243 of 'gas' in sed commands, since 'gash' is now in the tree as well.
15244
15245 Fri Sep 10 11:23:52 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15246
15247 * configure: grab values for $(CC) and $(CXX) from the
15248 environment, so that someone can do "CC=gcc configure; make" and
15249 have it work right (matching the way that autoconf works now)
15250
15251 * configure.in, Makefile.in: add support for gash, the tcl
15252 interface to Galaxy
15253
15254 * config.guess: add NetBSD variants (hp300, x86)
15255
15256 Thu Sep 9 16:48:52 1993 Jason Merrill (jason@deneb.cygnus.com)
15257
15258 * install.sh: Support -d option (in the manner of SunOS 4 install,
15259 as it is more deterministic than that of GNU install)
15260 (chmodcmd): Set file to mode 755 by default (should also do default
15261 chgrp and chown, but I don't feel like dealing with that now)
15262
15263 Tue Sep 7 11:59:39 1993 Doug Evans (dje@canuck.cygnus.com)
15264
15265 * config.sub: Remove h8300hhms alias.
15266
15267 Tue Aug 31 11:00:09 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15268
15269 * configure.in: Match *-*-solaris2* not *-sun-solaris2*.
15270
15271 Mon Aug 30 18:29:10 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15272
15273 * Makefile.in (gcc-no-fixedincludes): touch stmp-fixproto as well
15274 as stmp-fixinc
15275
15276 Wed Aug 25 16:35:59 1993 K. Richard Pixley (rich@sendai.cygnus.com)
15277
15278 * config.sub: recognize m88110-bug-coff.
15279
15280 Tue Aug 24 10:23:24 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15281
15282 * Makefile.in (all-libio): all dependencies on the toolchain used
15283 to build this (gcc, gas, ld, etc)
15284
15285 Fri Aug 20 17:24:24 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15286
15287 * config.guess: Deal with OSF/1 1.3 on alpha.
15288
15289 Thu Aug 19 11:43:04 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15290
15291 * install.sh: add some 'else true' clauses for portability
15292
15293 * configure.in: don't build libio for h8[35]00-*-* targets
15294
15295 Tue Aug 17 19:02:31 1993 Per Bothner (bothner@kalessin.cygnus.com)
15296
15297 * Makefile.in: Add support for new libio.
15298
15299 Sun Aug 15 20:48:55 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15300
15301 * install.sh: If one command fails, don't try the rest. Don't try
15302 to remove $dsttmp (via trap) unless we have already created it.
15303 If $src doesn't exist, detect it and exit with an error.
15304
15305 * config.guess: Recognize BSD on hp300.
15306
15307 Wed Aug 11 18:35:13 1993 Per Bothner (bothner@kalessin.cygnus.com)
15308
15309 * config.guess: Map (9000/[34]??:HP-UX:*:*) to m68k-hp-hpux.
15310 Bug report from "Hamish (H.I.) Macdonald" <hamish@bnr.ca>.
15311
15312 Wed Aug 11 15:37:51 1993 Jason Merrill (jason@deneb.cygnus.com)
15313
15314 * Makefile.in (all-send-pr): depends on all-prms
15315
15316 Wed Aug 11 16:56:03 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15317
15318 * config.guess: Fix typo (9000/8??:4.3bsd -> 9000/7??:4.3bsd).
15319
15320 Fri Aug 6 14:45:02 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
15321
15322 * config.guess: From michael@mercury.cs.mun.ca (Michael Rendell):
15323 Added test for mips-mips-riscos5.
15324
15325 Thu Aug 5 15:45:08 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15326
15327 * configure.in: use mh-hp300 for 68k HP hosts
15328
15329 Mon Aug 2 11:56:53 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15330
15331 * configure: add support for CONFIG_SHELL, so that you can use
15332 some alternate shell for evaluating configure scripts
15333
15334 Sun Aug 1 11:36:27 1993 Fred Fish (fnf@deneb.cygnus.com)
15335
15336 * Makefile.in (make-gdb.tar.gz): Sed bug reporting address
15337 in configure script to bug-gdb@prep.ai.mit.edu when building
15338 distribution archive.
15339 * Makefile.in (COMPRESS): Remove def.
15340 * Makefile.in (gdb.tar.gz, make-gdb.tar.gz): Renamed from
15341 gdb.tar.Z and make-gdb.tar.Z respectively.
15342 * Makefile.in (make-gdb.tar.gz): Now only build gzip'd archive.
15343 * Makefile.in (make-gdb.tar.gz): Minor changes to move closer
15344 to convergence with 'taz' target in Makefile.in.
15345
15346 Fri Jul 30 12:34:57 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15347
15348 * install.sh (dsttmp): use trap to ensure that tmp files go
15349 away on error conditions
15350
15351 Wed Jul 28 11:57:36 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15352
15353 * Makefile.in (BASE_FLAGS_TO_PASS): remove LOADLIBES
15354
15355 Tue Jul 27 12:43:40 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15356
15357 * Makefile.in (install-dirs): Deal with a prefix like /gnu;
15358 its parent is '/' not ''.
15359
15360 * Makefile.in (DEVO_SUPPORT): Add comments about ChangeLog.
15361
15362 Fri Jul 23 09:53:37 1993 Jason Merrill (jason@wahini.cygnus.com)
15363
15364 * configure: if ${newsrcdir}/configure doesn't exist, don't assume
15365 that ${newsrcdir}/configure.in does.
15366
15367 Tue Jul 20 11:28:50 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15368
15369 * test-build.mk: support for CONFIG_SHELL
15370
15371 Mon Jul 19 21:54:46 1993 Fred Fish (fnf@deneb.cygnus.com)
15372
15373 * config.sub (netware): Add as a basic system type.
15374
15375 Wed Jul 14 12:03:11 1993 K. Richard Pixley (rich@sendai.cygnus.com)
15376
15377 * Makefile.in (Makefile): depend on configure.in. Also drop the
15378 $(srcdir)/ from the dependency on Makefile.in.
15379
15380 Tue Jul 13 20:10:58 1993 Doug Evans (dje@canuck.cygnus.com)
15381
15382 * config.sub: Recognize h8300hhms as h8300h-hitachi-hms.
15383 (h8300hhms is temporary until multi-libraries are implemented).
15384 * configure.in: Handle h8300h too.
15385
15386 Sun Jul 11 17:35:27 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15387
15388 * config.guess: Recognize dpx/2 as m68k-bull-sysv3.
15389
15390 Thu Jul 8 18:26:12 1993 John Gilmore (gnu@cygnus.com)
15391
15392 * configure: Remove extraneous output when guessing host type.
15393 * config.guess: Remove extraneous output when guessing using C
15394 compiler rather than uname, or when guessing fails.
15395
15396 Wed Jul 7 17:58:14 1993 david d `zoo' zuhn (zoo at rtl.cygnus.com)
15397
15398 * Makefile.in: remove all.cross and install.cross targets
15399
15400 * configure: remove CROSS=-DCROSS_COMPILE and ALL=all.cross
15401 definitions
15402
15403 Tue Jul 6 10:39:44 1993 Steve Chamberlain (sac@phydeaux.cygnus.com)
15404
15405 * configure.in (target sh): Build gprof.
15406
15407 Thu Jul 1 16:52:56 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15408
15409 * config.sub: change -solaris to -solaris2
15410
15411 Thu Jul 1 15:46:16 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15412
15413 * configure.in: Use config/mh-riscos for mips-*-sysv*.
15414
15415 Wed Jun 30 09:31:58 1993 Ian Lance Taylor (ian@cygnus.com)
15416
15417 * configure: Correct error message for missing Makefile.in to
15418 print correct directory.
15419
15420 Tue Jun 29 13:52:16 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15421
15422 * install.sh: kludge around 386BSD shell bug
15423
15424 Tue Jun 29 13:06:49 1993 Per Bothner (bothner@rtl.cygnus.com)
15425
15426 * config.guess: Recognize NeXT.
15427 * config.guess: Recognize i486-ncr-sysv4.
15428 * Makefile.in (taz): rm $(TOOL)-$$VER before linking.
15429
15430 Tue Jun 29 12:50:57 1993 Ian Lance Taylor (ian@cygnus.com)
15431
15432 * Makefile.in (MAKEINFOFLAGS): New variable.
15433 (FLAGS_TO_PASS): Pass MAKEINFO as MAKEINFO MAKEINFOFLAGS.
15434 * build-all.mk, test-build.mk: Pass down --no-split as
15435 MAKEINFOFLAGS when hosted on DOS. Compile DOS hosted without -g.
15436
15437 Thu Jun 24 13:39:11 1993 Per Bothner (bothner@rtl.cygnus.com)
15438
15439 * Makefile.in (DEVO_SUPPORT): Add COPYING COPYING.LIB install.sh.
15440
15441 Wed Jun 23 12:59:21 1993 Per Bothner (bothner@rtl.cygnus.com)
15442
15443 * Makefile.in (libg++.tar.z): New rule.
15444 * Makefile.in (taz): Replace 'configure -rm' by 'make distclean'.
15445 * Makefile.in (taz): Only do a single chmod.
15446
15447 Fri Jun 18 12:03:10 1993 david d `zoo' zuhn (zoo at majipoor.cygnus.com)
15448
15449 * install.sh: don't use dirname anymore (replaced with sed usage)
15450
15451 Thu Jun 17 18:43:42 1993 Fred Fish (fnf@cygnus.com)
15452
15453 * Makefile.in: Change extension for gzip'd files from '.z' to
15454 '.gz' per new FSF standard usage.
15455
15456 Thu Jun 17 16:58:50 1993 david d `zoo' zuhn (zoo at majipoor.cygnus.com)
15457
15458 * configure: put quotes around the final value of program_transform_name
15459
15460 Tue Jun 15 16:48:51 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15461
15462 * Makefile.in: new install.sh support; update install-info rules
15463
15464 Wed Jun 9 12:31:34 1993 Ian Lance Taylor (ian@cygnus.com)
15465
15466 * configure.in: Build diff for crosses, but not for go32 host.
15467
15468 * configure.in: Build gprof only for native, and don't build it
15469 for mips-*-*, rs6000-*-*, or i[34]86-*-sco*.
15470
15471 Mon Jun 7 13:12:11 1993 david d `zoo' zuhn (zoo at deneb.cygnus.com)
15472
15473 * configure.in: don't build gas,ld,binutils on for *-*-sysv4
15474
15475 Mon Jun 7 11:40:11 1993 Brendan Kehoe (brendan@lisa.cygnus.com)
15476
15477 * configure.in (host_tools): Add prms.
15478
15479 Fri Jun 4 13:30:42 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15480
15481 * Makefile.in: install gcc, do installation of $(INSTALL_MODULES)
15482 with $(FLAGS_TO_PASS) on the command line
15483
15484 * config.sub: Recognize lynx and lynxos
15485
15486 Fri Jun 4 10:59:56 1993 Ian Lance Taylor (ian@cygnus.com)
15487
15488 * config.sub: Accept -ecoff*, not just -ecoff.
15489
15490 Thu Jun 3 17:38:54 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15491
15492 * Makefile.in (taz): Use .gz suffix instead of .z.
15493 (binutils.tar.gz, gas+binutils.tar.gz, gas.tar.gz): Fixed target
15494 names.
15495
15496 Thu Jun 3 00:27:06 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15497
15498 * Makefile.in (vault-install): add an 'else true' (for Ultrix)
15499
15500 Wed Jun 2 18:19:16 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15501
15502 * Makefile.in (install-no-fixedincludes): install gcc last, so
15503 that rebuilds that might happen during 'make install' don't get
15504 bogus gcc include files
15505
15506 Wed Jun 2 16:14:10 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15507
15508 Change from Utah for HPPA support:
15509 * config.guess: Recognize hppa1.x-hp-bsd.
15510
15511 Wed Jun 2 11:53:33 1993 Per Bothner (bothner@rtl.cygnus.com)
15512
15513 * config.guess: Add support for Motorola Delta 68k, up to r3v7.
15514 Patch from pot@fly.cnuce.cnr.it (Francesco Potorti`).
15515
15516 Tue Jun 1 17:48:42 1993 Rob Savoye (rob at darkstar.cygnus.com)
15517
15518 * config.sub: Add support for rom68k and bug boot monitors.
15519
15520 Mon May 31 09:36:37 1993 Jim Kingdon (kingdon@cygnus.com)
15521
15522 * Makefile.in: Make all-opcodes depend on all-bfd.
15523
15524 Thu May 27 08:05:31 1993 Ian Lance Taylor (ian@cygnus.com)
15525
15526 * config.guess: Added special check for i[34]86-univel-sysv4*.
15527
15528 Wed May 26 16:33:40 1993 Ian Lance Taylor (ian@cygnus.com)
15529
15530 * config.guess: For i[34]86-unknown-sysv4 use UNAME_MACHINE for
15531 the processor rather than assuming i486.
15532
15533 Wed May 26 09:40:18 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15534
15535 * config.guess: Recognize SunOS6 as Solaris3.
15536
15537 Tue May 25 23:03:11 1993 Per Bothner (bothner@cygnus.com)
15538
15539 * config.guess: Fix typo. Avoid #elif (not in K&R 1).
15540 Recognize SunOS 5.* only (and not [6-9].*) as being Solaris2.
15541
15542 Tue May 25 12:44:18 1993 Ian Lance Taylor (ian@cygnus.com)
15543
15544 * build-all.mk (all-cross): New target for Canadian Cross.
15545 Added Q2 go32 targets.
15546 * test-build.mk: Configure go32 cross sparclite-aout and
15547 mips-idt-ecoff -with-gnu-ld. Moved build binary directory from
15548 PARTIAL_HOLE_DIRS to BUILD_HOLES_DIRS.
15549
15550 Mon May 24 15:30:06 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15551
15552 * configure.in: fix Alpha GDB typo; also, don't build DejaGnu for
15553 GO32 hosted toolchains
15554
15555 Mon May 24 14:18:41 1993 Rob Savoye (rob at darkstar.cygnus.com)
15556
15557 * configure: change so "-exec-prefix" gets passed down rather
15558 than "-exec_prefix" so autoconf generated Makefiles get the
15559 exec_prefix set right.
15560
15561 Fri May 21 10:42:25 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15562
15563 * config.guess: get the Solaris2 minor version number
15564
15565 * Makefile.in: add standards.texi and make-stds.texi to ETC_SUPPORT
15566
15567 Fri May 21 06:20:52 1993 Brendan Kehoe (brendan@lisa.cygnus.com)
15568
15569 * config.guess: Recognize some Sequent platforms.
15570
15571 Thu May 20 14:33:48 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15572
15573 * Makefile.in: added the vault-install target
15574
15575 * configure.in: actually use the Sun3 makefile fragment that's in
15576 config, also added the release dir to configdirs
15577
15578 Thu May 20 14:19:18 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15579
15580 * Makefile.in (taz): Fix modes on stuff in $(TOOL) dir also.
15581
15582 Tue May 18 20:26:41 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15583
15584 * configure.in: remove some program from Alpha targetted toolchains
15585
15586 Tue May 18 15:23:19 1993 Ken Raeburn (raeburn@cygnus.com)
15587
15588 * Makefile.in (DISTSTUFFDIRS): Renamed from PROTODIRS. Add ld and
15589 gprof.
15590 (taz): Run "make diststuff" in those directories instead of "make
15591 proto-dir". Look for "VERSION=" only at start of line in subdir
15592 Makefile. Use "gzip -9" for compression.
15593 (TEXINFO_SUPPORT, DIST_SUPPORT, BINUTILS_SUPPORT_DIRS): New vars.
15594 (binutils.tar.z): New target.
15595
15596 Mon May 17 17:01:15 1993 Ken Raeburn (raeburn@deneb.cygnus.com)
15597
15598 * Makefile.in (taz): Include gpl.texinfo.
15599
15600 Fri May 14 06:48:38 1993 Ken Raeburn (raeburn@deneb.cygnus.com)
15601
15602 * Makefile.in (setup-dirs): Merged into "taz" target.
15603 (taz): Only do `proto-dir' stuff if a directory is actually needed
15604 for this target.
15605
15606 Wed May 12 13:09:44 1993 Ian Lance Taylor (ian@cygnus.com)
15607
15608 * Makefile.in (MUNCH_NM): New variable, defined to be $(NM).
15609 (FLAGS_TO_PASS): Pass down MUNCH_NM.
15610 (HOST_CC, HOST_PREFIX, HOST_PREFIX_1): New variables.
15611 (EXTRA_GCC_FLAGS): Pass down HOST_* variables.
15612 (gcc-no-fixedincludes): Correct for current gcc Makefile.
15613
15614 Tue May 11 10:14:25 1993 Fred Fish (fnf@cygnus.com)
15615
15616 * Makefile.in (make-gdb.tar.Z): Add configure, config.guess,
15617 config.sub, and move-if-change to gdb testsuite distribution
15618 archive, so the testsuite can be extracted, configured, and
15619 run separately from the gdb distribution. Blow away the Chill
15620 tests that require a Chill compiled executable, since GNU Chill
15621 is not yet publically available.
15622
15623 Mon May 10 17:22:26 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15624
15625 * test-build.mk: set environment variables in a single command,
15626 instead of a list of assignments and exports
15627
15628 * config.guess: recognize Alpha/OSF1 systems
15629
15630 Mon May 10 14:55:51 1993 K. Richard Pixley (rich@rtl.cygnus.com)
15631
15632 * configure: Change help message to prefer --options rather than
15633 -options.
15634
15635 Mon May 10 05:58:35 1993 Ken Raeburn (raeburn@kr-pc.cygnus.com)
15636
15637 * config.sub: Convergent Tech. "miniframe" uses m68010, sez
15638 zippy@ecst.csuchico.edu.
15639 * config.guess: Recognize miniframe.
15640
15641 Sun May 9 17:47:57 1993 Rob Savoye (rob at darkstar.cygnus.com)
15642
15643 * Makefile.in: Use srcroot to find runtest rather than rootme.
15644 Pass RUNTESTFLAGS and EXPECT down in BASE_FLAGS_TO_PASS.
15645
15646 Fri May 7 14:55:59 1993 Ian Lance Taylor (ian@cygnus.com)
15647
15648 * test-build.mk: Extensive additions to support building on a
15649 machine other than the host.
15650
15651 Wed May 5 08:35:04 1993 Ken Raeburn (raeburn@deneb.cygnus.com)
15652
15653 * configure (tooldir): Fix for i386-aix again.
15654
15655 Mon May 3 19:00:27 1993 Per Bothner (bothner@cygnus.com)
15656
15657 * configure, Makefile.in: Change definition of $(tooldir)
15658 to match the FSF.
15659
15660 Fri Apr 30 15:55:21 1993 Fred Fish (fnf@cygnus.com)
15661
15662 * config.guess: Recognize i[34]86/SVR4.
15663
15664 Fri Apr 30 15:52:46 1993 Steve Chamberlain (sac@thepub.cygnus.com)
15665
15666 * Makefile.in (all-gdb): gdb depends on sim.
15667
15668 Thu Apr 29 23:30:48 1993 Fred Fish (fnf@cygnus.com)
15669
15670 * Makefile.in (gdb.tar.Z): Make prototype gdb testsuite directory
15671 at the same time we make the prototype gdb directory.
15672 * Makefile.in (make-gdb.tar.Z): Make the testsuite distribution
15673 files at the same time as the gdb base release distribution.
15674
15675 Thu Apr 29 12:50:37 1993 Ian Lance Taylor (ian@cygnus.com)
15676
15677 * Makefile.in (check): Use individual check targets rather than
15678 DO_X rule.
15679 (check-gcc): Added.
15680
15681 Thu Apr 29 09:50:07 1993 Jim Kingdon (kingdon@cygnus.com)
15682
15683 * config.sub: Use sysv3.2 not sysv32 for canonical OS
15684 for System V release 3.2.
15685
15686 Thu Apr 29 10:33:22 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15687
15688 * config.sub: Recognize hppaosf.
15689 * configure.in: Do configure ld/binutils/gas for it.
15690
15691 Tue Apr 27 06:25:34 1993 Ken Raeburn (raeburn@kr-pc.cygnus.com)
15692
15693 * configure (tooldir): Alter syntax used to set this, for systems
15694 where "\$" isn't handled right, like i386-aix.
15695
15696 Thu Apr 22 08:17:35 1993 Ian Lance Taylor (ian@cygnus.com)
15697
15698 * configure: Pass program-transform-name, not
15699 program_transform_name, to recursive configures.
15700
15701 Thu Apr 22 02:58:21 1993 Ken Raeburn (raeburn@cygnus.com)
15702
15703 * Makefile.in (gas+binutils.tar.z): New rule for building snapshots
15704 of gas+ld+binutils.
15705
15706 Mon Apr 19 17:41:30 1993 Per Bothner (bothner@cygnus.com)
15707
15708 * config.guess: Recognize AIX3.2 as distinct from 3.1.
15709
15710 Sat Apr 17 17:19:50 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15711
15712 * configure.in: rename m88k-motorola-m88kbcs to m88k-motorola-sysv
15713
15714 Tue Apr 13 16:52:16 1993 Brendan Kehoe (brendan@lisa.cygnus.com)
15715
15716 * Makefile.in (PRMS): Set back to all-prms.
15717
15718 Sat Apr 10 12:04:07 1993 Ian Lance Taylor (ian@cygnus.com)
15719
15720 * test-build.mk: Pass -with-gnu-as for known MIPS native and MIPS
15721 targets, rather than for MIPS hosts.
15722
15723 Fri Apr 9 13:51:06 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15724
15725 * configure.in: add comment for --with-x default values
15726
15727 * config.guess: handle Motorola Delta88 box for SVR3 and SVR4.
15728
15729 * Makefile.in: add check-* targets for each of the directories in
15730 the tree. Add a definition of RUNTEST that will use the one we
15731 just built, if it exists. Pass this down via FLAGS_TO_PASS.
15732
15733 Thu Apr 8 09:21:30 1993 Ian Lance Taylor (ian@cygnus.com)
15734
15735 * configure.in: Removed obsolete references to bfd_target and
15736 target_makefile_frag.
15737
15738 * build-all.mk: Set assorted targets for Q2.
15739 * config.sub: Recognize z8k-sim and h8300-hms.
15740 * test-build.mk: Really don't pass host to configure.
15741 (HOLES): Added uname.
15742
15743 Wed Apr 7 15:48:19 1993 Ian Lance Taylor (ian@cygnus.com)
15744
15745 * configure: Handle an empty program-prefix, program-suffix or
15746 program-transform-name correctly.
15747
15748 Tue Apr 6 13:48:41 1993 Ian Lance Taylor (ian@cygnus.com)
15749
15750 * build-all.mk: -G 8 no longer required for MIPS targets.
15751 * test-build.mk: Don't pass host argument to configure; make it
15752 guess.
15753
15754 Tue Apr 6 10:36:53 1993 Fred Fish (fnf@cygnus.com)
15755
15756 * Makefile.in (gdb.tar.Z): Fix for building gzip'd distribution.
15757 * Makefile.in (COMPRESS): New macro, like GZIP.
15758
15759 Fri Apr 2 09:02:31 1993 Ian Lance Taylor (ian@cygnus.com)
15760
15761 * test-build.mk: Use -with-gnu-as for mips-sgi-irix4 as well.
15762
15763 * build-all.mk: Set GCC to gcc -O -G 8 for MIPS targets, since gcc
15764 with gas currently defaults to -G 0.
15765
15766 Thu Apr 1 08:25:42 1993 Ian Lance Taylor (ian@cygnus.com)
15767
15768 * Makefile.in (all-flex): flex depends on byacc.
15769
15770 * build-all.mk: If host not specified, use config.guess. Pass TAG
15771 to test-build.mk as RELEASE_TAG.
15772 * test-build.mk (configargs): New variable containing arguments to
15773 pass to configure. Set to -with-gnu-as on mips-dec-ultrix.
15774 (FLAGS_TO_PASS): Pass down RELEASE_TAG.
15775
15776 * config.guess: Use /bin/uname when checking -X argument on SCO,
15777 to avoid invoking GNU uname which doesn't understand -X.
15778
15779 * test-build.mk: Don't use /usr/unsupported/bin/as on AIX.
15780
15781 * configure.in: Build gas for mips-*-*.
15782
15783 Wed Mar 31 21:20:58 1993 K. Richard Pixley (rich@rtl.cygnus.com)
15784
15785 * Makefile.in (all.normal): insert missing backslash.
15786
15787 Wed Mar 31 12:31:56 1993 Ian Lance Taylor (ian@cygnus.com)
15788
15789 * build-all.mk: Bump -XNh value to 1500 to match gcc requirements.
15790
15791 * Makefile.in: Complete overhaul to merge many almost identical
15792 targets.
15793
15794 Tue Mar 30 20:17:01 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15795
15796 * Makefile.in (setup-dirs-gdb): Renamed from setup-dirs.
15797 (gdb.tar.Z): Adjusted.
15798
15799 * Makefile.in (setup-dirs, taz): New targets; should be general
15800 enough to adapt for gdb sometime. Build only .z file.
15801 (gas.tar.z): New target.
15802
15803 Tue Mar 30 10:03:09 1993 Ian Lance Taylor (ian@cygnus.com)
15804
15805 * build-all.mk: Use CC=cc -Xs on Solaris.
15806
15807 Thu Mar 25 15:14:30 1993 Fred Fish (fnf@cygnus.com)
15808
15809 * Makefile.in: Incorporate changes suggested by wilson@cygnus.com
15810 for handling BISON for FSF releases.
15811
15812 Thu Mar 25 06:19:48 1993 Ken Raeburn (raeburn@kr-pc.cygnus.com)
15813
15814 * configure: Actually implement the change zoo just documented.
15815
15816 Wed Mar 24 13:02:44 1993 david d `zoo' zuhn (zoo at poseidon.cygnus.com)
15817
15818 * configure: when using config.guess, only set target_alias when
15819 it's not already been set (ie, on the command line)
15820
15821 Mon Mar 22 23:07:39 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15822
15823 * Makefile.in: add installcheck target, set PRMS to install-prms
15824
15825 Sun Mar 21 16:46:12 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15826
15827 * configure: add support for package_makefile_fragment, handle the
15828 case where a directory has a configure.in file but no Makefile.in
15829 more gracefully (with an actual understandable error message, even);
15830 add support for --without (and add this to the usage message); also
15831 explicitly add a --host=${host_alias} to the command line when
15832 config.guess is used
15833
15834 Sun Mar 21 12:11:58 1993 Jim Wilson (wilson@sphagnum.cygnus.com)
15835
15836 * configure: Must use both --host and --target in recursive calls.
15837
15838 Thu Mar 18 12:31:35 1993 Ian Lance Taylor (ian@cygnus.com)
15839
15840 * Makefile.in: Change deja-gnu to dejagnu.
15841
15842 Mon Mar 15 15:44:35 1993 Ian Lance Taylor (ian@cygnus.com)
15843
15844 * configure.in (h8300-*-*, h8500-*-*): Don't build libg++.
15845
15846 Fri Mar 12 18:30:14 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15847
15848 * configure.in: canonicalize all instances to *-*-solaris2*,
15849 also strip out a number of tools to not build for go32 host
15850
15851 Wed Mar 10 12:08:27 1993 K. Richard Pixley (rich@rtl.cygnus.com)
15852
15853 * config.guess: add GPL.
15854
15855 * Makefile.in, config.guess, config.sub, configure: bump
15856 copyrights to 93.
15857
15858 Wed Mar 10 07:12:48 1993 Ian Lance Taylor (ian@cygnus.com)
15859
15860 * Makefile.in (do-info): Removed obsolete check for existence of
15861 localenv file.
15862
15863 * Makefile.in (MAKEOVERRIDES): Define to be empty.
15864
15865 Wed Mar 10 03:11:56 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15866
15867 * Makefile.in: a couple of 'else true' for decstation,
15868 support for TclX
15869
15870 * configure.in: configure tclX too; don't remove Tk on RS/6000 anymore
15871
15872 Tue Mar 9 16:06:12 1993 K. Richard Pixley (rich@cygnus.com)
15873
15874 * Makefile.in (setup-dirs): change invocation of make to $(MAKE).
15875
15876 Mon Mar 8 14:52:11 1993 Ken Raeburn (raeburn@cambridge)
15877
15878 * config.guess: Recognize i386-ibm-aix (PS/2).
15879 * configure.in: Use config/mh-aix386 file for it.
15880
15881 Mon Mar 8 11:12:43 1993 Ian Lance Taylor (ian@cygnus.com)
15882
15883 * Makefile.in (GCC_FOR_TARGET): Eliminated definition; use
15884 CC_FOR_TARGET instead.
15885 (BASE_FLAGS_TO_PASS): Pass GCC_FOR_TARGET=$(CC_FOR_TARGET).
15886
15887 Wed Mar 3 16:00:28 1993 Steve Chamberlain (sac@ok.cygnus.com)
15888
15889 * Makefile.in: Add sim to list of directories sent with gdb
15890
15891 Wed Mar 3 11:42:39 1993 Ken Raeburn (raeburn@cygnus.com)
15892
15893 * configure.in: Put back mips-dec-bsd* case.
15894
15895 Tue Mar 2 21:15:58 1993 Fred Fish (fnf@cygnus.com)
15896
15897 (Ultrix 2.2 support from Michael Rendell <michael@mercury.cs.mun.ca>)
15898 * configure.in (vax-*-ultrix2*): Add Ultrix 2.2 triplet.
15899 * config.guess: Change 'VAX*:ULTRIX:*:*' to 'VAX*:ULTRIX*:*:*'.
15900
15901 Tue Mar 2 18:11:03 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15902
15903 * configure.in: remove no-op mips-dec-bsd* in "case $target"
15904
15905 * Makefile.in (dir.info): only run gen-info-dir if it exists,
15906 (install-info): install dir.info only if it exists,
15907 (all-expect, install-expect): pass along X11_FLAGS_TO_PASS
15908
15909 Tue Mar 2 09:01:30 1993 Ken Raeburn (raeburn@cygnus.com)
15910
15911 * configure.in: For vms target, skip bfd, ld, binutils. Do build
15912 gas for mips-dec-bsd.
15913
15914 Tue Mar 2 08:35:24 1993 Ian Lance Taylor (ian@cygnus.com)
15915
15916 * configure (makesrcdir): If ${srcdir} is relative and not ".",
15917 and ${subdir} is not ".", set makesrcdir based on ${invsubdir}.
15918
15919 Tue Feb 23 14:18:28 1993 Mike Werner (mtw@poseidon.cygnus.com)
15920
15921 * configure.in: Added "dejagnu" to hosttools list.
15922
15923 Mon Feb 22 23:28:38 1993 Per Bothner (bothner@rtl.cygnus.com)
15924
15925 * config.sub, configure.in, config.guess: Add support
15926 for Bosx, an AIX variant from Bull.
15927 Patches from F.Pierresteguy@frcl.bull.fr.
15928
15929 Sun Feb 21 11:15:22 1993 Mike Werner (mtw@poseidon.cygnus.com)
15930
15931 * devo/dejagnu: Initial creation of devo/dejagnu.
15932 Migrated dejagnu testcases and support files for testing software
15933 tools to reside as subdirectories, currently called "testsuite",
15934 within the directory of the software tool. Migrated all programs,
15935 support libraries, etc. beloging to dejagnu proper from
15936 devo/deja-gnu to devo/dejagnu. These files were moved "as is"
15937 with no modifications. The changes to these files which will
15938 allow them to configure, build, and execute properly will be made
15939 in a future update.
15940
15941 Fri Feb 19 20:19:39 1993 Brendan Kehoe (brendan@lisa.cygnus.com)
15942
15943 * Makefile.in: Change send_pr to send-pr.
15944 * configure.in: Likewise.
15945 * send_pr: Renamed directory to send-pr.
15946
15947 Fri Feb 19 19:00:13 1993 Per Bothner (bothner@cygnus.com)
15948
15949 * Makefile.in: Add some extra semi-colons (needed if SHELL=bash).
15950
15951 Fri Feb 19 00:59:33 1993 John Gilmore (gnu@cygnus.com)
15952
15953 * README: Update for gdb-4.8 release.
15954 * Makefile.in (gdb.tar.Z): Add texinfo/tex3patch. Build
15955 gdb-xxx.tar.z (gzip'd) file also.
15956
15957 Thu Feb 18 09:16:17 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15958
15959 * Makefile.in: make all-diff depend on all-libiberty
15960
15961 Tue Feb 16 16:06:31 1993 K. Richard Pixley (rich@cygnus.com)
15962
15963 * config.guess: add vax-ultrix in the spirit of mips-ultrix.
15964
15965 Tue Feb 16 05:57:15 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15966
15967 * configure.in, Makefile.in: add hello, tar, gzip, recode, indent
15968
15969 Tue Feb 16 00:58:20 1993 John Gilmore (gnu@cygnus.com)
15970
15971 * Makefile.in (DEVO_SUPPORT): Remove etc directory
15972 (ETC_SUPPORT): Only add the files GDB wants from etc/.
15973 (gdb.tar.Z): Use ETC_SUPPORT. Use byacc when building the file.
15974
15975 Thu Feb 11 20:14:28 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15976
15977 * Makefile.in: makeinfo binary is in a new location
15978
15979 Tue Feb 9 12:42:27 1993 Ian Lance Taylor (ian@cygnus.com)
15980
15981 * config.sub: Accept -ecoff as an OS.
15982
15983 * Makefile.in: Various changes to eliminate a level of make
15984 recursion and reduce the required command line length.
15985 (BASE_FLAGS_TO_PASS): New variable holding flags passed to all
15986 sub-makes.
15987 (EXTRA_HOST_FLAGS, EXTRA_TARGET_FLAGS, EXTRA_GCC_FLAGS): New
15988 variables holding settings for specific sub-makes.
15989 (FLAGS_TO_PASS, TARGET_FLAGS_TO_PASS, GCC_FLAGS_TO_PASS): Rewrote
15990 in terms of BASE_FLAGS_TO_PASS.
15991 (TARGET_LIBS): New variable listing directories which use
15992 TARGET_FLAGS_TO_PASS.
15993 (subdir_do): Eliminated.
15994 (do-*): New set of targets to replace subdir_do.
15995 (various): All targets which used subdir_do now depend on do-*.
15996 (local-clean): Renamed from do_clean.
15997 (local-distclean): New target, dependency of distclean and
15998 realclean.
15999 (install-info): Don't create directories. Depend on dir.info
16000 rather than calling make recursively.
16001 (install-dir.info): Eliminated.
16002 (install-info-dirs): Create all info directories here.
16003 (dir.info): Depend upon do-install-info.
16004
16005 * test-build.mk (HOLES): Added false.
16006
16007 Sat Feb 6 14:05:09 1993 Per Bothner (bothner@rtl.cygnus.com)
16008
16009 * config.guess: Recognize BSDI and BSDJ (Jolitz 386bsd).
16010
16011 Thu Feb 4 20:49:18 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16012
16013 * Makefile.in (info): remove dependency on all-texinfo. The
16014 problem was really in texinfo/C, not at this level.
16015
16016 Thu Feb 4 13:38:41 1993 Ian Lance Taylor (ian@cygnus.com)
16017
16018 * Makefile.in (info): Added dependency on all-texinfo (PR 2112).
16019
16020 Thu Feb 4 01:50:53 1993 John Gilmore (gnu@cygnus.com)
16021
16022 * Makefile.in (make-gdb.tar.Z): Change BISON to 'bison -y' for
16023 GDB releases.
16024
16025 Wed Feb 3 17:22:16 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
16026
16027 * configure: Include srcdir in message about target of link not
16028 being found. Don't convert `-' to `_' in `with' options being
16029 passed to subdirs.
16030
16031 Tue Feb 2 18:57:59 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16032
16033 * configure.in: add uudecode to host_tools
16034
16035 * Makefile.in: added {all,install}-uudecode targets, added them to
16036 the appropriate lists
16037
16038 Tue Feb 2 11:45:53 1993 Ian Lance Taylor (ian@cygnus.com)
16039
16040 * Makefile.in (all-gcc): Added dependency on all-gas.
16041
16042 * configure.in (mips-*-*): Build ld and binutils.
16043
16044 Mon Feb 1 12:35:41 1993 K. Richard Pixley (rich@rtl.cygnus.com)
16045
16046 * configure: check return code from mkdir, print error message and
16047 exit on failure.
16048
16049 Sat Jan 30 16:40:28 1993 John Gilmore (gnu@cygnus.com)
16050
16051 * Makefile.in (make-gdb.tar.Z): New location for texinfo.tex.
16052
16053 Thu Jan 28 15:09:59 1993 Ian Lance Taylor (ian@cygnus.com)
16054
16055 * test-build.mk (HOLES): Added tar, cpio and uudecode.
16056
16057 Wed Jan 27 16:50:32 1993 Jim Wilson (wilson@sphagnum.cygnus.com)
16058
16059 * config.sub (h8500): Recognize this as a cpu type.
16060
16061 Sat Jan 23 20:32:01 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16062
16063 * configure: source directory missing is no longer a warning
16064
16065 * configure.in: recognize irix[34]* instead of irix[34]
16066
16067 * Makefile.in: define and pass down X11_LIB
16068
16069 Sat Jan 23 13:49:40 1993 Per Bothner (bothner@cygnus.com)
16070
16071 * guess-systype: Renamed to ...
16072 * config.guess: ... by popular request.
16073 * configure.in, Makefile.in: Update accordingly.
16074
16075 Thu Jan 21 12:20:55 1993 Per Bothner (bothner@cygnus.com)
16076
16077 * guess-systype: Patches from John Eaton <jwe@che.utexas.edu>:
16078 + Add Convex, Cray/Unicos, and Encore/Multimax support.
16079 + Execute ./dummy instead of assuming . is in PATH.
16080
16081 Tue Jan 19 17:18:06 1993 Per Bothner (bothner@cygnus.com)
16082
16083 * guess-systype: New shell script. Attempts to guess the
16084 canonical host name of the executing host.
16085 Only a few hosts are supported so far.
16086 * configure: Call guess-systype if no host is specified.
16087
16088 Tue Jan 19 08:26:07 1993 Ian Lance Taylor (ian@cygnus.com)
16089
16090 * Makefile.in (gcc-no-fixedincludes): Made to work with current
16091 gcc Makefile.
16092
16093
16094 Fri Jan 15 10:27:02 1993 Ian Lance Taylor (ian@cygnus.com)
16095
16096 * Makefile.in (GCC_FLAGS_TO_PASS): New variable.
16097 (all-gcc, install-gcc, subdir_do): Use it.
16098
16099 Wed Jan 13 17:06:45 1993 Jim Wilson (wilson@sphagnum.cygnus.com)
16100
16101 * Makefile.in: Rename uninstalled gcc driver from gcc to xgcc.
16102
16103 Wed Jan 6 20:29:16 1993 Mike Werner (mtw@rtl.cygnus.com)
16104
16105 * Makefile.in: Removed explicit setting of SUBDIRS. SUBDIRS is now
16106 set exclusively by configure, using configure.in .
16107
16108 Wed Jan 6 13:44:11 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16109
16110 * test-build.mk: set $PATH for all builds
16111
16112 * Makefile.in: pass TARGET_FLAGS_TO_PASS for xiberty and libm
16113
16114 Wed Jan 6 11:02:10 1993 Fred Fish (fnf@cygnus.com)
16115
16116 * Makefile.in (GCC_FOR_TARGET): Supply a default that matches
16117 the one used in gcc/Makefile.in, so that a null expansion doesn't
16118 override the one needed to build gcc with a native cc.
16119
16120
16121 Tue Jan 5 07:55:12 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
16122
16123 * configure: Accept -with arguments.
16124
16125 Sun Jan 3 15:15:09 1993 Steve Chamberlain (sac@thepub.cygnus.com)
16126
16127 * Makefile.in: added h8300sim
16128
16129 Tue Dec 29 15:06:00 1992 Ian Lance Taylor (ian@cygnus.com)
16130
16131 * build-all.mk: If canonhost is i386-unknown-sco3.2v4, change it
16132 to i386-sco3.2v4. Set TARGETS and CFLAGS for i386-sco3.2v4.
16133 (all-cygnus, native, build-cygnus): Make
16134 $(canonhost)-stamp-3stage-done, not $(host)....
16135 * test-build.mk (stamp-3stage-compared): Use tail +10c for
16136 i386-sco3.2v4. Added else true to if command.
16137
16138 Mon Dec 28 12:08:56 1992 Ken Raeburn (raeburn@cygnus.com)
16139
16140 * config.sub: (from FSF) Sequent uses a BSD-like OS.
16141
16142 Mon Dec 28 08:32:06 1992 Minh Tran-Le (mtranle@paris.intellicorp.com)
16143
16144 * configure.in (i[34]86-*-isc*): added; uses mh-sysv.
16145
16146 Thu Dec 24 17:26:24 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16147
16148 * configure.in: don't remove binutils from Solaris builds
16149
16150 Thu Dec 24 14:08:38 1992 david d`zoo' zuhn (zoo@cygnus.com)
16151
16152 * Makefile.in: get rid of earlier definitions for *clean,
16153 also handle the recursive info rule better
16154
16155 Thu Dec 24 12:40:21 1992 Per Bothner (bothner@rtl.cygnus.com)
16156
16157 * Makefile.in (mostlyclean, distclean, realclean): Fix to
16158 do more-or-less the right thing.
16159
16160 Wed Dec 16 10:25:31 1992 Ian Lance Taylor (ian@cygnus.com)
16161
16162 * Makefile.in: Add lines defining CC and CXX, and use CXX rather
16163 than gcc in definitions of CXX_FOR_BUILD and CXX_FOR_TARGET.
16164
16165 Tue Dec 15 00:34:32 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16166
16167 * Makefile.in: change all $(host_cpu)-$(host_vendor)-$(host_os) to
16168 $(host_canonical).
16169
16170 * configure.in: split the configdirs list into 4 categories (native
16171 v. cross, library v. tool) and handle the cross-only and native-
16172 only in more reasonable (and correct!) way.
16173
16174 Mon Dec 14 17:04:22 1992 Stu Grossman (grossman at cygnus.com)
16175
16176 * configure.in (hppa*-*-*): Don't remove bfd and gdb from
16177 configdirs anymore.
16178
16179 Sun Dec 13 00:37:26 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16180
16181 * Makefile.in: extensive cleanup:: removed all of the explicit
16182 clean-* targets, collapsed many wrappers around subdir_do into
16183 one, added additional targets to satisfy standards.texi, deleted
16184 some old targets, some changes for consistency
16185
16186 Fri Dec 11 20:18:02 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16187
16188 * configure.in: handle some programs as cross-only, and others as
16189 native only
16190
16191 * test-build.mk: handle partial holes in a more generic manner
16192
16193 * Makefile.in: m4 depends on libiberty
16194
16195 Thu Dec 3 21:52:11 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16196
16197 * configure.in: add m4, textutils, fileutils, sed, shellutils,
16198 time, wdiff, and find to configdirs
16199
16200 * Makefile.in: all, clean, and install rules for the new programs
16201 added to configure.in
16202
16203 Mon Nov 30 14:54:34 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16204
16205 * configure.in: use mh-sun for all *-sun-* hosts
16206
16207 Fri Nov 27 18:35:54 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16208
16209 * Makefile.in: define flags for X11 include files and library file
16210 locations, pass them down to the programs that need this info
16211
16212 * build-all.mk: added a 'native' target, to 3stage the native toolchain
16213
16214 Sun Nov 22 18:59:13 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16215
16216 * configure.in: start building libg++ for HP-UX targets
16217
16218 Wed Nov 18 19:33:11 1992 John Gilmore (gnu@cygnus.com)
16219
16220 * README: Update references to files moved into etc/.
16221
16222 Sun Nov 15 09:36:08 1992 Fred Fish (fnf@cygnus.com)
16223
16224 * config.sub (i386sol2, i486sol2): i[34]86-unknown-solaris2.
16225 * configure.in (i[34]86-*-solaris2*): Use config/mh-sysv4.
16226
16227 Thu Nov 12 08:50:42 1992 Ian Lance Taylor (ian@cygnus.com)
16228
16229 * configure: accept dash as well as underscore in long option
16230 names for FSF compatibility.
16231
16232 Wed Nov 11 08:04:37 1992 Ian Lance Taylor (ian@cygnus.com)
16233
16234 * config.sub: added -sco3.2v4 support from FSF.
16235
16236 Sun Nov 8 21:14:30 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16237
16238 * configure.in: expand the section that adds or removes
16239 directories from the list of programs to build, to handle native
16240 vs. cross in addition to host v. native
16241
16242 Sat Nov 7 18:52:27 1992 Per Bothner (bothner@rtl.cygnus.com)
16243
16244 * Makefile.in: Replace C++ in macro names with CXX.
16245 This is less likely to break ...
16246
16247 Sat Nov 7 15:16:58 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16248
16249 * test-build.mk: add -w to GNU_MAKE
16250
16251 Fri Nov 6 23:10:37 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16252
16253 * config.sub: remove 'sparc'-->'sparc-sun' default transformation,
16254 add 'sparc' to list of recognized cpus. This needed to make
16255 'sparc-aout' expand to 'sparc-unknown-aout' instead of 'sparc-sun-aout'.
16256 Delete some redundant ose68 variants. Recognize -wrs as an os,
16257 then changes that into $CPU-wrs-vxworks.
16258
16259 * configure.in: remove most references to gdbtest, regularize
16260 target based program removal
16261
16262 * test-build.mk: import from p3 tree (many fixes and changes)
16263
16264 Fri Nov 6 20:59:00 1992 david d `zoo' zuhn (zoo@cygnus.com)
16265
16266 * Makefile.in: added rules to handle tcl, tk, and expect
16267
16268 * configure.in: handle those directories if they exist
16269
16270 Thu Nov 5 14:35:41 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16271
16272 * config.sub: removed bogus hppabsd and hppahpux names, since
16273 "hppa" is not a valid cpu (hppa1.1 or hppa1.0 are, though)
16274
16275 Thu Oct 29 00:12:41 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16276
16277 * Makefile.in: all-gcc now depends on all-binutils. all-libg++
16278 depends upon all-xiberty
16279
16280 * Makefile.in: changes from p3, including:
16281
16282 Thu Oct 8 15:00:17 1992 Ian Lance Taylor (ian@cygnus.com)
16283
16284 * Makefile.in (XTRAFLAGS): include newlib directories if
16285 newlib/Makefile exists, rather than if host != target.
16286
16287 Fri Sep 25 13:41:52 1992 Ian Lance Taylor (ian@cygnus.com)
16288
16289 * Makefile.in: added -nostdinc to XTRAFLAGS if we are using gcc
16290 from the same source tree and not building a cross-compiler. This
16291 matters for the libg++ configuration if reconfiguring a tree that
16292 has already been installed.
16293
16294 Thu Sep 10 10:35:51 1992 Ian Lance Taylor (ian@cygnus.com)
16295
16296 * Makefile.in: added -I for newlib/targ-include to XTRAFLAGS, to
16297 pick up the machine and system specific header files.
16298
16299 * Makefile.in: added AS_FOR_TARGET, passed down in
16300 TARGET_FLAGS_TO_PASS. Added CC_FOR_BUILD, which is intended to be
16301 the C compiler to use to create programs which are run in the
16302 build environment, set it to default to $(CC), and passed it down
16303 in FLAGS_TO_PASS and TARGET_FLAGS_TO_PASS.
16304
16305 Mon Sep 7 22:34:42 1992 Ian Lance Taylor (ian@cirdan.cygnus.com)
16306
16307 * Makefile.in: add $(host) = $(target) tests back to *_FOR_TARGET.
16308 We need them for unusual native builds, like systems without
16309 ranlib.
16310
16311 * configure: also define $(host_canonical) and
16312 $(target_canonical), which are the full, canonical names for the
16313 given host and target
16314
16315 Sun Nov 1 16:38:17 1992 Per Bothner (bothner@cygnus.com)
16316
16317 * Makefile.in: Added separate definitions for C++.
16318
16319 Fri Oct 30 11:37:52 1992 Fred Fish (fnf@cygnus.com)
16320
16321 * configure.in (configdirs): Add deja-gnu.
16322
16323 Fri Oct 23 00:39:18 1992 John Gilmore (gnu@cygnus.com)
16324
16325 * README: Update for configure.texi and gdb-4.7 release.
16326
16327 Wed Oct 21 21:54:27 1992 John Gilmore (gnu@cygnus.com)
16328
16329 * Makefile.in: Move "all" target to top of file.
16330 Previously, first target was ".PHONY" which caused BSD4.4 make
16331 to build .PHONY when make was run without arguments.
16332
16333 Mon Oct 19 01:17:54 1992 John Gilmore (gnu@cygnus.com)
16334
16335 * Makefile.in: Add COPYING.LIB to GDB releases, now that there's
16336 Library-copylefted code in libiberty.
16337
16338 Tue Oct 13 01:22:32 1992 John Gilmore (gnu@cygnus.com)
16339
16340 * config.sub: Replace m68kmote with plain old m68k.
16341
16342 Fri Oct 9 03:14:24 1992 John Gilmore (gnu@cygnus.com)
16343
16344 * Makefile.in: Remove space from blank line, avoid Make complaints.
16345
16346 Thu Oct 8 18:41:45 1992 Ken Raeburn (raeburn@cygnus.com)
16347
16348 * config.sub: Complain if no argument is given. Added support for
16349 386bsd as OS and target alias.
16350
16351 Thu Oct 8 15:07:22 1992 Ian Lance Taylor (ian@cygnus.com)
16352
16353 * Makefile.in (XTRAFLAGS): include newlib directories if
16354 newlib/Makefile exists, rather than if host != target.
16355
16356 Mon Oct 5 03:00:09 1992 Mark Eichin (eichin at tweedledumber.cygnus.com)
16357
16358 * config.sub: recognize sparclite-wrs-vxworks.
16359
16360 * Makefile.in (install-xiberty): added *-xiberty make rules (from
16361 p3.) Added clean-xiberty to clean.
16362
16363 Thu Oct 1 17:59:19 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16364
16365 * configure.in: use *-*-* instead of nested cases for host and target
16366
16367 Tue Sep 29 14:11:18 1992 Ian Lance Taylor (ian@cygnus.com)
16368
16369 * Makefile.in: added -nostdinc to XTRAFLAGS if we are using gcc
16370 from the same source tree and not building a cross-compiler. This
16371 matters for the libg++ configuration if reconfiguring a tree that
16372 has already been installed.
16373
16374 Sep 20 08:53:10 1992 Fred Fish (fnf@cygnus.com)
16375
16376 * config.sub (i486v/i486v4): Merge in from FSF version.
16377
16378 Fri Sep 18 00:32:00 1992 Mark Eichin (eichin@cygnus.com)
16379
16380 * configure: only set PWD if it is already set.
16381
16382 Thu Sep 17 23:05:53 1992 Mark Eichin (eichin@cygnus.com)
16383
16384 * configure: just set PWD=`pwd` at the top, since Ultrix sh
16385 doesn't have unset and all success paths (and most error paths)
16386 out set it anyway. (Note: should change all uses of ${PWD=`pwd`}
16387 to just ${PWD} to avoid confusion.)
16388
16389 Tue Sep 15 16:00:54 1992 Ian Lance Taylor (ian@cygnus.com)
16390
16391 * configure: always set $(tooldir) to $(libdir)/$(target_alias),
16392 even for a native compilation.
16393
16394 Tue Sep 15 02:22:56 1992 John Gilmore (gnu@cygnus.com)
16395
16396 Changes to make the gdb.tar.Z rule work better.
16397
16398 * Makefile.in (GDB_SUPPORT_DIRS): Add opcodes.
16399 (DEVO_SUPPORT): Add configure.texi.
16400 (bfd-ilrt.tar.Z): Remove ancient rule.
16401
16402 Thu Sep 10 10:43:19 1992 Ian Lance Taylor (ian@cygnus.com)
16403
16404 * Makefile.in: added -I for newlib/targ-include to XTRAFLAGS, to
16405 pick up the machine and system specific header files.
16406
16407 * configure.in, config.sub: added new target m68010-adobe-scout,
16408 with alias of adobe68k. Changed configure.in to check for
16409 -scout before -sco* to avoid a false match.
16410
16411 * Makefile.in: added AS_FOR_TARGET, passed down in
16412 TARGET_FLAGS_TO_PASS. Added CC_FOR_BUILD, which is intended to be
16413 the C compiler to use to create programs which are run in the
16414 build environment, set it to default to $(CC), and passed it down
16415 in FLAGS_TO_PASS and TARGET_FLAGS_TO_PASS.
16416
16417 Wed Sep 9 12:21:42 1992 Ian Lance Taylor (ian@cygnus.com)
16418
16419 * Makefile.in: added TARGET_FLAGS_TO_PASS, CC_FOR_TARGET,
16420 AR_FOR_TARGET, RANLIB_FOR_TARGET, NM_FOR_TARGET. Pass
16421 TARGET_FLAGS_TO_PASS, which defines CC, AR, RANLIB and NM as the
16422 FOR_TARGET variants, to newlib and libg++.
16423
16424 Tue Sep 8 17:28:30 1992 Ken Raeburn (raeburn@cambridge.cygnus.com)
16425
16426 * Makefile.in (all-gas, all-gdb): Require all-opcodes to be built
16427 first.
16428
16429 Wed Sep 2 02:50:05 1992 John Gilmore (gnu@cygnus.com)
16430
16431 * config.sub: Accept `elf' as an environment.
16432
16433 Tue Sep 1 15:48:30 1992 Steve Chamberlain (sac@thepub.cygnus.com)
16434
16435 * Makefile.in (all-opcodes): cd into the right directory
16436
16437 Sun Aug 30 21:12:11 1992 Ian Lance Taylor (ian@cygnus.com)
16438
16439 * configure: added -program_transform_name option, used as
16440 argument to sed when installing programs.
16441 configure.texi: added documentation for -program_prefix,
16442 -program_suffix and -program_transform_name.
16443
16444 Thu Aug 27 21:59:44 1992 John Gilmore (gnu@cygnus.com)
16445
16446 * config.sub: Accept i486 where i386 ok.
16447
16448 Thu Aug 27 13:04:42 1992 Brendan Kehoe (brendan@rtl.cygnus.com)
16449
16450 * config.sub: accept we32k
16451
16452 Mon Aug 24 14:05:14 1992 Ian Lance Taylor (ian@cygnus.com)
16453
16454 * config.sub, configure.in: accept OSE68000 and OSE68k.
16455
16456 * Makefile.in: don't create all directories for ``make install'';
16457 let the subdirectories create the ones they need.
16458
16459 Tue Aug 11 23:13:17 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16460
16461 * COPYING: new file, GPL v2
16462
16463 Tue Aug 4 01:12:43 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16464
16465 * Makefile.in: use the new gen-info-dir, which needs a template
16466 argument (which also lives in texinfo)
16467
16468 * configure.texi, standards.texi: fix INFO-DIR-ENTRY
16469
16470 Mon Aug 3 00:34:17 1992 Fred Fish (fnf@cygnus.com)
16471
16472 * config.sub (ncr3000): Change i386 to i486.
16473
16474 Thu Jul 23 00:12:17 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16475
16476 * Makefile.in: add install-rcs, install-grep to
16477 install-no-fixedincludes, removed install-bison and install-libgcc
16478
16479 Tue Jul 21 01:01:50 1992 david d `zoo' zuhn (zoo@cygnus.com)
16480
16481 * configure.in: grab the HPUX makefile fragment if on HPUX
16482
16483 Mon Jul 20 11:02:09 1992 D. V. Henkel-Wallace (gumby@cygnus.com)
16484
16485 * Makefile.in: eradicate bison spoor (ditto libgcc).
16486 configure.in: recognise m68{k,000}-ericsson-OSE.
16487 es1800 is alias for m68k-ericsson-OSE
16488
16489 Sun Jul 19 17:49:02 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16490
16491 * configure.in: rearrange the parts that remove programs from
16492 configdirs, based now on HOST==TARGET or by canonical triple.
16493
16494 Fri Jul 17 22:52:49 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16495
16496 * test-build.mk: recurse explicitly with -f test-build.mk when
16497 appropriate. predicate stage3 and comparison on the existence
16498 of gcc. That is, if gcc isn't around, we aren't three-staging.
16499 On very clean, also remove ...stamp-co. Build in-place before
16500 doing other builds.
16501
16502 Thu Jul 16 18:33:09 1992 Steve Chamberlain (sac@thepub.cygnus.com)
16503
16504 * Makefile.in, configure.in: add tgas
16505
16506 Thu Jul 16 16:05:28 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16507
16508 * Makefile.in: a number of changes merged in from progressive.
16509
16510 * configure.in: add libm.
16511
16512 * .cvsignore: ignore some stuff that comes from test-build.mk.
16513
16514 Tue Jul 7 00:24:52 1992 Fred Fish (fnf@cygnus.com)
16515
16516 * config.sub: Add es1800 (m68k-ericsson-es1800).
16517
16518 Tue Jun 30 20:24:41 1992 D. V. Henkel-Wallace (gumby@cygnus.com)
16519
16520 * configure: Add program_suffix (parallel to program_prefix)
16521 * Makefile.in: adjust directory-creating script for losing decstation
16522
16523 Mon Jun 22 23:43:48 1992 Per Bothner (bothner@cygnus.com)
16524
16525 * configure: Minor $subdir-related fixes.
16526
16527 Mon Jun 22 18:30:26 1992 Steve Chamberlain (sac@thepub.cygnus.com)
16528
16529 * configure: fix various problems with propogating
16530 makefile_target_frag in subdirs.
16531 * configure.in: config libgcc if its there
16532
16533 Fri Jun 19 15:19:40 1992 Stu Grossman (grossman at cygnus.com)
16534
16535 * config.sub: HPPA merge.
16536
16537 Sun Jun 14 10:29:19 1992 John Gilmore (gnu at cygnus.com)
16538
16539 * Makefile.in: Replace all-bison with all-byacc in all
16540 dependency lines for other tools (which now use byacc).
16541
16542 Fri Jun 12 22:21:57 1992 John Gilmore (gnu at cygnus.com)
16543
16544 * config.sub: Add sun4sol2 => sparc-sun-solaris2.
16545
16546 Thu Jun 4 12:07:32 1992 Mark Eichin (eichin@cygnus.com)
16547
16548 * Makefile.in: make gprof rules similar to byacc rules (instead of
16549 vestigal $(unsubdir) that didn't work...)
16550
16551 Thu Jun 4 00:37:05 1992 Per Bothner (bothner@rtl.cygnus.com)
16552
16553 * config.sub: Add support for Linux.
16554 * Makefile.in: Use $(FLAGS_TO_PASS) more consistently
16555 (at least for libg++).
16556
16557 Tue Jun 02 20:03:00 1992 david d `zoo' zuhn (zoo@cygnus.com)
16558
16559 * configure.texi: fix doc for the -nfp option to configure
16560
16561 Tue Jun 2 17:20:52 1992 Michael Tiemann (tiemann@cygnus.com)
16562
16563 * Makefile.in (all-binutils): ar needs flex, so depend on all-flex.
16564
16565 Sun May 31 15:04:08 1992 Mark Eichin (eichin at cygnus.com)
16566
16567 * config.sub: changed [^-]+ to [^-][^-]* so that it works under
16568 Sun sed. (BSD 4.3 sed doesn't handle [^-]+ either.)
16569 * configure.in: added solaris* host_makefile_frag hook.
16570
16571 Sun May 31 01:10:34 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16572
16573 * config.sub: changed recognition of m68000 so that various
16574 m68k types can be specified via m680[01234]0
16575
16576 Sat May 30 21:01:06 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16577
16578 * config.sub (basic_machine): fix sed so that '-foo' isn't
16579 completely substituted out while .+'-foo' loses the '-foo'
16580
16581 Wed May 27 23:18:52 1992 Michael Tiemann (tiemann@rtl.cygnus.com)
16582
16583 * config.sub ($os): Add -aout.
16584
16585 Fri May 22 14:00:02 1992 Per Bothner (bothner@cygnus.com)
16586
16587 * configure: If host_makefile_frag is absolute, don't
16588 prefix ${invsubdir} (relevant to libg++ auto-configure).
16589
16590 Thu May 21 18:00:09 1992 Michael Tiemann (tiemann@rtl.cygnus.com)
16591
16592 * Makefile.in (tooldir): Define it.
16593 (all-ld): Depend on all-flex.
16594
16595 Sun May 10 21:45:59 1992 Per Bothner (bothner@rtl.cygnus.com)
16596
16597 * Makefile.in (check): Fix libg++ special case.
16598
16599 Fri May 8 08:31:41 1992 K. Richard Pixley (rich@cygnus.com)
16600
16601 * configure: do not bury `pwd` into config.status, thus do fewer
16602 pwd's.
16603
16604 * configure: print the "Building in" message only when building in
16605 other than "." AND verbose.
16606
16607 * configure: remove -s, rework -v to better accomodate guested
16608 configures.
16609
16610 * standards.texi: updated to 3 may, fixed librid <-> libdir typo.
16611
16612 Fri May 1 18:00:50 1992 K. Richard Pixley (rich@cygnus.com)
16613
16614 * Makefile.in: macroize flags passed on recursion. remove
16615 fileutils.
16616
16617 Thu Apr 30 08:56:20 1992 K. Richard Pixley (rich@cygnus.com)
16618
16619 * configure: get makesrcdir right for subdirs deeper than 1.
16620
16621 * Makefile.in: pass INSTALL, INSTALL_DATA, INSTALL_PROGRAM on
16622 install.
16623
16624 Fri Apr 24 15:51:51 1992 K. Richard Pixley (rich@cygnus.com)
16625
16626 * Makefile.in: don't print subdir_do or recursion lines.
16627
16628 Fri Apr 24 15:22:04 1992 K. Richard Pixley (rich@cygnus.com)
16629
16630 * standards.texi: added menu item.
16631
16632 * Makefile.in: build and install standards.info.
16633
16634 * standards.texi: new file.
16635
16636 Wed Apr 22 18:06:55 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16637
16638 * configure: test for and move config.status pieces from
16639 ${subdir}/.
16640
16641 Wed Apr 22 14:38:34 1992 Fred Fish (fnf@cygnus.com)
16642
16643 * configure: Test for existance of files before trying to mv
16644 them, to avoid numerous non-existance messages.
16645
16646 Tue Apr 21 12:31:33 1992 K. Richard Pixley (rich@cygnus.com)
16647
16648 * configure: correct final line of config.status.
16649
16650 * configure: patch from eggert. Avoids a protection problem if
16651 the original Makefile.in is read only.
16652
16653 * configure: use move-if-change from gcc to create config.status.
16654 Some makefiles depend on config.status to tell if a directory
16655 has been reconfigured for a different host. This change
16656 prevents those directories from remaking everything in the case
16657 where the reconfig was only intended to rebuild a Makefile.
16658
16659 * configure: test for config.sub with "config.sub sun4" rather
16660 than "config.sub ${host_alias}". Otherwise we can't tell a bad
16661 host alias from a missing config.sub.
16662
16663 Mon Apr 20 18:16:36 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16664
16665 * Makefile.in: explicitly pass CFLAGS on recursion. no longer pass
16666 MINUS_G (this can be done with CFLAGS). Default CFLAGS to -g.
16667
16668 Fri Apr 17 18:27:51 1992 Per Bothner (bothner@cygnus.com)
16669
16670 * configure: mkdir ${subdir} as needed.
16671
16672 Wed Apr 15 17:37:22 1992 K. Richard Pixley (rich@cygnus.com)
16673
16674 * Makefile.in,configure.in: added autoconf.
16675
16676 Wed Apr 15 17:27:34 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16677
16678 * Makefile.in: no longer pass against on recursion.
16679
16680 * Makefile.in: added .NOEXPORT: so that stray makefile_frag
16681 definitions are not inherited.
16682
16683 * configure: correct makesrcdir when subdir is .
16684
16685 Tue Apr 14 11:56:09 1992 Per Bothner (bothner@cygnus.com)
16686
16687 * configure: Add support for 'subdirs' variable, which is
16688 like 'configdirs', except that configure doesn't re-invoke
16689 itself for subdirs, it just creates a Makefile for each subdir.
16690 * configure.texi: Document subdirs.
16691
16692 Mon Apr 13 18:50:16 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16693
16694 * configure.in: added flex to configdirs
16695
16696 Mon Apr 13 18:43:55 1992 K. Richard Pixley (rich@cygnus.com)
16697
16698 * Makefile.in: remove clean-stamps from clean.
16699
16700 Sat Apr 11 03:52:03 1992 John Gilmore (gnu at cygnus.com)
16701
16702 * configure.in: Add gdbtest to configdirs.
16703
16704 Fri Apr 10 23:11:49 1992 Fred Fish (fnf@cygnus.com)
16705
16706 * Makefile.in (MINUS_G): Add macro, default to -g, pass on
16707 to recursive makes.
16708 * configure.in: Recognize new ncr3000 config.
16709
16710 Wed Apr 8 23:08:12 1992 K. Richard Pixley (rich@cygnus.com)
16711
16712 * Makefile.in, configure.in: removed references to gdbm.
16713
16714 Tue Apr 7 16:48:20 1992 Per Bothner (bothner@cygnus.com)
16715
16716 * config.sub: Don't canonicalize os value
16717 newsos* to bsd (readline needs to check for newsos).
16718 (This fix was earlier made Jan 31, but got re-broken.)
16719
16720 Mon Apr 6 14:34:08 1992 Stu Grossman (grossman at cygnus.com)
16721
16722 * configure.in: sco is an os, not a vendor!
16723
16724 * configure: Quote $( better. Keep various shells happy.
16725
16726 Tue Mar 31 16:32:57 1992 K. Richard Pixley (rich@cygnus.com)
16727
16728 * Makefile.in: eliminate stamp-files.
16729
16730 Mon Mar 30 22:20:23 1992 K. Richard Pixley (rich@cygnus.com)
16731
16732 * Makefile.in: add send_pr. remove "force" from .stmp-gprof rule.
16733 Supress echoing of all the "if [ -d ... $(MAKE)" lines.
16734
16735 Wed Mar 25 15:20:04 1992 Stu Grossman (grossman@cygnus.com)
16736
16737 * config.sub: fix iris/iris3.
16738
16739 Wed Mar 25 10:34:19 1992 K. Richard Pixley (rich@cygnus.com)
16740
16741 * configure: re-add -rm.
16742
16743 Tue Mar 24 23:50:16 1992 K. Richard Pixley (rich@cygnus.com)
16744
16745 * Maskefile.in: add .stmp-rcs to all.
16746
16747 * configure.in: remove gas from rs6000 build, use aix host fragment.
16748
16749 Mon Mar 23 19:43:35 1992 K. Richard Pixley (rich@cygnus.com)
16750
16751 * configure: pass down site_option during recursion.
16752
16753 Thu Mar 19 16:49:36 1992 Stu Grossman (grossman at cygnus.com)
16754
16755 * Makefile.in (all.cross): Add .stmp-bfd .stmp-readline.
16756
16757 Wed Mar 18 15:29:33 1992 Mike Stump (mrs@cygnus.com)
16758
16759 * configure: Change exec_prefix so that it really defaults to prefix.
16760
16761 Sat Mar 14 17:20:38 1992 Fred Fish (fnf@cygnus.com)
16762
16763 * Makefile.in, configure.in: Add support for mmalloc library.
16764
16765 Fri Mar 13 18:44:18 1992 K. Richard Pixley (rich@cygnus.com)
16766
16767 * Makefile.in: add stmp dependencies for a few more things.
16768
16769 Thu Mar 12 04:56:24 1992 K. Richard Pixley (rich@cygnus.com)
16770
16771 * configure: adjusted error message on objdir/srcdir configure
16772 collision, per john's suggestion.
16773
16774 * Makefile.in: add libiberty stmp to all and all.cross.
16775
16776 Wed Mar 11 02:07:52 1992 K. Richard Pixley (rich@cygnus.com)
16777
16778 * Makefile.in: remove force dependencies, add grep to all.
16779
16780 Tue Mar 10 21:49:18 1992 K. Richard Pixley (rich@mars.cygnus.com)
16781
16782 * Makefile.in: drop flex. make stamp files work.
16783
16784 * configure: added test for conflicting configuration in srcdir,
16785 remove trailing slashes from srcdir. Otherwise emacs gdb mode
16786 gets cranky. use relative paths for configure and srcdir
16787 whenever possible. Send some error messages to stderr that were
16788 going to stdout.
16789
16790 Tue Mar 10 18:01:55 1992 Per Bothner (bothner@cygnus.com)
16791
16792 * Makefile.in: Fix libg++ rule to check for gcc directory
16793 before using gcc/gcc. Also pass XTRAFLAGS.
16794
16795 Thu Mar 5 21:45:07 1992 K. Richard Pixley (rich@sendai)
16796
16797 * Makefile.in: added stmp-files so that directories aren't polled
16798 when they are already built.
16799
16800 * configure.texi: fixed a node pointer problem.
16801
16802 Thu Mar 5 12:05:58 1992 Stu Grossman (grossman at cygnus.com)
16803
16804 * config.sub configure.in gdb/configure.in
16805 gdb/mips-tdep.c gdb/mipsread.c gdb/procfs.c gdb/signame.h
16806 gdb/tm-irix3.h gdb/tm-mips.h gdb/xm-irix4.h gdb/config/mt-irix3
16807 gdb/config/mh-irix4 texinfo/configure.in: Port to SGI Irix-4.x.
16808
16809 Wed Mar 4 02:57:46 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16810
16811 * configure: -recurring becomes -silent. corrected help message
16812 for -site= option.
16813
16814 * Makefile.in: mkdir $(exec_prefix) and $(tooldir).
16815
16816 Tue Mar 3 14:51:21 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16817
16818 * configure: when building Makefile for crosses, replace
16819 tooldir and program_prefix. default srcdir from location of
16820 config.sub. remove "for host in hosts" and "for target in
16821 targets" loops.
16822
16823 Wed Feb 26 19:48:25 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16824
16825 * Makefile.in: Do not pass bindir or mandir to cvs.
16826
16827 Wed Feb 26 18:04:40 1992 K. Richard Pixley (rich@cygnus.com)
16828
16829 * Makefile.in, configure.in: removed traces of namesubdir,
16830 -subdirs, $(subdir), $(unsubdir), some rcs triggers. Forced
16831 copyrights to '92, changed some from Cygnus to FSF.
16832
16833 * configure.texi: remove most references to multiple hosts,
16834 multiple targets, subdirs, etc.
16835
16836 * configure.man: removed rcsid. reference config.sub not
16837 config.subr.
16838
16839 * Makefile.in: mkdir $(infodir) on install-info.
16840
16841 Wed Feb 19 15:41:13 1992 John Gilmore (gnu at cygnus.com)
16842
16843 * configure.texi: Explain better about .gdbinit and about
16844 the environment that configure.in sections run in.
16845
16846 Fri Feb 7 07:55:00 1992 John Gilmore (gnu at cygnus.com)
16847
16848 * configure.in: Ultrix is only a decstation if it's a MIPS.
16849
16850 Fri Jan 31 21:54:51 1992 John Gilmore (gnu at cygnus.com)
16851
16852 * README: DOC.configure => cfg-paper.texi.
16853
16854 Fri Jan 31 21:48:18 1992 Stu Grossman (grossman at cygnus.com)
16855
16856 * config.sub (near case $os): Don't convert newsos* to bsd!
16857
16858 Fri Jan 31 02:27:32 1992 John Gilmore (gnu at cygnus.com)
16859
16860 * Makefile.in: Reinstall change from gdb-4.3 that reduces
16861 the number of copies of COPYING that go into the GDB tar file.
16862
16863 Thu Jan 30 16:17:30 1992 Stu Grossman (grossman at cygnus.com)
16864
16865 * bfd/configure.in, gdb/config/mh-i386sco,
16866 gdb/config/mt-i386v32, gdb/configure.in, readline/configure.in:
16867 Fix SCO configuration stuff.
16868
16869 Tue Jan 28 23:51:07 1992 Per Bothner (bothner at cygnus.com)
16870
16871 * Makefile.in: For libg++, make sure the -I pointing
16872 to the gcc directory goes *after* all the libg++-local -I flags.
16873 Also, move just-gcc dependency from just-libg++ to all-libg++.
16874
16875 Tue Jan 28 12:56:24 1992 Stu Grossman (grossman at cygnus.com)
16876
16877 * configure: Change -x to -f to keep Ultrix /bin/test happy.
16878
16879 Sat Jan 18 17:45:11 1992 Stu Grossman (grossman at cygnus.com)
16880
16881 * Makefile.in (make-gdb.tar.Z): Remove texinfo targets.
16882
16883 Sat Jan 18 17:03:21 1992 Fred Fish (fnf at cygnus.com)
16884
16885 * config.sub: Add stratus configuration frags. Also
16886 submitted to FSF.
16887
16888 Sat Jan 18 15:35:29 1992 Stu Grossman (grossman at cygnus.com)
16889
16890 * Makefile.in (DEV_SUPPORT): add configure.man.
16891
16892 * config.sub(Decode manufacturer-specific): add -none*.
16893
16894 Fri Jan 17 17:58:05 1992 Stu Grossman (grossman at cygnus.com)
16895
16896 * Makefile.in: remove form feeds to make Sun's make happy.
16897 (DEVO_SUPPORT): DOC.configure => cfg-paper.texi.
16898
16899 Sat Jan 4 16:11:44 1992 John Gilmore (gnu at cygnus.com)
16900
16901 * Makefile.in (AR_FLAGS): Make quieter.
16902
16903 Thu Jan 2 22:57:12 1992 John Gilmore (gnu at cygnus.com)
16904
16905 * configure.in: Add libg++.
16906 * configure: When verbose, don't output the command line at each
16907 level; it will be unremarkably the same as the previous version,
16908 which will be the same as what the user typed.
16909
16910 Fri Dec 27 16:26:47 1991 K. Richard Pixley (rich at cygnus.com)
16911
16912 * configure.in, Makefile.in: fix clean-info, add flex. add
16913 fileutils.
16914
16915 * configure: be less sensitive to spaces in Makefile.in. Do not
16916 look for sources in "..". Doing so breaks subdirectories that
16917 might have their own configure. If a subdir has it's own
16918 configure script, use it.
16919
16920 Thu Dec 26 16:30:26 1991 K. Richard Pixley (rich at cygnus.com)
16921
16922 * cfg-paper.texi: some changes suggested by rms.
16923
16924 Thu Dec 26 10:13:36 1991 Fred Fish (fnf at cygnus.com)
16925
16926 * config.sub: Merge in some small additions from the FSF version,
16927 taken from the gcc distribution, to bring the Cygnus and FSF
16928 versions into closer sync.
16929
16930 Fri Dec 20 11:34:18 1991 Fred Fish (fnf at cygnus.com)
16931
16932 * configure.in: Changed svr4 references to sysv4.
16933
16934 Thu Dec 19 15:54:29 1991 K. Richard Pixley (rich at cygnus.com)
16935
16936 * configure: added -V for version number option.
16937
16938 Wed Dec 18 15:39:34 1991 K. Richard Pixley (rich at cygnus.com)
16939
16940 * DOC.configure, cfg-paper.texi: revised, updated, and texinfo'd.
16941 renamed from DOC.configure to cfg-paper.texi.
16942
16943 Mon Dec 16 23:05:19 1991 K. Richard Pixley (rich at rtl.cygnus.com)
16944
16945 * configure, config.subr, config.sub: config.subr is now
16946 config.sub again.
16947
16948 Fri Dec 13 01:17:06 1991 K. Richard Pixley (rich at cygnus.com)
16949
16950 * configure.texi: new file, in progress.
16951
16952 * Makefile.in: build info file and install the man page for
16953 configure.
16954
16955 * configure.man: new file, first cut.
16956
16957 * configure: find config.subr again now that configuration "none"
16958 has gone. removed all traces of the -ansi option. removed all
16959 traces of the -languages option.
16960
16961 * config.subr: resync from rms.
16962
16963 1991-12-11 K. Richard Pixley (rich at rtl.cygnus.com)
16964
16965 * configure, config.sub, config.subr: merge config.sub into
16966 config.subr, call the result config.subr, remove config.sub, use
16967 config.subr.
16968
16969 * Makefile.in: revised install for dir.info.
16970
16971 1991-12-10 K. Richard Pixley (rich at rtl.cygnus.com)
16972
16973 * configure.in: add decstation host makefile frag.
16974
16975 * Makefile.in: BISON now bison -y again. also install-gcc on
16976 install. clean-gdbm on clean. infodir belongs in datadir.
16977 Make directories for info install. Build dir.info here then
16978 install it.
16979
16980 1991-12-09 K. Richard Pixley (rich at rtl.cygnus.com)
16981
16982 * Makefile.in: fix for bad directory tests.
16983
16984 1991-12-07 K. Richard Pixley (rich at rtl.cygnus.com)
16985
16986 * configure: \{1,2\} appears to be a sysv'ism. Use a different
16987 regexp. -srcdir relative was being handled incorrectly.
16988
16989 * Makefile.in: unwrapped some for loops so that parallel makes
16990 work again and so one can focus one's attention on a particular
16991 package.
16992
16993 1991-12-06 K. Richard Pixley (rich at rtl.cygnus.com)
16994
16995 * configure: added PWD as a stand in for `pwd` (for speed). use
16996 elif wherever possible. make -srcdir work without -objdir.
16997 -objdir= commented out.
16998
16999 1991-12-05 K. Richard Pixley (rich at rtl.cygnus.com)
17000
17001 * configure: +options become --options. -subdirs commented out.
17002 added -host, -datadir. Renamed -destdir to -prefix. Comment in
17003 Makefile now at top of generated Makefile. Removed cvs log
17004 entries. added -srcdir. create .gdbinit only if there is one
17005 in ${srcdir}.
17006
17007 * Makefile.in: idestdir and ddestdir go away. Added copyrights
17008 and shift gpl to v2. Added ChangeLog if it didn't exist. docdir
17009 and mandir now keyed off datadir by default.
17010
17011 1991-11-22 K. Richard Pixley (rich at rtl.cygnus.com)
17012
17013 * Freshly created ChangeLog.
17014
17015 \f
17016 Local Variables:
17017 mode: change-log
17018 left-margin: 8
17019 fill-column: 76
17020 version-control: never
17021 End: