Pass PKG_CONFIG_PATH down from top-level Makefile
[binutils-gdb.git] / ChangeLog
1 2022-04-08 Simon Marchi <simon.marchi@efficios.com>
2
3 * configure.ac: Add AC_SUBST(PKG_CONFIG_PATH).
4 * configure: Re-generate.
5 * Makefile.tpl (HOST_EXPORTS): Pass PKG_CONFIG_PATH.
6 (PKG_CONFIG_PATH): New.
7 * Makefile.in: Re-generate.
8
9 2022-03-15 Jose E. Marchesi <jose.marchesi@oracle.com>
10
11 * gprofng/src/gp-collect-app.cc (collect::check_args): Use
12 fallthrough comment instead of attribute.
13
14 2022-03-11 Vladimir Mezentsev <vladimir.mezentsev@oracle.com>
15
16 * Makefile.def: Add gprofng module.
17 * configure.ac: Add --enable-gprofng option.
18 * src-release.sh: Add gprofng.
19 * Makefile.in: Regenerate.
20 * configure: Regenerate.
21 * gprofng: New directory.
22
23 2022-01-22 Nick Clifton <nickc@redhat.com>
24
25 * 2.38 release branch created.
26
27 2022-01-17 Nick Clifton <nickc@redhat.com>
28
29 Update config.[guess|sub] from upstream:
30
31 2022-01-09 Idan Horowitz <idan.horowitz@gmail.com>
32
33 config.guess: recognize SerenityOS
34 * config.guess (*:SerenityOS:*:*): Recognize.
35 (timestamp): Update.
36
37 2022-01-03 Bernhard Voelker <mail@bernhard-voelker.de>
38
39 Fix GPLv3 license headers to use a comma instead of semicolon
40 See: https://www.gnu.org/licenses/gpl-3.0.html#howto
41
42 Update license headers automatically using the following script:
43
44 $ git grep -l 'Foundation; either version 3' \
45 | xargs sed -i '/Foundation; either version 3/ s/n; e/n, e/'
46
47 * config.guess: Adjust via the above command.
48 (timestamp): Update.
49 * config.sub: Likewise.
50 * doc/config.guess.1: Regenerate.
51 * doc/config.sub.1: Likewise.
52
53 2022-01-01 Dmitry V. Levin <ldv@altlinux.org>
54
55 Update copyright years
56 * config.guess: Update copyright years.
57 * config.sub: Likewise.
58
59 2021-12-25 Dmitry V. Levin <ldv@altlinux.org>
60
61 config.sub: alias armh to armv7l
62 ALT uses armh as an alias for armv7l-alt-linux-gnueabihf since 2012.
63
64 * config.sub (armh-unknown|armh-alt): Set cpu, vendor, and basic_os.
65 (timestamp): Update.
66
67 2021-12-24 Dmitry V. Levin <ldv@altlinux.org>
68
69 config.sub: alias aarch64le to aarch64
70 Apparently, QNX reports aarch64 as aarch64le on little-endian machines.
71
72 * config.sub (aarch64le-*): Set cpu to aarch64.
73 (timestamp): Update.
74
75 2021-12-13 Dmitry V. Levin <ldv@altlinux.org>
76
77 config.sub: fix typo in timestamp
78 * config.sub: Fix timestamp.
79
80 2021-11-30 Andreas F. Borchert <github@andreas-borchert.de>
81
82 config.guess: x86_64-pc-solaris2.11 is not properly recognized
83 config.guess guesses Solaris 11 to run on a 32-bit platform
84 despite Solaris 11 no longer supporting any 32-bit platform.
85
86 See the following code at lines 434 to 445:
87
88 | SUN_ARCH=i386
89 | # If there is a compiler, see if it is configured for 64-bit objects.
90 | # Note that the Sun cc does not turn __LP64__ into 1 like gcc does.
91 | # This test works for both compilers.
92 | if test "$CC_FOR_BUILD" != no_compiler_found; then
93 | if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \
94 | (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \
95 | grep IS_64BIT_ARCH >/dev/null
96 | then
97 | SUN_ARCH=x86_64
98 | fi
99 | fi
100
101 If "cc" is installed, i.e. the Oracle Studio compiler, this one is
102 chosen for $CC_FOR_BUILD. This compiler, the gcc provided by Oracle
103 and also gcc bootstrapped from sources on that platform with a default
104 configuration will by default generate 32-bit binaries -- even on
105 a 64-bit platform. And __amd64 will not be defined for compilations
106 targeting a 32-bit platform. This is different from the corresponding
107 behaviour on GNU/Linux systems where the local platform is targeted by
108 default.
109
110 Thus, as long as you do not add "-m64" or if you have a custom-built
111 gcc which defaults to 64 bit, you will get 32-bit binaries on Solaris
112 despite living on a 64-bit platform.
113
114 * config.guess (i86pc:SunOS:5.*:* || i86xen:SunOS:5.*:*): Adapt the
115 test by adding the "-m64" flag. This will work properly for Solaris
116 10 as well (the last Solaris release that supported x86 32-bit
117 platforms).
118
119 2021-10-27 Jordi Sanfeliu <jordi@fibranet.cat>
120
121 Recognize Fiwix
122 $ make check
123 cd testsuite && bash config-guess.sh && rm uname
124 PASS: config.guess checks (137 tests)
125 cd testsuite && bash config-sub.sh
126 PASS: config.sub checks (882 tests)
127 PASS: config.sub idempotency checks (819 tests)
128 PASS: config.sub canonicalise each config.guess testcase (137 tests)
129
130 * config.guess (i*86:Fiwix:*:*): Recognize.
131 * config.sub (fiwix*): Likewise.
132
133 2021-10-18 Kinshuk Dua <kinshukdua@gmail.com>
134
135 config.sub: Fix typo in comment
136 Fixes: 5e531d391852a54e7fab2d8ff55625fca514b305
137
138 2021-08-14 Nick Bowler <nbowler@draconx.ca>
139
140 config.sub: work around command assignment bug in some shells
141 When combining variable assignments with a shell command, some older
142 shells (notably heirloom-sh and presumably also Solaris 10 /bin/sh)
143 have a bug which causes the assignment to alter the current execution
144 environment whenever the command is a shell built-in. For example:
145
146 % dash -c 'x=good; x=bad echo >/dev/null; echo $x'
147 good
148
149 % jsh -c 'x=good; x=bad echo >/dev/null; echo $x'
150 bad
151
152 The config.sub script contains a few commands of the form:
153
154 IFS=- read ...
155
156 which triggers this bug, causing the IFS assignment to persist for the
157 remainder of the script. This can cause misbehaviour in certain cases,
158 for example:
159
160 % jsh config.sub i386-linux-gnu
161 config.sub: test: unknown operator gnu
162
163 % jsh config.sub i386-gnu/linux
164 sed: can't read s|gnu/linux|gnu|: No such file or directory
165 Invalid configuration `i386-gnu/linux': OS `' not recognized
166
167 * config.sub: Save and restore IFS explicitly to avoid shell bugs.
168 * doc/config.sub.1: Regenerate.
169
170 2021-08-04 Jeremy Soller <jackpot51@gmail.com>
171
172 config.sub: add Linux Relibc Target
173 $ make check
174 cd testsuite && bash config-guess.sh && rm uname
175 PASS: config.guess checks (136 tests)
176 cd testsuite && bash config-sub.sh
177 PASS: config.sub checks (881 tests)
178 PASS: config.sub idempotency checks (818 tests)
179 PASS: config.sub canonicalise each config.guess testcase (136 tests)
180
181 * config.sub (relibc*): Recognize.
182 * doc/config.sub.1: Regenerate.
183 * testsuite/config-sub.data (x86_64-linux-relibc): New test.
184
185 2021-07-06 Stephanos Ioannidis <root@stephanos.io>
186
187 config.sub: add Zephyr RTOS support
188 This adds the Zephyr RTOS targets in preparation for implementing the
189 Zephyr RTOS-specific toolchain support.
190
191 $ make check
192 cd testsuite && bash config-guess.sh && rm uname
193 PASS: config.guess checks (136 tests)
194 cd testsuite && bash config-sub.sh
195 PASS: config.sub checks (880 tests)
196 PASS: config.sub idempotency checks (817 tests)
197 PASS: config.sub canonicalise each config.guess testcase (136 tests)
198
199 * config.sub (zephyr*): Recognize.
200 * doc/config.sub.1: Regenerate.
201 * testsuite/config-sub.data: Add testcases for *-zephyr.
202
203 2021-07-03 Ozkan Sezer <sezero@users.sourceforge.net>
204
205 config.sub: disable shellcheck SC2006 / SC2268 warnings
206 This is in line with the recent config.guess change in commit
207 12fcf67c9108f4c4b581eaa302088782f0ee40ea
208
209 * config.sub (shellcheck disable): Add SC2006,SC2268.
210
211 Suggested-by: Jacob Bachmeyer <jcb@gnu.org>
212
213 2021-07-03 Ozkan Sezer <sezero@users.sourceforge.net>
214
215 config.sub: normalize the quoting in the `echo FOO | sed ...`
216 Some cases quote the argument to echo and some do not. At runtime
217 it probably does not matter because the substituted values will never
218 contain whitespace, but quoting them all would make shellcheck more
219 useful.
220
221 * config.sub: Consistently quote the argument of echo.
222 * doc/config.sub.1: Regenerate.
223
224 Suggested-by: Jacob Bachmeyer <jcb@gnu.org>
225
226 2021-07-02 Ozkan Sezer <sezero@users.sourceforge.net>
227
228 config.sub: replace POSIX $( ) with classic ` ` throughout
229 This is in line with the recent config.guess change in commit
230 d70c4fa934de164178054c3a60aaa0024ed07c91.
231
232 The patch was generated using patch-6.gawk script introduced in that
233 commit.
234
235 * config.sub: Revert POSIX command substitutions to classic form.
236
237 2021-06-04 Vineet Gupta <Vineet.Gupta1@synopsys.com>
238
239 Recognize arc32
240 This is the 32-bit variant of ARCv3 ISA (which is not compatible with the
241 32-bit ARCv2 ISA)
242
243 | make check
244 | cd testsuite && bash config-guess.sh && rm uname
245 | PASS: config.guess checks (136 tests)
246 | cd testsuite && bash config-sub.sh
247 | PASS: config.sub checks (864 tests)
248 | PASS: config.sub idempotency checks (801 tests)
249 | PASS: config.sub canonicalise each config.guess testcase (136 tests)
250
251 * config.guess (arc32:Linux:*:*): Recognize.
252 * config.sub (arc32): Likewise.
253
254 2021-05-27 Jacob Bachmeyer <jcb@gnu.org>
255
256 Remove automatic patch generators
257 These tools have served their purposes and need not be kept outside of
258 the repository history any longer. This patch as a diff also collects
259 the contents of the various tools in one convenient place.
260
261 * patch-1.gawk: Remove.
262 * patch-3.gawk: Likewise.
263 * patch-6.gawk: Likewise.
264
265 2021-05-26 Jacob Bachmeyer <jcb@gnu.org>
266
267 config.guess: manual fixups after previous automatic patch
268 The tool could not handle command substitutions that span lines, but
269 fortunately there were only two such substitutions in the script.
270
271 The test for which universe is active on Pyramid is rewritten into a
272 case block because it was the only use of a command substitution as an
273 argument to the test command, which would require quoting.
274
275 * config.guess: Rewrite "if" for Pyramid systems to "case".
276
277 2021-05-26 Jacob Bachmeyer <jcb@gnu.org>
278
279 config.guess: replace POSIX $( ) with classic ` ` throughout
280 The previous replacement of backticks with POSIX command substitutions
281 was ill-considered and illogical: this script recognizes many archaic
282 machine types that probably never had POSIX shells, therefore it needs
283 to be able to run successfully under pre-POSIX shells.
284
285 This patch was generated using the included GNU Awk program.
286
287 * config.guess: Revert POSIX command substitutions to classic form.
288 * patch-6.gawk: Store the tool that produced the automated patch.
289
290 2021-05-26 Jacob Bachmeyer <jcb@gnu.org>
291
292 config.guess: manual fixup after previous automated patches
293 This patch provides the special handling for the GNU system. As these
294 were two small and unique edits, they were not included in the scripts.
295
296 This patch also cleans up other minor issues that must be addressed
297 before reverting to classic command substitutions and updates
298 "shellcheck" directives to account for changes in this script and the
299 change in "shellcheck" towards reporting individual portability issues.
300
301 2021-05-26 Jacob Bachmeyer <jcb@gnu.org>
302
303 config.guess: automatic fixups after previous automated patch
304 This patch was generated using the following command:
305
306 sed -i config.guess \
307 -e '/="[^"]\+"\(-\|$\)/s/="\([^"([:space:])]\+\)"/=\1/' \
308 -e '/="[^"]\+"[[:alnum:]]/s/="\$\([^([:space:])]\+\)"/=${\1}/' \
309 -e \
310 '/\$(echo[^|]\+|/s/\([^[:space:]]\)[[:space:]]*|[[:space:]]*sed/\1 | sed/g'
311
312 * config.guess: Remove unneeded quotes in other variable assignments,
313 standardize spacing for "echo ... | sed" substitutions.
314
315 2021-05-26 Jacob Bachmeyer <jcb@gnu.org>
316
317 config.guess: remove unneeded quotes and factor command substitutions
318 This is further cleanup and simplifies some constructs that can confuse
319 Emacs' syntax highlighting while generally reducing required quoting.
320
321 This patch was generated using the included GNU Awk program.
322
323 * config.guess: Remove unneeded variable quotes and factor out command
324 substitutions when setting GUESS.
325 * patch-3.gawk: Store the tool that produced the automated patch.
326
327 2021-05-25 Jacob Bachmeyer <jcb@gnu.org>
328
329 config.guess: manual fixups after previous automatic patch
330 * config.guess: Adjust a few "leftover" cases that the tool could not
331 easily recognize and fixes comment indentation in a few other special
332 cases.
333
334 2021-05-25 Jacob Bachmeyer <jcb@gnu.org>
335
336 config.guess: use intermediate variable with uname results
337 This will allow quoting to be significantly simplified in another
338 pass through the file.
339
340 This patch was generated using the included GNU Awk program.
341
342 * config.guess: Use GUESS variable to hold results of uname analysis.
343 * patch-1.gawk: Store the tool that produced the automated patch.
344
345 2021-05-25 Jacob Bachmeyer <jcb@gnu.org>
346
347 config.guess: introduce intermediate variable with uname results
348 This will allow quoting to be significantly simplified in another
349 pass through the file.
350
351 * config.guess: Introduce GUESS variable to hold results of uname analysis.
352
353 2021-05-24 Dmitry V. Levin <ldv@altlinux.org>
354
355 config.guess: fix shellcheck warning SC2154
356 While, according to Plan 9 documentation, the environment variable
357 $cputype is set to the name of the kernel's CPU's architecture,
358 shellcheck warns that cputype is referenced but not assigned.
359 Be on the safe side and do not use cputype if it is not defined
360 or empty.
361
362 * config.guess (*:Plan9:*:*): Fix shellcheck warning SC2154.
363
364 2021-05-24 Dmitry V. Levin <ldv@altlinux.org>
365
366 config.guess: remove redundant quotes in case commands
367 According to the GNU Autoconf Portable Shell Programming manual,
368 the Bourne shell does not systematically split variables and back-quoted
369 expressions, in particular on the right-hand side of assignments and in
370 the argument of 'case'.
371
372 The change is made automatically using the following command:
373 $ sed -E -i 's/(\<case )"(\$[^"]+)"( in\>)/\1\2\3/' config.guess
374
375 * config.guess: Simplify case commands by removing quotes around the
376 argument.
377
378 Suggested-by: Jacob Bachmeyer <jcb@gnu.org>
379
380 2021-05-24 Dmitry V. Levin <ldv@altlinux.org>
381
382 config.guess: simplify exit status workaround on alphaev67-dec-osf5.1
383 Commit 29865ea8a5622cdd80b7a69a0afa78004b4cd311 introduced an exit trap
384 reset before exiting to avoid a spurious non-zero exit status on
385 alphaev67-dec-osf5.1. Simplify that code a bit by moving the exit trap
386 reset around.
387
388 * config.guess (alpha:OSF1:*:*): Reset exit trap earlier.
389 * doc/config.guess.1: Regenerate.
390
391 2021-10-29 Eli Zaretskii <eliz@gnu.org>
392
393 * gdb/doc/gdb.texinfo (Command Options): (Data): Document
394 '-memory-tag-violations'. Update the example.
395
396 2021-09-28 Andrew Burgess <andrew.burgess@embecosm.com>
397
398 * src-release.sh (GDB_SUPPPORT_DIRS): Add libbacktrace.
399
400 2021-09-27 Nick Alcock <nick.alcock@oracle.com>
401
402 PR libctf/27967
403 * libtool.m4 (LT_PATH_NM): Try BSDization flags with a user-provided
404 NM, if there is one. Run nm on itself, not on /dev/null, to avoid
405 errors from nms that refuse to work on non-regular files. Remove
406 other workarounds for this problem. Strip out blank lines from the
407 nm output.
408
409 2021-09-27 Nick Alcock <nick.alcock@oracle.com>
410
411 PR libctf/27967
412 * libtool.m4 (lt_cv_sys_global_symbol_pipe): Augment symcode for
413 Solaris 11.
414
415 2021-07-03 Nick Clifton <nickc@redhat.com>
416
417 * 2.37 release branch created.
418
419 2021-07-03 Nick Clifton <nickc@redhat.com>
420
421 * libiberty: Sync with gcc. Bring in:
422 2021-06-30 Gerald Pfeifer <gerald@pfeifer.com>
423
424 * make-temp-file.c (usrtmp): Remove.
425 (choose_tmpdir): Remove use of usrtmp.
426
427 2021-06-28 Indu Bhagat <indu.bhagat@oracle.com>
428
429 * simple-object.c (handle_lto_debug_sections): Copy over .BTF section.
430
431 2021-06-28 Indu Bhagat <indu.bhagat@oracle.com>
432 David Faust <david.faust@oracle.com>
433 Jose E. Marchesi <jose.marchesi@oracle.com>
434 Weimin Pan <weimin.pan@oracle.com>
435
436 * simple-object.c (handle_lto_debug_sections): Copy over .ctf
437 sections.
438
439 2021-06-05 John David Anglin <danglin@gcc.gnu.org>
440
441 PR target/100734
442 * configure.ac: Use libiberty snprintf and vsnprintf on
443 hppa*-*-hpux*.
444 * configure: Regenerate.
445
446 2021-05-06 Tom Tromey <tom@tromey.com>
447
448 * hashtab.c (htab_eq_string): New function.
449
450 2021-05-04 Eric Botcazou <ebotcazou@adacore.com>
451
452 * configure.ac: Make test for variables more robust.
453 * configure: Regenerate.
454
455 2021-05-03 H.J. Lu <hjl.tools@gmail.com>
456
457 PR bootstrap/99703
458 * configure: Regenerated.
459
460 2021-04-21 Andreas Schwab <schwab@linux-m68k.org>
461
462 PR demangler/100177
463 * rust-demangle.c (demangle_const_char): Properly print the
464 character value.
465
466 2021-03-31 Patrick Palka <ppalka@redhat.com>
467
468 PR c++/88115
469 * cp-demangle.c (d_dump, d_make_comp, d_expression_1)
470 (d_count_templates_scopes): Handle DEMANGLE_COMPONENT_VENDOR_EXPR.
471 (d_print_comp_inner): Likewise.
472 <case DEMANGLE_COMPONENT_EXTENDED_OPERATOR>: Revert r11-4926
473 change.
474 <case DEMANGLE_COMPONENT_UNARY>: Likewise.
475 * testsuite/demangle-expected: Adjust __alignof__ tests.
476
477 2021-03-16 Nick Clifton <nickc@redhat.com>
478
479 * sha1.c (sha1_process_bytes): Use memmove in place of memcpy.
480
481 2021-02-20 Mike Frysinger <vapier@gentoo.org>
482
483 * Makefile.in (ACLOCAL, ACLOCAL_AMFLAGS, $(srcdir)/aclocal.m4): Define.
484 (configure_deps): Rename to ...
485 (aclocal_deps): ... this. Replace aclocal.m4 with acinclude.m4.
486 ($(srcdir)/configure): Replace $(configure_deps) with
487 $(srcdir)/aclocal.m4.
488 * aclocal.m4: Move libiberty macros to acinclude.m4, then regenerate.
489 * acinclude.m4: New file.
490 * configure: Regenerate.
491
492 2021-02-19 Ayush Mittal <ayush.m@samsung.com>
493
494 * argv.c (expandargv): free allocated buffer if read fails.
495
496 2021-02-01 Martin Sebor <msebor@redhat.com>
497
498 * dyn-string.c (dyn_string_insert_cstr): Use memcpy instead of strncpy
499 to avoid -Wstringop-truncation.
500
501 2021-05-29 Mike Frysinger <vapier@gentoo.org>
502
503 * configure.ac: Add gnulib to configdirs for sim.
504 * configure: Regenerate.
505
506 2021-05-24 Maciej W. Rozycki <macro@orcam.me.uk>
507
508 * MAINTAINERS: Update path to readline config.{sub,guess} files.
509
510 2021-05-24 Maciej W. Rozycki <macro@orcam.me.uk>
511
512 * config.guess: Import from upstream.
513 * config.sub: Likewise.
514
515 2021-05-18 Mike Frysinger <vapier@gentoo.org>
516
517 * Makefile.def: Add configure-sim dependency on all-gnulib.
518 * Makefile.in: Regenerated.
519
520 2021-05-04 Nick Clifton <nickc@redhat.com>
521
522 * configure.ac (AC_PROG_CC): Replace with AC_PROG_CC_C99.
523 * configure: Regenerate.
524
525 2021-03-18 Nick Alcock <nick.alcock@oracle.com>
526
527 PR libctf/27482
528 * Makefile.def: Add install-bfd dependencies for install-libctf and
529 install-ld, and install-strip-bfd dependencies for
530 install-strip-libctf and install-strip-ld; move the install-ld
531 dependency on install-libctf to join it.
532 * Makefile.in: Regenerated.
533
534 2021-03-12 Mike Frysinger <vapier@gentoo.org>
535
536 * Makefile.def: Remove all-sim dependency on configure-gdb.
537 * Makefile.in: Regenerated.
538
539 2021-02-28 H.J. Lu <hongjiu.lu@intel.com>
540
541 PR binutils/26766
542 * Makefile.tpl (PGO_BUILD_TRAINING_FLAGS_TO_PASS): Add
543 PGO_BUILD_TRAINING=yes.
544 (PGO_BUILD_TRAINING_MFLAGS): New.
545 (all): Pass $(PGO_BUILD_TRAINING_MFLAGS) to the PGO build.
546
547 2021-02-09 Alan Modra <amodra@gmail.com>
548
549 * configure.ac: Delete arm*-*-symbianelf* entry.
550 * configure: Regenerate.
551
552 2021-01-26 Nick Alcock <nick.alcock@oracle.com>
553
554 * Makefile.def: Add install-libctf dependency to install-ld.
555 * Makefile.in: Regenerated.
556
557 2021-01-12 Mike Frysinger <vapier@gentoo.org>
558
559 * src-release.sh (do_proto_toplev): Rewrite indentation.
560
561 2021-01-11 H.J. Lu <hongjiu.lu@intel.com>
562
563 PR binutils/26766
564 * configure.ac:
565 * configure: Regenerated.
566
567 2021-01-11 H.J. Lu <hongjiu.lu@intel.com>
568
569 PR ld/27173
570 * configure: Regenerated.
571 * libtool.m4 (_LT_CMD_OLD_ARCHIVE): Check if AR works with
572 --plugin and rc before enabling --plugin.
573
574 2021-01-09 H.J. Lu <hongjiu.lu@intel.com>
575
576 PR binutils/26766
577 * Makefile.tpl (BUILD_CFLAGS): New.
578 (CFLAGS): Append $(BUILD_CFLAGS).
579 (CXXFLAGS): Likewise.
580 (PGO_BUILD_GEN_FLAGS_TO_PASS): New.
581 (PGO_BUILD_TRAINING_CFLAGS): Likewise.
582 (PGO_BUILD_TRAINING_CXXFLAGS): Likewise.
583 (PGO_BUILD_TRAINING_FLAGS_TO_PASS): Likewise.
584 (PGO_BUILD_TRAINING_MFLAGS): Likewise.
585 (PGO_BUILD_USE_FLAGS_TO_PASS): Likewise.
586 (PGO-TRAINING-TARGETS): Likewise.
587 (PGO_BUILD_TRAINING): Likewise.
588 (all): Add '+' to the command line for recursive make. Support
589 the PGO build.
590 * configure.ac: Add --enable-pgo-build[=lto].
591 AC_SUBST PGO_BUILD_GEN_CFLAGS, PGO_BUILD_USE_CFLAGS and
592 PGO_BUILD_LTO_CFLAGS. Enable the PGO build in Makefile.
593 * Makefile.in: Regenerated.
594 * configure: Likewise.
595
596 2021-01-09 H.J. Lu <hongjiu.lu@intel.com>
597
598 * Makefile.tpl (AR): Add @AR_PLUGIN_OPTION@
599 (RANLIB): Add @RANLIB_PLUGIN_OPTION@.
600 * configure.ac: Include config/gcc-plugin.m4.
601 AC_SUBST AR_PLUGIN_OPTION and RANLIB_PLUGIN_OPTION.
602 * libtool.m4 (_LT_CMD_OLD_ARCHIVE): Pass --plugin to AR and
603 RANLIB if possible.
604 * Makefile.in: Regenerated.
605 * configure: Likewise.
606
607 2021-01-09 Nick Clifton <nickc@redhat.com>
608
609 * 2.36 release branch crated.
610
611 2021-01-07 Samuel Thibault <samuel.thibault@gnu.org>
612
613 * libtool.m4: Match gnu* along with other GNU systems.
614
615 2021-01-07 Alan Modra <amodra@gmail.com>
616
617 * config.sub: Accept OS of eabi* and gnueabi*.
618
619 2021-01-05 Nick Alcock <nick.alcock@oracle.com>
620
621 * Makefile.def (libctf): No longer no_check. Checking depends on
622 all-ld.
623 * Makefile.in: Regenerated.
624
625 2021-01-05 Nick Clifton <nickc@redhat.com>
626
627 * libiberty: Sync with gcc. Bring in:
628 2021-01-04 Martin Liska <mliska@suse.cz>
629
630 * strverscmp.c: Convert to utf8 from iso8859.
631
632 2020-12-22 Jason Merrill <jason@redhat.com>
633
634 PR c++/67343
635 * cp-demangle.h (struct d_info): Add unresolved_name_state.
636 * cp-demangle.c (d_prefix): Add subst parm.
637 (d_nested_name): Pass it.
638 (d_unresolved_name): Split out from...
639 (d_expression_1): ...here.
640 (d_demangle_callback): Maybe retry with old sr mangling.
641 * testsuite/demangle-expected: Add test.
642
643 2020-12-21 Jason Merrill <jason@redhat.com>
644
645 * cp-demangle.c (d_expression_1): Recognize qualified-id
646 on RHS of dt/pt.
647 * testsuite/demangle-expected: Add test.
648
649 2020-12-21 Jason Merrill <jason@redhat.com>
650
651 * cp-demangle.c (d_unqualified_name): Clear is_expression.
652 * testsuite/demangle-expected: Add tests.
653
654 2020-11-25 Matthew Malcomson <matthew.malcomson@arm.com>
655
656 * configure: Regenerate.
657 * configure.ac: Avoid using sanitizer.
658
659 2020-11-13 Eduard-Mihai Burtescu <eddyb@lyken.rs>
660
661 * rust-demangle.c (struct rust_demangler): Add
662 skipping_printing and bound_lifetime_depth fields.
663 (eat): Add (v0-only).
664 (parse_integer_62): Add (v0-only).
665 (parse_opt_integer_62): Add (v0-only).
666 (parse_disambiguator): Add (v0-only).
667 (struct rust_mangled_ident): Add punycode{,_len} fields.
668 (parse_ident): Support v0 identifiers.
669 (print_str): Respect skipping_printing.
670 (print_uint64): Add (v0-only).
671 (print_uint64_hex): Add (v0-only).
672 (print_ident): Respect skipping_printing,
673 Support v0 identifiers.
674 (print_lifetime_from_index): Add (v0-only).
675 (demangle_binder): Add (v0-only).
676 (demangle_path): Add (v0-only).
677 (demangle_generic_arg): Add (v0-only).
678 (demangle_type): Add (v0-only).
679 (demangle_path_maybe_open_generics): Add (v0-only).
680 (demangle_dyn_trait): Add (v0-only).
681 (demangle_const): Add (v0-only).
682 (demangle_const_uint): Add (v0-only).
683 (basic_type): Add (v0-only).
684 (rust_demangle_callback): Support v0 symbols.
685 * testsuite/rust-demangle-expected: Add v0 testcases.
686
687 2020-11-13 Seija Kijin <doremylover456@gmail.com>
688
689 * strstr.c (strstr): Make implementation ANSI/POSIX compliant.
690
691 2020-11-11 Patrick Palka <ppalka@redhat.com>
692
693 PR c++/88115
694 * cp-demangle.c (d_print_comp_inner)
695 <case DEMANGLE_COMPONENT_EXTENDED_OPERATOR>: Don't print the
696 "operator " prefix for __alignof__.
697 <case DEMANGLE_COMPONENT_UNARY>: Always print parens around the
698 operand of __alignof__.
699 * testsuite/demangle-expected: Test demangling for __alignof__.
700
701 2020-11-09 Christophe Lyon <christophe.lyon@linaro.org>
702
703 * pex-win32.c (pex_win32_exec_child): Initialize orig_err.
704
705 2020-10-06 Martin Liska <mliska@suse.cz>
706
707 PR lto/97290
708 * simple-object-elf.c (simple_object_elf_copy_lto_debug_sections):
709 Use sh_link of a .symtab_shndx section.
710
711 2021-01-05 Alan Modra <amodra@gmail.com>
712
713 * config.guess: Import from upstream.
714 * config.sub: Likewise.
715
716 2020-12-16 Martin Liska <mliska@suse.cz>
717 Tom de Vries <tdevries@suse.de>
718
719 * gdb/debuginfod-support.c (struct user_data): Remove has_printed
720 field. Add meter field.
721 (progressfn): Print progress using meter.
722
723 2020-12-02 Enze Li <lienze2010@hotmail.com>
724
725 * .gitignore: Add gnu global outputs.
726
727 2020-12-02 Simon Marchi <simon.marchi@polymtl.ca>
728
729 * .gitignore: Sync with gcc.
730
731 2020-10-26 Andreas Rammhold <andreas@rammhold.de>
732
733 * src-release.sh: Use sha256sum instead of md5sum.
734
735 2020-10-14 Andrew Burgess <andrew.burgess@embecosm.com>
736
737 * Makefile.in: Rebuild.
738 * Makefile.def: Make distclean-gnulib depend on distclean-gdb and
739 distclean-gdbserver.
740
741 2020-07-24 Aaron Merey <amerey@redhat.com>
742
743 * configure: Rebuild.
744 * configure.ac: Remove AC_DEBUGINFOD.
745
746 2020-07-04 Nick Clifton <nickc@redhat.com>
747
748 Binutils 2.35 branch created.
749
750 2020-04-21 Stephen Casner <casner@acm.org>
751
752 PR 25830
753 * configure.ac (noconfigdirs): Exclude gdb & gprof for pdp11.
754 * configure: Rebuild.
755
756 2020-03-12 Tom Tromey <tom@tromey.com>
757
758 * Makefile.in: Rebuild.
759 * Makefile.def (gdbserver): Depend on gdbsupport.
760
761 2020-03-12 Tom Tromey <tom@tromey.com>
762
763 * Makefile.in: Rebuild.
764 * Makefile.def (gdbsupport): Don't depend on bfd.
765
766 2020-03-12 Tom Tromey <tom@tromey.com>
767
768 * Makefile.in: Rebuild.
769 * Makefile.def (gdbsupport): Depend on intl.
770
771 2020-02-17 Tom Tromey <tom@tromey.com>
772
773 * configure: Rebuild.
774 * configure.ac (configdirs): Add gnulib and gdbsupport when building
775 gdbserver.
776
777 2020-02-14 Tom Tromey <tom@tromey.com>
778
779 * Makefile.in: Rebuild.
780 * Makefile.def: Make gdbserver require gnulib and libiberty.
781
782 2020-02-07 Tom Tromey <tom@tromey.com>
783 Pedro Alves <palves@redhat.com>
784
785 * src-release.sh (GDB_SUPPORT_DIRS): Add gdbserver.
786 * gdbserver: New directory, moved from gdb/gdbserver.
787 * configure.ac (host_tools): Add gdbserver.
788 Only build gdbserver on certain systems.
789 * Makefile.in, configure: Rebuild.
790 * Makefile.def (host_modules, dependencies): Add gdbserver.
791 * MAINTAINERS: Add gdbserver.
792
793 2020-01-28 Sergio Durigan Junior <sergiodj@redhat.com>
794
795 * src-release.sh (getver): Look for gdbsupport's
796 create-version.sh script at the current directory if tool is
797 "gdb".
798
799 2020-01-19 Simon Marchi <simon.marchi@polymtl.ca>
800
801 * remote-sim.c (gdbsim_target::wait): Return
802 sim_data->remote_sim_ptid instead of inferior_ptid.
803
804 2020-01-18 Nick Clifton <nickc@redhat.com>
805
806 Binutils 2.34 branch created.
807
808 2020-01-18 Nick Clifton <nickc@redhat.com>
809
810 Synchronize top level configure files with master version:
811
812 2020-01-01 Ben Elliston <bje@gnu.org>
813
814 * config.guess: Update copyright years.
815 * config.sub: Likewise.
816
817 2019-12-21 Ben Elliston <bje@gnu.org>
818
819 * config.guess (set_cc_for_build): Prevent multiple calls by
820 checking if $tmp is already set. We can't check CC_FOR_BUILD as
821 the user may set it externally. Thanks to Torbjörn Granlund for
822 the bug report.
823
824 2019-12-21 Torbjörn Granlund <tg@gmplib.org>
825
826 * config.guess (alpha:Linux:*:*): Guard against missing
827 /proc/cpuinfo by redirecting standard error to /dev/null.
828
829 2019-09-12 Daniel Bittman <danielbittman1@gmail.com>
830
831 * config.guess (*:Twizzler:*:*): New.
832 * config.sub (-twizzler*): New.
833
834 2019-07-24 Ben Elliston <bje@gnu.org>
835
836 * config.guess (mips:OSF1:*.*): Whitespace cleanup.
837
838 2019-06-30 Ben Elliston <bje@gnu.org>
839
840 * config.sub (case $os): Match nsk* and powerunix. Don't later
841 match nsk* and set os=nsk which removes the OS version number.
842
843 2019-06-30 Ben Elliston <bje@gnu.org>
844
845 * config.sub: Recognise os108*.
846
847 2019-06-26 Ben Elliston <bje@gnu.org>
848
849 * config.sub (hp300): Set $os to hpux.
850
851 2019-06-26 Ben Elliston <bje@gnu.org>
852
853 * config.sub (vsta): Move into alphabetical order.
854
855 2019-06-10 Ben Elliston <bje@gnu.org>
856
857 * config.guess (*:OS108:*:*): Recognise new OS.
858
859 2019-05-28 Ben Elliston <bje@gnu.org>
860
861 * config.guess (*:Darwin:*:*): Run xcode-select to determine if a
862 system compiler is installed. If not, do not run set_cc_for_build,
863 as the default cc will open a dialog box asking to install
864 Xcode. If no C compiler is available, guess based on uname -p and
865 uname -m.
866
867 2019-05-28 Ben Elliston <bje@gnu.org>
868
869 * config.guess (*:Darwin:*:*): Simplify UNAME_PROCESSOR.
870
871 2020-01-17 Simon Marchi <simon.marchi@efficios.com>
872
873 * Makefile.def: Add dependencies of all-gdbsupport on all-bfd.
874 * Makefile.in: Re-generate.
875
876 2020-01-14 Tom Tromey <tom@tromey.com>
877
878 * src-release.sh (GDB_SUPPORT_DIRS): Add gdbsupport.
879 * MAINTAINERS: Add gdbsupport.
880 * configure: Rebuild.
881 * configure.ac (configdirs): Add gdbsupport.
882 * gdbsupport: New directory, move from gdb/gdbsupport.
883 * Makefile.def (host_modules, dependencies): Add gnulib.
884 * Makefile.in: Rebuild.
885
886 2020-01-09 Aaron Merey <amerey@redhat.com>
887
888 * config/debuginfod.m4: New file. Add macro AC_DEBUGINFOD. Adds
889 new configure option --with-debuginfod.
890 * configure: Regenerate.
891 * configure.ac: Call AC_DEBUGINFOD.
892
893 2019-12-26 Christian Biesinger <cbiesinger@google.com>
894
895 * .gitignore: Add perf.data and perf.data.old.
896
897 2019-10-17 Sergio Durigan Junior <sergiodj@redhat.com>
898
899 * src-release.sh (GDB_SUPPORT_DIRS): Add libctf.
900
901 2019-10-17 Alan Modra <amodra@gmail.com>
902
903 PR 29
904 * src-release.sh (getver): Replace "head -1" with "head -n 1".
905
906 2019-07-30 Nick Alcock <nick.alcock@oracle.com>
907
908 * Makefile.def (host_modules): libctf is no longer no_install.
909 * Makefile.in: Regenerated.
910
911 2019-07-13 Nick Alcock <nick.alcock@oracle.com>
912
913 * Makefile.def (dependencies): all-ld depends on all-libctf.
914 * Makefile.in: Regenerated.
915
916 2019-09-09 Phil Blundell <pb@pbcl.net>
917
918 binutils 2.33 branch created
919
920 2019-08-19 Tom Tromey <tom@tromey.com>
921
922 * configure: Rebuild.
923 * configure.ac: Add --with-static-standard-libraries.
924
925 2019-08-09 Nick Clifton <nickc@redhat.com>
926
927 * libiberty: Sync with gcc. Bring in:
928 2019-08-08 Martin Liska <mliska@suse.cz>
929
930 PR bootstrap/91352
931 * lrealpath.c (is_valid_fd): New function.
932
933 2019-07-24 Martin Liska <mliska@suse.cz>
934
935 PR lto/91228
936 * simple-object-elf.c (simple_object_elf_copy_lto_debug_sections):
937 Find first '\0' starting from gnu_lto + 1.
938
939 2019-07-12 Ren Kimura <rkx1209dev@gmail.com>
940
941 * simple-object-elf.c (simple_object_elf_match): Check zero value shstrndx.
942 This fixes a Bug 90924.
943
944 2019-07-22 Martin Liska <mliska@suse.cz>
945
946 * simple-object-elf.c (simple_object_elf_copy_lto_debug_sections):
947 Do not search for gnu_lto_v1, but search for first '\0'.
948
949 2019-07-18 Eduard-Mihai Burtescu <eddyb@lyken.rs>
950
951 * cplus-dem.c: Include rust-demangle.h.
952 * rust-demangle.c: Include rust-demangle.h.
953 * rust-demangle.h: New file.
954
955 2019-05-31 Michael Forney <mforney@mforney.org>
956
957 * cp-demangle.c: Don't define CP_DYNAMIC_ARRAYS if __STDC_NO_VLA__
958 is non-zero.
959
960 2019-04-30 Ben L <bobsayshilol@live.co.uk>
961
962 * d-demangle.c (dlang_parse_assocarray): Correctly handle error result.
963 * testsuite/d-demangle-expected: Add testcase.
964
965 * d-demangle.c (dlang_parse_tuple): Correctly handle error result.
966 * testsuite/d-demangle-expected: Add testcase.
967
968 * d-demangle.c (dlang_parse_structlit): Correctly handle error result.
969 * testsuite/d-demangle-expected: Add testcase.
970
971 * d-demangle.c (dlang_parse_arrayliteral): Correctly handle error result.
972 * testsuite/d-demangle-expected: Add testcase.
973
974 * d-demangle.c (dlang_parse_integer): Fix stack underflow.
975 * testsuite/d-demangle-expected: Add testcase.
976
977 * cp-demangle (d_print_comp_inner): Guard against a NULL 'typed_name'.
978 * testsuite/demangle-expected: Add testcase.
979
980 * cp-demangle.c (d_encoding): Guard against NULL return values from
981 d_right (dc).
982 * testsuite/demangle-expected: Add testcase.
983
984 2019-04-29 Ben L <bobsayshilol@live.co.uk>
985
986 * cp-demangle.c (d_expression_1): Don't peek ahead unless the current
987 char is valid.
988 * testsuite/demangle-expected: Add testcase.
989
990 2019-04-10 Nick Clifton <nickc@redhat.com>
991
992 PR 89394
993 * cp-demangle.c (cplus_demangle_fill_name): Reject negative
994 lengths.
995 (d_count_templates_scopes): Replace num_templates and num_scopes
996 parameters with a struct d_print_info pointer parameter. Adjust
997 body of the function accordingly. Add recursion counter and check
998 that the recursion limit is not reached.
999 (d_print_init): Pass dpi parameter to d_count_templates_scopes.
1000 Reset recursion counter afterwards, unless the recursion limit was
1001 reached.
1002
1003 2019-07-13 Joel Brobecker <brobecker@adacore.com>
1004
1005 * src-release (getver): If $tool/gdbsupport/create-version.sh
1006 exists, use that to determine the version number.
1007
1008 2019-06-21 Andreas Schwab <schwab@linux-m68k.org>
1009
1010 * src-release.sh (GDB_SUPPORT_DIRS): Add gnulib.
1011
1012 2019-06-14 Tom Tromey <tom@tromey.com>
1013
1014 * MAINTAINERS: Add gnulib.
1015 * gnulib: New directory, move from gdb/gnulib.
1016 * configure.ac (host_libs): Add gnulib.
1017 * configure: Rebuild.
1018 * Makefile.def (host_modules, dependencies): Add gnulib.
1019 * Makefile.in: Rebuild.
1020
1021 2019-06-03 Nick Clifton <nickc@redhat.com>
1022
1023 Revert:
1024 2019-05-29 Nick Clifton <nickc@redhat.com>
1025
1026 * configure.ac (noconfigdirs): Add libctf if the target does not use
1027 the ELF file format.
1028 * configure: Regenerate.
1029
1030 2019-05-29 Nick Clifton <nickc@redhat.com>
1031
1032 * src-release.sh (do_proto_toplev): Add libctf to list of
1033 directories that can be disabled.
1034
1035 2019-05-29 Nick Clifton <nickc@redhat.com>
1036
1037 * configure.ac (noconfigdirs): Add libctf if the target does not use
1038 the ELF file format.
1039 * configure: Regenerate.
1040
1041 2019-05-28 Nick Alcock <nick.alcock@oracle.com>
1042
1043 * Makefile.def (dependencies): configure-libctf depends on all-bfd
1044 and all its deps.
1045 * Makefile.in: Regenerated.
1046
1047 2019-05-28 Nick Alcock <nick.alcock@oracle.com>
1048
1049 * MAINTAINERS: Add libctf.
1050
1051 2019-05-28 Nick Alcock <nick.alcock@oracle.com>
1052
1053 * Makefile.def (host_modules): Add libctf.
1054 * Makefile.def (dependencies): Likewise.
1055 libctf depends on zlib, libiberty, and bfd.
1056 * Makefile.in: Regenerated.
1057 * configure.ac (host_libs): Add libctf.
1058 * configure: Regenerated.
1059
1060 2019-05-23 Jose E. Marchesi <jose.marchesi@oracle.com>
1061
1062 * config.guess: Synchronize with config project master sources.
1063 * config.sub: Likewise.
1064 * readline/support/config.guess: Likewise.
1065 * readline/support/config.sub: Likewise.
1066
1067 2019-04-10 Nick Clifton <nickc@redhat.com>
1068
1069 * libiberty: Sync with gcc. Bring in:
1070 2019-04-10 Nick Clifton <nickc@redhat.com>
1071
1072 PR 89394
1073 * cp-demangle.c (cplus_demangle_fill_name): Reject negative
1074 lengths.
1075 (d_count_templates_scopes): Replace num_templates and num_scopes
1076 parameters with a struct d_print_info pointer parameter. Adjust
1077 body of the function accordingly. Add recursion counter and check
1078 that the recursion limit is not reached.
1079 (d_print_init): Pass dpi parameter to d_count_templates_scopes.
1080 Reset recursion counter afterwards, unless the recursion limit was
1081 reached.
1082
1083 2018-06-24 Nick Clifton <nickc@redhat.com>
1084
1085 2.32 branch created.
1086
1087 2019-01-14 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
1088
1089 Merge from GCC:
1090 PR target/88535
1091 * config.guess: Import upstream version 2019-01-03.
1092 * config.sub: Import upstream version 2019-01-01.
1093
1094 2019-01-10 Nick Clifton <nickc@redhat.com>
1095
1096 * libiberty: Sync with gcc. Bring in:
1097 2019-01-09 Sandra Loosemore <sandra@codesourcery.com>
1098
1099 PR other/16615
1100
1101 * cp-demangle.c: Mechanically replace "can not" with "cannot".
1102 * floatformat.c: Likewise.
1103 * strerror.c: Likewise.
1104
1105 2018-12-22 Jason Merrill <jason@redhat.com>
1106
1107 Remove support for demangling GCC 2.x era mangling schemes.
1108 * cplus-dem.c: Remove cplus_mangle_opname, cplus_demangle_opname,
1109 internal_cplus_demangle, and all subroutines.
1110 (libiberty_demanglers): Remove entries for ancient GNU (pre-3.0),
1111 Lucid, ARM, HP, and EDG demangling styles.
1112 (cplus_demangle): Remove 'work' variable. Don't call
1113 internal_cplus_demangle.
1114
1115 2019-01-03 Дилян Палаузов <dilyan.palauzov@aegee.org>
1116
1117 * configure.ac: Don't configure readline if --with-system-readline is
1118 used.
1119 * configure: Re-generate.
1120
1121 2018-10-31 Joseph Myers <joseph@codesourcery.com>
1122
1123 Merge from GCC:
1124 PR bootstrap/82856
1125 * multilib.am: New file. From automake.
1126
1127 2018-09-12 Sergio Durigan Junior <sergiodj@redhat.com>
1128
1129 * src-release.sh (GDB_SUPPORT_DIRS): Add "contrib".
1130
1131 2018-07-16 Nick Clifton <nickc@redhat.com>
1132
1133 * src-release.sh (DEVO_SUPPORT): Add test-driver and ar-lib.
1134
1135 2018-07-06 Sebastian Huber <sebastian.huber@embedded-brains.de>
1136
1137 * config.sub: Sync with upstream version 2018-07-03.
1138
1139 2018-07-05 Sebastian Huber <sebastian.huber@embedded-brains.de>
1140
1141 * config.guess: Sync with upstream version 2018-06-26.
1142 * config.sub: Sync with upstream version 2018-07-02.
1143
1144 2018-06-29 Alexandre Oliva <oliva@adacore.com>
1145
1146 * configure.ac: Introduce support for @unless/@endunless.
1147 * Makefile.tpl (dep-kind): Rewrite with cond; return
1148 postbootstrap in some cases.
1149 (make-postboot-dep, postboot-targets): New.
1150 (dependencies): Do not output postbootstrap dependencies at
1151 first. Output non-target ones changed for configure to depend
1152 on stage_last @if gcc-bootstrap, and the original deps @unless
1153 gcc-bootstrap.
1154 * configure.in, Makefile.in: Rebuilt.
1155
1156 2018-06-24 Nick Clifton <nickc@redhat.com>
1157
1158 * configure: Regenerate.
1159
1160 2018-06-19 Simon Marchi <simon.marchi@ericsson.com>
1161
1162 * libtool.m4: Use AC_LANG_SOURCE.
1163 * configure.ac: Remove AC_PREREQ, use AC_LANG_SOURCE.
1164 * README-maintainer-mode: Update version requirements.
1165 * ar-lib: New file.
1166 * test-driver: New file.
1167 * configure: Re-generate.
1168
1169 2018-06-18 Eric Botcazou <ebotcazou@adacore.com>
1170
1171 * Makefile.def (fortran): Add check-target-libgomp-fortran.
1172 * Makefile.tpl (check-target-libgomp-fortran): New phony target.
1173 * Makefile.in: Regenerate.
1174
1175 * configure: Regenerate.
1176
1177 2018-06-18 Simon Marchi <simon.marchi@ericsson.com>
1178
1179 * configure.ac: Sync with GCC, remove MPX-related things.
1180
1181 2018-05-01 Nick Clifton <nickc@redhat.com>
1182
1183 * config.guess: Synchronize with config project master sources.
1184 * config.sub: Likewise.
1185
1186 2018-05-01 Francois H. Theron <francois.theron@netronome.com>
1187
1188 * configure.ac: Added "nfp" target.
1189 * configure: Regenerate.
1190
1191 2018-02-13 Maciej W. Rozycki <macro@mips.com>
1192
1193 * configure.ac <wasm32-*-*> (noconfigdirs): Add `ld'.
1194 * configure: Regenerate.
1195
1196 2018-01-30 Nick Clifton <nickc@redhat.com>
1197
1198 * src-release.sh (do_proto_toplev): Add patterns for more junk files
1199 to delete before creating the tarball.
1200
1201 2018-01-29 Nick Clifton <nickc@redhat.com>
1202
1203 * src-release.sh (do_proto_toplev): Strip patch remnant files from
1204 the sources before creating the tarball.
1205
1206 2018-01-13 Nick Clifton <nickc@redhat.com>
1207
1208 * src-release.sh: Update copyright notice. Change reference to devo
1209 to be a reference to root.
1210
1211 2018-01-10 Nick Clifton <nickc@redhat.com>
1212
1213 * config-ml.in: Sync with gcc sources.
1214 * config.guess: Likewise.
1215 * config.sub: Likewise.
1216 * configure.ac: Likewise.
1217 * configure: Regenerate.
1218
1219 2017-12-14 Nick Clifton <nickc@redhat.com>
1220
1221 * COPYING.LIBGLOSS: Update address of FSF in copyright notice.
1222
1223 2017-12-12 Stafford Horne <shorne@gmail.com>
1224
1225 * configure.ac: Remove logic adding gdb to noconfigsdirs for or1k.
1226 * configure: Regenerate.
1227
1228 2017-09-15 Nick Clifton <nickc@redhat.com>
1229
1230 * src-release.sh (LZIPPROG): New define. Provides the name of the
1231 lzip program.
1232 (do_lz): New function. Compresses a tarball using the lzip
1233 program.
1234 (do_compress): Add support for lzip compression.
1235 (usage): Mention -l option.
1236 (build_release): Support -l option to invoke lzip compression.
1237
1238 2017-09-15 Alan Modra <amodra@gmail.com>
1239
1240 * src-release.sh (do_proto_toplev): Revert last patch. Enable or
1241 disable binutils, gas, gdb, gold, gprof, ld, libdecnumber, readline,
1242 and sim depending on $tool and $support_files. Echo configure line.
1243
1244 2017-09-14 Matt Rice <ratmice@gmail.com>
1245
1246 * src-release.sh (do_proto_toplev): Enable gold during release process.
1247
1248 2017-04-13 Andrew Jenner <andrew@codesourcery.com>
1249
1250 * config.sub: Sync with master version in config project.
1251
1252 2017-04-03 Andrew Jenner <andrew@codesourcery.com>
1253
1254 * config.sub: Handle ia16 in $basic_machine.
1255
1256 bfd/
1257 * config.bfd: Handle ia16.
1258
1259 gas/
1260 * configure.tgt: Handle ia16.
1261
1262 ld/
1263 * configure.tgt: Handle ia16.
1264
1265 2017-03-22 Nick Clifton <nickc@redhat.com>
1266
1267 * config.sub: Sync with master version in config project.
1268 * config.guess: Likewise.
1269
1270 2017-01-23 Nick Clifton <nickc@redhat.com>
1271
1272 * configure.ac: Update year in copyright notice.
1273 Sync from FSF GCC mainline, bringing in the following patches.
1274 * Makefile.def: Likewise.
1275 * Makefile.tpl: Likewise.
1276 * configure: Regenerate.
1277 * Makefile.in: Regenerate.
1278
1279 2016-12-21 Jakub Jelinek <jakub@redhat.com>
1280
1281 * configure.ac: Don't bootstrap libmpx unless --with-build-config
1282 includes bootstrap-mpx.
1283
1284 2016-12-01 Matthias Klose <doko@ubuntu.com>
1285
1286 * configure.ac: Don't use pkg-config to check for bdw-gc.
1287
1288 2016-11-30 Matthias Klose <doko@ubuntu.com>
1289
1290 * Makefile.def: Remove reference to boehm-gc target module.
1291 * configure.ac: Include pkg.m4, check for --with-target-bdw-gc
1292 options and for the bdw-gc pkg-config module.
1293
1294 2016-11-15 Matthias Klose <doko@ubuntu.com>
1295
1296 * config-ml.in: Remove references to GCJ.
1297 * configure.ac: Likewise.
1298
1299 2016-09-30 Jakub Jelinek <jakub@redhat.com>
1300
1301 * configure.ac: Add target-libffi to target_libraries.
1302 Readd libgcj target disablings, modified to only target-libffi.
1303 Readd target addition of go to unsupported languages.
1304
1305 2016-09-30 Andrew Haley <aph@redhat.com>
1306
1307 * Makefile.def: Remove libjava.
1308 * Makefile.tpl: Likewise.
1309 * configure.ac: Likewise.
1310
1311 2016-09-26 Anton Kolesov <Anton.Kolesov@synopsys.com>
1312
1313 * configure.ac: Disable "sim" directory for arc*-*-*.
1314
1315 2016-09-12 Maciej W. Rozycki <macro@imgtec.com>
1316
1317 * configure.ac: Check for the minimum in-tree MPFR version
1318 handled.
1319
1320 2016-12-31 Alan Modra <amodra@gmail.com>
1321
1322 * config.sub: Import from upstream.
1323
1324 2016-12-08 Alan Modra <amodra@gmail.com>
1325
1326 * configure: Regenerate.
1327
1328 2016-12-02 Josh Conner <joshconner@google.com>
1329
1330 * configure.ac: Add fuchsia to targets that use ELF.
1331 * configure: Regenerated.
1332
1333 2016-11-07 Doug Evans <dje@google.com>
1334
1335 * config.sub: Sync with upstream version 2016-11-03.
1336 git://git.sv.gnu.org/config.git
1337 * config.guess: Sync with upstream version 2016-10-02.
1338
1339 2016-09-27 Simon Marchi <simon.marchi@polymtl.ca>
1340
1341 * .gitignore: Add archives and make stamps.
1342
1343 2016-07-20 Yan-Ting Lin <currygt52@gmail.com>
1344
1345 * configure.ac (nds32*-*-*): Remove entry to enable gdb.
1346 * configure: Regenerated.
1347
1348 2016-06-28 Walter Lee <walt@tilera.com>
1349
1350 * configure.ac (tilepro-*-*): Add gdb to noconfigdirs.
1351 * configure: Regenerate.
1352
1353 2016-05-28 Alan Modra <amodra@gmail.com>
1354
1355 * Makefile.tpl (configure): Depend on m4 files included.
1356 * Makefile.in: Regenerate.
1357
1358 2016-05-27 Nick Clifton <nickc@redhat.com>
1359
1360 * config.guess (Alpha OSF1): Fix typo introduced during the most
1361 recent synchronization update.
1362
1363 2016-05-23 Nick Clifton <nickc@redhat.com>
1364
1365 * Import these patches from the gcc mainline:
1366
1367 2016-05-16 Jakub Sejdak <jakub.sejdak@phoesys.com>
1368
1369 * config.guess: Import version 2016-04-02 (newest).
1370 * config.sub: Import version 2016-05-10 (newest).
1371
1372 2016-04-19 Nick Clifton <nickc@redhat.com>
1373
1374 * Import this patch from the GCC mainline:
1375
1376 2016-04-13 Segher Boessenkool <segher@kernel.crashing.org>
1377
1378 PR bootstrap/70173
1379 * Makefile.tpl (local-distclean): Delete the libcc1, gnattools,
1380 and gotools directories. Delete the stage_final file.
1381 * Makefile.in: Regenerate.
1382
1383 2016-03-17 Cary Coutant <ccoutant@gmail.com>
1384
1385 * configure.ac: Add mips and s390 to the gold target check.
1386 * configure: Regenerate.
1387
1388 2016-02-10 Nick Clifton <nickc@redhat.com>
1389
1390 Import these patches from the GCC mainline:
1391
1392 2016-01-12 Andris Pavenis <andris.pavenis@iki.fi>
1393
1394 * configure.ac: Enable LTO for DJGPP
1395 * configure: Regenerate
1396
1397 2016-01-24 Mikhail Maltsev <maltsevm@gmail.com>
1398
1399 PR bootstrap/69329
1400 * Makefile.tpl (BASE_FLAGS_TO_PASS): Add LSAN_OPTIONS.
1401 * Makefile.in: Regenerate.
1402
1403 2016-01-25 Aditya Kumar <aditya.k7@samsung.com>
1404 Sebastian Pop <s.pop@samsung.com>
1405
1406 * Makefile.in: Regenerate.
1407 * Makefile.tpl: Export ISLVER.
1408 * configure: Regenerate.
1409 * config/isl.m4: Detect isl-0.15.
1410
1411 2016-01-29 Sebastian Pop <s.pop@samsung.com>
1412
1413 * config/isl.m4: Add comments about isl-0.16.
1414 * configure: Regenerate.
1415
1416 2016-01-12 H.J. Lu <hongjiu.lu@intel.com>
1417
1418 Sync with GCC
1419 2015-11-26 David Edelsohn <dje.gcc@gmail.com>
1420
1421 * m4/libtool.m4 (export_symbols_cmds) [AIX]: Add global TLS "L"
1422 symbols.
1423
1424 2016-01-12 Bernd Edlinger <bernd.edlinger@hotmail.de>
1425
1426 PR bootstrap/69134
1427 * Makefile.def (mpfr): Disable assembler.
1428 * Makefile.in: Regenerate.
1429
1430 2016-01-11 Nick Clifton <nickc@redhat.com>
1431
1432 Import the following changes from the GCC mainline:
1433
1434 2015-11-13 Tsvetkova Alexandra <aleksandra.tsvetkova@intel.com>
1435
1436 * configure.ac: Enable libmpx by default.
1437 * configure: Regenerated.
1438
1439 2015-11-19 Martin Liska <mliska@suse.cz>
1440
1441 * .gitignore: Add .clang-format to ignored files.
1442 * Makefile.tpl: Add clang-format.
1443 * Makefile.in: Regenerate.
1444
1445 2015-12-01 Andreas Tobler <andreast@gcc.gnu.org>
1446
1447 PR libffi/65726
1448 * Makefile.def (lang_env_dependencies): Make libffi depend
1449 on cxx.
1450 * Makefile.in: Regenerate.
1451
1452 2015-12-02 Ian Lance Taylor <iant@google.com>
1453
1454 PR go/66147
1455 * Makefile.tpl (HOST_EXPORTS): Add XGCC_FLAGS_FOR_TARGET.
1456 * Makefile.in: Regenerate.
1457
1458 2015-12-17 Nathan Sidwell <nathan@acm.org>
1459
1460 * config/isl.m4 (ISL_CHECK_VERSION): Add gmp libs.
1461 * configure: Regenerate.
1462
1463 2015-12-17 Sebastian Pop <s.pop@samsung.com>
1464
1465 * Makefile.in: Replace ISL with isl.
1466 * Makefile.tpl: Same.
1467 * config/isl.m4: Same.
1468 * configure.ac: Same.
1469 * contrib/download_prerequisites: Same.
1470 * configure: Regenerate.
1471
1472 2016-01-01 Ben Elliston <bje@gnu.org>
1473
1474 * config.guess: Import version 2016-01-01.
1475 * config.sub: Likewise.
1476
1477 2015-11-20 Tristan Gingold <gingold@adacore.com>
1478
1479 * configure.ac: Add aarch64-*-darwin* and arm-*-darwin*.
1480 * configure: Regenerate.
1481
1482 2015-10-21 Nick Clifton <nickc@redhat.com>
1483
1484 PR gas/19109
1485 * configure.ac: Note the 'none' is an acceptable argument to
1486 --enable-compressed-debug-sections.
1487 * configure: Regenerate.
1488
1489 2015-10-20 H.J. Lu <hongjiu.lu@intel.com>
1490
1491 PR gas/19109
1492 * configure.ac: Add
1493 --enable-compressed-debug-sections={all,gas,gold,ld}.
1494 * configure: Regenerated.
1495
1496 2015-09-30 Nick Clifton <nickc@redhat.com>
1497
1498 Import the following patches from the GCC mainline:
1499
1500 2015-08-23 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
1501
1502 PR libfortran/54572
1503 * Makefile.def: Make libgfortran depend on libbacktrace.
1504 * Makefile.in: Regenerate.
1505
1506 2015-08-12 Tom de Vries <tom@codesourcery.com>
1507
1508 PR other/67092
1509 PR other/67098
1510 * configure.ac: Remove --with_host_libstdcxx support.
1511 * configure: Regenerate.
1512
1513 2015-08-10 Thomas Schwinge <thomas@codesourcery.com>
1514 Jakub Jelinek <jakub@redhat.com>
1515
1516 * configure.ac (noconfigdirs): Don't add "target-libgomp" for target
1517 nvptx*-*-*.
1518 * configure: Regenerate.
1519
1520 2015-08-07 H.J. Lu <hongjiu.lu@intel.com>
1521
1522 Sync with GCC
1523 2015-07-28 Ben Elliston <bje@gnu.org>
1524
1525 * config.sub, config.guess: Import from upstream.
1526
1527 2015-08-06 Yaakov Selkowitz <yselkowi@redhat.com>
1528
1529 * Makefile.def (libiconv): Define bootstrap=true.
1530 Mark pdf/html/info as missing.
1531 (configure-gcc): Depend on all-libiconv.
1532 (all-gcc): Ditto.
1533 (configure-libcpp): Ditto.
1534 (all-libcpp): Ditto.
1535 (configure-intl): Ditto.
1536 (all-intl): Ditto.
1537 * Makefile.in: Regenerate.
1538
1539 2015-07-27 H.J. Lu <hongjiu.lu@intel.com>
1540
1541 Sync with GCC
1542 2015-07-24 Michael Darling <darlingm@gmail.com>
1543
1544 PR other/66259
1545 * config-ml.in: Reflects renaming of configure.in to configure.ac
1546 * configure: Likewise
1547 * configure.ac: Likewise
1548
1549 2015-07-14 H.J. Lu <hongjiu.lu@intel.com>
1550
1551 * Makefile.in: Regenerated.
1552
1553 Sync with GCC
1554 2015-05-21 Jason Merrill <jason@redhat.com>
1555
1556 * Makefile.tpl: Update comments.
1557
1558 2015-04-22 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
1559
1560 * Makefile.tpl: Remove surplus whitespace throughout.
1561
1562 2015-03-25 Martin Liska <mliska@suse.cz>
1563 Yury Gribov <y.gribov@samsung.com>
1564
1565 * Makefile.tpl: Fix ln source location for vimrc file.
1566
1567 2015-07-14 H.J. Lu <hongjiu.lu@intel.com>
1568
1569 Sync with GCC
1570 2015-05-16 James Bowman <james.bowman@ftdichip.com>
1571
1572 * configure.ac: FT32 target added.
1573 * configure: Regenerate.
1574
1575 2015-07-14 H.J. Lu <hongjiu.lu@intel.com>
1576
1577 Sync with GCC
1578 2015-06-02 Jason Merrill <jason@redhat.com>
1579
1580 PR bootstrap/66319
1581 * configure.ac: Use -std=gnu++98.
1582
1583 2015-05-28 Mike Frysinger <vapier@gentoo.org>
1584
1585 * configure.ac (--vtable-verify): Use AS_HELP_STRING for help.
1586 * configure: Regenerate.
1587
1588 2015-05-11 Paulo Matos <paulo@matos-sorge.com>
1589
1590 * configure.ac: Fix typo.
1591 * configure: Regenerate.
1592
1593 2015-05-03 Matthias Klose <doko@ubuntu.com>
1594
1595 * configure.ac: Match $host configured with triplets.
1596 * configure: Regenerate.
1597
1598 2015-04-17 Jakub Jelinek <jakub@redhat.com>
1599
1600 PR bootstrap/62077
1601 * configure.ac (--enable-stage1-checking): Default to
1602 release,misc,gimple,rtlflag,tree,types if --disable-checking
1603 or --enable-checking is not specified and DEV-PHASE is not
1604 experimental.
1605 * configure: Regenerated.
1606
1607 2015-03-27 Uros Bizjak <ubizjak@gmail.com>
1608
1609 Install back PR target/47230 fix (Revert the revert).
1610
1611 2015-06-30 H.J. Lu <hongjiu.lu@intel.com>
1612
1613 * configure.ac (ospace_frag): Enable for i?86*-*-elfiamcu
1614 target.
1615 * configure: Regenerate.
1616
1617 2015-05-13 John David Anglin <dave.anglin@bell.net>
1618
1619 * configure.ac: Disable configuration of GDB for HPUX targets.
1620 * configure: Regenerate.
1621
1622 2015-05-01 H.J. Lu <hongjiu.lu@intel.com>
1623
1624 PR ld/18355
1625 * Makefile.def: Add extra_configure_flags to host zlib.
1626 * configure.ac (extra_host_zlib_configure_flags): New. Set
1627 to --enable-host-shared When bfd is to be built as shared
1628 library. AC_SUBST.
1629 * Makefile.in: Regenerated.
1630
1631 2015-04-15 Mike Frysinger <vapier@gentoo.org>
1632 Hans-Peter Nilsson <hp@axis.com>
1633
1634 Adjust src-release.sh for sim using the gdb create-version.sh.
1635 * src-release.sh (tar_compress): If there's a fifth parameter,
1636 use that in the getver call instead of $tool.
1637 (sim_release): Pass gdb as fifth parameter to tar_compress.
1638 (SIM_SUPPORT_DIRS): Add gdb/common/create-version.sh.
1639
1640 2015-04-14 Max Ostapenko <m.ostapenko@partner.samsung.com>
1641
1642 * Makefile.tpl (EXTRA_HOST_EXPORTS): New variables.
1643 (EXTRA_BOOTSTRAP_FLAGS): Likewise.
1644 (check-[+module+]): Add EXTRA_HOST_EXPORTS and EXTRA_BOOTSTRAP_FLAGS.
1645 * Makefile.in: Regenerate.
1646
1647 2015-04-01 H.J. Lu <hongjiu.lu@intel.com>
1648
1649 * configure.ac: Add --with-system-zlib.
1650 * configure: Regenerated.
1651
1652 2015-03-31 H.J. Lu <hongjiu.lu@intel.com>
1653
1654 * src-release.sh: Don't configure with --with-target-subdir=.
1655 --disable-multilib.
1656
1657 2015-03-31 H.J. Lu <hongjiu.lu@intel.com>
1658
1659 * src-release.sh (DEVO_SUPPORT): Replace src-release with
1660 src-release.sh.
1661
1662 2015-03-30 Ed Schouten <ed@nuxi.nl>
1663
1664 * config.sub: Update from upstream, to 2015-03-04 version.
1665 * config.guess: Likewise.
1666
1667 2015-03-30 H.J. Lu <hongjiu.lu@intel.com>
1668
1669 * Makefile.def (dependencies): Add all-zlib to all-bfd.
1670 * Makefile.in: Regenerated.
1671
1672 2015-03-28 H.J. Lu <hongjiu.lu@intel.com>
1673
1674 * src-release.sh (do_proto_toplev): Configure with --target
1675 --with-target-subdir and --disable-multilib.
1676 (BINUTILS_SUPPORT_DIRS): Add zlib.
1677 (GAS_SUPPORT_DIRS): Likewise.
1678 (GDB_SUPPORT_DIRS): Likewise.
1679 (SIM_SUPPORT_DIRS): Likewise.
1680
1681 2015-03-17 H.J. Lu <hongjiu.lu@intel.com>
1682
1683 * configure.ac (target_configdirs): Exclude target-zlib if
1684 target-libjava isn't built.
1685 * configure: Regenerated.
1686
1687 2015-03-17 H.J. Lu <hongjiu.lu@intel.com>
1688
1689 Sync with GCC
1690 2014-06-13 Thomas Schwinge <thomas@codesourcery.com>
1691
1692 * config-ml.in: Robustify ac_configure_args parsing.
1693
1694 2015-03-16 H.J. Lu <hongjiu.lu@intel.com>
1695
1696 * Makefile.def: Updated from GCC trunk.
1697 * Makefile.tpl: Likewise.
1698 * configure.ac: Likewise.
1699 * Makefile.in: Regenerated.
1700 * configure: Likewise.
1701
1702 2015-01-28 James Bowman <james.bowman@ftdichip.com>
1703
1704 * configure.ac: Add FT32 support.
1705 * configure: Regenerate.
1706
1707 2015-01-12 Anthony Green <green@moxielogic.com>
1708
1709 * configure.ac: Don't disable gprof for moxie.
1710 * configure: Rebuild.
1711
1712 2015-01-03 Andrew Pinski <apinski@cavium.com>
1713
1714 * Makefile.def (flags_to_pass): Pass OBJCOPY_FOR_TARGET also.
1715 * Makefile.tpl (HOST_EXPORTS): Add OBJCOPY_FOR_TARGET.
1716 (BASE_TARGET_EXPORTS): Add OBJCOPY.
1717 (OBJCOPY_FOR_TARGET): New variable.
1718 (EXTRA_TARGET_FLAGS): Add OBJCOPY.
1719 * Makefile.in: Regenerate.
1720 * configure.ac: Check for already installed target objcopy.
1721 Also GCC_TARGET_TOOL on objcopy.
1722 * configure: Regenerate.
1723
1724 2015-01-02 Hans-Peter Nilsson <hp@bitrange.com>
1725
1726 * config.sub: Update from upstream, to 2015-01-01 version.
1727 * config.guess: Ditto.
1728
1729 2014-12-06 Eric Botcazou <ebotcazou@adacore.com>
1730
1731 * config.sub: Update from upstream config repo.
1732
1733 2014-11-24 H.J. Lu <hongjiu.lu@intel.com>
1734
1735 * libtool.m4: Updated from GCC trunk.
1736
1737 2014-11-16 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1738
1739 * config.guess: Update from upstream config repo.
1740 * config.sub: Ditto.
1741
1742 2014-11-16 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1743
1744 * move-if-change: Update from upstream gnulib.
1745
1746 2014-11-16 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1747
1748 * compile: Sync with upstream Automake.
1749 * depcomp: Ditto.
1750 * install-sh: Ditto.
1751 * missing: Ditto.
1752 * mkinstalldirs: Ditto.
1753 * ylwrap: Ditto.
1754
1755 2014-10-15 Tristan Gingold <gingold@adacore.com>
1756
1757 * src-release.sh (do_proto_toplev): Configure with --target.
1758
1759 2014-10-03 Jing Yu <jingyu@google.com>
1760
1761 * configure.ac: Add aarch64 to list of targets that support gold.
1762 * configure: Regenerate.
1763
1764 2014-09-12 Andrew Bennett <andrew.bennett@imgtec.com>
1765
1766 * configure.ac: Add mips*-img-elf* target triple.
1767 * configure: Regenerate.
1768
1769 2014-09-06 Kuan-Lin Chen <kuanlinchentw@gmail.com>
1770 * configure: Disable gdb for nds32*-*-* until supported.
1771 * configure.ac: Disable gdb for nds32*-*-* until supported.
1772
1773 2014-09-05 Joel Brobecker <brobecker@adacore.com>
1774
1775 * configure: Regenerate.
1776
1777 2014-08-27 Will Newton <will.newton@linaro.org>
1778
1779 * src-release.sh: New file.
1780 * src-release: Remove file.
1781
1782 2014-07-27 Joel Sherrill <joel.sherrill@oarcorp.com>
1783
1784 GDB not supported for or1k*-*-rtems*
1785 * configure.ac (or1k*-*-rtems*): gdb not supported. The ordering
1786 of the stanzas results in this not being caught by or1k*-*-* later.
1787 * configure. Regenerated.
1788
1789 2014-07-25 Samuel Bronson <naesten@gmail.com>
1790
1791 * .gitattributes: New file for use with git-merge-changelog.
1792
1793 2014-07-21 Joel Sherrill <joel.sherrill@oarcorp.com>
1794
1795 Disable gdb for or1k*-*-* until supported
1796 * configure.ac (or1k*-*-*): Disable gdb.
1797 * configure: Regenerated.
1798
1799 2014-05-14 Sandra Loosemore <sandra@codesourcery.com>
1800
1801 * configure.ac (target_makefile_frag): Set for nios2-*-elf*.
1802 * configure: Regenerated.
1803
1804 2014-03-26 Jakub Jelinek <jakub@redhat.com>
1805
1806 PR sanitizer/56781
1807 * Makefile.def: Set bootstrap=true; for host fixincludes.
1808 * configure.ac: Don't bootstrap host fixincludes unless
1809 --with-build-config=bootstrap-{a,ub}san.
1810 * Makefile.in: Regenerated.
1811 * configure: Regenerated.
1812
1813 2014-03-21 Jakub Jelinek <jakub@redhat.com>
1814
1815 * configure.ac: Move BUILD_CONFIG set up earlier. Add
1816 --enable-vtable-verify option parsing. Don't add
1817 target-libsanitizer to bootstrap_target_libs unless
1818 --with-build-config=bootstrap-asan or
1819 --with-build-config=bootstrap-ubsan. Don't add target-libvtv
1820 to bootstrap_target_libs unless --enable-vtable-verify.
1821 * configure: Regenerated.
1822
1823 2014-03-07 Jakub Jelinek <jakub@redhat.com>
1824
1825 PR bootstrap/58572
1826 * Makefile.tpl (POSTSTAGE1_CXX_EXPORT): Use -isystem instead of
1827 -I for libstdc++-v3 includes if $(LEAN).
1828 * Makefile.in: Regenerated.
1829
1830 2014-02-24 Walter Lee <walt@tilera.com>
1831
1832 * configure.ac (tilepro-*-*) Change to tilepro*-*-*.
1833 (tilegx-*-*): Change to tilegx*-*-*.
1834 * configure: Regenerate.
1835
1836 2014-05-01 Richard Sandiford <rdsandiford@googlemail.com>
1837
1838 * config.sub, config.guess: Import from upstream.
1839
1840 2014-04-04 Eric Botcazou <ebotcazou@adacore.com>
1841
1842 PR bootstrap/60620
1843 * Makefile.def (dependencies): Make gnattools depend on libstdc++-v3.
1844 * Makefile.in: Regenerate.
1845
1846 2014-03-28 Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
1847
1848 * Makefile.def (dependencies): Make all-ld depend on all-binutils
1849 for WINDRES_FOR_TARGET in default-manifest.o rule.
1850 * Makefile.in: Regenerate.
1851
1852 2014-02-04 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
1853
1854 PR target/59788
1855 * ltmain.sh (opt_duplicate_compiler_generated_deps): Enable on
1856 *solaris2*.
1857
1858 2013-12-19 Keven Boell <keven.boell@intel.com>
1859
1860 * cp-namespace.c (cp_lookup_nested_symbol): Enable
1861 nested lookups for fortran modules.
1862 * dwarf2read.c (read_module): Add fortran module to
1863 the symbol table.
1864 (add_partial_symbol, add_partial_module): Add fortran
1865 module to the partial symbol table.
1866 (new_symbol_full): Create full symbol for fortran module.
1867 * f-exp.y (yylex): Add new module domain to be parsed.
1868 * symtab.h: New domain for fortran modules.
1869
1870 2013-12-19 Keven Boell <keven.boell@intel.com>
1871
1872 * f-exp.y (yylex): Add domain array to enable lookup
1873 in multiple domains. Loop over lookup domains and try
1874 to find requested symbol. Add STRUCT_DOMAIN to lookup
1875 domains to be able to query for user defined types.
1876
1877 2013-12-13 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
1878
1879 * configure.ac: Add user-friendly check for native x86_64-linux
1880 multilibs.
1881 * configure: Regenerate.
1882
1883 2013-11-23 Alan Modra <amodra@gmail.com>
1884
1885 * config.sub, config.guess: Import from upstream.
1886
1887 2013-11-07 Thomas Schwinge <thomas@codesourcery.com>
1888
1889 * Makefile.in: Regenerate.
1890
1891 * Makefile.tpl: Fix typo.
1892 * Makefile.in: Regenerate partially.
1893
1894 2013-11-04 Balaji V. Iyer <balaji.v.iyer@intel.com>
1895
1896 * configure.ac: Added libcilkrts to noconfig list when C++ is not
1897 supported.
1898 * configure: Regenerated.
1899
1900 2013-10-30 Jason Merrill <jason@redhat.com>
1901
1902 * Makefile.tpl (STAGE1_CONFIGURE_FLAGS): Pass
1903 --disable-build-format-warnings.
1904
1905 2013-10-29 Balaji V. Iyer <balaji.v.iyer@intel.com>
1906
1907 * Makefile.def: Add libcilkrts to target_modules. Make libcilkrts
1908 depend on libstdc++ and libgcc.
1909 * configure: Regenerate.
1910 * configure.ac: Added libcilkrts to target binaries. Also, restrict
1911 libcilkrts for POSIX and i*86, and x86_64 architectures.
1912 * Makefile.in: Added libcilkrts related fields to support building it.
1913
1914 2013-10-26 Jeff Law <law@redhat.com>
1915
1916 * Makefile.def (target_modules): Remove libmudflap
1917 (languages): Remove check-target-libmudflap).
1918 * Makefile.in: Rebuilt.
1919 * Makefile.tpl (check-target-libmudflap-c++): Remove.
1920 * configure.ac (target_libraries): Remove target-libmudflap.
1921 Remove checks which disabled libmudflap on some systems.
1922 * configure: Rebuilt.
1923 * libmudflap: Directory removed.
1924
1925 2013-10-16 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1926
1927 * configure.ac: Update from GCC.
1928 * configure: Regenerate.
1929
1930 2013-10-15 Hans-Peter Nilsson <hp@axis.com>
1931
1932 * src-release (do-proto-toplevel): Support subdir-path-prefixed
1933 files in SUPPORT_FILES.
1934 (SIM_SUPPORT_DIRS): New variable.
1935 (sim.tar.bz2): New rule.
1936
1937 2013-10-08 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1938
1939 * configure.ac: Update from GCC.
1940 * configure: Regenerate.
1941
1942 2013-10-01 Jeff Johnston <jjohnstn@redhat.com>
1943
1944 * COPYING.NEWLIB: Update with new copyright.
1945
1946 2013-09-21 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1947
1948 * configure.ac: Update from GCC.
1949 * configure: Regenerate.
1950
1951 2013-09-20 Alan Modra <amodra@gmail.com>
1952
1953 * libtool.m4 (_LT_ENABLE_LOCK <ld -m flags>): Remove non-canonical
1954 ppc host match. Support little-endian powerpc linux hosts.
1955
1956 2013-08-16 Joel Brobecker <brobecker@adacore.com>
1957
1958 * src-release (VER): When using $(TOOL)/common/create-version.sh,
1959 strip the "-cvs" suffix from the version number if present.
1960
1961 2013-08-12 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1962
1963 * configure.ac: Sync with GCC repo.
1964 * Makefile.def: Ditto.
1965 * configure: Regenerate.
1966 * Makefile.in: Ditto.
1967
1968 2013-07-22 Joel Brobecker <brobecker@adacore.com>
1969
1970 * src-release (VER): Use $(TOOL)/common/create-version.sh
1971 if it exists.
1972
1973 2013-06-22 Richard Sandiford <rdsandiford@googlemail.com>
1974
1975 * configure.ac (mips*-*-bsd*, mips*-*-ultrix*, mips*-*-osf*)
1976 (mips*-*-ecoff*, mips*-*-pe*, mips*-*-irix* [v4 and earlier])
1977 (mips*-*-lnews*, mips*-*-riscos*): Add gas and ld to noconfigdirs.
1978 * configure: Regenerate.
1979
1980 2013-06-01 George Thomas <george.thomas@atmel.com>
1981
1982 * include/opcode/avr.h: Rename AVR_ISA_XCH to AVR_ISA_RMW. Remove
1983 from AVR_ISA_XMEGA and add new AVR_ISA_XMEGAU
1984
1985 2013-05-06 Sandra Loosemore <sandra@codesourcery.com>
1986
1987 * COPYING.NEWLIB: Add Altera Corporation copyright.
1988
1989 2013-04-29 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1990
1991 * config.guess: Update from config repo.
1992 * config.sub: Ditto.
1993
1994 2013-04-22 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1995
1996 * Makefile.def: Sync with GCC.
1997 * Makefile.in: Regenerate.
1998
1999 2013-04-22 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2000
2001 * configure.ac: Sync with GCC.
2002 * configure: Regenerate.
2003
2004 2013-03-22 Mike Frysinger <vapier@gentoo.org>
2005
2006 * src-release (VER): Change bfd/configure.in sed to use the new
2007 `bfd/configure --version` output.
2008
2009 2013-02-15 Yufeng Zhang <yufeng.zhang@arm.com>
2010
2011 * configure.ac: Sync with GCC repo.
2012 * configure: Ditto.
2013
2014 2013-02-05 Ian Lance Taylor <iant@google.com>
2015
2016 PR go/55969
2017 * configure.ac: Disable libgo on some systems where it does not
2018 work.
2019 * configure: Rebuild.
2020
2021 2013-02-05 Alan Modra <amodra@gmail.com>
2022
2023 * configure: Regenerate after syncing config/.
2024
2025 2013-01-15 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2026
2027 * configure.ac: Sync with GCC repo.
2028 * configure: Ditto.
2029 * Makefile.def: Ditto.
2030 * Makefile.in: Ditto.
2031
2032 2013-01-11 Joel Brobecker <brobecker@adacore.com>
2033
2034 Sync with GCC, merge:
2035
2036 2013-01-09 Jason Merrill <jason@redhat.com>
2037
2038 * .gitignore: Import from gdb repository.
2039
2040 2013-01-11 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2041
2042 * config.sub: Update from config repo.
2043
2044 2013-01-11 Eric Botcazou <ebotcazou@adacore.com>
2045
2046 * Makefile.tpl (BOOT_ADAFLAGS): Remove -gnata.
2047 * Makefile.in: Regenerate.
2048
2049 2013-01-09 H.J. Lu <hongjiu.lu@intel.com>
2050
2051 * Makefile.def (configure-gcc): Depend on all-gmp.
2052 (all-gcc): Remove dependency on all-gmp.
2053 * Makefile.in: Regenerated.
2054
2055 2013-01-08 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2056
2057 * config.guess: Update from config repo.
2058 * config.sub: Ditto.
2059
2060 2013-01-07 Jeff Johnston <jjohnstn@redhat.com>
2061
2062 * COPYING.LIBGLOSS: Remove license for mips/lsi33k-stub.h which no longer
2063 exists and replace the new bfin license in its location.
2064
2065 2013-01-07 H.J. Lu <hongjiu.lu@intel.com>
2066
2067 PR gas/14899
2068 * Makefile.def (dependencies): Make all-binutils, all-gprof,
2069 all-ld and all-gold depend on all-gas.
2070 * Makefile.in: Regenerated.
2071
2072 2012-12-29 Ben Elliston <bje@gnu.org>
2073
2074 * config.guess: Update to 2012-12-29 version.
2075 * config.sub: Likewise.
2076
2077 2012-12-20 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2078
2079 * Makefile.def (install-target-libgo): Depend on
2080 install-target-libatomic. Merged from GCC repo.
2081 * Makefile.in: Regenerate.
2082
2083 2012-12-17 Jeff Johnston <jjohnstn@redhat.com>
2084
2085 * COPYING.LIBGLOSS: Add license for bfin libgloss.
2086
2087 2012-12-16 Thomas Schwinge <thomas@codesourcery.com>
2088
2089 * configure.ac (ENABLE_GOLD): Consider *-*-gnu* targets ELF.
2090 * configure: Regenerate.
2091
2092 2012-12-11 H.J. Lu <hongjiu.lu@intel.com>
2093
2094 * Makefile.def (target_modules): Add bootstrap=true and
2095 raw_cxx=true to libsanitizer.
2096 * configure.ac (bootstrap_target_libs): Add libsanitizer.
2097 * Makefile.in: Regenerated.
2098 * configure: Likewise.
2099
2100 2012-12-08 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2101
2102 * config.sub: Merge from config repo.
2103
2104 2012-11-30 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2105
2106 * configure.ac: Merge from GCC.
2107 * Makefile.tpl: Ditto.
2108 * Makefile.in: Ditto.
2109 * configure: Ditto.
2110
2111 2012-11-28 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2112
2113 * configure.ac (noconfigdirs): Merge from GCC.
2114 * configure: Regenerate.
2115
2116 2012-11-19 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2117
2118 * config.sub (arm): Merge from upstream: Handle armv[6-8] targets.
2119
2120 2012-11-14 Roland McGrath <mcgrathr@google.com>
2121
2122 * configure.ac (ENABLE_GOLD): Consider *-*-nacl* targets ELF.
2123 * configure: Regenerate.
2124
2125 2012-11-13 Richard Henderson <rth@redhat.com>
2126
2127 * configure.ac: Move libsanitizer logic to subdirectory.
2128 * configure: Regenerate.
2129
2130 2012-11-13 Dodji Seketeli <dodji@redhat.com>
2131
2132 * configure.ac: Enable libsanitizer just on x86 linux for now.
2133 * configure: Re-generate.
2134
2135 2012-11-13 David Edelsohn <dje.gcc@gmail.com>
2136
2137 * configure.ac: Merge libquadmath sections.
2138 * configure: Regenerate.
2139
2140 2012-11-12 Wei Mi <wmi@google.com>
2141
2142 * configure.ac: Add libsanitizer to target_libraries.
2143 * Makefile.def: Ditto.
2144 * configure: Regenerate.
2145 * Makefile.in: Regenerate.
2146
2147 2012-11-03 H.J. Lu <hongjiu.lu@intel.com>
2148
2149 * configure: Regenerated.
2150
2151 2012-11-03 Robert Mason <rbmj@verizon.net>
2152
2153 * configure.ac: add --disable-libstdcxx configure option
2154 and handle defaulted state only for VxWorks, ARM-wince-pe and AVR.
2155
2156 2012-10-24 Corinna Vinschen <corinna@vinschen.de>
2157
2158 * configure.ac (FLAGS_FOR_TARGET,target=cygwin): Fix for building
2159 against Mingw64 w32api.
2160 * configure: Regenerate.
2161
2162 2012-10-23 Eric Botcazou <ebotcazou@adacore.com>
2163
2164 PR bootstrap/54820
2165 * configure.ac (have_static_libs): Force 'no' for GCC version < 4.5.
2166 * configure: Regenerate.
2167
2168 2012-10-22 Eric Botcazou <ebotcazou@adacore.com>
2169
2170 PR bootstrap/54820
2171 * Makefile.tpl (STAGE1_FLAGS_TO_PASS): New variable.
2172 (all-[+prefix+][+module+]): Pass stage1_args to sub-makes.
2173 (all-stage[+id+]-[+prefix+][+module+]): Likewise, if prev is false.
2174 (clean-stage[+id+]-[+prefix+][+module+]): Likewise, if prev is false.
2175 (host_modules): Set stage1_args to STAGE1_FLAGS_TO_PASS.
2176 * Makefile.in: Regenerate.
2177 * configure.ac (have_static_libs): New variable and associated check.
2178 (stage1-ldflags): Move to after stage1_libs and set to -static-libstdc++
2179 -static-libgcc if stage1_libs is empty and have_static_libs is yes.
2180 * configure: Regenerate.
2181
2182 2012-10-10 David Holsgrove <david.holsgrove@xilinx.com>
2183
2184 * config.guess, config.sub: Include updated version from
2185 config-patches. Adds microblaze little endian support.
2186
2187 2012-09-28 Ian Lance Taylor <iant@google.com>
2188
2189 * Makefile.def: Make all-target-libgo depend on
2190 all-target-libbacktrace.
2191 * Makefile.in: Rebuild.
2192
2193 2012-09-26 Ian Lance Taylor <iant@google.com>
2194
2195 * Makefile.def: Make all-gcc depend on all-libbacktrace.
2196 * Makefile.in: Rebuild.
2197
2198 2012-09-06 Diego Novillo <dnovillo@google.com>
2199
2200 * configure.ac: Bump minimum GMP version to 4.2.3.
2201 * configure: Re-generate.
2202
2203 2012-09-05 Georg-Johann Lay <avr@gjlay.de>
2204
2205 PR target/54461
2206 * configure.ac (noconfigdirs,target=avr-*-*): Add target-newlib,
2207 target-libgloss if not configured --with-avrlibc=no.
2208 * configure: Regenerate.
2209
2210 2012-09-04 Jason Merrill <jason@redhat.com>
2211
2212 * configure.ac: Fix --enable-languages=all.
2213
2214 2012-09-03 Richard Guenther <rguenther@suse.de>
2215
2216 PR bootstrap/54138
2217 * configure.ac: Re-organize ISL / CLOOG checks to allow
2218 disabling with either --without-isl or --without-cloog.
2219 * configure: Regenerated.
2220
2221 2012-09-03 Georg-Johann Lay <avr@gjlay.de>
2222
2223 * configure.ac (noconfigdirs,target=avr): Add target-libquadmath.
2224 * configure: Regenerate.
2225
2226 2012-09-21 Steve Ellcey <sellcey@mips.com>
2227
2228 * configure.ac: Add mips*-mti-elf* target.
2229 * configure: Regenerate.
2230
2231 2012-09-19 Ian Lance Taylor <iant@google.com>
2232
2233 * configure.ac (host_libs): Add libbacktrace.
2234 (target_libraries): Add libbacktrace.
2235 * Makefile.def (host_modules): Add libbacktrace.
2236 (target_modules): Likewise.
2237 * configure, Makefile.in: Rebuild.
2238
2239 2012-09-15 Jiong Wang <jiwang@tilera.com>
2240
2241 * configure.ac (ENABLE_GOLD): support tilegx*
2242 * configure: rebuild
2243
2244 2012-09-14 David Edelsohn <dje.gcc@gmail.com>
2245
2246 PR target/38607
2247 Merge upstream change.
2248 * libtool.m4 (_LT_COMPILER_PIC): Add -fPIC to GCC and GXX for AIX.
2249
2250 * configure.ac: Add target-libquadmath to noconfigdirs for AIX.
2251 Add libgomp*.o to compare_exclusions for AIX.
2252 * configure: Regenerate.
2253
2254 2012-08-26 H.J. Lu <hongjiu.lu@intel.com>
2255
2256 PR binutils/4970
2257 * Makefile.def (host_modules): Rmove lib_path=.libs from bfd
2258 and opcodes.
2259 * Makefile.in: Regenerated.
2260
2261 2012-08-14 Diego Novillo <dnovillo@google.com>
2262
2263 Merge from cxx-conversion branch.
2264
2265 * Makefile.tpl (STAGE[+id+]_CXXFLAGS): Remove
2266 POSTSTAGE1_CONFIGURE_FLAGS.
2267 * Makefile.in: Regenerate.
2268 * configure.ac (ENABLE_BUILD_WITH_CXX): Remove. Update all users.
2269 Force C++ when bootstrapping.
2270 * configure: Regenerate.
2271
2272 2012-07-06 Richard Guenther <rguenther@suse.de>
2273
2274 * Makefile.def (cloog): Pass $(HOST_GMPINC) and $(HOST_ISLINC)
2275 as CPPFLAGS, pass path to built gmp as LDFLAGS, always use
2276 --with-gmp=system.
2277 * Makefile.in: Regenerated.
2278 * configure: Likewise.
2279
2280 2012-07-06 Richard Guenther <rguenther@suse.de>
2281
2282 * configure.ac (extra_isl_gmp_configure_flags): Initialize and subst.
2283 * Makefile.def (isl): Use extra_isl_gmp_configure_flags and
2284 supply V=1 as extra_make_flags.
2285 * configure: Regenerated.
2286 * Makefile.in: Likewise.
2287
2288 2012-07-03 Richard Guenther <rguenther@suse.de>
2289
2290 * Makfile.def (isl): Remove not necessary extra_exports and
2291 extra_make_flags.
2292 (cloog): Use $$CPPFLAGS instead of ${CPPFLAGS}.
2293 * Makefile.in: Regenerated.
2294
2295 2012-07-03 Richard Guenther <rguenther@suse.de>
2296
2297 * Makefile.def (cloog): Add V=1 to extra_make_flags.
2298 * configure.ac: If either the ISL or the CLooG check failed
2299 do not try to build in-tree versions.
2300 * Makefile.in: Regenerated.
2301 * configure: Regenerated.
2302
2303 2012-07-02 Richard Guenther <rguenther@suse.de>
2304 Michael Matz <matz@suse.de>
2305 Tobias Grosser <tobias@grosser.es>
2306 Sebastian Pop <sebpop@gmail.com>
2307
2308 * Makefile.def: Add ISL host module, remove PPL host module.
2309 Adjust ClooG host module to use the proper ISL.
2310 * Makefile.tpl: Pass ISL include flags instead of PPL ones.
2311 * configure.ac: Include config/isl.m4. Add ISL host library,
2312 remove PPL. Remove PPL configury, add ISL configury, adjust
2313 ClooG configury.
2314 * Makefile.in: Regenerated.
2315 * configure: Likewise.
2316
2317 2012-07-02 Richard Guenther <rguenther@suse.de>
2318
2319 Merge from graphite branch
2320 2011-07-21 Tobias Grosser <tobias@grosser.es>
2321
2322 * configure: Regenerated.
2323 * config/cloog.m4: Remove support for CLooG-ppl and CLooG-parma,
2324 both cloog.org and legacy versions. The only supported version will
2325 be CLooG with the isl backend.
2326
2327 2011-07-21 Tobias Grosser <tobias@grosser.es>
2328
2329 * configure: Regenerated.
2330 * configure.ac: Require cloog isl 0.17.0
2331
2332 2011-07-21 Tobias Grosser <tobias@grosser.es>
2333
2334 * configure: Regenerated.
2335 * config/cloog.m4: Do not define CLOOG_ORG
2336
2337 2012-06-29 Steven Bosscher <steven@gcc.gnu.org>
2338
2339 * configure.ac: Skip C if explicitly selected.
2340 * configure: Regenerate.
2341
2342 2012-06-28 Christophe Lyon <christophe.lyon@st.com>
2343
2344 * configure.ac (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Make sure
2345 they contain -O2.
2346 * configure: Regenerate.
2347
2348 2012-06-20 Jason Merrill <jason@redhat.com>
2349
2350 * Makefile.tpl (check-target-libgomp-c++): New.
2351 (check-target-libitm-c++): New.
2352 * Makefile.def (c++): Add them.
2353 * Makefile.in: Regenerate.
2354
2355 2012-05-16 Olivier Hainque <hainque@adacore.com>
2356
2357 * Makefile.tpl (gcc-no-fixedincludes): Rename into ...
2358 (gcc-install-no-fixedincludes): Now forwarder to local target in gcc/
2359 (install-no-fixedincludes): Adjust accordingly.
2360 * Makefile.in: Regenerate.
2361
2362 2012-05-09 Nick Clifton <nickc@redhat.com>
2363 Paul Smith <psmith@gnu.org>
2364
2365 PR bootstrap/50461
2366 * configure.ac (mpfr-dir): When using in-tree MPFR sources
2367 allow for the fact that from release v3.1.0 of MPFR the source
2368 files were moved into a src sub-directory.
2369 * configure: Regenerate.
2370
2371 2012-05-07 Janne Blomqvist <jb@gcc.gnu.org>
2372
2373 * configure.ac: Bump minimum MPFR version to 2.4.0.
2374 * configure: Regenerated.
2375
2376 2012-05-01 Richard Henderson <rth@redhat.com>
2377
2378 * Makefile.def (libatomic): New target_module.
2379 * configure.ac (target_libraries): Add libatomic.
2380 (noconfigdirs): Check if libatomic is supported.
2381 * Makefile.in, configure: Rebuild.
2382
2383 2012-05-15 H.J. Lu <hongjiu.lu@intel.com>
2384
2385 Merge upstream change
2386 * libtool.m4 (_LT_ENABLE_LOCK): Support x32.
2387
2388 2011-11-21 Andreas Tobler <andreast@fgznet.ch>
2389
2390 * libtool.m4: Additional FreeBSD 10 fixes.
2391
2392 2012-06-28 Christophe Lyon <christophe.lyon@st.com>
2393
2394 * configure.ac (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Make sure
2395 they contain -O2.
2396 * configure: Regenerate.
2397
2398 2012-05-14 Catherine Moore <clm@codesourcery.com>
2399
2400 * NEWS: Mention PowerPC VLE port.
2401
2402 2012-05-11 Mike Frysinger <vapier@gentoo.org>
2403
2404 * MAINTAINERS (config/): Move to intl/ section.
2405 (compile; depcomp; install-sh; missing; ylwrap): Likewise.
2406
2407 2012-05-09 Nick Clifton <nickc@redhat.com>
2408 Paul Smith <psmith@gnu.org>
2409
2410 PR bootstrap/50461
2411 * configure.ac (mpfr-dir): When using in-tree MPFR sources
2412 allow for the fact that from release v3.1.0 of MPFR the source
2413 files were moved into a src sub-directory.
2414 * configure: Regenerate.
2415
2416 2012-05-02 Roland McGrath <mcgrathr@google.com>
2417
2418 * configure.ac (ENABLE_GOLD): Consider *-*-nacl* targets ELF.
2419 * configure: Regenerate.
2420
2421 2012-04-25 Joel Brobecker <brobecker@adacore.com>
2422
2423 * config.sub: Update to 2012-04-18 version from official repo.
2424
2425 2012-03-19 Tristan Gingold <gingold@adacore.com>
2426
2427 * configure.ac (ia64*-*-*vms*): Add support for ld.
2428 * configure: Regenerate.
2429
2430 2012-03-14 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2431
2432 * configure.ac (enable_libgomp): Remove *-*-irix6*.
2433 (unsupported_languages): Remove mips-sgi-irix6.*.
2434 (noconfigdirs): Don't add ${libgcj} for mips*-*-irix6*.
2435 (with_stabs): Remove.
2436 * configure: Regenerate.
2437
2438 2012-03-12 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2439
2440 * configure.ac (enable_libgomp): Remove *-*-osf*.
2441 (with_stabs): Remove alpha*-*-osf*.
2442 * configure: Regenerate.
2443
2444 2012-03-09 Jeff Johnston <jjohnstn@redhat.com>
2445
2446 * COPYING.NEWLIB: Modify DJ Delorie license to include
2447 modification rights in clause as permitted by DJ Delorie.
2448 * COPYING.LIBGLOSS: Ditto.
2449
2450 2012-03-09 Jeff Johnston <jjohnstn@redhat.com>
2451
2452 * COPYING.NEWLIB: Remove two unused licenses.
2453
2454 2012-03-05 Tristan Gingold <gingold@adacore.com>
2455
2456 * configure.ac: Enable gdb and readline for ia64*-*-*vms*.
2457 * configure: Regenerate.
2458
2459 2012-02-21 Joern Rennecke <joern.rennecke@embecosm.com>
2460
2461 * COPYING.NEWLIB: Add Adapteva notice.
2462 * COPYING.LIBGLOSS: Add Adapteva notice.
2463
2464 2011-12-18 Eric Botcazou <ebotcazou@adacore.com>
2465
2466 * configure: Regenerate.
2467
2468 2011-12-15 Jeff Johnston <jjohnstn@redhat.com>
2469
2470 * COPYING.LIBGLOSS: Add GPL with exception license.
2471
2472 2011-11-09 Roland McGrath <mcgrathr@google.com>
2473
2474 * configure.ac: Add tool checks for READELF and READELF_FOR_TARGET.
2475 * configure: Rebuild.
2476 * Makefile.def (flags_to_pass): Add READELF_FOR_TARGET.
2477 * Makefile.tpl (READELF, READELF_FOR_TARGET): New variables.
2478 (HOST_EXPORTS): Add READELF, READELF_FOR_TARGET.
2479 (BASE_FLAGS_TO_PASS): Add READELF_FOR_TARGET.
2480 (BASE_TARGET_EXPORTS, EXTRA_HOST_FLAGS, EXTRA_TARGET_FLAGS):
2481 Add READELF.
2482 * Makefile.in: Rebuild.
2483
2484 2011-11-08 Richard Henderson <rth@redhat.com>
2485
2486 * configure.ac: Test for libitm directory present first.
2487
2488 * configure.ac: Adjust srcdir for running libitm/configure.tgt.
2489
2490 * configure.ac: Test libitm/configure.tgt to disable libitm.
2491 * configure: Rebuild.
2492
2493 2011-11-02 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2494
2495 * Makefile.tpl (EXTRA_GCC_FLAGS): Remove LIBGCC2_CFLAGS,
2496 LIBGCC2_DEBUG_CFLAGS, LIBGCC2_INCLUDES.
2497 * Makefile.in: Regenerate.
2498
2499 2011-11-01 DJ Delorie <dj@redhat.com>
2500
2501 * configure.ac (rl78-*-*) New case.
2502 * configure: Regenerate.
2503
2504 2011-11-01 DJ Delorie <dj@redhat.com>
2505
2506 * config.sub: Update to version 2011-10-29 (added rl78)
2507
2508 2011-10-27 Nick Clifton <nickc@redhat.com>
2509
2510 * config.sub: Import these changes from the config project:
2511
2512 2011-10-08 Joern Rennecke <joern.rennecke@embecosm.com>
2513 Ben Elliston <bje@gnu.org>
2514
2515 * config.sub (epiphany): New.
2516
2517 2011-09-09 Linas Vepstas <linasvepstas@gmail.com>
2518 Ben Elliston <bje@gnu.org>
2519
2520 * config.sub (hexagon, hexagon-*): New.
2521
2522 2011-08-23 Roland McGrath <mcgrathr@google.com>
2523
2524 * config.sub: Rename 32eb to be32, 32el to le32, 64el to le64, and
2525 64eb to be64.
2526
2527 2011-08-16 Roland McGrath <mcgrathr@google.com>
2528
2529 * config.sub (32eb, 32el, 64eb, 64el): New (pseudo-)CPUs.
2530 (nacl): Grok as alias for 32el-unknown-nacl.
2531
2532 2011-08-19 Joel Brobecker <brobecker@adacore.com>
2533
2534 * src-release (GDB_SUPPORT_DIRS): Add 'cpu'.
2535
2536 2011-08-14 Yao Qi <yao@codesourcery.com>
2537
2538 Merge from gcc:
2539
2540 2011-08-14 Yao Qi <yao@codesourcery.com>
2541 * configure.ac (tic6x-*-*): Remove gdb from noconfigdirs.
2542 * configure: Regenerate.
2543
2544 2011-07-26 Ian Lance Taylor <iant@google.com>
2545
2546 Merge from gcc:
2547
2548 2011-07-26 Ian Lance Taylor <iant@google.com>
2549 * configure.ac: Set have_compiler based on whether gcc directory
2550 exists, rather than on whether gcc is in configdirs.
2551 * configure: Rebuild.
2552
2553 2011-07-20 David Edelsohn <dje.gcc@gmail.com>
2554 * Makefile.tpl (POSTSTAGE1_CONFIGURE_FLAGS): Add libsupc++ to
2555 link directories.
2556 * Makefile.in: Rebuild.
2557
2558 2011-07-20 Ian Lance Taylor <iant@google.com>
2559 PR bootstrap/49787
2560 * configure.ac: Move --enable-bootstrap handling earlier in file.
2561 If --enable-bootstrap and either --enable-build-with-cxx or
2562 --enable-build-poststage1-with-cxx, enable C++ automatically.
2563 * configure: Rebuild.
2564
2565 2011-07-19 Ian Lance Taylor <iant@google.com>
2566 * configure.ac: Add --enable-build-poststage1-with-cxx. If set,
2567 make C++ a boot_language. Set and substitute
2568 POSTSTAGE1_CONFIGURE_FLAGS.
2569 * Makefile.tpl (POSTSTAGE1_CONFIGURE_FLAGS): New variable.
2570 (STAGE[+id+]_CONFIGURE_FLAGS): Add $(POSTSTAGE1_CONFIGURE_FLAGS).
2571 * configure, Makefile.in: Rebuild.
2572
2573 2011-07-16 Jason Merrill <jason@redhat.com>
2574 * Makefile.def (language=c++): Add check-c++0x and
2575 check-target-libmudflap-c++.
2576 * Makefile.tpl (check-target-libmudflap-c++): New.
2577 * Makefile.in: Regenerate.
2578
2579 2011-07-16 Matthias Klose <doko@ubuntu.com>
2580 * Makefile.tpl (EXTRA_CONFIGARGS_LIBJAVA): Define.
2581 * Makefile.def (target_modules/libjava): Pass
2582 $(EXTRA_CONFIGARGS_LIBJAVA).
2583 * configure.ac: Pass --disable-static in EXTRA_CONFIGARGS_LIBJAVA,
2584 if not configured with --enable-static-libjava.
2585 * Makefile.in: Regenerate.
2586 * configure: Likewise.
2587
2588 2011-06-22 Hans-Peter Nilsson <hp@axis.com>
2589 PR regression/47836
2590 PR bootstrap/23656
2591 PR other/47733
2592 PR bootstrap/49247
2593 PR c/48825
2594 * configure.ac (target_libraries): Remove target-libiberty.
2595 Remove case-statement setting skipdirs=target-libiberty for
2596 multiple targets. Remove checking target_configdirs and
2597 removing target-libiberty but keeping target-libgcc if
2598 otherwise empty.
2599 * Makefile.def (target_modules): Don't add libiberty.
2600 (dependencies): Remove all traces of target-libiberty.
2601 * configure, Makefile.in: Regenerate.
2602
2603 2011-07-22 Jason Merrill <jason@redhat.com>
2604
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-18 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2611
2612 * configure: Regenerate.
2613
2614 2011-07-07 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2615
2616 PR target/39150
2617 * configure.ac (i[3456789]86-*-solaris2*): Also accept
2618 x86_64-*-solaris2.1[0-9]*.
2619 * configure: Regenerate.
2620
2621 2011-06-13 Walter Lee <walt@tilera.com>
2622
2623 * configure.ac (tilepro-*-*) New case.
2624 (tilegx-*-*): Likewise.
2625 * configure: Regenerate.
2626
2627 2011-06-06 Nick Clifton <nickc@redhat.com>
2628
2629 * config.sub: Sync from upstream.
2630
2631 2011-05-08 Doug Kwan <dougkwan@google.com>
2632
2633 Merge from gcc:
2634
2635 2011-05-08 Doug Kwan <dougkwan@google.com>
2636
2637 * configure.ac: Propagate LDFLAGS_FOR_TARGET.
2638 * configure: Regenerated.
2639 * Makefile.tpl (LDFLAGS_FOR_TARGET): Use LDFLAGS_FOR_TARGET
2640 value from configure.
2641 * Makefile.in: Regenerated.
2642
2643 2011-05-05 Joseph Myers <joseph@codesourcery.com>
2644
2645 * configure.ac (alpha*-dec-osf*, i[[3456789]]86-*-rdos*,
2646 sh*-*-pe|mips*-*-pe|arm-wince-pe, sparc-*-sunos4*, *-*-aix*,
2647 *-*-beos*, *-*-chorusos, *-*-dragonfly*, *-*-freebsd*, *-*-linux*
2648 | *-*-gnu* | *-*-k*bsd*-gnu | *-*-kopensolaris*-gnu, *-*-lynxos*,
2649 *-*-mingw*, *-*-netbsd*, *-*-netware*, *-*-tpf*, *-*-uclinux*,
2650 *-*-vxworks*): Disable newlib and libgloss in separate case
2651 statement.
2652 (i[[3456789]]86-*-linux*): Move logic allowing newlib to be built
2653 to separate case statement.
2654 (*-*-chorusos, *-*-dragonfly*, *-*-freebsd*, *-*-netbsd*,
2655 *-*-netware*, *-*-tpf*, *-*-uclinux*, *-*-vxworks*,
2656 alpha*-dec-osf*, alpha*-*-linux*, am33_2.0-*-linux*, sh-*-linux*,
2657 sh*-*-pe|mips*-*-pe|*arm-wince-pe, arm-*-coff, arm-*-elf* |
2658 arm*-*-eabi*, arm*-*-linux-gnueabi, arm*-*-symbianelf*, avr-*-*,
2659 bfin-*-*, cris-*-* | crisv32-*-*, frv-*-*, i[[3456789]]86-*-coff |
2660 i[[3456789]]86-*-elf, i[[3456789]]86-w64-mingw*,
2661 i[[3456789]]86-*-mingw*, x86_64-*-mingw*,
2662 i[[3456789]]86-*-interix*, i[[3456789]]86-*-beos*,
2663 i[[3456789]]86-*-rdos*, m32r-*-*,
2664 m68hc11-*-*|m6811-*-*|m68hc12-*-*|m6812-*-*, m68k-*-elf*, m68*-*-*
2665 | fido-*-*, powerpc-*-aix*, powerpc-*-beos*, powerpc-*-eabi,
2666 powerpc-*-eabi* | powerpcle-*-eabi* | powerpc-*-rtems*,
2667 rs6000-*-lynxos*, rs6000-*-aix*, mips*-*-linux*, sparclet-*-aout*
2668 | sparc86x-*-*, sparc-*-elf*, sparc64-*-elf*, sparclite-*-*,
2669 sparc-*-sunos4*, sparc-*-solaris* | sparc64-*-solaris* |
2670 sparcv9-*-solaris*, *-*-linux* | *-*-gnu* | *-*-k*bsd*-gnu |
2671 *-*-kopensolaris*-gnu, *-*-lynxos*, *-*-*): Don't disable newlib
2672 and libgloss in main case over targets. Remove most empty cases
2673 in main case over targets.
2674 * configure: Regenerate.
2675
2676 2011-05-04 Joseph Myers <joseph@codesourcery.com>
2677
2678 * configure.ac: Remove code setting special library locations for
2679 hppa*64*-*-hpux11*. Remove code setting compiler for
2680 sparc-sun-solaris2*.
2681 * configure: Regenerate.
2682
2683 2011-05-04 Joseph Myers <joseph@codesourcery.com>
2684
2685 * configure.ac: Separate libgloss_dir settings from general case
2686 over targets.
2687 * configure: Regenerate.
2688
2689 2011-04-28 Joseph Myers <joseph@codesourcery.com>
2690
2691 * configure.ac (*-*-dragonfly*, *-*-freebsd*, *-*-netbsd*,
2692 alpha*-dec-osf*, alpha*-*-linux*, alpha*-*-*, sh-*-linux*,
2693 arm-*-elf* | arm*-*-eabi*, arm*-*-linux-gnueabi, frv-*-*): Remove
2694 cases in libgcj-disabling case statement.
2695 (hppa*64*-*-linux*): Set unsupported_languages instead of
2696 disabling target-zlib.
2697 (hppa*64*-*-*): Restrict case in libgcj-disabling case statement
2698 to hppa*64*-*-hpux*.
2699 (hppa*-*-*): Restrict case in libgcj-disabling case statement to
2700 hppa*-*-hpux*.
2701 (ia64*-*-elf*, ia64*-**-hpux*, i[[3456789]]86-*-elf,
2702 i[[3456789]]86-*-linux*, *-*-cygwin*, i[[3456789]]86-*-interix*,
2703 i[[3456789]]86-*-solaris2*, m32r-*-*, m68k-*-elf*, m68*-*-* |
2704 fido-*-*, powerpc-*-eabi, powerpc-*-eabi* | powerpcle-*-eabi* |
2705 powerpc-*-rtems*, mips*-*-linux*, mips*-*-*, sh-*-* | sh64-*-*,
2706 sparc-*-elf*, sparc64-*-elf*, sparc-*-solaris* |
2707 sparc64-*-solaris* | sparcv9-*-solaris*, *-*-linux* | *-*-gnu* |
2708 *-*-k*bsd*-gnu | *-*-kopensolaris*-gnu, *-*-*): Remove cases in
2709 libgcj-disabling case statement.
2710 * configure: Regenerate.
2711
2712 2011-04-28 Joseph Myers <joseph@codesourcery.com>
2713
2714 * configure.ac: Disable Java for targets not supporting libffi.
2715 (*-*-chorusos, *-*-kaos*, am33_2.0-*-linux*, sh*-*-pe|mips*-*-pe):
2716 Remove cases in Java-disabling statement.
2717 (*arm-wince-pe): Change to arm-wince-pe.
2718 (arc-*-*, arm-*-coff, arm-*-pe*, arm-*-riscix*, avr-*-*): Remove
2719 cases in Java-disabling statement.
2720 (bfin-*-*): Don't disable Java again.
2721 (c4x-*-* | tic4x-*-*, tic54x-*-*, cr16-*-*, d10v-*-*, d30v-*-*,
2722 fr30-*-elf*, moxie-*-*, h8300*-*-*, h8500-*-*, hppa1.1-*-osf* |
2723 hppa1.1-*-bsd*, hppa*-*-*elf* | hppa*-*-lites* | hppa*-*-openbsd*,
2724 hppa*-*-pro*, i960-*-*, i[[3456789]]86-*-coff,
2725 i[[3456789]]86-*-pe, i[[3456789]]86-*-sco3.2v5*,
2726 i[[3456789]]86-*-sco*, i[[3456789]]86-*-sysv4*,
2727 i[[3456789]]86-*-beos*, i[[3456789]]86-*-rdos*,
2728 m68hc11-*-*|m6811-*-*|m68hc12-*-*|m6812-*-*): Remove cases in
2729 Java-disabling statement.
2730 (mmix-*-*): Don't disable Java again.
2731 (mt-*-*, powerpc*-*-winnt* | powerpc*-*-pe*, powerpcle-*-solaris*,
2732 powerpc-*-beos*, rs6000-*-lynxos*, rs6000-*-*, m68k-apollo-*,
2733 microblaze*, mips*-sde-elf*, mips*-*-irix5*, mips*-*-bsd*,
2734 sparclet-*-aout* | sparc86x-*-*, sparclite-*-*, sparc-*-sunos4*,
2735 tic6x-*-*, v810-*-*, vax-*-*): Remove cases in Java-disabling
2736 statement.
2737 * configure: Regenerate.
2738
2739 2011-04-28 Joseph Myers <joseph@codesourcery.com>
2740
2741 Merge from GCC:
2742
2743 2011-04-18 Jack Howarth <howarth@bromo.med.uc.edu>
2744
2745 PR lto/48086
2746 * configure.ac: Re-enable LTO on *-apple-darwin9*.
2747 * configure: Regenerate.
2748
2749 2011-04-28 Joseph Myers <joseph@codesourcery.com>
2750
2751 * configure.ac: Separate cases disabling Java and Java libraries
2752 from general case over targets.
2753 * configure: Regenerate.
2754
2755 2011-04-06 Joseph Myers <joseph@codesourcery.com>
2756
2757 * configure.ac (build_tools): Remove build-byacc.
2758 (host_libs): Remove mmalloc.
2759 (host_tools): Remove byacc make patch prms send-pr ash bash bzip2
2760 autoconf automake libtool diff rcs fileutils shellutils time
2761 textutils wdiff find uudecode hello tar gzip indent recode release
2762 sed perl gawk findutils gettext zip.
2763 (libgcj): Remove target-qthreads.
2764 (target_tools): Remove target-examples target-gperf.
2765 (YACC): Don't handle building byacc.
2766 * configure: Regenerate.
2767 * Makefile.def (ash, autoconf, automake, bash, byacc, bzip2, diff,
2768 dosutils, examples, fileutils, find, findutils, gawk, gettext,
2769 gnuserv, gperf, gzip, hello, indent, libtool, make, mmalloc,
2770 patch, perl, prms, qthreads, rcs, recode, release, sed, send-pr,
2771 shellutils, tar, textutils, time, uudecode, wdiff, zip): Don't
2772 handle building components.
2773 * Makefile.in: Regenerate.
2774
2775 2011-04-05 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
2776
2777 * config.sub: Sync from upstream.
2778
2779 2011-04-01 Joseph Myers <joseph@codesourcery.com>
2780
2781 * configure.ac (avr-*-*): Add comment about why libssp is disabled.
2782 (microblaze*): Don't disable libssp.
2783 * configure: Regenerate.
2784
2785 2011-04-01 Joseph Myers <joseph@codesourcery.com>
2786
2787 * configure.ac: Remove code setting CONFIG_SHELL, config_shell and
2788 moveifchange.
2789 * configure: Regenerate.
2790 * Makefile.tpl: Use @SHELL@ not @config_shell@.
2791 * Makefile.in: Regenerate.
2792
2793 2011-04-01 Joseph Myers <joseph@codesourcery.com>
2794
2795 * configure.ac (*-*-sysv4*): Don't enable libgomp.
2796 (alpha*-*-*vms*, i[[34567]]86-*-sco3.2v5*, mn10300-*-*,
2797 powerpc-*-chorusos*, powerpc*-*-eabi*, powerpc*-*-sysv*,
2798 powerpc*-*-kaos*, s390x-ibm-tpf*, sparc64-*-elf*, v850*-*-*,
2799 xtensa*-*-elf*, *-*-beos*, *-*-elf*, *-*-netware*, *-*-rtems*,
2800 *-*-sysv[[45]]*, *-*-vxworks*, *-wrs-windiss): Remove
2801 md_exec_prefix cases.
2802 * configure: Regenerate.
2803
2804 2011-04-01 Joseph Myers <joseph@codesourcery.com>
2805
2806 * configure.ac: Separate cases disabling target-libssp,
2807 target-libiberty, target-libstdc++-v3 and Fortran from general
2808 case over targets.
2809 * configure: Regenerate.
2810
2811 2011-04-01 Joseph Myers <joseph@codesourcery.com>
2812
2813 * configure.ac (*-*-chorusos): Don't disable libgcj.
2814 (*-*-freebsd[[12]] | *-*-freebsd[[12]].* | *-*-freebsd*aout*):
2815 Remove case.
2816 (*-*-kaos*): Don't disable GCC libraries, zlib or fastjar.
2817 (arm-*-coff): Don't disable libgcj.
2818 (arm*-*-linux-gnueabi): Remove useless assignment.
2819 (arm-*-riscix*): Don't disable libgcj.
2820 (bfin-*-*): Don't enable target-bsp and target-cygmon depending on
2821 configuration.
2822 (c4x-*-* | tic4x-*-*): Don't disable GCC libraries.
2823 (c54x*-*-*): Remove case.
2824 (tic54x-*-*): Don't disable GCC or GCC libraries.
2825 (cris-*-* | crisv32-*-*): Don't handle *-*-aout. Change *-*-elf
2826 to *.
2827 (d10v-*-*): Don't disable GCC libraries.
2828 (d30v-*-*): Don't disable libgcj.
2829 (h8500-*-*): Don't disable GCC libraries.
2830 (i960-*-*): Don't disable libgcj.
2831 (i[[3456789]]86-*-linux*): Don't handle *-*-*libc1*.
2832 (i[[3456789]]86-*-sco3.2v5*, i[[3456789]]86-*-sco*,
2833 i[[3456789]]86-*-sysv4*, i[[3456789]]86-*-beos*): Don't disable
2834 libgcj.
2835 (m68k-*-coff*): Remove case.
2836 (mmix-*-*): Don't disable libgloss on host.
2837 (mn10200-*-*, mn10300-*-*): Remove cases.
2838 (powerpc*-*-winnt* | powerpc*-*-pe*, powerpcle-*-solaris*,
2839 powerpc-*-beos*, m68k-apollo-*, mips*-*-irix5*, mips*-*-bsd*):
2840 Don't disable libgcj.
2841 (romp-*-*): Remove case.
2842 (sparclite-*-*, sparc-*-sunos4*): Don't disable libgcj.
2843 (sparc-*-solaris2.[[0-6]] | sparc-*-solaris2.[[0-6]].*): Remove
2844 case.
2845 (v810-*-*): Don't disable GCC libraries.
2846 (v850*-*-*, vax-*-vms, xtensa*-*-*): Remove cases.
2847 (ip2k-*-*): Don't disable GCC libraries.
2848 * configure: Regenerate.
2849
2850 2011-03-28 Joseph Myers <joseph@codesourcery.com>
2851
2852 * configure.ac (i[[3456789]]86-*-msdosdjgpp*): Don't disable
2853 libffi on host.
2854 (x86_64-*-mingw*, i[[3456789]]86-*-mingw32*): Don't disable newlib
2855 on host.
2856 (c54x*-*-* | tic54x-*-*): Don't disable newlib on host.
2857 * configure: Regenerate.
2858
2859 2011-03-26 John Marino <binutils@marino.st>
2860
2861 * configure.ac: Add support for *-*-dragonfly*
2862 * configure: Regenerate.
2863
2864 2011-03-25 Joseph Myers <joseph@codesourcery.com>
2865
2866 * configure.ac (native_only): Remove.
2867 (i[[3456789]]86-*-msdosdjgpp*): Don't disable expect dejagnu
2868 send-pr uudecode guile gnuserv on host.
2869 (x86_64-*-mingw*): Don't disable expect dejagnu autoconf automake
2870 send-pr rcs guile perl texinfo libtool on host.
2871 (i[[3456789]]86-*-mingw32*): Don't disable expect dejagnu autoconf
2872 automake send-pr rcs guile perl texinfo libtool on host.
2873 (*-*-cygwin*, *-*-netbsd*): Remove host cases.
2874 (*-*-kaos*): Don't disable target-examples target-gperf on target.
2875 (alpha*-dec-osf*): Don't disable fileutils on target.
2876 (sh*-*-pe|mips*-*-pe|*arm-wince-pe): Don't disable target-examples
2877 texinfo send-pr expect dejagnu on target.
2878 (arm-*-elf* | arm*-*-eabi*, arm*-*-linux-gnueabi): Don't disable
2879 target-qthreads on target.
2880 (hppa*-hp-hpux11*, hppa*-*-*): Don't disable shellutils on target.
2881 (ia64*-*-elf*, ia64*-*-*vms*): Don't disable mmalloc on target.
2882 (i[[3456789]]86-w64-mingw*, i[[3456789]]86-*-mingw*,
2883 x86_64-*-mingw*): Don't disable expect on target.
2884 (*-*-cygwin*): Don't disable target-gperf on target.
2885 (powerpc*-*-winnt* | powerpc*-*-pe*): Don't disable make expect
2886 gnuserv on target.
2887 (powerpcle-*-solaris*): Don't disable make expect gnuserv on
2888 target.
2889 * configure: Regenerate.
2890
2891 2011-03-25 Joseph Myers <joseph@codesourcery.com>
2892
2893 * configure.ac (target_tools): Remove target-groff.
2894 (native_only): Remove target-groff.
2895 (hppa*64*-*-*): Don't disable byacc.
2896 (i[[3456789]]86-*-mingw32*): Remove commented-out noconfigdirs
2897 setting.
2898 (*-*-kaos*): Don't skip target-librx and target-groff.
2899 (*-*-netware*): Don't skip target-libmudflap.
2900 (*-*-tpf*): Don't skip target-libmudflap.
2901 (sh*-*-pe|mips*-*-pe|*arm-wince-pe): Don't condition configured
2902 directories on the host.
2903 (ia64*-*-*vms*): Don't skip tix.
2904 (sh-*-* | sh64-*-*): Don't condition skipped directories on the
2905 host.
2906 * configure: Regenerate.
2907
2908 2011-03-24 Paolo Bonzini <pbonzini@redhat.com>
2909
2910 * configure.ac: Remove references to mt-mep, mt-netware,
2911 mt-wince.
2912 * Makefile.def: Add all-utils soft dependencies.
2913 * Makefile.tpl: Remove GDB_NLM_DEPS.
2914 * configure: Regenerate.
2915 * Makefile.in: Regenerate.
2916
2917 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2918
2919 Sync from GCC:
2920
2921 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2922
2923 * configure.ac: Do not include mh-x86omitfp.
2924 * configure: Regenerate.
2925
2926 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2927
2928 * configure.ac: Remove empty cases.
2929 * configure: Regenerate.
2930
2931 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2932
2933 * Makefile.def: Add dependency from termcap to gdb.
2934 * Makefile.in: Regenerate.
2935
2936 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2937
2938 * configure.ac: Remove all mentions of mh-sysv4 and mh-solaris.
2939 * configure: Regenerate.
2940 * Makefile.def: Remove all mentions of X11_FLAGS_TO_PASS.
2941 * Makefile.tpl: Likewise.
2942 * Makefile.in: Regenerate.
2943
2944 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2945
2946 * configure.ac: Remove all mentions of tentative_cc.
2947 * configure: Regenerate.
2948
2949 2011-03-16 Jack Howarth <howarth@bromo.med.uc.edu>
2950
2951 PR lto/48086
2952 * configure.ac: Re-enable LTO on *-apple-darwin9.
2953 * configure: Regenerate.
2954
2955 2011-03-24 Joseph Myers <joseph@codesourcery.com>
2956
2957 * configure.ac (i[[3456789]]86-*-vsta, i[[3456789]]86-*-go32*,
2958 i[[3456789]]86-*-beos*, powerpc-*-beos*, m68k-hp-hpux*,
2959 m68k-apollo-sysv*, m68k-apollo-bsd*, m88k-dg-dgux*,
2960 m88k-harris-cxux*, m88k-motorola-sysv*, mips*-dec-ultrix*,
2961 mips*-nec-sysv4*, mips*-sgi-irix4*, mips*-*-sysv4*, mips*-*-sysv*,
2962 i370-ibm-opened*, i[[3456789]]86-*-sysv5*, i[[3456789]]86-*-dgux*,
2963 i[[3456789]]86-ncr-sysv4.3*, i[[3456789]]86-ncr-sysv4*,
2964 i[[3456789]]86-*-sco3.2v5*, i[[3456789]]86-*-sco*,
2965 i[[3456789]]86-*-udk*, vax-*-ultrix2*, m68k-sun-sunos*,
2966 hppa*-*-hiux*, *-*-hiux*, rs6000-*-lynxos*, *-*-sysv4*,
2967 *-*-rhapsody*): Remove host cases.
2968 * configure: Regenerate.
2969
2970 2011-03-24 Joseph Myers <joseph@codesourcery.com>
2971
2972 * configure.ac (ppc*-*-pe): Remove host case.
2973 (strongarm-*-coff | xscale-*-coff, strongarm-*-elf* |
2974 xscale-*-elf*, thumb-*-coff, thumb-*-elf, thumb-*-pe, ep9312-*-elf
2975 | ep9312-*-coff, parisc*64*-*-linux*, ppc*-*-pe): Remove target
2976 cases.
2977 * configure: Regenerate.
2978
2979 2011-03-24 Joseph Myers <joseph@codesourcery.com>
2980
2981 * config.sub: Update to version 2011-03-23.
2982
2983 2011-03-22 Joseph Myers <joseph@codesourcery.com>
2984
2985 * configure.ac (arm-semi-aof, crx-*-*, parisc*-*-linux*,
2986 i370-*-opened*, i[[3456789]]86-moss-msdos | i[[3456789]]86-*-moss*
2987 | i[[3456789]]86-*-uwin*, mcore-*-pe*): Remove empty cases.
2988 * configure: Regenerate.
2989
2990 2011-03-22 Joseph Myers <joseph@codesourcery.com>
2991
2992 * config-ml.in: Don't handle arc-*-elf*.
2993 * configure.ac (arc-*-*, crx-*-*, i[[3456789]]86-*-pe,
2994 m68hc11-*-*|m6811-*-*|m68hc12-*-*|m6812-*-*, mcore-*-pe*): Don't
2995 handle GCC libraries.
2996 * configure: Regenerate.
2997
2998 2011-03-21 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2999
3000 PR bootstrap/48120:
3001 * configure.ac (pwllib): Use LIBS instead of LDFLAGS.
3002 Add -lstdc++ -lm to LIBS.
3003 * configure: Regenerate.
3004
3005 2011-03-18 David Edelsohn <dje.gcc@gmail.com>
3006
3007 * config.guess: Update to version 2011-02-02
3008 * config.sub: Update to version 2011-02-24
3009
3010 2011-03-03 Sebastian Pop <sebastian.pop@amd.com>
3011
3012 * configure.ac: Adjust test of with_ppl.
3013 * configure: Regenerated.
3014
3015 2011-03-02 Sebastian Pop <sebastian.pop@amd.com>
3016
3017 * configure.ac: Add -lpwl to ppllibs.
3018 * config/cloog.m4: Add -lisl to clooglibs.
3019 * configure: Regenerated.
3020
3021 2011-02-13 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3022
3023 Import from Libtool and gnulib:
3024
3025 2011-01-27 Gerald Pfeifer <gerald@pfeifer.com>
3026
3027 Prepare for supporting FreeBSD 10.
3028 * config.rpath: Remove handling of freebsd1* which soon would
3029 match FreeBSD 10.0.
3030
3031 2011-01-20 Gerald Pfeifer <gerald@pfeifer.com> (tiny change)
3032
3033 Remove support for FreeBSD 1.x.
3034 * libtool.m4 (_LT_LINKER_SHLIBS)
3035 (_LT_SYS_DYNAMIC_LINKER): Remove handling of freebsd1* which
3036 soon would incorrectly match FreeBSD 10.0.
3037
3038 2011-02-12 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3039
3040 PR binutils/12283
3041 * MAINTAINERS (mkinstalldirs): Comes from Automake.
3042 (move-if-change): Comes from gnulib.
3043 * move-if-change: Import version from gnulib.
3044
3045 2011-02-12 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3046
3047 Sync from GCC:
3048
3049 2011-02-12 Alexandre Oliva <aoliva@redhat.com>
3050
3051 PR lto/47225
3052 * Makefile.def (lto-plugin): Double dash for enable-shared.
3053 (configure-gcc): Depend on all-lto-plugin.
3054 * Makefile.in: Rebuilt.
3055
3056 2011-02-11 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3057
3058 * configure.ac: Remove extra bracket.
3059 * configure: Regenerate.
3060
3061 2011-02-06 Kai Tietz <kai.tietz@onevision.com>
3062
3063 PR lto/47225
3064 * Makefile.def: Add dependency for install-gcc
3065 on install-lto-plugin.
3066 * Makfile.in: Regenerated
3067
3068 2011-01-25 Jakub Jelinek <jakub@redhat.com>
3069
3070 * configure.ac: If with_ppl is no, move setting with_cloog=no
3071 after CLOOG_REQUESTED check.
3072 * configure: Regenerated.
3073
3074 2011-01-25 Sebastian Pop <sebastian.pop@amd.com>
3075
3076 * configure.ac: Call AC_MSG_ERROR when PPL 0.11 is not present and
3077 CLooG has been requested.
3078 * configure: Regenerated.
3079
3080 2011-01-25 Sebastian Pop <sebastian.pop@amd.com>
3081
3082 * configure: Regenerated.
3083 * configure.ac: Check for version 0.11 (or later revision) of PPL.
3084
3085 2011-01-25 Tobias Grosser <grosser@fim.uni-passau.de>
3086
3087 * configure: Regenerated.
3088 * configure.ac: Use CLOOG_CHECK_VERSION(0,16,1).
3089
3090 2011-01-07 Jan Hubicka <jh@suse.cz>
3091
3092 PR lto/47225
3093 * Makefile.in: Regenerate.
3094 * Makefile.def (lto-plugin): Always pass enable-shared to the plugin
3095 configure.
3096
3097 2011-01-31 Alexandre Oliva <aoliva@redhat.com>
3098
3099 PR libgcj/44341
3100 * configure.ac: Discard --with-* flags for host when configuring
3101 target libraries for cross build.
3102 * configure: Rebuilt.
3103
3104 2011-01-21 Andreas Schwab <schwab@redhat.com>
3105
3106 Sync from GCC:
3107
3108 2011-01-21 Andreas Schwab <schwab@redhat.com>
3109
3110 * configure.ac: Use AS_HELP_STRING throughout.
3111 * configure: Regenerate.
3112
3113 2011-01-18 Jie Zhang <jie.zhang@analog.com>
3114
3115 * configure.ac (bfin-*-*): Remove gdb from noconfigdirs.
3116 * configure: Regenerate.
3117
3118 2010-12-10 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
3119
3120 * ltmain.sh (relink): Use absolute path when hardcoding with -L.
3121
3122 2011-01-13 Joel Brobecker <brobecker@adacore.com>
3123
3124 * configure.ac: Remove readline, mmalloc, and gdb from noconfigdirs
3125 for ia64-hpux.
3126 * configure: Regenerate.
3127
3128 2011-01-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3129
3130 Sync from GCC:
3131 2010-12-22 Hariharan Sandanagobalane <hariharan@picochip.com>
3132
3133 * configure.ac: (picochip): Disable libiberty.
3134 * configure: Regenerate.
3135
3136 2010-12-18 Jeff Johnston <jjohnstn@redhat.com>
3137
3138 * COPYING.LIBGLOSS: Remove the GPL for fr30 target.
3139
3140 2010-12-10 Ian Lance Taylor <iant@google.com>
3141
3142 PR bootstrap/46819
3143 * configure.ac: For --disable-libgcj clear libgcj_saved.
3144 * configure: Rebuild.
3145
3146 2010-12-10 Tobias Burnus <burnus@net-b.de>
3147
3148 PR fortran/46540
3149 * configure.ac: Add --disable-libquadmath and
3150 --disable-libquadmath-support.
3151 * configure: Regenerate.
3152
3153 2010-12-10 Tristan Gingold <gingold@adacore.com>
3154
3155 * src-release (ETC_SUPPORT): add gnu-oids.texi
3156
3157 2010-12-03 Hans-Peter Nilsson <hp@axis.com>
3158
3159 PR libffi/46792
3160 * configure.ac (cris-*-elf, crisv32-*-elf): Disable target-libffi.
3161 * configure: Regenerate.
3162
3163 2010-12-02 Ian Lance Taylor <iant@google.com>
3164
3165 * configure.ac: Always set default for poststage1_ldflags to
3166 -static-libstdc++ -static-libgcc.
3167
3168 2010-12-02 Jeff Johnston <jjohnstn@redhat.com>
3169
3170 * COPYING.NEWLIB: Add National Semiconductor notice.
3171
3172 2010-11-29 Andreas Schwab <schwab@redhat.com>
3173
3174 * configure.ac: Move comment to remove extra space in last argument
3175 of GCC_TARGET_TOOL.
3176
3177 2010-11-26 Alexandre Oliva <aoliva@redhat.com>
3178
3179 PR other/46026
3180 * configure.ac (CXX_FOR_TARGET): Add -funconfigured-libstdc++-v3.
3181 * Makefile.def (CXX_FOR_TARGET): Removed from flags_to_pass.
3182 * Makefile.tpl (CXX_FOR_TARGET_FLAG_TO_PASS): New.
3183 (BASE_FLAGS_TO_PASS): Use it.
3184 * configure: Rebuilt.
3185 * Makefile.in: Rebuilt.
3186
3187 2010-11-23 H.J. Lu <hongjiu.lu@intel.com>
3188
3189 PR binutils/12258
3190 * configure.ac: Correct comments for --enable-gold/--enable-ld.
3191 Properly check default linker.
3192 * configure: Regnerated.
3193
3194 2010-11-23 Matthias Klose <doko@ubuntu.com>
3195
3196 * configure.ac: For --enable-gold, handle value `default' instead of
3197 `both*'. New configure option --{en,dis}able-ld.
3198 * configure: Regenerate.
3199
3200 2010-11-20 Ian Lance Taylor <iant@google.com>
3201
3202 * configure.ac: Only disable a language library if no language needs
3203 it. Don't let --disable-libgcj uncondtionally disable libffi.
3204 * configure: Rebuild.
3205
3206 2010-11-20 Paolo Bonzini <bonzini@gnu.org>
3207
3208 * configure: Regenerate.
3209
3210 2010-11-20 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3211
3212 PR other/46202
3213 * configure.ac: Fix just-built in-tree STRIP name to be
3214 binutils/strip-new.
3215 * configure: Regenerate.
3216 * Makefile.def (install-strip-gcc, install-strip-binutils)
3217 (install-strip-opcodes, install-strip-ld, install-strip-itcl)
3218 (install-strip-sid): Mirror dependencies on non-strip variants
3219 of these targets on the respective -strip prerequisites.
3220 * Makefile.tpl (install-strip, install-strip-host)
3221 (install-strip-target): New targets.
3222 (install-strip-[+module+], install-strip-target-[+module+]):
3223 New targets.
3224 * Makefile.in: Regenerate.
3225
3226 2010-11-19 Ian Lance Taylor <iant@google.com>
3227 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3228
3229 * configure.ac: Add target-libgo to target_libraries. Set
3230 and substitute GOC_FOR_BUILD and GOC_FOR_TARGET.
3231 * Makefile.tpl (BUILD_EXPORTS): Add GOC and GOCFLAGS.
3232 (HOST_EXPORTS): Add GOC.
3233 (BASE_TARGET_EXPORTS): Add GOC.
3234 (GOC_FOR_BUILD, GOCFLAGS, GOC_FOR_TARGET): New variables.
3235 (GOCFLAGS_FOR_TARGET): New variable.
3236 (EXTRA_HOST_FLAGS): Add GOC.
3237 (EXTRA_TARGET_FLAGS): Add GOC and GOCFLAGS.
3238 * Makefile.def (target_modules): Add libgo.
3239 (flags_to_pass): Add GOC_FOR_TARGET and GOCFLAGS_FOR_TARGET.
3240 (dependencies): Add dependency from configure-target-libgo to
3241 configure-target-libffi and all-target-libstdc++-v3. Add
3242 dependencies from all-target-libgo to all-target-libffi.
3243 (languages): Add go.
3244 * configure: Rebuild.
3245 * Makefile.in: Rebuild.
3246
3247 2010-11-19 Ian Lance Taylor <iant@google.com>
3248
3249 * config-ml.in: Add Go support: treat GOC and GOCFLAGS like other
3250 compiler/flag environment variables.
3251
3252 2010-11-18 Ian Lance Taylor <iant@google.com>
3253
3254 * configure.ac: Check for lang_requires_boot_languages in
3255 config-lang.in files.
3256 * configure: Rebuild.
3257
3258 2010-11-17 Mike Frysinger <vapier@gentoo.org>
3259
3260 * .gitignore: New file.
3261
3262 2010-11-16 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
3263 Tobias Burnus <burnus@net-b.de>
3264
3265 PR fortran/32049
3266 * Makefile.def: Add libquadmath; build it with language=fortran.
3267 * configure.ac: Add libquadmath.
3268 * Makefile.tpl: Handle multiple libs in check-[+language+].
3269 * Makefile.in: Regenerate.
3270 * configure: Regenerate.
3271
3272 2010-11-15 Andreas Schwab <schwab@redhat.com>
3273
3274 * configure.ac: Fix spelling in option names.
3275 * configure: Regenerated.
3276
3277 2010-11-13 Georg-Johann Lay <georgjohann@web.de>
3278
3279 PR bootstrap/39622
3280 * configure.ac (FLAGS_FOR_TARGET): Add include-fixed path.
3281 * configure: Regenerated.
3282
3283 2010-11-12 Tobias Grosser <grosser@fim.uni-passau.de>
3284
3285 * config/cloog.m4: Add -enable-cloog-backend=(isl|ppl|ppl-legacy) to
3286 define the cloog backend to use. Furthermore, only pass the ppllibs to
3287 the configure checks, if necessary.
3288 * configure: Regenerate.
3289
3290 2010-11-12 Tobias Grosser <grosser@fim.uni-passau.de>
3291
3292 * config/cloog.m4: Use CLooG predefined macro to check for CLooG PPL.
3293 * configure: regenerate
3294
3295 2010-11-12 Tobias Grosser <grosser@fim.uni-passau.de>
3296
3297 * config/cloog.m4: Fix typo. verison -> version.
3298 * configure: Regenerate.
3299
3300 2010-11-12 Tobias Grosser <grosser@fim.uni-passau.de>
3301
3302 * config/cloog.m4: Pass ppl libraries to the CLooG version check.
3303 * configure: Regenerate.
3304
3305 2010-11-11 Andreas Simbuerger <simbuerg@fim.uni-passau.de>
3306
3307 * configure.ac: Support official CLooG.org versions.
3308 * configure: Regenerate.
3309 * config/cloog.m4: New.
3310
3311 2010-11-05 Michael Eager <eager@eagercon.com>
3312
3313 * COPYING.LIBGLOSS: Correct typo in microblaze.
3314 * COPYING.NEWLIB: Same.
3315
3316 2010-11-04 Iain Sandoe <iains@gcc.gnu.org>
3317
3318 * configure.ac (*-*-darwin*): Use mh-darwin for all Darwin variants.
3319 * configure: Regenerate.
3320
3321 2010-11-03 Ian Lance Taylor <iant@google.com>
3322 Dave Korn <dave.korn.cygwin@gmail.com>
3323
3324 PR lto/46273
3325 * configure.ac: Remove libelf tests. Build lto-plugin on ELF always
3326 and on other supported platforms whenever LTO is enabled.
3327 * configure: Rebuild.
3328
3329 2010-11-02 Alan Modra <amodra@gmail.com>
3330
3331 PR binutils/12110
3332 * configure.ac: Error when source path contains spaces.
3333 * configure: Regenerate.
3334
3335 2010-10-20 Ian Lance Taylor <iant@google.com>
3336
3337 * Makefile.def (target_modules): Set lib_path to src/.libs for
3338 libstdc++-v3 module.
3339 * Makefile.tpl: Fix typo in TARGET_LIB_PATH comment.
3340 * Makefile.in: Rebuild.
3341
3342 2010-10-08 Bernd Schmidt <bernds@codesourcery.com>
3343 Joseph Myers <joseph@codesourcery.com>
3344
3345 * COPYING.LIBGLOSS: Add National Semiconductor and CodeSourcery
3346 notices.
3347 * COPYING.NEWLIB: Add Texas Instruments notice.
3348
3349 2010-10-07 Dave Korn <dave.korn.cygwin@gmail.com>
3350
3351 * configure.ac (build_lto_plugin): New shell variable.
3352 (--enable-lto): Turn on by default for all non-ELF platforms that
3353 have had LTO support added so far. Set build_lto_plugin appropriately
3354 for both ELF and non-ELF.
3355 (configdirs): Add lto-plugin or not based on build_lto_plugin.
3356 * configure: Regenerate.
3357
3358 2010-10-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3359
3360 PR bootstrap/45326
3361 PR bootstrap/45174
3362 * configure.ac: Honor initial values of $build_configargs,
3363 $host_configargs, $target_configargs. Mark the precious, so
3364 environment settings get recorded.
3365 * configure: Regenerate.
3366
3367 2010-10-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3368
3369 Sync from GCC:
3370
3371 2010-09-30 Michael Eager <eager@eagercon.com>
3372
3373 * configure.ac (microblaze): Add target-libssp to noconfigdirs.
3374 * configure: Regenerate.
3375
3376 2010-09-21 Iain Sandoe <iains@gcc.gnu.org>
3377
3378 * configure.ac (enable-lto): Add Darwin to the list of supported lto
3379 targets and amend comment.
3380 * configure: Regenerate.
3381
3382 2010-09-03 Jack Howarth <howarth@bromo.med.uc.edu>
3383
3384 * configure.ac: Enable LTO by default on Darwin.
3385 * configure: Regenerate.
3386
3387 2010-07-23 Marc Glisse <marc.glisse@normalesup.org>
3388
3389 PR bootstrap/44455
3390 * configure.ac (extra_mpfr_configure_flags): Copy from
3391 extra_mpc_gmp_configure_flags.
3392 * configure: Re-generated.
3393
3394 2010-09-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3395
3396 Sync from GCC:
3397
3398 PR bootstrap/45796
3399 * Makefile.def (info-gcc, dvi-gcc, pdf-gcc, html-gcc):
3400 Depend on all-build-libiberty.
3401 * Makefile.in: Regenerate.
3402
3403 2010-09-27 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3404
3405 Sync from GCC:
3406
3407 PR bootstrap/44621
3408 * configure.ac: Fix unportable shell quoting.
3409 * configure: Regenerate.
3410
3411 2010-07-26 Naveen.H.S <naveen.S@kpitcummins.com>
3412
3413 * configure.ac: Support all v850 targets.
3414 * configure: Regenerate.
3415
3416 2010-07-17 Jack Howarth <howarth@bromo.med.uc.edu>
3417
3418 PR target/44862
3419 * Makefile.tpl (POSTSTAGE1_CXX_EXPORT):
3420 Provide -B option to allow for link spec %s substitutions for
3421 libstdc++.a on darwin.
3422 * Makefile.in: Regenerate.
3423
3424 2010-06-10 Alexandre Oliva <aoliva@redhat.com>
3425
3426 * Makefile.def (configure-gcc): Depend on all-libelf.
3427 * Makefile.in: Rebuild.
3428
3429 2010-06-01 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3430
3431 * config.sub, config.guess: Update from upstream sources.
3432
3433 2010-06-01 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3434
3435 Sync from GCC:
3436
3437 2010-05-05 Sebastian Pop <sebastian.pop@amd.com>
3438 * configure.ac: Allow all the versions greater than 0.10 of PPL.
3439 * configure: Regenerated.
3440
3441 2010-04-20 Eric Botcazou <ebotcazou@adacore.com>
3442 * configure.ac (BUILD_CONFIG): Redirect output to /dev/null.
3443 * configure: Regenerate.
3444
3445 2010-04-17 Ralf Cors<E9>pius <ralf.corsepius@rtems.org>
3446 * configure.ac (*-*-rtems*): Add target-libiberty to $skipdirs.
3447 * configure: Regenerate.
3448
3449 2010-04-16 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3450 * configure.ac: Check for elf_getshdrstrndx or elf_getshstrndx
3451 separately.
3452 * configure: Regenerate.
3453
3454 2010-04-13 Steve Ellcey <sje@cup.hp.com>
3455 * configure: Regenerate after change to elf.m4.
3456
3457 2010-04-02 Sebastian Pop <sebastian.pop@amd.com>
3458 * configure.ac: Add brackets around AC_TRY_COMPILE alternative.
3459 * configure: Regenerated.
3460
3461 2010-04-02 Sebastian Pop <sebastian.pop@amd.com>
3462 * configure.ac: Print "buggy but acceptable" when CLooG
3463 revision is less than 9.
3464 * configure: Regenerated.
3465
3466 2010-05-26 Dave Korn <dave.korn.cygwin@gmail.com>
3467
3468 Merge from gcc:
3469
3470 2010-05-18 Steven Bosscher <steven@gcc.gnu.org>
3471 * configure.ac (--enable-lto): All *-apple-darwin* now support LTO.
3472 * configure: Regenerate.
3473
3474 2010-05-07 Steven Bosscher <steven@gcc.gnu.org>
3475 * configure.ac (--enable-lto): Add x86_64-apple-darwin* as
3476 a platform that supports LTO.
3477 * configure: Regenerate.
3478
3479 2010-04-27 Dave Korn <dave.korn.cygwin@gmail.com>
3480 PR lto/42776
3481 * configure.ac (--enable-lto): Refactor handling so libelf tests
3482 are only performed inside then-clause of ACX_ELF_TARGET_IFELSE,
3483 and allow LTO to be explicitly enabled on non-ELF platforms that
3484 are known to support it inside else-clause.
3485 * configure: Regenerate.
3486
3487 2010-04-27 Roland McGrath <roland@redhat.com>
3488 H.J. Lu <hongjiu.lu@intel.com>
3489
3490 * configure.ac (--enable-gold): Support both, both/gold and
3491 both/bfd to add gold to configdirs without removing ld.
3492 * configure: Regenerated.
3493
3494 * Makefile.def: Add install-gold dependency to install-ld.
3495 * Makefile.in: Regenerated.
3496
3497 2010-04-14 Tristan Gingold <gingold@adacore.com>
3498
3499 * configure.ac (alpha*-*-*vms*): Remove ld from noconfigdirs.
3500 * configure: Regenerate.
3501
3502 2010-04-08 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3503
3504 Merge from gcc:
3505 PR bootstrap/43615
3506 PR bootstrap/43328
3507 Revert:
3508 2010-03-31 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3509 * configure.ac: Do not pass --enable-multilib nor
3510 --disable-multilib in baseargs. Accept explicitly passed
3511 --enable_multilib.
3512 * configure: Regenerate.
3513
3514 2010-03-31 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3515
3516 PR bootstrap/43328
3517 * configure.ac: Do not pass --enable-multilib nor
3518 --disable-multilib in baseargs. Accept explicitly passed
3519 --enable_multilib.
3520 * configure: Regenerate.
3521
3522 2010-03-23 Joseph Myers <joseph@codesourcery.com>
3523
3524 * configure.ac (tic6x-*-*): New case.
3525 * configure: Regenerate.
3526
3527 2010-03-23 Joseph Myers <joseph@codesourcery.com>
3528
3529 Merge from gcc:
3530 2010-03-19 Jack Howarth <howarth@bromo.med.uc.edu>
3531 PR ada/42554
3532 * configure.ac: Only pass -c to ranlib for darwin9 and earlier.
3533 * configure: Regenerate.
3534
3535 2010-03-23 Joseph Myers <joseph@codesourcery.com>
3536
3537 * config.sub: Update to version 2010-03-22.
3538 * config.guess: Update to version 2009-12-30.
3539
3540 2010-03-14 Joseph Myers <joseph@codesourcery.com>
3541
3542 Merge from gcc:
3543 2010-01-11 Richard Guenther <rguenther@suse.de>
3544 PR lto/41569
3545 * Makefile.def (all-lto-plugin): Depend on all-gcc.
3546 * Makefile.in: Regenerated.
3547
3548 2010-03-01 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3549
3550 PR libstdc++/32499
3551 * configure.ac (RANLIB): Default to true.
3552 (STRIP): Likewise.
3553 (RANLIB_FOR_TARGET): Remove superfluous : argument.
3554 * configure: Regenerate.
3555
3556 2010-02-17 Nick Clifton <nickc@redhat.com>
3557
3558 PR 11238
3559 * Makefile.tpl (local-distclean): Also remove config.cache files in
3560 sub-directories as there may not be Makefiles present in the
3561 sub-directories.
3562 * Makefile.tpl: Use "-exec rm {}" rather than "-delete" to delete
3563 the config.cache files found by the find command.
3564
3565 * Makefile.in: Regenerate.
3566 * configure.ac: Revert previous delta.
3567 * configure: Regenerate.
3568
3569 2010-02-15 Nick Clifton <nickc@redhat.com>
3570
3571 PR 11238
3572 * configure.ac: Delete config.cache files in sub-directories when
3573 deleting Makefiles.
3574 * configure: Regenerate.
3575
3576 2010-02-15 Nick Clifton <nickc@redhat.com>
3577
3578 * configure.ac: Sync from gcc.
3579 * configure: Regenerate.
3580
3581 2010-01-31 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3582
3583 Sync from gcc:
3584 * configure.ac: Add "recommended" version checks for GMP/MPC.
3585 Update recommended GMP/MPFR/MPC versions.
3586 * configure: Regenerate.
3587
3588 2010-01-25 Joern Rennecke <amylaar@spamcop.net>
3589
3590 gcc PR libstdc++/36101, gcc PR libstdc++/42813
3591 * configure.ac (bootstrap_target_libs): Make inclusion of
3592 target-libgomp conditional on libgomb being in target_configdirs.
3593 * configure: Regenerate.
3594
3595 2010-01-23 Joern Rennecke <amylaar@spamcop.net>
3596
3597 gcc PR libstdc++/36101, gcc PR libstdc++/42813
3598 * configure.ac (bootstrap_target_libs): Include target-libgomp.
3599 * configure: Regenerate.
3600
3601 2010-01-22 Joern Rennecke <amylaar@spamcop.net>
3602
3603 gcc PR libstdc++/36101, gcc PR libstdc++/42813
3604 * configure.ac (target_configdirs): Substitute.
3605 * Makefile.def: Bootstrap target module libgomp.
3606 Add dependency of all-target-libstdc++-v3 on configure-target-libgomp.
3607 * Makefile.tpl (TARGET_CONFIGDIRS): New makefile variable.
3608 (BASE_TARGET_EXPORTS): Export TARGET_CONFIGDIRS.
3609 * configure, Makefile.in: Regenerate.
3610
3611 2009-12-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3612
3613 * libtool.m4: Sync from git Libtool.
3614 * ltmain.sh: Likewise.
3615 * ltoptions.m4: Likewise.
3616 * ltversion.m4: Likewise.
3617 * lt~obsolete.m4: Likewise.
3618
3619 2010-01-07 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3620 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
3621
3622 PR bootstrap/42424
3623 * configure.ac: Include libtool m4 files.
3624 (_LT_CHECK_OBJDIR): Call it.
3625 (extra_mpc_mpfr_configure_flags, extra_mpc_gmp_configure_flags,
3626 gmplibs, ppllibs, clooglibs): Use $lt_cv_objdir.
3627
3628 * configure: Regenerate.
3629
3630 2010-01-07 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3631
3632 PR bootstrap/41818
3633 * Makefile.tpl (BASE_TARGET_EXPORTS): Only add TARGET_LIB_PATH
3634 to $(RPATH_ENVVAR) if bootstrapping. Fix typo in comment.
3635 * Makefile.in: Regenerate.
3636
3637 2009-12-18 Ben Elliston <bje@au.ibm.com>
3638
3639 * config.sub, config.guess: Update from upstream sources.
3640
3641 2009-12-17 Jeff Johnston <jjohnstn@redhat.com>
3642
3643 * COPYING.NEWLIB: Update copyright date.
3644 * COPYING.LIBGLOSS: Ditto.
3645
3646 2009-12-07 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3647
3648 PR middle-end/30447
3649 PR middle-end/30789
3650 PR other/40302
3651
3652 * configure.ac: Require MPC.
3653 * configure: Regenerate.
3654
3655 * configure.ac: Update minimum MPC version to 0.8.
3656 * configure: Regenerate.
3657
3658 2009-11-20 Paolo Bonzini <bonzini@gnu.org>
3659
3660 * config.guess: Sync with upstream and gcc.
3661 * config.sub: Sync with upstream and gcc.
3662
3663 2009-11-16 Alexandre Oliva <aoliva@redhat.com>
3664
3665 * Makefile.def: Restore host and target settings for gmp.
3666 * Makefile.in: Rebuild.
3667
3668 2009-11-16 Alexandre Oliva <aoliva@redhat.com>
3669
3670 * configure.ac: Add libelf to host_libs. Enable in-tree configury
3671 of ppl and cloog. Fix in-tree configury of libelf, skip tests.
3672 Fix portability of test of C++ as bootstrap language. Add
3673 ppl/src/ppl-config.o to the bootstrap compare exclusion list.
3674 * configure: Rebuild.
3675 * Makefile.def: Drop host and target settings from gmp, mpfr, ppl,
3676 and cloog. Fix in-tree ppl configuration. Introduce libelf
3677 in-tree building.
3678 * Makefile.tpl (POSTSTAGE1_CXX_EXPORT): New.
3679 (POSTSTAGE1_HOST_EXPORTS): Use it.
3680 (STAGE[+id+]_CXXFLAGS): New.
3681 (BASE_FLAGS_TO_PASS): Pass it down.
3682 (configure-stage[+id+]-[+prefix+][+module+]): Use it. Add
3683 extra_exports.
3684 (all-stage[+id+]-[+prefix+][+module+]): Likewise.
3685 (configure-[+prefix+][+module+], all-[+prefix+][+module+]): Add
3686 extra_exports.
3687 * Makefile.in: Rebuild.
3688
3689 2009-11-06 Ozkan Sezer <sezeroz@gmail.com>
3690
3691 * configure.ac (FLAGS_FOR_TARGET): Add -L and -isystem
3692 paths for *-w64-mingw* and x86_64-*mingw*.
3693 * configure: Regenerated.
3694
3695 2009-10-30 Kai Tietz <kai.tietz@onevision.com>
3696
3697 * configure.ac: Disable target-winsup & co for
3698 x86_64-*-mingw* and *-w64-mingw* targets.
3699 * configure: Regenerated.
3700
3701 2009-10-23 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3702
3703 * configure.ac (CLooG test): Use = with test.
3704 * configure: Regenerate.
3705
3706 2009-10-22 Richard Guenther <rguenther@suse.de>
3707
3708 * configure.ac: Do not set LIBS for ppl/cloog checks. Disable
3709 cloog if the ppl version check failed. Move flags saving
3710 before setting in libelf check.
3711 * configure: Regenerate.
3712
3713 2009-10-21 Richard Guenther <rguenther@suse.de>
3714
3715 * configure.ac: Adjust the ppl and cloog configure to work as
3716 documented. Disable cloog if ppl was disabled. Omit the version
3717 checks if they were disabled.
3718 * configure: Re-generate.
3719
3720 2009-10-13 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3721
3722 * configure.ac: Add 'lto' to enable_languages, not
3723 new_enable_languages, and only if not already present.
3724 * configure: Regenerate.
3725
3726 2009-10-06 Ian Lance Taylor <iant@google.com>
3727
3728 * Makefile.def: check-gold depends upon all-gas.
3729 * Makefile.in: Rebuild.
3730
3731 2009-10-03 2009-02-05 Rafael Avila de Espindola <espindola@google.com>
3732
3733 * Makefile.def: all-lto-plugin depends on all-libiberty.
3734 set bootstrap=true for lto-plugin.
3735 Add lto-plugin.
3736 * Makefile.in: Regenerate.
3737 * configure.ac (host_libs): Add lto-plugin.
3738 * configure: Regenerate.
3739
3740 2009-10-03 Diego Novillo <dnovillo@google.com>
3741
3742 * Makefile.tpl (HOST_EXPORTS): Add LIBELFLIBS and LIBELFINC.
3743 (HOST_LIBELFLIBS): Define.
3744 (HOST_LIBELFINC): Define.
3745 * Makefile.in: Regenerate.
3746 * configure.ac: Add --enable-lto.
3747 Add --with-libelf, --with-libelf-include and --with-libelf-lib.
3748 If --enable-lto is used, add 'lto' to new_enable_languages.
3749 If --enable-lto is used and gold is enabled, add
3750 lto-plugin to configdirs.
3751 * configure: Regenerate.
3752
3753 2009-10-03 Simon Baldwin <simonb@google.com>
3754
3755 * configure.ac: If --with-system-zlib, suppress local zlib and
3756 pass --with-system-zlib to subdir configure scripts.
3757 * configure: Regenerate.
3758
3759 2009-10-01 Loren J. Rittle <ljrittle@acm.org>
3760 Paolo Bonzini <bonzini@gnu.org>
3761
3762 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Use $$s rather than
3763 $(srcdir).
3764 * Makefile.in: Rebuilt.
3765
3766 2009-09-29 Paolo Bonzini <bonzini@gnu.org>
3767
3768 Sync from gcc:
3769 2009-09-26 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3770
3771 * configure.ac: Update minimum MPC version to 0.7.
3772 * configure: Regenerate.
3773
3774 2009-09-25 Nick Clifton <nickc@redhat.com>
3775
3776 * configure.ac: Pass any --cache-file=/dev/null option on to
3777 subconfigures.
3778 * configure: Regenerate.
3779
3780 2009-09-23 Nick Clifton <nickc@redhat.com>
3781
3782 * config.sub, config.guess: Update from upstream sources.
3783
3784 2009-09-22 Loren J. Rittle <ljrittle@acm.org>
3785
3786 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Remove stray $$r/.
3787 * Makefile.in: Rebuilt.
3788
3789 2009-09-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3790
3791 PR bootstrap/32272
3792 * configure.ac: Error out if $srcdir isn't '.' but contains
3793 host-${host_noncanonical}.
3794 * configure: Regenerate.
3795
3796 2009-09-21 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3797
3798 * configure.ac: If bootstrapping a combined tree with
3799 --enable-gold, require c++ in stage1_languages.
3800 * configure: Regenerate.
3801
3802 * configure.ac: Also add target_libs of stage1_languages to
3803 bootstrap_target_libs.
3804 * configure: Regenerate.
3805
3806 * configure.ac: Diagnose --enable-build-with-cxx bootstrap
3807 with --enable-languages not containing c++.
3808 * configure: Regenerate.
3809
3810 2009-09-16 Jie Zhang <jie.zhang@analog.com>
3811
3812 * configure.ac: Disable java and boehm-gc for bfin-*-*.
3813 * configure: Regenerate.
3814
3815 2009-09-08 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3816
3817 * configure.ac: Do not use $extrasub for replacing @if/@endif
3818 parts in Makefile; instead, use additional arguments to
3819 AC_CONFIG_COMMANDS to do the replacement manually, with several
3820 sed invocations, to avoid HP-UX sed command limits.
3821 * configure: Regenerate.
3822
3823 2009-09-04 Alexandre Oliva <aoliva@redhat.com>
3824
3825 * configure.ac (with-build-config): Document. Handle without.
3826 Handle missing argument.
3827 * configure: Rebuilt.
3828
3829 2009-09-03 Alexandre Oliva <aoliva@redhat.com>
3830
3831 * configure.ac (--with-build-config): New. Set BUILD_CONFIG.
3832 Default to bootstrap-debug only if compare-debug works.
3833 * configure: Rebuilt.
3834 * Makefile.tpl: Make BUILD_CONFIG configure-configurable.
3835 * Makefile.in: Rebuilt.
3836
3837 2009-09-01 Alexandre Oliva <aoliva@redhat.com>
3838
3839 * Makefile.tpl (BUILD_CONFIG): Default to bootstrap-debug.
3840 * Makefile.in: Rebuilt.
3841
3842 2009-09-02 Paolo Bonzini <bonzini@gnu.org>
3843
3844 * Makefile.tpl (AWK): Fix typo.
3845 * Makefile.in: Regenerate.
3846
3847 2009-09-02 Paolo Bonzini <bonzini@gnu.org>
3848
3849 * configure.ac: Detect awk and sed.
3850 * Makefile.def (flags_to_pass): Add AWK and SED.
3851 * Makefile.tpl (AWK, SED): New.
3852 (BASE_FLAGS_TO_PASS): Add AWK and SED.
3853 * configure: Regenerate.
3854 * Makefile.in: Regenerate.
3855
3856 2009-09-01 Tristan Gingold <gingold@adacore.com>
3857
3858 * setup.com: Ported to Itanium VMS. Can also build using DCL scripts.
3859 Remove logical names.
3860
3861 2009-08-31 Dave Korn <dave.korn.cygwin@gmail.com>
3862
3863 * ltmain.sh (func_normal_abspath): New function.
3864 (func_relative_path): Likewise.
3865 (func_mode_help): Document new -bindir option for link mode.
3866 (func_mode_link): Add new -bindir option, and use it to place
3867 output DLL if specified.
3868
3869 2009-08-24 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3870
3871 * configure.ac (AC_PREREQ): Bump to 2.64.
3872
3873 2009-08-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3874
3875 * README-maintainer-mode: Point directly to upstream locations
3876 for autoconf, automake, libtool, gettext, instead of copies on
3877 sources.redhat.com. Document required versions.
3878 * configure.ac: Do not substitute datarootdir, htmldir,
3879 pdfdir, docdir. Do not process --with-datarootdir,
3880 --with-htmldir, --with-pdfdir, --with-docdir.
3881 * configure: Regenerate.
3882
3883 * configure: Regenerate.
3884
3885 * compile: Sync from Automake 1.11.
3886 * depcomp: Likewise.
3887 * install-sh: Likewise.
3888 * missing: Likewise.
3889 * mkinstalldirs: Likewise.
3890 * ylwrap: Likewise.
3891
3892 2009-08-19 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3893
3894 * configure.ac: Call AC_DISABLE_OPTION_CHECKING.
3895 (baseargs): Add --disable-option-checking.
3896 * configure: Regenerate.
3897
3898 * Makefile.def (configure-target-libiberty): Depend on
3899 all-binutils and all-ld.
3900 (configure-target-newlib): Likewise.
3901 * Makefile.in: Regenerate.
3902
3903 2009-08-19 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3904
3905 Sync with GCC, merge:
3906
3907 2009-07-31 Christian Bruel <christian.bruel@st.com>
3908
3909 * configure.ac (sh*-*-elf): Don't add target-libgloss to noconfigdirs.
3910 * configure: Regenerate.
3911
3912 2009-07-06 Ian Lance Taylor <iant@google.com>
3913
3914 * configure.ac: Add missing comma in AC_ARG_WITH(boot-libs).
3915 * configure: Rebuild.
3916
3917 2009-06-26 Steve Ellcey <sje@cup.hp.com>
3918
3919 PR bootstrap/40338
3920 * configure.ac (comparestring): Create new variable.
3921 * Makefile.tpl (comparestring): Use to skip some comparisions.
3922 * configure: Regenerate.
3923 * Makefile.in: Regenerate.
3924
3925 2009-06-23 Ian Lance Taylor <iant@google.com>
3926
3927 * configure.ac: Add --enable-build-with-cxx. When set, add c++ to
3928 boot_languages. Only bootstrap target libraries listed in
3929 target_libs for some boot language. Add --with-stage1-ldflags,
3930 --with-stage1-libs, --with-boot-ldflags, --with-boot-libs. Remove
3931 with_host_libstdcxx from ppllibs. Only add -fkeep-inline-functions
3932 if not building with C++.
3933 * Makefile.def: For target_module libstdc++-v3, set bootstrap=true.
3934 * Makefile.tpl (STAGE1_LDFLAGS, STAGE1_LIBS): New variables.
3935 (POSTSTAGE1_LDFLAGS, POSTSTAGE1_LIBS): New variables.
3936 (HOST_EXPORTS): Add STAGE1_LDFLAGS to LDFLAGS. Export HOST_LIBS.
3937 (POSTSTAGE1_HOST_EXPORTS): Set CXX and CXX_FOR_BUILD. Add
3938 POSTSTAGE1_LDFLAGS to LDFLAGS. Export HOST_LIBS.
3939 (POSTSTAGE1_FLAGS_TO_PASS): Likewise.
3940 * configure, Makefile.in: Rebuild.
3941
3942 2009-06-08 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3943
3944 * configure.ac: Detect MPC in default directory.
3945 * configure: Regenerate.
3946
3947 2009-06-02 Richard Sandiford <r.sandiford@uk.ibm.com>
3948
3949 * configure.ac (powerpc-*-aix*, rs6000-*-aix*): Add target-newlib
3950 to noconfdirs.
3951 * configure: Regenerate.
3952
3953 2009-05-29 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3954
3955 * Makefile.def: Add MPC support and dependencies.
3956 * configure.ac: Likewise. Reorganize GMP/MPFR checks.
3957
3958 * Makefile.in, configure: Regenerate.
3959
3960 2009-05-24 Nicolas Roche <roche@adacore.com>
3961
3962 * Makefile.tpl (compare-target): Skip ./ada/*tools directories.
3963 * Makefile.in: Regenerate.
3964
3965 2009-05-21 Dave Korn <dave.korn.cygwin@gmail.com>
3966
3967 * configure.ac (cygwin noconfigdirs): Remove libgcj.
3968 * configure: Regenerate.
3969
3970 2009-05-07 Dave Korn <dave.korn.cygwin@gmail.com>
3971
3972 * configure.ac ($with_ppl): Default to no if not supplied.
3973 ($with_cloog): Likewise.
3974 configure: Regenerate.
3975
3976 2009-04-24 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3977
3978 PR bootstrap/39739
3979 * configure.ac (extra_mpfr_configure_flags): Set and AC_SUBST.
3980 * Makefile.def (module=mpfr): Use extra_mpfr_configure_flags.
3981
3982 * configure, Makefile.in: Regenerate.
3983
3984 2009-04-14 Jakub Jelinek <jakub@redhat.com>
3985
3986 * configure.ac: Change copyright header to refer to version
3987 3 of the GNU General Public License and to point readers at the
3988 COPYING3 file and the FSF's license web page.
3989 * Makefile.def: Likewise.
3990 * Makefile.tpl: Likewise.
3991 * Makefile.in: Regenerate.
3992
3993 2009-04-09 Jack Howarth <howarth@bromo.med.uc.edu>
3994
3995 * configure.ac: Restore match for darwin9 or later. Use double
3996 brackets since regeneration eats one pair.
3997 * configure: Regenerate.
3998
3999 2009-08-18 Christopher Faylor <me+cygwin@cgf.cx>
4000
4001 * MAINTAINERS: Perform some obvious fixups.
4002
4003 2009-08-17 Ben Elliston <bje@au.ibm.com>
4004
4005 * config.sub, config.guess: Update from upstream sources.
4006
4007 2009-08-06 Michael Eager <eager@eagercon.com>
4008
4009 * configure.ac: Add Microblaze target.
4010 * configure: Regenerate.
4011
4012 2009-07-02 Tristan Gingold <gingold@adacore.com>
4013
4014 * configure.ac: Do not exclude gas for i386-*-darwin.
4015 Add a case for x86_64-*-darwin.
4016 * configure: Regenerate.
4017
4018 2009-06-26 Doug Evans <dje@sebabeach.org>
4019
4020 * Makefile.def (host_modules): Add cgen.
4021 * Makefile.in: Regenerate.
4022 * configure.ac (host_tools): Add cgen.
4023 * configure: Regenerate.
4024
4025 2009-06-17 Michael Eager <eager@eagercon.com>
4026
4027 * COPYING.LIBGLOSS: Add Xilinx license.
4028
4029 2009-06-15 Ryan Mansfield <rmansfield@qnx.com>
4030
4031 * configure.ac: Define is_elf for QNX Neutrino targets.
4032 * configure: Regenerate.
4033
4034 2009-06-03 Jerome Guitton <guitton@adacore.com>
4035 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4036
4037 * Makefile.tpl (all): Avoid a trailing backslash.
4038 * Makefile.in: Regenerate.
4039
4040 2009-06-03 Ben Elliston <bje@au.ibm.com>
4041
4042 * config.sub, config.guess: Update from upstream sources.
4043
4044 2009-06-02 Alexandre Oliva <aoliva@redhat.com>
4045
4046 * Makefile.tpl ([+compare-target+]): Compare all stage
4047 directories, rather than just gcc.
4048 * Makefile.in: Rebuilt.
4049
4050 2009-05-28 Doug Kwan <dougkwan@google.com>
4051
4052 * configure.ac: Support gold for target arm*-*-*.
4053 * configure: Regenerate.
4054
4055 2009-05-27 Alexandre Oliva <aoliva@redhat.com>
4056
4057 * Makefile.tpl (all): Avoid harmless warning in make all when
4058 gcc-bootstrap is enabled but stage_last does not exist.
4059 * Makefile.in: Rebuilt.
4060
4061 2009-05-25 Tristan Gingold <gingold@adacore.com>
4062
4063 * setup.com: Complete the file with configuration and build.
4064
4065 2009-05-18 Alexandre Oliva <aoliva@redhat.com>
4066
4067 PR other/40159
4068 * Makefile.tpl (all): Don't assume gcc-bootstrap and
4069 gcc-no-bootstrap are mutually exclusive.
4070 * Makefile.in: Rebuilt.
4071
4072 2009-05-18 Alexandre Oliva <aoliva@redhat.com>
4073
4074 PR other/40159
4075 * Makefile.tpl (all): Don't end with unconditional success.
4076 * Makefile.in: Rebuilt.
4077
4078 2009-05-12 Alexandre Oliva <aoliva@redhat.com>
4079
4080 PR target/37137
4081 * Makefile.def (flags_to_pass): Remove redundant and incomplete
4082 STAGE1_CFLAGS, STAGE2_CFLAGS, STAGE3_CFLAGS, and STAGE4_CFLAGS.
4083 Add FLAGS_FOR_TARGET and BUILD_CONFIG.
4084 (bootstrap_stage): Remove bootstrap-debug custom stages. Turn
4085 stage_configureflags, stage_cflags and stage_libcflags into
4086 explicit Makefile macros.
4087 * Makefile.tpl (HOST_EXPORTS, EXTRA_HOST_FLAGS): Pass GCJ and
4088 GFORTRAN.
4089 (POSTSTAGE1_HOST_EXPORTS): Add XGCC_FLAGS_FOR_TARGET and TFLAGS to
4090 CC. Set CC_FOR_BUILD from CC.
4091 (BASE_TARGET_EXPORTS, RAW_CXX_TARGET_EXPORTS,
4092 NORMAL_TARGET_EXPORTS): Move SYSROOT_CFLAGS_FOR_TARGET and
4093 DEBUG_PREFIX_CFLAGS_FOR_TARGET from CFLAGS and CXXFLAGS to
4094 XGCC_FLAGS_FOR_TARGET. Add it along with TFLAGS to CC, CXX, GCJ,
4095 and GFORTRAN.
4096 (TFLAGS, STAGE_CFLAGS, STAGE_TFLAGS, STAGE_CONFIGURE_FLAGS): New.
4097 (_LIBCFLAGS): Renamed to _TFLAGS.
4098 (do-compare-debug, do-compare3-debug): Drop.
4099 (CC, GCC_FOR_TARGET, CXX_FOR_TARGET, RAW_CXX_FOR_TARGET,
4100 GCJ_FOR_TARGET, GFORTRAN_FOR_TARGET): Remove FLAGS_FOR_TARGET.
4101 (FLAGS_FOR_TARGET, SYSROOT_CFLAGS_FOR_TARGET,
4102 DEBUG_PREFIX_CFLAGS_FOR_TARGET): Move down.
4103 (XGCC_FLAGS_FOR_TARGET): New.
4104 (BASE_FLAGS_TO_PASS): Pass STAGEid_CFLAGS, STAGEid_TFLAGS and TFLAGS.
4105 (EXTRA_HOST_FLAGS): Pass GCJ and GFORTRAN.
4106 (POSTSTAGE1_FLAGS_TO_PASS): Move SYSROOT_CFLAGS_FOR_TARGET and
4107 DEBUG_PREFIX_CFLAGS_FOR_TARGET from CFLAGS, CXXFLAGS, LIBCFLAGS,
4108 LIBCXXFLAGS to XGCC_FLAGS_FOR_TARGET. Add it along with TFLAGS
4109 to CC, CXX, GCJ, and GFORTRAN. Pass XGCC_FLAGS_FOR_TARGET and
4110 TFLAGS.
4111 (BUILD_CONFIG): Include if requested.
4112 (all): Set TFLAGS on bootstrap.
4113 (configure-stageid-prefixmodule): Pass TFLAGS, adjust FLAGS.
4114 (all-stageid-prefixmodule): Likewise.
4115 (do-clean, distclean-stageid): Set TFLAGS.
4116 (restrap): Fix whitespace.
4117 * Makefile.in: Rebuilt.
4118
4119 2009-04-25 Eric Botcazou <ebotcazou@adacore.com>
4120
4121 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Add GNATBIND.
4122 (POSTSTAGE1_FLAGS_TO_PASS): Pick up exported value for GNATBIND.
4123 * Makefile.in: Regenerate.
4124
4125 2009-04-24 Eli Zaretskii <eliz@gnu.org>
4126
4127 * config.guess (pc:*:*:*): Return i586-pc-msdosdjgpp, for
4128 consistency with config.sub. (Update from upstream sources.)
4129
4130 2009-04-21 Joseph Myers <joseph@codesourcery.com>
4131
4132 * texinfo/texinfo.tex: Update to version 2009-03-28.05.
4133
4134 2009-04-17 Ben Elliston <bje@au.ibm.com>
4135
4136 * config.sub, config.guess: Update from upstream sources.
4137
4138 2009-04-15 Anthony Green <green@moxielogic.com>
4139
4140 * configure.ac: Add moxie support.
4141 * configure: Rebuilt.
4142
4143 2009-04-09 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4144
4145 * configure.ac: Bump minimum GMP/MPFR versions to 4.2 and 2.3.1.
4146 * configure: Regenerate.
4147
4148 2009-04-09 H.J. Lu <hongjiu.lu@intel.com>
4149
4150 PR gas/10039
4151 * configure.ac: Require texinfo 4.7.
4152 * configure: Regenerated.
4153
4154 2009-04-09 Steve Ellcey <sje@cup.hp.com>
4155
4156 * Makefil.def (languages): New entries.
4157 * Makefile.tpl (check-gcc-*): New generic target.
4158 * Makefile.in: Regenerate.
4159
4160 2009-03-27 Eli Zaretskii <eliz@gnu.org>
4161
4162 * djunpack.bat: Use ".." quoting in Sed command, for the sake of
4163 Windows builds of Sed.
4164
4165 2009-03-18 Tom Tromey <tromey@redhat.com>
4166
4167 * configure: Rebuild.
4168 * configure.ac (host_libs): Add libiconv.
4169 * Makefile.in: Rebuild.
4170 * Makefile.def (host_modules): Add libiconv.
4171 (configure-gdb, all-gdb): Depend on libiconv.
4172
4173 2009-03-16 Tristan Gingold <gingold@adacore.com>
4174
4175 * configure.ac: Treat gdb as supported on x86_64-darwin.
4176 * configure: Regenerate.
4177
4178 2009-03-16 Joseph Myers <joseph@codesourcery.com>
4179
4180 Merge from GCC:
4181
4182 2009-03-16 Joseph Myers <joseph@codesourcery.com>
4183
4184 * configure.ac (--with-host-libstdcxx): New option.
4185 * configure: Regenerate.
4186
4187 2009-01-29 Robert Millan <rmh@aybabtu.com>
4188
4189 * configure.ac: Recognize GNU/kOpenSolaris (*-*-kopensolaris*-gnu).
4190 * configure: Regenerate.
4191
4192 2009-01-12 Sebastian Pop <sebastian.pop@amd.com>
4193
4194 PR tree-optimization/38515
4195 * configure.ac (cloog-polylib): Removed.
4196 (with_ppl, with_cloog): Test for "no".
4197 * configure: Regenerated.
4198
4199 2009-03-01 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4200
4201 Backport from git Libtool:
4202
4203 2009-01-19 Robert Millan <rmh@aybabtu.com>
4204 Support GNU/kOpenSolaris.
4205 * libltdl/m4/libtool.m4 (_LT_SYS_DYNAMIC_LINKER)
4206 (_LT_CHECK_MAGIC_METHOD, _LT_COMPILER_PIC, _LT_LINKER_SHLIBS)
4207 (_LT_LANG_CXX_CONFIG) [kopensolaris*-gnu]: Recognize
4208 GNU/kOpenSolaris.
4209
4210 2009-02-05 Andreas Schwab <schwab@suse.de>
4211
4212 * Makefile.tpl (stage_last): Define $r and $s before using
4213 $(RECURSE_FLAGS_TO_PASS).
4214 * Makefile.in: Regenerate
4215
4216 2009-01-21 Jeff Johnston <jjohnstn@redhat.com>
4217
4218 * COPYING.NEWLIB: Add ARM license.
4219
4220 2009-01-16 Alan Modra <amodra@bigpond.net.au>
4221
4222 * Makefile.def (configure-opcodes): Depend on configure-libiberty.
4223 (all-opcodes): Depend on all-libiberty.
4224 * Makefile.in: Regenerate.
4225
4226 2009-01-15 Douglas B Rupp <rupp@gnat.com>
4227
4228 * configure.ac (ia64*-*-*vms*): Add case with no gdb or ld support.
4229 * configure: Regenerate.
4230
4231 2008-12-18 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4232
4233 Backport link test fix from upstream Libtool:
4234
4235 * libltdl.m4 (_LT_SYS_DYNAMIC_LINKER, _LT_LINKER_SHLIBS):
4236 Add cache variables to tests that require the linker to work.
4237 For shlibpath_overrides_runpath, this also changes the semantics
4238 to let the result from the C compiler take precedence.
4239 compiler take precedence.
4240
4241 2008-12-02 Ben Elliston <bje@au.ibm.com>
4242
4243 * config.sub, config.guess: Update from upstream sources.
4244
4245 2008-12-17 Jeff Johnston <jjohnstn@redhat.com>
4246
4247 * COPYING.NEWLIB: Updated.
4248 * COPYING.LIBGLOSS: Ditto.
4249
4250 2008-12-16 Paolo Bonzini <bonzini@gnu.org>
4251
4252 Sync with GCC:
4253
4254 2008-12-12 Sebastian Pop <sebastian.pop@amd.com>
4255
4256 * configure.ac (ppllibs): Add by default the lib flags.
4257 * configure: Regenerate.
4258
4259 2008-12-04 Jack Howarth <howarth@bromo.med.uc.edu>
4260
4261 * configure.ac: Add double brackets on darwin[912].
4262 * configure: Regenerate.
4263
4264 2008-12-02 Jack Howarth <howarth@bromo.med.uc.edu>
4265
4266 * configure.ac: Expand to darwin10 and later.
4267 * configure: Regenerate.
4268
4269 2008-12-02 Andreas Schwab <schwab@suse.de>
4270
4271 * Makefile.def: configure-target-boehm-gc depends on
4272 all-target-libstdc++-v3.
4273 * Makefile.in: Regenerate.
4274
4275 2008-12-02 Ben Elliston <bje@au.ibm.com>
4276
4277 * config.sub, config.guess: Update from upstream sources.
4278
4279 2008-11-27 Joseph Myers <joseph@codesourcery.com>
4280
4281 Merge from GCC:
4282
4283 2007-12-02 Matthias Klose <doko@ubuntu.com>
4284
4285 * config-ml.in: Remove 64bit configure tests.
4286
4287 2008-05-14 Rafael Espindola <espindola@google.com>
4288
4289 * config-ml.in: don't handle --enable-shared and --enable-static.
4290
4291 2008-09-02 Sebastian Pop <sebastian.pop@amd.com>
4292 Tobias Grosser <grosser@fim.uni-passau.de>
4293 Jan Sjodin <jan.sjodin@amd.com>
4294 Harsha Jagasia <harsha.jagasia@amd.com>
4295 Dwarakanath Rajagopal <dwarak.rajagopal@amd.com>
4296 Konrad Trifunovic <konrad.trifunovic@inria.fr>
4297 Adrien Eliche <aeliche@isty.uvsq.fr>
4298
4299 Merge from graphite branch.
4300 * configure: Regenerate.
4301 * Makefile.in: Regenerate.
4302 * configure.ac (host_libs): Add ppl and cloog.
4303 Add checks for PPL and CLooG.
4304 * Makefile.def (ppl, cloog): Added modules and dependences.
4305 * Makefile.tpl (PPLLIBS, PPLINC, CLOOGLIBS, CLOOGINC): New.
4306 (HOST_PPLLIBS, HOST_PPLINC, HOST_CLOOGLIBS, HOST_CLOOGINC): New.
4307
4308 2008-09-03 Richard Guenther <rguenther@suse.de>
4309
4310 * configure.ac: Always pass -DCLOOG_PPL_BACKEND to the
4311 cloog test.
4312 * configure: Re-generate.
4313
4314 2008-09-03 Sebastian Pop <sebastian.pop@amd.com>
4315
4316 * configure.ac (--with-cloog-polylib): New.
4317 (--disable-cloog-version-check): New.
4318 (--disable-ppl-version-check): New.
4319 * configure: Re-generate.
4320
4321 2008-09-05 Richard Guenther <rguenther@suse.de>
4322
4323 * configure.ac: Initialize clooglibs to -lcloog.
4324 * configure: Re-generate.
4325
4326 2008-10-13 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4327
4328 * configure.ac (MPFR check): Bump minimum version to 2.3.0 and
4329 recommended version to 2.3.2.
4330
4331 * configure: Regenerate.
4332
4333 2008-10-31 Ben Elliston <bje@au.ibm.com>
4334
4335 * configure.ac (spu-*-*): Remove special case.
4336 * configure: Regenerate.
4337
4338 Complete comment text from GCC version of:
4339
4340 2008-08-31 Aaron W. LaFramboise <aaronavay62@aaronwl.com>
4341
4342 * configure.ac (RPATH_ENVVAR): Use PATH on Windows.
4343 (GCC_SHLIB_SUBDIR): New.
4344 * Makefile.tpl (HOST_LIB_PATH_gcc): Use GCC_SHLIB_SUBDIR.
4345 * configure: Regenerate.
4346 * Makefile.in: Regenerate.
4347
4348 2008-11-27 Tristan Gingold <gingold@adacore.com>
4349
4350 * configure.ac: Build gdb for i?86-*-darwin*
4351 * configure: Regenerated.
4352
4353 2008-11-14 Daniel Jacobowitz <dan@codesourcery.com>
4354
4355 PR bootstrap/38014
4356 PR bootstrap/37923
4357
4358 Revert:
4359
4360 2008-10-24 Daniel Jacobowitz <dan@codesourcery.com>
4361
4362 * Makefile.tpl (HOST_EXPORTS): Correct CPPFLAGS typo.
4363 * Makefile.in: Regenerated.
4364
4365 2008-10-22 Daniel Jacobowitz <dan@codesourcery.com>
4366
4367 PR gdb/921
4368 PR gdb/1646
4369 PR gdb/2175
4370 PR gdb/2176
4371
4372 * Makefile.def (flags_to_pass): Add CPPFLAGS_FOR_BUILD and CPPFLAGS.
4373 * Makefile.tpl (BUILD_EXPORTS): Set CPPFLAGS.
4374 (EXTRA_BUILD_FLAGS): Correct typo. Pass CPPFLAGS.
4375 (HOST_EXPORTS): Pass CPPFLAGS.
4376 (CPPFLAGS_FOR_BUILD, CPPFLAGS, CPPFLAGS_FOR_TARGET): Define.
4377 (LDFLAGS_FOR_TARGET): Initialize from configure script.
4378 (EXTRA_TARGET_FLAGS): Set CPPFLAGS.
4379 * Makefile.in, configure: Regenerated.
4380 * configure.ac: Set CPPFLAGS_FOR_TARGET, LDFLAGS_FOR_TARGET,
4381 and CPPFLAGS_FOR_BUILD.
4382
4383 2008-10-29 Stefan Schulze Frielinghaus <xxschulz@de.ibm.com>
4384
4385 * configure.ac [spu-*-*]: Do not set skipdirs.
4386 * configure: Re-generate.
4387
4388 2008-10-24 Daniel Jacobowitz <dan@codesourcery.com>
4389
4390 * Makefile.tpl (HOST_EXPORTS): Correct CPPFLAGS typo.
4391 * Makefile.in: Regenerated.
4392
4393 2008-10-22 Daniel Jacobowitz <dan@codesourcery.com>
4394
4395 PR gdb/921
4396 PR gdb/1646
4397 PR gdb/2175
4398 PR gdb/2176
4399
4400 * Makefile.def (flags_to_pass): Add CPPFLAGS_FOR_BUILD and CPPFLAGS.
4401 * Makefile.tpl (BUILD_EXPORTS): Set CPPFLAGS.
4402 (EXTRA_BUILD_FLAGS): Correct typo. Pass CPPFLAGS.
4403 (HOST_EXPORTS): Pass CPPFLAGS.
4404 (CPPFLAGS_FOR_BUILD, CPPFLAGS, CPPFLAGS_FOR_TARGET): Define.
4405 (LDFLAGS_FOR_TARGET): Initialize from configure script.
4406 (EXTRA_TARGET_FLAGS): Set CPPFLAGS.
4407 * Makefile.in, configure: Regenerated.
4408 * configure.ac: Set CPPFLAGS_FOR_TARGET, LDFLAGS_FOR_TARGET,
4409 and CPPFLAGS_FOR_BUILD.
4410
4411 2008-09-29 Peter O'Gorman <pogma@thewrittenword.com>
4412
4413 * libtool.m4: Update to libtool 2.2.6.
4414 * lt~obsolete.m4: Update to libtool 2.2.6.
4415 * ltmain.sh: Update to libtool 2.2.6.
4416 * ltsugar.m4: Update to libtool 2.2.6.
4417 * ltversion.m4: Update to libtool 2.2.6.
4418 * ltoptions.m4: Update to libtool 2.2.6.
4419 * ltgcc.m4: Update to match changes from libtool 2.2.6.
4420
4421 2008-08-31 Aaron W. LaFramboise <aaronavay62@aaronwl.com>
4422
4423 * configure.ac (RPATH_ENVVAR): Use PATH on Windows.
4424 (GCC_SHLIB_SUBDIR): New.
4425 * Makefile.tpl (HOST_LIB_PATH_gcc): Use GCC_SHLIB_SUBDIR.
4426 * configure: Regenerate.
4427 * Makefile.in: Regenerate.
4428
4429 2008-08-28 Tristan Gingold <gingold@adacore.com>
4430
4431 * configure.ac (powerpc-*-darwin*, i?86-*-darwin*,x86_64-*-darwin9):
4432 Enable bfd, binutils and opcodes.
4433 * configure: Regenerate.
4434
4435 2008-08-16 Nicolas Roche <roche@adacore.com>
4436
4437 * Makefile.tpl: Add BOOT_ADAFLAGS.
4438 * Makefile.in: Regenerate.
4439
4440 2008-08-16 Richard Sandiford <rdsandiford@googlemail.com>
4441
4442 * configure.ac (mips*-*-*linux*, mips*-*-gnu*): Use mt-mips-gnu.
4443 * configure: Regenerate.
4444
4445 2008-07-30 Paolo Bonzini <bonzini@gnu.org>
4446
4447 Sync with gcc:
4448 2008-07-30 Paolo Bonzini <bonzini@gnu.org>
4449
4450 * configure.ac: Add makefile fragments for hpux.
4451 * Makefile.def (flags_to_pass): Add ADA_CFLAGS.
4452 * Makefile.tpl (HOST_EXPORTS): Pass ADA_CFLAGS.
4453 * configure: Regenerate.
4454 * Makefile.in: Regenerate.
4455
4456 2008-06-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4457
4458 * Makefile.tpl ($(srcdir)/configure): Update dependencies.
4459 * Makefile.in: Regenerate.
4460 * configure: Regenerate.
4461
4462 2008-06-18 Ian Lance Taylor <iant@google.com>
4463
4464 * src-release (BINUTILS_SUPPORT_DIRS): Remove mkdep and depcomp.
4465
4466 * src-release (BINUTILS_SUPPORT_DIRS): Add depcomp.
4467
4468 2008-06-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4469
4470 * configure: Regenerate.
4471
4472 2008-06-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4473
4474 * configure.ac: Set TOPLEVEL_CONFIGURE_ARGUMENTS early, when
4475 "$@" is still intact with both Autoconf 2.59 and 2.62.
4476 * configure: Regenerate.
4477
4478 2008-06-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4479
4480 * Makefile.tpl: Fix comment errors.
4481 * Makefile.in: Regenerate.
4482
4483 2008-06-13 Julian Brown <julian@codesourcery.com>
4484
4485 * configure.ac (arm*-*-linux-gnueabi): Don't disable building
4486 of libobjc for ARM EABI Linux.
4487 * configure: Regenerate.
4488
4489 2008-06-12 David S. Miller <davem@davemloft.net>
4490 David Edelsohn <edelsohn@gnu.org>
4491
4492 * configure.ac: Add powerpc*-*-* to gold supported targets.
4493 * configure: Regenerate.
4494
4495 2008-06-08 Joseph Myers <joseph@codesourcery.com>
4496
4497 PR tree-optimization/36218
4498 * Makefile.def (flags_to_pass): Add LDFLAGS_FOR_BUILD.
4499 * Makefile.tpl (EXTRA_BUILD_FLAGS): Define.
4500 (all prefix="build-"): Pass them to build-system sub-makes.
4501 * Makefile.in: Regenerate.
4502
4503 2008-05-16 Daniel Jacobowitz <dan@codesourcery.com>
4504
4505 * src-release (DEVO_SUPPORT): Add ChangeLog, MAINTAINERS,
4506 README-maintainer-mode, lt~obsolete.m4, ltgcc.m4, depcomp,
4507 mkdep, and compile. Update comments.
4508 (ETC_SUPPORT): Add ChangeLog and update comments.
4509
4510 2008-05-11 Ian Lance Taylor <iant@google.com>
4511
4512 * src-release (BINUTILS_SUPPORT_DIRS): Add elfcpp and gold.
4513
4514 2008-04-18 Paolo Bonzini <bonzini@gnu.org>
4515
4516 Sync with gcc:
4517 2008-04-18 Paolo Bonzini <bonzini@gnu.org>
4518
4519 PR bootstrap/35457
4520 * configure.ac: Include override.m4.
4521 * configure: Regenerate.
4522
4523 2008-04-18 Paolo Bonzini <bonzini@gnu.org>
4524
4525 * Makefile.tpl (restrap): Call `make all' using double-colon rules.
4526 * Makefile.in: Regenerate.
4527
4528 2008-04-11 Eric B. Weddington <eweddington@cso.atmel.com>
4529
4530 * configure.ac: Do not build libssp for the AVR.
4531 * configure: Regenerate.
4532
4533 2008-04-18 Nick Clifton <nickc@redhat.com>
4534
4535 * MAINTAINERS: Replace reference to configure.in with reference to
4536 configure.ac.
4537
4538 2008-04-18 M R Swami Reddy <MR.Swami.Reddy@nsc.com>
4539
4540 * configure.ac (cr16-*-*): Add case for cr16 target and include gdb
4541 as nonconfigurable directories list.
4542 * configure: Regenerate.
4543
4544 2008-04-14 David S. Miller <davem@davemloft.net>
4545
4546 * configure.ac: Add sparc*-*-* to gold supported targets.
4547 * configure: Regenerate.
4548
4549 2008-04-14 Ben Elliston <bje@au.ibm.com>
4550
4551 * config.sub, config.guess: Update from upstream sources.
4552
4553 2008-04-12 Hans-Peter Nilsson <hp@axis.com>
4554
4555 * Makefile.tpl <gcc>: Error early unless at least GNU make 3.80.
4556 * Makefile.in: Regenerate.
4557
4558 2008-04-07 Ian Lance Taylor <iant@google.com>
4559
4560 * Makefile.def: check-gold depends upon all-binutils.
4561 * Makefile.in: Regenerate.
4562
4563 2008-04-04 Nick Clifton <nickc@redhat.com>
4564
4565 PR binutils/4334
4566 * configure.ac: Run ACX_CHECK_CYGWIN_CAT_WORKS for cygwin hosted
4567 builds.
4568 * configure: Regenerate.
4569
4570 2008-04-04 NightStrike <NightStrike@gmail.com>
4571
4572 PR other/35151
4573 * configure.ac: Combine rules for mingw32 and mingw64.
4574 * configure: Regenerate.
4575
4576 2008-03-27 Paolo Bonzini <bonzini@gnu.org>
4577
4578 * Makefile.tpl (PICFLAG, PICFLAG_FOR_TARGET): Remove.
4579 * Makefile.in: Regenerate.
4580
4581 2008-03-20 Ian Lance Taylor <iant@google.com>
4582
4583 * configure.ac: Add support for --enable-gold.
4584 * Makefile.def: Add gold as a directory like ld.
4585 * configure, Makefile.in: Regenerate.
4586
4587 2008-03-19 Andreas Krebbel <krebbel1@de.ibm.com>
4588
4589 * opcodes/s390-mkopc.c (s390_opcode_cpu_val): S390_OPCODE_Z10 added.
4590 (s390_cond_extensions): Reduced extensions to the compare related.
4591 (main): z10 cpu type option added.
4592 (expandConditionalJump): Renamed to ...
4593 (insertExpandedMnemonic): ... this.
4594
4595 * opcodes/s390-opc.c: Re-group the operand format makros.
4596 (INSTR_RIE_RRPU, INSTR_RIE_RRP0, INSTR_RIE_RUPI,
4597 INSTR_RIE_R0PI, INSTR_RIE_RUPU, INSTR_RIE_R0PU, INSTR_RIE_R0IU,
4598 INSTR_RIE_R0I0, INSTR_RIE_R0UU, INSTR_RIE_R0U0,
4599 INSTR_RIE_RRUUU, INSTR_RIS_RURDI, INSTR_RIS_R0RDI, INSTR_RIS_RURDU,
4600 INSTR_RIS_R0RDU, INSTR_RRF_U0RR, INSTR_RRF_00RR, INSTR_RRS_RRRDU,
4601 INSTR_RRS_RRRD0, INSTR_RXY_URRD, INSTR_SIY_IRD, INSTR_SIL_RDI,
4602 INSTR_SIL_RDU): New instruction formats added.
4603 (MASK_RIE_RRPU, MASK_RIE_RRP0, MASK_RIE_RUPI, MASK_RIE_R0PI,
4604 MASK_RIE_RUPU, MASK_RIE_R0PU, MASK_RIE_R0IU, MASK_RIE_R0I0,
4605 MASK_RIE_R0UU, MASK_RIE_R0U0, MASK_RIE_RRUUU, MASK_RIS_RURDI,
4606 MASK_RIS_R0RDI, MASK_RIS_RURDU, MASK_RIS_R0RDU, MASK_RRF_U0RR,
4607 MASK_RRF_00RR, MASK_RRS_RRRDU, MASK_RRS_RRRD0, MASK_RXY_URRD,
4608 MASK_SIY_IRD, MASK_SIL_RDI, MASK_SIL_RDU): New instruction format
4609 masks added.
4610 (s390_opformats): New formats added "ris", "rrs", "sil".
4611 * opcodes/s390-opc.txt: Add the conditional jumps with the
4612 extensions removed from automatic expansion in s390-mkopc.c manually.
4613 (asi - trtre): Add new System z10 EC instructions.
4614 * include/opcode/s390.h (s390_opcode_cpu_val): S390_OPCODE_Z10 added.
4615
4616 2008-03-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4617
4618 * configure.ac: m4_include config/proginstall.m4.
4619 * configure: Regenerate.
4620
4621 2008-03-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4622
4623 Backport from upstream Libtool:
4624
4625 2007-10-12 Eric Blake <ebb9@byu.net>
4626
4627 Deal with Autoconf 2.62's semantic change in m4_append.
4628 * ltsugar.m4 (lt_append): Replace broken versions of
4629 m4_append.
4630 (lt_if_append_uniq): Don't require separator to be overquoted,
4631 and avoid broken m4_append.
4632 (lt_dict_add): Fix typo.
4633 * libtool.m4 (_LT_DECL): Don't overquote separator.
4634
4635 2008-03-13 David Edelsohn <edelsohn@gnu.org>
4636
4637 * config.rpath: Add AIX 6 support.
4638
4639 2008-03-13 Paolo Bonzini <bonzini@gnu.org>
4640
4641 * Makefile.def (stageprofile). Remove -fprofile-generate
4642 from stage_libcflags.
4643 * Makefile.in: Regenerate.
4644
4645 2008-03-13 Ben Elliston <bje@au.ibm.com>
4646
4647 * config.sub, config.guess: Update from upstream sources.
4648
4649 2008-03-06 Florian Krohm <fkrohm@us.ibm.com>
4650
4651 * s390-opc.c (INSTR_RSL_R0RD): Fix operands.
4652 * s390-opc.txt (cmpsc): Duplicate entry removed.
4653 (dxr, sqdr, sqer, cxfbr, cdfbr, cefbr, lzer, lzdr, lzxr,
4654 cegbr, cdgbr, cxgbr, cegr, cdgr, cxgr, cxfr, cdfr, cefr, fixr, fidr,
4655 fier, cu42, cu41): Fix operand format.
4656
4657 2008-02-20 Paolo Bonzini <bonzini@gnu.org>
4658
4659 PR bootstrap/32009
4660 PR bootstrap/32161
4661
4662 * configure.ac (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Compute here.
4663 * configure: Regenerate.
4664
4665 * Makefile.def: Define stage_libcflags for all bootstrap stages.
4666 * Makefile.tpl (BOOT_LIBCFLAGS, STAGE2_LIBCFLAGS, STAGE3_LIBCFLAGS,
4667 STAGE4_LIBCFLAGS): New.
4668 (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Subst from autoconf, without
4669 $(SYSROOT_CFLAGS_FOR_TARGET) and $(DEBUG_PREFIX_CFLAGS_FOR_TARGET).
4670 (BASE_TARGET_EXPORTS): Append them here to C{,XX}FLAGS.
4671 (EXTRA_TARGET_FLAGS): Append them here to {LIB,}C{,XX}FLAGS.
4672 (configure-stage[+id+]-[+prefix+][+module+]): Pass stage_libcflags
4673 for target modules. Don't export LIBCFLAGS.
4674 (all-stage[+id+]-[+prefix+][+module+]): Pass stage_libcflags; pass
4675 $(BASE_FLAGS_TO_PASS) where [+args+] was passed, and [+args+] after
4676 the overridden CFLAGS_FOR_TARGET and CXXFLAGS_FOR_TARGET.
4677 (invocations of `all'): Replace $(TARGET_FLAGS_TO_PASS) with
4678 $(EXTRA_TARGET_FLAGS), $(FLAGS_TO_PASS) with $(EXTRA_HOST_FLAGS).
4679 * Makefile.in: Regenerate.
4680
4681 2008-02-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4682
4683 PR libgcj/33085
4684 * libtool.m4 (_LT_COMPILER_PIC) [ mingw, cygwin ] <GCJ>:
4685 Do not use -DDLL_EXPORT. Backport from upstream.
4686
4687 2008-02-14 Nick Clifton <nickc@redhat.com>
4688
4689 Import this patch from gcc:
4690 2008-01-24 David Edelsohn <edelsohn@gnu.org>
4691
4692 * libtool.m4: Backport AIX 6 support from ToT Libtool.
4693
4694 2008-02-02 Hans-Peter Nilsson <hp@axis.com>
4695
4696 * configure.ac: Enable fortran for cris-*-elf and crisv32-*-elf.
4697 * configure: Regenerate.
4698
4699 2008-01-31 Marc Gauthier <marc@tensilica.com>
4700
4701 * configure.ac (xtensa*-*-*): Recognize processor variants.
4702 * configure: Regenerate.
4703
4704 2008-01-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4705
4706 PR bootstrap/34922
4707 * configure.ac (PARSE_ARGS): Push suitable setting of
4708 ac_subdirs_all, for `./configure --help=recursive'.
4709 Handle `+' in generic toplevel directory disabling.
4710 * configure: Regenerate.
4711
4712 2008-01-23 Ben Elliston <bje@au.ibm.com>
4713
4714 * config.sub, config.guess: Update from upstream sources.
4715
4716 2008-01-08 Ben Elliston <bje@au.ibm.com>
4717
4718 * config.sub, config.guess: Update from upstream sources.
4719
4720 2007-12-19 Jeff Johnston <jjohnstn@redhat.com>
4721
4722 * COPYING.LIBGLOSS: Update default copyright.
4723
4724 2007-12-19 Jeff Johnston <jjohnstn@redhat.com>
4725
4726 * COPYING.NEWLIB: Update default copyright.
4727
4728 2007-12-17 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4729
4730 * configure.ac: Change required MPFR from 2.2.0 -> 2.2.1.
4731 Change recommended MPFR from 2.2.1 > 2.3.0.
4732 * configure: Regenerate.
4733
4734 2007-12-13 Richard Sandiford <rsandifo@nildram.co.uk>
4735
4736 * Makefile.tpl (CFLAGS_FOR_TARGET): Add -g.
4737 (CXXFLAGS_FOR_TARGET): Add -O2 -g.
4738 * Makefile.in: Regenerate.
4739
4740 2007-12-10 Andreas Tobler <a.tobler@schweiz.org>
4741
4742 * configure.ac: Enable libjava for x86_64-*-darwin9.
4743 * configure: Regenerate.
4744
4745 2007-12-05 Ben Elliston <bje@au.ibm.com>
4746
4747 * config.sub, config.guess: Update from upstream sources.
4748
4749 2007-11-28 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4750
4751 * config-ml.in: Robustify against white space in absolute file
4752 names.
4753
4754 * config-ml.in (multi-clean): Substitute ${Makefile}.
4755 Remove superfluous ${Makefile} in list.
4756
4757 2007-10-23 Daniel Jacobowitz <dan@codesourcery.com>
4758
4759 * Makefile.def (dependencies): Make configure-gdb depend on
4760 all-intl.
4761 * Makefile.in: Regenerated.
4762
4763 2007-10-15 Patrick Mansfield <patmans@us.ibm.com>
4764
4765 * Makefile.def: To avoid problems running with parallel makes,
4766 build newlib before libgloss so that target specific header
4767 files are availble.
4768 * Makefile.in: Regenerate.
4769
4770 2007-10-11 Daniel Jacobowitz <dan@codesourcery.com>
4771
4772 * Makefile.def (dependencies): Add all-gdb -> all-libdecnumber.
4773 * Makefile.in: Regenerate.
4774
4775 2007-10-11 Daniel Jacobowitz <dan@codesourcery.com>
4776
4777 * src-release (GDB_SUPPORT_DIRS): Add libdecnumber.
4778 * libdecnumber: New directory, imported from GCC.
4779
4780 2007-10-08 Mike Frysinger <vapier@gentoo.org>
4781
4782 * configure.ac (CFLAGS_FOR_BUILD, CXXFLAGS_FOR_BUILD,
4783 LDFLAGS_FOR_BUILD): Default them to host flags only for $host = $build.
4784 Set default CXXFLAGS_FOR_BUILD to CXXFLAGS, not CFLAGS. Set default
4785 LDFLAGS_FOR_BUILD to LDFLAGS, not CFLAGS.
4786 * configure: Regenerate.
4787
4788 2007-10-01 Paolo Bonzini <bonzini@gnu.org>
4789
4790 * Makefile.tpl (AR_FOR_BUILD, AS_FOR_BUILD, CXX_FOR_BUILD,
4791 DLLTOOL_FOR_BUILD, GCJ_FOR_BUILD, GFORTRAN_FOR_BUILD,
4792 LDFLAGS_FOR_BUILD, LD_FOR_BUILD, NM_FOR_BUILD, RANLIB_FOR_BUILD,
4793 WINDMC_FOR_BUILD, WINDRES_FOR_BUILD): Use autoconf substitutions.
4794 * configure.ac: Default them to host tools for $host = $build.
4795 Subst them.
4796
4797 * configure: Regenerate.
4798 * Makefile.in: Regenerate.
4799
4800 2007-09-20 Richard Sandiford <rsandifo@nildram.co.uk>
4801
4802 * configure.ac (mipsisa*-*-elfoabi*): New stanza.
4803 * configure: Regenerate.
4804
4805 2007-09-19 Benjamin Kosnik <bkoz@redhat.com>
4806
4807 * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Move libgomp before
4808 libstdc++.
4809 * Makefile.def: Add libgomp config as a maybe dependency for libstdc++.
4810 * configure: Regenerate.
4811 * Makefile.in: Regenerate.
4812
4813 2007-09-17 Andreas Schwab <schwab@suse.de>
4814
4815 * configure.ac: Raise minimum makeinfo version to 4.6.
4816 * configure: Regenerate.
4817
4818 2007-09-15 Alan Modra <amodra@bigpond.net.au>
4819
4820 * configure.ac: Correct makeinfo version check.
4821 * configure: Regenerate.
4822
4823 2007-09-14 Richard Sandiford <richard@codesourcery.com>
4824
4825 * configure.ac (mips*-sde-elf*): New stanza. Add target-libiberty
4826 to $skipdirs and only disable gprof for newlib. Use the normal
4827 mips*-elf* handling in other respects.
4828 * configure: Regnerate.
4829
4830 2007-09-12 David Daney <ddaney@avtrex.com>
4831
4832 * configure.ac: Remove mips64*-*-linux* noconfigdirs section, thus
4833 enabling libgcj.
4834 * configure: Regenerate.
4835
4836 2007-09-12 Richard Guenther <rguenther@suse.de>
4837
4838 * configure.ac (--enable-stage1-checking): If neither --enable-checking
4839 nor --disable-checking is provided also turn on yes and types
4840 checking for stage1.
4841 * configure: Re-generate.
4842
4843 2007-09-11 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
4844
4845 PR target/33281
4846 * configure.ac: Use config/mh-mingw on mingw.
4847 * configure: Regenerate.
4848
4849 2007-09-10 Rask Ingemann Lambertsen <rask@sygehus.dk>
4850
4851 PR other/32154
4852 * configure.ac: For libgloss targets, point the linker to the linker
4853 script, startup code and simulator library.
4854 * configure: Regenerate.
4855
4856 2007-09-09 Andrew Haley <aph@redhat.com>
4857
4858 * configure.ac (noconfigdirs): Remove target-libffi and
4859 target-libjava.
4860
4861 2007-08-29 Nick Clifton <nickc@redhat.com>
4862
4863 * config.sub, config.guess: Update from upstream sources.
4864
4865 2007-08-21 Richard Guenther <rguenther@suse.de>
4866
4867 * configure.ac: Add types checking to stage1 checking flags.
4868 * configure: Regenerate.
4869
4870 2007-08-18 Paul Brook <paul@codesourcery.com>
4871 Joseph Myers <joseph@codesourcery.com>
4872
4873 * Makefile.tpl (DEBUG_PREFIX_CFLAGS_FOR_TARGET): New.
4874 (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Include it.
4875 * Makefile.in: Regenerate.
4876 * configure.ac (--with-debug-prefix-map): New.
4877 * configure: Regenerate.
4878
4879 2007-08-17 Richard Sandiford <richard@codesourcery.com>
4880 Nigel Stephens <nigel@mips.com>
4881
4882 * configure.ac (mips*-sde-elf*): New stanza. Use config/mt-sde
4883 as target_makefile_frag.
4884 * configure: Regenerate.
4885
4886 2007-08-16 Alexandre Oliva <aoliva@redhat.com>
4887
4888 * Makefile.def (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS):
4889 Add to flags_to_pass. Adjust uses of BOOT_CFLAGS.
4890 (bootstrap2-debug, bootstrap-debug): New bootstrap stages.
4891 * Makefile.tpl (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS): New.
4892 (do-compare, do-compare3, do-compare-debug): New.
4893 ([+compare-target+]): Use them.
4894
4895 2007-08-16 Alexandre Oliva <aoliva@redhat.com>
4896
4897 * Makefile.def (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS):
4898 Add to flags_to_pass. Adjust uses of BOOT_CFLAGS.
4899 (bootstrap2-debug, bootstrap-debug): New bootstrap stages.
4900 * Makefile.tpl (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS): New.
4901 (do-compare, do-compare3, do-compare-debug): New.
4902 ([+compare-target+]): Use them.
4903
4904 2007-08-13 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4905 Ben Elliston <bje@au.ibm.com>
4906
4907 * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS, baseargs): Pass
4908 --silent if $silent.
4909 * configure: Regenerate.
4910
4911 2007-08-12 Daniel Jacobowitz <dan@codesourcery.com>
4912
4913 * src-release (DEVO_SUPPORT): Add COPYING3 and COPYING3.LIB.
4914
4915 2007-07-17 Nick Clifton <nickc@redhat.com>
4916
4917 * COPYING3: New file. Contains version 3 of the GNU General
4918 Public License.
4919 * COPYING3.LIB: New file. Contains version 3 of the GNU
4920 Lesser General Public License.
4921
4922 2007-07-11 Bernd Schmidt <bernd.schmidt@analog.com>
4923
4924 * configure.ac: Fix my previous change to really match GCC.
4925 * configure: Regenerate.
4926
4927 2007-07-11 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4928
4929 * configure.ac: Rewrite 'configure --help' strings to look nicer.
4930 * configure: Regenerate.
4931
4932 2007-07-11 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4933
4934 * configure.ac: Add some missing m4 quotation.
4935 * configure: Regenerate.
4936
4937 2007-07-09 Kai Tietz <kai.tietz@onevision.com>
4938
4939 * Makefile.def: Add windmc tool to build.
4940 * Makefile.tpl: Likewise.
4941 * configure.ac: Likewise.
4942 * Makefile.in: Regenerate.
4943 * configure: Regenerate.
4944
4945 2007-07-05 H.J. Lu <hongjiu.lu@intel.com>
4946
4947 * lt~obsolete.m4: New. Import from 20070318 libtool.
4948
4949 2007-06-29 Bernd Schmidt <bernd.schmidt@analog.com>
4950
4951 * configure.ac: Don't add target-libmudflap to noconfigdirs for
4952 uclinux and linux-uclibc targets.
4953 * configure: Regenerate.
4954
4955 2007-06-28 DJ Delorie <dj@redhat.com>
4956
4957 * configure.ac (arm*-*-linux-gnueabi): Don't build libgloss if we're
4958 not building newlib.
4959 * configure: Regenerated.
4960
4961 2007-06-22 Daniel Jacobowitz <dan@codesourcery.com>
4962
4963 * src-release (DEVO_SUPPORT): Correct typos.
4964
4965 2007-06-18 Daniel Jacobowitz <dan@codesourcery.com>
4966
4967 * Makefile.def: Add dependency from configure-gdb to all-bfd.
4968 * Makefile.in: Regenerated.
4969
4970 2007-06-14 Paolo Bonzini <bonzini@gnu.org>
4971
4972 * Makefile.tpl (cleanstrap): Don't delete the toplevel Makefile.
4973 (distclean-stage[+id+]): Possibly delete stage_last.
4974 * Makefile.in: Regenerate.
4975
4976 2007-06-07 Ben Elliston <bje@au.ibm.com>
4977
4978 * config.sub, config.guess: Update from upstream sources.
4979
4980 2007-06-07 Ben Elliston <bje@au.ibm.com>
4981
4982 * Makefile.tpl: Fix spelling error.
4983 * Makefile.in: Regenerate.
4984
4985 2007-06-04 Paolo Bonzini <bonzini@gnu.org>
4986
4987 Sync with gcc:
4988 2007-05-30 Jakub Jelinek <jakub@redhat.com>
4989
4990 PR bootstrap/29382
4991 * configure.ac: Don't use -fkeep-inline-functions for GCC < 3.3.1.
4992 * configure: Rebuilt.
4993
4994 2007-06-01 Steve Ellcey <sje@cup.hp.com>
4995
4996 * libtool.m4 (LT_CMD_MAX_LEN): Try using getconf to set
4997 lt_cv_sys_max_cmd_len.
4998
4999 2007-05-31 Paolo Bonzini <bonzini@gnu.org>
5000
5001 * ltgcc.m4: Update from GCC.
5002
5003 2007-05-25 Andreas Tobler <a.tobler@schweiz.org>
5004
5005 * ltmain.sh: Fix Darwin verstring, remove ${wl}.
5006
5007 2007-05-24 Steve Ellcey <sje@cup.hp.com>
5008
5009 * ltmain.sh: Update from GCC.
5010 * libtool.m4: Update from GCC.
5011 * ltsugar.m4: New. Update from GCC.
5012 * ltversion.m4: New. Update from GCC.
5013 * ltoptions.m4: New. Update from GCC.
5014 * ltconfig: Remove.
5015 * ltcf-c.sh: Remove.
5016 * ltcf-cxx.sh: Remove.
5017 * ltcf-gcj.sh: Remove.
5018 * src-release: Update with new libtool file list.
5019
5020 2007-05-16 Paolo Bonzini <bonzini@gnu.org>
5021
5022 * Makefile.def (bootstrap_stage): Replace stage_make_flags with
5023 stage_cflags.
5024 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS, POSTSTAGE1_FLAGS_TO_PASS):
5025 Remove CFLAGS/LIBCFLAGS.
5026 (configure-stage[+id+]-[+prefix+][+module+],
5027 all-stage[+id+]-[+prefix+][+module+]): Pass it from [+stage_cflags+].
5028 * Makefile.in: Regenerate.
5029
5030 2007-04-14 Steve Ellcey <sje@cup.hp.com>
5031
5032 * config-ml.in: Update from GCC.
5033
5034 2007-04-09 Daniel Jacobowitz <dan@codesourcery.com>
5035
5036 * src-release (do-proto-toplev): Process the support directories before
5037 the tool directory.
5038
5039 2007-03-21 Richard Sandiford <richard@codesourcery.com>
5040
5041 * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Fix m4 quoting
5042 of glob. Quote arguments with single quotes too.
5043 * configure: Regenerate.
5044
5045 2007-03-12 Brooks Moses <brooks.moses@codesourcery.com>
5046
5047 * Makefile.def (fixincludes): Remove unneeded "missing" lines.
5048 * Makefile.in: Regenerate
5049
5050 2007-03-07 Andreas Schwab <schwab@suse.de>
5051
5052 * configure: Regenerate.
5053
5054 2007-03-01 Brooks Moses <brooks.moses@codesourcery.com>
5055
5056 * configure.ac: Add "--with-pdfdir" configure option,
5057 which defines pdfdir variable.
5058 * Makefile.def (target=fixincludes): Add install-pdf to
5059 missing targets.
5060 (recursive_targets): Add install-pdf target.
5061 (flags_to_pass): Add pdfdir.
5062 * Makefile.tpl: Add pdfdir handling, add do-install-pdf
5063 target.
5064 * configure: Regenerate
5065 * Makefile.in: Regenerate
5066
5067 2007-02-28 Eric Christopher <echristo@apple.com>
5068
5069 Revert:
5070 2006-12-07 Mike Stump <mrs@apple.com>
5071
5072 * Makefile.def (dependencies): Add dependency for
5073 install-target-libssp and install-target-libgomp on
5074 install-gcc.
5075 * Makefile.in: Regenerate.
5076
5077 2007-02-27 Matt Kraai <kraai@ftbfs.org>
5078
5079 * configure: Regenerate.
5080 * configure.ac: Move statements after variable declarations.
5081
5082 2007-02-19 Joseph Myers <joseph@codesourcery.com>
5083
5084 * configure.ac: Adjust for loop syntax.
5085 * configure: Regenerate.
5086
5087 2007-02-18 Alexandre Oliva <aoliva@redhat.com>
5088
5089 * configure: Rebuilt.
5090
5091 2007-02-18 Alexandre Oliva <aoliva@redhat.com>
5092
5093 * configure.ac: Drop multiple occurrences of --enable-languages,
5094 and fix its quoting.
5095 * configure: Rebuilt.
5096
5097 2007-02-17 Mark Mitchell <mark@codesourcery.com>
5098 Nathan Sidwell <nathan@codesourcery.com>
5099 Vladimir Prus <vladimir@codesourcery.com
5100 Joseph Myers <joseph@codesourcery.com>
5101
5102 * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Fix quoting.
5103 * configure: Regenerate.
5104
5105 2007-02-13 Daniel Jacobowitz <dan@codesourcery.com>
5106
5107 * configure.ac (target_libraries): Move libgcc before libiberty.
5108 * configure: Regenerated.
5109
5110 2007-02-13 Paolo Bonzini <bonzini@gnu.org>
5111
5112 * configure: Regenerate again?
5113
5114 2007-02-13 Paolo Bonzini <bonzini@gnu.org>
5115
5116 * configure: Reapply PR30748 fix which was lost in the previous commit.
5117
5118 2007-02-13 Daniel Jacobowitz <dan@codesourcery.com>
5119 Paolo Bonzini <bonzini@gnu.org>
5120
5121 PR bootstrap/30753
5122 * configure.ac: Remove obsolete build / host tests. Use AC_PROG_CC
5123 unconditionally. Use AC_PROG_CXX. Use ACX_TOOL_DIRS to find $prefix.
5124 * configure: Regenerated.
5125
5126 2007-02-10 Paolo Bonzini <bonzini@gnu.org>
5127
5128 * configure: Regenerate.
5129
5130 2007-02-09 Daniel Jacobowitz <dan@codesourcery.com>
5131
5132 PR bootstrap/30748
5133 * configure.ac: Correct syntax for Solaris ksh.
5134 * configure: Regenerated.
5135
5136 2007-02-09 Paolo Bonzini <bonzini@gnu.org>
5137
5138 * Makefile.def: Sync with GCC.
5139 * Makefile.tpl: Sync with GCC.
5140 * Makefile.in: Regenerate.
5141 * configure: Regenerate.
5142
5143 2007-02-09 Daniel Jacobowitz <dan@codesourcery.com>
5144
5145 * Makefile.tpl (build_alias, host_alias, target_alias): Use
5146 noncanonical equivalents.
5147 * configure.in: Rename to...
5148 * configure.ac: ...this. Update AC_PREREQ. Prevent error for
5149 AS_FOR_TARGET. Set build_noncanonical, host_noncanonical, and
5150 target_noncanonical. Use them. Rewrite removal of configure
5151 arguments for autoconf 2.59. Discard variable settings. Force
5152 program_transform_name for native tools.
5153
5154 * Makefile.in: Regenerated.
5155 * configure: Regenerated with autoconf 2.59.
5156
5157 * src-release (DEVO_SUPPORT, do-proto-toplev): Expect configure.ac.
5158
5159 2007-02-08 Jeff Johnston <jjohnstn@redhat.com>
5160
5161 * COPYING.LIBGLOSS: Reformat default Red Hat
5162 license to fit within 80 columns.
5163 * COPYING.NEWLIB: Ditto.
5164
5165 2007-02-05 Dave Brolley <brolley@redhat.com>
5166
5167 * Contribute the following changes:
5168 2006-11-28 DJ Delorie <dj@redhat.com>
5169
5170 * configure.in: Fix typo for mep's target_makefile_frag.
5171 * configure: Regenerated.
5172
5173 2005-04-22 Richard Sandiford <rsandifo@redhat.com>
5174
5175 * configure.in (mep*): Add -mlibrary to FLAGS_FOR_TARGET.
5176 * configure: Regenerate.
5177
5178 2001-09-19 DJ Delorie <dj@redhat.com>
5179
5180 * configure.in (target_makefile_frag): use mt-mep
5181
5182 2001-06-12 Don Howard <dhoward@redhat.com>
5183
5184 * configure.in: Remove gdb from MeP skip list.
5185
5186 2001-04-05 DJ Delorie <dj@redhat.com>
5187
5188 * configure.in (noconfigdirs): Remove gcc from MeP skip list.
5189
5190 2001-03-20 Ben Elliston <bje@redhat.com>
5191
5192 * configure.in (noconfigdirs): Add gcc and gdb for MeP.
5193
5194 2001-03-19 Ben Elliston <bje@redhat.com>
5195
5196 * config.sub (mep, mep-*): Add.
5197
5198 2007-01-31 Andreas Schwab <schwab@suse.de>
5199
5200 * Makefile.tpl (LDFLAGS): Substitute it.
5201 * Makefile.in: Regenerate.
5202
5203 2007-01-11 Paolo Bonzini <bonzini@gnu.org>
5204
5205 * configure.in: Change == to = in test command.
5206 * configure: Regenerate.
5207
5208 2007-01-11 Paolo Bonzini <bonzini@gnu.org>
5209 Nick Clifton <nickc@redhat.com>
5210 Kaveh R. Ghazi <ghazi@caip.rutgets.edu>
5211
5212 * configure.in (build_configargs, host_configargs, target_configargs):
5213 Remove build/host/target parameters.
5214 (host_libs): Add gmp and mpfr.
5215 (GMP tests): Reorganize to allow in-tree GMP/MPFR.
5216 * Makefile.def (gmp, mpfr): New.
5217 (gcc): Remove target.
5218 * Makefile.tpl (build_os, build_vendor, host_os, host_vendor,
5219 target_os, target_vendor): New.
5220 (configure): Add host_alias/target_alias arguments. Adjust invocations.
5221 * configure: Regenerate.
5222 * Makefile.in: Regenerate.
5223
5224 2007-01-11 Matt Fago <fago@earthlink.net>
5225
5226 * configure.in: Try to link to functions only in mpfr 2.2.x
5227 to improve robustness of configure tests.
5228 * configure: Regenerate.
5229
5230 2007-01-08 Kai Tietz <kai.tietz@onevision.com>
5231
5232 * configure.in: Add support for an x86_64-mingw* target.
5233 * configure: Regenerate.
5234
5235 2007-01-05 Daniel Jacobowitz <dan@codesourcery.com>
5236
5237 * Makefile.tpl (all-target): Correct @if conditional for target
5238 modules.
5239 * configure.in: Omit libiberty if building only target libgcc.
5240 * configure, Makefile.in: Regenerated.
5241
5242 2007-01-04 Paolo Bonzini <bonzini@gnu.org>
5243
5244 * configure.in: Use DEV-PHASE to detect the default for --enable-werror.
5245 * configure: Regenerate.
5246
5247 2007-01-03 Daniel Jacobowitz <dan@codesourcery.com>
5248
5249 * Makefile.def (target_modules): Add libgcc.
5250 (lang_env_dependencies): Remove default items. Use no_c and no_gcc.
5251 * Makefile.tpl (clean-target-libgcc): Delete.
5252 (configure-target-[+module+]): Emit --disable-bootstrap dependencies
5253 on gcc even for bootstrapped modules. Rewrite handling of
5254 lang_env_dependencies to loop over target_modules.
5255 * configure.in (target_libraries): Add target-libgcc.
5256 * Makefile.in, configure: Regenerated.
5257
5258 2006-12-29 Paolo Bonzini <bonzini@gnu.org>
5259
5260 Sync with gcc:
5261 2006-12-29 Paolo Bonzini <bonzini@gnu.org>
5262
5263 * configure.in: Reorganize recognition of languages. Add
5264 --enable-stage1-languages. Show supported languages for the chosen
5265 target rather than all recognized languages.
5266 * configure: Regenerate.
5267
5268 2006-12-29 Paolo Bonzini <bonzini@gnu.org>
5269
5270 * Makefile.tpl (GCC_STRAP_TARGETS, all-prebootstrap): Remove.
5271 * Makefile.in: Regenerate.
5272
5273 2006-12-29 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5274
5275 * configure.in: Warn that MPFR 2.2.0 is buggy.
5276 * configure: Regenerate.
5277
5278 2006-12-27 Ian Lance Taylor <iant@google.com>
5279
5280 * configure.in: When removing Makefiles to force a reconfigure, also
5281 remove prev-DIR*/Makefile.
5282 * configure: Regenerate.
5283
5284 2006-12-23 Kazu Hirata <kazu@codesourcery.com>
5285
5286 * config.bfd: Recognize fido.
5287
5288 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
5289
5290 Sync with gcc:
5291
5292 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
5293
5294 * configure.in: Remove "$build" case for powerpc-*-darwin* since
5295 it only affects bootstrap and could be tested on "$host" as well.
5296 * configure: Regenerate.
5297 * config/mh-ppc-darwin: Add to the stage1 cflags here.
5298
5299 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
5300
5301 PR bootstrap/29544
5302 * Makefile.def (flags_to_pass): Add STAGE1_CHECKING.
5303 (bootstrap_stage): Add STAGE1_CHECKING to stage1 configure flags,
5304 move here comment from Makefile.tpl.
5305 * Makefile.tpl: Move some definitions higher in the file.
5306 (STAGE1_CHECKING): New.
5307 * configure.in: Add --enable-stage1-checking.
5308 * configure: Regenerate.
5309 * Makefile.in: Regenerate.
5310
5311 2006-12-03 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5312
5313 * configure.in: Update error message for missing GMP/MPFR.
5314
5315 * configure: Regenerate.
5316
5317 2006-12-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5318
5319 * configure.in: Update MPFR version in error message.
5320
5321 * configure: Regenerate.
5322
5323 2006-11-26 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5324
5325 * configure.in (--with-mpfr-dir, --with-gmp-dir): Remove flags.
5326 (--with-mpfr-include, --with-mpfr-lib, --with-gmp-include,
5327 --with-gmp-lib): New flags.
5328
5329 * configure: Regenerate.
5330
5331 2006-12-12 Andreas Tobler <a.tobler@schweiz.org>
5332
5333 PR bootstrap/30134
5334 * configure.in: Correct x86 darwin support for libjava to powerpc
5335 and i?86 only.
5336 * configure: Regenerate.
5337
5338 2006-12-11 Alan Modra <amodra@bigpond.net.au>
5339
5340 * configure.in: Handle spu makefile frag.
5341 * Makefile.tpl (MAINT): Define
5342 (MAINTAINER_MODE_FALSE, MAINTAINER_MODE_TRUE): Define.
5343 * configure: Regenerate.
5344 * Makefile.in: Regenerate.
5345
5346 2006-12-11 Ben Elliston <bje@au.ibm.com>
5347
5348 * config.sub, config.guess: Update from upstream sources.
5349
5350 2006-12-11 Ben Elliston <bje@au.ibm.com>
5351
5352 * configure.in: Sync with GCC (spu-*-*).
5353 * configure: Sync with GCC.
5354
5355 2006-12-07 Mike Stump <mrs@apple.com>
5356
5357 * Makefile.def (dependencies): Add dependency for
5358 install-target-libssp and install-target-libgomp on
5359 install-gcc.
5360 * Makefile.in: Regenerate.
5361
5362 2006-11-16 Paolo Bonzini <bonzini@gnu.org>
5363
5364 * Makefile.tpl (clean-target-libgcc): Test for gcc Makefile presence.
5365 (unstage): Test for stage_last presence.
5366
5367 PR bootstrap/29802
5368 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Add HOST_SUBDIR in STAGE_PREFIX.
5369 * Makefile.in: Regenerate.
5370
5371 2006-11-14 DJ Delorie <dj@redhat.com>
5372
5373 * Makefile.tpl (clean-stage*): Sync with GCC (clean).
5374 * Makefile.in: Sync with GCC.
5375 * configure.in: Sync with GCC (mpfr, gmp).
5376 * configure: Sync with GCC.
5377
5378 2006-11-08 Jie Zhang <jie.zhang@analog.com>
5379
5380 * configure.in: Remove target-libgloss from noconfigdirs for
5381 bfin-*-*.
5382 * configure: Regenerated.
5383
5384 2006-10-27 Jeff Johnston <jjohnstn@redhat.com>
5385
5386 * COPYING.NEWLIB: Add spu license.
5387 * COPYING.LIBGLOSS: Ditto.
5388
5389 2006-10-17 Brooks Moses <bmoses@stanford.edu>
5390
5391 * Makefile.def: Added pdf target handling.
5392 * Makefile.tpl: Added pdf target handling.
5393 * Makefile.in: Regenerated.
5394
5395 2006-10-11 Jeff Johnston <jjohnstn@redhat.com>
5396
5397 * COPYING.NEWLIB: Updated.
5398 * COPYING.LIBGLOSS: Ditto.
5399
5400 2006-09-27 Dave Brolley <brolley@redhat.com>
5401
5402 * configure.in (RUNTEST): Look for 'runtest' in the source tree by using
5403 $s instead of $r.
5404 * configure: Regenerated.
5405
5406 2006-09-26 Ben Elliston <bje@au.ibm.com>
5407
5408 * config.sub, config.guess: Update from upstream sources.
5409
5410 2006-09-20 Thiemo Seufer <ths@mips.com>
5411
5412 * configure.in: Remove redundant handling of mips*-dec-bsd*. Likewise
5413 for mipstx39-*-*. Disable libgloss for mips64*-*-linux*.
5414 * configure: Regenerate.
5415
5416 2006-08-30 Corinna Vinschen <corinna@vinschen.de>
5417
5418 * configure.in: Never build newlib for a Mingw host.
5419 Never build newlib as Mingw target library.
5420 Test the existence of winsup/cygwin for building a Cygwin newlib,
5421 rather than just winsup.
5422 Add winsup/mingw and winsup/w32api paths to FLAGS_FOR_TARGET if
5423 building a Mingw target.
5424 * configure: Regenerate.
5425
5426 2006-08-15 Thiemo Seufer <ths@mips.com>
5427 Nigel Stephens <nigel@mips.com>
5428 David Ung <davidu@mips.com>
5429
5430 * config.sub: Add support for sde as alias of mipsisa32-sde-elf.
5431
5432 2006-07-25 Paolo Bonzini <bonzini@gnu.org>
5433
5434 Sync from GCC:
5435 2006-07-04 Eric Botcazou <ebotcazou@libertysurf.fr>
5436
5437 PR bootstrap/18058
5438 * configure.in: Add -fkeep-inline-functions to CFLAGS for stage 1
5439 if the bootstrap compiler is a GCC version that supports it.
5440 * configure: Regenerate.
5441
5442 2006-07-22 Daniel Jacobowitz <dan@codesourcery.com>
5443
5444 * configure.in: Allow mingw32 and cygwin targets to build cross-gdb.
5445 * configure: Regenerated.
5446
5447 2006-07-18 Paolo Bonzini <bonzini@gnu.org>
5448
5449 * Makefile.tpl (configure-stageN-MODULE): Pass --with-build-libsubdir
5450 for stages after the first.
5451
5452 2006-07-17 Jakub Jelinek <jakub@redhat.com>
5453
5454 * Makefile.def: Add dependencies for configure-opcodes
5455 on configure-intl and all-opcodes on all-intl.
5456 * Makefile.in: Regenerated.
5457
5458 2006-07-04 Peter O'Gorman <peter@pogma.com>
5459
5460 * ltconfig: chmod 644 before ranlib during install.
5461
5462 2006-07-03 Paolo Bonzini <bonzini@gnu.org>
5463
5464 * configure.in: Fix thinkos in previous check-in.
5465 * configure: Regenerate.
5466
5467 2006-07-03 Paolo Bonzini <bonzini@gnu.org>
5468
5469 Sync from gcc:
5470
5471 2007-07-03 Paolo Bonzini <bonzini@gnu.org>
5472
5473 PR other/27063
5474 * configure.in: Test subdir_requires and give an appropriate
5475 error message.
5476 * configure: Regenerate.
5477
5478 2006-06-16 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
5479
5480 PR target/27540
5481 * configure.in: Only enable libgomp on IRIX 6.
5482 * configure: Regenerate.
5483
5484 2006-06-20 David Ayers <d.ayers@inode.at>
5485
5486 PR bootstrap/28072
5487 * configure.in: Add target-boehm-gc to noconfigdirs depending on
5488 whether target-libjava is being configured instead of whether the
5489 java front end is enabled.
5490 * configure: Regenerate.
5491
5492 2006-06-15 Mark Shinwell <shinwell@codesourcery.com>
5493
5494 * include/elf/arm.h: Correct names of R_ARM_LDC_G{0,1,2}
5495 to R_ARM_LDC_SB_G{0,1,2} respectively.
5496
5497 2006-06-15 Paolo Bonzini <bonzini@gnu.org>
5498
5499 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Export CFLAGS and LDFLAGS
5500 too.
5501 * Makefile.in: Regenerate.
5502
5503 2006-06-13 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
5504
5505 Sync from gcc:
5506
5507 2006-06-12 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
5508 * configure.in: Don't enable libgomp on hpux10.
5509 * configure: Rebuilt.
5510
5511 2006-06-13 David Ayers <d.ayers@inode.at>
5512
5513 Sync from gcc:
5514
5515 2006-06-12 David Ayers <d.ayers@inode.at>
5516
5517 PR bootstrap/27963
5518 PR target/19970
5519 * configure.in: Remove target-boehm-gc from noconfigdirs where
5520 ${libgcj} is specified.
5521 * configure: Regenerate.
5522
5523 2006-06-08 Jeff Johnston <jjohnstn@redhat.com>
5524
5525 Sync from gcc:
5526
5527 2005-01-12 David Edelsohn <edelsohn@gnu.org>
5528 Andreas Schwab <schwab@suse.de>
5529
5530 PR bootstrap/18033
5531 * config-ml.in: Eval option if surrounded by single quotes.
5532
5533 2006-06-07 Carlos O'Donell <carlos@codesourcery.com>
5534
5535 Sync from gcc:
5536
5537 2006-06-06 David Ayers <d.ayers@inode.at>
5538
5539 PR libobjc/13946
5540 * Makefile.def: Add dependencies for libobjc which boehm-gc.
5541 * Makefile.in: Regenerate.
5542 * configure.in: Add --enable-objc-gc at toplevel and have it
5543 enable boehm-gc for Objective-C.
5544 Remove target-boehm-gc from libgcj.
5545 Add target-boehm-gc to target_libraries.
5546 Add target-boehm-gc to noconfigdirs where ${libgcj}
5547 is specified.
5548 Assert that boehm-gc is supported when requested for Objective-C.
5549 Only build boehm-gc if needed either for Java or Objective-C.
5550 * configure: Regenerate.
5551
5552 2006-06-05 Paolo Bonzini <bonzini@gnu.org>
5553
5554 PR 27674
5555 * Makefile.tpl (configure-[+prefix+][+module+],
5556 all-[+prefix+][+module+]): Depend on stage_current if bootstrapping.
5557 Remove rule to unstage bootstrapped modules.
5558 (stage_current): New.
5559 * Makefile.in: Regenerate.
5560
5561 2006-05-20 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
5562 Andreas Tobler <a.tobler@schweiz.ch>
5563
5564 * configure.in: Enable libgcj for hppa*-hp-hpux11*.
5565 * configure: Rebuilt.
5566
5567 Revert
5568 2006-01-31 Richard Guenther <rguenther@suse.de>
5569 Paolo Bonzini <bonzini@gnu.org>
5570
5571 * Makefile.def (target_modules): Add libgcc-math target module.
5572 * configure.in (target_libraries): Add libgcc-math target library.
5573 (--enable-libgcc-math): New configure switch.
5574 * Makefile.in: Re-generate.
5575 * configure: Re-generate.
5576
5577 2006-06-05 Jeff Johnston <jjohnstn@redhat.com>
5578
5579 * config-ml.in: Alter CCASFLAGS to include special
5580 multilib options the same as is done for CFLAGS.
5581
5582 2006-05-31 Daniel Jacobowitz <dan@codesourcery.com>
5583
5584 * Makefile.def: Added dependencies from sim and gdb on intl, and
5585 added configure dependencies to everything with an all dependency
5586 on intl.
5587 * gettext.m4: Removed.
5588 * src-release (DEVO_SUPPORT): Don't mention gettext.m4.
5589 (GDB_SUPPORT_DIRS): Add intl.
5590 * Makefile.in: Regenerated.
5591
5592 2006-05-25 Daniel Jacobowitz <dan@codesourcery.com>
5593
5594 * src-release (DEVO_SUPPORT): Add config.rpath.
5595
5596 2006-05-25 Paolo Bonzini <bonzini@gnu.org>
5597
5598 * Makefile.def (bfd, opcodes): Fix lib_path.
5599 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Replace ADAC with ADAFLAGS.
5600 (restrap): Move under "@if gcc-bootstrap". Fix typo.
5601 * Makefile.in: Regenerate.
5602
5603 2006-05-24 Mark Shinwell <shinwell@codesourcery.com>
5604
5605 * configure.in: Enable gprof for cross builds.
5606 * configure: Regenerate.
5607
5608 2006-05-17 Daniel Jacobowitz <dan@codesourcery.com>
5609
5610 * src-release (MAKEINFOFLAGS): Define.
5611 (do-proto-toplev): Pass MAKEINFOFLAGS to submakes.
5612
5613 2006-05-14 Ben Elliston <bje@au.ibm.com>
5614
5615 * config.sub, config.guess: Update from upstream sources.
5616
5617 2006-05-12 Ben Elliston <bje@au.ibm.com>
5618
5619 * config.sub, config.guess: Update from upstream sources.
5620
5621 2006-05-04 Steve Ellcey <sje@cup.hp.com>
5622
5623 * blt, iwidgets, mmalloc: Remove directories.
5624
5625 2006-05-01 DJ Delorie <dj@redhat.com>
5626
5627 * configure.in: Restore CFLAGS if GMP isn't present.
5628 * configure: Regenerate.
5629
5630 2006-04-18 DJ Delorie <dj@redhat.com>
5631
5632 * configure.in (m32c): Build libstdc++-v3. Pass flags to
5633 reference libgloss so that libssp can be built in a combined
5634 tree.
5635 * configure: Regenerate.
5636
5637 2006-04-10 Ben Elliston <bje@au.ibm.com>
5638
5639 * contrib: Remove directory.
5640
5641 2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
5642
5643 * Makefile.tpl: Add install-html target.
5644 * Makefile.def: Add install-html target.
5645 * Makefile.in: Regenerate.
5646 * configure.in: Add --with-datarootdir, --with-docdir,
5647 and --with-htmldir options.
5648 * configure: Regenerate.
5649
5650 2006-03-31 Ben Elliston <bje@au.ibm.com>
5651
5652 PR binutils/1860
5653 * configure.in: Require makeinfo 4.4 or higher.
5654 * configure: Regenerate.
5655
5656 2006-03-14 Paolo Bonzini <bonzini@gnu.org>
5657
5658 * Makefile.in: Regenerate.
5659
5660 2006-03-14 Paolo Bonzini <bonzini@gnu.org>
5661
5662 Sync with gcc:
5663 2006-03-10 Aldy Hernandez <aldyh@redhat.com>
5664
5665 * configure.in: Handle --disable-<component> generically.
5666 * configure: Regenerate.
5667
5668 2006-02-21 Rafael Avila de Espindola <rafael.espindola@gmail.com>
5669
5670 * Makefile.tpl (BUILD_CONFIGDIRS): Remove.
5671 (TARGET_CONFIGDIRS): Remove.
5672 * configure.in: Remove AC_SUBST(target_configdirs).
5673 * Makefile.in, configure: Regenerated.
5674
5675
5676 2006-03-01 H.J. Lu <hongjiu.lu@intel.com>
5677
5678 PR libgcj/17311
5679 * ltmain.sh: Don't use "$finalize_rpath" for compile.
5680
5681 2006-02-20 Paolo Bonzini <bonzini@gnu.org>
5682
5683 PR bootstrap/25670
5684
5685 * Makefile.tpl ([+compare-target+]): Print explanation messages.
5686
5687 * Makefile.def (ADAFLAGS, BOOT_ADAFLAGS, LANGUAGES): New flags_to_pass.
5688 * Makefile.tpl (BASE_FLAGS_TO_PASS): Support optional flags_to_pass.
5689 (EXTRA_GCC_FLAGS): Remove ADAFLAGS, BOOT_ADAFLAGS, LANGUAGES,
5690 BUILD_PREFIX, BUILD_PREFIX_1.
5691 * configure.in: (BUILD_PREFIX, BUILD_PREFIX_1): Don't substitute.
5692
5693 * Makefile.def (bootstrap stage 1): Pass LIBCFLAGS too.
5694 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Override LIBCFLAGS too.
5695
5696 * Makefile.tpl (configure-stage[+id+]-[+prefix+][+module+],
5697 all-stage[+id+]-[+prefix+][+module+], : Use $(current_stage) instead
5698 of `cat stage_current`. Always provide the `r' and `s' variables.
5699 (clean-stage[+id+]-[+prefix+][+module+]): Likewise, and make it into
5700 a single shell execution.
5701 (configure-[+prefix+][+module+], all-[+prefix+][+module+]): For
5702 bootstrapped modules, make the stage1 module if the build was not
5703 started yet, else build the current stage.
5704 (all-host, all-target): Omit bootstrapped modules (if bootstrapping).
5705 (all-build, all-host, all-target, [+make_target+]-host,
5706 [+make_target+]-target): Do not use \-continued lines.
5707 (target modules): Depend on stage_last, not all-gcc, if bootstrapping.
5708 (current_stage, restrap, stage_last): New.
5709
5710 * Makefile.in: Regenerate.
5711 * configure: Regenerate.
5712
5713 2006-02-14 Paolo Bonzini <bonzini@gnu.org>
5714
5715 Sync from gcc:
5716
5717 2006-01-31 Richard Guenther <rguenther@suse.de>
5718 Paolo Bonzini <bonzini@gnu.org>
5719
5720 * Makefile.def (target_modules): Add libgcc-math target module.
5721 * configure.in (target_libraries): Add libgcc-math target library.
5722 (--enable-libgcc-math): New configure switch.
5723 * Makefile.in: Re-generate.
5724 * configure: Re-generate.
5725 * libgcc-math: New toplevel directory.
5726
5727 2006-01-18 Richard Henderson <rth@redhat.com>
5728 Jakub Jelinek <jakub@redhat.com>
5729 Diego Novillo <dnovillo@redhat.com>
5730
5731 * libgomp: New directory.
5732 * Makefile.def: Add target_module libgomp.
5733 * Makefile.in: Regenerate.
5734 * configure.in (target_libraries): Add target-libgomp.
5735 * configure: Regenerate.
5736
5737 2006-02-14 Paolo Bonzini <bonzini@gnu.org>
5738 Andreas Schwab <schwab@suse.de>
5739
5740 * configure: Regenerate.
5741
5742 2006-01-16 Paolo Bonzini <bonzini@gnu.org>
5743
5744 * configure.in: Set with_gnu_as, with_gnu_ld, with_newlib earlier.
5745 Set md_exec_prefix. Use ACX_CHECK_INSTALLED_TARGET_TOOL to find
5746 the assembler, linker and binutils.
5747 * configure: Regenerate.
5748
5749 2006-01-16 Nick Clifton <nickc@redhat.com>
5750
5751 * config.sub, config.guess: Sync from config repository.
5752
5753 2006-01-05 Alexandre Oliva <aoliva@redhat.com>
5754
5755 * Makefile.tpl (clean-stage[+id+]-[+prefix+][+module+]): Remove
5756 @ from continuation.
5757 * Makefile.in: Rebuilt.
5758
5759 2006-01-04 Paolo Bonzini <bonzini@gnu.org>
5760
5761 Sync from gcc:
5762
5763 2006-01-04 Paolo Bonzini <bonzini@gnu.org>
5764
5765 PR bootstrap/24252
5766
5767 * Makefile.def (flags_to_pass): Add STAGE1_CFLAGS and STAGE1_LANGUAGES.
5768 * Makefile.tpl (OBJDUMP): New.
5769 (EXTRA_HOST_FLAGS): Add it.
5770 (EXTRA_GCC_FLAGS): Remove flags already specified in flags_to_pass.
5771
5772 * Makefile.tpl (stage[+id+]-start, stage[+id+]-end): Do not try
5773 to use symbolic links between directories. Avoid race conditions
5774 or make them harmless.
5775 * configure.in: Do not try to use symbolic links between directories.
5776
5777 * Makefile.def (LEAN): Pass.
5778 * Makefile.tpl (LEAN): Define.
5779 (stage[+id+]-start): Accept that the previous directory does not
5780 exist, if the bootstrap is lean.
5781 (stage[+id+]-bubble): Invoke lean bootstrap commands after
5782 stage[+id+]-start. Use a makefile variable and an `if' instead of a
5783 configure substitution.
5784 ([+compare-target+]): Likewise.
5785 ([+bootstrap-target+]-lean): New.
5786 * configure.in: Remove lean bootstrap support from here.
5787
5788 * Makefile.in: Regenerate.
5789 * configure: Regenerate.
5790
5791 2006-01-02 Andreas Schwab <schwab@suse.de>
5792
5793 * configure.in: When reconfiguring remove Makefile in
5794 all stage directories.
5795 * configure: Regenerate.
5796
5797 2005-12-27 Leif Ekblad <leif@rdos.net>
5798
5799 * configure.in: Add support for RDOS target.
5800 * configure: Regenerate.
5801
5802 2005-12-27 Nick Clifton <nickc@redhat.com>
5803
5804 PR binutils/1990
5805 * libtool.m4: Synchronize with version in GCC sources.
5806
5807 2005-12-20 Paolo Bonzini <bonzini@gnu.org>
5808
5809 Revert Ada-related part of the previous change.
5810
5811 * Makefile.def (ADAFLAGS, BOOT_ADAFLAGS, ADAFLAGS_FOR_TARGET):
5812 Do not pass.
5813 * Makefile.tpl (BOOT_ADAFLAGS): Do not define.
5814 * Makefile.in: Regenerate.
5815 * configure.in: Do not include mt-ppc-aix target fragment.
5816 * configure: Regenerate.
5817
5818 2005-12-19 Paolo Bonzini <bonzini@gnu.org>
5819
5820 * configure.in: Select appropriate fragments for PowerPC/AIX.
5821 * configure: Regenerate.
5822
5823 * Makefile.def (flags_to_pass): Add ADAFLAGS, BOOT_ADAFLAGS,
5824 BOOT_CFLAGS, BOOT_LDFLAGS.
5825 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Handle BOOT_ADAFLAGS,
5826 BOOT_CFLAGS, BOOT_LDFLAGS.
5827 (TARGET_FLAGS_TO_PASS): Handle ADAFLAGS_FOR_TARGET.
5828 (stage[+id+]-bubble): Pass flags recursively to the comparison target.
5829 (stage): Fail if we cannot complete the work.
5830 * Makefile.in: Regenerate.
5831
5832 2005-12-16 Jeff Johnston <jjohnstn@redhat.com>
5833
5834 * COPYING.NEWLIB: Update copyright year for default
5835 copyright.
5836
5837 2005-12-15 Paolo Bonzini <bonzini@gnu.org>
5838
5839 * Makefile.tpl (all, do-[+make_target+], do-check, install,
5840 install-host-nogcc): Don't invoke $(stage) at the end.
5841 * Makefile.in: Regenerate.
5842
5843 2005-12-14 Paolo Bonzini <bonzini@gnu.org>
5844
5845 * configure.in: Flip the top-level bootstrap switch.
5846 * configure: Regenerate.
5847
5848 Merge from gcc:
5849
5850 2005-12-14 Daniel Jacobowitz <dan@codesourcery.com>
5851
5852 * Makefile.tpl: Throughout the file, use : $(MAKE) along with
5853 $(stage) and $(unstage).
5854 (EXTRA_TARGET_FLAGS): Correct double-quoting.
5855 (all): Remove stray semicolon.
5856 (local-distclean): Don't handle multilib.tmp and multilib.out.
5857 (install.all): Set $s for consistency.
5858 (configure-[+prefix+][+module+]): Instead of [+deps+], handle
5859 check_multilibs setting. Always make the install directory.
5860 (configure-stage[+id+]-[+prefix+][+module+]): Likewise.
5861 Correct @if/@endif.
5862 (all-stage[+id+]-[+prefix+][+module+]): Correct @if/@endif.
5863 ($(TARGET_SUBDIR)/[+module+]/multilib.out): Remove.
5864 (stage[+id+]-start, stage[+id+]-end): Stage $(TARGET_SUBDIR).
5865 (multilib.out): Remove.
5866 * Makefile.in: Regenerated.
5867
5868 2005-12-12 Nathan Sidwell <nathan@codesourcery.com>
5869
5870 * config.sub: Replace ms1 arch with mt. Allow ms1 as alias.
5871 * configure.in: Replace ms1 arch with mt.
5872 * configure: Rebuilt.
5873
5874 2005-12-05 Paolo Bonzini <bonzini@gnu.org>
5875
5876 Sync with gcc:
5877
5878 2005-12-12 Nathan Sidwell <nathan@codesourcery.com>
5879
5880 * config.sub: Replace ms1 arch with mt. Allow ms1 as alias.
5881 * configure.in: Replace ms1 arch with mt.
5882 * configure: Rebuilt.
5883
5884 2005-12-05 Paolo Bonzini <bonzini@gnu.org>
5885
5886 Sync with gcc:
5887
5888 2005-12-05 Paolo Bonzini <bonzini@gnu.org>
5889
5890 * configure.in (CONFIGURED_BISON, CONFIGURED_YACC, CONFIGURED_M4,
5891 CONFIGURED_FLEX, CONFIGURED_LEX, CONFIGURED_MAKEINFO): Remove
5892 "CONFIGURED_" from the AC_CHECK_PROGS invocation. Move below.
5893 Find in-tree tools if available.
5894 (EXPECT, RUNTEST, LIPO, STRIP): Find them and substitute them.
5895 (CONFIGURED_*_FOR_TARGET): Don't set nor substitute.
5896 (*_FOR_TARGET): Set them with GCC_TARGET_TOOL.
5897 (COMPILER_*_FOR_TARGET): New.
5898 * Makefile.tpl (HOST_EXPORTS): Add *_FOR_TARGET symbols that gcc needs.
5899 (BASE_TARGET_EXPORTS): Use COMPILER_*_FOR_TARGET symbols.
5900 (CONFIGURED_*, USUAL_*): Remove.
5901 (BISON, YACC, FLEX, LEX, M4, MAKEINFO, EXPECT, RUNTEST, LIPO,
5902 STRIP): Use autoconf substitutions.
5903 (COMPILER_AS_FOR_TARGET, COMPILER_LD_FOR_TARGET,
5904 COMPILER_NM_FOR_TARGET): New.
5905 (EXTRA_HOST_FLAGS): Pass LIPO and STRIP.
5906
5907 (all): Make all-host and all-target in parallel.
5908 (do-[+make_target+], do-check, install, [+compare-target+]): Ensure
5909 that $$r and $$s are set before invoking a recursive make.
5910 (stage[+id+]-bubble): Likewise, and invoke the comparison at the end.
5911 ([+bootstrap-target+]): Inline most of the `all' target.
5912
5913 2005-11-29 Ben Elliston <bje@au.ibm.com>
5914
5915 * Makefile.tpl (clean-target-libgcc): Invoke clean-target-libgcc
5916 from the gcc build directory.
5917 * Makefile.in: Regenerate.
5918
5919 2005-11-29 Ben Elliston <bje@au.ibm.com>
5920
5921 * Makefile.def: Add new libdecnumber host_module. Make all-gcc
5922 depend on all-libdecnumber.
5923 * configure.in (host_libs): Include libdecnumber.
5924 * Makefile.in: Regenerate.
5925 * configure: Likewise.
5926
5927 2005-11-21 Kean Johnston <jkj@sco.com>
5928
5929 * config.sub, config.guess: Sync from upstream sources.
5930
5931 2005-11-11 Daniel Jacobowitz <dan@codesourcery.com>
5932
5933 * Makefile.def: Remove gdb dependencies for gdbtk.
5934 * Makefile.tpl (CONFIGURE_GDB_TK, INSTALL_GDB_TK): New variables.
5935 (configure-gdb, install-gdb): New rules.
5936 * configure.in: Set CONFIGURE_GDB_TK and INSTALL_GDB_TK.
5937 * Makefile.in, configure: Regenerated.
5938
5939 2005-10-22 Paolo Bonzini <bonzini@gnu.org>
5940
5941 PR bootstrap/24297
5942 * Makefile.tpl (do-[+make-target+], do-check, install,
5943 stage[+id+]-bubble, [+compare-target+]): Ensure $$r and $$s
5944 are set before recursing.
5945 * Makefile.in: Regenerate.
5946
5947 2005-10-20 Eric Botcazou <ebotcazou@adacore.com>
5948
5949 PR bootstrap/18939
5950 * Makefile.def (gcc) <target>: Fix thinko.
5951 * Makefile.in: Regenerate.
5952
5953 2005-10-17 Bernd Schmidt <bernd.schmidt@analog.com>
5954
5955 * configure.in (bfin-*-*): Use test, not brackets, in if statement.
5956 * configure: Regenerate.
5957
5958 2005-10-09 Kazu Hirata <kazu@codesourcery.com>
5959
5960 * configure.in (arm-*-linux-gnueabi): Add to noconfigdirs
5961 target-libffi, target-qthreads, target-libjava, and
5962 targetlibobjc.
5963 * configure: Regenerate.
5964
5965 2005-10-06 Daniel Jacobowitz <dan@codesourcery.com>
5966
5967 * Makefile.def (flags_to_pass): Add OBJDUMP_FOR_TARGET.
5968 * Makefile.tpl (BASE_TARGET_EXPORTS): Add OBJDUMP.
5969 (OBJDUMP_FOR_TARGET, CONFIGURED_OBJDUMP_FOR_TARGET)
5970 (USUAL_OBJDUMP_FOR_TARGET): New.
5971 (EXTRA_TARGET_FLAGS): Add OBJDUMP.
5972 * configure.in: Check for $OBJDUMP_FOR_TARGET.
5973 * configure, Makefile.in: Regenerated.
5974
5975 2005-10-05 Paolo Bonzini <bonzini@gnu.org>
5976
5977 * Makefile.tpl (all) [gcc-no-bootstrap]: Make prebootstrap packages
5978 before other host packages.
5979
5980 2005-10-05 Paolo Bonzini <bonzini@gnu.org>
5981
5982 PR bootstrap/22340
5983
5984 * configure.in (default_target): Remove.
5985 * Makefile.tpl (all): Do not use prerequisites as subroutines
5986 (all) [gcc-bootstrap]: Bootstrap gcc first if it was not done yet.
5987 (do-[+make_target+], check, install, [+bootstrap_target+]): Do not
5988 use prerequisites as subroutines.
5989 (check-host, check-target): New.
5990 (bootstrap configure & all targets): Do not use stage*-start
5991 if the directory layout is already ok.
5992 (non-bootstrap configure & all targets): Prepend a $(unstage).
5993 (stage[+id+]-bubble): Do that here. Do not use NOTPARALLEL.
5994 (NOTPARALLEL): Remove.
5995 (unstage, stage variables): New variables.
5996 (unstage, stage targets): Simply expand to those variables.
5997
5998 * configure: Regenerate.
5999 * Makefile.in: Regenerate.
6000
6001 2005-10-04 James E Wilson <wilson@specifix.com>
6002
6003 * Makefile.def (lang_env_dependencies): Add libmudflap.
6004 * Makefile.in: Regenerate.
6005
6006 2005-10-03 Catherine Moore <clm@cm00re.com>
6007
6008 * configure.in (bfin-*-*): Support bfin.
6009 * configure: Regenerated.
6010
6011 2005-09-30 H.J. Lu <hongjiu.lu@intel.com>
6012
6013 * configure.in (*-*-darwin*): Build bfd, binutils and opcodes.
6014 * configure: Regenerated.
6015
6016 2005-09-28 Geoffrey Keating <geoffk@apple.com>
6017
6018 * Makefile.tpl (BASE_TARGET_EXPORTS): Add LIPO, STRIP.
6019 (LIPO_FOR_TARGET): New.
6020 (CONFIGURED_LIPO_FOR_TARGET): New.
6021 (USUAL_LIPO_FOR_TARGET): New.
6022 (STRIP_FOR_TARGET): New.
6023 (CONFIGURED_STRIP_FOR_TARGET): New.
6024 (USUAL_STRIP_FOR_TARGET): New.
6025 * Makefile.def (flags_to_pass): Add LIPO_FOR_TARGET and
6026 STRIP_FOR_TARGET.
6027 * configure.in: Set LIPO_FOR_TARGET, STRIP_FOR_TARGET,
6028 CONFIGURED_LIPO_FOR_TARGET, CONFIGURED_STRIP_FOR_TARGET.
6029 * Makefile.in: Regenerate.
6030 * configure: Regenerate.
6031
6032 2005-09-19 David Edelsohn <edelsohn@gnu.org>
6033
6034 * configure.in (powerpc-*-aix*): Add target-libssp to noconfigdirs.
6035 (rs6000-*-aix*): Same.
6036 * configure: Regenerate.
6037
6038 2005-09-14 Francois-Xavier Coudert <coudert@clipper.ens.fr>
6039
6040 * configure.in: Recognize f95 in the --enable-languages option,
6041 and substitute it for fortran, issuing a warning.
6042 * configure: Regenerate.
6043
6044 2005-09-07 Ben Elliston <bje@au.ibm.com>
6045
6046 Import from Autoconf sources:
6047
6048 2005-09-06 Paul Eggert <eggert@cs.ucla.edu>
6049 * move-if-change: Don't output "$2 is unchanged"; suggested by Ben
6050 Elliston. Handle weird characters correctly.
6051
6052 2005-08-30 Phil Edwards <phil@codesourcery.com>
6053
6054 * configure.in (*-*-vxworks*): Add target-libstdc++-v3 to noconfigdirs.
6055 * configure: Regenerated.
6056
6057 2005-08-20 Richard Earnshaw <richard.earnshaw@arm.com>
6058
6059 * Makefile.def (libssp): Add to lang_env_dependencies.
6060 * Makefile.in: Regenerate.
6061
6062 2005-08-17 Christian Groessler <chris@groessler.org>
6063
6064 * Makefile.tpl: (USUAL_CC_FOR_TARGET): Add missing trailing slash.
6065 * Makefile.in: Regenerate.
6066
6067 2005-08-12 Paolo Bonzini <bonzini@gnu.org>
6068
6069 * configure.in: Replace NCN_STRICT_CHECK_TOOL with
6070 NCN_STRICT_CHECK_TOOLS, and likewise for NCN_STRICT_CHECK_TARGET_TOOLS.
6071 Look for alternate names of the target cc and c++
6072 * configure: Regenerate.
6073
6074 2005-08-08 Paolo Bonzini <bonzini@gnu.org>
6075
6076 * configure.in (CC_FOR_TARGET, CXX_FOR_TARGET, GCJ_FOR_TARGET,
6077 GCC_FOR_TARGET, RAW_CXX_FOR_TARGET, GFORTRAN_FOR_TARGET): Find
6078 them with NCN_STRICT_CHECK_TARGET_TOOL, like the other target
6079 tools; remove code to manually set them.
6080 (Target tools): Look in the environment for them.
6081 * Makefile.tpl (CC_FOR_TARGET, CXX_FOR_TARGET, GCJ_FOR_TARGET,
6082 GCC_FOR_TARGET, RAW_CXX_FOR_TARGET, GFORTRAN_FOR_TARGET): Redefine.
6083 (AS_FOR_TARGET, LD_FOR_TARGET, NM_FOR_TARGET): Look into gcc
6084 build directory.
6085 (CONFIGURED_CC_FOR_TARGET, CONFIGURED_CXX_FOR_TARGET,
6086 CONFIGURED_GCJ_FOR_TARGET, CONFIGURED_GCC_FOR_TARGET,
6087 CONFIGURED_GFORTRAN_FOR_TARGET, USUAL_CC_FOR_TARGET,
6088 USUAL_CXX_FOR_TARGET, USUAL_GCJ_FOR_TARGET, USUAL_GCC_FOR_TARGET,
6089 USUAL_RAW_CXX_FOR_TARGET, USUAL_GFORTRAN_FOR_TARGET): New.
6090 (CXX_FOR_TARGET_FOR_RECURSIVE_MAKE,
6091 RAW_CXX_FOR_TARGET_FOR_RECURSIVE_MAKE, RECURSE_FLAGS): Delete.
6092 * configure: Regenerate.
6093 * Makefile.in: Regenerate.
6094
6095 2005-07-27 Mark Mitchell <mark@codesourcery.com>
6096
6097 * Makefile.tpl (EXTRA_TARGET_FLAGS): Set LDFLAGS=LDFLAGS_FOR_TARGET.
6098 * Makefile.def (flags_to_pass): Add LDFLAGS_FOR_TARGET.
6099 * Makefile.in: Regenerated.
6100
6101 2005-07-26 Mark Mitchell <mark@codesourcery.com>
6102
6103 * Makefile.tpl (SYSROOT_CFLAGS_FOR_TARGET): New variable.
6104 (CFLAGS_FOR_TARGET): Use it.
6105 (CXXFLAGS_FOR_TARGET): Likewise.
6106 * Makefile.in: Regenerated.
6107 * configure.in (--with-build-sysroot): New option.
6108 * configure: Regenerated.
6109
6110 2005-07-24 Paolo Bonzini <bonzini@gnu.org>
6111
6112 * Makefile.tpl: Wrap install between unstage and stage
6113 * Makefile.in: Regenerate.
6114
6115 2005-07-16 Kelley Cook <kcook@gcc.gnu.org>
6116
6117 * all files: Update FSF address.
6118
6119 2005-07-14 Jim Blandy <jimb@redhat.com>
6120
6121 * configure.in: Add cases for Renesas m32c.
6122 * configure: Regenerated.
6123
6124 2005-07-14 Kelley Cook <kcook@gcc.gnu.org>
6125
6126 * COPYING, compile, config-ml.in, config.guess,
6127 config.sub, install-sh, missing, mkinstalldirs,
6128 symlink-tree, ylwrap: Sync from upstream sources.
6129
6130 2005-07-13 Eric Christopher <echristo@redhat.com>
6131
6132 * configure.in: Add toplevel noconfigdir support for tpf.
6133 * configure: Regenerate.
6134
6135 2005-07-11 Jakub Jelinek <jakub@redhat.com>
6136
6137 * Makefile.def (target_modules): Add libssp.
6138 * configure.in (target_libraries): Add target-libssp.
6139 * configure: Rebuilt.
6140 * Makefile.in: Rebuilt.
6141
6142 2005-07-11 Paolo Bonzini <bonzini@gnu.org>
6143
6144 PR ada/22340
6145
6146 * Makefile.def: Sync with gcc.
6147 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Fix pasto.
6148 * Makefile.in: Regenerate.
6149
6150 2005-07-07 Andreas Schwab <schwab@suse.de>
6151
6152 * Makefile.def (flags_to_pass): Add CFLAGS_FOR_BUILD.
6153 * Makefile.tpl (EXTRA_GCC_FLAGS): Don't pass CFLAGS_FOR_BUILD here.
6154 * Makefile.in: Regenerated.
6155
6156 2005-07-07 Kazu Hirata <kazu@codesourcery.com>
6157
6158 * configure.in: Add --enable-libssp and --disable-libssp.
6159 * configure: Regenerate with autoconf-2.13.
6160
6161 2005-07-06 Geoffrey Keating <geoffk@apple.com>
6162
6163 * configure.in: Don't build sim or rda when targetting darwin.
6164 * configure: Regenerate.
6165
6166 2005-07-04 Ben Elliston <bje@gnu.org>
6167
6168 * src-release (do-proto-toplev): Remove dejagnu bits.
6169 (DEJAGNU_SUPPORT_DIRS): Remove.
6170 (dejagnu.tar.bz2, dejagnu.tar): Likewise.
6171 (GDBD_SUPPORT_DIRS): Likewise.
6172 (gdb+dejagnu.tar.bz2, gdb+dejagnu.tar): Likewise.
6173 (INSIGHTD_SUPPORT_DIRS): Likewise.
6174 (insight+dejagnu.tar.bz2, insight+dejagnu.tar): Likewise.
6175
6176 2005-06-30 Ben Elliston <bje@gnu.org>
6177
6178 * setup.com (mpw): Remove unused directive.
6179
6180 2005-06-22 Paolo Bonzini <bonzini@gnu.org>
6181
6182 * Makefile.def (stagefeedback): Come after profile.
6183 Define profiledbootstrap target.
6184 * Makefile.tpl (profiledbootstrap): Remove.
6185 (stageprofile-end): Zap stagefeedback.
6186 (stagefeedback-start): Copy all .gcda files, not only GCC's.
6187 * Makefile.in: Regenerate.
6188
6189 2005-06-13 Zack Weinberg <zack@codesourcery.com>
6190
6191 * depcomp: Update from automake CVS. Add 'ia64hp' stanza.
6192 In 'cpp' stanza, support '#line' as well as '# '.
6193
6194 2005-06-07 Hans-Peter Nilsson <hp@axis.com>
6195
6196 * configure.in (unsupported_languages): New macro.
6197 <mmix-knuth-mmixware>: Set unsupported_languages. Name explicit
6198 non-ported target libraries in noconfigdirs.
6199 <cris-*, crisv32-*> Ditto, except for non-aout, non-elf,
6200 non-linux-gnu. Remove libgcj_ex_libffi.
6201 <lang_frag loop>: Set add_this_lang=no if the language is in
6202 unsupported_languages.
6203 * configure: Regenerate.
6204
6205 2005-06-04 Tobias Schl"uter <tobias.schlueter@physik.uni-muenchen.de>
6206
6207 * configure.in: Fix typo in handling of --with-mpfr-dir.
6208 * configure: Regenerate.
6209
6210 2005-06-02 Jim Blandy <jimb@redhat.com>
6211
6212 * config.sub: Add cases for the Renesas m32c. (This patch has been
6213 accepted into the master sources.)
6214
6215 2005-06-02 Aldy Hernandez <aldyh@redhat.com>
6216 Michael Snyder <msnyder@redhat.com>
6217 Stan Cox <scox@redhat.com>
6218
6219 * configure.in: Set noconfigdirs for ms1.
6220
6221 * configure: Regenerate.
6222
6223 2005-05-25 Paolo Bonzini <bonzini@gnu.org>
6224
6225 * Makefile.tpl (stage[+id+]-start): Iterate over target module as well.
6226 (Dependencies): Consider target modules for bootstrap dependencies.
6227 Make target bootstrap modules depend on each stage's gcc.
6228 * Makefile.in: Regenerate.
6229
6230 2005-05-20 Paolo Bonzini <bonzini@gnu.org>
6231
6232 * Makefile.def (configure-gcc): Depend on binutils having been built.
6233 (all-gcc): No need to do it here.
6234 * Makefile.in: Regenerate.
6235
6236 2005-05-19 Paul Brook <paul@codesourcery.com>
6237
6238 * configure.in: Rewrite misleading error message when requested
6239 language cannot be built.
6240 * configure: Regenerate.
6241
6242 2005-05-15 Daniel Jacobowitz <dan@codesourcery.com>
6243
6244 * ylwrap: Import from Automake 1.9.5.
6245
6246 2005-05-04 Mike Stump <mrs@apple.com>
6247
6248 * configure.in: Always pass --target to target configures as
6249 otherwise rebuilds that do --recheck will fail.
6250 * configure: Rebuilt.
6251
6252 2005-05-04 Paolo Bonzini <bonzini@gnu.org>
6253
6254 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Rename from
6255 STAGE_HOST_EXPORTS.
6256 (configure, all): Add bootstrap support.
6257 (Host modules, target modules): Pass post-stage1 flags and exports.
6258 (Top-level bootstrap): Remove bootstrap rules, expanded elsewhere.
6259 * Makefile.in: Regenerate.
6260
6261 2005-04-29 Paolo Bonzini <bonzini@gnu.org>
6262
6263 Sync from gcc:
6264
6265 2005-04-22 Bernd Schmidt <bernd.schmidt@analog.com>
6266
6267 * config.sub: Update from master copy.
6268
6269 2005-04-19 Hans-Peter Nilsson <hp@axis.com>
6270
6271 * configure.in <crisv32-*-*, cris-*-*>: New local variable
6272 libgcj_ex_libffi. Have specific match for *-*-linux*. Separate
6273 matches for "*-*-aout" and "*-*-elf". Don't disable libffi for
6274 "*-*-elf" and "*-*-linux*".
6275 * configure: Regenerate.
6276
6277 2005-04-06 Paolo Bonzini <bonzini@gnu.org>
6278
6279 * Makefile.tpl (BUILD_CONFIGARGS): Include --with-build-subdir.
6280 (TARGET_CONFIGARGS): Include --with-target-subdir.
6281 (configure, all): New macros. Use them throughout.
6282
6283 2005-04-05 Paolo Bonzini <bonzini@gnu.org>
6284
6285 * Makefile.tpl: Sync with gcc.
6286 * Makefile.in: Regenerate.
6287
6288 2005-03-30 J"orn Rennecke <joern.rennecke@st.com>
6289
6290 * config/mh-mingw32: Delete.
6291 * configure.in: Don't use it.
6292 * configure: Regenerate.
6293
6294 2005-03-31 Paolo Bonzini <bonzini@gnu.org>
6295
6296 * Makefile.def (bfd, opcodes, libstdc++-v3, libmudflap): Set lib_path.
6297 * Makefile.tpl (SET_LIB_PATH, REALLY_SET_LIB_PATH): Remove.
6298 (HOST_EXPORTS, STAGE_HOST_EXPORTS, TARGET_EXPORTS): Set $(RPATH_ENVVAR).
6299 (HOST_LIB_PATH): Generate from Makefile.def.
6300 (TARGET_LIB_PATH): Likewise.
6301 (Old bootstrap targets): Include TARGET_LIB_PATH into RPATH_ENVVAR.
6302 * Makefile.in: Regenerate.
6303 * configure.in (set_lib_path, SET_LIB_PATH, SET_GCC_LIB_PATH): Remove.
6304 (RPATH_ENVVAR): Include Darwin case.
6305 * configure: Regenerate.
6306
6307 2005-03-25 Paolo Bonzini <bonzini@gnu.org>
6308
6309 * configure.in (RPATH_ENVVAR): Set to DYLD_LIBRARY_PATH on Darwin.
6310 * configure: Regenerate.
6311
6312 2005-03-21 Zack Weinberg <zack@codesourcery.com>
6313
6314 * Makefile.def: Remove libstdcxx_incdir, libsubdir, gxx_include_dir,
6315 gcc_version, and gcc_version_trigger from set of flags to pass.
6316 * Makefile.tpl: Remove definitions of above variables.
6317 (config.status): Remove dependency on $(gcc_version_trigger).
6318 * Makefile.in: Regenerate.
6319 * configure.in: Do not reference config/gcc-version.m4 nor
6320 config/gxx-include-dir.m4. Do not invoke TL_AC_GCC_VERSION nor
6321 TL_AC_GXX_INCLUDE_DIR. Do not set gcc_version_trigger.
6322 * configure: Regenerate.
6323
6324 2005-03-16 Manfred Hollstein <manfred.h@gmx.net>
6325 Andrew Pinski <pinskia@physics.uc.edu>
6326
6327 * Makefile.tpl (check-[+module+]): Fix shell statement inside if ... fi.
6328 * Makefile.in: Regenerate.
6329
6330 2005-03-01 Alexandre Oliva <aoliva@redhat.com>
6331
6332 PR libgcj/20160
6333 * ltmain.sh: Avoid creating archives with components that have
6334 duplicate basenames.
6335
6336 2005-02-28 Andrew Pinski <pinskia@physics.uc.edu>
6337
6338 PR bootstrap/20250
6339 * Makefile.tpl (HOST target installs): Fix copy and pasto, use install
6340 instead of check.
6341 * Makefile.in: Regenerate.
6342
6343 2005-02-28 Paolo Bonzini <bonzini@gnu.org>
6344
6345 Sync from gcc.
6346
6347 2005-02-28 Paolo Bonzini <bonzini@gnu.org>
6348
6349 PR bootstrap/17383
6350 * Makefile.def (target_modules): Remove "stage", now unnecessary.
6351 * Makefile.tpl (HOST_SUBDIR): New substitution.
6352 (STAGE_HOST_EXPORTS, EXPECT, HOST_LIB_PATH, USUAL_AR_FOR_TARGET,
6353 USUAL_AS_FOR_TARGET, USUAL_DLLTOOL_FOR_TARGET, USUAL_GCC_FOR_TARGET,
6354 USUAL_LD_FOR_TARGET, USUAL_NM_FOR_TARGET, USUAL_OBJDUMP_FOR_TARGET,
6355 USUAL_RANLIB_FOR_TARGET, USUAL_WINDRES_FOR_TARGET): Use it.
6356 (Host modules, Bootstrapped modules): Use it.
6357 (Build modules, Target modules): Do not create symlink trees,
6358 always configure out-of-srcdir.
6359 (distclean): Try removing $(host_subdir) with rm before using rm -rf.
6360 * configure.in (FLAGS_FOR_TARGET, CC_FOR_TARGET, GCJ_FOR_TARGET,
6361 GFORTRAN_FOR_TARGET, CXX_FOR_TARGET, RAW_CXX_FOR_TARGET): Use
6362 $(HOST_SUBDIR). Create a symlink for host_subdir.
6363
6364 * Makefile.in: Regenerate.
6365 * configure: Regenerate.
6366
6367 Merged from libada-gnattools-branch:
6368 2004-11-28 Nathanael Nerode <neroden@gcc.gnu.org>
6369
6370 * Makefile.def: Add gnattools as a module, depending on target-libada.
6371 * Makefile.in: Regenerate.
6372 * configure.in: Include gnattools in host_tools; disable it if ada
6373 is disabled.
6374 * configure: Regenerate.
6375
6376 2005-02-23 Nick Clifton <nickc@redhat.com>
6377
6378 * configure: Regenerate.
6379
6380 2005-02-22 Paul Schlie <schlie@comcast.net>
6381
6382 * configure.in: Allow darwin targeted ports to build tk, itcl and
6383 libgui.
6384
6385 2005-02-21 Eric Botcazou <ebotcazou@libertysurf.fr>
6386
6387 PR libgcj/10353
6388 * configure.in (noconfigdirs) <sparc-*-solaris2.[0-6]>: Add libgcj.
6389 * configure: Regenerate.
6390
6391 2005-02-08 Andrew Cagney <cagney@gnu.org>
6392
6393 * MAINTAINERS: Delete reference to dejagnu/ and mmalloc/ from the
6394 gdb/ section. Update GDB's URL.
6395
6396 2005-01-31 Andrew Cagney <cagney@gnu.org>
6397
6398 * gettext.m4: Only set ENABLE_NLS when gettext is present.
6399
6400 2005-01-29 Hans-Peter Nilsson <hp@axis.com>
6401
6402 * configure.in (noconfigdirs) <crisv32-*-*>: Match like cris-*-*.
6403 <crisv32-*-*, cris-*-*>: Only disable target-newlib and
6404 target-libgloss when not *-*-elf and *-*-aout.
6405 * configure: Regenerate.
6406
6407 2005-01-27 Andrew Cagney <cagney@gnu.org>
6408
6409 * gettext.m4: Don't use NONE as a default for CATOBJEXT.
6410
6411 2005-01-24 Andrew Cagney <cagney@gnu.org>
6412
6413 * gettext.m4: Only fall back to ../intl/ when it's present.
6414
6415 2005-01-17 Kelley Cook <kcook@gcc.gnu.org>
6416
6417 * install-sh, config.sub: Import from upstream.
6418
6419 2005-01-17 Kelley Cook <kcook@gcc.gnu.org>
6420
6421 PR bootstrap/18222
6422 * Makefile.def: Pass CPPFLAGS_FOR_TARGET.
6423 * Makefile.tpl: Define target CPPFLAGS on CPPFLAGS_FOR_TARGET.
6424 * Makefile.in: Regenerate.
6425
6426 2005-01-03 Paolo Bonzini <bonzini@gnu.org>
6427
6428 Revert 2004-12-28 Makefile changes, a better fix will be
6429 applied to mainline and src after GCC 4.0 branches.
6430
6431 2004-12-28 Paolo Bonzini <bonzini@gnu.org>
6432
6433 PR bootstrap/17383
6434
6435 * Makefile.def (target_modules): Remove stage parameter,
6436 it is always true now.
6437 * Makefile.tpl (configure-build-[+module+],
6438 configure-target-[+module+]): Always build symlink tree
6439 for the directory and for include. BUILD_SUBDIR and
6440 TARGET_SUBDIR cannot be . anymore.
6441 * Makefile.in: Regenerate.
6442
6443 2004-12-25 David Edelsohn <edelsohn@gnu.org>
6444
6445 Revert 2004-12-08 Makefile changes.
6446
6447 2004-12-16 Andrew Stubbs <andrew.stubbs@st.com>
6448
6449 * configure.in (sh64-*-*): Reenable gprof.
6450 * configure: Regenerate.
6451
6452 2004-12-09 Jim Blandy <jimb@redhat.com>
6453
6454 * MAINTAINERS: List 'depcomp' as part of automake.
6455
6456 2004-12-08 David Edelsohn <edelsohn@gnu.org>
6457
6458 * Makefile.def (flags_to_pass): Add PICFLAG_FOR_TARGET.
6459 * Makefile.tpl (EXTRA_HOST_FLAGS): Add PICFLAG.
6460 (EXTRA_TARGET_FLAGS): Add PICFLAG.
6461 * Makefile.in: Regenerate.
6462
6463 2004-12-07 Matt Kraai <kraai@ftbfs.org>
6464
6465 * Makefile.tpl: Generate normal dependencies if the LHS module is
6466 not bootstrapped.
6467 * Makefile.in: Regenerate.
6468
6469 2004-12-03 Richard Sandiford <rsandifo@redhat.com>
6470
6471 * configure.in: Include config/gxx-include-dir.m4. Use
6472 TL_AC_GXX_INCLUDE_DIR. Remove some now-redundant AC_SUBSTs.
6473 * configure: Regenerate.
6474
6475 2004-12-03 Richard Sandiford <rsandifo@redhat.com>
6476
6477 * config.if: Delete.
6478 * configure.in: Set libstdcxx_incdir directly.
6479 * configure: Regenerate.
6480 * MAINTAINERS: Remove mention of config.if.
6481 * src-release (DEVO_SUPPORT): Remove config.if.
6482
6483 2004-12-02 Eric Christopher <echristo@redhat.com>
6484
6485 * Makefile.tpl (clean-target-libgcc): Add stmp-dirs to list
6486 of things to remove.
6487 * Makefile.in: Regenerate.
6488
6489 2004-12-02 Richard Sandiford <rsandifo@redhat.com>
6490
6491 * configure.in: Clear gcc_version_trigger if the file doesn't exist.
6492 * configure: Regenerate.
6493
6494 2004-12-02 Richard Sandiford <rsandifo@redhat.com>
6495
6496 * configure.in: Include config/gcc-version.m4. Use TL_AC_GCC_VERSION
6497 to set gcc_version_trigger. Remove some now-redundant AC_SUBSTs.
6498 * configure: Regenerate.
6499
6500 2004-11-26 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
6501
6502 * configure.in (hppa*-*-linux*): Don't add libgcj to noconfigdirs.
6503 (hppa*64*-*-*): Delete incorrect comment.
6504 * configure: Rebuilt.
6505
6506 2004-11-15 Kelley Cook <kcook@gcc.gnu.org>
6507
6508 * install-sh, compile: Import from automake.
6509
6510 2004-11-15 Kelley Cook <kcook@gcc.gnu.org>
6511
6512 * config.guess, config.sub: Import from savannnah.
6513
6514 2004-11-12 Mike Stump <mrs@apple.com>
6515
6516 * Makefile.def: Add html support.
6517 * Makefile.tpl: Likewise.
6518 * Makefile.in: Regenerate.
6519
6520 2004-11-11 Geoffrey Keating <geoffk@apple.com>
6521
6522 PR 18423
6523 * configure.in: Remove all instances of build-fixincludes from
6524 noconfigdirs.
6525 (build_configargs): Supply --target to subdirectories.
6526 * configure: Regenerate.
6527
6528 * Makefile.def: Make gcc install depend on fixincludes install.
6529 * Makefile.in: Regenerate.
6530
6531 2004-11-08 Hans-Peter Nilsson <hp@bitrange.com>
6532
6533 * configure.in (noconfigdirs) [mmix-*-*]: Disable
6534 target-libgfortran.
6535 * configure: Regenerate.
6536
6537 2004-11-07 David Edelsohn <edelsohn@gnu.org>
6538
6539 * config-ml.in: Pass FCFLAGS for multilibs, handle GFORTRAN
6540 like CC.
6541
6542 2004-11-05 Paolo Bonzini <bonzini@gnu.org>
6543
6544 * Makefile.def (host fixincludes): Specify missing targets.
6545 * Makefile.in: Regenerate.
6546
6547 2004-11-04 H.J. Lu <hongjiu.lu@intel.com>
6548
6549 PR other/17783
6550 * configure.in: Set up LD_LIBRARY_PATH by default for gcc.
6551 * configure: Regenerated.
6552
6553 2004-11-04 Daniel Jacobowitz <dan@debian.org>
6554
6555 * configure.in (arm-*-oabi*, thumb-*-oabi*): Remove.
6556 * configure: Regenerated.
6557
6558 2004-10-28 Eric B. Weddington <ericw@evcohs.com>
6559
6560 PR target/18151
6561 * configure.in (case ${target}): Do not build fixincludes for avr.
6562 * configure: Regenerated.
6563
6564 2004-10-26 Paolo Bonzini <bonzini@gnu.org>
6565
6566 * configure.in (case ${target}): Do not build fixincludes
6567 on platforms where it is not used.
6568 * configure: Regenerated.
6569
6570 2004-10-23 Daniel Jacobowitz <dan@debian.org>
6571
6572 * configure.in: Use an absolute path to install-sh.
6573 * configure: Regenerated.
6574
6575 2004-10-19 Andrew Cagney <cagney@gnu.org>
6576
6577 * src-release (do-djunpack, do-md5sum): Install the generated file
6578 directly into the proto-toplev/ directory.
6579
6580 2004-10-19 Andrew Cagney <cagney@gnu.org>
6581
6582 * src-release (GDB_SUPPORT_DIRS): Remove utils and intl.
6583
6584 2004-10-12 Kelley Cook <kcook@gcc.gnu.org>
6585
6586 * configure.in (*-*-cygwin*): Supress warning if newlib not present.
6587 * configure: Regenerate.
6588
6589 2004-10-06 Paolo Bonzini <bonzini@gnu.org>
6590
6591 Fix wrong conflict resolution in:
6592
6593 2004-08-16 Paolo Bonzini <bonzini@gnu.org>
6594
6595 * Makefile.in: Regenerate.
6596 * Makefile.tpl (Autogenerated `all-*' targets): Invoke $(TARGET-*)
6597 in the recursive `make', instead of hardwiring `all'.
6598 (Autogenerated TARGET-* variables): New.
6599
6600 2004-10-05 Ulrich Weigand <uweigand@de.ibm.com>
6601
6602 Merged from GCC / libtool upstream:
6603 2004-10-02 P.J. Darcy <darcypj@us.ibm.com>
6604 * ltcf-c.sh (tpf*): Add ld_shlibs=yes.
6605 * ltcf-cxx.sh (tpf*): Likewise.
6606 * ltconfig (tpf*): Add TPF OS configuration support.
6607
6608 2004-09-30 Tomer Levi <Tomer.Levi@nsc.com>
6609
6610 * configure.in: Enable target-libgloss for crx-*-*.
6611 * configure: Regenerate.
6612
6613 2004-09-24 Michael Roth <mroth@nessie.de>
6614
6615 * configure.in (--without-headers): Add missing double quotes.
6616 * configure: Regenerate.
6617
6618 2004-09-24 Kelley Cook <kcook@gcc.gnu.org>
6619
6620 * ylwrap: Revert to previous version.
6621
6622 2004-09-23 H.J. Lu <hongjiu.lu@intel.com>
6623
6624 PR bootstrap/17369
6625 * Makefile.tpl (REALLY_SET_LIB_PATH): Add @SET_GCC_LIB_PATH@.
6626 (HOST_EXPORTS]): Add @SET_GCC_LIB_PATH@. Set and export
6627 SET_GCC_LIB_PATH_CMD.
6628 (BASE_TARGET_EXPORTS): Likewise.
6629 * Makefile.in: Regenerated.
6630
6631 * configure.in (SET_GCC_LIB_PATH): Set and substitute.
6632 * configure: Regenerated.
6633
6634 2004-09-23 Kelley Cook <kcook@gcc.gnu.org>
6635
6636 * config.guess: New upstream version
6637 * compile, depcomp, install-sh, ylwrap: Likewise.
6638
6639 2004-09-19 Roger Sayle <roger@eyesopen.com>
6640
6641 * config/mh-x86omitfp: New host makefile fragment. Add
6642 -fomit-frame-pointer to the default BOOT_CFLAGS.
6643 * configure.in: Use it to speed up bootstrap on some IA-32 hosts.
6644 * configure: Regenerate.
6645
6646 2004-09-15 Andrew Pinski <pinskia@physics.uc.edu>
6647
6648 PR target/11572
6649 * configure.in (*-*-darwin*): Renable libobjc.
6650 * configure: Regenerate.
6651
6652 2004-09-09 Daniel Berlin <dberlin@dberlin.org>
6653
6654 * Makefile.def: Remove libbanshee.
6655 * Makefile.tpl: Ditto.
6656 * configure.in: Ditto.
6657 * Makefile.in: Regen.
6658 * configure: Ditto.
6659
6660 2004-09-07 Paolo Bonzini <bonzini@gnu.org>
6661
6662 * missing: Import latest version from master repository.
6663
6664 2004-09-04 Nick Clifton <nickc@redhat.com>
6665
6666 * config.sub: Import latest version from master repository.
6667 * config.guess: Likewise.
6668 This includes these changes:
6669
6670 2004-08-27 Hans-Peter Nilsson <hp@axis.com>
6671
6672 * config.sub: Handle crisv32, alias etraxfs.
6673 * config.guess (crisv32:Linux:*:*): Handle.
6674
6675 2004-08-13 Brad Smith <brad@comstyle.com>
6676
6677 * config.guess (*:OpenBSD:*:*): Remove defunct MIPS machines.
6678 (sgi:OpenBSD:*:*): Emit mips64, not mipseb.
6679
6680 2004-08-11 Paul Eggert <eggert@cs.ucla.edu>
6681
6682 * config.guess (*:Darwin:*:*): If uname -p reports "unknown",
6683 assume the processor is a powerpc. This is because coreutils
6684 uname (at least versions 4.5.7 through 5.2.1) outputs "unknown"
6685 in this case, due to a MacOS X bug that causes
6686 sysctl ((int[]) {CTL_HW, HW_MACHINE_ARCH}, 2, buffer, &bufsize, 0, 0)
6687 to return a negative number.
6688 Problem reported by Petter Reinholdtsen in:
6689 http://lists.gnu.org/archive/html/bug-gnu-utils/2003-02/msg00201.html
6690
6691 2004-07-19 Ben Elliston <bje@gnu.org>
6692
6693 * config.guess (S7501:*:4.0:3.0): Handle NCR System V UNIX machine.
6694
6695 2004-06-24 Ben Elliston <bje@gnu.org>
6696
6697 * config.guess: Update copyright years.
6698 * config.sub: Likewise.
6699
6700 2004-06-22 Robert Millan <robertmh@gnu.org>
6701
6702 * config.guess (*:FreeBSD:*:*): Remove check for glibc (unneeded
6703 since GNU/kFreeBSD systems match *:GNU/*:*:* instead).
6704
6705 2004-06-22 Stanley F. Quayle <stan@stanq.com>
6706
6707 * config.guess (*:*VMS:*:*): New entry. Replaces
6708 Alpha:OpenVMS:*. Recognize and advertise all VMS flavors as dec
6709 manufacturer.
6710
6711 2004-06-22 Ben Elliston <bje@gnu.org>
6712
6713 * config.guess: Cray fixes from Wendy Palm <wendyp@cray.com>.
6714 * config.sub: Likewise.
6715
6716 2004-06-22 Ben Elliston <bje@gnu.org>
6717
6718 Reported by Hans-Peter Nilsson <hp@bitrange.com>:
6719 * config.sub: Correctly handle mmix-knuth and mmix-knuth-mmixware.
6720
6721 2004-06-11 Ben Elliston <bje@gnu.org>
6722
6723 * config.guess (pegasos:OpenBSD:*:*): Remove.
6724
6725 2004-06-11 Ben Elliston <bje@gnu.org>
6726
6727 From Wouter Verhelst <wouter@grep.be>:
6728 * config.guess (M68*:*:R3V[5678]:*): Detect R3V8.
6729
6730 2004-06-11 Ben Elliston <bje@gnu.org>
6731
6732 * config.guess (luna88k:OpenBSD:*:*): New.
6733
6734 2004-03-12 Kazuhiro Inaoka <inaoka.kazuhiro@renesas.com>
6735
6736 * config.guess (m32r*:Linux:*:*): New case.
6737 * config.sub: Handle m32rle.
6738
6739 2004-03-12 Ben Elliston <bje@wasabisystems.com>
6740
6741 From Jens Petersen <petersen@redhat.com>:
6742 * config.sub: Handle sparcv8.
6743
6744 2004-03-03 Ben Elliston <bje@wasabisystems.com>
6745
6746 From Tom Smith <smith@cag.lkg.hp.com>:
6747 * config.guess: Version suffixes are equally significant on Tru64
6748 V4.* and V5.*, so do not ignore them on V5.*. Handle a version
6749 prefix of "P" (patched kernel).
6750
6751 2004-02-23 Tal Agmon <Tal.Agmon@nsc.com>
6752
6753 * config.sub: Add support for National Semiconductor CRX target.
6754
6755 2004-09-03 Jan Beulich <jbeulich@novell.com>
6756
6757 * configure.in: Remove target-libstdc++-v3 from noconfigdirs for
6758 *-*-netware, but add target-libmudflap.
6759 Consolidate *-*-netware targets (of which really only i?86 exists)
6760 into a single entry.
6761 * configure: Likewise.
6762
6763 2004-09-01 Paolo Bonzini <bonzini@gnu.org>
6764
6765 * Makefile.tpl (sorry): Remove.
6766 (clean-stage[+id+], clean-stage[+id+]-module): New targets.
6767 (cleanstrap targets): Depend on distclean, not distclean-stage1.
6768 (do-clean): Clean per-stage directories too.
6769 (do-distclean): Run distclean-stage1 too.
6770 (.NOTPARALLEL): Enable during toplevel bootstrap.
6771 (stage[+id+]-bubble): Enable parallel execution during
6772 the recursive invocation.
6773 * Makefile.in: Regenerate.
6774
6775 Sync from gcc (moving the Makefile.in change to Makefile.tpl):
6776
6777 2004-08-31 Robert Bowdidge <bowdidge@apple.com>
6778
6779 * Makefile.in: Move BOOT_CFLAGS above host makefile fragment include.
6780 * configure.in: add test for powerpc-*-darwin* to specify makefile frag
6781 * configure: regenerate
6782 * config/mh-ppc-darwin: create file, override BOOT_CFLAGS for
6783 -mdynamic-no-pic
6784
6785 2004-08-31 Paolo Bonzini <bonzini@gnu.org>
6786
6787 * Makefile.tpl: Move BOOT_CFLAGS above host makefile fragment
6788 include.
6789 * configure.in: Fix indentation.
6790 * configure: Regenerate.
6791
6792 2004-08-31 Paolo Bonzini <bonzini@gnu.org>
6793
6794 * Makefile.def (build_modules): Add fixincludes.
6795 (dependencies): Make gcc depend on fixincludes.
6796 * configure.in (build_tools): Add fixincludes.
6797 (build_configdirs): Always include build_libs.
6798 * Makefile.in: Regenerate.
6799 * configure: Regenerate.
6800
6801 2004-08-30 Paolo Bonzini <bonzini@gnu.org>
6802
6803 * Makefile.def (bootstrap stages): Add 'lean' parameter.
6804 * Makefile.tpl (configure-stageN-*, all-stageN-*): Turned into
6805 phony targets; do not generate timestamp files.
6806 (distclean-stageN): Remove references to their timestamp files.
6807 (restageN, touch-stageN): Remove.
6808 (stageN-bubble): Rewritten.
6809 (compare): Support lean bootstraps.
6810 * Makefile.in: Regenerate.
6811
6812 * configure.in: Only warn when bootstrapping but
6813 build != host or build != target. Support lean bootstraps.
6814 * configure: Regenerate.
6815
6816 Sync from gcc:
6817 2004-08-26 Phil Edwards <phil@codesourcery.com>
6818
6819 * configure.in: Give a better error message if GMP/MPFR are missing
6820 and a language needing them has been requested.
6821 * configure: Regenerated.
6822
6823 2004-08-25 Phil Edwards <phil@codesourcery.com>
6824
6825 * configure.in: Print a list of available language front-ends if
6826 a requested one is missing. Tidy stray tab characters.
6827 * configure: Regenerated.
6828
6829 2004-08-17 Paolo Bonzini <bonzini@gnu.org>
6830
6831 * Makefile.in: Regenerate.
6832 * configure: Regenerate.
6833
6834 * Makefile.def (bootstrap-stage): Rename extra_*_flags to
6835 stage_*_flags.
6836 * Makefile.tpl (configure-[+module+], all-[+module+]): Exit
6837 for bootstrapped modules if toplevel bootstrap is going.
6838 (GCC bootstrap): Generate per-stage targets for all bootstrapped
6839 modules. Adjust for changes in Makefile.def. Enable several
6840 rules even in non-bootstrap mode, just to avoid peppering the
6841 template with unnecessary "@if/@endif gcc-bootstrap" pairs.
6842 (stage-[+prev+]-bubble): Remove.
6843
6844 * Makefile.def (Dependencies): Depend on all-build-bison,
6845 all-build-flex, all-build-byacc, all-build-texinfo, rather
6846 than the host variations.
6847 * Makefile.tpl (BUILD_DIR_PREFIX): Remove. Replace throughout
6848 with BUILD_SUBDIR.
6849 (BISON): Update for recent Bisons.
6850 (YACC): Fix typo.
6851 (cross): Depend on all-build.
6852 (all): Do not depend on all-build.
6853 (prebootstrap): Remove.
6854 (dep-kind): Accept separate prefixes for MODULE and ON variables.
6855 (Prebootstrap dependencies): Add them to the per-stage targets
6856 and to all-prebootstrap.
6857 * configure.in (build_configdirs): Always enable build_tools.
6858 (BUILD_DIR_PREFIX): Remove.
6859
6860 * Makefile.def (gcc): Add target variable.
6861 (gdb, expect, guile, tk, tix): Replace with_x with extra_make_flags.
6862 * Makefile.tpl (Autogenerated `all-*' targets): Invoke $(TARGET-*)
6863 in the recursive `make', instead of hardwiring `all'.
6864 (Autogenerated TARGET-* variables): New.
6865
6866 2004-08-17 Robert Millan <robertmh@gnu.org>
6867
6868 * configure.in: In noconfigdirs check, match GNU/k*BSD with GNU/Linux
6869 (instead of FreeBSD).
6870 * configure: Regenerate.
6871
6872 2004-08-12 Nathanael Nerode <neroden@gcc.gnu.org>
6873
6874 * Makefile.def, configure.in, src-release: Remove useless, bogus
6875 references to tix.
6876 * Makefile.in, configure: Regenerate.
6877
6878 * src-release: Stop distributing mmalloc with gdb (which doesn't
6879 use it).
6880 * Makefile.def: GDB doesn't depend on mmalloc anymore.
6881 * Makefile.in: Regenerate.
6882
6883 2004-08-09 Mark Mitchell <mark@codesourcery.com>
6884
6885 * configure.in (arm*-*-eabi*): New target.
6886 * configure: Regenerate.
6887
6888 2004-08-01 Robert Millan <robertmh@gnu.org>
6889
6890 * configure.in: Turn mt-linux into mt-gnu. Use mt-gnu and enable
6891 libmudflap for all GNU-based systems (with Glibc).
6892 * configure: Regenerate.
6893
6894 2004-08-06 Paolo Bonzini <bonzini@gnu.org>
6895
6896 * Makefile.def (bfd, opcodes, gcc, zlib): Mark as bootstrap module.
6897 (bison, byacc, flex, texinfo): Do not mark as bootstrap module.
6898 (Dependencies): New section.
6899 * Makefile.tpl (Dependencies): Generate from Makefile.def.
6900 (configure-target-[+module+]): Depend on maybe-all-gcc
6901 (all-prebootstrap): New name of all-bootstrap. Changed throughout.
6902 (toplevel profiledbootstrap): Fix dependencies.
6903 * Makefile.in: Regenerate.
6904
6905 2004-08-03 Mark Mitchell <mark@codesourcery.com>
6906
6907 * configure.in (arm*-*-symbianelf*): Add ${libgcj} and
6908 target-libiberty to noconfigdirs.
6909
6910 2004-08-03 Paul Brook <paul@codesourcery.com>
6911
6912 * configure.in: Check for MPFR as well as GMP.
6913 * configure: Regenerate.
6914
6915 2004-08-03 Paolo Bonzini <bonzini@gnu.org>
6916
6917 * Makefile.def (host-modules): Add gcc.
6918 * Makefile.in: Regenerate.
6919 * Makefile.tpl (sorry): New rule.
6920 (configure-host, all-host, [+make_target+]-host, do-check,
6921 install-host): Do not add gcc as a special case.
6922 (host modules): Add a small special-casing for gcc. Export
6923 extra_make_flags through the environment.
6924 (maybe-configure-gcc, configure-gcc, maybe-all-gcc, all-gcc,
6925 maybe-check-gcc, check-gcc, maybe-install-gcc, install-gcc,
6926 other recursive targets for gcc): Remove.
6927
6928 (all, do-[+make_target+], do-check): Wrap between unstage and stage.
6929 (stage, unstage): New rules.
6930 (stage[+id+]-start, stage[+id+]-end, [+compare-target+],
6931 distclean-stage[+id+]): Use stage_current.
6932 ([+bootstrap-target+], profiledbootstrap): Do not invoke manually
6933 the stage*-start rules.
6934
6935 2004-07-19 Robert Millan <robertmh@gnu.org>
6936
6937 Synced from gcc:
6938
6939 2004-04-26 Robert Millan <robertmh@gnu.org>
6940
6941 Add patches from libtool CVS.
6942 * libtool.m4: Add kfreebsd*-gnu and knetbsd*-gnu.
6943 * ltconfig: Likewise.
6944 * ltcf-c.sh: Likewise.
6945 * ltcf-cxx.sh: Likewise.
6946 * ltcf-gcj.sh: Likewise.
6947
6948 2004-07-12 Paolo Bonzini <bonzini@gnu.org>
6949
6950 * configure.in: Add noconfigdirs for crx-*-*.
6951 * configure: Regenerate.
6952
6953 2004-07-12 Paolo Bonzini <bonzini@gnu.org>
6954
6955 Synced from gcc:
6956
6957 2004-07-09 Loren J. Rittle <ljrittle@acm.org>
6958
6959 * configure.in: Build libmudflap by default on FreeBSD.
6960 * configure: Regenerated.
6961
6962 2004-07-09 Mark Mitchell <mark@codesourcery.com>
6963
6964 * configure.in: Do not build libmudflap by default on non-GNU/Linux
6965 systems.
6966 * configure: Regenerated.
6967
6968 2004-07-08 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
6969
6970 PR target/16344
6971 * Makefile.tpl (profiledbootstrap): Build runtime libraries with
6972 feedback based compiler.
6973 * Makefile.in: Rebuilt.
6974
6975 2004-07-05 Phil Edwards <phil@codesourcery.com>
6976
6977 * configure.in: Do not prepend $srcdir to /dev/null in
6978 makefile fragments.
6979 * configure: Regenerate.
6980
6981 2004-07-08 Alexandre Oliva <aoliva@redhat.com>
6982
6983 * Makefile.def (host_modules): Set bootstrap=true for flex.
6984 * Makefile.tpl (all-gcc): Depend on texinfo and flex.
6985 * Makefile.in: Rebuilt.
6986
6987 2004-07-01 Paolo Bonzini <bonzini@gnu.org>
6988
6989 * Makefile.def (build_modules): Add bison, byacc, flex,
6990 m4, texinfo.
6991 (flags_to_pass): Add FLEX.
6992 * Makefile.tpl (BUILD_DIR_PREFIX, BASE_EXPORTS): New.
6993 (BUILD_EXPORTS, HOST_EXPORTS, BASE_TARGET_EXPORTS): Include it.
6994 (DEFAULT_YACC, USUAL_YACC, DEFAULT_LEX, USUAL_LEX, DEFAULT_M4,
6995 DEFAULT_MAKEINFO): Remove.
6996 (CONFIGURED_YACC, CONFIGURED_FLEX, CONFIGURED_BISON,
6997 CONFIGURED_LEX, CONFIGURED_M4, CONFIGURED_MAKEINFO): Substitute.
6998 (YACC, FLEX, BISON, LEX, M4, MAKEINFO): Define to look into
6999 objdir or else use configured tool.
7000 (all-build): New.
7001 (all): Depend on it.
7002 (Build module dependencies): Add.
7003 * Makefile.in: Regenerate.
7004 * configure.in: Better support for multiple build modules,
7005 matching what is done for host/target modules. Do not look
7006 for "plausible" locations of build tools if Canadian cross.
7007 Use autoconf's AC_PROG_CC to find a C compiler. Define
7008 BUILD_DIR_PREFIX. Look for flex, makeinfo and m4.
7009 * configure: Regenerate.
7010
7011 2004-06-22 Paolo Bonzini <bonzini@gnu.org>
7012
7013 * Makefile.tpl (HOST_EXPORTS): Fix pasto.
7014 * Makefile.in: Regenerate.
7015
7016 2004-06-22 Paolo Bonzini <bonzini@gnu.org>
7017
7018 * Makefile.tpl (configure-build-[+module+],
7019 configure-[+module+], configure-target-[+module+]): Pass
7020 [+extra_configure_args+].
7021 (all-build-[+module+], all-[+module+], check-[+module+],
7022 install-[+module+], [+make_target+]-[+module+],
7023 all-target-[+module+], check-target-[+module+],
7024 install-target-[+module+], [+make_target+]-target-[+module+]):
7025 Pass [+extra_make_args+].
7026 (HOST_EXPORTS): Include the former GCC_HOST_EXPORTS.
7027 (GCC_HOST_EXPORTS): Remove.
7028 (configure-gcc, all-gcc, GCC_STRAP_TARGETS, profiledbootstrap,
7029 cross, check-gcc, check-gcc-c++, install-gcc,
7030 gcc-no-fixedincludes, [+make_target+]-gcc, stage[+id+]-bubble):
7031 Replace GCC_HOST_EXPORTS with HOST_EXPORTS.
7032 * Makefile.in: Regenerate.
7033
7034 2004-06-21 Christopher Faylor <cgf@alum.bu.edu>
7035
7036 * configure.in: Check for srcdir/winsup rather than build directory
7037 winsup.
7038 * configure: Regenerate.
7039
7040 2004-06-17 Corinna Vinschen <vinschen@redhat.com>
7041
7042 * configure.in: Don't build Cygwin native newlib if winsup
7043 directory is missing. Emit warning instead.
7044 * configure: Regenerate.
7045
7046 2004-06-09 Paolo Bonzini <bonzini@gnu.org>
7047
7048 * Makefile.tpl (touch-stage[+id+]): New.
7049 (restage[+prev+]): Depend on touch-stage[+id+].
7050
7051 * Makefile.tpl (RECURSE_FLAGS_TO_PASS): New.
7052 Use it throughout.
7053
7054 * Makefile.def: Add profile and feedback bootstrap stages.
7055 Remove next field from bootstrap stages.
7056 * Makefile.tpl (LN, LN_S): Substitute.
7057 (stageN-start, stageN-end): Use double-colon rules, to
7058 provide a hook for additional setup commands.
7059 (distclean-stageN-gcc, restageN): Create dependencies from
7060 [+prev+], not from [+next+].
7061 (stageN-bubble): Add commands for successive stages from
7062 [+prev+], using double-colon rules.
7063 (all-stageN-gcc): Fix typo.
7064 (stagefeedback-start, profiledbootstrap): New.
7065 * Makefile.in: Regenerate.
7066 * configure.in: Call ACX_PROG_LN.
7067 * configure: Regenerate.
7068
7069 2004-06-03 Paolo Bonzini <bonzini@gnu.org>
7070
7071 * configure.in: Fix --enable-bootstrap breakage introduced in trees
7072 without gcc.
7073 * configure: Regenerate.
7074
7075 2004-06-01 Paolo Bonzini <bonzini@gnu.org>
7076
7077 * Makefile.tpl: Fix typo.
7078 * Makefile.in: Regenerate.
7079
7080 2004-06-01 Paolo Bonzini <bonzini@gnu.org>
7081
7082 * configure.in: Remove new- prefix from toplevel
7083 bootstrap targets.
7084 * configure: Regenerate.
7085
7086 2004-06-01 Paolo Bonzini <bonzini@gnu.org>
7087
7088 Merge this patch from the gcc tree:
7089
7090 2004-05-30 Andreas Jaeger <aj@suse.de>
7091 Jim Wilson <wilson@specifixinc.com>
7092
7093 * config-ml.in: Pass FFLAGS and ADAFLAGS for multilibs, handle F77
7094 like CC.
7095
7096 2004-06-01 Paolo Bonzini <bonzini@gnu.org>
7097
7098 * Makefile.tpl (all.normal): Rename to all.
7099 (all): Replace with a rule to pick the default
7100 target from configure.
7101 (all-gcc, configure-gcc): Use conditionals to
7102 do nothing when toplevel bootstrap is going on.
7103 (GCC directory bootstrap) [gcc-bootstrap]: Disable.
7104 (Toplevel bootstrap) [gcc-no-bootstrap]: Disable.
7105 * configure.in: Support --enable-bootstrap.
7106
7107 * Makefile.def: Remove new- prefix from toplevel
7108 bootstrap targets.
7109 * Makefile.tpl: Likewise.
7110
7111 * Makefile.def: Add bootstrap_stage 4. Add bootstrap2
7112 target.
7113
7114 * Makefile.tpl (Toplevel bootstrap): Pass $(BASE_FLAGS_TO_PASS)
7115 $(RECURSE_FLAGS) to recursive invocation of make.
7116
7117 * Makefile.in: Regenerate.
7118 * configure: Regenerate.
7119
7120 2004-05-27 Daniel Jacobowitz <dan@debian.org>
7121
7122 * configure.in: Fix sed invocation for GFORTRAN_FOR_TARGET.
7123 * configure: Regenerate.
7124
7125 2004-05-25 Daniel Jacobowitz <drow@false.org>
7126
7127 * Makefile.tpl (BUILD_EXPORTS, HOST_EXPORTS, GCC_HOST_EXPORTS)
7128 (STAGE_HOST_EXPORTS, BASE_TARGET_EXPORTS, RAW_CXX_TARGET_EXPORTS)
7129 (NORMAL_TARGET_EXPORTS): New macros. Use them in all the recursive
7130 targets.
7131 * Makefile.in: Regenerate.
7132
7133 2005-05-24 Paolo Bonzini <bonzini@gnu.org>
7134
7135 * configure.in: Test the ability to symlink directories.
7136 * configure: Regenerate.
7137
7138 * Makefile.def (bootstrap-stage): New definitions.
7139 * Makefile.tpl (configure-stage1-gcc,
7140 configure-stage2-gcc, configure-stage3-gcc,
7141 all-stage1-gcc, all-stage2-gcc, all-stage3-gcc,
7142 new-bootstrap, new-cleanstrap, new-restage1, new-restage2,
7143 new-restage3, compare): Autogenerate, see Makefile.in
7144 entry for behavioral changes.
7145 (distclean-stage1, new-stage1-start, new-stage1-end,
7146 new-stage1-bubble, distclean-stage2, new-stage2-start,
7147 new-stage2-end, new-stage2-bubble, distclean-stage3,
7148 new-stage3-start, new-stage3-end): New autogenerated targets.
7149 (objext, prebootstrap, BOOT_CFLAGS,
7150 POSTSTAGE1_FLAGS_TO_PASS): Move above the autogenerated
7151 targets.
7152
7153 * Makefile.in: Regenerate.
7154 (distclean-stage1, new-stage1-start, new-stage1-end,
7155 new-stage1-bubble, distclean-stage2, new-stage2-start,
7156 new-stage2-end, new-stage2-bubble, distclean-stage3,
7157 new-stage3-start, new-stage3-end): New targets.
7158 (all-stage1-gcc): Move prebootstrap dependency from here...
7159 (configure-stage1-gcc): ...to here.
7160 (new-bootstrap): Use bubble targets.
7161 (new-cleanstrap, new-restage1, new-restage2, new-restage3):
7162 Use per-stage distclean targets.
7163 (configure-stage1-gcc, configure-stage2-gcc,
7164 configure-stage3-gcc, all-stage1-gcc,
7165 all-stage2-gcc, all-stage3-gcc, new-bootstrap):
7166 Use new-stageN-start to prepare the tree.
7167
7168 2004-05-23 Paolo Bonzini <bonzini@gnu.org>
7169
7170 * Makefile.def (host_modules): add libcpp.
7171 * Makefile.tpl: Add dependencies on and for libcpp.
7172 * Makefile.in: Regenerate.
7173 * configure.in: Add libcpp host module.
7174 * configure: Regenerate.
7175
7176 2004-05-17 Zack Weinberg <zack@codesourcery.com>
7177
7178 * Makefile.def, Makefile.tpl, configure.in: Remove all mention
7179 of libf2c.
7180 * configure, Makefile.in: Regenerate.
7181
7182 2004-05-13 Diego Novillo <dnovillo@redhat.com>
7183
7184 Merge from tree-ssa-20020619-branch.
7185
7186 * Makefile.def: Add libbanshee, libmudflap and libgfortran.
7187 * Makefile.tpl (BUILD_CONFIGDIRS): Add libbanshee.
7188 (HOST_GMPLIBS): Define.
7189 (HOST_GMPINC): Define.
7190 (TARGET_LIB_PATH): Add libmudflap.
7191 (GFORTRAN_FOR_TARGET): Define.
7192 (configure-build*): Export GFORTRAN.
7193 (configure-gcc): Export GMPLIBS and GMPINC.
7194 (all-gcc): Add maybe-all-libbanshee.
7195 (configure-target-libgfortran): Define.
7196 * Makefile.in: Regenerate.
7197 * configure.in (host_libs): Add libbanshee.
7198 (target_libraries): Add target-libmudflap and target-libgfortran.
7199 Add --with-libbanshee.
7200 Handle --disable-libmudflap.
7201 (*-*-freebsd*): Use with_gmp.
7202 Add $(libgcj) to noconfigdirs.
7203 * configure: Regenerate.
7204 * depcomp: New file.
7205 * MAINTAINERS: Add tree-ssa maintainers.
7206
7207 2004-04-28 Paolo Bonzini <bonzini@gnu.org>
7208
7209 * config/acx.m4: Fix fastcompare support for new-bootstrap.
7210 * configure: Regenerate.
7211
7212 2004-04-27 Paolo Bonzini <bonzini@gnu.org>
7213
7214 Revert:
7215 2004-04-26 Paolo Bonzini <bonzini@gnu.org>
7216
7217 * Makefile.def (flags_to_pass): Remove *dir variables that
7218 are passed to the modules via TOPLEVEL_CONFIGURE_ARGUMENTS,
7219 as well as prefix and exec_prefix.
7220 * Makefile.in: Regenerate.
7221
7222 2004-04-26 Paolo Bonzini <bonzini@gnu.org>
7223
7224 * Makefile.def (host_modules): Mark with the bootstrap
7225 flag packages on which gcc depends.
7226 * Makefile.tpl (all-bootstrap): Use it.
7227 * Makefile.in: Regenerate.
7228
7229 2004-04-26 Paolo Bonzini <bonzini@gnu.org>
7230
7231 * Makefile.def (flags_to_pass): Remove *dir variables that
7232 are passed to the modules via TOPLEVEL_CONFIGURE_ARGUMENTS,
7233 as well as prefix and exec_prefix.
7234 * Makefile.in: Regenerate.
7235
7236 2004-04-26 Paolo Bonzini <bonzini@gnu.org>
7237
7238 * configure.in: Invoke ACX_PROG_CMP_IGNORE_INITIAL.
7239 * configure: Regenerate.
7240 * config/acx.m4: Mutuate ACX_PROG_CMP_IGNORE_INITIAL from gcc.
7241 * gcc/Makefile.tpl (compare): Use the result of the test.
7242 * gcc/Makefile.in: Regenerate.
7243
7244 2004-04-23 Paolo Bonzini <bonzini@gnu.org>
7245
7246 * Makefile.tpl (all-stage1-gcc, all-stage2-gcc, all-stage3-gcc):
7247 Always relocate gcc and prev-gcc to the original names, even
7248 if the build fails.
7249 (new-cleanstrap, new-restage1, new-restage2, new-restage3):
7250 New targets.
7251
7252 2004-04-19 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
7253
7254 * configure.in (mips*-*-irix5*): Enable ld.
7255 * configure: Regenerate.
7256
7257 2004-04-15 James E Wilson <wilson@specifixinc.com>
7258
7259 * Makefile.tpl (configure-[+module+], configure-gcc,
7260 configure-stage1-gcc, configure-stage2-gcc, configure-stage3-gcc):
7261 Set and export LDFLAGS.
7262 * Makefile.in: Regenerate.
7263
7264 2004-04-09 Nathanael Nerode <neroden@gcc.gnu.org>
7265
7266 PR bootstrap/14871
7267 * Makefile.tpl: If we don't have built-in-tree target tools,
7268 use the ones found by configure rather than hacking around with
7269 program_transform_name.
7270 * configure.in: Give Makefile.tpl the information necessary
7271 to do that.
7272 * Makefile.in: Regenerate.
7273 * configure: Regenerate.
7274
7275 2004-04-06 Nathanael Nerode <neroden@gcc.gnu.org>
7276
7277 PR bootstrap/14760
7278 * configure.in: When computing baseargs, strip *all* copies of
7279 offending options. Also, don't match/substitute the trailing space,
7280 so that this actually works when two similar options are separated by
7281 only one space.
7282 * configure: Regenerate.
7283
7284 2004-04-06 David Edelsohn <edelsohn@gnu.org>
7285
7286 * configure.in (powerpc-*-aix*): Remove target-libada from noconfigdirs.
7287 (rs6000-*-aix*): Same.
7288 * configure: Regenerate.
7289
7290 2004-03-25 Stan Shebs <shebs@apple.com>
7291
7292 Remove MPW support, no longer used.
7293 * mpw-README, mpw-build.in, mpw-config.in, mpw-configure,
7294 mpw-install: Remove files.
7295 * src-release (DEVO_SUPPORT): Remove names of removed files.
7296 * MAINTAINERS: Likewise.
7297
7298 2004-03-24 Nathanael Nerode <neroden@gcc.gnu.org>
7299
7300 * Makefile.tpl (top level bootstrap support): Remove now-unneeded
7301 STRICT_WARN, WARN_CFLAGS flags passed down to make.
7302 * Makefile.in: Regenerate.
7303
7304 * configure.in (top level bootstrap support): Rework --enable-werror
7305 to set @stage2_werror_flag@.
7306 * configure: Regenerate.
7307 * Makefile.tpl (top level bootstrap support): Pass
7308 @stage2_werror_flag@ down to configure in stages 2 and 3.
7309 * Makefile.in: Regenerate.
7310
7311 2004-03-23 Nathanael Nerode <neroden@gcc.gnu.org>
7312
7313 * Makefile.tpl (new-bootstrap): Set CC and CC_FOR_BUILD in configure
7314 for stages 2 and 3 as well as in make. As a consequence, remove
7315 OUTPUT_OPTION (now detected by configure) from the flags passed down
7316 to make.
7317 * Makefile.in: Regenerate.
7318
7319 * Makefile.tpl (new-bootstrap): Fix typo.
7320 * Makefile.in: Regenerate.
7321
7322 2004-03-22 Nathanael Nerode <neroden@gcc.gnu.org>
7323
7324 * Makefile.tpl: Rearrange by moving recursive_targets rules
7325 into their proper sections.
7326 * Makefile.tpl (top level bootstrap support): Move disabling
7327 of coverage flags from 'make' to 'configure'; improve comments.
7328 * Makefile.in: Regenerate.
7329
7330 * Makefile.tpl (experimental top level bootstrap) Move stage1
7331 language setting from all- target to configure- target; disable
7332 intermodule optimization in stage 1; prevent gratuitous rebuilds
7333 of stage 1.
7334 * Makefile.in: Regenerate.
7335 * configure.in: Comma-separate stage 1 language list for top
7336 level bootstrap.
7337 * configure: Regenerate.
7338
7339 * Makefile.tpl: Clean up experimental top level bootstrap support:
7340 note known problems; set CONFIG_SHELL; don't set BUILD_CC; relocate
7341 prev-gcc in configure- targets as well as all- targets.
7342 * Makefile.in: Regenerate.
7343
7344 2004-03-17 Paolo Bonzini <bonzini@gnu.org>
7345
7346 * configure.in: Remove symbolic link section.
7347 * configure: Regenerate.
7348 * Makefile.tpl (links): Remove.
7349 * Makefile.in: Regenerate.
7350
7351 2004-03-15 Paolo Bonzini <bonzini@gnu.org>
7352 Nathanael Nerode <neroden@gcc.gnu.org>
7353
7354 * configure.in (DEFAULT_YACC, DEFAULT_M4, DEFAULT_LEX):
7355 Set with AC_CHECK_PROGS.
7356 * configure.in: Fix comment typo from last patch.
7357 * configure: Regenerate.
7358
7359 2004-03-15 Nathanael Nerode <neroden@gcc.gnu.org>
7360
7361 * Makefile.tpl: Introduce experimental top level bootstrap support.
7362 * Makefile.in: Regenerate.
7363 * configure.in: Introduce support for top level bootstrap.
7364 * configure: Regenerate.
7365
7366 2004-03-12 Eric Botcazou <ebotcazou@gcc.gnu.org>
7367 Paolo Bonzini <bonzini@gnu.org>
7368
7369 PR bootstrap/14522
7370 * configure.in: Cope with shells that do not support unquoted ^
7371 * configure: Regenerate.
7372
7373 2004-03-11 Eric Botcazou <ebotcazou@gcc.gnu.org>
7374 Paolo Bonzini <bonzini@gnu.org>
7375
7376 PR bootstrap/14522
7377 * configure.in: Cope with shell that do not support nesting
7378 quotes inside quoted backquote substitutions.
7379 * configure: Regenerate.
7380
7381 2004-03-10 Andrew Pinski <pinskia@physics.uc.edu>
7382
7383 PR bootstrap/14522
7384 * configure.in: Fix escaping of $.
7385 * configure: Regenerate.
7386
7387 2004-03-11 Nathanael Nerode <neroden@gcc.gnu.org>
7388
7389 * configure: Regenerate.
7390
7391 2004-03-08 Paolo Bonzini <bonzini@gnu.org>
7392
7393 PR ada/14131
7394 Move language detection to the top level.
7395 * configure.in: Find default values for the tools as
7396 soon as possible. Disable ada if GNAT is not found.
7397 Emit error message about missing languages. Expand
7398 --enable-languages=all for the gcc subdirectory.
7399
7400 2004-03-01 Richard Sandiford <rsandifo@redhat.com>
7401
7402 * configure.in (mips64*-*-linux*): Override mips*-*-linux* case
7403 and disable libgcj.
7404 * configure: Regenerated.
7405
7406 2004-02-28 Nathanael Nerode <neroden@gcc.gnu.org>
7407
7408 PR bootstrap/7087
7409 * Makefile.tpl: Guard XFOO sed statements better.
7410 * Makefile.tpl: Add dependency for configure-target-libada.
7411 * Makefile.in: Regenerate (incidentally fixes broken
7412 commit when libada-branch was merged).
7413
7414 2004-02-28 Andrew Cagney <cagney@redhat.com>
7415
7416 * src-release (CVS_NAMES): Define.
7417 (do-tar, do-tar): Prune $(CVS_NAMES).
7418
7419 2004-02-23 Andrew Cagney <cagney@redhat.com>
7420
7421 * texinfo/texinfo.tex: Update from version 2003-02-03.16 to
7422 2004-02-19.09.
7423
7424 2004-02-19 Nathanael Nerode <neroden@gcc.gnu.org>
7425
7426 PR bootstrap/11932
7427 * mkinstalldirs, install-sh: Import from automake CVS HEAD.
7428
7429 2004-02-19 Andrew Cagney <cagney@redhat.com>
7430
7431 * config.guess: Update from version 2003-06-12 to 2004-02-16.
7432 * config.sub: Update from version 2003-06-13 to 2004-02-16.
7433
7434 2004-02-11 David Edelsohn <edelsohn@gnu.org>
7435
7436 * configure.in (powerpc-*-aix*): Add target-libada to noconfigdirs.
7437 (rs6000-*-aix*): Same.
7438 * configure: Regenerate.
7439
7440 2004-02-11 Kelley Cook <kcook@gcc.gnu.org>
7441
7442 * configure.in (host): Add in missing $noconfigdirs to defines.
7443 * configure: Regenerate.
7444
7445 2004-02-10 Arnaud Charlet <charlet@act-europe.fr>,
7446 Nathanael Nerode <neroden@gcc.gnu.org>
7447
7448 PR ada/6637, PR ada/5911
7449 Merge with libada-branch:
7450 * configure.in, Makefile.tpl, Makefile.def: Add target-libada,
7451 with appropriate dependencies. Add --enable-libada configure switch.
7452 * configure, Makefile.in: Regenerate.
7453
7454 2004-02-05 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
7455
7456 * configure.in: Don't pass --with-stabs on IRIX 5 either.
7457 * configure: Regenerate.
7458
7459 2004-02-02 Jeff Johnston <jjohnstn@redhat.com>
7460
7461 * COPYING.NEWLIB: Update Red Hat license to 2004.
7462
7463 2004-01-23 DJ Delorie <dj@redhat.com>
7464
7465 * Makefile.def (target_modules) [libiberty]: Don't stage.
7466 * Makefile.in: Rebuilt.
7467
7468 2004-01-23 Jeff Johnston <jjohnstn@redhat.com>
7469
7470 * COPYING.NEWLIB: Update to include copyrights for new
7471 iconv code.
7472
7473 2004-01-15 Andrew Cagney <cagney@redhat.com>
7474
7475 * src-release: Update copyright year.
7476 (do-proto-toplev): Configure using i686-pc-linux-gnu.
7477 (NEWLIB_SUPPORT_DIRS): Delete macro.
7478 (newlib.tar.bz2): Delete rule.
7479
7480 2004-01-14 Loren J. Rittle <ljrittle@acm.org>
7481
7482 * Makefile.def (target_modules) [libtermcap, libiberty, zlib]: Stage.
7483 * Makefile.tpl (configure-target-[+module+]): Support stage.
7484 * Makefile.in: Rebuilt.
7485
7486 2003-01-14 Maciej W. Rozycki <macro@ds2.pg.gda.pl>
7487
7488 * gettext.m4: Quote names of macros to be defined by AC_DEFUN
7489 throughout.
7490
7491 2004-01-04 Nathanael Nerode <neroden@gcc.gnu.org>
7492
7493 * configure.in: Use ./config.cache, not config.cache.
7494 * configure: Regenerate.
7495 * Makefile.tpl: Special-casing not needed for GCC any more.
7496 * Makefile.in: Regenerate.
7497
7498 * configure.in: Don't share a cache file for host dirs.
7499 * configure: Regenerate.
7500
7501 * config-ml.in: Don't mess with the cache file.
7502
7503 2004-01-03 Nathanael Nerode <neroden@gcc.gnu.org>
7504
7505 * Makefile.tpl: Make GCC use a separate config.cache.
7506 * Makefile.in: Regenerate.
7507
7508 PR bootstrap/11932, PR bootstrap/11933
7509 (I don't know if it will fix either of them, but it relates
7510 to them.)
7511 * configure.in: Don't use shared config.cache for target
7512 directories.
7513 * configure: Regenerate.
7514
7515 2003-12-31 Roger Sayle <roger@eyesopen.com>
7516
7517 * configure.in (ia64*-*-hpux*): Disable building java libraries.
7518 * configure: Regenerated.
7519
7520 2003-12-21 Bernardo Innocenti <bernie@develer.com>
7521
7522 * configure.in (*-*-uclinux): Exclude newlib, libgloss and rda.
7523 * configure: Regenerated.
7524
7525 2003-12-19 Nathanael Nerode <neroden@gcc.gnu.org>
7526
7527 Port change over from GCC:
7528 2003-11-20 Kelley Cook <kcook@gcc.gnu.org>
7529 * Makefile.tpl (BASE_FLAGS_TO_PASS): Pass along CONFIG_SHELL.
7530 (configure-build-[+module+], configure-[+module+]): Likewise.
7531 (configure-target-[+module+], configure-gcc, config.status): Likewise.
7532 * Makefile.in: Regenerate.
7533
7534 2003-12-08 Thomas Fitzsimmons <fitzsim@redhat.com>
7535
7536 * configure.in (raw_libstdcxx_flags): Remove the leading space.
7537 * configure: Regenerate.
7538
7539 2003-11-27 Jeff Johnston <jjohnstn@redhat.com>
7540
7541 * COPYING.NEWLIB: Add license info for long long routines added to
7542 stdlib.
7543
7544 2003-11-14 Arnaud Charlet <charlet@act-europe.fr>
7545
7546 * Makefile.tpl (EXTRA_GCC_FLAGS): Pass BOOT_ADAFLAGS.
7547 * Makefile.in: Regenerate.
7548
7549 2003-10-20 Phil Edwards <phil@codesourcery.com>
7550
7551 * configure.in (*-*-vxworks): Add target-libiberty to noconfdirs.
7552 * configure: Regenerate.
7553
7554 2003-10-13 Nathanael Nerode <neroden@gcc.gnu.org>
7555
7556 * Makefile.tpl: Make GCC_FLAGS_TO_PASS a superset of
7557 HOST_FLAGS_TO_PASS.
7558 * Makefile.in: Regenerate.
7559
7560 2003-10-05 Mohan Embar <gnustuff@thisiscool.com>
7561
7562 * configure.in: Allow explicit specification of CFLAGS_FOR_BUILD.
7563 * configure: Rebuilt
7564 * Makefile.tpl: Use CFLAGS_FOR_BUILD computed by configure
7565 * Makefile.in: Rebuilt
7566
7567 2003-10-03 H.J. Lu <hongjiu.lu@intel.com>
7568
7569 * ltconfig (sys_lib_search_path_spec): Fix a typo for HPUX.
7570
7571 2003-10-01 Phil Edwards <pme@gcc.gnu.org>
7572
7573 * config-ml.in: Use ac_configure_args directly instead of
7574 ml_arguments. Only set ml_norecursion if --no[-]recursion is
7575 actually seen.
7576
7577 2003-10-01 Eric Botcazou <ebotcazou@libertysurf.fr>
7578
7579 * config-ml.in: Propagate INSTALL variables.
7580
7581 2003-09-21 Daniel Jacobowitz <drow@mvista.com>
7582
7583 * configure.in: Pass a computed --program-transform-name
7584 to subconfigures.
7585 * configure: Regenerated.
7586
7587 2003-09-20 Nathanael Nerode <neroden@gcc.gnu.org>
7588
7589 * Makefile.tpl: Don't pass down obsolete ENQUIRE variable.
7590 * Makefile.in: Regenerate.
7591
7592 * Makefile.tpl: Don't pass (unused) DLLTOOL or WINDRES to gcc.
7593 * Makefile.in: Regenerate.
7594
7595 2003-09-17 Daniel Jacobowitz <drow@mvista.com>
7596
7597 * configure.in (TOPLEVEL_CONFIGURE_ARGUMENTS, baseargs): Fix
7598 quoting.
7599 * configure: Regenerated.
7600
7601 2003-09-12 Michael Chastain <mec@shout.net>
7602
7603 Fix PR gdb/857.
7604 * src-release (do-proto-topleve): Remove junk files
7605 intl/config.cache, intl/config.status,
7606 intl/config.h, intl/stamp-h.
7607
7608 2003-09-14 Andrew Cagney <cagney@redhat.com>
7609
7610 * src-release (dejagnu.tar): New target.
7611 (dejagnu.tar.bz2): Recursively call "gdb-taz" rule.
7612 (do-djunpack): Use $(PACKAGE) for the package name.
7613
7614 2003-09-04 DJ Delorie <dj@redhat.com>
7615
7616 * configure: Regenerate.
7617
7618 2003-09-04 Robert Millan <robertmh@gnu.org>
7619
7620 * configure.in: Match GNU/KFreeBSD with new kfreebsd*-gnu triplet.
7621
7622 2003-09-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
7623
7624 * configure.in: Ensure arguments to sed are properly spaced.
7625 * configure: Regenerate.
7626
7627 2003-08-28 Daniel Jacobowitz <drow@mvista.com>
7628
7629 Merge from gcc:
7630 2003-07-20 Phil Edwards <pme@gcc.gnu.org>
7631 * install-sh: Update to newer upstream versions (associated with
7632 aclocal 1.7).
7633 * missing: Likewise, plus $1Help2man -> $1 typo fix.
7634
7635 2003-08-27 Daniel Jacobowitz <drow@mvista.com>
7636
7637 * configure.in: Set RAW_CXX_FOR_TARGET if unset.
7638 * configure: Regenerated.
7639
7640 2003-08-23 Phil Edwards <pme@gcc.gnu.org>
7641
7642 * configure.in: Use newline instead of semicolon when assuming
7643 shell arguments in a for loop.
7644 * configure: Regenerated.
7645
7646 2003-08-20 Geoffrey Keating <geoffk@apple.com>
7647
7648 PR 8180
7649 * configure.in: When testing with_libs and with_headers, treat
7650 'no' as unset. Based on a patch by Dan Kegel <dank@kegel.com>.
7651 * configure: Regenerate.
7652
7653 * configure.in (TOPLEVEL_CONFIGURE_ARGUMENTS): Quote properly for
7654 make, shell, etc.
7655 (baseargs): Likewise.
7656 * configure: Regenerate.
7657
7658 2003-08-19 Geoffrey Keating <geoffk@apple.com>
7659
7660 * configure.in: Disable libgcj for darwin not on powerpc.
7661 * configure: Rebuild.
7662
7663 2003-08-15 Michael Chastain <mec@shout.net>
7664
7665 * src-release (do-proto-toplev): Remove junk files
7666 dejagnu/example/calc/config.status,
7667 dejagnu/example/calc/config.log.
7668
7669 2003-08-14 Alexandre Duret-Lutz <adl@gnu.org>
7670
7671 * config-ml.in, symlink-tree: Add license.
7672
7673 2003-08-01 Nathanael Nerode <neroden@gcc.gnu.org>
7674
7675 Merge from gcc:
7676
7677 2003-08-01 Matt Kraai <kraai@alumni.cmu.edu>
7678 * Makefile.tpl (check, check-c++): Express dependencies using
7679 dependencies rather than commands.
7680 * Makefile.in: Regenerate.
7681
7682 2003-07-31 Geoffrey Keating <geoffk@apple.com>
7683 * Makefile.tpl (libsubdir): Use gcc instead of gcc-lib.
7684 * Makefile.in: Update.
7685
7686 2003-08-01 Andrew Cagney <cagney@redhat.com>
7687
7688 * configure.in (noconfigdirs): Do not add GDB when m32r-*-*.
7689 * configure: Ditto.
7690
7691 2003-07-30 Andreas Tobler <a.tobler@schweiz.ch>
7692
7693 * configure.in: Enable libgcj for darwin.
7694 * configure: Rebuild.
7695
7696 2003-07-29 Nathanael Nerode <neroden@gcc.gnu.org>
7697
7698 * mkinstalldirs: Import autoconf 2.57 / automake 1.7 version.
7699
7700 2003-07-27 Nathanael Nerode <neroden@gcc.gnu.org>
7701
7702 * Makefile.tpl: Use 'mkinstalldirs' rather than 'mkdir' when
7703 creating target and build subdirs to build all parent dirs as needed.
7704 * Makefile.in: Rebuild.
7705 * configure.in: Don't build dirs explicitly here.
7706 * configure: Rebuild.
7707
7708 2003-07-22 Alexandre Oliva <aoliva@redhat.com>
7709
7710 * Makefile.tpl (all-make): Depend on intl.
7711 * Makefile.in: Rebuilt.
7712
7713 2003-07-16 Nathanael Nerode <neroden@gcc.gnu.org>
7714
7715 * config.if: Remove unused libc_interface determination.
7716
7717 2003-07-14 Nathanael Nerode <neroden@gcc.gnu.org>
7718
7719 * Makefile.in: Regenerate, correctly this time.
7720
7721 2003-07-13 Nathanael Nerode <neroden@gcc.gnu.org>
7722
7723 * Makefile.tpl: Set INSTALL and friends using autoconf. Remove
7724 unused INSTALL_PROGRAM_ARGS.
7725 * configure.in: Use AC_PROG_INSTALL.
7726 * Makefile.in: Regenerate.
7727 * configure: Regenerate.
7728
7729 2003-07-10 Alexandre Oliva <aoliva@redhat.com>
7730
7731 * configure: Rebuilt.
7732 2001-09-26 Alexandre Oliva <aoliva@redhat.com>
7733 * configure.in (noconfigdirs) [am33_2.0-*-linux*]: Don't build
7734 newlib nor libgloss.
7735 Wed May 9 10:07:19 2001 Alexandre Oliva <aoliva@redhat.com>
7736 * configure.in (am33_2.0-*-linux*): Added.
7737
7738 2003-07-09 Bob Wilson <bob.wilson@acm.org>
7739
7740 * configure.in: Add ${libgcj} to noconfigdirs for xtensa-*-* targets.
7741 * configure: Regenerate.
7742
7743 2003-07-06 H.J. Lu <hongjiu.lu@intel.com>
7744
7745 * config-ml.in: Replace PWD with PWD_COMMAND.
7746 * Makefile.tpl: Likewise.
7747 * Makefile.in: Regenerated.
7748
7749 2003-06-27 Nathanael Nerode <neroden@gcc.gnu.org>
7750
7751 * configure.in: Clean up config-lang.in handling. Delete
7752 useless assignment to "subdirs".
7753 * configure: Regenerate.
7754
7755 2003-06-26 Nathanael Nerode <neroden@gcc.gnu.org>
7756
7757 * configure.in: Rename 'target_libs' to 'target_libraries'.
7758 Remove useless reference to 'target_libs'.
7759 * configure: Regenerate.
7760
7761 2003-06-23 Keith Seitz <kseitz@sources.redhat.com>
7762
7763 * Makefile.tpl: Add maybe-configure-itcl to configure-gdb.
7764 * Makefile.in: Regenerate.
7765
7766 2003-06-23 Nathanael Nerode <neroden@gcc.gnu.org>
7767
7768 * Makefile.def: Introduce flags_to_pass.
7769 * Makefile.tpl: Generate BASE_FLAGS_TO_PASS using it.
7770 * Makefile.in: Regenerate.
7771
7772 2003-06-23 Hans-Peter Nilsson <hp@bitrange.com>
7773
7774 * configure.in (noconfigdirs) <cris-*-*>: Disable target-newlib
7775 and target-libgloss.
7776 <d30v-*-*, fr30-*-*, i960-*-*, m32r-*-*>: Disable gdb.
7777 <h8300*-*-*>: Disable libf2c and ${libgcj}.
7778 * configure: Regenerate.
7779
7780 2003-06-17 Benjamin Kosnik <bkoz@redhat.com>
7781
7782 * configure.in: Update testsuite_flags to new location.
7783 * configure. Regenerate.
7784
7785 2003-06-18 Nathanael Nerode <neroden@gcc.gnu.org>
7786
7787 * Makefile.tpl: Remove BUILD_CC stuff.
7788 * Makefile.in: Regenerate.
7789
7790 2003-06-14 H.J. Lu <hongjiu.lu@intel.com>
7791
7792 * config.guess: Update to 2003-06-12 version.
7793 * config.sub: Update to 2003-06-13 version.
7794
7795 2003-06-12 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
7796
7797 * MAINTAINERS: Add myself as MIPS co-maintainer.
7798
7799 2003-06-12 H.J. Lu <hongjiu.lu@intel.com>
7800
7801 * config.guess: Update to 2003-06-06 version.
7802 * config.sub: Update to 2003-06-06 version.
7803
7804 2003-06-11 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
7805
7806 * configure.in: Don't pass --with-stabs for mips*-sgi-irix6*o32.
7807 * configure. Regenerate.
7808
7809 2003-06-10 Nathanael Nerode <neroden@gcc.gnu.org>
7810
7811 * configure.in: Disable serial configure by default.
7812 * configure: Regenerate.
7813 * Makefile.tpl: Abolish .NOTPARALLEL.
7814 * Makefile.in: Regenerate.
7815
7816 * Makefile.tpl: Replace {build,host,target}_canonical by
7817 {build,host,target}.
7818 * Makefile.in: Regenerate.
7819
7820 * Makefile.tpl: Fix stupid pasto.
7821 * Makefile.in: Regenerate.
7822
7823 2003-06-09 Nathanael Nerode <neroden@gcc.gnu.org>
7824
7825 * Makefile.tpl: Remove bogus conditional.
7826 * Makefile.in: Regenerate.
7827
7828 2003-06-03 Nathanael Nerode <neroden@gcc.gnu.org>
7829
7830 * Makefile.tpl: Make 'recursive targets' using autogen rather
7831 than shell loop. Remove duplicate 'clean' targets and false
7832 comments.
7833 * Makefile.def: Add systematic dependencies to 'recursive' targets.
7834 Add systematic method of specifying missing targets in subdirs.
7835 Add copyright boilerplate.
7836 * Makefile.in: Regenerate.
7837 * configure.in: Add 'recursive targets' to maybe list.
7838 * configure: Regenerate.
7839
7840 * Makefile.tpl: Rename [+target+] to [+make_target+].
7841 * Makefile.def: Rename 'target' to 'make_target'.
7842
7843 2003-05-30 Nick Clifton <nickc@redhat.com>
7844
7845 * README-maintainer-mode: Update URL for locating blessed config
7846 tools.
7847
7848 2003-05-29 Robert Millan <rmh@debian.org>
7849
7850 * ltconfig: Import this patch and modify for use with current
7851 version of ltconfig:
7852
7853 2003-05-21 Bruno Haible <bruno@clisp.org>
7854
7855 * libtool.m4 (AC_LIBTOOL_SYS_DYNAMIC_LINKER): Add support for
7856 GNU/FreeBSD.
7857
7858 2003-05-28 DJ Delorie <dj@redhat.com>
7859
7860 * Makefile.tpl: Make maybe-check-gcc .PHONY.
7861 * Makefile.in: Regenerate.
7862
7863 2003-05-28 Jeff Johnston <jjohnstn@redhat.com>
7864
7865 * COPYING.NEWLIB: Add license info for newlib/libc/sys/linux/stdlib.
7866
7867 2003-05-21 DJ Delorie <dj@redhat.com>
7868
7869 * Makefile.tpl (configure-target-libiberty): Depend only on gcc, not
7870 newlib or libgloss.
7871 * Makefile.in: Regenerate.
7872
7873 2003-05-21 DJ Delorie <dj@redhat.com>
7874
7875 * Makefile.tpl: Add missing empty maybe-check-gcc target.
7876 * Makefile.in: Regenerate.
7877
7878 2003-05-20 Maciej W. Rozycki <macro@ds2.pg.gda.pl>
7879
7880 * configure.in: Use curly braces in the definition of tooldir.
7881 * configure: Regenerate.
7882
7883 2003-05-19 Nathanael Nerode <neroden@gcc.gnu.org>
7884
7885 * configure.in: Switch more things to use maybe dependencies.
7886 * Makefile.tpl: Switch more things to use maybe dependencies.
7887 Factor out common code from autogen IF statements.
7888 * configure: Regenerate.
7889 * Makefile.in: Regenerate.
7890
7891 2003-05-14 Kelley Cook <kelleycook@wideopenwest.com>
7892
7893 * configure.in: Accept i[3456789]86 for machine type.
7894 * configure: Regenerate.
7895
7896 2003-05-18 Nathanael Nerode <neroden@gcc.gnu.org>
7897
7898 * configure.in: Switch more things to use maybe dependencies.
7899 Rearrange a little. Use GCC_TOPLEV_SUBDIRS.
7900 * configure: Regenerate.
7901 * Makefile.tpl: Switch more things to use maybe dependencies.
7902 * Makefile.in: Regenerate.
7903
7904 2003-05-16 Andreas Schwab <schwab@suse.de>
7905
7906 * Makefile.tpl (install-opcodes): Define.
7907 * Makefile.in: Rebuild.
7908
7909 2003-05-13 Andreas Jaeger <aj@suse.de>
7910
7911 * config.guess: Update to 2003-05-09 version.
7912 * config.sub: Update to 2003-05-09 version.
7913
7914 2003-05-13 Michael Eager <eager@mvista.com>
7915
7916 * configure.in: Correct sed script so that options in quotes are not
7917 deleted.
7918 * configure: Rebuild.
7919
7920 2003-05-12 Corinna Vinschen <corinna@vinschen.de>
7921
7922 * configure.in (FLAGS_FOR_TARGET): Remove $$s/newlib/libc/sys/cygwin
7923 and $$s/newlib/libc/sys/cygwin32 include paths.
7924 * configure: Ditto.
7925
7926 2003-05-05 H.J. Lu <hjl@gnu.org>
7927
7928 * config-ml.in: Restored from gcc repository.
7929
7930 2003-05-02 Chris Demetriou <cgd@broadcom.com>
7931
7932 * Makefile.tpl: Require "makeinfo" from texinfo 4.2 or later.
7933 * Makefile.in: Regenerate.
7934
7935 2003-04-27 Daniel Jacobowitz <drow@mvista.com>
7936
7937 * src-release (DEVO_SUPPORT): Add src-release, Makefile.tpl,
7938 and Makefile.def.
7939
7940 2003-04-27 Daniel Jacobowitz <drow@mvista.com>
7941
7942 * Makefile.tpl: Clean $(BUILD_SUBDIR).
7943 * Makefile.in: Regenerated.
7944
7945 2003-04-18 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
7946
7947 * Makefile.tpl (MAKEINFOFLAGS): Default to --split-size=5000000.
7948 * Makefile.in: Regenerate.
7949
7950 2003-04-18 Jakub Jelinek <jakub@redhat.com>
7951
7952 * configure.in (powerpc64*-*-linux*): Remove.
7953 * configure: Rebuilt.
7954
7955 2003-04-17 Phil Edwards <pme@gcc.gnu.org>
7956
7957 * Makefile.tpl (GCC_STRAP_TARGETS): New variable containing all the
7958 previous bootstrap targets, plus bubblestrap, quickstrap, cleanstrap,
7959 and restrap.
7960 * Makefile.in: Regenerate.
7961
7962 2003-04-16 Richard Earnshaw <rearnsha@arm.com>
7963
7964 * configure.in (arm-*-netbsdelf*): Enable building java libraries.
7965 * configure: Regenerated.
7966
7967 2003-04-11 Alexandre Oliva <aoliva@redhat.com>
7968
7969 * libtool.m4 (lt_cv_deplibs_check_method): Use pass_all on mips*.
7970 * */configure: Rebuilt.
7971
7972 2003-03-14 Nathanael Nerode <neroden@gcc.gnu.org>
7973
7974 * Makefile.tpl: Move .NOEXPORT, MAKEOVERRIDES back down.
7975 * Makefile.in: Regenerate.
7976
7977 2003-03-14 Michael Chastain <mec@shout.net>
7978
7979 * Makefile.in: Regenerate with correct Makefile.def.
7980
7981 2003-03-12 Nathanael Nerode <neroden@gcc.gnu.org>
7982
7983 * Makefile.tpl: Move .NOEXPORT, MAKEOVERRIDES up. Delete unused
7984 Make macro.
7985 * Makefile.in: Regenerate.
7986 * configure.in: Clean up gxx_include_dir logic.
7987 * configure: Regenerate.
7988
7989 2003-03-09 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
7990
7991 * configure.in (gxx_include_dir): Fix typo.
7992 * configure: Regenerated.
7993
7994 2003-03-06 Andrew Cagney <cagney@redhat.com>
7995
7996 * texinfo/texinfo.tex: Import version 2003-02-03.16.
7997
7998 2003-03-04 Daniel Jacobowitz <drow@mvista.com>
7999
8000 * configure.in: Include $(build_tooldir)/sys-include in
8001 FLAGS_FOR_TARGET.
8002 * configure: Regenerated.
8003
8004 2003-03-04 Nathanael Nerode <neroden@gcc.gnu.org>
8005
8006 * Makefile.tpl: Reindent.
8007 * Makefile.in: Regenerate.
8008 * configure.in: Reindent. Don't set unused variables.
8009 * configure: Regenerate.
8010
8011 * Makefile.tpl: Always pass down RANLIB.
8012 * Makefile.in: Regenerate.
8013
8014 * Makefile.tpl: Don't set unused enable_shared, enable_threads macros.
8015 * Makefile.in: Regenerate.
8016 * configure.in: Remove unused logic relating to --enable-shared
8017 and --enable-threads. Remove bogus comments. Remove redundant
8018 noconfigdirs.
8019 * configure: Regenerate.
8020
8021 * configure.in: Replace ${libstdcxx_version} by its value.
8022 Remove reference to mh-dgux.
8023 * configure: Regenerate.
8024
8025 2003-02-28 Nathanael Nerode <neroden@gcc.gnu.org>
8026
8027 * Makefile.tpl: Rearrange.
8028 * Makefile.in: Regenerate.
8029
8030 2003-02-25 Nick Clifton <nickc@redhat.com>
8031
8032 * configure: Remove site-file supprot - it is obsolete.
8033
8034 2003-02-24 Uwe Stieber <uwe@wwws.de>
8035
8036 * configure.in: Add support for kaOS as cross build target system.
8037 * configure: Regenerated.
8038
8039 2003-02-20 Sean McNeil <sean@blue.mcneil.com>
8040
8041 * Makefile.tpl: Add definition of CPPFLAGS to pass into
8042 configure-target-* as some target builds may require additional
8043 flags for preprocessor tests.
8044 * Makefile.in: Regenerated.
8045
8046 2003-02-19 Alexandre Oliva <aoliva@redhat.com>
8047
8048 * libtool.m4 (LD): Append -melf* option to LD on IRIX with GNU ld.
8049 * ltconfig: Handle it.
8050 * ltcf-cxx.sh: Use with_gnu_ld passed as a shell variable instead of
8051 auto-detecting it.
8052
8053 2003-02-19 Alexandre Oliva <aoliva@redhat.com>
8054
8055 * ltcf-cxx.sh: Replace $linker_flags with $compiler_flags wherever
8056 it is used as argument to $CC.
8057 * ltcf-gcj.sh: Likewise.
8058
8059 2003-02-19 Alexandre Oliva <aoliva@redhat.com>
8060
8061 * configure.in: Introduce --enable-maintainer-mode.
8062 * configure: Rebuilt.
8063 * Makefile.tpl (Makefile.in, configure): Enable dependencies only
8064 for maintainer mode.
8065 * Makefile.in: Rebuilt.
8066
8067 2003-02-19 Andrew Cagney <ac131313@redhat.com>
8068
8069 * configure: Regenerate using autoconf 2.13.
8070
8071 2003-02-19 Alan Modra <amodra@bigpond.net.au>
8072
8073 * config.guess: Import latest version.
8074 * config.sub: Import latest version.
8075
8076 2003-02-18 Jason Merrill <jason@redhat.com>
8077
8078 * Makefile.tpl (check-c++): Allow parallelism.
8079
8080 2003-02-17 Andrew Cagney <ac131313@redhat.com>
8081
8082 * configure: Regenerate using autoconf 000227.
8083
8084 2003-02-15 Geoffrey Keating <geoffk@apple.com>
8085
8086 * configure.in (*-*-darwin*): Rename from powerpc*-*-darwin*,
8087 don't configure target-libobjc.
8088 * configure: Regenerate.
8089
8090 2003-02-14 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
8091
8092 * Makefile.tpl (RANLIB): Define.
8093 * Makefile.in: Regenerate.
8094
8095 2003-02-06 Keith R Seitz <keiths@redhat.com>
8096
8097 * Makefile.def: Remove "snavigator", "grep", and "db" modules.
8098 * Makefile.tpl: Remove "all-snavigator" and "all-grep".
8099 * Makefile.in: Regenerated.
8100 * configure.in: Remove all traces of snavigator, db, and grep.
8101 * configure: Regenerated.
8102
8103 2003-01-31 Frank Ch. Eigler <fche@redhat.com>
8104
8105 * Makefile.tpl (all-sid): Add libiberty/bfd/opcodes dependencies.
8106 * Makefile.in: Regenerated.
8107
8108 2003-01-30 Alexandre Oliva <aoliva@redhat.com>
8109
8110 * config.if: Copy from GCC.
8111
8112 2003-01-27 Phil Edwards <pme@gcc.gnu.org>
8113
8114 * configure.in: Revert 24Jan change.
8115 * configure: Regenerate.
8116
8117 2003-01-23 Nathanael Nerode <neroden@gcc.gnu.org>
8118
8119 * configure.in: Revert previous change.
8120 * configure: Regenerate.
8121
8122 2003-01-23 Nathanael Nerode <neroden@gcc.gnu.org>
8123
8124 * configure.in: Make rda native-only.
8125 * configure: Regenerate.
8126
8127 2003-01-19 Nathanael Nerode <neroden@gcc.gnu.org>
8128
8129 * configure.in: Add missing \.
8130 * configure: Rebuilt.
8131
8132 2003-01-17 Jakub Jelinek <jakub@redhat.com>
8133
8134 * configure.in (baseargs): Avoid using \| in sed regular
8135 expressions.
8136 * configure: Rebuilt.
8137
8138 2003-01-16 Jakub Jelinek <jakub@redhat.com>
8139
8140 * configure.in (baseargs): Remove all supported forms of
8141 --cache-file, --srcdir, --host, --build and --target options
8142 from argument lists.
8143 * configure: Rebuilt.
8144
8145 2003-01-15 Alexandre Oliva <aoliva@redhat.com>
8146
8147 * configure.in (noconfigdirs): Don't skip gas on IRIX 6.
8148 * configure: Rebuilt.
8149
8150 2003-01-09 Nathanael Nerode <neroden@gcc.gnu.org>
8151
8152 * configure.in: Substitute TOPLEVEL_CONFIGURE_ARGUMENTS.
8153 * Makefile.tpl: Pass TOPLEVEL_CONFIGURE_ARGUMENTS to gcc.
8154 * Makefile.in: Regenerate.
8155 * configure: Regenerate.
8156
8157 2003-01-09 Christian Cornelssen <ccorn@cs.tu-berlin.de>
8158
8159 * Makefile.tpl (BASE_FLAGS_TO_PASS): Also pass DESTDIR.
8160 (install-info, dir.info): Prepend $(DESTDIR) to $(infodir).
8161 * Makefile.in: Regenerate.
8162
8163 2003-01-09 Alexandre Oliva <aoliva@redhat.com>
8164
8165 * configure.in: Remove Makefile in build, host and target modules
8166 unless configure was run with --no-recursion.
8167 * configure: Rebuilt.
8168
8169 2003-01-08 Chris Demetriou <cgd@broadcom.com>
8170
8171 * config.guess: Update to 2003-01-03 version.
8172 * config.sub: Update to 2003-01-03 version.
8173
8174 2003-01-07 Christopher Faylor <cgf@redhat.com>
8175
8176 * configure: Regenerate with proper autoconf 2.13.
8177
8178 2003-01-07 Christopher Faylor <cgf@redhat.com>
8179
8180 * configure.in: Add AC_PREREQ for consistency.
8181 * configure: Regenerate.
8182
8183 2003-01-06 Andrew Cagney <ac131313@redhat.com>
8184
8185 * configure.in (GDB_TK): Add tcl directories conditional on
8186 gdb/gdbtk directory being present.
8187 * configure: Regenerate.
8188
8189 2003-01-04 John David Anglin <dave.anglin@nrc.ca>
8190
8191 * configure.in (LD): Improve test for gcc. Try to set LD to the ld used
8192 by gcc if LD is not defined and we are not doing a Canadian Cross.
8193 * configure: Rebuilt.
8194
8195 2003-01-01 Daniel Jacobowitz <drow@mvista.com>
8196
8197 * src-release (ETC_SUPPORT): Add fdl.texi and texi2pod.pl.
8198
8199 2002-12-31 Tom Tromey <tromey@redhat.com>
8200
8201 * Makefile.in: Rebuilt.
8202 * Makefile.def (target_modules) [libffi]: Allow installation.
8203
8204 2002-12-31 Andreas Schwab <schwab@suse.de>
8205
8206 * configure.in: Fix use of $program_transform_name.
8207 * configure: Regenerated.
8208
8209 2002-12-30 Daniel Jacobowitz <drow@mvista.com>
8210
8211 * configure.in (baseargs): Don't remove first configure argument.
8212 * configure: Regenerated.
8213
8214 2002-12-29 Alexandre Oliva <aoliva@redhat.com>
8215
8216 * Makefile.tpl (local-distclean): Don't remove...
8217 (multilib.ts): ... this. Moved into...
8218 (multilib.out): ... this. Don't use sub-make.
8219 ($(BUILD_SUBDIR)/[+module+]/Makefile, [+module+]/Makefile,
8220 $(TARGET_SUBDIR)/[+module+]/Makefile, gcc/Makefile): Moved into...
8221 (configure-build-[+module+], configure-[+module+],
8222 configure-target-[+module+], configure-gcc): ... these. Test
8223 for Makefile existence. Drop config.status from dependencies.
8224 * Makefile.in: Rebuilt.
8225 * configure.in: Move gcc-version-trigger to the end of
8226 ac_configure_args. Add comments to maybedep.tmp and
8227 serdep.tmp. Introduce --disable-serial-configure. Remove
8228 nonopt from baseargs, matching and removing corresponding
8229 whitespace while at it.
8230 * configure: Rebuilt.
8231
8232 2002-12-28 Alexandre Oliva <aoliva@redhat.com>
8233
8234 * configure.in (host_configargs): Replace reference to
8235 no-longer-defined buildopts with --build=${build_alias}.
8236 * configure: Rebuilt.
8237
8238 2002-12-28 Alexandre Oliva <aoliva@redhat.com>
8239
8240 * Makefile.tpl ($(NOTPARALLEL)): Move to the end. Bring uses of
8241 program_transform_name to standard idiom.
8242 (AUTOGEN, AUTOCONF): Define.
8243 (Makefile.in): Use $(AUTOGEN).
8244 (Makefile): Depend on config.status, and use autoconf-style rule to
8245 build it. Move original commands to...
8246 (config.status): ... this new target.
8247 (configure): Add $(srcdir). Depend on config/acx.m4. Use
8248 $(AUTOCONF).
8249 * Makefile.in: Rebuilt.
8250
8251 2002-12-28 Nathanael Nerode <neroden@gcc.gnu.org>
8252
8253 * Makefile.tpl: Fix dramatic bustage due to change in
8254 program_transform_name.
8255 * Makefile.in: Regenerate.
8256
8257 * configure.in: Remove unnecessary PATH setting.
8258 * configure: Regnerate.
8259
8260 * configure.in: Don't default to unprefixed tools unless
8261 the native tools will work.
8262 * configure: Regenerate.
8263
8264 * configure.in: Convert to autoconf script. Blow away lots
8265 of now-redundant Makefile fragments.
8266 * configure: Generate using Autoconf.
8267 * Makefile.tpl: Rewrite to reflect autoconfiscation.
8268 * Makefile.in: Regenerate.
8269
8270 2002-12-27 Nathanael Nerode <neroden@gcc.gnu.org>
8271
8272 * configure: Remove unneeded 'export's. Make CC_FOR_TARGET,
8273 CXX_FOR_TARGET, GCJ_FOR_TARGET substituted in configure.in only.
8274
8275 * ChangeLog: Move a couple of entries from here to winsup/cygwin,
8276 where they belong.
8277
8278 2002-12-24 Andreas Schwab <schwab@suse.de>
8279
8280 * Makefile.tpl (multilib.out): Fix missing space.
8281 * Makefile.in: Regenerate.
8282
8283 2002-12-23 Nathanael Nerode <neroden@gcc.gnu.org>
8284
8285 * Makefile.tpl: Use shared multilib.out. Use move-if-change for it.
8286 Convert (cd foo; make) to (cd foo && make). Clean up multilib.out.
8287 * Makefile.in: Regenerate.
8288 * configure.in: Remove unnecessary leftovers.
8289
8290 2002-12-21 Geoffrey Keating <geoffk@apple.com>
8291
8292 * configure.in (extra_ranlibflags_for_target): New variable.
8293 (*-*-darwin): Add -c to ranlib commands.
8294 * configure (tooldir): Handle extra_ranlibflags_for_target.
8295
8296 2002-12-20 Jeff Johnston <jjohnstn@redhat.com>
8297
8298 * COPYING.NEWLIB: Updated.
8299 * COPYING.LIBGLOSS: Ditto.
8300
8301 2002-12-19 Nathanael Nerode <neroden@gcc.gnu.org>
8302
8303 * Makefile.tpl: Revert HJL's change.
8304 * Makefile.in: Regenerated.
8305 * configure.in: Put build_prefix before $(BUILD_SUBDIR) here, and
8306 always.
8307
8308 2002-12-19 Andreas Schwab <schwab@suse.de>
8309
8310 * Makefile.tpl, configure.in: Substitute libstdcxx_incdir.
8311 * Makefile.in: Regenerate.
8312
8313 2002-12-18 H.J. Lu <hjl@gnu.org>
8314
8315 * Makefile.tpl: Add @build_prefix@ before $(BUILD_SUBDIR).
8316 * Makefile.in: Regenerated.
8317
8318 * configure.in (build_prefix): New. Substitute.
8319
8320 2002-12-18 Nathanael Nerode <neroden@gcc.gnu.org>
8321
8322 * Makefile.tpl: Don't let real targets depend on phony targets.
8323 * Makefile.in: Regenerate.
8324
8325 * Makefile.tpl (do-info): Depend on maybe-all-texinfo, not all-texinfo.
8326 * Makefile.in: Regenerate.
8327
8328 2002-12-16 Jason Merrill <jason@redhat.com>
8329
8330 * Makefile.tpl (all-gcc): Use 'make quickstrap' if there was a
8331 previous 'make bootstrap'.
8332 * Makefile.in: Regenerate.
8333
8334 2002-12-17 Hans-Peter Nilsson <hp@bitrange.com>
8335
8336 * configure.in (noconfigdirs) [mmix-*-*]: Disable libgloss and gdb.
8337
8338 2002-12-13 Jason Merrill <jason@redhat.com>
8339
8340 * Makefile.tpl (check-gcc-c++): Renamed from check-c++. Don't run
8341 library tests.
8342 (check-c++): Just depend on it and check-target-libstdc++-v3.
8343 * Makefile.in: Regenerate.
8344
8345 2002-12-13 Nathanael Nerode <neroden@gcc.gnu.org>
8346
8347 * configure.in, Makefile.tpl, Makefile.def: Remove tclX.
8348 * Makefile.in: Regenerate.
8349
8350 2002-12-12 Jeff Johnston <jjohnstn@redhat.com>
8351
8352 * COPYING.NEWLIB: Update list of alternate Regent of California
8353 licenses and discuss official revoking of advertising clause.
8354 * COPYING.LIBGLOSS: Ditto.
8355
8356 2002-12-12 Alexandre Oliva <aoliva@redhat.com>
8357
8358 * Makefile.tpl (configure-target-rda): Depend on $(ALL_GCC_C).
8359 * Makefile.in: Rebuilt.
8360
8361 2002-12-10 Nathanael Nerode <neroden@gcc.gnu.org>
8362
8363 * configure: Fix bug put in by gremlins.
8364
8365 * Makefile.tpl: Substitute more autoconfily.
8366 * configure: Substitute more autoconfily.
8367 * Makefile.in: Regenerate.
8368
8369 2002-12-08 Andrew Cagney <ac131313@redhat.com>
8370
8371 * Makefile.tpl (all-sim): Depend on maybe-configure-gdb.
8372 * Makefile.in (all-sim): Ditto.
8373
8374 2002-12-06 DJ Delorie <dj@redhat.com>
8375
8376 * Makefile.tpl: Change configure dependencies to not have real
8377 targets depend on phony targets.
8378
8379 2002-12-05 Nathanael Nerode <neroden@gcc.gnu.org>
8380
8381 * configure.in: Revert unintentional change.
8382
8383 * src-release: Configure host subdirs.
8384
8385 * Makefile.tpl: Change dependency for */multilib.out so that
8386 it works when gcc isn't in the tree.
8387
8388 * configure.in: Substitute more.
8389 * configure: Run subconfigures from the Makefile.
8390 * Makefile.tpl: Run subconfigures from the Makefile; add a few
8391 convenience targets. Make sure gcc isn't rebuilt after bootstrap.
8392
8393 2002-12-03 Nathanael Nerode <neroden@gcc.gnu.org>
8394
8395 * Makefile.tpl: Add targets for configuring host subdirs in Makefile,
8396 and corresponding dependencies.
8397 * Makefile.in: Regenerate.
8398
8399 * configure.in (host_tools): Order binutils, gas and ld for
8400 convenience in running the testsuites.
8401
8402 * Makefile.tpl: Introduce rules to serialize subconfigure runs.
8403 * Makefile.in: Regenerate.
8404 * configure.in: Introduce rules to serialize subconfigure runs.
8405
8406 * configure.in: Introduce BASE_CC_FOR_TARGET.
8407 * Makefile.tpl: Reorganize and comment. Introduce HOST_CONFIGARGS.
8408 Realize configure-build-* targets. Realize configure-target-* targets.
8409 * Makefile.in: Regenerate.
8410
8411 2002-12-02 Nathanael Nerode <neroden@gcc.gnu.org>
8412
8413 * configure: Move gcc_version_trigger stuff from here...
8414 * configure.in: ...to here.
8415
8416 * configure.in: Separate subconfigure options added by this file from
8417 options given by the user. Add machinery to put args for host
8418 subconfigures into the Makefile.
8419
8420 * Makefile.tpl: Remove 'vault' targets.
8421 * Makefile.tpl: Reorder and comment dependencies.
8422 * Makefile.in: Regenerate.
8423
8424 2002-11-28 Geoffrey Keating <geoffk@apple.com>
8425
8426 * configure.in: Move host-specific darwin noconfigdirs into
8427 the host-specific section.
8428
8429 2002-12-02 Nathanael Nerode <neroden@gcc.gnu.org>
8430
8431 * Makefile.tpl: Restore bkorb's style patch, accidentally lost
8432 during replay.
8433 * Makefile.in: Regenerate.
8434
8435 (finishing slow-motion replay)
8436 * configure: Remove skip-this-dir support.
8437 * Makefile.tpl: Remove skip-this-dir support.
8438
8439 * Makefile.tpl: Remove leftover support for non-autoconfiscated
8440 subdirectories.
8441 * Makefile.in: Regenerate.
8442
8443 * Makefile.tpl: Strip out useless setting of 'dir'.
8444 * Makefile.in: Regenerate.
8445
8446 2002-12-02 Nathanael Nerode <neroden@gcc.gnu.org>
8447
8448 (finishing slow-motion replay)
8449 * configure.in: Fix deeply stupid bug.
8450
8451 * configure.in: Introduce RAW_CXX_FOR_TARGET and simplify embedded
8452 shell code in CXX_FOR_TARGET
8453 * Makefile.def: Introduce raw_cxx.
8454 * Makefile.tpl: Use raw_cxx to select between CXX_FOR_TARGET and
8455 RAW_CXX_FOR_TARGET.
8456 * Makefile.in: Regenerate.
8457
8458 2002-12-02 Nathanael Nerode <neroden@gcc.gnu.org>
8459
8460 (finishing slow-motion replay)
8461 * Makefile.tpl: Remove unnecessary ifs.
8462 * Makefile.in: Regenerate.
8463
8464 * Makefile.tpl: Implement soft dependency machinery. Maybe-ize
8465 dependencies. Maybe-ize build-libiberty. Create dummy install
8466 targets for 'no_install' modules.
8467 * configure: Move GDB_TK substitution to configure.in. Move
8468 build_modules stuff to configure.in.
8469 * configure.in: Implement soft dependency machinery. Maybe-ize
8470 GDB_TK, rearrange slightly. Move build_modules stuff from configure.
8471 * Makefile.in: Regenerate.
8472
8473 2002-12-01 Nathanael Nerode <neroden@gcc.gnu.org>
8474
8475 (continuing slow-motion replay)
8476 * Makefile.tpl: Make all-target, install-target behave similarly
8477 to all, install (only hitting configured targets). Eliminate
8478 unused macro defintions.
8479
8480 * Makefile.tpl: Add all-gcc: all-build-libiberty dependency when
8481 build != host.
8482
8483 * Makefile.tpl: Add all-gcc: all-libiberty dependency.
8484
8485 * ltcf-c.sh, ltcf-gcj.sh, Makefile.tpl: Correct BUILD/HOST confusion.
8486
8487 * configure.in: Produce lists of subdir targets we're actually
8488 configuring. Remove references to "dosrel".
8489 * Makefile.tpl: Let configure set which subdir targets are hit.
8490 Remove install-cross; clean up install; remove ALL. Remove
8491 references to "dosrel". Remove "EXTRA_TARGET_HOST" hackery.
8492 Autogenerate host module targets. Remove empty dependency lines
8493 and redundant dependency; rearrange slightly.
8494 * Makefile.def: Add host-side libtermcap, utils.
8495
8496 * Makefile.in: Regenerate.
8497
8498 2002-12-01 Nathanael Nerode <neroden@gcc.gnu.org>
8499
8500 (Continuing slow-motion replay)
8501 * Makefile.def: Add list of recursive targets to autogenerate.
8502 Add build_modules.
8503 * Makefile.tpl: Autogenerate do-* targets. Autogenerate *-target-*
8504 targets. Autogenerate *-build-* targets.
8505 * Makefile.in: Regenerate.
8506
8507 2002-11-30 Nathanael Nerode <neroden@gcc.gnu.org>
8508
8509 (Continuing slow-motion replay)
8510 * configure: More autoconf-style substitutions.
8511 * Makefile.tpl: More autoconf-style substitutions.
8512 * Makefile.in: Regenerate.
8513
8514 2002-11-30 Nathanael Nerode <neroden@gcc.gnu.org>
8515
8516 (Continuing slow-motion replay)
8517 * configure: Substitute more variables in a more autoconf-friendly
8518 way. Simplify slightly.
8519 * Makefile.tpl: Make more variables substitutable in an
8520 autoconf-friendly way.
8521 * Makefile.in: Regenerate.
8522
8523 2002-11-29 Nathanael Nerode <neroden@gcc.gnu.org>
8524
8525 (Continuing slow-motion replay)
8526 * configure.in (v810*): Remove special setting of tools.
8527
8528 * configure: Add support for extra required flags for ar or nm.
8529 * configure.in (aix4.3+): Use above support for target-specific
8530 issues, rather than using config/mt-aix43.
8531
8532 2002-11-29 Nathanael Nerode <neroden@gcc.gnu.org>
8533
8534 (Starting slow-motion replay merge from gcc 3.4 b-i-b branch)
8535 * configure: Remove 'removing', which doesn't work. Replace $subdir
8536 with . everywhere. Replace $subdirs with ''. Replace $makesrcdir
8537 with $srcdir. Reformat indentation. Substitute some variables
8538 formerly hard-coded in the Makefile for build=host.
8539 * Makefile.tpl: Autogenerate more; make more autoconf-friendly.
8540 * Makefile.def: Autogenerate more.
8541 * Makefile.in: Regenerate.
8542
8543 2002-11-13 Bruce Korb <bkorb@gnu.org>
8544
8545 * Makefile.tpl: syntactic cleanup
8546
8547 2002-11-04 Kevin Buettner <kevinb@redhat.com>
8548
8549 * Makefile.def (host_modules): Add rda.
8550 * Makefile.in: Regenerate.
8551 * configure.in (target_tool): Add target-rda to list.
8552
8553 2002-10-25 Phil Edwards <pme@gcc.gnu.org>
8554
8555 * Makefile.tpl (bootstrap): Add bubblestrap, quickstrap, cleanstrap,
8556 and restrap targets to this rule.
8557 * Makefile.in: Regenerate.
8558
8559 2002-10-24 Hans-Peter Nilsson <hp@bitrange.com>
8560
8561 * configure.in (i[3456]86-*-linux*): Add check to disable
8562 ${libgcj} for glibc1.
8563
8564 2002-10-07 Svein E. Seldal <Svein.Seldal@solidas.com>
8565
8566 * configure.in: Add tic4x target.
8567
8568 2002-10-03 Nathanael Nerode <neroden@gcc.gnu.org>
8569
8570 * Makefile.tpl: Make SET_LIB_PATH substitution more autoconfy.
8571 * Makefile.tpl: Make RPATH_ENVVAR substitution more autoconfy.
8572 * configure.in: Make SET_LIB_PATH substitution more autoconfy.
8573 * configure.in: Make RPATH_ENVVAR substitution more autoconfy.
8574 * Makefile.in: Regenerate.
8575
8576 2002-10-02 Nathanael Nerode <neroden@gcc.gnu.org>
8577
8578 * Makefile.tpl: Eliminate reference to all-gui, all-libproc.
8579 * Makefile.in: Regenerate.
8580
8581 * Makefile.def: Remove order dependency comments.
8582 * Makefile.tpl: Add explicit install-install dependencies.
8583 * Makefile.in: Regenerate.
8584
8585 * Makefile.tpl: Remove material now in src-release. (Finally!)
8586 * Makefile.in: Regenerate.
8587
8588 * configure: Restore my original patch by syncing with gcc version.
8589
8590 * Bring following over from gcc:
8591
8592 2002-09-30 Ulrich Weigand <uweigand@de.ibm.com>
8593
8594 * configure.in (s390*-*-linux*): Enable libgcj.
8595
8596 2002-10-02 Nathanael Nerode <neroden@gcc.gnu.org>
8597
8598 * Makefile.in: Regenerate. This really ought to fix things. :sigh:
8599
8600 2002-10-02 Alan Modra <amodra@bigpond.net.au>
8601
8602 * configure: Move stray lines back to where they belong.
8603
8604 2002-10-01 Nathanael Nerode <neroden@gcc.gnu.org>
8605
8606 * Makefile.tpl: Insert configure-target target, for src-release.
8607
8608 * configure: Finish reverting change which Andrew Cagney started
8609 reverting. Should fix bustage.
8610
8611 * src-release (BINUTILS_SUPPORT_DIRS): Add cpu directory.
8612 * src-release: New file. Contains material for making net
8613 releases for gdb, binutils, et al., formerly in Makefile.in.
8614
8615 2002-09-30 Nick Clifton <nickc@redhat.com>
8616
8617 * cpu: New top level directory. Intended to hold input files for
8618 CGEN which have FSF copyright assignment.
8619 * Makefile.in (BINUTILS_SUPPORT_DIRS): Add cpu directory.
8620
8621 2002-09-29 Andrew Cagney <ac131313@redhat.com>
8622
8623 Revert below (note that src does not contain Makefile.tpl):
8624 * Makefile.tpl: Make subsituted variables more autoconfy.
8625 * Makefile.in: Regenerate.
8626
8627 2002-09-29 Nathanael Nerode <neroden@gcc.gnu.org>
8628
8629 * configure: Revert accidentally applied changes.
8630
8631 * Makefile.tpl: Make more autoconf-friendly.
8632 * Makefile.in: Regenerate.
8633 * configure: Make substitution more autoconf-like.
8634
8635 2002-09-28 Richard Earnshaw <rearnsha@arm.com>
8636
8637 * configure.in (arm-*-coff, strongarm-*-coff, xscale-*-coff): Use a
8638 single entry to handle all these.
8639 (arm-*-elf, strongarm-*-elf, xscale-*-elf): Likewise. Also enable
8640 libjava on arm-*-elf.
8641
8642 2002-09-27 Geoffrey Keating <geoffk@apple.com>
8643
8644 * configure.in (powerpc-*-darwin*): Don't configure BFD, TK, or the
8645 things that depend on them.
8646
8647 2002-09-25 Nathanael Nerode <neroden@gcc.gnu.org>
8648
8649 * Makefile.tpl: Make subsituted variables more autoconfy.
8650 * Makefile.in: Regenerate.
8651 * configure: Make seds more autoconfy.
8652
8653 2002-09-25 Nathanael Nerode <neroden@gcc.gnu.org>
8654
8655 * Makefile.tpl: Rewrite substituted lines to look autoconfy.
8656 * Makefile.in: Regenerate.
8657 * configure.in: Rewrite sed statements to look autoconfy.
8658
8659 * Makefile.tpl: Autogenerate *-target-* lists, dependencies of
8660 all-target-foo on configure-target-foo.
8661 * Makefile.def: Ditto.
8662 * Makefile.in: Rebuild.
8663
8664 2002-09-22 Nathanael Nerode <neroden@gcc.gnu.org>
8665
8666 * Makefile.def: New file.
8667 * Makefile.tpl: New file.
8668 * Makefile.in: Generate from Makefile.tpl with 'autogen Makefile.def'.
8669
8670 * configure.in: Minor rearrangement. Simplify tests.
8671
8672 2002-09-23 Jason Thorpe <thorpej@wasabisystems.com>
8673
8674 * configure.in (with_headers): Skip copy if value is "yes".
8675 (with_libs): Likewise.
8676
8677 2002-09-20 Nathanael Nerode <neroden@gcc.gnu.org>
8678
8679 * configure.in (*-*-netbsd*): Use noconfigdirs, not skipdirs.
8680 * configure.in (sh*-*-pe*): Ditto.
8681 * configure.in (mips*-*-pe*): Ditto.
8682 * configure.in (*arm-wince-pe): Ditto.
8683
8684 * configure.in: Rearrange.
8685
8686 2002-09-12 Nick Clifton <nickc@redhat.com>
8687
8688 * Import these changes from the config master repository:
8689
8690 2002-09-05 Svein E. Seldal <Svein.Seldal@solidas.com>
8691
8692 * config.sub: Add tic4x target.
8693
8694 2002-09-03 Ben Elliston <bje@redhat.com>
8695
8696 * config.guess: Detect NSR-D machines for nsr-tandem-nsk.
8697 Reported by <Duncan_Stodart@insession.com>.
8698
8699 2002-09-10 Jeff Johnston <jjohnstn@redhat.com>
8700
8701 * COPYING.NEWLIB: More updates.
8702
8703 2002-09-09 Jeff Johnston <jjohnstn@redhat.com>
8704
8705 * COPYING.NEWLIB: Update.
8706
8707 2002-08-23 Andrew Cagney <ac131313@redhat.com>
8708
8709 * texinfo/texinfo.tex: Import version 2002-06-04.06.
8710
8711 * config.guess: Import version 2002-08-23.
8712 * config.sub: Import version 2002-08-22.
8713
8714 2002-08-20 Alexandre Oliva <aoliva@redhat.com>
8715
8716 * Makefile.in (GCC_FOR_TARGET): Prepend STAGE_CC_WRAPPER.
8717 * configure.in (CC_FOR_TARGET, GCJ_FOR_TARGET, CXX_FOR_TARGET,
8718 CXX_FOR_TARGET_FOR_RECURSIVE_MAKE): Likewise.
8719
8720 2002-08-06 Federico G. Schwindt <fgsch@olimpo.com.br>
8721
8722 * configure.in (hppa*-*-openbsd*): Treat like hppa*-*-*elf*.
8723
8724 2002-08-04 H.J. Lu (hjl@gnu.org)
8725
8726 * configure.in (mips*-*-linux*): Don't skip target-libffi.
8727
8728 2002-07-31 Alan Modra <amodra@bigpond.net.au>
8729
8730 * configure.in: Move generic linux case to end. Copy generic
8731 linux noconfigdirs to mips*-*-linux* entry and new
8732 powerpc64*-*-linux* entry. Add target-libffi for the latter.
8733
8734 2002-07-19 Chris Demetriou <cgd@broadcom.com>
8735
8736 * MAINTAINERS: Clarify on config.guess and config.sub, and add
8737 one instance of them which was missed to the list to update.
8738
8739 2002-07-16 Chris Demetriou <cgd@broadcom.com>
8740
8741 * config.guess: Update to 2002-07-09 version.
8742 * config.sub: Update to 2002-07-03 version.
8743
8744 2002-07-11 Nathanael Nerode <neroden@gcc.gnu.org>
8745
8746 * configure.in: Remove two redundant tests.
8747
8748 2002-07-11 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
8749
8750 * configure.in (mips*-*-irix6*o32): Enable stabs.
8751
8752 2002-07-08 Nathanael Nerode <neroden@gcc.gnu.org>
8753
8754 * configure.in: Don't build grez.
8755 * Makefile.in: Ditto.
8756
8757 * Makefile.in: Remove references to bsp, cygmon, libstub.
8758 * configure.in: Ditto.
8759
8760 * configure.in: Remove leftover reference to gdbtest.
8761
8762 2002-07-08 Phil Edwards <pme@gcc.gnu.org>
8763
8764 * configure.in (gxx_include_dir): Change to match versioned
8765 C++ headers if --enable-version-specific-runtime-libs is used.
8766
8767 2002-07-04 Steve Ellcey <sje@cup.hp.com>
8768
8769 * ltcf-cxx.sh (hpux*): Modify to support ia64-*-hpux*.
8770
8771 2002-07-03 Nathanael Nerode <neroden@gcc.gnu.org>
8772
8773 * configure.in: Make --without-x work.
8774
8775 2002-07-03 Nick Clifton <nickc@cambridge.redhat.com>
8776
8777 * contrib: New directory. Created to contain a copy of the
8778 texi2pod.pl script so that it is in the same place as the version in
8779 the FSF GCC sources.
8780
8781 2002-07-02 Nathanael Nerode <neroden@gcc.gnu.org>
8782
8783 * configure.in: Rearrange target Makefile fragment collection.
8784
8785 * Makefile.in: Don't try to build gdbtest, tgas, ispell, inet, or
8786 cvs[src].
8787 * configure.in: Ditto.
8788
8789 2002-07-01 Nathanael Nerode <neroden@gcc.gnu.org>
8790
8791 * Makefile.in: Eliminate 'apache' targets.
8792 * configure.in: Eliminate 'apache' targets.
8793
8794 * configure.in: Eliminate redundant tests. Reorganize.
8795
8796 * Makefile.in: Eliminate last reference to LIBGCC1_TEST.
8797
8798 * config-ml.in: Eliminate references to Cygnus configure.
8799
8800 * Makefile.in: Eliminate references to building emacs.
8801
8802 2002-07-01 Denis Chertykov <denisc@overta.ru>
8803
8804 * configure.in: Add support for ip2k.
8805
8806 2002-06-24 Ben Elliston <bje@redhat.com>
8807
8808 * configure.in (host_tools): Remove cgen.
8809
8810 * Makefile.in (all-cgen): Remove; runs from its source directory.
8811 (check-cgen, install-cgen, clean-cgen): Likewise.
8812 (all-opcodes): No not depend on all-cgen.
8813 (all-sim): Likewise.
8814
8815 2002-06-22 Nathanael Nerode <neroden@twcny.rr.com>
8816
8817 * configure.in: Fix AIX configury bug.
8818
8819 2002-06-19 Nathanael Nerode <neroden@twcny.rr.com>
8820
8821 * configure.in: Replace ${topsrcdir} with ${srcdir}.
8822
8823 * configure.in: Move definition of libstdcxx_flags right above
8824 usage, rather than way earlier.
8825
8826 * configure.in: Pull definition of is_cross_compiler earlier.
8827
8828 * configure.in: Rearrange a little.
8829
8830 * configure.in: Remove references to librx.
8831 * Makefile.in: Remove references to librx.
8832
8833 2002-06-19 Nathanael Nerode <neroden@twcny.rr.com>
8834
8835 * configure.in: Eliminate ${gasdir} variable.
8836
8837 2002-06-18 Dave Brolley <brolley@redhat.com>
8838
8839 * configure.in: Add support for frv.
8840 * config.sub: Add support for frv.
8841
8842 2002-06-12 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
8843
8844 * Makefile.in (CFLAGS_FOR_TARGET): Add -O2.
8845
8846 2002-06-08 Jason Thorpe <thorpej@wasabisystems.com>
8847
8848 * configure.in (vax-*-netbsd*): Re-enable gas.
8849
8850 2002-05-31 Nathanael Nerode <neroden@twcny.rr.com>
8851
8852 * Makefile.in: Replace HOST_PREFIX, HOST_PREFIX_1 with BUILD_PREFIX,
8853 BUILD_PREFIX_1, to correct nomenclature.
8854 * configure: Likewise.
8855
8856 * Makefile.in: Eliminate version-specific references to tcl8.1, tk8.1.
8857 * configure.in: Eliminate version-specific references to tcl8.1, tk8.1.
8858
8859 2002-05-31 Olaf Hering <olh@suse.de>
8860
8861 * config-ml.in: Propogate DESTDIR also.
8862
8863 2002-05-29 Jason Thorpe <thorpej@wasabisystems.com>
8864
8865 * configure.in (vax-*-netbsd*): Don't build gas for this
8866 platform.
8867
8868 2002-05-28 Marek Michalkiewicz <marekm@amelek.gda.pl>
8869
8870 * configure.in (noconfigdirs): Don't compile libiberty, libstdcxx
8871 and libgcj for AVR.
8872
8873 2002-05-28 Nick Clifton <nickc@cambridge.redhat.com>
8874
8875 * config.sub: Add DLX target.
8876
8877 2002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
8878
8879 * config.guess: Update to 2002-05-22 version.
8880 * config.sub: Likewise.
8881
8882 2002-05-16 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
8883
8884 * Makefile.in: Allow for PWDCMD to override hardcoded pwd.
8885 * config-ml.in: Likewise.
8886 * configure: Likewise.
8887 * configure.in: Likewise.
8888
8889 2002-05-13 Nathanael Nerode <neroden@twcny.rr.com>
8890
8891 * configure.in: Simplify makefile fragment collection.
8892
8893 * configure.in: Remove code to build emacs.
8894
8895 * configure.in : Remove --srcdir argument from targargs and buildargs
8896 (it's always overridden in the Makefile anyway). Rearrange a bit.
8897
8898 * configure: Move some logic to configure.in.
8899 * configure.in: Move some logic from configure.
8900
8901 2002-05-07 Jeff Johnston <jjohnstn@redhat.com>
8902
8903 * COPYING.LIBGLOSS: New file.
8904
8905 2002-05-07 Federico G. Schwindt <fgsch@olimpo.com.br>
8906
8907 * Makefile.in: Honour DESTDIR.
8908
8909 2002-05-05 Alexandre Oliva <aoliva@redhat.com>
8910
8911 * configure.in (noconfigdirs): Don't disable libgcj on
8912 sparc64-*-solaris* and sparcv9-*-solaris*.
8913
8914 2002-05-03 Alexandre Oliva <aoliva@redhat.com>
8915
8916 * configure.in: Revert 2002-04-18's patch; fixed in libjava.
8917
8918 2002-05-03 Thomas Fitzsimmons <fitzsim@redhat.com>
8919
8920 * configure.in (FLAGS_FOR_TARGET): Do not add
8921 -B$$r/$(TARGET_SUBDIR)/newlib/ when compiling newlib natively
8922 on i[3456]86-*-linux*.
8923
8924 2002-05-01 Thomas Fitzsimmons <fitzsim@redhat.com>
8925
8926 * configure.in (noconfigdirs): Replace [ ] with test.
8927
8928 * configure.in (noconfigdirs): Do not add target-newlib if
8929 target == i[3456]86-*-linux*, and host == target.
8930
8931 2002-04-29 Mark Mitchell <mark@codesourcery.com>
8932
8933 * config.guess: Updated to 2002-04-26's version.
8934 * config.sub: Updated to 2002-04-26's version.
8935
8936 2002-04-29 Nathanael Nerode <neroden@doctormoo.dyndns.org>
8937
8938 * configure.in: delete reference to absent file
8939
8940 * configure.in: replace '[' with 'test'
8941
8942 * configure.in: Eliminate references to gash.
8943 * Makefile.in: Eliminate references to gash.
8944
8945 * configure.in: remove useless references to 'pic' makefile fragments.
8946
8947 * configure.in: (*-*-windows*) Finish removing.
8948
8949 * configure.in: Eliminate redundant test for libgui.
8950
8951 2002-04-26 Joel Sherrill <joel@OARcorp.com>
8952
8953 * configure.in (h8300*-*-rtems*): Disable libf2c and libgcj.
8954 (sparc-*-elf*, sparc64-*-elf*): Disable libgcj.
8955
8956 2002-04-19 Nathanael Nerode <neroden@twcny.rr.com>
8957
8958 * configure.in: remove references to dead files
8959
8960 2002-04-18 Tom Tromey <tromey@redhat.com>
8961
8962 * configure.in: Disallow configuring libgcj when it is already
8963 installed and we're using Solaris 2.8 linker. Do enable libgcj on
8964 Solaris 2.8 by default. For PR libgcj/6158.
8965
8966 2002-04-17 Nathanael Nerode <neroden@twcny.rr.com>
8967
8968 * configure.in: Move default CC setting out of config/mh-* fragments
8969 directly into here.
8970
8971 2002-04-17 Nathanael Nerode <neroden@twcny.rr.com>
8972
8973 * configure.in: don't even try to configure or make a subdirectory
8974 if there's no configure script for it.
8975
8976 2002-04-15 Mark Mitchell <mark@codesourcery.com>
8977
8978 * MAINTAINERS: Remove chill maintainers.
8979 * Makefile.in (CHILLFLAGS): Remove.
8980 (CHILL_LIB): Remove.
8981 (TARGET_CONFIGDIRS): Remove libchill.
8982 (CHILL_FOR_TARGET): Remove.
8983 (BASE_FLAGS_TO_PASS): Don't pass CHILLFLAGS, CHILL_FOR_TARGET, or
8984 CHILL_LIB.
8985 (CONFIGURE_TARGET_MODULES): Remove configure-target-libchill.
8986 (CHECK_TARGET_MODULES): Likewise.
8987 (INSTALL_TARGET_MODULES): Likewise.
8988 (CLEAN_TARGET_MODULES): Likewise.
8989 (configure-target-libchill): Remove.
8990 (all-target-libchill): Remove.
8991 * configure.in (target_libs): Remove target-libchill.
8992 Do not compute CHILL_FOR_TARGET.
8993 * libchill: Remove directory.
8994
8995 2002-04-15 DJ Delorie <dj@redhat.com>
8996
8997 * Makefile.in, configure.in, configure: Sync with gcc, entries
8998 follow...
8999
9000 2002-04-08 Tom Tromey <tromey@redhat.com>
9001
9002 * configure.in: Add FLAGS_FOR_TARGET to GCJ_FOR_TARGET.
9003 Fixes PR libgcj/6068.
9004
9005 2002-03-30 Krister Walfridsson <cato@df.lth.se>
9006
9007 * configure.in (i*86-*-netbsdelf*): Don't disable libgcj.
9008
9009 2002-03-27 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
9010
9011 * configure.in (alpha*-dec-osf*): Enable libgcj.
9012
9013 2002-03-24 Nick Clifton <nickc@cambridge.redhat.com>
9014
9015 Fix for: PR bootstrap/3591, target/5676
9016 * configure.in (mcore-pe): Disable the configuration of
9017 libstdc++-v3 since exceptions are not supported.
9018
9019 2002-03-20 Anthony Green <green@redhat.com>
9020
9021 * configure.in: Enable libgcj for xscale-elf target.
9022
9023 2002-02-28 Alexandre Oliva <aoliva@redhat.com>
9024
9025 * configure.in (libstdcxx_flags): Don't add libstdc++-v3 flags for
9026 libjava.
9027 (CXX_FOR_TARGET): Explain why -shared-libgcc here.
9028
9029 2002-02-22 Alexandre Oliva <aoliva@redhat.com>
9030
9031 * configure.in (CXX_FOR_TARGET): Add -shared-libgcc for
9032 libstdc++-v3 and libjava.
9033
9034 2002-02-11 Adam Megacz <adam@xwt.org>
9035
9036 * gcc/Makefile.in: Removed libstdc++-v3 dependancy for libjava and
9037 boehm-gc
9038
9039 2002-02-09 Alexandre Oliva <aoliva@redhat.com>
9040
9041 * config.guess: Updated to 2002-01-30's version.
9042 * config.sub: Updated to 2002-02-01's version.
9043 Contribute sh64-elf.
9044 2000-12-01 Alexandre Oliva <aoliva@redhat.com>
9045 * configure.in: Added sh64-*-*.
9046
9047 2002-01-17 H.J. Lu <hjl@gnu.org>
9048
9049 * Makefile.in (all-fastjar): Also depend on all-libiberty.
9050 (all-target-fastjar): Also depend on all-target-libiberty.
9051
9052 Wed Dec 5 07:33:45 2001 Douglas B. Rupp <rupp@gnat.com>
9053
9054 * configure, configure.in: Use temp file for long sed commands.
9055
9056 2001-11-14 Hans-Peter Nilsson <hp@bitrange.com>
9057
9058 * configure.in (noconfigdirs) [h8300*-*-*, h8500-*-*]: Disable
9059 libf2c.
9060
9061 2001-11-03 Hans-Peter Nilsson <hp@bitrange.com>
9062
9063 * configure.in (noconfigdirs) [mmix-*-*]: Disable libgcj.
9064
9065 2001-10-11 Hans-Peter Nilsson <hp@axis.com>
9066
9067 * configure.in (noconfigdirs) [cris-*-*]: Disable libgcj.
9068
9069 2001-10-02 Joseph S. Myers <jsm28@cam.ac.uk>
9070
9071 * configure: Handle temporary files securely using mkdir.
9072
9073 2001-09-26 Will Cohen <wcohen@redhat.com>
9074
9075 * configure.in (*-*-linux*): Disable configuration of target-newlib
9076 and target-libgloss.
9077
9078 2001-09-26 Alexandre Oliva <aoliva@redhat.com>
9079
9080 * Makefile.in (EXTRA_TARGET_FLAGS): Pass RANLIB_FOR_TARGET for
9081 RANLIB.
9082
9083 2001-08-11 Graham Stott <grahams@redhat.com>
9084
9085 * Makefile.in (check-c++): Add missing semicolon.
9086
9087 2001-07-25 Andrew Haley <aph@cambridge.redhat.com>
9088
9089 * configure.in (sh-*-linux*): New.
9090
9091 2001-07-12 Stephane Carrez <Stephane.Carrez@worldnet.fr>
9092
9093 * configure.in (noconfigdirs): Don't compile libiberty, libstdcxx
9094 and libgcj on m68hc11/m68hc12.
9095
9096 2001-06-27 H.J. Lu (hjl@gnu.org)
9097
9098 * Makefile (CFLAGS_FOR_BUILD): New.
9099 (EXTRA_GCC_FLAGS): Add CFLAGS_FOR_BUILD.
9100
9101 2001-06-01 Hans-Peter Nilsson <hp@axis.com>
9102
9103 * configure.in (libstdcxx_flags): Do not try to execute
9104 libstdc++-v3/testsuite_flags until it exists.
9105
9106 2001-05-18 Benjamin Kosnik <bkoz@redhat.com>
9107
9108 * configure.in (libstdcxx_flags): Remove reference to libstdc++.INC.
9109
9110 2001-05-09 Jeffrey Oldham <oldham@codesourcery.com>
9111
9112 * ltcf-cxx.sh: Add -nostdlib to IRIX 6 archive_cmds.
9113
9114 Mon Apr 23 09:15:03 2001 Anthony Green <green@redhat.com>
9115
9116 * configure.in: Move *-chorusos target case to the proper switch.
9117 Disable libgcj.
9118
9119 2001-04-13 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
9120
9121 * Makefile.in (STAGE1_CFLAGS): Pass down.
9122
9123 2001-04-13 Alan Modra <amodra@one.net.au>
9124
9125 * config.guess: Add hppa64-linux support. Note for next import that
9126 this is already in the master file.
9127 * configure.in: Likewise. Accept `parisc' alias for `hppa'.
9128
9129 2001-03-22 Colin Howell <chowell@redhat.com>
9130
9131 * Makefile.in (DO_X): Do not backslash single-quotes in
9132 backquotes (two places).
9133
9134 2001-03-18 Laurynas Biveinis <lauras@softhome.net>
9135
9136 * Makefile.in (DO_X): Quote nested quotes.
9137
9138 2001-03-15 Laurynas Biveinis <lauras@softhome.net>
9139
9140 * Makefile.in (DO_X): Use double quotes for quoting
9141 "RANLIB=$${RANLIB}".
9142
9143 2001-03-09 Nicola Pero <n.pero@mi.flashnet.it>
9144
9145 * configure.in: Only use `lang_requires' for languages athat are
9146 actually enabled.
9147
9148 2001-03-07 Tom Tromey <tromey@redhat.com>
9149
9150 * configure.in: Allow config-lang.in to set `lang_requires' to list
9151 of other required languages.
9152
9153 2001-03-06 Laurynas Biveinis <lauras@softhome.net>
9154
9155 * Makefile.in: Remove RANLIB definition. Use RANLIB
9156 in RANLIB_FOR_TARGET, EXTRA_HOST_FLAGS, EXTRA_TARGET_FLAGS,
9157 EXTRA_GCC_FLAGS, $(DO_X) targets only when the RANLIB is set.
9158
9159 2001-02-28 Benjamin Kosnik <bkoz@redhat.com>
9160 Alexandre Oliva <aoliva@redhat.com>
9161
9162 * Makefile.in (check-c++): Use tabs, not spaces.
9163
9164 2001-02-19 Benjamin Kosnik <bkoz@redhat.com>
9165
9166 * Makefile.in (check-c++): New rule.
9167
9168 * configure.in (target_libs): Remove libg++.
9169 (noconfigdirs): Remove libg++.
9170 (noconfigdirs): Same.
9171 (noconfigdirs): Same.
9172 (noconfigdirs): Same.
9173
9174 * config-ml.in: Remove libg++ references.
9175
9176 * Makefile.in (TARGET_CONFIGDIRS): Remove libio, libstdc++, libg++.
9177 (ALL_TARGET_MODULES): Same.
9178 (configure-target-libg++): Remove.
9179 (all-target-libg++): Remove.
9180 (configure-target-libio): Remove.
9181 (all-target-libio): Remove.
9182 (check-target-libio): Remove.
9183 (.PHONY): Remove.
9184 (libg++.tar.bz2): Remove.
9185 (all-target-cygmon): Remove libio.
9186 (all-target-libstdc++): Remove.
9187 (configure-target-libstdc++): Remove.
9188 (TARGET_LIB_PATH): Remove libstdc++.
9189 (ALL_GCC_CXX): Remove libstdc++.
9190 (all-target-gperf): Correct.
9191
9192 2001-02-15 Anthony Green <green@redhat.com>
9193
9194 * configure: Introduce GCJ_FOR_TARGET.
9195 * configure.in: Ditto.
9196 * Makefile.in: Ditto.
9197
9198 2001-02-08 Chandrakala Chavva <cchavva@redhat.com>
9199
9200 * configure.in: for *-chorusos, don't config target-newlib and
9201 target-libgloss.
9202
9203 2001-02-04 Mark Mitchell <mark@codesourcery.com>
9204
9205 Remove V2 C++ library.
9206 * configure.in: Remove --enable-libstdcxx_v3 support.
9207
9208 2001-01-27 Richard Henderson <rth@redhat.com>
9209
9210 * configure.in (target_makefile_frag) [alpha*-*]: Use mt-alphaieee.
9211
9212 2001-01-26 Tom Tromey <tromey@redhat.com>
9213
9214 * configure.in: Allow libgcj to be built on Sparc Solaris.
9215
9216 2001-01-23 Bryce McKinlay <bryce@albatross.co.nz>
9217
9218 * configure.in: Enable libgcj on several additional platforms.
9219
9220 2001-01-22 Bryce McKinlay <bryce@albatross.co.nz>
9221
9222 * configure.in: Enable libgcj for linux targets.
9223
9224 2001-01-09 Mike Stump <mrs@wrs.com>
9225
9226 * Makefile.in (CONFIGURE_TARGET_MODULES): Pass back configuration
9227 failures of subdirectories.
9228
9229 2001-01-02 Laurynas Biveinis <lauras@softhome.net>
9230
9231 * configure: handle DOS-style absolute paths.
9232
9233 2001-01-02 Laurynas Biveinis <lauras@softhome.net>
9234
9235 * configure.in: remove supported directories from $noconfigdirs for DJGPP.
9236
9237 2000-12-18 Benjamin Kosnik <bkoz@redhat.com>
9238
9239 * Makefile.in (BASE_FLAGS_TO_PASS): Alphabetize.
9240 (libstdcxx_incdir): Pass down.
9241 * config.if: Remove expired bits for cxx_interface, add stub.
9242 (libstdcxx_incdir): Add variable for g++ include directory.
9243 * configure.in (gxx_include_dir): Use it.
9244
9245 2000-12-15 Andreas Jaeger <aj@suse.de>
9246
9247 * configure.in: Handle lang_dirs.
9248
9249 2000-12-13 Anthony Green <green@redhat.com>
9250
9251 * configure.in: Disable libgcj for any target not specifically
9252 listed. Disable libgcj for x86 and Alpha Linux until compatible
9253 with g++ abi.
9254
9255 2000-12-13 Mike Stump <mrs@wrs.com>
9256
9257 * Makefile.in (local-distclean): Also remove fastjar.
9258
9259 2000-12-10 Anthony Green <green@redhat.com>
9260
9261 * configure.in: Define libgcj. Disable libgcj target libraries for
9262 most targets.
9263
9264 2000-12-09 Alexandre Petit-Bianco <apbianco@cygnus.com>
9265
9266 * configure.in (target_libs): Revert 2000-12-08 patch.
9267 (noconfigdirs): Added target-libjava.
9268
9269 2000-12-09 Laurynas Biveinis <lauras@softhome.net>
9270
9271 * Makefile.in: handle DOS-style absolute paths.
9272
9273 2000-12-08 Alexandre Petit-Bianco <apbianco@cygnus.com>
9274
9275 * Makefile.in (TARGET_CONFIGDIRS): Wrong place. Removed note about
9276 libjava.
9277 * configure.in (target_libs): Removed `target-libjava'.
9278
9279 2000-12-08 Alexandre Petit-Bianco <apbianco@cygnus.com>
9280
9281 * Makefile.in (TARGET_CONFIGDIRS): Added note about libjava.
9282 (ALL_MODULES): Added fastjar.
9283 (NATIVE_CHECK_MODULES, INSTALL_MODULES, CLEAN_MODULES): Likewise.
9284 (all-target-libjava): all-fastjar replaces all-zip.
9285 (all-fastjar): Added.
9286 (configure-target-fastjar, all-target-fastjar): Likewise.
9287 * configure.in (host_tools): Added fastjar.
9288
9289 2000-12-07 Mike Stump <mrs@wrs.com>
9290
9291 * Makefile.in (local-distclean): Remove leftover built files.
9292
9293 2000-11-16 Fred Fish <fnf@be.com>
9294
9295 * configure.in (enable_libstdcxx_v3): Fix typo,
9296 libstd++ -> libstdc++.
9297
9298 2000-11-13 Joseph S. Myers <jsm28@cam.ac.uk>
9299
9300 * configure: Provide the original toplevel configure arguments
9301 (including $0) to subprocesses in the environment rather than
9302 through gcc/configargs.h.
9303
9304 2000-11-12 Mark Mitchell <mark@codesourcery.com>
9305
9306 * configure: Turn on libstdc++ V3 by default.
9307
9308 2000-10-16 Michael Meissner <meissner@redhat.com>
9309
9310 * configure (gcc/configargs.h): Only create if there is a build GCC
9311 directory created.
9312
9313 2000-10-05 Phil Edwards <pme@gcc.gnu.org>
9314
9315 * configure: Save configure arguments to gcc/configargs.h.
9316
9317 2000-10-04 Andris Pavenis <pavenis@latnet.lv>
9318
9319 * Makefile.in (bootstrap): avoid recursion if subdir missing
9320 (cross): ditto
9321 (do-proto-toplev): ditto
9322
9323 Wed Sep 13 11:11:29 2000 Jeffrey A Law (law@cygnus.com)
9324
9325 * configure.in: Do not build byacc for hppa64. Provide paths to the
9326 X11 libraries for hppa64.
9327
9328 2000-09-02 Anthony Green <green@cygnus.com>
9329
9330 * Makefile.in (all-gcc): Depend on all-zlib.
9331 (CLEAN_MODULES): Add clean-zlib.
9332 (ALL_MODULES): Add all-zlib.
9333 * configure.in (host_libs): Add zlib.
9334
9335 2000-08-25 Alexandre Oliva <aoliva@redhat.com>
9336
9337 * configure.in (FLAGS_FOR_TARGET): Use $target_configdirs and
9338 $targargs to tell whether newlib is going to be built.
9339
9340 * configure.in [disable-libstdcxx-v3] (libstdcxx_flags): Search
9341 $$r/TARGET_SUBDIR/libio for _G_config.h.
9342
9343 2000-08-14 Zack Weinberg <zack@wolery.cumb.org>
9344
9345 * configure.in (libstdcxx_flags): Remove -isystem $$s/libio/stdio.
9346
9347 * configure: Make enable_threads and enable_shared defaults
9348 explicit. Substitute enable_threads into generated Makefiles.
9349 * configure.in: Accept *-*-linux* not just *-*-linux-gnu*.
9350 * libtool.m4: Accept *-*-linux* not just *-*-linux-gnu*.
9351
9352 2000-08-02 Manfred Hollstein <manfredh@redhat.com>
9353
9354 * configure.in: Re-enable all references to libg++ and librx.
9355
9356 2002-04-09 Loren James Rittle <rittle@labs.mot.com>
9357
9358 * configure.in: Add *-*-freebsd* configurations.
9359
9360 2002-04-07 Andrew Cagney <ac131313@redhat.com>
9361
9362 * Makefile.in (do-tar-bz2): Delete rule. Replace with ...
9363 (do-tar, do-bz2): New rules.
9364 (taz): Update. Replace do-tar-bz2 with do-tar and do-bz2.
9365 (gdb-tar): New rule.
9366 (gdb-taz): Rewrite. Use gdb-tar and do-bz2.
9367 (insight_dejagnu.tar): New rule.
9368 (insight.tar): New rule.
9369 (gdb+dejagnu.tar): New rule.
9370 (gdb.tar): New rule.
9371
9372 2002-04-07 Andrew Cagney <ac131313@redhat.com>
9373
9374 * MAINTAINERS: Update dejagnu/
9375
9376 2002-03-16 Alexandre Oliva <aoliva@redhat.com>
9377
9378 * ltmain.sh (relink_command): Fix typo in previous change.
9379
9380 2002-03-15 Alexandre Oliva <aoliva@redhat.com>
9381
9382 * ltmain.sh (taglist): Initialized. Don't let `CC' tag out of it.
9383 (relink_command): Added --tag flags.
9384 (mode=install): If relinking fails; error out.
9385
9386 2002-03-12 Richard Henderson <rth@redhat.com>
9387
9388 * Makefile.in (NOTPARALLEL): New. Use it instead of explicit
9389 .NOTPARALLEL tag.
9390 (do-check): Rename from check.
9391 (check): Allow parallel check.
9392
9393 2002-03-11 Richard Henderson <rth@redhat.com>
9394
9395 * Makefile.in (.NOTPARALLEL): Add fake tag.
9396
9397 2002-03-07 H.J. Lu (hjl@gnu.org)
9398
9399 * configure.in: Enable gprof for mips*-*-linux*.
9400
9401 2002-02-28 Alexandre Oliva <aoliva@redhat.com>
9402
9403 * configure.in (libstdcxx_flags): Don't add libstdc++-v3 flags for
9404 libjava.
9405 (CXX_FOR_TARGET): Add -shared-libgcc for libstdc++-v3 and libjava.
9406
9407 2002-02-24 Andrew Cagney <ac131313@redhat.com>
9408
9409 * texinfo/texinfo.tex: Update to version 2002-02-14.08.
9410
9411 2002-02-23 Daniel Jacobowitz <drow@mvista.com>
9412
9413 * config.guess: Import from master sources, rev 1.232.
9414 * config.sub: Import from master sources, rev 1.246.
9415
9416 2002-02-23 Alexandre Oliva <aoliva@redhat.com>
9417
9418 * Makefile.in (MAKEINFO): Don't assume makeinfo will be built just
9419 because its Makefile is there; test for the executable instead.
9420
9421 2002-02-09 Alexandre Oliva <aoliva@redhat.com>
9422
9423 Contribute sh64-elf.
9424 2000-12-01 Alexandre Oliva <aoliva@redhat.com>
9425 * configure.in: Added sh64-*-*.
9426
9427 2002-02-04 Jeff Johnston <jjohnstn@redhat.com>
9428
9429 * COPYING.NEWLIB: Remove advertising clause from
9430 Berkeley and Red Hat licenses.
9431
9432 2002-02-01 Mo DeJong <supermo@bayarea.net>
9433
9434 * Makefile.in: Add all-tix to deps for all-snavigator
9435 so that tix is built when building snavigator.
9436
9437 2002-02-01 Ben Elliston <bje@redhat.com>
9438
9439 * config.guess: Import from master sources, rev 1.229.
9440 * config.sub: Import from master sources, rev 1.240.
9441
9442 2002-01-27 Daniel Jacobowitz <drow@mvista.com>
9443
9444 From Steve Ellcey <sje@cup.hp.com>:
9445 * libtool.m4 (HPUX_IA64_MODE): Set to 32 or 64 based on ABI.
9446 (lt_cv_deplibs_check_method, lt_cv_file_magic_cmd,
9447 lt_cv_file_magic_test_file): Set to appropriate values for HP-UX
9448 IA64.
9449 * ltcf-c.sh (archive_cmds, hardcode_*): Ditto.
9450 * ltconfig (shlibpath_*, dynamic_linker, library_names_spec,
9451 soname_spec, sys_lib_search_path_spec): Ditto.
9452
9453 2002-01-26 Jason Thorpe <thorpej@wasabisystems.com>
9454
9455 * configure.in (*-*-netbsd*): New. Skip target-newlib,
9456 target-libiberty, and target-libgloss. Skip Java-related
9457 libraries if not supported for NetBSD on target CPU.
9458
9459 2002-01-23 Nick Clifton <nickc@cambridge.redhat.com>
9460
9461 * configure.in: Import StrongARM and XScale target_configdirs from
9462 FSF GCC version.
9463
9464 2002-01-16 H.J. Lu (hjl@gnu.org)
9465
9466 * config.guess: Import from master sources, rev 1.225.
9467 * config.sub: Import from master sources, rev 1.238.
9468
9469 * MAINTAINERS: Updated notes on config.guess and config.sub.
9470
9471 2002-01-11 Steve Ellcey <sje@cup.hp.com>
9472
9473 * configure.in (ia64*-*-hpux*): New target for IA64 HP-UX,
9474 ld and gdb are not supported.
9475
9476 2002-01-07 Jeff Johnston <jjohnstn@redhat.com>
9477
9478 * Change reference to Cygnus Solutions to be Red Hat.
9479
9480 2002-01-07 Jeff Johnston <jjohnstn@redhat.com>
9481
9482 * COPYING.NEWLIB: Update generic copyright date.
9483
9484 2002-01-07 Mark Salter <msalter@redhat.com>
9485
9486 * configure.in: Remove target-bsp and target-cygmon from arm builds.
9487 Allow target-libgloss to be built for arm, strongarm, and xscale.
9488
9489 2002-01-03 Ben Elliston <bje@redhat.com>
9490
9491 * MAINTAINERS: Update URL for config.* scripts.
9492
9493 2001-12-18 Alan Modra <amodra@bigpond.net.au>
9494
9495 * config.sub: Import latest version.
9496 * config.guess: Likewise.
9497
9498 2001-12-13 Thomas Fitzsimmons <fitzsim@redhat.com>
9499
9500 * configure.in (FLAGS_FOR_TARGET): Remove -nostdinc and -isystem
9501 options for i[3456]86-pc-linux* native builds.
9502
9503 2001-12-05 Laurent Guerby <guerby@acm.org>
9504
9505 * MAINTAINERS: gcc adopts symlink-tree, refer more to
9506 libiberty.
9507
9508 Import this patch from gcc:
9509
9510 2000-12-09 Laurynas Biveinis <lauras@softhome.net>
9511
9512 * symlink-tree: handle DOS-style absolute paths.
9513
9514 2001-11-28 DJ Delorie <dj@redhat.com>
9515 Zack Weinberg <zack@codesourcery.com>
9516
9517 When build != host, create libiberty for the build machine.
9518
9519 * Makefile.in (TARGET_CONFIGARGS, BUILD_CONFIGARGS): Replace
9520 CONFIG_ARGUMENTS.
9521 (ALL_BUILD_MODULES_LIST, BUILD_CONFIGDIRS, BUILD_SUBDIR):
9522 New variables.
9523 (ALL_BUILD_MODULES, CONFIGURE_BUILD_MODULES): New variables
9524 and rules.
9525 (all.normal): Depend on ALL_BUILD_MODULES.
9526 (CONFIGURE_TARGET_MODULES rule): Use TARGET_CONFIGARGS.
9527 (all-build-libiberty): Depend on configure-build-libiberty.
9528
9529 * configure: Calculate and substitute proper value for
9530 ALL_BUILD_MODULES.
9531 * configure.in: Create the build subdirectory.
9532 Calculate and substitute TARGET_CONFIGARGS (formerly
9533 CONFIG_ARGUMENTS); also BUILD_SUBDIR and BUILD_CONFIGARGS (new).
9534
9535 2001-11-26 Geoffrey Keating <geoffk@redhat.com>
9536
9537 * config.sub: Update to version 1.232 on subversion.
9538
9539 2001-11-20 Nick Clifton <nickc@cambridge.redhat.com>
9540
9541 * Makefile.in (do-proto-toplev): Use msgfmt to generate .gmo
9542 files from .po files for a distribution.
9543
9544 2001-11-19 Hans-Peter Nilsson <hp@bitrange.com>
9545
9546 * COPYING.NEWLIB: Mention preserved notice in specific parts.
9547
9548 2001-11-13 Jeff Holcomb <jeffh@redhat.com>
9549
9550 Merged from net gcc:
9551 2001-07-30 Jeff Sturm <jsturm@one-pont.com>
9552 * ltcf-c.sh: Use $objext, not $ac_objext.
9553 2001-07-27 Mark Kettenis <kettenis@gnu.org>
9554 * ltcf-cxx.sh: Add support for GNU.
9555 2001-07-22 Timothy Wall <twall@redhat.com>
9556 * ltcf-c.sh: Don't disable shared libraries for AIX5/IA64. Preserve
9557 default settings if using GNU tools with that configuration.
9558 * ltcf-cxx.sh: Ditto.
9559 * ltcf-gcj.sh: Ditto.
9560 2001-07-21 Michael Chastain <chastain@redhat.com>
9561 * ltconfig: Set max_cmd_len to a maximum of 512Kb, as it seems some
9562 HPUX 11.0 systems have trouble with 1MB. Mark as gcc-local.
9563 * ltmain.sh: Mark as gcc-local.
9564
9565 2001-11-13 Jeff Holcomb <jeffh@redhat.com>
9566
9567 * Makefile.in (all-bison): Revert 2001-10-24.
9568 Don't depend on texinfo.
9569
9570 2001-11-12 Hans-Peter Nilsson <hp@bitrange.com>
9571
9572 * COPYING.NEWLIB: Add BSD-style license/copyright blurb for my work.
9573
9574 2001-11-08 Phil Edwards <pedwards@disaster.jaj.com>
9575
9576 * configure.in (--enable-languages): Be more permissive about
9577 syntax. Check for empty lists better. Warn about $LANGUAGES.
9578
9579 2001-11-06 Hans-Peter Nilsson <hp@bitrange.com>
9580
9581 * Makefile.in (MAKEINFO): Use "missing" for makeinfo older than 4.0.
9582
9583 2001-10-24 Jeff Holcomb <jeffh@redhat.com>
9584
9585 Makefile.in (all-bison): Don't depend on texinfo.
9586
9587 2001-10-03 Alan Modra <amodra@bigpond.net.au>
9588
9589 * gettext.m4: Test po/POTFILES.in exists before trying to read.
9590
9591 2001-09-29 Alexandre Oliva <aoliva@redhat.com>
9592
9593 * Makefile.in (configure-target-gperf): Depend on $(ALL_GCC_CXX).
9594
9595 2001-09-28 Hans-Peter Nilsson <hp@axis.com>
9596
9597 * config.sub, config.guess: Import latest from subversions.
9598
9599 2001-09-21 Alexandre Oliva <aoliva@redhat.com>
9600
9601 * Makefile.in (AS_FOR_TARGET, LD_FOR_TARGET,
9602 DLLTOOL_FOR_TARGET, WINDRES_FOR_TARGET, AR_FOR_TARGET,
9603 RANLIB_FOR_TARGET, NM_FOR_TARGET): Don't use double quotes to
9604 avoid quotes nesting problems.
9605 (NATIVE_CHECK_MODULES): Ditto, just for consistency.
9606 (DO_X): Export only variables that are set.
9607
9608 2001-09-19 Ben Elliston <bje@redhat.com>
9609
9610 * configure.in (sparc-sun-solaris2*): Don't use /usr/bin/which on
9611 Solaris when testing for the /usr/ucb/cc compiler; it has incorrect
9612 semantics. Use the shell built-in "type" command instead.
9613
9614 2001-09-15 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
9615
9616 * config.sub: Reverted the earlier change, this version is not the
9617 master file.
9618
9619 2001-09-14 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
9620
9621 * config.sub: Change machine triplets from mipsel*-* to mips*el-*.
9622 Add support for mips64.
9623
9624 2001-09-03 Jeff Holcomb <jeffh@redhat.com>
9625
9626 * configure.in: Enable libstdc++-v3 for h8300 targets.
9627
9628 2001-08-30 Eric Christopher <echristo@redhat.com>
9629 Jason Eckhardt <jle@redhat.com>
9630
9631 * config.sub: Add support for mipsisa32.
9632
9633 2001-08-30 Eric Christopher <echristo@redhat.com>
9634
9635 * config.sub, config.guess: Import latest from subversions.
9636
9637 2001-08-20 Alan Modra <amodra@bigpond.net.au>
9638
9639 * config.sub, config.guess: Import latest from subversions.
9640
9641 2001-07-26 DJ Delorie <dj@redhat.com>
9642
9643 * MAINTAINERS: Clarify libiberty merge rules and procedures.
9644
9645 2001-06-19 Alan Modra <amodra@bigpond.net.au>
9646
9647 * Makefile.in: Revert 2001-06-17.
9648 (VER): If AM_INIT_AUTOMAKE uses BFD_VERSION, get version from bfd/.
9649
9650 2001-06-17 H.J. Lu <hjl@gnu.org>
9651
9652 * Makefile.in (gas.tar.bz2): Pass TOOL=bfd PACKAGE=gas to make.
9653 (gas+binutils.tar.bz2): Likewise.
9654 (binutils.tar.bz2): Pass TOOL=bfd PACKAGE=binutils to make.
9655
9656 Fri Jun 8 11:14:02 2001 Andrew Cagney <cagney@b1.cygnus.com>
9657
9658 * Makefile.in (VER): When present, extract the version number from
9659 the file version.in.
9660
9661 2001-06-08 Alexandre Oliva <aoliva@redhat.com>, Jeff Sturm <jsturm@one-point.com>
9662
9663 * Makefile.in (AS_FOR_TARGET, LD_FOR_TARGET, NM_FOR_TARGET): If
9664 gcc/xgcc is built, use -print-prog-name to find out the program
9665 name to use.
9666
9667 2001-06-04 Mark Mitchell <mark@codesourcery.com>
9668
9669 * ltcf-c.sh (archive_cmds, archive_expsym_cmds) [solaris,
9670 with_gcc]: Use `gcc -shared' to build a shared library.
9671
9672 2001-06-04 John David Anglin <dave@hiauly1.hia.nrc.ca>
9673
9674 * ltcf-c.sh (archive_cmd) [hpux, with_gcc]: Use gcc to link shared
9675 archives.
9676
9677 2001-05-28 Simon Patarin <simon.patarin@inria.fr>
9678
9679 * ltcf-cxx.sh (osf3/osf4/osf5): Support creation of C++ shared
9680 libraries when using g++ with native linker.
9681
9682 2001-05-28 Alexandre Oliva <aoliva@redhat.com>
9683
9684 * ltconfig, ltmain.sh: Upgrade to libtool 1.4a 1.641.2.256.
9685
9686 2001-05-24 Tom Rix <trix@redhat.com>
9687
9688 * configure.in : enable ld for aix
9689
9690 2001-05-22 Alexandre Oliva <aoliva@redhat.com>
9691
9692 * ltcf-cxx.sh (allow_undefined_flag, no_undefined_flag)
9693 [aix4*|aix5*]: Prepend blank.
9694
9695 2001-05-20 Alexandre Oliva <aoliva@redhat.com>
9696
9697 * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh, ltcf-cxx.sh,
9698 ltcf-gcj.sh: Upgraded to libtool 1.4a 1.641.2.254. Rebuilt a number
9699 of subdir/configure scripts to use the new libtool.m4.
9700
9701 2001-05-14 H.J. Lu <hjl@gnu.org>
9702
9703 * config.if (libc_interface): Set to -libc6.2- for cross
9704 compiling to Linux/glibc 2.2.
9705
9706 2001-05-03 Alexandre Oliva <aoliva@redhat.com>
9707
9708 * configure.in (noconfigdirs) [*-cygwin*, *-mingw*, *-beos]: Disable
9709 libgcj.
9710
9711 2001-04-26 Alexandre Oliva <aoliva@redhat.com>
9712
9713 * configure.in (noconfigdirs): Don't reset it from scratch in the
9714 target case; only append to it.
9715
9716 2001-04-26 Alexandre Oliva <aoliva@redhat.com>
9717
9718 * configure.in (noconfigdirs) [hppa*-*-*, mips*-*-irix6*,
9719 sparc-*-solaris2.8]: Disable ${libgcj}.
9720
9721 2001-04-25 Alexandre Oliva <aoliva@redhat.com>
9722
9723 * configure.in (libgcj_saved): Copy from $libgcj.
9724 (libgcj): Zero out if --enable-libgcj; add to noconfigdirs is
9725 --disable-libgcj.
9726
9727 2001-04-20 Alexandre Oliva <aoliva@redhat.com>
9728
9729 * ltconfig, ltmain.sh, ltcf-cxx.sh: Upgraded to libtool 1.4a
9730 1.641.2.228.
9731
9732 2001-04-12 Alexandre Oliva <aoliva@redhat.com>
9733
9734 * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh, ltcf-cxx.sh,
9735 ltcf-gcj.sh: Upgraded to libtool 1.4a 1.641.2.226.
9736
9737 2001-04-01 Alexandre Oliva <aoliva@redhat.com>
9738
9739 * Makefile.in (CXX_FOR_TARGET_FOR_RECURSIVE_MAKE, RECURSE_FLAGS):
9740 New macros.
9741 (bootstrap, cross): Use RECURSE_FLAGS.
9742 * configure.in: Subst CXX_FOR_TARGET_FOR_RECURSIVE_MAKE.
9743
9744 2001-03-27 Alexandre Oliva <aoliva@redhat.com>
9745
9746 * configure.in (CXX_FOR_TARGET): Use xgcc for libstdc++-v3.
9747
9748 2001-03-23 Nick Clifton <nickc@redhat.com>
9749
9750 * README-maintainer-mode: Add note about inability to use "make
9751 distclean" in maintainer mode.
9752
9753 2001-03-22 Alexandre Oliva <aoliva@redhat.com>
9754
9755 Re-installed:
9756 2001-01-02 Laurynas Biveinis <lauras@softhome.net>
9757 * ltcf-c.sh: Clear ac_cv_prog_cc_pic for DJGPP. Do not add
9758 '-DPIC' to ac_cv_prog_cc_pic for DJGPP.
9759 * ltcf-cxx.sh: Likewise.
9760 * ltcf-gcj.sh: Likewise.
9761
9762 2001-03-22 Philip Blundell <philb@gnu.org>
9763
9764 * config.sub, config.guess: Import latest from subversions.
9765
9766 2001-03-22 Alexandre Oliva <aoliva@redhat.com>
9767
9768 * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh, ltcf-cxx.sh,
9769 ltcf-gcj.sh: Upgraded to libtool 1.4a 1.641.2.198.
9770
9771 2001-03-20 Michael Chastain <chastain@redhat.com>
9772
9773 * Makefile.in: all-m4 depends on all-texinfo.
9774
9775 2001-03-08 Alexandre Oliva <aoliva@redhat.com>
9776
9777 * Makefile.in (ALL_GCC, ALL_GCC_C, ALL_GCC_CXX): Set before use.
9778
9779 2001-02-22 Jeff Johnston <jjohnstn@redhat.com>
9780
9781 * COPYING.NEWLIB: Remove DJ Delorie's address because it is no
9782 longer valid.
9783
9784 2001-02-16 Nick Clifton <nickc@redhat.com>
9785
9786 * configure.in (noconfigdirs): Allow configuration of texinfo
9787 for Cygwin hosts.
9788
9789 2001-02-09 Martin Schwidefsky <schwidefsky@de.ibm.com>
9790
9791 * config.guess: Add linux target for S/390.
9792 * config.sub: Likewise.
9793 * configure.in: Likewise.
9794
9795 2001-02-06 Ben Elliston <bje@redhat.com>
9796
9797 * configure: Output host type to stdout, not stderr.
9798
9799 2001-02-04 Michael Sokolov <msokolov@ivan.Harhan.ORG>
9800
9801 * config.guess: Import from subversions.gnu.org (revision 1.181).
9802 * config.sub: Import from subversions.gnu.org (revision 1.199).
9803
9804 2001-01-30 Alan Modra <alan@linuxcare.com.au>
9805
9806 * config.guess: Handle hppa64-linux systems.
9807
9808 2001-01-27 Michael Sokolov <msokolov@ivan.Harhan.ORG>
9809
9810 * ltcf-cxx.sh (ac_cv_prog_cc_pic_works, ac_cv_prog_cc_static_works):
9811 Don't unset, it's non-portable and no longer necessary, set to empty
9812 instead.
9813
9814 2001-01-27 Michael Sokolov <msokolov@ivan.Harhan.ORG>, Alexandre Oliva <oliva@lsd.ic.unicamp.br>
9815
9816 * ltconfig: Shell portability fix for the tagname validity check.
9817
9818 2001-01-27 Michael Sokolov <msokolov@ivan.Harhan.ORG>
9819
9820 * ltcf-cxx.sh: Use parentheses around eval $ac_compile.
9821
9822 2001-01-27 Alexandre Oliva <aoliva@redhat.com>
9823
9824 * ltcf-c.sh (ld_shlibs) [aix5*]: Disable on unknown CPU types.
9825 * ltcf-cxx.sh, ltcf-gcj.sh: Likewise.
9826
9827 2001-01-24 Alexandre Oliva <aoliva@redhat.com>
9828
9829 * ltmain.sh (TAG disable-shared, TAG disable-static): Make sure we
9830 keep at least one of build_libtool_libs or build_old_libs set to
9831 yes.
9832
9833 2001-01-24 Alexandre Oliva <aoliva@redhat.com>
9834
9835 * ltcf-gcj.sh (lt_simple_link_test_code): Remove stray `(0)'.
9836 * libtool.m4 (_AC_LIBTOOL_GCJ): Pass $CPPFLAGS on.
9837
9838 2000-11-07 Philip Blundell <pb@futuretv.com>
9839
9840 * Makefile.in (ETC_SUPPORT): Also add configbuild.* and configdev.*.
9841
9842 2000-11-03 Philip Blundell <pb@futuretv.com>
9843
9844 * Makefile.in (ETC_SUPPORT): Add configure.texi and associated info
9845 files.
9846
9847 2001-01-15 Jeff Johnston <jjohnstn@redhat.com>
9848
9849 * COPYING.NEWLIB: Put into source repository.
9850
9851 2001-01-15 Ben Elliston <bje@redhat.com>
9852
9853 * configure.in (host_tools): Add sid.
9854 Always configure cgen.
9855 * Makefile.in (all-sid): New target.
9856 (check-sid, clean-sid, install-sid): Likewise.
9857
9858 2001-01-07 Andreas Jaeger <aj@suse.de>
9859
9860 * config.sub, config.guess: Update from subversions.
9861
9862 2000-12-12 Alexandre Oliva <aoliva@redhat.com>
9863
9864 * configure.in: Disable language-specific target libraries for
9865 languages that aren't enabled.
9866
9867 2000-11-24 Nick Clifton <nickc@redhat.com>
9868
9869 * configure.in (xscale-elf): Add target.
9870 (xscale-coff): Add target.
9871 (c4x, c5x, tic54x): Move after ARM targets.
9872
9873 2000-11-23 Alexandre Oliva <aoliva@redhat.com>
9874
9875 * ltcf-gcj.sh: Added file, required by 2000-11-18 merge.
9876
9877 2000-11-20 Ian Lance Taylor <ian@zembu.com>
9878
9879 * ltcf-cxx.sh: Added file, required by 2000-11-18 merge.
9880
9881 2000-11-18 Alexandre Oliva <aoliva@redhat.com>
9882
9883 * Makefile.in: Merge with GCC and libgcj.
9884 (ALL_GCC_C, ALL_GCC_CXX): New macros. Use them as dependencies of
9885 configure-target-<library> when their configure scripts need the C
9886 or C++ library to have already been built to work properly.
9887 (do_proto_toplev): Set them to an empty string.
9888
9889 2000-11-18 Alexandre Oliva <aoliva@redhat.com>
9890
9891 * Makefile.in (HOST_LIB_PATH, TARGET_LIB_PATH): New macros.
9892 (REALLY_SET_LIB_PATH): Use them.
9893
9894 2000-11-06 Christopher Faylor <cgf@cygnus.com>
9895
9896 * config.sub: Add support for Sun Chorus
9897
9898 2000-11-02 Per Lundberg <plundis@chaosdev.org>
9899
9900 * config.sub: Add support for the *-storm-chaos OS.
9901
9902 2000-10-30 Stephane Carrez <stcarrez@worldnet.fr>
9903
9904 * configure.in (noconfigdirs): Don't compile some
9905 of the libraries for 68HC11 & 68hc12 targets.
9906
9907 2000-09-30 Alexandre Oliva <aoliva@redhat.com>
9908
9909 * ltconfig, ltmain.sh, libtool.m4: Updated from libtool
9910 multi-language branch, to work around Solaris' /bin/sh bug. Rebuilt
9911 all affected `configure' scripts.
9912
9913 2000-09-25 Alexandre Oliva <aoliva@redhat.com>
9914
9915 * Makefile.in (DEVO_SUPPORT): Added gettext.m4, libtool.m4 and
9916 ltcf-c.sh.
9917
9918 2000-09-12 Philip Blundell <philb@gnu.org>
9919
9920 * config.sub, config.guess: Update from subversions.
9921
9922 2000-09-06 Alexandre Oliva <aoliva@redhat.com>
9923
9924 * Makefile.in (all-zlib): Added dummy target.
9925
9926 * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh: Updated from libtool
9927 multi-language branch.
9928
9929 2000-09-05 Alexandre Oliva <aoliva@redhat.com>
9930
9931 * Makefile.in (all-bootstrap): Added all-texinfo and all-zlib.
9932 (bootstrap*): Depend on all-bootstrap.
9933
9934 2000-09-02 Alexandre Oliva <aoliva@redhat.com>, DJ Delorie <dj@redhat.com>
9935
9936 * configure.in (FLAGS_FOR_TARGET): Use -nostdinc even for Canadian
9937 crosses, but add gcc/include to the header search path for them.
9938
9939 2000-08-31 Alexandre Oliva <aoliva@redhat.com>
9940
9941 * ltconfig, ltmain.sh: Updated from libtool multi-language branch.
9942 * libtool.m4, ltcf-c.sh: Copied from libtool multi-language branch.
9943 * gettext.m4: New file, extracted from aclocal.m4.
9944
9945 2000-08-22 Alexandre Oliva <aoliva@redhat.com>
9946
9947 * config-ml.in (CC, CXX): Avoid trailing whitespace.
9948 (LD_LIBRARY_PATH, SHLIB_PATH): Adjust for multilibs and export to
9949 sub-configures.
9950
9951 2000-08-20 Doug Evans <dje@casey.transmeta.com>
9952
9953 * Makefile.in (ALL_MODULES): Add all-cgen.
9954 (CROSS_CHECK_MODULES,INSTALL_MODULES,CLEAN_MODULES): Similarily.
9955 (all-cgen): New target.
9956 (all-opcodes,all-sim): Depend on all-cgen.
9957 * configure.in (host_tools): Add cgen.
9958 Only configure cgen if --enable-cgen-maint.
9959
9960 2000-08-17 Alexandre Oliva <aoliva@redhat.com>
9961
9962 * config-ml.in (CC, CXX): Don't introduce a leading space.
9963
9964 2000-08-16 Alexandre Oliva <aoliva@redhat.com>
9965
9966 * configure.in (libstdcxx_flags): Use
9967 libstdc++-v3/src/libstdc++.INC.
9968
9969 2000-08-15 Alexandre Oliva <aoliva@redhat.com>
9970
9971 * configure.in (libstdcxx_flags): Use libstdc++-v3/src/INCLUDES.
9972
9973 2000-08-11 Jason Merrill <jason@redhat.com>
9974
9975 * configure.in (CC_FOR_TARGET, CHILL_FOR_TARGET,
9976 CXX_FOR_TARGET): Add -B$$r/gcc/ here.
9977 (FLAGS_FOR_TARGET): Not here.
9978 (CHILL_FOR_TARGET, CXX_FOR_TARGET): Don't check the list of languages.
9979
9980 2000-08-07 DJ Delorie <dj@redhat.com>
9981
9982 * configure.in (FLAGS_FOR_TARGET): invert test for xgcc, should mean
9983 "if we're also building gcc, and it's a gcc that will run on the
9984 build machine, we want to use its includes instead of the system's
9985 default includes".
9986
9987 2000-08-03 Alexandre Oliva <aoliva@redhat.com>
9988
9989 * configure.in (libstdcxx_flags): Don't use `"'.
9990
9991 * config-ml.in: Adjust multilib search paths to the
9992 appropriate multilib tree.
9993
9994 2000-08-02 Alexandre Oliva <aoliva@redhat.com>
9995
9996 * configure.in (CHILL_FOR_TARGET, CXX_FOR_TARGET): Convert blanks to
9997 commas in $LANGUAGES.
9998
9999 2000-08-01 Alexandre Oliva <aoliva@redhat.com>
10000
10001 * configure.in (qCXX_FOR_TARGET): Use echo instead of expr.
10002
10003 2000-07-31 Alexandre Oliva <aoliva@redhat.com>
10004
10005 * configure.in (qCXX_FOR_TARGET): Quote `&' characters in
10006 CXX_FOR_TARGET for sed.
10007
10008 2000-07-30 Alexandre Oliva <aoliva@redhat.com>
10009
10010 * configure.in (CC_FOR_TARGET, CHILL_FOR_TARGET, CXX_FOR_TARGET):
10011 Do not override if already set in the environment or in configure.
10012 Don't duplicate $(FLAGS_FOR_TARGET) if it already appears in them.
10013 (FLAGS_FOR_TARGET): Don't use host directories on Canadian crosses.
10014
10015 2000-07-27 Alexandre Oliva <aoliva@redhat.com>
10016
10017 * Makefile.in (FLAGS_FOR_TARGET): New macro.
10018 (GCC_FOR_TARGET): Use it.
10019 (CC_FOR_TARGET, CXX_FOR_TARGET, CHILL_FOR_TARGET): Now defined...
10020 * configure.in: ... here.
10021 (FLAGS_FOR_TARGET): Define. Add ld build dir to -L path.
10022 (libstdcxx_flags): Define and append to CXX_FOR_TARGET.
10023
10024 2000-07-24 Alexandre Oliva <aoliva@redhat.com>
10025
10026 * Makefile.in (configure-target-libf2c): Depend on $(ALL_GCC).
10027 (configure-target-libchill, configure-target-libobjc): Likewise.
10028
10029 * configure.in: Use the same cache file for all target libs.
10030 * config-ml.in: But different cache files per multilib variant.
10031
10032 2000-07-23 Michael Sokolov <msokolov@ivan.Harhan.ORG>
10033
10034 * configure (topsrcdir): Don't use dirname.
10035
10036 2000-07-20 Jason Merrill <jason@redhat.com>
10037
10038 * configure.in: Remove all references to libg++ and librx.
10039
10040 * configure, configure.in, Makefile.in: Unify gcc and binutils.
10041
10042 2000-07-20 Hans-Peter Nilsson <hp@axis.com>
10043
10044 * config.sub: Update to subversions version 2000-07-06.
10045
10046 2000-07-12 Andrew Haley <aph@cygnus.com>
10047
10048 * configure.in (host_makefile_frag): Use mh-ia64pic on IA-64 hosts.
10049 (target_makefile_frag): Use mt-ia64pic on IA-64 targets.
10050
10051 2000-07-07 Phil Edwards <pme@sourceware.cygnus.com>
10052
10053 * symlink-tree: Check number of arguments.
10054
10055 2000-06-06 Andrew Cagney <cagney@b1.cygnus.com>
10056
10057 * texinfo/texinfo.tex: Update to version 2000-05-28.15.
10058
10059 2000-07-05 Jim Wilson <wilson@cygnus.com>
10060
10061 * Makefile.in (CXX_FOR_TARGET): Add libstdc++ to the library
10062 search path for a g++ extracted from the build tree. This
10063 will allow link tests run by configure scripts in
10064 subdirectories to succeed.
10065
10066 2000-07-01 Koundinya K <kk@ddeorg.soft.net>
10067
10068 * ltconfig: Add support for mips-dde-sysv4.2MP
10069
10070 2000-06-28 Corinna Vinschen <vinschen@cygnus.com>
10071
10072 * ltconfig: Check for host_os beeing one of `cygwin', `mingw' or
10073 `os2'. Force ac_cv_exeext to be ".exe" in that case.
10074
10075 2000-06-19 Timothy Wall <twall@cygnus.com>
10076
10077 * configure.in (noconfigdirs): Set noconfigdirs for tic54x target.
10078 * config.sub: Add tic54x target.
10079
10080 2000-06-07 Phillip Thomas <pthomas@suse.de>
10081
10082 * README-maintainer-mode: New file: Contains notes on using
10083 --enable-maintainer-mode with binutils.
10084
10085 2000-05-29 Andrew Cagney <cagney@b1.cygnus.com>
10086
10087 * texinfo/texinfo.tex: Update. Version from makeinfo 4.0.
10088
10089 2000-05-30 Andrew Cagney <cagney@b1.cygnus.com>
10090
10091 * config.sub: Import CVS version 1.167 Tue May 30 09:00:07 2000.
10092 * config.guess: Import CVS version 1.148 Tue May 30 09:00:06 2000
10093
10094 20000-05-21 H.J. Lu (hjl@gnu.org)
10095
10096 * Makefile.in (CC_FOR_TARGET): Make sure as/ld in the gcc
10097 directory are used if they exist. Make sure
10098 $(build_tooldir)/include is searched for header files,
10099 $(build_tooldir)/lib/ for library files.
10100 (GCC_FOR_TARGET): Likewise.
10101 (CXX_FOR_TARGET): Likewise.
10102
10103 2000-05-18 Jeffrey A Law (law@cygnus.com)
10104
10105 * configure.in (hppa*64*-*-*): Do build ld for this configuration.
10106
10107 2000-05-17 Alexandre Oliva <aoliva@cygnus.com>
10108
10109 * Makefile.in (configure-target-libiberty): Depend on
10110 configure-target-newlib.
10111
10112 2000-05-16 Alexandre Oliva <aoliva@cygnus.com>
10113
10114 * configure.in, Makefile.in: Merge all libffi-related
10115 configury stuff from the libgcj tree.
10116
10117 2000-05-16 Andrew Cagney <cagney@b1.cygnus.com>
10118
10119 Thu Apr 27 11:01:48 2000 Andrew Cagney <cagney@b1.cygnus.com>:
10120 * Makefile.in (do-tar-bz2, do-md5sum): Skip CVS directories.
10121
10122 2000-05-16 Andrew Cagney <cagney@b1.cygnus.com>
10123
10124 Wed Apr 26 17:03:53 2000 Andrew Cagney <cagney@b1.cygnus.com>:
10125 * Makefile.in (do-djunpack): New target. Update djunpack.bat with
10126 current version information. Add to proto-toplev directory.
10127 (gdb-taz): Build do-djunpack.
10128
10129 2000-05-15 David Edelsohn <edelsohn@gnu.org>
10130
10131 * configure.in: Special case powerpc*-*-aix* target_makefile_frag.
10132
10133 2000-05-13 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
10134
10135 * ltmain.sh: Preserve in relink_command any environment
10136 variables that may affect the linker behavior.
10137
10138 2000-05-12 Jeffrey A Law (law@cygnus.com)
10139
10140 * config.sub (basic_machine): Recognize hppa64 as a valid cpu type.
10141
10142 2000-05-10 Jim Wilson <wilson@cygnus.com>
10143
10144 * configure.in (ia64*-*-elf*): Add gdb and friends to noconfigdirs.
10145
10146 2000-05-08 Eli Zaretskii <eliz@is.elta.co.il>
10147
10148 * djunpack.bat: Change the Sed script to replace @V@ in fnchange.lst
10149 with the version name.
10150
10151 2000-05-01 Benjamin Kosnik <bkoz@cygnus.com>
10152
10153 * config.if: Tweak.
10154
10155 2000-04-23 Eli Zaretskii <eliz@is.elta.co.il>
10156
10157 * djunpack.bat: New file.
10158
10159 2000-04-19 Andrew Cagney <cagney@b1.cygnus.com>
10160
10161 * Makefile.in (taz, gdb-taz, gas.tar.bz2, binutils.tar.bz2,
10162 gas+binutils.tar.bz2, libg++.tar.bz2, gnats.tar.bz2, gdb.tar.bz2,
10163 dejagnu.tar.bz2, gdb+dejagnu.tar.bz2, insight.tar.bz2,
10164 insight+dejagnu.tar.bz2, newlib.tar.bz2): Pass MD5PROG to sub-make.
10165
10166 2000-04-16 Dave Pitts <dpitts@cozx.com>
10167
10168 * config.sub (case $basic_machine): Change default for "ibm-*"
10169 to "openedition".
10170
10171 2000-04-12 Andrew Cagney <cagney@b1.cygnus.com>
10172
10173 * Makefile.in (gdb-taz): New target. GDB specific archive.
10174 (do-md5sum): New target.
10175 (MD5PROG): Define.
10176 (PACKAGE): Default to TOOL.
10177 (VER): Default to a shell script.
10178 (taz): Rewrite target. Move real work to do-proto-toplev. Include
10179 md5 checksum generation.
10180 (do-proto-toplev): New target. Create $(PACKAGE)-$(VER) link.
10181 (do-tar-bz2): Delete creation of $(PACKAGE)-$(VER) link.
10182 (gdb.tar.bz2, dejagnu.tar.bz2, gdb+dejagnu.tar.bz2,
10183 insight.tar.bz2): Use gdb-taz to create archive.
10184
10185 2000-04-07 Andrew Cagney <cagney@b1.cygnus.com>
10186
10187 * configure (warn_cflags): Delete.
10188
10189 2000-04-05 Benjamin Kosnik <bkoz@cygnus.com>
10190 Martin v. Loewis <martin@loewis.home.cs.tu-berlin.de>
10191
10192 * configure.in (enable_libstdcxx_v3): Add.
10193 (target_libs): Add bits here to switch between libstdc++-v2 and
10194 libstdc++-v3.
10195 * config.if: And this file too.
10196 * Makefile.in: Add libstdc++-v3 targets.
10197
10198 2000-04-05 Michael Meissner <meissner@redhat.com>
10199
10200 * config.sub (d30v): Add d30v as a basic machine type.
10201
10202 2000-03-29 Jason Merrill <jason@casey.cygnus.com>
10203
10204 * configure.in: -linux-gnu*, not -linux-gnu.
10205
10206 2000-03-03 Andrew Cagney <cagney@b1.cygnus.com>
10207
10208 * Makefile.in (taz): Set PACKAGE to TOOL when not defined.
10209 (do-tar-bz2): Replace TOOL with PACKAGE.
10210 (gdb.tar.bz2): Remove GDBTK from GDB package.
10211 (gdb+dejagnu.tar.bz2, insight.tar.bz2, insight+dejagnu.tar.bz2,
10212 dejagnu.tar.bz2): New packages.
10213
10214 2000-02-27 Andreas Jaeger <aj@suse.de>
10215
10216 * configure.in: Add entry for mips*-*-linux*, move catch all
10217 *-*-*linux* entry below this one.
10218
10219 2000-02-27 Ian Lance Taylor <ian@zembu.com>
10220
10221 * ltconfig, ltmain.sh: Update to libtool 1.3.4.
10222
10223 2000-02-24 Nick Clifton <nickc@cygnus.com>
10224
10225 * config.sub: Support an OS of "wince".
10226
10227 2000-02-24 Andrew Cagney <cagney@b1.cygnus.com>
10228
10229 * config.guess, config.sub: Updated to match config's 2000-02-15
10230 version.
10231
10232 2000-02-23 Linas Vepstas <linas@linas.org>
10233
10234 * config.sub: Add support for Linux/IBM 370.
10235 * configure.in: Likewise.
10236
10237 2000-02-22 Nick Clifton <nickc@cygnus.com>
10238
10239 * configure.in: Add mips-pe, sh-pe and arm-wince-pe targets.
10240
10241 2000-02-20 Christopher Faylor <cgf@cygnus.com>
10242
10243 * config.guess: Guess "cygwin" rather than "cygwin32".
10244
10245 2000-02-16 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10246
10247 * configure (gcc_version): When setting, narrow search to
10248 lines containing `version_string'.
10249
10250 2000-02-15 Denis Chertykov <denisc@overta.ru>
10251
10252 * config.sub: Add support for avr target.
10253
10254 2000-02-01 Hans-Peter Nilsson <hp@bitrange.com>
10255
10256 * config.sub: Add mmix-knuth-mmixware.
10257
10258 2000-01-27 Christopher Faylor <cgf@redhat.com>
10259
10260 * Makefile.in (CC_FOR_TARGET): Add new winsup directory
10261 structure stuff to -L library search.
10262 (CXX_FOR_TARGET): Ditto.
10263 (CROSS_CHECK_MODULES): Fix spelling mistake.
10264
10265 2000-01-24 Mark Mitchell <mark@codesourcery.com>
10266
10267 * Makefile.in (CXX_FOR_TARGET): Use g++, not xgcc, to invoke
10268 the C++ compiler.
10269
10270 2000-01-12 Richard Henderson <rth@cygnus.com>
10271
10272 * configure.in: Don't build some bits for beos.
10273
10274 2000-01-12 Joel Sherrill (joel@OARcorp.com)
10275
10276 * Makefile.in (CC_FOR_TARGET): Use newlib libraries as well
10277 as include files.
10278
10279 2000-01-06 Geoff Keating <geoffk@cygnus.com>
10280
10281 * configure.in: Use mt-aix43 to handle *_TARGET defs,
10282 not mh-aix43.
10283
10284 1999-12-14 Richard Henderson <rth@cygnus.com>
10285
10286 * config.guess (alpha-osf, alpha-linux): Detect ev67.
10287 * config.sub: Accept alphaev[78], alphaev8.
10288
10289 1999-12-03 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
10290
10291 * config.guess, config.sub: Update from autoconf.
10292
10293 Tue Nov 23 00:57:41 1999 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
10294
10295 * config-ml.in (sparc*-*-*): Disable sparcv9 support if the
10296 necessary libraries are missing.
10297
10298 1999-10-25 Andreas Schwab <schwab@suse.de>
10299
10300 * configure: Fix quoting inside arguments of eval.
10301
10302 1999-10-21 Nick Clifton <nickc@cygnus.com>
10303
10304 * config-ml.in: Allow suppression of some ARM multilibs.
10305
10306 Tue Sep 7 23:33:57 1999 Linas Vepstas <linas@linas.org>
10307
10308 * config.guess: Add OS/390 match pattern.
10309 * config.sub: Add mvs, openedition targets.
10310 * configure.in (i370-ibm-opened*): New.
10311
10312 1999-09-04 Steve Chamberlain <sac@pobox.com>
10313
10314 * config.sub: Add support for configuring for pj.
10315
10316 1999-08-31 Nick Clifton <nickc@cygnus.com>
10317
10318 * config.sub (maybe_os): Add support for configuring for fr30.
10319
10320 1999-08-25 Nick Clifton <nickc@cygnus.com>
10321
10322 * configure.in: Do not configure or build ld for AIX
10323 platforms. ld is known to be broken on these platforms.
10324
10325 Wed Aug 25 01:12:25 1999 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
10326
10327 * config-ml.in: Pass compiler flag corresponding to multidirs to
10328 subdir configures.
10329
10330 1999-08-09 Ian Lance Taylor <ian@zembu.com>
10331
10332 * Makefile.in (LDFLAGS): Define.
10333
10334 1999-08-08 Mumit Khan <khan@xraylith.wisc.edu>
10335
10336 * configure.in (i[3456]-*-mingw32*): Don't put gprof in
10337 noconfigdirs.
10338 (*-*-cygwin*): Likewise.
10339
10340 1999-08-08 Ian Lance Taylor <ian@zembu.com>
10341
10342 * mkdep: New file.
10343 * Makefile.in (GAS_SUPPORT_DIRS): Add mkdep.
10344 (BINUTILS_SUPPORT_DIRS): Add mkdep.
10345
10346 From Eli Zaretskii <eliz@is.elta.co.il>:
10347 * configure (tmpfile): Change cONf$$ to cNf$$ to avoid an overly
10348 long file name when using DJGPP on MS-DOS.
10349
10350 Wed Aug 4 02:07:14 1999 Jeffrey A Law (law@cygnus.com)
10351
10352 * config.sub (vxworks case): Use os=-vxworks, not os=vxworks.
10353
10354 1999-07-30 Alan Modra <alan@spri.levels.unisa.edu.au>
10355
10356 * Makefile.in (check-target-libio): Remove all-target-libstdc++
10357 dependency as this causes "make check" to globally "make all"
10358
10359 Tue Jun 22 23:45:18 1999 Tom Tromey <tromey@cygnus.com>
10360
10361 * configure.in (target_libs): Added target-zlib.
10362 * Makefile.in (ALL_TARGET_MODULES): Added zlib.
10363 (CONFIGURE_TARGET_MODULES): Likewise.
10364 (CHECK_TARGET_MODULES): Likewise.
10365 (INSTALL_TARGET_MODULES): Likewise.
10366 (CLEAN_TARGET_MODULES): Likewise.
10367 (configure-target-zlib): New target.
10368 (all-target-zlib): Likewise.
10369 (all-target-libjava): Depend on all-target-zlib.
10370 (configure-target-libjava): Depend on configure-target-zlib.
10371
10372 * Makefile.in (configure-target-libjava): Depend on
10373 configure-target-newlib.
10374 (configure-target-boehm-gc): New target.
10375 (configure-target-qthreads): New target.
10376
10377 * configure.in (target_libs): Added target-qthreads.
10378 * Makefile.in (ALL_TARGET_MODULES): Added qthreads.
10379 (CONFIGURE_TARGET_MODULES): Likewise.
10380 (CHECK_TARGET_MODULES): Likewise.
10381 (INSTALL_TARGET_MODULES): Likewise.
10382 (CLEAN_TARGET_MODULES): Likewise.
10383 (all-target-qthreads): New target.
10384 (configure-target-libjava): Depend on configure-target-qthreads.
10385 (all-target-libjava): Depend on all-target-qthreads.
10386
10387 * Makefile.in (ALL_TARGET_MODULES): Added libjava, boehm-gc.
10388 (CONFIGURE_TARGET_MODULES): Likewise.
10389 (CHECK_TARGET_MODULES): Likewise.
10390 (INSTALL_TARGET_MODULES): Likewise.
10391 (CLEAN_TARGET_MODULES): Likewise.
10392 (all-target-libjava): New target.
10393 (all-target-boehm-gc): Likewise.
10394 * configure.in (target_libs): Added libjava, boehm-gc.
10395
10396 1999-07-22 Ian Lance Taylor <ian@zembu.com>
10397
10398 * Makefile.in (binutils.tar.bz2): Don't pass makeall.bat and
10399 configure.bat in SUPPORT_FILES.
10400 (gas+binutils.tar.bz2): Likewise.
10401
10402 * makeall.bat: Remove; obsolete.
10403
10404 1999-07-21 Ian Lance Taylor <ian@zembu.com>
10405
10406 From Mark Elbrecht:
10407 * configure.bat: Remove; obsolete.
10408
10409 1999-07-11 Ian Lance Taylor <ian@zembu.com>
10410
10411 * configure: Add -W -Wall to the default CFLAGS when compiling with
10412 gcc.
10413
10414 Thu Jul 8 12:32:23 1999 John David Anglin <dave@hiauly1.hia.nrc.ca>
10415
10416 * configure.in: Build ld, binutils & gas for hppa*-*-linux-gnu*.
10417
10418 1999-06-30 Mark Mitchell <mark@codesourcery.com>
10419
10420 * configure.in: Build ld on IRIX6.
10421
10422 1999-06-12 Ian Lance Taylor <ian@zembu.com>
10423
10424 * Makefile.in: Change distribution targets to use bzip2 instead of
10425 gzip.
10426 (TEXINFO_SUPPORT): Set to just texinfo/texinfo.tex.
10427 (taz): Don't use texinfo/gpl.texinfo or texinfo/lgpl.texinfo.
10428
10429 1999-06-04 Nick Clifton <nickc@cygnus.com>
10430
10431 * config.sub: Add mcore target.
10432
10433 1999-05-30 Cort Dougan <cort@cs.nmt.edu>
10434
10435 * config.guess (ppc-*-linux-gnu): Also use ld emul elf32ppclinux.
10436
10437 1999-05-25 H.J. Lu (hjl@gnu.org)
10438
10439 * config.guess (dummy): Changed to $dummy.
10440
10441 1999-05-24 Nick Clifton <nickc@cygnus.com>
10442
10443 * config.sub: Tidied up case statements.
10444
10445 1999-05-22 Ben Elliston <bje@cygnus.com>
10446
10447 * config.guess: Handle NEC UX/4800. Contributed by Jiro Takabatake
10448 <jiro@din.or.jp>.
10449
10450 * config.guess: Merge with FSF version. Future changes will be
10451 more accurately recorded in this ChangeLog.
10452 * config.sub: Likewise.
10453
10454 1999-05-20 Stephen L Moshier <moshier@world.std.com>
10455
10456 * Makefile.in (GCC_FOR_TARGET): Add -I$(build_tooldir)/include.
10457
10458 1999-04-30 Tom Tromey <tromey@cygnus.com>
10459
10460 * ltmain.sh: [mode link] Always use CC given by ltconfig.
10461
10462 1999-04-23 Tom Tromey <tromey@cygnus.com>
10463
10464 * ltconfig, ltmain.sh: Update to libtool 1.2f.
10465
10466 1999-04-20 Drew Moseley <dmoseley@cygnus.com>
10467
10468 * configure.in (noconfigdirs): Don't build libstub for arm-elf targets.
10469 (noconfigdirs): Don't build any bsp stuff for for arm-oabi targets.
10470 Bad merge removed these two changes.
10471
10472 Tue Apr 13 22:50:54 1999 Donn Terry (donn@interix.com)
10473 Martin Heller (Ing.-Buero_Heller@t-online.de)
10474
10475 * config.guess (interix Alpha): Add.
10476
10477 1999-04-11 Richard Henderson <rth@cygnus.com>
10478
10479 * configure.in (i?86-*-beos*): Do config gperf; don't config
10480 gdb, newlib, or libgloss.
10481
10482 1999-04-11 Alexandre Oliva <oliva@dcc.unicamp.br>
10483
10484 * config-ml.in: On mips*-*-*, if multidirs contains mabi=64, try to
10485 link a trivial program with -mabi=64. If it fails, remove mabi=64
10486 from multidirs.
10487
10488 1999-04-10 Philipp Thomas (kthomas@gwdg.de)
10489
10490 * config.sub: Set basic_machine to i586 when target_alias = k6-*.
10491
10492 1999-04-08 Nick Clifton <nickc@cygnus.com>
10493
10494 * config.sub: Add support for mcore targets.
10495
10496 1999-04-07 Michael Meissner <meissner@cygnus.com>
10497
10498 * configure.in (d30v-*): Use config/mt-d30v as makefile fragment,
10499 not mt-ospace, in order to shut up assembler warning about using
10500 symbols that are named the same as registers.
10501
10502 1999-04-07 Drew Moseley <dmoseley@cygnus.com>
10503
10504 * Makefile.in (all-target-cygmon): Added all-target-bsp to the
10505 dependency list for all-target-cygmon.
10506
10507 1999-04-05 Doug Evans <devans@casey.cygnus.com>
10508
10509 * config-ml.in: Check $host, not $target, for selective multilibs.
10510 (arm-*-*): Allow disabling of biendian, h/w fp, 26 bit apcs,
10511 thumb interworking, and underscore prefix multilibs.
10512
10513 1999-04-04 Ian Lance Taylor <ian@zembu.com>
10514
10515 * missing: Update to version from current automake.
10516
10517 Fri Apr 2 15:11:32 1999 H.J. Lu (hjl@gnu.org)
10518
10519 * configure (gxx_include_dir): Removed.
10520
10521 * configure.in (gxx_include_dir): Handle it.
10522 * Makefile.in: Likewise.
10523
10524 1999-03-29 Gavin Romig-Koch <gavin@cygnus.com>
10525
10526 * config.sub (mips64vr4111,mips64vr4111el) Add.
10527
10528 1999-03-21 Ben Elliston <bje@cygnus.com>
10529
10530 * config.guess: Correct typo for detecting ELF on FreeBSD.
10531
10532 Thu Mar 18 00:17:50 1999 Mark Elbrecht <snowball3@usa.net>
10533
10534 * configure.in (pc-msdosdjgpp): Set host_makefile_frag to
10535 config/mh-djgpp.
10536
10537 Thu Mar 11 18:37:23 1999 Drew Moseley <dmoseley@cygnus.com>
10538
10539 * Makefile.in (all-target-bsp): Added all-gcc all-binutils and
10540 all-target-newlib to dependency list for all-target-bsp.
10541
10542 Thu Mar 11 01:19:31 1999 Mumit Khan <khan@xraylith.wisc.edu>
10543
10544 * config.sub: Add i386-uwin support.
10545 * config.guess: Likewise.
10546
10547 Thu Mar 11 01:07:55 1999 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
10548
10549 * configure.in: cleanup, add mh-*pic handling for arm, special
10550 case powerpc*-*-aix*
10551
10552 Wed Mar 10 18:35:07 1999 Jeff Johnston <jjohnstn@cygnus.com>
10553
10554 * configure.in (noconfigdirs): Removed target-libgloss so libnosys.a
10555 can be built.
10556
10557 Wed Mar 10 17:39:09 1999 Drew Moseley <dmoseley@cygnus.com>
10558
10559 * configure.in: Added bsp support to arm-*-coff and arm-*-elf
10560 targets.
10561
10562 1999-03-02 Nick Clifton <nickc@cygnus.com>
10563
10564 * config.sub: Rename CYGNUS LOCAL to EGCS LOCAL
10565
10566 1999-02-28 Geoffrey Noer <noer@cygnus.com>
10567
10568 * config.sub: Check for "cygwin*" rather than "cygwin32*"
10569
10570 1999-02-24 Nick Clifton <nickc@cygnus.com>
10571
10572 * config.sub: Fix typo in arm recognition.
10573
10574 1999-02-24 Drew Moseley <dmoseley@cygnus.com>
10575
10576 * configure.in (noconfigdirs): Changed target_configdirs to
10577 include target-bsp only for m68k-*-elf* and m68k-*-coff*
10578 rather than m68k-*-* since it is not known to work on
10579 m68k-aout. Ditto for arm-*-*oabi.
10580
10581 1999-02-24 Stan Shebs <shebs@andros.cygnus.com>
10582
10583 * configure.in (*-*-windows*): Remove, no longer used.
10584
10585 1999-02-19 Ben Elliston <bje@cygnus.com>
10586
10587 * config.guess: Automatically recognise ELF on FreeBSD. From Niall
10588 Smart and improved by Andrew Cagney.
10589
10590 1999-02-18 Marc Espie <espie@cvs.openbsd.org>
10591
10592 * config.guess: Recognize openbsd-*-hppa.
10593
10594 1999-02-17 H.J. Lu (hjl@gnu.org)
10595
10596 * Makefile.in (REALLY_SET_LIB_PATH): Append $$$(RPATH_ENVVAR)
10597 only if it is not empty.
10598
10599 1999-02-17 Nick Clifton <nickc@cygnus.com>
10600
10601 Patch from: Scott Bambrough <scottb@corelcomputer.com>
10602
10603 * config.guess: Modified to recognize uname's armv* syntax.
10604
10605 * config.sub: Modified to recognize uname's armv* syntax.
10606
10607 1999-02-17 Mark Salter <msalter@cygnus.com>
10608
10609 * configure.in: Added target-bsp for sparclite.
10610
10611 1999-02-08 Richard Henderson <rth@cygnus.com>
10612
10613 * config.sub: Recognize alphapca5[67] and up to alphaev8.
10614
10615 1999-02-08 Nick Clifton <nickc@cygnus.com>
10616
10617 * configure.in: Add support for strongarm port.
10618 * config.sub: Add support for strongarm target.
10619
10620 1999-02-07 Mumit Khan <khan@xraylith.wisc.edu>
10621
10622 * configure.in (*-*-cygwin32*): Use config/mh-cygwin instead of
10623 the old name config/mh-cygwin32.
10624 Enable texinfo.
10625
10626 1999-02-04 Ian Lance Taylor <ian@cygnus.com>
10627
10628 * configure.in: Do build ld for ix86 Solaris.
10629
10630 1999-02-02 Jim Wilson <wilson@cygnus.com>
10631
10632 * Makefile.in (EXTRA_GCC_FLAGS): Set AR to $AR instead of
10633 $AR_FOR_TARGET. Likewise for RANLIB.
10634
10635 1999-02-02 Catherine Moore <clm@cygnus.com>
10636
10637 * config.sub (oabi): Recognize.
10638 * configure.in (arm-*-oabi): Handle.
10639
10640 1999-01-30 Robert Lipe (robertlipe@usa.net)
10641
10642 * config.guess: Improve detection of i686 on UnixWare 7.
10643
10644 1999-01-30 Mumit Khan <khan@xraylith.wisc.edu>
10645
10646 * config.guess: Add support for i386-pc-interix.
10647 * config.sub: Likewise.
10648 * configure.in: Likewise.
10649
10650 1999-01-18 Christopher Faylor <cgf@cygnus.com>
10651
10652 * Makefile.in: Remove unneeded all-target-libio from
10653 from all-target-winsup target since it is now unneeded.
10654 Add all-target-libtermcap in its place since it is now
10655 needed.
10656
10657 1998-12-30 Christopher Faylor <cgf@cygnus.com>
10658
10659 * configure.in: makefile stub for cygwin target is probably
10660 unnecessary. Remove it for now.
10661
10662 1998-12-30 Christopher Faylor <cgf@cygnus.com>
10663
10664 * configure.in: libtermcap.a should be built when cygwin is the
10665 target as well as the host.
10666 * config.guess: Allow mixed case in cygwin uname output.
10667 * Makefile.in: Add libtermcap target.
10668
10669 1998-12-23 Jeffrey A Law (law@cygnus.com)
10670
10671 * config.sub: Clean up handling of hppa2.0.
10672
10673 1998-12-22 Rodney Brown (rodneybrown@pmsc.com)
10674
10675 * config.guess: Use C code to identify more HP machines.
10676
10677 Thu Dec 17 01:22:30 1998 Jeffrey A Law (law@cygnus.com)
10678
10679 * config.sub: Handle hppa2.0.
10680
10681 Tue Dec 15 17:02:58 1998 Bob Manson <manson@charmed.cygnus.com>
10682
10683 * configure.in: Add cygmon for x86-coff and x86-elf. Configure
10684 cygmon for all sparclite targets, regardless of object format.
10685
10686 1998-12-15 Mark Salter <msalter@cygnus.com>
10687
10688 * configure.in: Added target-bsp for several target architectures.
10689
10690 * Makefile.in: Added rules for bsp.
10691
10692 Fri Dec 4 01:34:02 1998 Jeffrey A Law (law@cygnus.com)
10693
10694 * config.guess: Improve detection of hppa2.0 processors.
10695
10696 Fri Dec 4 01:33:05 1998 Niall Smart <nialls@euristix.ie>
10697
10698 * config.guess: Recognize FreeBSD using ELF automatically.
10699
10700 1998-11-26 Manfred Hollstein <manfred@s-direktnet.de>
10701
10702 * configure (skip-this-dir): Add handling for new shell script, which
10703 might be created by a sub-directory's configure to indicate, this particular
10704 directory is "unwanted".
10705 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): Likewise.
10706
10707 Wed Nov 18 18:28:45 1998 Geoffrey Noer <noer@cygnus.com>
10708
10709 * ltconfig: import from libtool, after changing libtool to
10710 account for the cygwin name change.
10711
10712 Wed Nov 18 18:09:14 1998 Geoffrey Noer <noer@cygnus.com>
10713
10714 * Makefile.in: CC_FOR_TARGET and CXX_FOR_TARGET should also
10715 include newlib/libc/sys/cygwin and newlib/libc/sys/cygwin32.
10716
10717 Wed Nov 18 20:13:29 1998 Christopher Faylor <cgf@cygnus.com>
10718
10719 * configure.in: Add libtermcap to list of cygwin dependencies.
10720
10721 1998-11-17 Geoffrey Noer <noer@cygnus.com>
10722
10723 * Makefile.in: modify CC_FOR_TARGET and CXX_FOR_TARGET so that
10724 they include winsup/include when it's a cygwin target.
10725
10726 1998-11-12 Tom Tromey <tromey@cygnus.com>
10727
10728 * configure.in (host_tools): Added zip.
10729 * Makefile.in (all-target-libjava): Depend on all-zip.
10730 (all-zip): New target.
10731 (ALL_MODULES): Added all-zip.
10732 (NATIVE_CHECK_MODULES): Added check-zip.
10733 (INSTALL_MODULES): Added install-zip.
10734 (CLEAN_MODULES): Added clean-zip.
10735
10736 1998-11-12 Geoffrey Noer <noer@cygnus.com>
10737
10738 * Makefile.in: lose "32" from comment about cygwin.
10739
10740 1998-11-05 Nick Clifton <nickc@cygnus.com>
10741
10742 * configure.in: Use -Os to build target libraries for the fr30.
10743
10744 1998-11-04 Dave Brolley <brolley@cygnus.com>
10745
10746 * config.sub: Add fr30.
10747
10748 1998-11-02 Geoffrey Noer <noer@cygnus.com>
10749
10750 * configure.in: drop "32" from config/mh-cygwin32. Check
10751 cygwin* instead of cygwin32*.
10752 * config.sub: Check cygwin* instead of cygwin32*.
10753
10754 1998-10-22 Robert Lipe <robertl@dgii.com>
10755
10756 * config.guess: Match any version of Unixware7.
10757
10758 1998-10-20 Syd Polk <spolk@cygnus.com>
10759
10760 * Makefile.in configure.in: Add the ability to use tcl8.1 and tk8.1
10761 if desired.
10762
10763 1998-10-18 Jeffrey A Law (law@cygnus.com)
10764
10765 * config.if (cxx_interface, libstdcxx_interface): Do not try to set
10766 these if the appropriate directories and files to not exist.
10767
10768 1998-10-14 Jeffrey A Law (law@cygnus.com)
10769
10770 * Makefile.in (DEVO_SUPPORT): Add config.if.
10771
10772 1998-10-13 Manfred Hollstein <manfred@s-direktnet.de>
10773
10774 * configure: Add pattern to replace "build_tooldir"'s
10775 definition in the generated Makefile with "tooldir"'s
10776 actual value.
10777
10778 Tue Oct 13 09:17:06 1998 Jeffrey A Law (law@cygnus.com)
10779
10780 * config.sub: Bring back lost sparcv9.
10781
10782 * Makefile.in (all-snvavigator): Remove all-flexlm dependency.
10783
10784 Mon Oct 12 12:09:44 1998 Jeffrey A Law (law@cygnus.com)
10785
10786 * Makefile.in (CHILL_FOR_TARGET): Mirror recent changes to
10787 CC_FOR_TARGET and friends.
10788
10789 Mon Oct 12 12:09:30 1998 Alexandre Oliva <oliva@dcc.unicamp.br>
10790
10791 * Makefile.in (build_tooldir): New variable, same as tooldir.
10792 (CC_FOR_TARGET, GCC_FOR_TARGET, CXX_FOR_TARGET): Add
10793 -B$(build_tooldir)/bin/.
10794 (BASE_FLAGS_TO_PASS): Pass build_tooldir down.
10795
10796 Wed Sep 30 22:20:50 1998 Robert Lipe <robertl@dgii.com>
10797
10798 * config.sub: Add support for i[34567]86-pc-udk.
10799 * configure.in: Likewise.
10800
10801 Wed Sep 30 19:23:48 1998 Geoffrey Noer <noer@cygnus.com>
10802
10803 * Makefile.in: add bzip2 package building bits for user
10804 tools module
10805 * configure.in: ditto
10806
10807 Wed Sep 30 03:00:05 1998 Jeffrey A Law (law@cygnus.com)
10808
10809 * Makefile.in (TARGET_CONFIGDIRS): Add libobjc.
10810 (ALL_TARGET_MODULES): Add all-target-libobjc.
10811 (CONFIGURE_TARGET_MODULES, CHECK_TARGET_MODULES): Similarly.
10812 (INSTALL_TARGET_MODULES, CLEAN_TARGET_MODULES): Similarly.
10813 (all-target-libchill): Add dependencies.
10814 * configure.in (target_libs): Add libchill.
10815
10816 1998-09-30 Manfred Hollstein <manfred@s-direktnet.de>
10817
10818 * configure.in (target_subdir): Remove duplicate line.
10819
10820 Tue Sep 29 22:45:41 1998 Felix Lee <flee@cygnus.com>
10821
10822 * Makefile.in (all-automake): fix dependencies.
10823
10824 Mon Sep 28 04:04:27 1998 Jeffrey A Law (law@cygnus.com)
10825
10826 * configure.in: Minor cleanups for building in the $(target_alias)
10827 subdir.
10828
10829 1998-09-22 Jim Wilson <wilson@cygnus.com>
10830
10831 * Makefile.in (bootstrap): Set r and s before make all. Use
10832 BASE_FLAGS_TO_PASS in make all.
10833 (cross): Likewise.
10834
10835 1998-09-20 Mark Mitchell <mark@markmitchell.com>
10836
10837 * Makefile.in (bootstrap): Pass TARGET_FLAGS_TO_PASS to `make all'.
10838
10839 Sun Sep 20 00:13:02 1998 Richard Henderson <rth@cygnus.com>
10840
10841 * config.sub: Fix typo in last change.
10842
10843 1998-09-19 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
10844
10845 * config.sub: Add support for C4x target.
10846 * configure.in: Likewise.
10847
10848 1998-09-13 David S. Miller <davem@pierdol.cobaltmicro.com>
10849
10850 * config.sub: Recognize sparcv9 just like sparc64.
10851
10852 Wed Sep 9 15:44:52 1998 Robert Lipe <robertl@dgii.com>
10853
10854 * config.guess: Match "Pent II" or "PentII" for OpenServer.
10855
10856 Tue Sep 8 01:18:39 1998 Jeffrey A Law (law@cygnus.com)
10857
10858 * config.guess: Correctly identify Pentium II sco boxes.
10859
10860 * config.guess: Fix "tr" code. From Weiwen Liu.
10861
10862 Sat Sep 5 13:56:52 1998 John Hughes <john@Calva.COM>
10863
10864 * configure.in: Do not assume x86-svr4 or x86-unixware can handle
10865 stabs.
10866
10867 Sat Sep 5 02:12:02 1998 Jeffrey A Law (law@cygnus.com)
10868
10869 * Makefile.in (TARGET_CONFIGDIRS): Add libchill.
10870 (ALL_TARGET_MODULES): Add all-target-libchill.
10871 (CONFIGURE_TARGET_MODULES, CHECK_TARGET_MODULES): Similarly.
10872 (INSTALL_TARGET_MODULES, CLEAN_TARGET_MODULES): Similarly.
10873 (all-target-libchill): Add dependencies.
10874 * configure.in (target_libs): Add libchill.
10875
10876 Sun Aug 30 22:27:02 1998 Lutz Wohlrab <lutz.wohlrab@informatik.tu-chemnitz.de>
10877
10878 * config.guess: Avoid assumptions about "tr" behaves when
10879 LANG is set to something other than English.
10880
10881 Sun Aug 30 22:14:44 1998 H.J. Lu (hjl@gnu.org)
10882
10883 * configure (gxx_include_dir): Changed to
10884 '${prefix}/include/g++'-${libstdcxx_interface}.
10885
10886 * config.if: New to determine the interfaces.
10887
10888 Sun Aug 30 21:15:19 1998 Mark Klein (mklein@dis.com)
10889
10890 * config.guess: Detect and handle MPE/IX.
10891 * config.sub: Deal with MPE/IX.
10892
10893 Sat Aug 29 14:32:55 1998 David Edelsohn <edelsohn@mhpcc.edu>
10894
10895 * configure.in: Use mh-aix43.
10896
10897 1998-07-29 Manfred Hollstein <manfred@s-direktnet.de>
10898
10899 * configure: Fix --without/--disable cases for gxx-include-dir.
10900
10901 Fri Aug 28 12:28:26 1998 Per Bothner <bothner@cygnus.com>
10902
10903 * mdata-sh: Imported. Needed for automake support.
10904
10905 Thu Aug 13 12:49:29 1998 H.J. Lu <hjl@gnu.org>
10906
10907 * Makefile.in (taz): Try "chmod -R og=u ." before
10908 "chmod og=u `find . -print`".
10909
10910 Fri Jul 31 09:38:33 1998 Catherine Moore <clm@cygnus.com>
10911
10912 * configure.in: Add arm-elf and thumb-elf support.
10913
10914 Mon Jul 27 16:23:58 1998 Doug Evans <devans@canuck.cygnus.com>
10915
10916 * Makefile.in: Undo previous patch.
10917
10918 Fri Jul 24 19:55:24 1998 Doug Evans <devans@canuck.cygnus.com>
10919
10920 * Makefile.in (INSTALL_TARGET): Move EXTRA_TARGET_HOST_INSTALL_MODULES
10921 to here ...
10922 (install-no-fixedincludes): and here
10923 (INSTALL_MODULES): ... from here.
10924
10925 Fri Jul 24 17:01:42 1998 Ian Lance Taylor <ian@cygnus.com>
10926
10927 * config.sub: Merge with FSF.
10928
10929 * config.guess: Merge with FSF.
10930
10931 Fri Jul 24 08:43:36 1998 Doug Evans <devans@canuck.cygnus.com>
10932
10933 * configure (extraconfigdirs): New variable.
10934 (SUBDIRS): Add extraconfigdirs and recurse on them too.
10935 * Makefile.in (all): Move higher in file.
10936 (EXTRA_TARGET_HOST_ALL_MODULES): New variable.
10937 (EXTRA_TARGET_HOST_{INSTALL,CHECK}_MODULES): New variables.
10938 (ALL_MODULES): Add EXTRA_TARGET_HOST_ALL_MODULES.
10939 (CROSS_CHECK_MODULES): Add EXTRA_TARGET_HOST_CHECK_MODULES.
10940 (INSTALL_MODULES): Add EXTRA_TARGET_HOST_INSTALL_MODULES.
10941
10942 1998-07-23 Brendan Kehoe <brendan@cygnus.com>
10943
10944 * Makefile.in (all-target-libjava): Depend on all-gcc and
10945 all-target-newlib.
10946 (configure-target-libjava): Depend on $(ALL_GCC).
10947
10948 Sat Jul 18 14:32:43 CDT 1998 Robert Lipe <robertl@dgii.com>
10949
10950 * config.guess: (*-pc-sco3.2v5) Add detection for Pentium II.
10951 (*-pc-unixware7) Add detection for Pentium II, Pentium Pro.
10952
10953 Fri Jul 17 13:30:18 1998 Ian Lance Taylor <ian@cygnus.com>
10954
10955 * ylwrap: Change absolute path checks to check for DOS style path
10956 names.
10957
10958 * ylwrap: Don't use a full path name if the source file is in the
10959 same directory. From hjl@lucon.org (H.J. Lu).
10960
10961 * config-ml.in: Default to being verbose, to match Feb 18 change to
10962 configure.
10963
10964 Thu Jul 16 12:29:51 1998 Ian Lance Taylor <ian@cygnus.com>
10965
10966 Brought over from egcs:
10967
10968 Sat Jun 27 22:46:32 1998 Jeffrey A Law (law@cygnus.com)
10969
10970 * configure.in (target_subdir): Set to ${target_alias} instead
10971 of "libraries".
10972
10973 Mon Sep 1 16:45:44 1997 Jim Wilson <wilson@cygnus.com>
10974
10975 * configure.in (target_subdir): Set to libraries if enable_multilib.
10976
10977 Wed Jul 15 01:00:54 1998 Ian Lance Taylor <ian@cygnus.com>
10978
10979 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): If there are any
10980 multilibs, force reconfiguration the first time we create
10981 multilib.out in a subdirectory, in case TARGET_SUBDIR is `.'.
10982
10983 Tue Jul 14 23:41:03 1998 Ian Lance Taylor <ian@cygnus.com>
10984
10985 * configure.in: Strip any --no option from CONFIG_ARGUMENTS, to
10986 avoid confusion with --no-recursion.
10987
10988 Tue Jul 14 15:37:41 1998 Geoffrey Noer <noer@cygnus.com>
10989
10990 * configure.in: Win32 hosts shouldn't use install -x
10991 * install-sh: remove -x option, and special .exe-handling
10992 hack.
10993
10994 Tue Jul 14 15:28:41 1998 Richard Henderson <rth@cygnus.com>
10995
10996 * config.guess: Recognize i586-pc-beos.
10997 * configure.in: Don't build some bits for beos.
10998
10999 Tue Jul 14 13:22:18 1998 Ian Lance Taylor <ian@cygnus.com>
11000
11001 * configure: If CC is set but CFLAGS is not, and CC is gcc, make
11002 CFLAGS default to -O2.
11003
11004 * ltmain.sh: Add some hacks to make SunOS --enable-shared work
11005 when using GNU ld.
11006
11007 Fri Jul 10 13:18:23 1998 Ian Lance Taylor <ian@cygnus.com>
11008
11009 * ltmain.sh: Correct install when using a different shell.
11010
11011 Tue Jul 7 15:24:38 1998 Ian Lance Taylor <ian@cygnus.com>
11012
11013 * ltconfig, ltmain.sh: Update to libtool 1.2b.
11014
11015 Thu Jul 2 13:57:36 1998 Klaus Kaempf <kkaempf@rmi.de>
11016
11017 * makefile.vms: Update to build binutils/makefile.vms. Add install
11018 target.
11019
11020 Wed Jul 1 16:45:21 1998 Ian Lance Taylor <ian@cygnus.com>
11021
11022 * ltconfig: Update to correct AIX handling.
11023
11024 Sat Jun 27 22:46:32 1998 Jeffrey A Law (law@cygnus.com)
11025
11026 * Makefile.in (BASE_FLAGS_TO_PASS): Add TARGET_SUBDIR.
11027
11028 * configure.in (target_subdir): Set to ${target_alias} instead
11029 of "libraries".
11030
11031 1998-06-26 Manfred Hollstein <manfred@s-direktnet.de>
11032
11033 * Makefile.in (BASE_FLAGS_TO_PASS): Add gcc_version_trigger.
11034 (Makefile): Depend on $(gcc_version_trigger).
11035
11036 * configure (gcc_version): Change default initializer to empty
11037 string.
11038 (gcc_version_trigger): New variable; pass this variable down
11039 to subdir configures to enable them checking gcc's version
11040 themselves. Emit make macros for both gcc_version vars.
11041 (topsrcdir): Initialize reliably.
11042 (recursion line): Remove --with-gcc-version=${gcc_version}.
11043
11044 1998-06-24 Manfred Hollstein <manfred@s-direktnet.de>
11045
11046 * configure (enable_version_specific_runtime_libs): Implement new flag
11047 --enable-version-specific-runtime-libs which installs C++ runtime stuff
11048 in $(libsubdir); emit definition in each generated Makefile.
11049 (gxx_include_dir): Initialize depending on
11050 $enable_version_specific_runtime_libs.
11051
11052 1998-06-24 Manfred Hollstein <manfred@s-direktnet.de>
11053
11054 * configure (gcc_version): Initialize properly depending on
11055 how and where configure is started.
11056 (recursion line): Pass a --with-gcc-version=${gcc_version}
11057 to configures in subdirs.
11058
11059 Wed Jun 24 16:01:59 1998 John Metzler <jmetzler@cygnus.com>
11060
11061 * configure.in (noconfigdirs): Add configure pattern for mips tx39
11062 cygmon
11063
11064 Tue Jun 23 22:42:32 1998 Mark Alexander <marka@cygnus.com>
11065
11066 * configure.in: Add cygmon and libstub support for mn10200.
11067
11068 1998-06-19 Manfred Hollstein <manfred@s-direktnet.de>
11069
11070 * configure (gcc_version): Add new variable describing the
11071 particular gcc version we're building.
11072 * Makefile.in (libsubdir): Add new macro for the directory
11073 in which the compiler finds executables, libraries, etc.
11074 (BASE_FLAGS_TO_PASS): Pass down gcc_version, target_alias
11075 and libsubdir.
11076
11077 Fri Jun 19 02:36:59 1998 Alexandre Oliva <oliva@dcc.unicamp.br>
11078
11079 * Makefile.in (local-clean): Remove *.log.
11080 (warning.log): Built with warn_summary from build.log.
11081 (mail-report.log): Run test_summary.
11082 (mail-report-with-warnings.log): Run test_summary including
11083 warning.log in the report.
11084
11085 Thu Jun 18 11:26:03 1998 Robert Lipe <robertl@dgii.com>
11086
11087 * config.guess: Detection of Pentium II for *-sco-3.2v5*.
11088
11089 Mon Jun 15 14:53:54 1998 Andrew Cagney <cagney@b1.cygnus.com>
11090
11091 * Makefile.in (grep): Grep no longer depends on libiberty.
11092
11093 Fri Jun 12 14:03:34 1998 Syd Polk <spolk@cygnus.com>
11094
11095 * Makefile.in: all-snavigator needs all-libgui.
11096
11097 Thu Jun 11 19:43:47 1998 Mark Alexander <marka@cygnus.com>
11098
11099 * configure.in: Add cygmon and libstub support for mn10300.
11100
11101 Wed Jun 10 11:19:47 1998 Ian Lance Taylor <ian@cygnus.com>
11102
11103 * missing: Update to version from automake 1.3.
11104
11105 * ltmain.sh: On installation, don't get confused if the same name
11106 appears more than once in the list of library names.
11107
11108 Wed Jun 3 14:51:42 1998 Ian Lance Taylor <ian@cygnus.com>
11109
11110 * config.sub: Accept m68060 and m5200 as CPU names.
11111
11112 Mon Jun 1 17:25:16 1998 Ian Lance Taylor <ian@cygnus.com>
11113
11114 * configure: Use && rather than using -a in test, because odd
11115 strings can confuse test.
11116 * configure.in: Likewise.
11117
11118 Thu May 28 19:31:13 1998 Ian Lance Taylor <ian@cygnus.com>
11119
11120 * ltconfig, ltmain.sh: Bring in Visual C++ support.
11121
11122 Sat May 23 23:44:13 1998 Alexandre Oliva <oliva@dcc.unicamp.br>
11123
11124 * Makefile.in (boostrap2-lean, bootstrap3-lean,
11125 bootstrap4-lean): New targets.
11126
11127 Mon May 11 23:55:56 1998 Jeffrey A Law (law@cygnus.com)
11128
11129 * mpw-* Delete. Not used.
11130
11131 Mon May 11 23:11:34 1998 Jeffrey A Law (law@cygnus.com)
11132
11133 * COPYING.LIB: Update FSF address.
11134
11135 Fri May 8 01:30:20 1998 Ian Lance Taylor <ian@cygnus.com>
11136
11137 * ltconfig, ltmain.sh: Update to libtool 1.2a.
11138
11139 * Makefile.in (GASB_SUPPORT_DIRS): Remove intl; already included via
11140 GAS_SUPPORT_DIRS.
11141
11142 Thu May 7 17:27:35 1998 Ian Lance Taylor <ian@cygnus.com>
11143
11144 * ltconfig, ltmain.sh: Avoid producing a version number if
11145 -version-info was not used.
11146
11147 Tue May 5 18:02:24 1998 Ian Lance Taylor <ian@cygnus.com>
11148
11149 * configure.in: Add --with-newlib to CONFIG_ARGUMENTS if we are
11150 building with newlib.
11151
11152 1998-04-30 Paul Eggert <eggert@twinsun.com>
11153
11154 * Makefile.in (EXTRA_GCC_FLAGS): Remove backslash at end;
11155 Solaris `make' causes it to continue to next definition.
11156
11157 Tue Apr 28 16:24:24 1998 Jason Molenda (crash@bugshack.cygnus.com)
11158
11159 * Makefile.in (install-gdbtk): Call this 'install-gdb' so that
11160 the right GUI libraries and files are installed along with GDB.
11161
11162 Tue Apr 28 18:11:24 1998 Ian Lance Taylor <ian@cygnus.com>
11163
11164 * configure.in: Change alpha to alpha* in several places.
11165
11166 Tue Apr 28 07:42:00 1998 Mark Alexander <marka@cygnus.com>
11167
11168 * config.sub: Recognize sparc86x.
11169
11170 Tue Apr 28 07:35:02 1998 Michael Meissner <meissner@cygnus.com>
11171
11172 * configure.in (--enable-target-optspace): Remove debug echo.
11173
11174 Thu Apr 23 21:31:16 1998 Jim Wilson <wilson@cygnus.com>
11175
11176 * configure: Set CXXFLAGS from CXXFLAGS, not CFLAGS.
11177
11178 Thu Apr 23 12:26:38 1998 Ian Lance Taylor <ian@cygnus.com>
11179
11180 * ltconfig: Update cygwin32 support.
11181
11182 * Makefile.in (GAS_SUPPORT_DIRS): Add intl.
11183 (BINUTILS_SUPPORT_DIRS, GASB_SUPPORT_DIRS): Likewise.
11184 (GDB_SUPPORT_DIRS): Likewise.
11185
11186 Wed Apr 22 12:30:10 1998 Michael Meissner <meissner@cygnus.com>
11187
11188 * configure.in (target_makefile_frag): If --enable-target-optspace,
11189 use -Os to compile target libraries rather than -O2. Default to
11190 using -Os for d10v and m32r if --{enable,disable}-target-optspace is
11191 not used.
11192 * configure.in (target_cflags): Ditto for d30v.
11193
11194 Tue Apr 21 23:06:54 1998 Tom Tromey <tromey@cygnus.com>
11195
11196 * Makefile.in (all-bfd): Depend on all-intl.
11197 (all-binutils): Likewise.
11198 (all-gas): Likewise.
11199 (all-gprof): Likewise.
11200 (all-ld): Likewise.
11201
11202 1998-04-19 Brendan Kehoe <brendan@cygnus.com>
11203
11204 * configure.in (host_tools): Fix typo, lbtool -> libtool.
11205
11206 Fri Apr 17 16:20:42 1998 Ian Lance Taylor <ian@cygnus.com>
11207
11208 * Makefile.in (all-bfd): Depend upon all-libiberty.
11209
11210 * ltconfig, ltmain.sh: Bring in newer cygwin32 support.
11211
11212 Fri Apr 17 12:22:22 1998 Bob Manson <manson@charmed.cygnus.com>
11213
11214 * Makefile.in: Add libstub.
11215
11216 * configure.in: Ditto. Build libstub for targets that have cygmon
11217 support.
11218
11219 Tue Apr 14 18:01:55 1998 Ian Lance Taylor <ian@cygnus.com>
11220
11221 * configure.in: Don't set PICFLAG on ix86-cygwin32.
11222
11223 Tue Apr 14 12:24:45 1998 J. Kean Johnston <jkj@sco.com>
11224
11225 * configure.in: Recognise i[3456]96-*-sysv5* as a valid host, and
11226 use mh-sysv5 if specified. Support gprof on SCO Open Server.
11227
11228 Tue Apr 14 11:33:51 1998 Krister Walfridsson <cato@df.lth.se>
11229
11230 * configure: Define DEFAULT_M4 by searching PATH.
11231 * Makfile.in: Use DEFAULT_M4.
11232
11233 Mon Apr 13 15:37:24 1998 Ian Lance Taylor <ian@cygnus.com>
11234
11235 * ltconfig: Add cygwin32 support.
11236
11237 * Makefile.in, configure.in: Add libtool as a native only directory
11238 to configure and build.
11239
11240 Sun Apr 12 20:58:46 1998 Jeffrey A Law (law@cygnus.com)
11241
11242 * Makefile.in (INSTALL_MODULES): Remove texinfo.
11243
11244 Wed Apr 8 13:18:56 1998 Philippe De Muyter <phdm@macqel.be>
11245
11246 * Makefile.in (EXTRA_GCC_FLAGS): XFOO lines shortened.
11247
11248 Thu Apr 2 14:48:44 1998 Geoffrey Noer <noer@cygnus.com>
11249
11250 * Makefile.in: add ash make rules
11251 * configure.in: add ash to native_only and host_tools lists
11252
11253 Thu Mar 26 12:53:20 1998 Tom Tromey <tromey@cygnus.com>
11254
11255 * Makefile.in (all-gettext, all-intl): New targets.
11256 (ALL_MODULES): Added all-gettext, all-intl.
11257 (CROSS_CHECK_MODULES): Added check-gettext, check-intl.
11258 (INSTALL_MODULES): Added install-gettext, install-intl.
11259 (CLEAN_MODULES): Added clean-gettext, clean-intl.
11260
11261 * configure.in (host_tools): Added gettext.
11262 (native_only): Likewise.
11263 (noconfigdirs) [various cases]: Likewise.
11264 (host_libs): Added intl.
11265
11266 Thu Mar 26 15:00:11 1998 Keith Seitz <keiths@onions.cygnus.com>
11267
11268 * configure: Do not disable building gdbtk for cygwin32 hosts.
11269
11270 Wed Mar 25 10:04:18 1998 Nick Clifton <nickc@cygnus.com>
11271
11272 * configure.in: Add thumb-coff target.
11273 * config.sub: Add thumb-coff target.
11274
11275 Wed Mar 25 11:49:12 1998 Jason Molenda (crash@bugshack.cygnus.com)
11276
11277 * Makefile.in: Revert yesterday's change.
11278 (all-target-winsup): all-target-librx stays out of here.
11279
11280 Tue Mar 24 16:58:29 1998 Jason Molenda (crash@bugshack.cygnus.com)
11281
11282 * Makefile.in (TARGET_CONFIGDIRS, ALL_TARGET_MODULES,
11283 CONFIGURE_TARGET_MODULES, CHECK_TARGET_MODULES,
11284 INSTALL_TARGET_MODULES, CLEAN_TARGET_MODULES, all-target-winsup):
11285 Remove references to librx and libg++.
11286
11287 Tue Mar 24 18:28:12 1998 Eric Mumpower <nocturne@cygnus.com>
11288
11289 * Makefile.in (BASE_FLAGS_TO_PASS): Pass $(lispdir) down to
11290 recursive makes
11291
11292 Tue Mar 24 11:37:45 1998 Ian Lance Taylor <ian@cygnus.com>
11293
11294 * Makefile.in (CC_FOR_TARGET): Use $(TARGET_SUBDIR) when passing -B
11295 for newlib directory.
11296 (CXX_FOR_TARGET): Likewise.
11297
11298 Mon Mar 23 11:30:21 1998 Jeffrey A Law (law@cygnus.com)
11299
11300 * ltconfig: Update after libtool/ltconfig.in change for
11301 hpux11.
11302
11303 Fri Mar 20 18:51:43 1998 Ian Lance Taylor <ian@cygnus.com>
11304
11305 * ltconfig, ltmain.sh: Update to libtool 1.2.
11306
11307 Fri Mar 20 09:32:14 1998 Manfred Hollstein <manfred@s-direktnet.de>
11308
11309 * Makefile.in (install-gcc): Don't specify LANGUAGES here.
11310 (install-gcc-cross): Instead, override LANGUAGES here.
11311
11312 1998-03-18 Dave Love <d.love@dl.ac.uk>
11313
11314 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): Set CONFIG_SITE to a
11315 non-existent file since /dev/null loses with bash 2.0/autoconf 2.12.
11316
11317 Wed Mar 18 09:24:59 1998 Nick Clifton <nickc@cygnus.com>
11318
11319 * configure.in: Add Thumb-pe target.
11320
11321 Tue Mar 17 16:59:00 1998 Syd Polk <spolk@cygnus.com>
11322
11323 * Makefile.in - changed sn targets to snavigator
11324 * configure.in - changed sn targets to snavigator
11325
11326 Tue Mar 17 10:33:28 1998 Manfred Hollstein <manfred@s-direktnet.de>
11327
11328 * config-ml.in: After building symlink tree call make distclean
11329 if a Makefile got linked into ${ml_dir}/${ml_libdir}; this happens
11330 to be the case for libiberty.
11331
11332 Tue Mar 17 10:22:37 1998 H.J. Lu (hjl@gnu.ai.mit.edu)
11333
11334 * configure: When making link, also check the current
11335 directory. The configure scripts may create one.
11336
11337 Fri Mar 6 01:02:03 1998 Richard Henderson <rth@cygnus.com>
11338
11339 * config.sub: Accept alphapca56 and alphaev6 properly.
11340
11341 Fri Mar 6 00:14:55 1998 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
11342
11343 * configure.in: Revert 3 Jan change for powerpc-linux-gnulibc1.
11344
11345 Mon Feb 23 15:09:18 1998 Bruno Haible <bruno@linuix.mathematik.uni-karlsruhe.de
11346
11347 * config.sub (sco5): Fix typo.
11348
11349 Mon Feb 23 14:46:06 1998 Ian Lance Taylor <ian@cygnus.com>
11350
11351 * Makefile.in (INSTALL_MODULES): Move install-tcl before
11352 install-itcl.
11353 (install-itcl): Remove dependency on install-tcl.
11354
11355 Mon Feb 23 09:53:28 1998 Mark Alexander <marka@cygnus.com>
11356
11357 * configure.in: Remove libgloss from noconfigdirs for MN10300.
11358
11359 Thu Feb 19 13:40:41 1998 Ian Lance Taylor <ian@cygnus.com>
11360
11361 * configure.in: Don't build libgui for a cygwin32 target when not on
11362 a cygwin32 host.
11363
11364 Wed Feb 18 12:29:00 1998 Jason Molenda (crash@bugshack.cygnus.com)
11365
11366 * configure (redirect): Set to null, so default behavior of
11367 configure is now --verbose.
11368
11369 1998-02-16 Dave Love <d.love@dl.ac.uk>
11370
11371 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): Run configure with
11372 CONFIG_SITE=/dev/null to forestall lossage with site configuration.
11373
11374 Mon Feb 16 12:23:53 1998 Manfred Hollstein <Manfred.Hollstein@ks.sel.alcatel.de>
11375
11376 * Makefile.in (BASE_FLAGS_TO_PASS, EXTRA_TARGET_FLAGS): Really add
11377 this change to sync Makefile.in with its ChangeLog entries.
11378
11379 Thu Feb 12 15:03:08 1998 H.J. Lu <hjl@gnu.org>
11380
11381 * ltmain.sh (mkdir): Check that the directory doesn't exist
11382 before we exit with error, so that we don't get races during
11383 parallel builds.
11384
11385 Sat Feb 7 15:19:18 1998 Ian Lance Taylor <ian@cygnus.com>
11386
11387 * ltconfig, ltmain.sh: Update from libtool 1.0i.
11388
11389 Fri Feb 6 01:33:52 1998 Manfred Hollstein <manfred@s-direktnet.de>
11390
11391 * Makefile.in (BASE_FLAGS_TO_PASS): Don't pass PICFLAG and
11392 PICFLAG_FOR_TARGET.
11393 (EXTRA_TARGET_FLAGS): Don't pass PICFLAG_FOR_TARGET.
11394
11395 * configure: Emit a definition for the new macro enable_shared
11396 into each Makefile.
11397
11398 Thu Feb 5 17:01:12 1998 Jason Molenda (crash@bugshack.cygnus.com)
11399
11400 * configure.in (host_tools, native_only): Add libtool.
11401
11402 Wed Feb 4 16:53:58 1998 Geoffrey Noer <noer@cygnus.com>
11403
11404 * configure.in: add target-gperf to noconfigdirs for Cygwin32.
11405 Fix typo in ming config comment.
11406
11407 Wed Feb 4 18:56:13 1998 Ian Lance Taylor <ian@cygnus.com>
11408
11409 * ltconfig, ltmain.sh: Update from libtool 1.0h.
11410
11411 Mon Feb 2 19:38:19 1998 Ian Lance Taylor <ian@cygnus.com>
11412
11413 * config.sub: Add tic30 cases, and map c30 to tic30.
11414
11415 Sun Feb 1 02:40:41 1998 Richard Henderson <rth@cygnus.com>
11416
11417 * Makefile.in (TARGET_CONFIGDIRS): Add libf2c.
11418 (ALL_TARGET_MODULES, CONFIGURE_TARGET_MODULES): Similarly
11419 (CHECK_TARGET_MODULES, INSTALL_TARGET_MODULES): Similarly
11420 (CLEAN_TARGET_MODULES): Similarly
11421 (all-target-libf2c): Add dependences.
11422 * configure.in (target_libs): Add libf2c.
11423
11424 Fri Jan 30 17:18:32 1998 Geoffrey Noer <noer@cygnus.com>
11425
11426 * configure.in: Remove expect from noconfigdirs when target
11427 is cygwin32. OK to build expect and dejagnu with Canadian
11428 Cross.
11429
11430 Wed Jan 28 12:58:49 1998 Ian Lance Taylor <ian@cygnus.com>
11431
11432 * configure.in: Do build expect, dejagnu, and cvssrc for a cygwin32
11433 host.
11434
11435 * config.guess: Use ${UNAME_MACHINE} rather than i386 for cygwin32
11436 and mingw32.
11437
11438 Wed Jan 28 10:26:37 1998 Manfred Hollstein <manfred@s-direktnet.de>
11439
11440 * Makefile.in (BASE_FLAGS_TO_PASS): Remove passing $(local_prefix)
11441 here as it is not defined in the toplevel Makefile.
11442
11443 Tue Jan 27 23:25:06 1998 Manfred Hollstein <manfred@s-direktnet.de>
11444
11445 * configure (package_makefile_rules_frag): New variable, which names
11446 a file with generic rules, ...
11447 Change comment to mention we now have FIVE parts.
11448 * configure: Undo last change.
11449
11450 Tue Jan 27 23:15:55 1998 Lassi A. Tuura <lat@iki.fi>
11451
11452 * config.guess: More accurate determination of HP processor types.
11453 * config.sub: More accurate determination of HP processor types.
11454
11455 Sat Jan 24 01:59:45 1998 Manfred Hollstein <manfred@s-direktnet.de>
11456
11457 * configure (package_makefile_frag): Move inserting the
11458 ${package_makefile_frag} to where it should be according
11459 to the comment.
11460
11461 Fri Jan 23 00:29:28 1998 Philip Blundell <pb@nexus.co.uk>
11462
11463 * config.guess: Add support for Linux/ARM.
11464
11465 Thu Jan 22 15:14:01 1998 Fred Fish <fnf@cygnus.com>
11466
11467 * .cvsignore: Remove *-info and *-install since they match
11468 release-info and mpw-install, which we don't want to just ignore.
11469
11470 Thu Jan 22 01:38:33 1998 Richard Henderson <rth@cygnus.com>
11471
11472 * configure.in: Revert 3 Jan change for alpha-linux-gnulibc1.
11473
11474 Sat Jan 17 21:28:08 1998 Pieter Nagel <pnagel@epiuse.co.za>
11475
11476 * Makefile.in (FLAGS_TO_PASS): Pass down gcc_include_dir and
11477 local_prefix to sub-make invocations.
11478
11479 Sat Jan 17 21:04:59 1998 H.J. Lu (hjl@gnu.org)
11480
11481 * configure.in: Check makefile fragments in the source
11482 directory.
11483
11484 Fri Jan 16 00:41:37 1998 Alexandre Oliva <oliva@dcc.unicamp.br>
11485
11486 * configure.in: Check whether host and target makefile
11487 fragments exist before adding them to *_makefile_frag.
11488
11489 Wed Jan 14 23:39:10 1998 Bob Manson <manson@charmed.cygnus.com>
11490
11491 * configure.in (target_configdirs): Add cygmon for sparc64-elf.
11492
11493 Wed Jan 14 12:48:07 1998 Keith Seitz <keiths@pizza.cygnus.com>
11494
11495 * configure.in: Make sure we only replace RPATH_ENVVAR on
11496 lines which begin with RPATH_ENVVAR, i.e. add "^" to the
11497 regexp to sed.
11498
11499 * Makefile.in (BASE_FLAGS_TO_PASS): Pass RRPATH_ENVVAR down
11500 to sub-makes.
11501
11502 1998-01-13 Lee Iverson (leei@ai.sri.com)
11503
11504 * config-ml.in (multi-do): LDFLAGS must include multilib
11505 designator.
11506
11507 Tue Jan 13 01:13:24 1998 Robert Lipe (robertl@dgii.com)
11508
11509 * config.guess: Recognize i[3456]-i586-UnixWare7-sysv5.
11510
11511 Sun Jan 4 01:06:55 1998 Mumit Khan <khan@xraylith.wisc.edu>
11512
11513 * config.sub: Add mingw32 support.
11514 * configure.in: Likewise.
11515
11516 Sat Jan 3 12:11:05 1998 Franz Sirl <franz.sirl-kernel@lauterbach.com>
11517
11518 * configure.in: Finalize support for {alpha|powerpc}*-*-linux-gnulibc1
11519
11520 Sun Dec 28 11:28:58 1997 Jeffrey A Law (law@cygnus.com)
11521
11522 * Makefile.in (INSTALL_TARGET): Do install-gcc first.
11523 * configure (gxx_include_dir): Provide a definition for subdirs
11524 which do not use autoconf.
11525
11526 Wed Dec 24 22:46:55 1997 Jeffrey A Law (law@cygnus.com)
11527
11528 * config.guess: Sync with egcs. Picks up new alpha support,
11529 BeOS & some additional linux support.
11530
11531 Tue Dec 23 12:44:24 1997 Jeffrey A Law (law@cygnus.com)
11532
11533 * config.guess: HP 9000/803 is a PA1.1 machine.
11534
11535 Mon Dec 22 02:39:24 1997 Richard Henderson <rth@cygnus.com>
11536
11537 * configure.in: It's alpha*-...
11538
11539 Sun Dec 21 16:53:12 1997 H.J. Lu (hjl@gnu.ai.mit.edu)
11540
11541 * configure.in (host_makefile_frag, target_makefile_frag):
11542 Handle multiple config files.
11543 (alpha-*-linux*): Treat alpha-*-linux* as alpha-*-linux* and
11544 alpha-*-*.
11545
11546 Thu Dec 18 13:13:03 1997 Doug Evans <devans@canuck.cygnus.com>
11547
11548 * mkdep: New file.
11549
11550 Wed Dec 17 09:53:02 1997 Michael Meissner <meissner@cygnus.com>
11551
11552 * configure.in (d30v-*-*): Allow configuring of libide, vmake, etc.
11553
11554 Tue Dec 16 17:36:05 1997 Ian Lance Taylor <ian@cygnus.com>
11555
11556 * Makefile.in: Add libgui directory.
11557 (GDB_TK): Add all-libgui.
11558 * configure.in: Add libgui directory.
11559 * configure: Add all-libgui to GDB_TK.
11560
11561 Mon Dec 15 16:12:28 1997 Nick Clifton <nickc@cygnus.com>
11562
11563 * config-ml.in (multidirs): Add m32r to multilib list.
11564
11565 Fri Dec 12 10:43:31 1997 Brendan Kehoe <brendan@canuck.cygnus.com>
11566
11567 * Makefile.in (all-target-gperf): Change dependency to
11568 all-target-libstdc++.
11569
11570 Thu Dec 11 23:30:51 1997 Fred Fish <fnf@ninemoons.com>
11571
11572 * config.guess: Add BeOS support.
11573
11574 Wed Dec 10 15:10:38 1997 Ian Lance Taylor <ian@cygnus.com>
11575
11576 Source directory cvs renamed to cvssrc:
11577 * configure.in (host_tools): Change cvs to cvssrc.
11578 (native_only): Likewise.
11579 (noconfigdirs) [various cases]: Likewise.
11580 * Makefile.in (ALL_MODULES): Change all-cvs to all-cvssrc.
11581 (CROSS_CHECK_MODULES): Change check-cvs to check-cvssrc.
11582 (INSTALL_MODULES): Change install-cvs to install-cvssrc.
11583 (CLEAN_MODULES): Change clean-cvs to clean-cvssrc.
11584 (all-cvssrc): Rename target from all-cvs.
11585
11586 Wed Dec 3 07:55:59 1997 Jeffrey A Law (law@cygnus.com)
11587
11588 * configure (gxx_include_dir): Fix thinko.
11589
11590 Tue Dec 2 10:55:34 1997 Jeffrey A Law (law@cygnus.com)
11591
11592 * Makefile.in (INSTALL_TARGET_CROSS): Define.
11593 (install-cross, install-gcc-cross): New targets.
11594
11595 Tue Dec 2 10:08:31 1997 Nick Clifton <nickc@cygnus.com>
11596
11597 * configure.in (noconfigdirs): Add support for Thumb target.
11598
11599 * config.sub (maybe_os): Add support for Thumb target.
11600
11601 Sun Nov 30 16:12:27 1997 Bob Manson <manson@charmed.cygnus.com>
11602
11603 * Makefile.in: Add rules for cygmon.
11604
11605 * configure.in: Build cygmon for sparc-elf and sparclite-aout.
11606
11607 Thu Nov 27 01:31:30 1997 Jeffrey A Law (law@cygnus.com)
11608
11609 * Makefile.in (INSTALL_TARGET): Do install-gcc first.
11610 * configure (gxx_include_dir): Provide a definition for subdirs
11611 which do not use autoconf.
11612
11613 Wed Nov 26 11:53:33 1997 Keith Seitz <keiths@onions.cygnus.com>
11614
11615 * Makefile.in, configure, configure.in, ChangeLog: merge with foundry's
11616 11/18/97 build
11617
11618 Wed Nov 26 16:08:50 1997 Jeffrey A Law (law@cygnus.com)
11619
11620 * From Franz Sirl.
11621 * config.guess (powerpc*-*-linux): Handle glibc2 beta release
11622 found on RedHat Linux systems.
11623
11624 Fri Nov 21 09:51:01 1997 Jeffrey A Law (law@cygnus.com)
11625
11626 * config.guess (alpha stuff): Merge with FSF to avoid incorrect
11627 guesses.
11628
11629 Thu Nov 13 11:38:37 1997 Jeffrey A Law (law@cygnus.com)
11630
11631 * configure.in (i[3456]86-ncr-sysv4.3*): Tweak.
11632
11633 Mon Nov 10 15:23:21 1997 H.J. Lu <hjl@gnu.ai.mit.edu>
11634
11635 * ltmain.sh: If mkdir fails, check whether the directory was created
11636 anyhow by some other process.
11637
11638 Mon Nov 10 14:38:03 1997 Michael Meissner <meissner@cygnus.com>
11639
11640 * configure.in (d30v-*-*): Configure all directories.
11641
11642 Sun Nov 9 17:36:20 1997 Michael Meissner <meissner@cygnus.com>
11643
11644 * configure.in (d30v-*-*): Configure newlib, libiberty directories
11645 for the D30V.
11646
11647 Sat Nov 8 14:42:59 1997 Michael Meissner <meissner@cygnus.com>
11648
11649 * configure.in (d30v-*-*): Configure target-libgloss on the D30V.
11650
11651 Fri Nov 7 10:34:09 1997 Rob Savoye <rob@darkstar.cygnus.com>
11652
11653 * include/libiberty.h: Add extern "C" { so it can be used with C++
11654 progrms.
11655 * include/remote-sim.h: Add extern "C" { so it can be used with C++
11656 programs.
11657
11658 Thu Oct 30 11:09:29 1997 Michael Meissner <meissner@cygnus.com>
11659
11660 * configure.in (d30v-*-*): Configure GCC now.
11661
11662 Mon Oct 27 13:17:24 1997 Stan Shebs <shebs@andros.cygnus.com>
11663
11664 * configure.in: Remove a "second pass" of tweaking noconfigdirs,
11665 is no longer needed.
11666
11667 Mon Oct 27 12:03:53 1997 Jason Merrill <jason@yorick.cygnus.com>
11668
11669 * Makefile.in: check-target-libio depends on all-target-libstdc++.
11670
11671 Sun Oct 26 11:48:27 1997 Manfred Hollstein (manfred@s-direktnet.de)
11672
11673 * Makefile.in (bootstrap-lean): Combined with `normal' bootstrap
11674 targets using "$@" to provide support for similar but not identical
11675 targets without having to duplicate code.
11676
11677 Mon Oct 20 15:28:49 1997 Klaus K"ampf <kkaempf@progis.de>
11678
11679 * makefile.vms: Fix to work with DEC C.
11680
11681 Tue Oct 7 23:58:57 1997 Gavin Koch <gavin@cygnus.com>
11682
11683 * config.sub: Add mips-tx39-elf to marketing names.
11684
11685 Tue Oct 7 14:24:41 1997 Ian Lance Taylor <ian@cygnus.com>
11686
11687 * ltmain.sh: Handle symlinks in generated script.
11688
11689 Wed Oct 1 13:11:27 1997 Ian Lance Taylor <ian@cygnus.com>
11690
11691 * configure: Handle autoconf style directory options: --bindir,
11692 --datadir, --includedir, --infodir, --libdir, --libexecdir,
11693 --mandir, --oldincludedir, --sbindir, --sharedstatedir,
11694 --sysconfdir.
11695 * Makefile.in (sbindir, libexecdir, sysconfdir): New variables.
11696 (sharedstatedir, localstatedir, oldincludedir): New variables.
11697 (BASE_FLAGS_TO_PASS): Pass down bindir, datadir, includedir,
11698 infodir, libdir, libexecdir, localstatedir, mandir, oldincludedir,
11699 sbindir, sharedstatedir, and sysconfdir.
11700
11701 Mon Sep 29 00:38:08 1997 Aaron Jackson <jackson@negril.msrce.howard.edu>
11702
11703 * Makefile.in (bootstrap-lean): New target.
11704
11705 Wed Sep 24 18:06:27 1997 Stu Grossman <grossman@babylon-5.cygnus.com>
11706
11707 * configure.in (d30v): Remove tcl, tk, expect, gdb, itcl, tix, db,
11708 sn, and gnuserv from noconfigdirs.
11709
11710 Wed Sep 24 15:18:32 1997 Ian Lance Taylor <ian@cygnus.com>
11711
11712 * ltmain.sh: Tweak shell pattern to avoid bug in NetBSD /bin/sh.
11713
11714 Thu Sep 18 23:58:27 1997 Jeffrey A Law (law@cygnus.com)
11715
11716 * Makefile.in (cross): New target.
11717
11718 Thu Sep 18 21:43:23 1997 Alexandre Oliva <oliva@dcc.unicamp.br>
11719 Jeff Law <law@cygnus.com>
11720
11721 * Makefile.in (bootstrap2, bootstrap3): New targets.
11722 (all-bootstrap): Remove outdated and confusing target.
11723 (bootstrap, bootstrap2, bootstrap3): Don't pass BOOT_CFLAGS down.
11724
11725 Thu Sep 18 15:37:42 1997 Andrew Cagney <cagney@b1.cygnus.com>
11726
11727 * configure (tooldir): enable_gdbtk=YES for cygwin32, NO for
11728 windows. Consistent with gdb/configure.
11729
11730 1997-09-15 02:37 Ulrich Drepper <drepper@cygnus.com>
11731
11732 * configure.in: Name Linux target fragment.
11733
11734 * configure: Rewrite so that project Makefile fragment is inserted
11735 first and appears last in the resulting Makefile.
11736
11737 Tue Sep 16 09:55:07 1997 Andrew Cagney <cagney@b1.cygnus.com>
11738
11739 * Makefile.in (install-itcl): Install tcl first.
11740
11741 Fri Sep 12 16:19:20 1997 Geoffrey Noer <noer@cygnus.com>
11742
11743 * configure.in: remove bison from noconfigdirs for Cygwin32 host
11744
11745 Thu Sep 11 16:40:46 1997 H.J. Lu (hjl@gnu.ai.mit.edu)
11746
11747 * Makefile.in (local-distclean): Also remove mh-frag mt-frag.
11748
11749 * configure.in (skipdirs): Add target-librx for Linux.
11750 (alpha-*-linux*): Use config/mh-elfalphapic and config/mt-elfalphapic.
11751
11752 Wed Sep 10 21:29:54 1997 Jeffrey A Law (law@cygnus.com)
11753
11754 * Makefile.in (bootstrap): New target.
11755
11756 Wed Sep 10 15:19:22 1997 Jeffrey A Law (law@cygnus.com)
11757
11758 * config.sub: Accept 'amigados' for backward compatability.
11759
11760 Mon Sep 8 20:46:20 1997 Ian Lance Taylor <ian@cygnus.com>
11761
11762 * config.guess: Merge with FSF.
11763
11764 Sun Sep 7 23:18:32 1997 Fred Fish <fnf@ninemoons.com>
11765
11766 * config.sub: Change 'amigados' to 'amigaos' to match current usage.
11767
11768 Sun Sep 7 15:55:28 1997 Gavin Koch <gavin@cygnus.com>
11769
11770 * config.sub: Add "marketing-names" patch.
11771
11772 Fri Sep 5 16:11:28 1997 Joel Sherrill (joel@OARcorp.com)
11773
11774 * configure.in (*-*-rtems*): Do not build libgloss for rtems.
11775
11776 Fri Sep 5 12:27:17 1997 Jeffrey A Law (law@cygnus.com)
11777
11778 * config.sub: Handle v850-elf.
11779
11780 Wed Sep 3 22:01:58 1997 Fred Fish <fnf@ninemoons.com>
11781
11782 * .cvsignore (*-install): Remove.
11783
11784 Wed Sep 3 12:15:24 1997 Chris Provenzano <proven@cygnus.com>
11785
11786 * ltconfig: Set CONFIG_SHELL in libtool.
11787 * ltmain.sh: Use CONFIG_SHELL instead of /bin/sh
11788
11789 Mon Sep 1 16:45:44 1997 Jim Wilson <wilson@cygnus.com>
11790
11791 * configure.in (target_subdir): Set to libraries if enable_multilib.
11792
11793 Wed Aug 27 16:15:11 1997 Jim Wilson <wilson@cygnus.com>
11794
11795 * config.guess: Update from gcc directory.
11796
11797 Tue Aug 26 16:46:46 1997 Andrew Cagney <cagney@b1.cygnus.com>
11798
11799 * Makefile.in (all-sim): Depends on all-readline.
11800
11801 Wed Aug 20 19:57:37 1997 Jason Merrill <jason@yorick.cygnus.com>
11802
11803 * Makefile.in (BISON, YACC): Use $$s.
11804 (all-bison): Depend on all-texinfo.
11805
11806 Tue Aug 19 01:41:32 1997 Jason Merrill <jason@yorick.cygnus.com>
11807
11808 * Makefile.in (BISON): Add -L flag.
11809 (YACC): Likewise.
11810
11811 Mon Aug 18 11:30:50 1997 Nick Clifton <nickc@cygnus.com>
11812
11813 * configure.in (noconfigdirs): Add support for v850e target.
11814
11815 * config.sub (maybe_os): Add support for v850e target.
11816
11817 Mon Aug 18 11:30:50 1997 Nick Clifton <nickc@cygnus.com>
11818
11819 * configure.in (noconfigdirs): Add support for v850ea target.
11820
11821 * config.sub (maybe_os): Add support for v850ea target.
11822
11823 Mon Aug 18 09:24:06 1997 Gavin Koch <gavin@cygnus.com>
11824
11825 * config.sub: Add mipstx39. Delete r3900.
11826
11827 Mon Aug 18 17:20:10 1997 Jason Molenda (crash@godzilla.cygnus.co.jp)
11828
11829 * Makefile.in (all-autoconf): Depends on all-texinfo.
11830
11831 Fri Aug 15 23:09:26 1997 Michael Meissner <meissner@cygnus.com>
11832
11833 * config-ml.in ({powerpc,rs6000}*-*-*): Update to current AIX and
11834 eabi targets.
11835
11836 Thu Aug 14 14:42:17 1997 Ian Lance Taylor <ian@cygnus.com>
11837
11838 * configure: Get CFLAGS and CXXFLAGS from Makefile, if possible.
11839
11840 * configure: When handling a Canadian Cross, handle YACC as well as
11841 BISON. Just set BISON to bison. When setting YACC, prefer bison.
11842 * Makefile.in (all-bison): Depend upon all-texinfo.
11843
11844 Tue Aug 12 20:09:48 1997 Jason Merrill <jason@yorick.cygnus.com>
11845
11846 * Makefile.in (BISON): bison, not byacc or bison -y.
11847 (YACC): bison -y or byacc or yacc.
11848 (various): Add *-bison as appropriate.
11849 (taz): No need to mess with BISON anymore.
11850
11851 Tue Aug 12 22:33:08 1997 Ian Lance Taylor <ian@cygnus.com>
11852
11853 * configure: If OSTYPE matches *win32*, try to find a good value for
11854 CONFIG_SHELL.
11855
11856 Sun Aug 10 14:41:11 1997 Ian Lance Taylor <ian@cygnus.com>
11857
11858 * Makefile.in (taz): Get the version number from AM_INIT_AUTOMAKE in
11859 configure.in if it is present.
11860
11861 Sat Aug 9 00:58:01 1997 Ian Lance Taylor <ian@cygnus.com>
11862
11863 * Makefile.in (LD_FOR_TARGET): Change ld.new to ld-new.
11864
11865 Fri Aug 8 16:30:13 1997 Doug Evans <dje@canuck.cygnus.com>
11866
11867 * config.sub: Recognize `arc' cpu.
11868 * configure.in: Likewise.
11869 * config-ml.in: Likewise.
11870
11871 Thu Aug 7 11:02:34 1997 Ian Lance Taylor <ian@cygnus.com>
11872
11873 * Makefile.in ($(INSTALL_X11_MODULES)): Depend upon installdirs.
11874
11875 Wed Aug 6 16:27:29 1997 Chris Provenzano <proven@cygnus.com>
11876
11877 * configure: Changed sed delimiter from ':' to '|' when
11878 attempting to substitute ${config_shell} for SHELL. On
11879 NT ${config_shell} may contain a ':' in it.
11880
11881 Wed Aug 6 12:29:05 1997 Jason Merrill <jason@yorick.cygnus.com>
11882
11883 * Makefile.in (EXTRA_GCC_FLAGS): Fix for non-bash shells.
11884
11885 Wed Aug 6 00:42:35 1997 Ian Lance Taylor <ian@cygnus.com>
11886
11887 * Makefile.in (AS_FOR_TARGET): Change as.new to as-new.
11888
11889 Tue Aug 5 14:08:51 1997 Ian Lance Taylor <ian@cygnus.com>
11890
11891 * Makefile.in (NM_FOR_TARGET): Change nm.new to nm-new.
11892
11893 * ylwrap: If the program is a relative path, force it to be
11894 absolute.
11895
11896 Tue Aug 5 12:12:44 1997 Andrew Cagney <cagney@b1.cygnus.com>
11897
11898 * configure (tooldir): Set BISON to `bison -y' and not just bison.
11899
11900 Mon Aug 4 22:59:02 1997 Andrew Cagney <cagney@b1.cygnus.com>
11901
11902 * Makefile.in (CC_FOR_TARGET): When winsup/Makefile present,
11903 correctly specify the target build directory $(TARGET_SUBDIR)/winsup
11904 for libraries.
11905
11906 Mon Aug 4 12:40:24 1997 Jason Merrill <jason@yorick.cygnus.com>
11907
11908 * Makefile.in (EXTRA_GCC_FLAGS): Fix handling of macros with values
11909 separated by spaces.
11910
11911 Thu Jul 31 19:49:49 1997 Ian Lance Taylor <ian@cygnus.com>
11912
11913 * ylwrap: New file.
11914 * Makefile.in (DEVO_SUPPORT): Add ylwrap.
11915
11916 * ltmain.sh: Handle /bin/sh at start of install program.
11917
11918 * Makefile.in (DEVO_SUPPORT): Add ltconfig, ltmain.sh, and missing.
11919
11920 * ltconfig, ltmain.sh: New files, from libtool 1.0.
11921 * missing: New file, from automake 1.2.
11922
11923 Thu Jul 24 12:57:56 1997 Ian Lance Taylor <ian@cygnus.com>
11924
11925 * Makefile.in: Treat tix like tk, putting it in X11_MODULES. Add
11926 check-tk to CHECK_X11_MODULES.
11927
11928 Wed Jul 23 17:03:29 1997 Ian Lance Taylor <ian@cygnus.com>
11929
11930 * config.sub: Merge with FSF.
11931
11932 Tue Jul 22 19:08:29 1997 Ian Lance Taylor <ian@cygnus.com>
11933
11934 * config.guess: Merge with FSF.
11935
11936 Tue Jul 22 14:50:42 1997 Robert Hoehne <robert.hoehne@Mathematik.TU-Chemnitz.DE>
11937
11938 * configure: Treat msdosdjgpp like go32.
11939 * configure.in: Likewise. Don't remove gprof for go32.
11940
11941 * configure: Change Makefile.tem2 to Makefile.tm2.
11942
11943 Mon Jul 21 10:31:26 1997 Stephen Peters <speters@cygnus.com>
11944
11945 * configure.in (noconfigdirs): For alpha-dec-osf*, don't ignore grep.
11946
11947 Tue Jul 15 14:33:03 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
11948
11949 * install-sh (chmodcmd): Set to null if the DST directory already
11950 exists. Same as Nov 11th change.
11951
11952 Mon Jul 14 11:01:15 1997 Martin M. Hunt <hunt@cygnus.com>
11953
11954 * configure (GDB_TK): Needs itcl and tix.
11955
11956 Mon Jul 14 00:32:10 1997 Jason Merrill <jason@yorick.cygnus.com>
11957
11958 * config.guess: Update from FSF.
11959
11960 Fri Jul 11 11:57:11 1997 Martin M. Hunt <hunt@cygnus.com>
11961
11962 * Makefile.in (GDB_TK): Depend on itcl and tix.
11963
11964 Fri Jul 4 13:25:31 1997 Ian Lance Taylor <ian@cygnus.com>
11965
11966 * Makefile.in (INSTALL_PROGRAM_ARGS): New variable.
11967 (INSTALL_PROGRAM): Use $(INSTALL_PROGRAM_ARGS).
11968 (INSTALL_SCRIPT): New variable.
11969 (BASE_FLAGS_TO_PASS): Pass down INSTALL_SCRIPT.
11970 * configure.in: If host is *-*-cygwin32*, set INSTALL_PROGRAM_ARGS
11971 to -x.
11972 * install-sh: Add support for -x option.
11973
11974 Mon Jun 30 15:51:30 1997 Ian Lance Taylor <ian@cygnus.com>
11975
11976 * configure.in, Makefile.in: Treat tix like itcl.
11977
11978 Thu Jun 26 13:59:19 1997 Ian Lance Taylor <ian@cygnus.com>
11979
11980 * Makefile.in (WINDRES): New variable.
11981 (WINDRES_FOR_TARGET): New variable.
11982 (BASE_FLAGS_TO_PASS): Add WINDRES_FOR_TARGET.
11983 (EXTRA_HOST_FLAGS): Add WINDRES.
11984 (EXTRA_TARGET_FLAGS): Add WINDRES.
11985 (EXTRA_GCC_FLAGS): Add WINDRES.
11986 ($(DO_X)): Pass down WINDRES.
11987 ($(CONFIGURE_TARGET_MODULES)): Set WINDRES when configuring.
11988 * configure: Treat WINDRES like DLLTOOL, and WINDRES_FOR_TARGET like
11989 DLLTOOL_FOR_TARGET.
11990
11991 Wed Jun 25 15:01:26 1997 Felix Lee <flee@cygnus.com>
11992
11993 * configure.in: configure sim before gdb for win32-x-ppc
11994
11995 Wed Jun 25 12:18:54 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
11996
11997 Move gperf into the toplevel, from libg++.
11998 * configure.in (target_tools): Add target-gperf.
11999 (native_only): Add target-gperf.
12000 * Makefile.in (all-target-gperf): New target, depend on
12001 all-target-libg++.
12002 (configure-target-gperf): Empty rule.
12003 (ALL_TARGET_MODULES): Add all-target-gperf.
12004 (CONFIGURE_TARGET_MODULES): Add configure-target-gperf.
12005 (CHECK_TARGET_MODULES): Add check-target-gperf.
12006 (INSTALL_TARGET_MODULES): Add install-target-gperf.
12007 (CLEAN_TARGET_MODULES): Add clean-target-gperf.
12008
12009 Mon Jun 23 10:51:53 1997 Jeffrey A Law (law@cygnus.com)
12010
12011 * config.sub (mn10200): Recognize new basic machine.
12012
12013 Thu Jun 19 14:16:42 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
12014
12015 * configure.in: Don't set ENABLE_MULTILIB, so we'll be passing
12016 --enable-multilib down to subdirs; setting TARGET_SUBDIR was enough.
12017
12018 Tue Jun 17 15:31:20 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
12019
12020 * configure.in: If we're building mips-sgi-irix6* native, turn on
12021 ENABLE_MULTILIB and set TARGET_SUBDIR.
12022
12023 Tue Jun 17 12:20:59 1997 Tom Tromey <tromey@cygnus.com>
12024
12025 * Makefile.in (all-sn): Depend on all-grep.
12026
12027 Mon Jun 16 11:11:10 1997 Ian Lance Taylor <ian@cygnus.com>
12028
12029 * configure.in: Use mh-ppcpic and mt-ppcpic for powerpc*-* targets.
12030
12031 * configure: Set CFLAGS and CXXFLAGS, and substitute them into
12032 Makefile. From Jeff Makey <jeff@cts.com>.
12033 * Makefile.in: Add comment for CFLAGS and CXXFLAGS.
12034
12035 * Makefile.in (DISTBISONFILES): Remove.
12036 (taz): Don't futz with DISTBISONFILES. Change BISON to use
12037 $(DEFAULT_YACC).
12038
12039 * configure.in: Build itl, db, sn, etc., when building for native
12040 cygwin32.
12041
12042 * Makefile.in (LD): New variable.
12043 (EXTRA_HOST_FLAGS): Pass down LD.
12044 ($(DO_X)): Likewise.
12045
12046 Mon Jun 16 11:10:35 1997 Philip Blundell <Philip.Blundell@pobox.com>
12047
12048 * Makefile.in (INSTALL): Use $(SHELL) when executing install-sh.
12049
12050 Fri Jun 13 10:22:56 1997 Bob Manson <manson@charmed.cygnus.com>
12051
12052 * configure.in (targargs): Strip out any supplied --build argument
12053 before adding our own. Always add --build.
12054
12055 Thu Jun 12 21:12:28 1997 Bob Manson <manson@charmed.cygnus.com>
12056
12057 * configure.in (targargs): Pass --build if we're doing
12058 a cross-compile.
12059
12060 Fri Jun 6 21:38:40 1997 Rob Savoye <rob@chinadoll.cygnus.com>
12061
12062 * configure: Use '|' instead of ":" as the separator in
12063 sed. Otherwise sed chokes on NT path names with drive
12064 designators. Also look for "?:*" as the leading characters in an
12065 absolute pathname.
12066
12067 Mon Jun 2 13:05:20 1997 Gavin Koch <gavin@cygnus.com>
12068
12069 * config.sub: Support for r3900.
12070
12071 Wed May 21 17:33:31 1997 Ian Lance Taylor <ian@cygnus.com>
12072
12073 * configure.in: Use install-sh, not install.sh.
12074
12075 Wed May 14 16:06:51 1997 Ian Lance Taylor <ian@cygnus.com>
12076
12077 * Makefile.in (taz): Improve check for BISON so it doesn't try to
12078 apply it twice.
12079
12080 Fri May 9 17:22:05 1997 Ian Lance Taylor <ian@cygnus.com>
12081
12082 * Makefile.in (INSTALL_MODULES): Put install-opcodes before
12083 install-binutils.
12084
12085 Thu May 8 17:29:50 1997 Ian Lance Taylor <ian@cygnus.com>
12086
12087 * Makefile.in: Add automake targets.
12088 * configure.in (host_tools): Add automake.
12089
12090 Tue May 6 15:49:52 1997 Ian Lance Taylor <ian@cygnus.com>
12091
12092 * configure: Default CXX to c++, not gcc.
12093 * Makefile.in (CXX): Set to c++, not gcc.
12094 (CXX_FOR_TARGET): When cross, transform c++, not gcc.
12095
12096 Thu May 1 10:11:43 1997 Geoffrey Noer <noer@cygnus.com>
12097
12098 * install-sh: try appending a .exe if source file doesn't
12099 exist
12100
12101 Wed Apr 30 12:05:36 1997 Jason Merrill <jason@yorick.cygnus.com>
12102
12103 * configure.in: Turn on multilib by default.
12104 (cross_only): Remove target-libiberty.
12105
12106 * Makefile.in (all-gcc): Don't depend on libiberty.
12107
12108 Mon Apr 28 18:39:45 1997 Michael Snyder <msnyder@cleaver.cygnus.com>
12109
12110 * config.guess: improve algorithm for recognizing Gnu Hurd x86.
12111
12112 Thu Apr 24 19:30:07 1997 Ian Lance Taylor <ian@cygnus.com>
12113
12114 * Makefile.in (DEVO_SUPPORT): Add mpw-install.
12115 (DISTBISONFILES): Add ld/Makefile.in
12116
12117 Tue Apr 22 17:17:28 1997 Geoffrey Noer <noer@pizza.cygnus.com>
12118
12119 * configure.in: if target is cygwin32 but host isn't cygwin32,
12120 don't configure gdb tcl tk expect, not just gdb.
12121
12122 Mon Apr 21 13:33:39 1997 Tom Tromey <tromey@cygnus.com>
12123
12124 * configure.in: Added gnuserv everywhere sn appears.
12125
12126 * Makefile.in (ALL_MODULES): Added all-gnuserv.
12127 (CROSS_CHECK_MODULES): Added check-gnuserv.
12128 (INSTALL_MODULES): Added install-gnuserv.
12129 (CLEAN_MODULES): Added clean-gnuserv.
12130 (all-gnuserv): New target.
12131
12132 Thu Apr 17 13:57:06 1997 Per Fogelstrom <pefo@openbsd.org>
12133
12134 * config.guess: Fixes for MIPS OpenBSD systems.
12135
12136 Tue Apr 15 12:21:07 1997 Ian Lance Taylor <ian@cygnus.com>
12137
12138 * Makefile.in (INSTALL_XFORM): Remove.
12139 (BASE_FLAGS_TO_PASS): Remove INSTALL_XFORM.
12140
12141 * mkinstalldirs: New file, copied from automake.
12142 * Makefile.in (installdirs): Rename from install-dirs. Use
12143 mkinstalldirs. Change all users.
12144 (DEVO_SUPPORT): Add mkinstalldirs.
12145
12146 Mon Apr 14 11:21:38 1997 Ian Lance Taylor <ian@cygnus.com>
12147
12148 * install-sh: Rename from install.sh.
12149 * Makefile.in (INSTALL): Change install.sh to install-sh.
12150 (DEVO_SUPPORT): Likewise.
12151
12152 * configure: Use ${config_shell} with ${moveifchange}. From Thomas
12153 Graichen <graichen@rzpd.de>.
12154
12155 Fri Apr 11 16:37:10 1997 Niklas Hallqvist <niklas@appli.se>
12156
12157 * config.guess: Recognize OpenBSD systems correctly.
12158
12159 Fri Apr 11 17:07:04 1997 Jason Molenda (crash@godzilla.cygnus.co.jp)
12160
12161 * README, Makefile.in (ETC_SUPPORT): Remove references to
12162 cfg-paper*, configure.{texi,man,info*}._
12163
12164 Sun Apr 6 18:47:57 1997 Andrew Cagney <cagney@kremvax.cygnus.com>
12165
12166 * Makefile.in (all.normal): Ensure that gcc is built after all
12167 the x11 - ie gdb - targets.
12168
12169 Tue Apr 1 16:28:50 1997 Klaus Kaempf <kkaempf@progis.de>
12170
12171 * makefile.vms: Don't run conf-a-gas.
12172
12173 Mon Mar 31 16:26:55 1997 Joel Sherrill <joel@oarcorp.com>
12174
12175 * configure.in (hppa1.1-*-rtems*): New target, like hppa-*-*elf*.
12176
12177 Sun Mar 30 12:38:27 1997 Fred Fish <fnf@cygnus.com>
12178
12179 * configure.in: Remove noconfigdirs case since gdb also
12180 configures and builds for tic80-coff.
12181
12182 Fri Mar 28 18:28:52 1997 Ian Lance Taylor <ian@cygnus.com>
12183
12184 * configure: Set cache_file to config.cache.
12185 * Makefile.in (local-distclean): Remove config.cache.
12186
12187 Wed Mar 26 18:49:39 1997 Ian Lance Taylor <ian@cygnus.com>
12188
12189 * COPYING: Update FSF address.
12190
12191 Wed Mar 26 10:38:25 1997 Michael Meissner <meissner@cygnus.com>
12192
12193 * configure.in (tic80-*-*): Remove G++ libraries and libgloss from
12194 noconfigdirs.
12195
12196 Mon Mar 24 15:02:39 1997 Ian Lance Taylor <ian@cygnus.com>
12197
12198 * Makefile.in (install-dirs): Don't crash if prefix, and hence
12199 MAKEDIRS, is empty.
12200
12201 Mon Mar 24 12:40:55 1997 Doug Evans <dje@canuck.cygnus.com>
12202
12203 * config.sub: Tweak mn10300 entry.
12204
12205 Fri Mar 21 15:35:27 1997 Michael Meissner <meissner@cygnus.com>
12206
12207 * configure.in (host_tools): Put sim before gdb, so gdb's
12208 configure.tgt can determine if the simulator was configured.
12209
12210 Sun Mar 16 16:07:08 1997 Fred Fish <fnf@cygnus.com>
12211
12212 * config.sub: Move BeOS $os case to be with other Cygnus
12213 local cases.
12214
12215 Sun Mar 16 01:34:55 1997 Martin Hunt <hunt@cygnus.com>
12216
12217 * config.sub: Remove misplaced comment that broke Linux.
12218
12219 Sat Mar 15 22:50:15 1997 Fred Fish <fnf@cygnus.com>
12220
12221 * config.sub: Add BeOS support.
12222
12223 Mon Mar 10 13:30:11 1997 Tom Tromey <tromey@cygnus.com>
12224
12225 * Makefile.in (CHECK_X11_MODULES): Don't run check-tk.
12226
12227 Wed Mar 5 12:09:29 1997 Martin <hunt@cygnus.com>
12228
12229 * configure.in (noconfigdirs): Remove tcl and tk from
12230 noconfigdirs for cygwin32 builds.
12231
12232 Fri Feb 28 18:20:15 1997 Fred Fish <fnf@cygnus.com>
12233
12234 * configure.in (tic80-*-*): Remove ld from noconfigdirs.
12235
12236 Thu Feb 27 14:57:26 1997 Ken Raeburn <raeburn@cygnus.com>
12237
12238 * Makefile.in (GAS_SUPPORT_DIRS, BINUTILS_SUPPORT_DIRS): Remove
12239 make-all.com, use makefile.vms instead.
12240
12241 Tue Feb 25 18:46:14 1997 Stan Shebs <shebs@andros.cygnus.com>
12242
12243 * config.sub: Accept -lnews*.
12244
12245 Tue Feb 25 13:19:14 1997 Andrew Cagney <cagney@kremvax.tpgi.com.au>
12246
12247 * configure.in (noconfigdirs): Disable target-newlib,
12248 target-examples and target-libiberty for d30v.
12249
12250 Fri Feb 21 17:56:25 1997 Martin M. Hunt <hunt@pizza.cygnus.com>
12251
12252 * configure.in (noconfigdirs): Enable ld for d30v.
12253
12254 Fri Feb 21 20:58:51 1997 Michael Meissner <meissner@cygnus.com>
12255
12256 * configure.in (tic80-*-*): Build compiler.
12257
12258 Sun Feb 16 15:41:09 1997 Andrew Cagney <cagney@critters.cygnus.com>
12259
12260 * configure.in (d30v-*): Remove sim directory from list of
12261 unsupported d30v directories
12262
12263 Tue Feb 18 17:32:42 1997 Martin M. Hunt <hunt@pizza.cygnus.com>
12264
12265 * config.sub, configure.in: Add d30v target cpu.
12266
12267 Thu Feb 13 22:04:44 1997 Klaus Kaempf <kkaempf@progis.de>
12268
12269 * makefile.vms: New file.
12270 * make-all.com: Remove.
12271
12272 Wed Feb 12 12:54:18 1997 Jim Wilson <wilson@cygnus.com>
12273
12274 * Makefile.in (EXTRA_GCC_FLAGS): Add LIBGCC2_DEBUG_CFLAGS.
12275
12276 Sat Feb 8 20:36:49 1997 Michael Meissner <meissner@cygnus.com>
12277
12278 * Makefile.in (all-itcl): The rule is all-itcl, not all-tcl.
12279
12280 Tue Feb 4 11:39:29 1997 Tom Tromey <tromey@cygnus.com>
12281
12282 * Makefile.in (ALL_MODULES): Added all-db.
12283 (CROSS_CHECK_MODULES): Addec check-db.
12284 (INSTALL_MODULES): Added install-db.
12285 (CLEAN_MODULES): Added clean-db.
12286
12287 Mon Feb 3 13:29:36 1997 Ian Lance Taylor <ian@cygnus.com>
12288
12289 * config.guess: Merge with latest FSF sources.
12290
12291 Tue Jan 28 09:20:37 1997 Tom Tromey <tromey@cygnus.com>
12292
12293 * Makefile.in (ALL_MODULES): Added all-itcl.
12294 (CROSS_CHECK_MODULES): Added check-itcl.
12295 (INSTALL_MODULES): Added install-itcl.
12296 (CLEAN_MODULES): Added clean-itcl.
12297
12298 Thu Jan 23 01:44:27 1997 Geoffrey Noer <noer@cygnus.com>
12299
12300 * configure.in: build gdb for mn10200
12301
12302 Fri Jan 17 15:32:15 1997 Doug Evans <dje@canuck.cygnus.com>
12303
12304 * Makefile.in (all-target-winsup): Depend on all-target-libio.
12305
12306 Mon Jan 13 22:46:54 1997 Michael Meissner <meissner@tiktok.cygnus.com>
12307
12308 * configure.in (tic80-*-*): Turn off most targets right now.
12309
12310 Fri Jan 3 16:04:03 1997 Ian Lance Taylor <ian@cygnus.com>
12311
12312 * Makefile.in (MAKEINFO): Check for the existence of the Makefile,
12313 rather than the makeinfo program.
12314 (do-info): Depend upon all-texinfo.
12315
12316 Tue Dec 31 16:00:31 1996 Ian Lance Taylor <ian@cygnus.com>
12317
12318 * configure.in: Remove uses of config/mh-linux.
12319
12320 * config.sub, config.guess: Merge with latest FSF sources.
12321
12322 Fri Dec 27 23:04:33 1996 Fred Fish <fnf@cygnus.com>
12323
12324 * config.sub (case $basic_machine): Add tic80 entries.
12325
12326 Fri Dec 27 12:07:59 1996 Ian Lance Taylor <ian@cygnus.com>
12327
12328 * config.sub, config.guess: Merge with latest FSF sources.
12329
12330 Wed Dec 18 22:46:39 1996 Stan Shebs <shebs@andros.cygnus.com>
12331
12332 * mpw-build.in: Build ld before gcc, use NewFolderRecursive.
12333 * mpw-config.in: Test for NewFolderRecursive.
12334 * mpw-install: Use symbolic name for startup filename.
12335 * mpw-README: Add various additional details.
12336
12337 Wed Dec 18 13:11:46 1996 Jim Wilson <wilson@cygnus.com>
12338
12339 * configure.in (mips*-sgi-irix6*): Remove binutils from noconfigdirs.
12340
12341 Wed Dec 18 10:29:31 1996 Jeffrey A Law (law@cygnus.com)
12342
12343 * configure.in: Do build gcc and the target libraries for
12344 the mn10200.
12345
12346 Wed Dec 4 16:53:05 1996 Geoffrey Noer <noer@cygnus.com>
12347
12348 * configure.in: don't avoid building gdb for mn10300 any more
12349 * Makefile.in: double-quote GCC_FOR_TARGET line in EXTRA_GCC_FLAGS
12350 instead of single-quoting it.
12351
12352 Tue Dec 3 23:26:50 1996 Jason Merrill <jason@yorick.cygnus.com>
12353
12354 * configure.in: Don't use --with-stabs on IRIX 6.
12355
12356 Tue Dec 3 09:05:25 1996 Doug Evans <dje@canuck.cygnus.com>
12357
12358 * configure.in (m32r): Build gdb, libg++ now.
12359
12360 Sun Dec 1 00:18:59 1996 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
12361
12362 * configure.in (mips*-sgi-irix6*): Remove gdb and related
12363 directories from noconfigdirs.
12364
12365 Tue Nov 26 11:45:33 1996 Kim Knuttila <krk@cygnus.com>
12366
12367 * config.sub (basic_machine): added mips16 configuration
12368
12369 Sat Nov 23 19:26:22 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12370
12371 * config.sub: Handle d10v-unknown.
12372
12373 Sat Nov 23 10:23:01 1996 Gavin Koch <gavin@cygnus.com>
12374
12375 * config.sub: Handle v850-unknown.
12376
12377 Thu Nov 21 16:19:44 1996 Geoffrey Noer <noer@cygnus.com>
12378
12379 * Makefile.in: add findutils
12380 * configure.in: add findutils to list of host_tools
12381
12382 Wed Nov 20 10:09:01 1996 Jeffrey A Law (law@cygnus.com)
12383
12384 * config.sub: Handle mn10200 and mn10300.
12385
12386 Tue Nov 19 16:35:14 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12387
12388 * configure.in (d10v-*): Do not build librx.
12389
12390 Mon Nov 18 13:28:41 1996 Jeffrey A Law (law@cygnus.com)
12391
12392 * configure.in (mn10300): Build everything except gdb & libgloss.
12393
12394 Wed Nov 13 14:59:46 1996 Per Bothner <bothner@deneb.cygnus.com>
12395
12396 * config.guess: Patch for Dansk Data Elektronik servers,
12397 from Niels Skou Olsen <nso@dde.dk>.
12398
12399 For ncr, use /bin/uname rather than uname, since GNU uname does not
12400 support -p. Suggested by Mark Mitchell <mmitchell@usa.net>.
12401
12402 Patch for MIPS R4000 running System V,
12403 from Eric S. Raymond <esr@snark.thyrsus.com>.
12404
12405 Fix thinko for nextstep.
12406
12407 Patch for OSF1 in i?86, from Dan Murphy <dlm@osf.org> via Harlan Stenn.
12408
12409 Sat Jun 24 18:58:17 1995 Morten Welinder <terra+@cs.cmu.edu>
12410 * config.guess: Guess mips-dec-mach_bsd4.3.
12411
12412 Thu Oct 10 04:07:04 1996 Harlan Stenn <harlan@pfcs.com>
12413 * config.guess (i?86-ncr-sysv*): Emit just enough of the minor
12414 release numbers.
12415 * config.guess (mips-mips-riscos*): Emit just enough of the
12416 release number.
12417
12418 Tue Oct 8 10:37:22 1996 Frank Vance <fvance@waii.com>
12419 * config.guess (sparc-auspex-sunos*): Added.
12420 (f300-fujitsu-*): Added.
12421
12422 Wed Sep 25 22:00:35 1996 Jeff Woolsey <woolsey@jlw.com>
12423 * config.guess: Recognize a Tadpole as a sparc.
12424
12425 Wed Nov 13 00:53:09 1996 David J. MacKenzie <djm@churchy.gnu.ai.mit.edu>
12426
12427 * config.guess: Don't assume that NextStep version is either 2 or
12428 3. NextStep 4 (aka OpenStep 4) has come out now.
12429
12430 Mon Nov 11 23:52:03 1996 David J. MacKenzie <djm@churchy.gnu.ai.mit.edu>
12431
12432 * config.guess: Support Cray T90 that reports itself as "CRAY TS".
12433 From Rik Faith <faith@cs.unc.edu>.
12434
12435 Fri Nov 8 11:34:58 1996 David J. MacKenzie <djm@geech.gnu.ai.mit.edu>
12436
12437 * config.sub: Contributions from bug-gnu-utils to:
12438 Support plain "hppa" (no version given) architecture, reported by
12439 OpenStep.
12440 OpenBSD like NetBSD.
12441 LynxOs is not a hardware supplier.
12442
12443 * config.guess: Contributions from bug-gnu-utils to add support for:
12444 OpenBSD like NetBSD.
12445 Stratus systems.
12446 More Pyramid systems.
12447 i[n>4]86 Intel chips.
12448 M680[n>4]0 Motorola chips.
12449 Use unknown instead of lynx for hardware manufacturer.
12450
12451 Mon Nov 11 10:09:08 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
12452
12453 * install.sh (chmodcmd): Set to null if the DST directory already
12454 exists.
12455
12456 Mon Nov 11 10:43:41 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12457
12458 * configure.in (powerpc*-{eabi,elf,linux,rtem,sysv,solaris}*): Do
12459 not use mt-ppc target Makefile fragment any more.
12460
12461 Sun Nov 3 19:17:07 1996 Stu Grossman (grossman@critters.cygnus.com)
12462
12463 * configure.in (*-*-windows): Exclude everything but those dirs
12464 needed to build windows.
12465
12466 Tue Oct 29 16:41:31 1996 Doug Evans <dje@canuck.cygnus.com>
12467
12468 * Makefile.in (all-target-winsup): Depend on all-target-librx.
12469
12470 Mon Oct 28 17:32:46 1996 Stu Grossman (grossman@critters.cygnus.com)
12471
12472 * configure.in: Exclude mmalloc from i386-windows.
12473
12474 Thu Oct 24 09:22:46 1996 Stu Grossman (grossman@critters.cygnus.com)
12475
12476 * Undo my previous change.
12477
12478 Thu Oct 24 12:12:04 1996 Ian Lance Taylor <ian@cygnus.com>
12479
12480 * Makefile.in (EXTRA_GCC_FLAGS): Pass down GCC_FOR_TARGET
12481 unconditionally.
12482 (MAKEOVERRIDES): Define (revert this part of October 18 change).
12483
12484 Thu Oct 24 09:02:07 1996 Stu Grossman (grossman@critters.cygnus.com)
12485
12486 * Makefile.in (FLAGS_TO_PASS): Add $(HOST_FLAGS) to allow the
12487 host to add it's own flags.
12488
12489 Tue Oct 22 15:20:26 1996 Ian Lance Taylor <ian@cygnus.com>
12490
12491 * configure: Handle GCC_FOR_TARGET like CC_FOR_TARGET.
12492
12493 Fri Oct 18 13:37:13 1996 Ian Lance Taylor <ian@cygnus.com>
12494
12495 * Makefile.in (CC_FOR_TARGET): Check for xgcc, not Makefile.
12496 (CXX_FOR_TARGET): Likewise.
12497 (GCC_FOR_TARGET): Define.
12498 (BASE_FLAGS_TO_PASS): Remove GCC_FOR_TARGET.
12499 (EXTRA_GCC_FLAGS): Define GCC_FOR_TARGET based on whether
12500 CC_FOR_TARGET was specified on the command line.
12501 (MAKEOVERRIDES): Don't define.
12502
12503 Thu Oct 17 10:27:56 1996 Doug Evans <dje@canuck.cygnus.com>
12504
12505 * configure.in (m32r): Fix spelling of libg++ libs.
12506
12507 Thu Oct 10 10:37:17 1996 Stan Shebs <shebs@andros.cygnus.com>
12508
12509 * config.sub (-apple*): Remove, now redundant.
12510
12511 Thu Oct 10 12:30:54 1996 Ian Lance Taylor <ian@cygnus.com>
12512
12513 * configure: Don't get confused by CPU-VENDOR-linux-gnu.
12514
12515 * configure: Rework yesterday's sed script patch.
12516
12517 * config.sub: Merge with FSF.
12518
12519 Wed Oct 9 17:24:59 1996 Per Bothner <bothner@deneb.cygnus.com>
12520
12521 * config.guess: Merge from FSF.
12522
12523 1996-09-12 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
12524 * config.guess: Use pc instead of unknown, for pc clone systems.
12525 Change linux to linux-gnu.
12526
12527 Mon Jul 15 23:51:11 1996 Karl Heuer <kwzh@gnu.ai.mit.edu>
12528 * config.guess: Avoid non-portable tr syntax.
12529
12530 Wed Oct 9 06:06:46 1996 Jeffrey A Law (law@cygnus.com)
12531
12532 * test-build.mk (HOLES): Add "xargs" for gdb.
12533
12534 * configure: Avoid hpux10.20 sed bug.
12535
12536 Tue Oct 8 08:32:48 1996 Stu Grossman (grossman@critters.cygnus.com)
12537
12538 * configure.in: Add support for windows host
12539 (that is a build done under the Microsoft build environment).
12540
12541 Tue Oct 8 10:39:08 1996 Ian Lance Taylor <ian@cygnus.com>
12542
12543 * Makefile.in: Replace all uses of srcroot with s, to shrink
12544 command line lengths.
12545
12546 Patches from Geoffrey Noer <noer@cygnus.com>:
12547 * configure.in: If configuring for newlib, pass --with-newlib to
12548 subdirectories.
12549 * Makefile.in (CC_FOR_TARGET): If winsup/Makefile exists, pass a
12550 -Bnewlib/ and -Lwinsup to gcc.
12551 (CXX_FOR_TARGET): Likewise.
12552
12553 Mon Oct 7 10:59:35 1996 Ian Lance Taylor <ian@cygnus.com>
12554
12555 * Makefile.in (ETC_SUPPORT): Add configure.
12556
12557 Fri Oct 4 12:22:58 1996 Angela Marie Thomas (angela@cygnus.com)
12558
12559 * configure.in: Use config/mh-dgux386 for i[345]86-dg-dgux
12560 host configuration file.
12561
12562 Thu Oct 3 09:28:25 1996 Jeffrey A Law (law@cygnus.com)
12563
12564 * configure.in: Break mn10x00 support into separate
12565 mn10200 and mn10300 configurations.
12566 * config.sub: Likewise.
12567
12568 Wed Oct 2 22:27:52 1996 Jeffrey A Law (law@cygnus.com)
12569
12570 * configure.in: Add lots of stuff to noconfigdirs for
12571 the mn10x00 targets.
12572
12573 * config.sub, configure.in: Add mn10x00 support.
12574
12575 Wed Oct 2 15:52:36 1996 Klaus Kaempf <kkaempf@progis.de>
12576
12577 * make-all.com: Call conf-a-gas, not config-a-gas.
12578
12579 Tue Oct 1 01:28:41 1996 James G. Smith <jsmith@cygnus.co.uk>
12580
12581 * configure.in (noconfigdirs): Don't build libgloss for arm-coff
12582 targets.
12583
12584 Mon Sep 30 14:24:01 1996 Stan Shebs <shebs@andros.cygnus.com>
12585
12586 * mpw-README: Add much more detail for native PowerMac.
12587 * mpw-install: New file.
12588 * mpw-configure: Add --norecursion and --help options.
12589 * mpw-config.in: Translate readme and install files when
12590 copying to objdir.
12591 * mpw-build.in: Don't always depend on byacc and flex.
12592 (install-only-top): New action.
12593
12594 Fri Sep 27 17:39:44 1996 Stu Grossman (grossman@critters.cygnus.com)
12595
12596 * configure.in: You can now configure GDB for the v850.
12597
12598 Tue Sep 24 19:05:12 1996 Stan Shebs <shebs@andros.cygnus.com>
12599
12600 * configure.in (noconfigdirs): Don't configure any C++ dirs
12601 if targeting D10V.
12602
12603 Tue Sep 17 12:15:31 1996 Ian Lance Taylor <ian@cygnus.com>
12604
12605 * config.sub: Recognize mips64vr5000.
12606
12607 Mon Sep 16 17:00:52 1996 Ian Lance Taylor <ian@cygnus.com>
12608
12609 * configure.in: Use a single line for host_tools and native_only.
12610
12611 Mon Sep 9 12:21:30 1996 Doug Evans <dje@canuck.cygnus.com>
12612
12613 * config.sub, configure.in: Add entries for m32r.
12614
12615 Thu Sep 5 13:52:47 1996 Tom Tromey <tromey@creche.cygnus.com>
12616
12617 * Makefile.in (inet-install): Don't run install-gzip.
12618
12619 Wed Sep 4 17:26:13 1996 Stu Grossman (grossman@critters.cygnus.com)
12620
12621 * configure.in: Don't config lots of things for *-*-windows*.
12622
12623 Sat Aug 31 11:45:57 1996 Stan Shebs <shebs@andros.cygnus.com>
12624
12625 * mpw-config.in: Test for mpw-true, true, and null-command scripts.
12626 (host_libs, host_tools): Copy from configure.in.
12627 * mpw-configure: Don't complain about directories not found.
12628
12629 Thu Aug 29 16:44:58 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12630
12631 * configure.in (i[345]86): Recognize i686 for pentium pro.
12632 (i[3456]86-*-dgux*): Use config/mh-sysv for the host configuration
12633 file.
12634
12635 * config.guess (i[345]86): Ditto.
12636
12637 Mon Aug 26 18:34:42 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
12638
12639 * configure.in (noconfigdirs): Removed gdb for D10V.
12640
12641 Thu Aug 22 17:13:52 1996 Jeffrey A Law (law@cygnus.com)
12642
12643 * configure.in: Remove ld, target-libio, target-libg++, and
12644 target-libstdc++ from noconfigdirs.
12645
12646 Wed Aug 21 18:56:38 1996 Fred Fish <fnf@cygnus.com>
12647
12648 * configure: Fix three locations where shell scripts were
12649 being run directly rather than with config_shell.
12650
12651 Tue Aug 20 13:08:47 1996 J.T. Conklin <jtc@hippo.cygnus.com>
12652
12653 * configure.in (v850-*-*): Set up initial $noconfigdirs.
12654 * config.sub (basic_machine): Recognize v850.
12655
12656 Thu Aug 15 12:19:33 1996 Stan Shebs <shebs@andros.cygnus.com>
12657
12658 * mpw-configure: Handle multiple enable/disable options and
12659 pass them down recursively, handle -c and -s flags appropriately
12660 depending on choice of compiler, add escape mechanism for
12661 quoted arguments to gC.
12662
12663 Mon Aug 12 13:15:13 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12664
12665 * configure.in (powerpc*-*-*): For eabi, system V.4, Linux, and
12666 solaris targets, use config/mt-ppc to set C{,XX}FLAGS_FOR_TARGETS
12667 so that -mrelocatable-lib and -mno-eabi are used.
12668
12669 * Makefile.in (CONFIGURE_TARGET_MODULES): If target compiler does
12670 not support --print-multi-lib, don't abort.
12671
12672 Thu Aug 8 12:18:59 1996 Klaus Kaempf <kkaempf@progis.de>
12673
12674 * make-all.com: Run config-a-gas.
12675 * setup.com: Don't copy subdirectory files around.
12676
12677 Tue Jul 30 17:49:31 1996 Brendan Kehoe <brendan@cygnus.com>
12678
12679 * configure.in (*-*-ose): Remove exclusion of libgloss for this
12680 target, it now compiles correctly.
12681
12682 Sat Jul 27 15:10:43 1996 Stan Shebs <shebs@andros.cygnus.com>
12683
12684 * mpw-config.in: Generate Mac include for elf/dwarf2.h.
12685
12686 Tue Jul 23 10:47:04 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
12687
12688 * configure.in (d10v-*-*): Remove ld from $noconfigdirs.
12689
12690 Mon Jul 22 13:28:51 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
12691
12692 * configure.in (native_only): Add prms.
12693
12694 Mon Jul 22 12:27:58 1996 Ian Lance Taylor <ian@cygnus.com>
12695
12696 * Makefile.in (GAS_SUPPORT_DIRS): Add make-all.com and setup.com.
12697 (BINUTILS_SUPPORT_DIRS): Likewise.
12698
12699 Thu Jul 18 12:55:40 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12700
12701 * configure.in (d10v-*-*): Don't configure ld or gdb until the
12702 d10v support is added.
12703
12704 Wed Jul 17 14:33:09 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
12705
12706 * configure.in (d10v-*-*): New target.
12707
12708 Mon Jul 15 11:53:00 1996 Jeffrey A Law (law@cygnus.com)
12709
12710 * config.guess (HP 9000/811): Recognize this as a PA1.1
12711 machine.
12712
12713 Fri Jul 12 23:21:17 1996 Ken Raeburn <raeburn@cygnus.com>
12714
12715 * Makefile.in (do-tar-gz): New target, split out from tail end of
12716 taz target. Run each command separately, don't use pipes.
12717 (taz): Use it.
12718
12719 Fri Jul 12 12:08:04 1996 Stan Shebs <shebs@andros.cygnus.com>
12720
12721 * mpw-configure: Look for g-mpw-make.sed in config/mpw.
12722 * mpw-build.in: No builds should depend on building byacc or flex,
12723 they are assumed to be installed already.
12724
12725 Fri Jul 12 09:52:52 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12726
12727 * Makefile.in (CONFIGURE_TARGET_MODULES): Set r environment
12728 variable that CC_FOR_TARGET needs.
12729
12730 Thu Jul 11 10:09:45 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12731
12732 * Makefile.in (CONFIGURE_TARGET_MODULES): Determine if the multlib
12733 options have changed since the last time the subdirectory was
12734 configured, and if it has, reconfigure.
12735 (CLEAN_TARGET_MODULES): Delete multilib.out and tmpmulti.out, which
12736 CONFIGURE_TARGET_MODULES uses to remember the old multilib options.
12737
12738 Wed Jul 10 18:56:59 1996 Doug Evans <dje@canuck.cygnus.com>
12739
12740 * Makefile.in (ALL_MODULES,CROSS_CHECK_MODULES,INSTALL_MODULES,
12741 CLEAN_MODULES): Add bash.
12742 (all-bash): New target.
12743
12744 Mon Jul 8 17:33:14 1996 Jim Wilson <wilson@cygnus.com>
12745
12746 * configure.in (mips-sgi-irix6*): Use mh-irix6 instead of mh-irix5.
12747
12748 Mon Jul 1 13:31:35 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12749
12750 * config.sub (basic_machine): Recognize d10v as a valid processor.
12751
12752 Fri Jun 28 12:14:35 1996 Stan Shebs <shebs@andros.cygnus.com>
12753
12754 * mpw-configure: Add support for --bindir.
12755 * mpw-build.in: Use a GCC-specific build script for GCC actions.
12756
12757 Wed Jun 26 17:20:12 1996 Geoffrey Noer <noer@cygnus.com>
12758
12759 * configure.in: add bash, time, gawk to list of hosttools and things
12760 to only build for native toolchains
12761
12762 Tue Jun 25 23:09:03 1996 Jason Molenda (crash@godzilla.cygnus.co.jp)
12763
12764 * Makefile.in (docdir): Remove.
12765
12766 Tue Jun 25 19:00:08 1996 Jason Molenda (crash@godzilla.cygnus.co.jp)
12767
12768 * Makefile.in (datadir): Set to $(prefix)/share.
12769
12770 Mon Jun 24 23:26:07 1996 Geoffrey Noer <noer@cygnus.com>
12771
12772 * configure.in: build diff and patch for cygwin32-hosted
12773 toolchains.
12774
12775 Mon Jun 24 15:01:12 1996 Joel Sherrill <joel@merlin.gcs.redstone.army.mil>
12776
12777 * config.sub: Accept -rtems*.
12778
12779 Sun Jun 23 22:41:54 1996 Geoffrey Noer <noer@cygnus.com>
12780
12781 * configure.in: enable dosrel for cygwin32-hosted builds,
12782 remove diff from the list of things not buildable
12783 via Canadian Cross
12784
12785 Sat Jun 22 11:39:01 1996 Jason Merrill <jason@yorick.cygnus.com>
12786
12787 * Makefile.in (TARGET_SUBDIR): Move comment to previous line so we
12788 don't get ". ".
12789
12790 Fri Jun 21 17:24:48 1996 Jim Wilson <wilson@cygnus.com>
12791
12792 * configure.in (mips*-sgi-irix6*): Set noconfigdirs appropriately.
12793
12794 Thu Jun 20 16:57:40 1996 Ken Raeburn <raeburn@cygnus.com>
12795
12796 * Makefile.in (taz): Handle case where tex3patch didn't even get
12797 checked out. Also, if it was found, put the symlink in a new util
12798 subdirectory.
12799
12800 Thu Jun 20 12:20:33 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12801
12802 * config.guess (*:Linux:*:*): Add support for PowerPC Linux.
12803
12804 Tue Jun 18 14:24:12 1996 Klaus Kaempf (kkaempf@progis.de)
12805
12806 * config.sub: Recognize -openvms.
12807 * configure.in (alpha*-*-*vms*): Set noconfigdirs.
12808 * make-all.com, setup.com: New files.
12809
12810 Mon Jun 17 16:34:46 1996 Jason Merrill <jason@yorick.cygnus.com>
12811
12812 * Makefile.in (taz): tex3patch moved to texinfo/util.
12813
12814 Sat Jun 15 17:13:25 1996 Geoffrey Noer <noer@cygnus.com>
12815
12816 * configure: enable_gdbtk=no for cygwin32-hosted toolchains
12817 * configure.in: remove make from disable-if-Can-Cross list
12818 enable gdb if ${host} and ${target} are cygwin32
12819
12820 Fri Jun 7 18:16:52 1996 Harlan Stenn <harlan@pfcs.com>
12821
12822 * config.guess (i?86-ncr-sysv*): Emit minor release numbers.
12823 Recognize the NCR 4850 machine and NCR Pentium-based platforms.
12824
12825 Wed Jun 5 00:09:17 1996 Per Bothner <bothner@wombat.gnu.ai.mit.edu>
12826
12827 * config.guess: Combine mips-mips-riscos cases, and use cpp to
12828 distinguish sysv/svr4/bsd variants.
12829 Based on a patch from Harlan Stenn <harlan@pfcs.com>.
12830
12831 Fri Jun 7 14:24:49 1996 Tom Tromey <tromey@creche.cygnus.com>
12832
12833 * configure.in: Added copyright notice.
12834 * move-if-change: Added copyright notice.
12835
12836 Thu Jun 6 16:27:05 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12837
12838 * configure.in (powerpcle-*-solaris*): Until we get shared
12839 libraries working, don't build gdb, sim, make, tcl, tk, or
12840 expect.
12841
12842 Tue Jun 4 20:41:45 1996 Per Bothner <bothner@deneb.cygnus.com>
12843
12844 * config.guess: Merge with FSF:
12845
12846 Mon Jun 3 08:49:14 1996 Karl Heuer <kwzh@gnu.ai.mit.edu>
12847 * config.guess (*:Linux:*:*): Add guess for sparc-unknown-linux.
12848
12849 Fri May 24 18:34:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
12850 * config.guess (AViiON:dgux:*:*): Fix typo in recognizing mc88110.
12851
12852 Fri Apr 12 20:03:59 1996 Per Bothner <bothner@spiff.gnu.ai.mit.edu>
12853 * config.guess: Combine two OSF1 rules.
12854 Also recognize field test versions. From mjr@zk3.dec.com.
12855 * config.guess (dgux): Use /usr/bin/uname rather than uname,
12856 because GNU uname does not support -p. From pmr@pajato.com.
12857
12858 Tue Jun 4 11:07:25 1996 Tom Tromey <tromey@csk3.cygnus.com>
12859
12860 * Makefile.in (MAKEDIRS): Removed $(tooldir).
12861
12862 Tue May 28 12:30:50 1996 Stan Shebs <shebs@andros.cygnus.com>
12863
12864 * mpw-README: Document GCCIncludes.
12865
12866 Sun May 26 15:16:27 1996 Fred Fish <fnf@cygnus.com>
12867
12868 * configure.in (alpha-*-linux*): Set enable_shared to yes.
12869
12870 Tue May 21 15:41:39 1996 Stan Shebs <shebs@andros.cygnus.com>
12871
12872 * mpw-configure: Handle --enable-FOO and --disable-FOO.
12873
12874 Mon May 20 10:12:29 1996 Geoffrey Noer <noer@cygnus.com>
12875
12876 * configure.in (*-*-cygwin32): Configure make.
12877
12878 Tue May 7 14:19:42 1996 Tom Tromey <tromey@snuffle.cygnus.com>
12879
12880 * Makefile.in (inet-install): Quote value of INSTALL_MODULES.
12881
12882 Fri May 3 08:57:17 1996 Tom Tromey <tromey@lisa.cygnus.com>
12883
12884 * Makefile.in (all-inet): Depend on all-perl.
12885
12886 * Makefile.in (inet-install): New target.
12887
12888 * Makefile.in (all-inet): Depend on all-tcl.
12889 (all-inet): Depend on all-send-pr.
12890
12891 Tue Apr 30 13:55:51 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12892
12893 * configure.in (powerpcle-*-solaris*): Turn off tk and tcl
12894 temporarily.
12895
12896 Thu Apr 25 11:48:20 1996 Ian Lance Taylor <ian@cygnus.com>
12897
12898 * configure.in: Don't configure --with-gnu-ld on AIX.
12899
12900 Thu Apr 25 06:33:36 1996 Michael Meissner <meissner@wogglebug.tiac.net>
12901
12902 * configure.in (powerpcle-*-solaris*): Turn off gdb temporarily.
12903
12904 Tue Apr 23 09:07:39 1996 Tom Tromey <tromey@creche.cygnus.com>
12905
12906 * Makefile.in (ALL_MODULES): Added all-inet.
12907 (CROSS_CHECK_MODULES): Added check-inet.
12908 (INSTALL_MODULES): Added install-inet.
12909 (CLEAN_MODULES): Added clean-inet.
12910 (all-indent): New target.
12911
12912 * configure.in (host_tools): Added inet.
12913 (native_only): Added inet.
12914 (noconfigdirs): Added inet.
12915
12916 Fri Apr 19 15:35:29 1996 Ian Lance Taylor <ian@cygnus.com>
12917
12918 * configure.in: Don't configure libgloss if we are not configuring
12919 newlib.
12920
12921 Wed Apr 17 19:30:01 1996 Rob Savoye <rob@chinadoll.cygnus.com>
12922
12923 * configure.in: Don't configure libgloss for unsupported
12924 architectures.
12925
12926 Tue Apr 16 11:17:05 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12927
12928 * Makefile.in (CLEAN_MODULES): Add clean-apache.
12929
12930 Mon Apr 15 15:09:05 1996 Tom Tromey <tromey@creche.cygnus.com>
12931
12932 * Makefile.in (ALL_MODULES): Include all-apache.
12933 (CROSS_CHECK_MODULES): Include check-apache.
12934 (INSTALL_MODULES): Include install-apache.
12935 (all-apache): New target.
12936
12937 * configure.in: Added apache everywhere perl is seen.
12938
12939 Mon Apr 15 14:59:13 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12940
12941 * Makefile.in: Add support for clean-{module} and
12942 clean-target-{module} rules.
12943
12944 Wed Apr 10 21:37:41 PDT 1996 Marilyn E. Sander <msander@cygnus.com>
12945
12946 * configure.in (*-*-ose) do not build libgloss.
12947
12948 Mon Apr 8 16:16:20 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12949
12950 * config.guess (prep*:SunOS:5.*:*): Turn into
12951 powerpele-unknown-solaris2.
12952
12953 Mon Apr 8 14:45:41 1996 Ian Lance Taylor <ian@cygnus.com>
12954
12955 * configure.in: Permit --enable-shared to specify a list of
12956 directories.
12957
12958 Fri Apr 5 08:17:57 1996 Jason Molenda (crash@phydeaux.cygnus.com)
12959
12960 * configure.in (host==solaris): Pass only the first word of $CC
12961 to /usr/bin/which when checking if we're using /usr/ccs/bin/cc.
12962
12963 Fri Apr 5 03:16:13 1996 Jason Molenda (crash@phydeaux.cygnus.com)
12964
12965 * Makefile.in (BASE_FLAGS_TO_PASS): pass down $(MAKE).
12966
12967 Thu Mar 28 14:11:11 1996 Tom Tromey <tromey@creche.cygnus.com>
12968
12969 * Makefile.in (ALL_MODULES): Include all-perl.
12970 (CROSS_CHECK_MODULES): Include check-perl.
12971 (INSTALL_MODULES): Include install-perl.
12972 (ALL_X11_MODULES): Include all-guile.
12973 (CHECK_X11_MODULES): Include check-guile.
12974 (INSTALL_X11_MODULES): Include install-guile.
12975 (all-perl): New target.
12976 (all-guile): New target.
12977
12978 * configure.in (host_tools): Include perl and guile.
12979 (native_only): Include perl and guile.
12980 (noconfigdirs): Don't build guile and perl; no ports have been
12981 done.
12982
12983 Tue Mar 26 21:18:50 1996 Andrew Cagney <cagney@kremvax.highland.com.au>
12984
12985 * configure (--enable-*): Handle quoted option lists such as
12986 --enable-sim-cflags='-g0 -O' better.
12987
12988 Thu Mar 21 11:53:08 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12989
12990 * Makefile.in ({,inst}all-target): New rule so we can make and
12991 install all of the target directories easily.
12992
12993 Wed Mar 20 18:10:57 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
12994
12995 * configure.in: Add missing global flag in sed substitution when
12996 deleting `target-' from ${configdirs}.
12997
12998 Thu Mar 14 19:15:06 1996 Ian Lance Taylor <ian@cygnus.com>
12999
13000 * Makefile.in (DO_X): Don't get confused if CC contains `=' in an
13001 option.
13002
13003 * configure.in (mips*-nec-sysvr4*): Use a host_makefile_frag of
13004 config/mh-necv4.
13005
13006 * install.sh: Correct misspelling of transformbasename.
13007
13008 * config.guess: Recognize mips-*-sysv*.
13009
13010 Mon Mar 11 15:36:42 1996 Dawn Perchik <dawn@critters.cygnus.com>
13011
13012 * config.sub: Recognize mon960.
13013
13014 Sun Mar 10 13:18:38 1996 Ian Lance Taylor <ian@cygnus.com>
13015
13016 * configure: Restore Canadian Cross handling of BISON and LEX,
13017 removed in Feb 20 change.
13018
13019 Fri Mar 8 20:07:09 1996 Per Bothner <bothner@kalessin.cygnus.com>
13020
13021 * README: Suggestions from Torbjorn Granlund <tege@matematik.su.se>:
13022 Mention make install. Remove the old copyright date as well the
13023 clumsy and rather pointless copyright on the README file.
13024
13025 Fri Mar 8 17:51:35 1996 Ian Lance Taylor <ian@cygnus.com>
13026
13027 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): If there is a
13028 Makefile after running symlink-tree, then run `make distclean' to
13029 avoid clobbering any generated files in srcdir.
13030
13031 Tue Mar 5 08:21:44 1996 J.T. Conklin <jtc@rtl.cygnus.com>
13032
13033 * configure.in (m68k-*-netbsd*): Build everything now.
13034
13035 Wed Feb 28 12:25:46 1996 Jason Merrill <jason@yorick.cygnus.com>
13036
13037 * Makefile.in (taz): Fix quoting.
13038
13039 Tue Feb 27 11:33:57 1996 Doug Evans <dje@charmed.cygnus.com>
13040
13041 * configure.in (sparclet-*-*): Build everything now.
13042
13043 Tue Feb 27 14:31:51 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
13044
13045 * configure.in (m68k-*-linux*): New host.
13046
13047 Mon Feb 26 14:32:44 1996 Ian Lance Taylor <ian@cygnus.com>
13048
13049 * configure: Check for bison before byacc.
13050
13051 Tue Feb 20 23:12:35 1996 Stu Grossman (grossman@critters.cygnus.com)
13052
13053 * Makefile.in configure: Change the way LEX and BISON/YACC are
13054 set. configure now defines DEFAULT_LEX and DEFAULT_YACC by
13055 searching PATH. These are used as fallbacks by Makefile.in if
13056 flex/bison/byacc aren't in objdir.
13057
13058 Mon Feb 19 11:45:30 1996 Ian Lance Taylor <ian@cygnus.com>
13059
13060 * Makefile.in: Make everything which depends upon all-bfd also
13061 depend upon all-opcodes, in case --with-commonbfdlib is used.
13062
13063 Thu Feb 15 19:50:50 1996 Michael Meissner <meissner@tiktok.cygnus.com>
13064
13065 * configure.in (host *-*-cygwin32): Don't build gdb if we are
13066 building NT native compilers on Unix.
13067
13068 Thu Feb 15 17:42:25 1996 Ian Lance Taylor <ian@cygnus.com>
13069
13070 * configure.in: Don't get CC from the host Makefile fragment if we
13071 can find gcc in PATH, or if this is a Canadian Cross. Move the
13072 Solaris test for /usr/ucb/cc to the post target script, just after
13073 the compiler sanity test.
13074
13075 Wed Feb 14 16:57:40 1996 Ian Lance Taylor <ian@cygnus.com>
13076
13077 * config.sub: Merge with FSF.
13078
13079 Tue Feb 13 14:27:48 1996 Ian Lance Taylor <ian@cygnus.com>
13080
13081 * Makefile.in (RPATH_ENVVAR): New variable.
13082 (REALLY_SET_LIB_PATH): Use it.
13083 * configure.in: On HP/UX, set RPATH_ENVVAR to SHLIB_PATH.
13084
13085 Mon Feb 12 15:28:49 1996 Doug Evans <dje@charmed.cygnus.com>
13086
13087 * config.sub, configure.in: Recognize sparclet cpu.
13088
13089 Mon Feb 12 15:33:59 1996 Christian Bauernfeind <chrisbfd@theorie3.physik.uni-erlangen.de>
13090
13091 * config.guess: Support m68k-cbm-sysv4.
13092
13093 Sat Feb 10 12:06:42 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
13094
13095 * config.guess (*:Linux:*:*): Guess m68k-unknown-linux and
13096 m68k-unknown-linuxaout from linker help string. Put quotes around
13097 $ld_help_string.
13098
13099 Thu Dec 7 09:03:24 1995 Tom Horsley <Tom.Horsley@mail.hcsc.com>
13100
13101 * config.guess (powerpc-harris-powerunix): Add guess for port
13102 to new target.
13103
13104 Thu Feb 8 15:37:52 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
13105
13106 * config.guess (UNAME_VERSION): Recognize X4.x as an OSF version.
13107
13108 Mon Feb 5 16:36:51 1996 Ian Lance Taylor <ian@cygnus.com>
13109
13110 * configure.in: If --enable-shared was used, set SET_LIB_PATH to
13111 $(REALLY_SET_LIB_PATH) in Makefile.
13112 * Makefile.in (SET_LIB_PATH): New variable.
13113 (REALLY_SET_LIB_PATH): New variable.
13114 ($(DO_X)): Use $(SET_LIB_PATH).
13115 (install.all, gcc-no-fixedincludes, $(ALL_MODULES)): Likewise.
13116 ($(NATIVE_CHECK_MODULES), $(CROSS_CHECK_MODULES)): Likewise.
13117 ($(INSTALL_MODULES), $(CONFIGURE_TARGET_MODULES)): Likewise.
13118 ($(ALL_TARGET_MODULES), $(CHECK_TARGET_MODULES)): Likewise.
13119 ($(INSTALL_TARGET_MODULES), $(ALL_X11_MODULES)): Likewise.
13120 ($(CHECK_X11_MODULES), $(INSTALL_X11_MODULES)): Likewise.
13121 (all-gcc, all-bootstrap, check-gcc, install-gcc): Likewise.
13122 (install-dosrel): Likewise.
13123 (all-opcodes): Depend upon all-libiberty.
13124
13125 Sun Feb 4 16:51:11 1996 Steve Chamberlain <sac@slash.cygnus.com>
13126
13127 * config.guess (*:CYGWIN*): New
13128
13129 Sat Feb 3 10:42:35 1996 Michael Meissner <meissner@tiktok.cygnus.com>
13130
13131 * Makefile.in (all-target-winsup): All all-target-libiberty.
13132
13133 Fri Feb 2 17:58:56 1996 Michael Meissner <meissner@tiktok.cygnus.com>
13134
13135 * configure.in (noconfigdirs): Add missing # in front of comment.
13136
13137 Thu Feb 1 14:38:13 1996 Geoffrey Noer <noer@cygnus.com>
13138
13139 * configure.in: add second pass to things added to noconfigdirs
13140 so *-gm-magic can exclude libgloss properly.
13141
13142 Thu Feb 1 11:10:16 1996 Stan Shebs <shebs@andros.cygnus.com>
13143
13144 * mpw-configure (extralibs_name, rez_name): Set correctly
13145 for MWC68K compiler.
13146
13147 * mpw-README: Add more info on the necessary build tools.
13148
13149 Thu Feb 1 10:22:38 1996 Steve Chamberlain <sac@slash.cygnus.com>
13150
13151 * configure.in, config.sub: Recognize cygwin32.
13152
13153 Wed Jan 31 14:17:10 1996 Richard Henderson <rth@tamu.edu>
13154
13155 * config.guess, config.sub: Recognize A/UX.
13156
13157 Wed Jan 31 13:52:14 1996 Ian Lance Taylor <ian@cygnus.com>
13158
13159 * config.sub: Merge with gcc/config.sub.
13160
13161 Thu Jan 25 11:01:10 1996 Raymond Jou <rjou@mexican.cygnus.com>
13162
13163 * mpw-build.in (do-binutils): Add build of stamps.
13164
13165 Thu Jan 25 17:05:26 1996 James G. Smith <jsmith@cygnus.co.uk>
13166
13167 * config.sub: Add recognition for mips64vr4100*-* targets.
13168
13169 Wed Jan 24 12:47:55 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
13170
13171 * test-build.mk: Add checking of `hpux9' rather than just `hpux'.
13172 Add creation of gconfigargs with `--enable-shared' turned on.
13173 ($(host)-stamp-stage2-configured): Pass $(gconfigargs).
13174 ($(host)-stamp-stage3-configured): Likewise.
13175 (HOLES): Add chatr and ldd.
13176 (i386-ncr-sysv4.3*): Add use of /usr/ccs/bin in the PATH and HOLE_DIRS.
13177
13178 Wed Jan 24 20:32:30 1996 Torbjorn Granlund <tege@noisy.matematik.su.se>
13179
13180 * configure: Pass --nfp to recursive configures.
13181
13182 Mon Jan 22 10:41:56 1996 Steve Chamberlain <sac@slash.cygnus.com>
13183
13184 * Makefile.in (DLLTOOL): New.
13185 (DLLTOOL_FOR_TARGET): New.
13186 (EXTRA_HOST_FLAGS): Pass down DLLTOOL.
13187 (EXTRA_TARGET_FLAGS): Ditto.
13188 (EXTRA_GCC_FLAGS): Ditto.
13189 (CONFIGURE_TARGET_MODULES): Ditto.
13190 (DO_X): Ditto.
13191 * configure: Add DLLTOOL.
13192
13193 Fri Jan 19 13:30:15 1996 Stan Shebs <shebs@andros.cygnus.com>
13194
13195 SCO OpenServer 5 changes from Robert Lipe <robertl@dgii.com>:
13196 * configure.in (i[345]86-*-sco3.2v5*): Use mh-sysv instead of
13197 mh-sco, since old workarounds no longer needed, and don't
13198 build ld, since libraries have weak symbols in COFF.
13199
13200 Sun Jan 14 23:01:31 1996 Fred Fish <fnf@cygnus.com>
13201
13202 * Makefile.in (CONFIGURE_TARGET_MODULES): Add missing ';'.
13203
13204 Fri Jan 12 15:25:35 1996 Ian Lance Taylor <ian@cygnus.com>
13205
13206 * configure.in: Make sure that ${CC} can be used to compile an
13207 executable.
13208
13209 Sat Jan 6 07:23:33 1996 Michael Meissner <meissner@wogglebug.tiac.net>
13210
13211 * Makefile.in (all-gdb): Depend on $(GDB_TK).
13212 * configure (GDB_TK): Set GDB_TK to either "all-tcl all-tk" or
13213 nothing depending on whether gdbtk is being built.
13214
13215 Wed Jan 3 17:54:41 1996 Doug Evans <dje@canuck.cygnus.com>
13216
13217 * Makefile.in (newlib.tar.gz): Delete building of newlib's info files.
13218
13219 Mon Jan 1 19:09:14 1996 Brendan Kehoe <brendan@rtl.cygnus.com>
13220
13221 * configure.in (noconfigdirs): Put ld or gas in this early, if the
13222 user specifically used --with-gnu-ld=no or --with-gnu-as=no.
13223
13224 Sat Dec 30 16:08:57 1995 Doug Evans <dje@canuck.cygnus.com>
13225
13226 * config-ml.in: Add support for
13227 --disable-{softfloat,m68881,m68000,m68020} on m68*-*-*.
13228 Simplify setting of multidirs from --disable-foo.
13229
13230 Fri Dec 29 07:56:11 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13231
13232 * Makefile.in (EXTRA_GCC_FLAGS): If any of the make variables
13233 LANGUAGES, BOOT_CFLAGS, STMP_FIXPROTO, LIMITS_H_TEST,
13234 LIBGCC1_TEST, LIBGCC2_CFLAGS, LIBGCC2_INCLUDES, and ENQUIRE are
13235 non-empty, pass them on to the GCC make.
13236 (all-bootstrap): New rule that is like all-gcc, except it executes
13237 the GCC bootstrap rule instead of the GCC all rule.
13238
13239 Wed Dec 27 15:51:48 1995 Doug Evans <dje@canuck.cygnus.com>
13240
13241 * config-ml.in (ml_realsrcdir): New, to account for ${subdir}.
13242
13243 Tue Dec 26 11:45:31 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13244
13245 * config.guess (AViiON:dgux:*:*): Update from FSF to add pentium
13246 DG/UX support.
13247
13248 Fri Dec 15 10:01:27 1995 Stan Cox <coxs@dg-rtp.dg.com>
13249
13250 * config.sub (i*86*) Change [345] to [3456]
13251
13252 Wed Dec 20 17:41:40 1995 Brendan Kehoe <brendan@lisa.cygnus.com>
13253
13254 * configure.in (noconfigdirs): Add gas or ld if --with-gnu-as=no or
13255 --with-gnu-ld=no.
13256
13257 Wed Dec 20 15:15:35 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13258
13259 * config-ml.in (rs6000*, powerpc*): Add switches to control which
13260 AIX multilibs get built.
13261
13262 Mon Dec 18 17:55:46 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13263
13264 * configure.in (i386-win32): Don't build expect if we're not
13265 building the tcl subdir.
13266
13267 Mon Dec 18 11:47:19 1995 Stan Shebs <shebs@andros.cygnus.com>
13268
13269 * Makefile.in: (configure-target-examples, all-target-examples):
13270 New targets, configure and build example programs.
13271
13272 Fri Dec 15 16:13:03 1995 Stan Shebs <shebs@andros.cygnus.com>
13273
13274 * mpw-configure: If an mpw-config.in generated a file mk.sed,
13275 use it as input to sedit the generated MPW makefile.
13276 * mpw-README: Add a suggestion about Gestalt.h.
13277
13278 Wed Dec 13 16:43:51 1995 Ian Lance Taylor <ian@cygnus.com>
13279
13280 * config.sub: Accept *-*-ieee*.
13281
13282 Tue Dec 12 11:52:57 1995 Ian Lance Taylor <ian@cygnus.com>
13283
13284 * Makefile.in (local-distclean): Remove $(TARGET_SUBDIR). From
13285 Ronald F. Guilmette <rfg@monkeys.com>.
13286
13287 Mon Dec 11 15:31:58 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13288
13289 * configure.in (host==powerpc-pe): Add many directories to noconfigdirs
13290 for powerpc-pe native.
13291 (target==i386-win32): add tcl, make to noconfigdirs if canadian cross.
13292 (target==powerpc-pe): duplicate i386-win32 entry.
13293
13294 Sat Dec 9 14:58:28 1995 Jim Wilson <wilson@chestnut.cygnus.com>
13295
13296 * configure.in (noconfigdirs): Exclude target-newlib for all versions
13297 of vxworks, not just vxworks5.1.
13298
13299 Mon Dec 4 12:05:40 1995 Stan Shebs <shebs@andros.cygnus.com>
13300
13301 * mpw-configure: Add support for exec-prefix.
13302
13303 Mon Dec 4 10:22:50 1995 Jeffrey A. Law <law@rtl.cygnus.com>
13304
13305 * config.guess: Recognize HP model 816 machines as having
13306 a PA1.1 processor.
13307
13308 Mon Dec 4 12:38:15 1995 Ian Lance Taylor <ian@cygnus.com>
13309
13310 * configure: Ignore new autoconf configure options.
13311
13312 Thu Nov 30 16:57:33 1995 Per Bothner <bothner@wombat.gnu.ai.mit.edu>
13313
13314 * config.guess: Recognize Pentium under SCO.
13315 From Robert Lipe <robertl@arnet.com>.
13316
13317 Wed Nov 29 13:49:08 1995 J.T. Conklin <jtc@rtl.cygnus.com>
13318
13319 * configure.in (noconfigdirs): Disable target-libio on v810-*-*.
13320
13321 Wed Nov 29 12:12:01 1995 Ian Lance Taylor <ian@cygnus.com>
13322
13323 * configure.in: Don't configure gas for alpha-dec-osf*.
13324
13325 Tue Nov 28 17:16:48 1995 Ian Lance Taylor <ian@cygnus.com>
13326
13327 * configure.in: Default to --with-stabs for some targets for which
13328 it makes sense: mips*-*-*, alpha*-*-osf*, i[345]86*-*-sysv4* and
13329 i[345]86*-*-unixware*.
13330
13331 Mon Nov 27 13:44:15 1995 Ian Lance Taylor <ian@cygnus.com>
13332
13333 * config-ml.in: Get list of multidirs using gcc --print-multi-lib
13334 rather than basing it on the target. Simplify handling of options
13335 controlling which directories to configure. Remove extraneous
13336 slash in multi-clean target.
13337
13338 Fri Nov 24 17:29:29 1995 Doug Evans <dje@deneb.cygnus.com>
13339
13340 * config-ml.in: Prefix more variables with ml_ so they don't collide
13341 with configure's.
13342
13343 Wed Nov 22 11:27:02 1995 Ian Lance Taylor <ian@cygnus.com>
13344
13345 * configure: Don't turn -v into --v.
13346
13347 Tue Nov 21 16:48:02 1995 Doug Evans <dje@deneb.cygnus.com>
13348
13349 * configure.in (targargs): Fix typo.
13350
13351 * Makefile.in (DEVO_SUPPORT): Add symlink-tree.
13352
13353 Tue Nov 21 14:08:28 1995 Ian Lance Taylor <ian@cygnus.com>
13354
13355 * configure.in: Strip --host and --target options from
13356 CONFIG_ARGUMENTS, and always configure for --host only. Add
13357 --with-cross-host option when building with a cross-compiler.
13358 * configure: Canonicalize the arguments put into config.status by
13359 always using `=' for an option with an argument. Pass a presumed
13360 --host or --target explicitly.
13361
13362 Fri Nov 17 17:50:30 1995 Stan Shebs <shebs@andros.cygnus.com>
13363
13364 * config.sub: Merge -macos*, -magic*, -pe*, and -win32 cases
13365 into general OS recognition case.
13366
13367 Fri Nov 17 17:42:25 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13368
13369 * configure.in (target_configdirs): add target-winsup only
13370 for win32 target systems.
13371
13372 Thu Nov 16 14:04:47 1995 Ian Lance Taylor <ian@cygnus.com>
13373
13374 * Makefile.in (all-target-libgloss): Depend upon
13375 configure-target-newlib, since when libgloss is built it looks to
13376 see if the newlib directory exists.
13377
13378 Wed Nov 15 14:47:52 1995 Ken Raeburn <raeburn@cygnus.com>
13379
13380 * Makefile.in (DEVO_SUPPORT): Use config-ml.in instead of
13381 cfg-ml-*.in.
13382
13383 Wed Nov 15 11:45:23 1995 Ian Lance Taylor <ian@cygnus.com>
13384
13385 * configure: Handle LD and LD_FOR_TARGET when configuring a
13386 Canadian Cross.
13387
13388 Tue Nov 14 14:56:11 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13389
13390 * configure.in (target_libs): add target-winsup.
13391 (target==i386-win32): add patch diff flex make to $noconfigdirs.
13392 (target==ppcle-pe): remove ld from $noconfigdirs.
13393
13394 Tue Nov 14 01:25:50 1995 Doug Evans <dje@canuck.cygnus.com>
13395
13396 * Makefile.in (CONFIGURE_TARGET_MODULES): Pass --with-target-subdir.
13397 Preserve relative path names in $srcdir. Build symlink tree if
13398 configuring cross target dir and srcdir=. (= no VPATH support).
13399 (configure-target-libg++): Depend on configure-target-librx.
13400 * cfg-ml-com.in, cfg-ml-pos.in: Deleted.
13401 * config-ml.in: New file.
13402 * symlink-tree: New file.
13403 * configure: Ensure srcdir="." if that's what it is.
13404
13405 Mon Nov 13 12:34:20 1995 Stan Shebs <shebs@andros.cygnus.com>
13406
13407 * mpw-README: Clarify some phrasing, add notes about CodeWarrior
13408 includes and FLEX_SKELETON setting.
13409 * mpw-configure (--with-gnu-ld): New option, controls whether
13410 to use PPCLink or ld with PowerMac GCC.
13411 * mpw-build.in (all-grez, do-grez, install-grez): New targets.
13412 * mpw-config.in: Configure grez if targeting Mac.
13413
13414 * config.sub: Accept pmac and pmac-mpw as names for PowerMacs,
13415 accept mpw and mac-mpw as names for m68k Macs, change macos7 to
13416 just macos.
13417 * configure.in: Configure grez resource compiler if targeting Mac.
13418 * Makefile.in (all-grez, install-grez): New targets.
13419
13420 Wed Nov 8 17:33:51 1995 Jason Merrill <jason@yorick.cygnus.com>
13421
13422 * configure: CXX defaults to gcc, not g++. If we find
13423 gcc in the path, set CC to gcc -O2.
13424
13425 Tue Nov 7 15:45:17 1995 Ian Lance Taylor <ian@cygnus.com>
13426
13427 * configure: Default ${build} correctly. Avoid picking up extra
13428 spaces when reading CC and CXX from Makefile. When doing a
13429 Canadian Cross, use plausible default values for numerous
13430 variables.
13431 * configure.in: When doing a Canadian Cross, don't try to
13432 configure tools whose configure script can't handle it.
13433
13434 Mon Nov 6 19:32:17 1995 Jim Wilson <wilson@chestnut.cygnus.com>
13435
13436 * cfg-ml-com.in (sh-*-*): Add m2 and ml/m2 to multidirs.
13437
13438 Sun Nov 5 00:15:41 1995 Per Bothner <bothner@kalessin.cygnus.com>
13439
13440 * configure: Remove dubious bug reporting address.
13441
13442 Fri Nov 3 08:17:54 1995 Per Bothner <bothner@kalessin.cygnus.com>
13443
13444 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): If subdir has
13445 configure script, run that instead of this directory's configure.
13446 In either case, print a message that we're configuring the sub-dir.
13447
13448 Thu Nov 2 23:23:36 1995 Per Bothner <bothner@kalessin.cygnus.com>
13449
13450 * configure.in: Before checking for the existence of various files,
13451 use sed to filter out "target-".
13452
13453 Thu Nov 2 13:24:56 1995 Ian Lance Taylor <ian@cygnus.com>
13454
13455 * Makefile.in (DO_X): Split rule to decrease command line length
13456 for systems with small ARG_MAX values. From phdm@info.ucl.ac.be
13457 (Philippe De Muyter).
13458
13459 Wed Nov 1 15:18:35 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13460
13461 * Makefile.in (all-patch): depend on all-libiberty.
13462
13463 Wed Nov 1 12:23:20 1995 Ian Lance Taylor <ian@cygnus.com>
13464
13465 * configure.in: If the only directory in target_configdirs which
13466 actually exists is libiberty, then set target_configdirs to empty,
13467 to avoid trying to build a target libiberty in a gas or gdb
13468 distribution.
13469
13470 Tue Oct 31 17:52:39 1995 J.T. Conklin <jtc@slave.cygnus.com>
13471
13472 * configure.in (host_makefile_frag): Use m68k-sun-sunos* instead
13473 of m68k-sun-* when selecting mh-sun3 to avoid matching NetBSD/sun3
13474 systems.
13475
13476 Tue Oct 31 16:57:32 1995 Jim Wilson <wilson@chestnut.cygnus.com>
13477
13478 * configure.in (copy_dirs): Use sys-include instead of include
13479 for --with-headers option.
13480
13481 Tue Oct 31 10:29:36 1995 steve chamberlain <sac@slash.cygnus.com>
13482
13483 * Makefile.in, configure.in: Make winsup builds work with
13484 new scheme.
13485
13486 Mon Oct 30 18:57:09 1995 Ian Lance Taylor <ian@cygnus.com>
13487
13488 * configure.in: Build the linker on AIX.
13489
13490 Mon Oct 30 12:27:16 1995 Per Bothner <bothner@kalessin.cygnus.com>
13491
13492 * Makefile.in (CC_FOR_TARGET, CXX_FOR_TARGET): Add $(TARGET_SUBDIR)
13493 where needed.
13494
13495 Mon Oct 30 12:45:25 1995 Doug Evans <dje@cygnus.com>
13496
13497 * Makefile.in (all-gcc): Fix typo.
13498
13499 Sat Oct 28 10:27:59 1995 Per Bothner <bothner@kalessin.cygnus.com>
13500
13501 * Makefile.in ($(CHECK_TARGET_MODULES)): Fix typo.
13502
13503 Fri Oct 27 23:14:12 1995 Per Bothner <bothner@kalessin.cygnus.com>
13504
13505 * configure.in: Rename libFOO to target-libFOO, and xiberty
13506 to target-xiberty, to provide more flexibility.
13507 (target_subdir): Define. Create if cross.
13508 Set TARGET_SUBDIR in Makefile to ${target_subdir}.
13509 * Makefile.in: Rename all-libFOO -> all-target-libFOO, all-xiberty
13510 -> all-target-libiberty, configure-libFOO -> configure-target-libFOO,
13511 check-libFOO -> check-target-libFOO, etc.
13512 ($(DO_X)): Iterate over TARGET_CONFIGDIRS after SUBDIRS.
13513 ($(CONFIGURE_TARGET_MODULES), $(CHECK_TARGET_MODULES),
13514 $(ALL_TARGET_MODULES), $(INSTALL_TARGET_MODULES)): Update accordingly.
13515 (configure-target-XXX): Depend on $(ALL_GCC), not all-gcc, to
13516 allow ALL_GCC="" to only configure.
13517 (DEVO_SUPPORT): Add cfg-ml-com.in and cfg-ml-pos.in.
13518 (ETC_SUPPORT, ETC_SUPPORT_PFX): Merge; update 'taz' accordingly.
13519 (LIBGXX_SUPPORT_DIRS): Remove xiberty.
13520
13521 Sat Oct 28 01:53:49 1995 Ken Raeburn <raeburn@cygnus.com>
13522
13523 * Makefile.in (taz): Build "info" in etc explicitly.
13524
13525 Fri Oct 27 09:32:30 1995 Stu Grossman (grossman@cygnus.com)
13526
13527 * configure.in: Make sure that CC is undefined (as opposed to
13528 null) if toplevel/config/mh-{host} doesn't define it. Fixes a
13529 problem with autoconf trying to configure on a host without GCC.
13530
13531 Thu Oct 26 22:35:01 1995 Stan Shebs <shebs@andros.cygnus.com>
13532
13533 * mpw-configure: Set host alias from choice of host compiler,
13534 only use generic MPW Makefile sed if present, edit a file
13535 named "hacked_Makefile.in" instead of "Makefile.in" if present.
13536 * mpw-README: Add problem notes about CW6 and CW7.
13537
13538 Thu Oct 26 05:45:10 1995 Ken Raeburn <raeburn@kr-pc.cygnus.com>
13539
13540 * Makefile.in (taz): Use ";" instead of ";;".
13541
13542 Wed Oct 25 15:18:24 1995 Per Bothner <bothner@kalessin.cygnus.com>
13543
13544 * Makefile.in (taz): Grep for '^diststuff:' or '^info:' in
13545 sub-directory Makefiles, instead of using DISTSTUFFDIRS and
13546 DISTDOCDIRS.
13547 (DISTSTUFFDIRS, DISTDOCDIRS): Removed - no longer used.
13548 (newlib.tar.gz): Don't pass DISTDOCDIRS to recursive make.
13549
13550 Wed Oct 25 14:43:55 1995 Per Bothner <bothner@kalessin.cygnus.com>
13551
13552 * Makefile.in (DISTDOCDIRS): Remove ld gprof bnutils gas libg++ gdb
13553 and gnats, because they are now subsumed by DISTSTUFFDIRS.
13554 Move bfd to DISTSTUFFDIRS.
13555
13556 Tue Oct 24 18:19:09 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13557
13558 * Makefile.in (X11_LIB): Removed.
13559 (X11_FLAGS_TO_PASS): pass only X11_EXTRA_CFLAGS and X11_EXTRA_LIBS.
13560
13561 * configure.in (host_makefile_frag): mh-aix & mh-sun removed.
13562
13563 Sun Oct 22 13:04:42 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13564
13565 * cfg-ml-com.in (powerpc*): Shorten some of the multilib directory
13566 names.
13567
13568 Fri Oct 20 18:02:10 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13569
13570 * cfg-ml-com.in (powerpc*-eabi*): Add mcall-aixdesc varients.
13571
13572 Thu Oct 19 10:40:57 1995 steve chamberlain <sac@slash.cygnus.com>
13573
13574 * configure.in (i[345]86-*-win32): Always build newlib.
13575 Don't configure cvs, autoconf or texinfo.
13576 * Makefile.in (LD_FOR_TARGET): New.
13577 (BASE_FLAGS_TO_PASS, EXTRA_TARGET_FLAGS, CONFIGURE_TARGET_MODULES):
13578 Pass down LD_FOR_TARGET.
13579
13580 Wed Oct 18 15:53:56 1995 steve chamberlain <sac@slash.cygnus.com>
13581
13582 * winsup: New directory.
13583 * Makefile.in: Build winsup.
13584 * configure.in: Winsup is configured when target is win32.
13585 Can only build win32 target GDB when native.
13586
13587 Mon Oct 16 09:42:31 1995 Jeffrey A Law (law@cygnus.com)
13588
13589 * config.guess: Recognize HP model 819 machines as having
13590 a PA 1.1 processor.
13591
13592 Mon Oct 16 10:49:43 1995 Ian Lance Taylor <ian@cygnus.com>
13593
13594 * configure: Fix sed loop which substitutes for CC and CXX to
13595 avoid bug found in various sed implementations.
13596
13597 Wed Oct 11 16:16:20 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13598
13599 * cfg-ml-com.in (powerpc-*-eabisim): Delete separate rule for
13600 simulator. Use standard powerpc-*-eabi*.
13601
13602 Mon Oct 9 17:21:56 1995 Ian Lance Taylor <ian@cygnus.com>
13603
13604 * configure.in: Stop putting gas and binutils in noconfigdirs for
13605 powerpc-*-aix* and rs6000-*-*.
13606
13607 Mon Oct 9 12:38:40 1995 Michael Meissner <meissner@cygnus.com>
13608
13609 * cfg-ml-com.in (powerpc*-*-eabisim*): Add support for building
13610 -mcall-aixdesc libraries.
13611
13612 Fri Oct 6 16:17:57 1995 Ken Raeburn <raeburn@cygnus.com>
13613
13614 Mon Sep 25 22:49:32 1995 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
13615
13616 * config.sub (arm | armel | armeb): Fix shell syntax.
13617
13618 Fri Oct 6 14:40:28 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13619
13620 * cfg-ml-com.in ({powerpc,rs6000}-ibm-aix*): Add multilibs for
13621 -msoft-float and -mcpu=common support.
13622 (powerpc*-*-eabisim*): Add support for building -mcall-aix
13623 libraries.
13624
13625 Thu Oct 5 13:26:37 1995 Brendan Kehoe <brendan@lisa.cygnus.com>
13626
13627 * configure.in: Allow configuration and build of emacs19 for the alpha.
13628
13629 Wed Oct 4 22:05:36 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13630
13631 * configure.in (CC): Get ^CC, not just any old CC, from
13632 ${host_makefile_frag}.
13633
13634 Wed Oct 4 21:55:00 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13635
13636 * configure.in (CC): Try to get CC from
13637 ${srcdir}/${host_makefile_frag}, not ${host_makefile_frag}.
13638
13639 Wed Oct 4 21:44:12 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13640
13641 * Makefile.in (TARGET_CONFIGDIRS): configure targetdirs
13642 only if it exists in $(srcdir).
13643
13644 Wed Oct 4 11:52:31 1995 Ian Lance Taylor <ian@cygnus.com>
13645
13646 * configure: If CC and CXX are not set in the environment, set
13647 them, based on either an existing Makefile or on searching for gcc
13648 in PATH. Substitute for CC and CXX in Makefile.
13649 * configure.in: Remove libm from target_libs. Separate
13650 target_configdirs from configdirs. If CC is not set in
13651 environment, try to get it from a host Makefile fragment. Rewrite
13652 changes of configdirs to use skipdirs instead. A few minor
13653 tweaks. Take directories out of target_configdirs as they are
13654 taken out of configdirs. Remove existing Makefile files from
13655 subdirectories. Substitute for TARGET_CONFIGDIRS and
13656 CONFIG_ARGUMENTS in Makefile.
13657 * Makefile.in (TARGET_CONFIGDIRS): New variable, automatically set
13658 by configure.in.
13659 (CONFIG_ARGUMENTS): Likewise.
13660 (CONFIGURE_TARGET_MODULES): New variable.
13661 ($(DO_X)): Loop over TARGET_CONFIGDIRS as well as SUBDIRS.
13662 ($(CONFIGURE_TARGET_MODULES)): New target.
13663 (configure-libg++, configure-libio): New targets.
13664 (all-libg++): Depend upon configure-libg++.
13665 (all-libio): Depend upon configure-libio.
13666 (configure-libgloss, all-libgloss): New targets.
13667 (configure-libstdc++): New target.
13668 (all-libstdc++): Depend upon configure-libstdc++.
13669 (configure-librx, all-librx): New targets.
13670 (configure-newlib): New target.
13671 (all-newlib): Depend upon configure-newlib
13672 (configure-xiberty): New target.
13673 (all-xiberty): Depend upon configure-xiberty.
13674
13675 Sat Sep 30 04:32:59 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13676
13677 * configure.in (host i[345]86-*-win32): Expand the
13678 noconfigdirs again.
13679
13680 Thu Sep 28 21:18:49 1995 Stan Shebs <shebs@andros.cygnus.com>
13681
13682 * mpw-configure: Fix sed command file name.
13683
13684 Thu Sep 28 17:39:56 1995 steve chamberlain <sac@slash.cygnus.com>
13685
13686 * configure.in (host i[345]86-*-win32): Reduce the
13687 noconfigdirs again.
13688
13689 Wed Sep 27 12:24:00 1995 Ian Lance Taylor <ian@cygnus.com>
13690
13691 * configure.in: Don't configure ld and gdb for powerpc*-*-winnt*
13692 or powerpc*-*-pe*, since they are not yet supported.
13693
13694 Tue Sep 26 14:30:01 1995 Stan Shebs <shebs@andros.cygnus.com>
13695
13696 Add PowerMac support and many other enhancements.
13697 * mpw-configure: New option --cc to select compiler to use,
13698 paste options set according to --cc into the generated
13699 Makefile, generate the Makefile by sed'ing the Unix Makefile.in
13700 if mpw-make.sed is present.
13701 * mpw-config.in: Don't test for gC1, test for mpw-touch,
13702 add forward includes for PowerPC include files.
13703 * mpw-build.in: Build using Makefile.PPC if present.
13704 (do-byacc, etc): Remove separate version resource builds.
13705 (do-gas): Build "stamps" before "all".
13706 (do-gcc): Build "stamps-h" and "stamps-c" before "all".
13707 * mpw-README: Update to reflect --cc option, PowerMac support,
13708 and recently-reported compatibility problems.
13709
13710 Fri Sep 22 12:15:42 1995 Doug Evans <dje@deneb.cygnus.com>
13711
13712 * cfg-ml-com.in (m68*-*-*): Only build multilibs for
13713 embedded m68k systems (-aout, -coff, -elf, -vxworks).
13714 (--with-multilib-top): Pass to recursive invocations.
13715
13716 Tue Sep 19 13:51:05 1995 J.T. Conklin <jtc@blues.cygnus.com>
13717
13718 * configure.in (noconfigdirs): Disable libg++ and libstdc++ on
13719 v810-*-*.
13720
13721 Mon Sep 18 23:08:26 1995 J.T. Conklin <jtc@rtl.cygnus.com>
13722
13723 * configure.in (noconfigdirs): Disable bfd, binutils, gas, gcc,
13724 gdb, ld and opcodes on v810-*-*.
13725
13726 Tue Sep 12 18:03:31 1995 Ian Lance Taylor <ian@cygnus.com>
13727
13728 * Makefile.in (DO_X): Change do-realclean to do-maintainer-clean.
13729 (local-maintainer-clean): New target.
13730 (maintainer-clean): New target.
13731 (realclean): Just depend upon maintainer-clean.
13732
13733 Fri Sep 8 17:11:14 1995 J.T. Conklin <jtc@rtl.cygnus.com>
13734
13735 * configure.in (noconfigdirs): Disable gdb on m68k-*-netbsd*.
13736
13737 Fri Sep 8 16:46:29 1995 Ian Lance Taylor <ian@cygnus.com>
13738
13739 * configure.in: Build ld in mips*-*-bsd* case.
13740
13741 Thu Sep 7 20:03:41 1995 Ken Raeburn <raeburn@cygnus.com>
13742
13743 * config.sub: Accept -lites* OS. From Ian Dall.
13744
13745 Fri Sep 1 08:06:58 1995 James G. Smith <jsmith@beauty.cygnus.com>
13746
13747 * config.sub: recognise mips64vr4300 and mips64vr4300el as valid
13748 targets.
13749
13750 Wed Aug 30 21:06:50 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13751
13752 * configure.in: treat i386-win32 canadian cross the same as
13753 i386-go32 canadian cross.
13754
13755 Thu Aug 24 14:53:20 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13756
13757 * cfg-ml-com.in (powerpc*-*-eabisim): Add support for PowerPC
13758 running under the simulator to build a reduced set of libraries.
13759 (powerpc-*-eabiaix): Add fine grained multilib support added to
13760 other powerpc targets yesterday.
13761
13762 Wed Aug 23 09:41:56 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13763
13764 * cfg-ml-com.in (powerpc*): Add support for -disable-biendian,
13765 -disable-softfloat, -disable-relocatable, -disable-aix, and
13766 -disable-sysv to control which multilib libraries get built.
13767
13768 Thu Aug 17 16:03:41 1995 Ken Raeburn <raeburn@kr-laptop.cygnus.com>
13769
13770 * configure: Add Makefile.tem to list of files to remove in trap
13771 handler.
13772
13773 Mon Aug 14 19:27:56 1995 Per Bothner <bothner@kalessin.cygnus.com>
13774
13775 * config.guess (*Linux*): Add missing "exit"s.
13776 Also, need specific check for alpha-unknown-linux (uses COFF).
13777
13778 Fri Aug 11 15:38:20 1995 Per Bothner <bothner@kalessin.cygnus.com>
13779
13780 * config.guess: Merge with FSF:
13781
13782 Wed Jun 28 17:57:27 1995 David Edelsohn <edelsohn@mhpcc.edu>
13783 * config.guess (AIX4): More robust release numbering discovery.
13784
13785 Thu Jun 22 19:01:24 1995 Kenneth Stailey (kstailey@eagle.dol-esa.gov)
13786 * config.guess (i386-sequent-ptx): Properly get version number.
13787
13788 Thu Jun 22 18:36:42 1995 Uwe Seimet (seimet@iris1.chemie.uni-kl.de)
13789 * config.guess (mips:*:4*:UMIPS): New case.
13790
13791 Mon Aug 7 09:21:35 1995 Doug Evans <dje@canuck.cygnus.com>
13792
13793 * configure.in (i386-go32 host): Fix typo (deja-gnu -> dejagnu).
13794 (i386-win32 host): Likewise. Don't build readline.
13795
13796 Sat Aug 5 09:51:49 1995 Fred Fish <fnf@rtl.cygnus.com>
13797
13798 * Makefile.in (GDBTK_SUPPORT_DIRS): Define and pass as part of
13799 SUPPORT_FILES to submakes.
13800
13801 Fri Aug 4 13:04:36 1995 Fred Fish <fnf@cygnus.com>
13802
13803 * Makefile.in (GDB_SUPPORT_DIRS): Add utils.
13804 (DEVO_SUPPORT): Add mpw-README, mpw-build.in, mpw-config.h and
13805 mpw-configure.
13806
13807 Wed Aug 2 16:32:40 1995 Ken Raeburn <raeburn@cygnus.com>
13808
13809 * configure.in (appdirs): Use =, not ==, in test expression when
13810 trying to build the text to print in the warning message for
13811 Solaris users.
13812
13813 Mon Jul 31 09:56:18 1995 steve chamberlain <sac@slash.cygnus.com>
13814
13815 * cfg-ml-com.in (z8k-*-coff): Add 'std' multilib build.
13816
13817 Fri Jul 28 00:16:31 1995 Jeffrey A. Law <law@rtl.cygnus.com>
13818
13819 * config.guess: Recognize lynx-2.3.
13820
13821 Thu Jul 27 15:47:59 1995 steve chamberlain <sac@slash.cygnus.com>
13822
13823 * config.sub (z8ksim): Deleted
13824 (z8k-*-coff): New, this is the one true name of the target.
13825
13826 Thu Jul 27 14:33:33 1995 Doug Evans <dje@canuck.cygnus.com>
13827
13828 * cfg-ml-pos.in (dotdot): Work around SunOS sed bug.
13829
13830 Thu Jul 27 13:31:05 1995 Fred Fish (fnf@cygnus.com)
13831
13832 * config.guess (*:Linux:*:*): First try asking the linker what the
13833 default object file format is (elf, aout, or coff). Then if this
13834 fails, try previous methods.
13835
13836 Thu Jul 27 11:28:17 1995 J.T. Conklin <jtc@rtl.cygnus.com>
13837
13838 * configure.in: Don't build newlib for *-*-vxworks5.1.
13839
13840 Thu Jul 27 11:18:47 1995 Brendan Kehoe <brendan@lisa.cygnus.com>
13841
13842 * configure.in: Don't build newlib for a29k-*-vxworks5.1.
13843 * test-build.mk: Add setting of --with-headers for a29k-vxworks5.1.
13844
13845 Tue Jul 25 21:25:39 1995 Doug Evans <dje@canuck.cygnus.com>
13846
13847 * cfg-ml-pos.in (MULTITOP): Trim excess trailing "/.".
13848
13849 Fri Jul 21 10:41:12 1995 Doug Evans <dje@canuck.cygnus.com>
13850
13851 * cfg-ml-com.in: New file.
13852 * cfg-ml-pos.in: New file.
13853
13854 Wed Jul 19 00:37:27 1995 Jeffrey A. Law <law@rtl.cygnus.com>
13855
13856 * COPYING.NEWLIB: Add HP free copyright to list.
13857
13858 Tue Jul 18 10:58:51 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13859
13860 * config.sub: Recognize -eabi* for the system, not just -eabi.
13861
13862 Mon Jul 3 13:44:51 1995 Steve Chamberlain <sac@slash.cygnus.com>
13863
13864 * Makfile.in (DLLTOOL_FOR_TARGET): New name, pass it down.
13865 * config.sub, configure.in (win32): New target and host.
13866
13867 Wed Jun 28 23:57:08 1995 Steve Chamberlain <sac@slash.cygnus.com>
13868
13869 * configure.in: Add i386-pe configuration.
13870
13871 Fri Jun 23 14:28:44 1995 Stan Shebs <shebs@andros.cygnus.com>
13872
13873 * mpw-build.in (install): Install GDB after LD.
13874
13875 Thu Jun 22 17:10:53 1995 Stan Shebs <shebs@andros.cygnus.com>
13876
13877 * mpw-config.in (elf/mips.h): Always forward-include, needed
13878 for GDB to build.
13879
13880 Wed Jun 21 15:17:30 1995 Rob Savoye <rob@darkstar.cygnus.com>
13881
13882 * testsuite: New directory for customer acceptance and whole tool
13883 chain tests.
13884
13885 Wed Jun 21 16:50:29 1995 Ken Raeburn <raeburn@cujo.cygnus.com>
13886
13887 * configure: If per-host line isn't found, but AC_OUTPUT is found
13888 and a configure script exists, run it instead.
13889
13890 Thu Jun 15 21:09:24 1995 Per Bothner <bothner@kalessin.cygnus.com>
13891
13892 * config.guess: Update from FSF, for alpha-dec-winnt3.5 and Crays.
13893
13894 Tue Jun 13 21:43:27 1995 Rob Savoye <rob@darkstar.cygnus.com>
13895
13896 * configure: Set build_{cpu,vendor,os,alias} to host values when
13897 --build isn't specified.
13898
13899 Mon Jun 5 18:26:36 1995 Jason Merrill <jason@phydeaux.cygnus.com>
13900
13901 * Makefile.in (PICFLAG, PICFLAG_FOR_TARGET): New macros.
13902 (FLAGS_TO_PASS): Pass them.
13903 (EXTRA_TARGET_FLAGS): Ditto.
13904
13905 Wed May 31 22:27:42 1995 Jim Wilson <wilson@chestnut.cygnus.com>
13906
13907 * Makefile.in (all-libg++): Depend on all-libstdc++.
13908
13909 Thu May 25 22:40:59 1995 J.T. Conklin <jtc@rtl.cygnus.com>
13910
13911 * configure.in (noconfigdirs): Enable all packages for
13912 i386-unknown-netbsd.
13913
13914 Sat May 20 13:22:31 1995 Angela Marie Thomas <angela@cirdan.cygnus.com>
13915
13916 * configure.in (noconfigdirs): Don't configure tk for i386-go32
13917 hosted builds (DOS builds)
13918
13919 Thu May 18 18:08:49 1995 Ken Raeburn <raeburn@kr-laptop.cygnus.com>
13920
13921 Changes for ARM based on patches from Richard Earnshaw:
13922 * config.sub: Handle armeb and armel.
13923 * configure.in: Omit arm linker only for riscix.
13924
13925 Thu May 11 17:23:26 1995 Per Bothner <bothner@kalessin.cygnus.com>
13926
13927 * config.guess: Update from FSF.
13928
13929 Tue May 9 15:52:05 1995 Michael Meissner <meissner@cygnus.com>
13930
13931 * config.sub: Recognize powerpcle as the little endian varient of
13932 the PowerPC. Recgonize ppc as a PowerPC variant, and ppcle as a
13933 powerpcle variant. Convert pentium into i586, not i486. Add p5
13934 alias for i586. Map new x86 variants p6, k5, nexgen into i586
13935 temporarily.
13936
13937 Tue May 2 16:29:41 1995 Jeff Law (law@snake.cs.utah.edu)
13938
13939 * configure.in (hppa*-*-lites*): Treat like hppa*-*-*elf*.
13940
13941 Sun Apr 30 21:38:09 1995 Jeff Law (law@snake.cs.utah.edu)
13942
13943 * config.sub: Accept -lites* as a basic system type.
13944
13945 Thu Apr 27 11:33:29 1995 Michael Meissner (meissner@cygnus.com)
13946
13947 * config.guess (*:Linux:*:*): Check for whether the pre-BFD linker is
13948 installed, and if so return linuxoldld as the system name.
13949
13950 Wed Apr 26 10:59:02 1995 Jeff Law (law@snake.cs.utah.edu)
13951
13952 * config.guess: Add hppa1.1-hp-lites support.
13953
13954 Tue Apr 25 11:08:11 1995 Rob Savoye <rob@darkstar.cygnus.com>
13955
13956 * configure.in: Don't build newlib for m68k-vxworks5.1.
13957
13958 Wed Apr 19 17:02:43 1995 Jim Wilson <wilson@chestnut.cygnus.com>
13959
13960 * configure.in (mips-sgi-irix6): Use mh-irix5.
13961
13962 Fri Apr 14 15:21:17 1995 Doug Evans <dje@chestnut.cygnus.com>
13963
13964 * Makefile.in (all-gcc): Depend on all-ld (for libgcc1-test).
13965
13966 Wed Apr 12 16:06:01 1995 Jason Merrill <jason@phydeaux.cygnus.com>
13967
13968 * test-build.mk: Enable building of shared libraries on IRIX 5 and
13969 OSF/1. Fix compiler flags.
13970 * build-all.mk: Support Linux and OSF/1 3.0. Fix compiler flags.
13971
13972 Tue Apr 11 18:55:40 1995 Doug Evans <dje@canuck.cygnus.com>
13973
13974 * configure.in: Recognize --with-newlib.
13975 (sparc-*-sunos4*): Build sim, dejagnu, expect, tcl if cross target.
13976
13977 Mon Apr 10 14:38:20 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13978
13979 * Makefile.in: move {all,check,install}-gdb from *_MODULES
13980 to *_X11_MODULES due to gdbtk needing X include files et al.
13981
13982 Mon Apr 10 11:42:22 1995 Stan Shebs <shebs@andros.cygnus.com>
13983
13984 Merge in support for Mac MPW as a host.
13985 (Old change descriptions retained for informational value.)
13986
13987 * mpw-config.in: Add generic include forwards for cpu-specific
13988 include files in aout and elf directories.
13989
13990 * mpw-configure: Added copyright.
13991 * mpw-config.in: Check for presence of required build tools.
13992 (target_libs): Add newlib.
13993 (target_tools): Add examples.
13994 (Read Me): Generate as "Read Me for MPW" instead.
13995 * mpw-build.in: Base sub-builds on all-foo instead of do-foo.
13996 (all-byacc, do-byacc, all-flex, do-flex, do-newlib): New actions.
13997 (do-gas, do-gcc, do-gdb, do-ld): Build Version.r first.
13998
13999 * mpw-configure: Remove subdir-specific makefile hackery,
14000 delete mk.tmp after using it.
14001
14002 * mpw-build.in (all): Display start and end times.
14003
14004 * mpw-configure (host_canonical): Set.
14005 (target_cpu): Always add to makefiles.
14006 (ARCHDEFS, EMUL): Add to makefile only if nonempty.
14007 (TM_FILE, XM_FILE, NM_FILE): No longer add to makefile.
14008 (mpw-mh-mpw): Look for in srcdir and srcroot.
14009 Use sed instead of mpw-edit-prefix to edit prefix definitions.
14010
14011 * mpw-build.in: (install-only): New target.
14012
14013 * mpw-configure (host_alias, target_alias): Rename from hostalias
14014 and targetalias, add into generated Makefile.
14015 (mk.tmp): If present, add into generated Makefile.
14016 * mpw-build.in (all-gas): Build config.h first before gas proper.
14017
14018 * mpw-configure (config.status): Write only if changed.
14019 * mpw-config.in (readline): Configure it (not built, just used for
14020 definitions).
14021
14022 * mpw-config.in (elf/mips.h): Add a forward include.
14023
14024 * mpw-config.in: Forward-include most .h files in include into
14025 extra-include.
14026 (readline): Don't build.
14027 mpw-build.in (install): Install GDB.
14028
14029 * mpw-configure (prefix, mpw_prefix): Handle it.
14030 * mpw-config.in (mmalloc, readline): Don't configure.
14031 * mpw-build.in (thisscript): Rename to ThisScript.
14032 Use mpw-build instead of BuildProgram everywhere.
14033 (mmalloc, readline): Don't build.
14034 * mpw-README: New file, basic documentation about the MPW port.
14035
14036 * mpw-config.in: Use forward-include to create include files.
14037
14038 * mpw-configure: Add more things to the top of each configured
14039 Makefile, including contents of config/mpw-mh-mpw.
14040 * mpw-config.in (extra-include): Create this directory and fill it
14041 with Posix-like include files when configuring.
14042
14043 * config.sub (apple, mac, mpw): Add various aliases.
14044
14045 * mpw-build.in: New file, top-level build script fragment for MPW.
14046 * mpw-configure: New file, configure script for MPW.
14047 * mpw-config.in: New file, config fragment for MPW.
14048
14049 Fri Apr 7 19:33:16 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
14050
14051 * configure.in (host_libs): Remove glob, since it is gone from the
14052 sources.
14053
14054 Fri Mar 31 11:36:17 1995 Jason Molenda (crash@phydeaux.cygnus.com)
14055
14056 * Makefile.in: define empty GDB_NLM_DEPS var.
14057
14058 * configure.in(target_makefile_frag): use config/mt-netware
14059 for netware targets.
14060
14061 Thu Mar 30 13:51:43 1995 Ian Lance Taylor <ian@cygnus.com>
14062
14063 * config.sub: Merge in recent FSF changes. Remove linux special
14064 cases.
14065
14066 Tue Mar 28 14:47:34 1995 Jason Molenda (crash@phydeaux.cygnus.com)
14067
14068 Revert this change:
14069
14070 Tue Mar 30 10:03:09 1993 Ian Lance Taylor (ian@cygnus.com)
14071
14072 * build-all.mk: Use CC=cc -Xs on Solaris.
14073
14074 Tue Mar 21 10:43:32 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
14075
14076 * glob/*: Removed. Schauer's 24 Feb 1994 readline change made us
14077 stop using it.
14078 * Makefile.in: Nuke all references to glob subdirectory.
14079
14080 Thu Mar 16 13:35:30 1995 Jason Merrill <jason@phydeaux.cygnus.com>
14081
14082 * configure.in: Fix --enable-shared logic in per-host.
14083
14084 Mon Mar 13 12:33:15 1995 Ian Lance Taylor <ian@cygnus.com>
14085
14086 * configure.in (*-hp-hpux[78]*): Use mh-hpux8.
14087
14088 Mon Mar 6 10:21:58 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
14089
14090 * configure.in (noconfigdirs): Don't build gas on AIX, for
14091 powerpc*-*-aix* as well as for rs6000*-*-aix*.
14092
14093 Wed Mar 1 12:51:53 1995 Ian Lance Taylor <ian@cygnus.com>
14094
14095 * configure: Fix --cache-file to work if the file argument is a
14096 relative path.
14097
14098 Tue Feb 28 17:36:07 1995 Ian Lance Taylor <ian@cygnus.com>
14099
14100 * configure: If the --cache-file is used, pass it down to
14101 configure in subdirectories.
14102
14103 Mon Feb 27 12:52:46 1995 Kung Hsu <kung@mexican.cygnus.com>
14104
14105 * config.sub: add vxworks29k configuration.
14106
14107 Fri Feb 10 16:12:26 1995 Ken Raeburn <raeburn@cujo.cygnus.com>
14108
14109 * Makefile.in (taz): Do "diststuff" part quietly.
14110
14111 Sun Feb 5 14:16:35 1995 Doug Evans <dje@canuck.cygnus.com>
14112
14113 * config.sub: Mini-merge with gcc/config.sub.
14114
14115 Sat Feb 4 12:11:35 1995 Jim Wilson <wilson@chestnut.cygnus.com>
14116
14117 * config.guess (IRIX): Sed - to _.
14118
14119 Fri Feb 3 11:54:42 1995 J.T. Conklin <jtc@rtl.cygnus.com>
14120
14121 * Makefile.in (source-vault, binary-vault): New targets.
14122
14123 Thu Jan 26 13:00:11 1995 Michael Meissner <meissner@cygnus.com>
14124
14125 * config.sub: Recognize -eabi as a basic system type.
14126
14127 Thu Jan 12 13:13:23 1995 Jason Merrill <jason@phydeaux.cygnus.com>
14128
14129 * configure.in (enable_shared stuff): Fix typo.
14130
14131 Thu Jan 12 01:36:51 1995 deanm@medulla.LABS.TEK.COM (Dean Messing)
14132
14133 * Makefile.in (BASE_FLAGS_TO_PASS): Fix typo in passing LIBCXXFLAGS*.
14134
14135 Wed Jan 11 16:29:53 1995 Jason Merrill <jason@phydeaux.cygnus.com>
14136
14137 * Makefile.in (LIBCXXFLAGS_FOR_TARGET): Add -fno-implicit-templates.
14138
14139 Mon Jan 9 12:48:01 1995 Jim Kingdon <kingdon@lioth.cygnus.com>
14140
14141 * configure.in (rs6000-*-*): Don't build gas.
14142
14143 Wed Jan 4 23:53:49 1995 Ian Lance Taylor <ian@tweedledumb.cygnus.com>
14144
14145 * Makefile.in: Use /x/x/ instead of /brokensed/brokensed/, to
14146 reduce command line length.
14147 (AS_FOR_TARGET): Check for as.new, not Makefile.
14148 (NM_FOR_TARGET): Check for nm.new, not Makefile.
14149
14150 Wed Jan 4 13:02:39 1995 Per Bothner <bothner@kalessin.cygnus.com>
14151
14152 * config.guess: Merge from FSF.
14153
14154 Thu Dec 15 17:11:37 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
14155
14156 * configure: Don't use $ when handling program_suffix.
14157
14158 Mon Dec 12 12:09:37 1994 Stu Grossman (grossman@cygnus.com)
14159
14160 * configure.in: Configure tk for hppa/hpux.
14161
14162 Fri Dec 2 15:55:38 1994 Per Bothner <bothner@kalessin.cygnus.com>
14163
14164 * Makefile.in (LIBGXX_SUPPORT_DIRS): Add libstdc++.
14165
14166 Tue Nov 29 19:37:56 1994 Per Bothner <bothner@kalessin.cygnus.com>
14167
14168 * Makefile.in: Move -fno-implicit-template from CXXFLAGS
14169 to LIBCXXFLAGS. Tests are better run without it.
14170
14171 Wed Nov 23 10:29:25 1994 Brendan Kehoe (brendan@lisa.cygnus.com)
14172
14173 * Makefile.in (all-ispell): Depend on all-emacs19 instead of all-emacs.
14174
14175 Mon Nov 21 11:14:01 1994 J.T. Conklin <jtc@rtl.cygnus.com>
14176
14177 * configure.in (*-*-netware*): Don't configure xiberty.
14178
14179 Mon Nov 14 08:49:15 1994 Stu Grossman (grossman@cygnus.com)
14180
14181 * configure.in: Remove tk from native_only list.
14182
14183 Fri Nov 11 15:31:26 1994 Bill Cox (bill@rtl.cygnus.com)
14184
14185 * build-all.mk: Add mips-ncd-elf target to sun4 targets
14186 for special NCD build.
14187
14188 Mon Nov 7 20:58:17 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
14189
14190 * Makefile.in (DEVO_SUPPORT): Remove configure.bat and
14191 makeall.bat, they're only useful for binutils snapshots.
14192 (binutils.tar.gz, gas+binutils.tar.gz): Add configure.bat and
14193 makeall.bat to specified SUPPORT_FILES.
14194
14195 Mon Nov 7 17:25:18 1994 Bill Cox (bill@cirdan.cygnus.com)
14196
14197 * build-all.mk: Add Ericsson targets to sun4 and solaris
14198 hosts. Add BNR's sun4 target to solaris host, so their
14199 build-from-source will be tested in-house first.
14200
14201 Sat Nov 5 18:43:30 1994 Jason Merrill (jason@phydeaux.cygnus.com)
14202
14203 * Makefile.in (LIBCFLAGS): New variable.
14204 (CFLAGS_FOR_TARGET): Ditto.
14205 (LIBCFLAGS_FOR_TARGET): Ditto.
14206 (LIBCXXFLAGS): Ditto.
14207 (CXXFLAGS_FOR_TARGET): Ditto.
14208 (LIBCXXFLAGS_FOR_TARGET): Ditto.
14209 (BASE_FLAGS_TO_PASS): Pass them.
14210 (EXTRA_TARGET_FLAGS): Ditto.
14211
14212 * configure.in: Support --enable-shared.
14213
14214 Sat Nov 5 15:44:00 1994 Per Bothner <bothner@kalessin.cygnus.com>
14215
14216 * configure.in (target_libs): Include libstdc++ again.
14217 * config.guess: Update from FSF (for FreeBSD).
14218
14219 Thu Nov 3 16:32:30 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
14220
14221 * Makefile.in (DEVO_SUPPORT): Include configure.bat and
14222 makeall.bat.
14223 (DISTDOCDIRS): Add `etc'.
14224 (ETC_SUPPORT_PFX): New variable.
14225 (taz): Include anything from etc starting with a word in
14226 ETC_SUPPORT_PFX.
14227
14228 Wed Oct 26 16:19:35 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
14229
14230 * config.sub: Update for recent FSF changes. Remove obsolete
14231 h8300hds entry. Add -windows* and -osx as basic os. Minor
14232 spacing changes.
14233
14234 Thu Oct 20 18:41:56 1994 Per Bothner <bothner@kalessin.cygnus.com>
14235
14236 * configure.in (target_libs): Remove libstdc++ for libg++-2.6.1.
14237
14238 * config.guess: Merge with FSF.
14239 * configure.in: Match on i?86-ncr-sysv4.3, not i?86-ncr-sysv43.
14240
14241 Thu Oct 20 19:26:56 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
14242
14243 * configure: Since the "trap 0" handler will override the exit
14244 status on many systems, only use it for "exit 1", and make it set
14245 a non-zero exit status; reset it before "exit 0". Also, check
14246 exit status of config.sub, and error out if it failed.
14247
14248 Wed Oct 19 18:49:55 1994 Rob Savoye (rob@cygnus.com)
14249
14250 * Makefile.in: (ALL_TARGET_MODULES,INSTALL_TARGET_MODULES) Build
14251 and install libgloss.
14252
14253 Tue Oct 18 15:25:24 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
14254
14255 * Makefile.in (all-binutils): Depend upon all-byacc.
14256
14257 * configure.in: Don't build emacs on Irix 5.
14258
14259 Mon Oct 17 16:22:12 1994 J.T. Conklin (jtc@phishhead.cygnus.com)
14260
14261 * configure.in (*-*-netware*): Add libio.
14262
14263 Thu Oct 13 15:51:20 1994 Jason Merrill (jason@phydeaux.cygnus.com)
14264
14265 * Makefile.in (ALL_TARGET_MODULES): Add libstdc++.
14266 (CHECK_TARGET_MODULES): Ditto.
14267 (INSTALL_TARGET_MODULES): Ditto.
14268 (TARGET_LIBS): Ditto.
14269 (all-libstdc++): Note dependencies.
14270
14271 Thu Oct 13 01:43:08 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
14272
14273 * Makefile.in (BINUTILS_SUPPORT_DIRS): Add gas.
14274
14275 Tue Oct 11 12:12:29 1994 Jason Merrill (jason@phydeaux.cygnus.com)
14276
14277 * Makefile.in (CXXFLAGS): Use -fno-implicit-templates instead of
14278 -fexternal-templates.
14279
14280 * configure.in (target_libs): Add libstdc++.
14281 (noconfigdirs): Add libstdc++ as appropriate.
14282
14283 Thu Oct 6 18:00:54 1994 Per Bothner (bothner@kalessin.cygnus.com)
14284
14285 * config.guess: Update from FSF.
14286
14287 Tue Oct 4 12:05:42 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
14288
14289 * configure: Use ${config_shell} when running ${configsub}.
14290
14291 Mon Oct 3 14:28:34 1994 Doug Evans <dje@canuck.cygnus.com>
14292
14293 * config.sub: No longer recognize h8300h.
14294
14295 Mon Oct 3 12:40:54 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
14296
14297 * config.sub: Remove extraneous differences between config.sub and
14298 gcc/config.sub.
14299
14300 Sat Oct 1 00:23:12 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
14301
14302 * Makefile.in (DISTSTUFFDIRS): Add gas.
14303
14304 Thu Sep 22 19:04:55 1994 Doug Evans (dje@canuck.cygnus.com)
14305
14306 * COPYING.NEWLIB: New file.
14307
14308 Mon Sep 19 18:25:40 1994 Per Bothner (bothner@kalessin.cygnus.com)
14309
14310 * config.guess (HP-UX): Patch from Harlan Stenn
14311 <harlan@landmark.com> to also emit release level.
14312
14313 Wed Sep 7 13:15:25 1994 Jim Wilson (wilson@sphagnum.cygnus.com)
14314
14315 * config.guess (sun4*:SunOS:*:*): Change '-JL' to '_JL'.
14316
14317 Tue Sep 6 23:23:18 1994 Per Bothner (bothner@kalessin.cygnus.com)
14318
14319 * config.sub: Merge nextstep cleanup from FSF.
14320
14321 Mon Sep 5 05:01:30 1994 Ken Raeburn (raeburn@kr-pc.cygnus.com)
14322
14323 * configure.in (arm-*-*): Don't configure ld for this target.
14324
14325 Thu Sep 1 09:35:00 1994 J.T. Conklin (jtc@phishhead.cygnus.com)
14326
14327 * configure.in (*-*-netware): don't configure libg++, libio,
14328 librx, or newlib.
14329
14330 Wed Aug 31 13:52:08 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14331
14332 * configure.in (alpha-dec-osf*): Use osf*, not osf1*. Don't
14333 configure ld--it works, but it doesn't support shared libraries.
14334
14335 Sun Aug 28 18:13:45 1994 Per Bothner (bothner@kalessin.cygnus.com)
14336
14337 * config.guess (*-unknown-freebsd*): Get rid of possible
14338 trailing "(Release)" in version string.
14339 Patch from Paul Richards <paul@isl.cf.ac.uk>.
14340
14341 Sat Aug 27 15:00:49 1994 Per Bothner (bothner@kalessin.cygnus.com)
14342
14343 * config.guess: Fix i486-ncr-sysv43 -> i486-ncr-sysv4.3.
14344 Fix type: *-next-neststep -> *-next-nextstep.
14345
14346 * config.guess: Merge from FSF:
14347
14348 Fri Aug 26 18:45:25 1994 Philippe De Muyter (phdm@info.ucl.ac.be)
14349
14350 * config.guess: Recognize powerpc-ibm-aix3.2.5.
14351
14352 Wed Apr 20 06:36:32 1994 Philippe De Muyter (phdm@info.ucl.ac.be)
14353
14354 * config.guess: Recognize UnixWare 1.1 (UNAME_SYSTEM is SYSTEM_V
14355 instead of UNIX_SV for UnixWare 1.0).
14356
14357 Sat Aug 27 01:56:30 1994 Stu Grossman (grossman@cygnus.com)
14358
14359 * Makefile.in (all-gdb): Add dependencies on all-gcc and all-ld
14360 to make gdb/nlm/* build after the compiler and linker.
14361
14362 Fri Aug 26 14:30:05 1994 Per Bothner (bothner@kalessin.cygnus.com)
14363
14364 * config.guess (netbsd, freebsd, linux): Accept any machine,
14365 not just i[34]86.
14366 (m68k-atari-sysv4): Relocate to match FSF version.
14367
14368 * config.guess: More merges from the FSF:
14369
14370 Add a space before function call or macro invocation.
14371
14372 Tue May 10 16:53:55 1994 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
14373
14374 * config.guess: Add trap cmd to remove dummy.c and dummy when
14375 interrupted.
14376
14377 Wed Apr 20 18:07:13 1994 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
14378
14379 * config.guess (dummy.c): Redirect stderr for `hostinfo' command.
14380 (dummy): Redirect stderr from compilation of dummy.c.
14381
14382 Sat Apr 9 14:59:28 1994 Christian Kranz (kranz@sent5.uni-duisburg.de)
14383
14384 * config.guess: Distinguish between NeXTStep 2.1 and 3.x.
14385
14386 Fri Aug 26 13:42:20 1994 Ken Raeburn (raeburn@kr-laptop.cygnus.com)
14387
14388 * configure: Accept and ignore --cache*, for compatibility with
14389 new autoconf.
14390
14391 Fri Aug 26 13:05:27 1994 Per Bothner (bothner@kalessin.cygnus.com)
14392
14393 * config.guess: Merge from FSF:
14394
14395 Thu Aug 25 20:28:51 1994 Richard Stallman <rms@mole.gnu.ai.mit.edu>
14396
14397 * config.guess (Pyramid*:OSx*:*:*): New case.
14398 (PATH): Add /.attbin at end for finding uname.
14399 (dummy.c): Handle i860-alliant-bsd. Follow whitespace conventions.
14400
14401 Wed Aug 17 18:21:02 1994 Tor Egge (tegge@pvv.unit.no)
14402
14403 * config.guess (M88*:DolphinOS:*:*): New case.
14404
14405 Thu Aug 11 17:00:13 1994 Stan Cox (coxs@dg-rtp.dg.com)
14406
14407 * config.guess (AViiON:dgux:*:*): Use TARGET_BINARY_INTERFACE
14408 to select whether to use ELF or COFF.
14409
14410 Sun Jul 24 16:20:53 1994 Richard Stallman <rms@mole.gnu.ai.mit.edu>
14411
14412 * config.guess: Recognize i860-stardent-sysv and i860-unknown-sysv.
14413
14414 Sun May 1 10:23:10 1994 Richard Stallman (rms@mole.gnu.ai.mit.edu)
14415
14416 * config.guess: Guess the OS version for HPUX.
14417
14418 Tue Mar 1 21:53:03 1994 Karl Heuer (kwzh@hal.gnu.ai.mit.edu)
14419
14420 * config.guess (UNAME_VERSION): Recognize aix3.2.4 and aix3.2.5.
14421
14422 Fri Aug 26 11:19:08 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14423
14424 * configure.in: Recognize --with-headers, --with-libs, and
14425 --without-newlib.
14426 * Makefile.in (all-xiberty): Depend upon all-ld.
14427
14428 Wed Aug 24 12:36:50 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14429
14430 * configure.in: Change i[34]86 to i[345]86.
14431
14432 Mon Aug 22 10:58:33 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14433
14434 * configure (version): A few more tweaks to help message.
14435
14436 Fri Aug 19 12:40:25 1994 Per Bothner (bothner@kalessin.cygnus.com)
14437
14438 * Makefile.in: Remove (for now) librx as a host library,
14439 now that we're building it for target.
14440
14441 Fri Aug 19 10:49:17 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14442
14443 * configure: Fix up help message; from karl@owl.hq.ileaf.com
14444 (Karl Berry).
14445
14446 Tue Aug 16 16:11:08 1994 Per Bothner (bothner@kalessin.cygnus.com)
14447
14448 * configure.in: Also configure librx.
14449
14450 Mon Aug 15 16:51:45 1994 Per Bothner (bothner@kalessin.cygnus.com)
14451
14452 * Makefile.in: Update various rules to reflect that librx
14453 is now needed for libg++.
14454
14455 Fri Aug 12 18:07:21 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14456
14457 * config.sub: Accept mips64orion and mips64orionel as a CPU name.
14458
14459 Mon Aug 8 11:36:17 1994 Stan Shebs (shebs@andros.cygnus.com)
14460
14461 * configure.in: Configure the examples directory.
14462
14463 Thu Aug 4 16:12:36 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14464
14465 * configure: Simplify Jun 2 1994 change.
14466
14467 Wed Aug 3 04:58:16 1994 D. V. Henkel-Wallace (gumby@cygnus.com)
14468
14469 * change CC to /usr/latest/bin/gcc for lynx host builds, since
14470 /bin/gcc isn't good enough to build gcc.
14471
14472 Wed Jul 27 09:07:14 1994 Fred Fish (fnf@cygnus.com)
14473
14474 * Makefile.in (GDB_SUPPORT_FILES): Remove
14475 (setup-dirs-gdb, gdb.tar.gz, make-gdb.tar.gz): Remove old rules.
14476 (gdb.tar.gz): Add new rule to use standard distribution building
14477 mechanism.
14478
14479 Mon Jul 25 11:10:06 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14480
14481 * configure.in: Warn about use of /usr/ucb/cc on Solaris. From
14482 Bill Cox <bill@cygnus.com>.
14483
14484 Sat Jul 23 12:19:46 1994 Per Bothner (bothner@kalessin.cygnus.com)
14485
14486 * config.guess: Recognize ISC. Patch from kwzh@gnu.ai.mit.edu.
14487
14488 Fri Jul 22 17:53:59 1994 Stu Grossman (grossman@cygnus.com)
14489
14490 * configure: Search current dir first in .gdbinit.
14491
14492 Fri Jul 22 11:28:30 1994 Per Bothner (bothner@kalessin.cygnus.com)
14493
14494 * config.sub: Recognize freebsd (merged from gcc config.sub).
14495
14496 Thu Jul 21 14:10:52 1994 Per Bothner (bothner@kalessin.cygnus.com)
14497
14498 * config.sub: Refer to NeXT's operating system as nextstep.
14499
14500 * config.sub (case $basic_machine): Re-order the cases, to match
14501 the order in the FSF version (which is mostly alphabethical).
14502 Merge in some additions and changes from the FSF.
14503
14504 Sat Jul 16 12:03:08 1994 Stan Shebs (shebs@andros.cygnus.com)
14505
14506 * config.guess: Recognize m68k-atari-sysv4 and m88k-harris-csux7.
14507 * config.sub: Recognize cxux7.
14508 * configure.in: Use mh-cxux for m88k-harris-cxux*.
14509
14510 Mon Jul 11 14:37:39 1994 Per Bothner (bothner@kalessin.cygnus.com)
14511
14512 * config.sub: Fix typo powerpc -> powerpc-*.
14513
14514 Sat Jul 9 13:03:43 1994 Michael Tiemann (tiemann@blues.cygnus.com)
14515
14516 * Makefile.in: `all-emacs19' depends on `all-byacc'.
14517
14518 * Makefile.in: Add all-emacs19 and install-emacs19 rules (in
14519 parallel with all-emacs and install-emacs). Top-level command
14520 `make all-emacs19 CC=gcc' now behaves as `make all-emacs CC=gcc'.
14521
14522 Thu Jun 30 16:53:42 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14523
14524 * test-build.mk ($(host)-stamp-stage2-installed): Remove
14525 $(relbindir)/make before doing ``make install'', and use
14526 $(GNU_MAKE) while doing it. Avoids problem on SunOS with
14527 installing over running make binary.
14528 ($(host)-stamp-stage3-installed): Likewise.
14529
14530 Tue Jun 28 13:43:25 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14531
14532 * config.guess: Recognize Mach.
14533
14534 Mon Jun 27 16:41:14 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14535
14536 * configure: Check ${exec_prefixoption}, not ${exec_prefix}, to
14537 see whether --exec-prefix was used.
14538
14539 Sun Jun 26 21:15:54 1994 Per Bothner (bothner@kalessin.cygnus.com)
14540
14541 * README: Explicitly mention libg++/README. (Zoo's idea.)
14542
14543 Tue Jun 21 12:45:55 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14544
14545 * Makefile.in: Add all-librx target similar to all-libproc.
14546
14547 Wed Jun 8 23:11:55 1994 Stu Grossman (grossman@cygnus.com)
14548
14549 * config.guess: Rearrange tests for Alpha-OSF1 to properly deal
14550 with post 1.2 uname bogosity.
14551
14552 Thu Jun 9 00:27:59 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14553
14554 * configure: Remove temporary files on receipt of a signal.
14555
14556 Tue Jun 7 12:06:24 1994 Ian Lance Taylor (ian@cygnus.com)
14557
14558 * configure: If there is a package_makefile_frag, remove
14559 ${subdir}/Makefile.tem after copying it in.
14560
14561 Mon Jun 6 21:35:02 1994 D. V. Henkel-Wallace (gumby@cygnus.com)
14562
14563 * build_all.mk: support rs6000 lynx identifies itself as
14564 rs6000-lynx-lynxos2.2.2. Also, use /usr/cygnus/progressive/bin/gcc
14565 since /bin/gcc is too feeble to compile a modern gcc.
14566
14567 Mon Jun 6 16:06:34 1994 Karen Christiansen (karen@cirdan.cygnus.com)
14568
14569 * brought devo/test-build.mk update-to-date with progressive/
14570 test-build.mk. Add lynx targets and hppa flag info.
14571
14572 Sat Jun 4 17:23:54 1994 Per Bothner (bothner@kalessin.cygnus.com)
14573
14574 * configure.in: Use mh-ncrsvr43. Patch from
14575 Tom McConnell <tmcconne@sedona.intel.com>.
14576
14577 Fri Jun 3 17:47:24 1994 Per Bothner (bothner@kalessin.cygnus.com)
14578
14579 * config.guess (i386-unknown-bsdi): No longer need to
14580 check #if defined(__bsdi__) && defined(__i386__).
14581
14582 Thu Jun 2 18:56:46 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14583
14584 * configure: Set program_transform_nameoption correctly.
14585
14586 Thu Jun 2 10:57:06 1994 Karen Christiansen (karen@cirdan.cygnus.com)
14587
14588 * brought build-all.mk update-to-date with progressive build-all.mk,
14589 added new targets and hppa info.
14590
14591 Thu Jun 2 00:12:44 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14592
14593 * configure: If config.guess result is a prefix of the user
14594 specified target, assume a native build and use the user specified
14595 target as the host alias. Remove SunOS patch suffix removal hack.
14596 * configure.in: Remove SunOS patch suffix removal hack.
14597
14598 * Makefile.in (CROSS_CHECK_MODULES): Remove check-flex, since it's
14599 in NATIVE_CHECK_MODULES.
14600
14601 Wed Jun 1 10:49:41 1994 Bill Cox (bill@rtl.cygnus.com)
14602
14603 * Makefile.in: Rename HOST_ONLY to NATIVE.
14604 * configure: Delete SunOs patch suffix from host_canonical
14605 and build_canonical variables that are prepended to Makefiles.
14606 * configure.in: Add comments for easier maintenance.
14607
14608 Tue May 31 19:39:47 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14609
14610 * Makefile.in: Add all-libproc target similar to all-gui.
14611
14612 Tue May 31 17:16:33 1994 Tom Lord (lord@cygnus.com)
14613
14614 * Makefile.in (CHECK_MODULES): split into
14615 HOST_ONLY_CHECK_MODULES and CROSS_CHECK_MODULES.
14616
14617 Tue May 31 16:36:36 1994 Paul Eggert (eggert@twinsun.com)
14618
14619 * config.guess (i386-unknown-bsdi): New system to guess.
14620
14621 Wed May 25 16:47:10 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14622
14623 * Makefile.in: Add all-gui target (but not yet build by "all").
14624
14625 Thu May 26 08:53:19 1994 Bill Cox (bill@rtl.cygnus.com)
14626
14627 * config.sub: Move deletion of patch suffix from here...
14628 * configure.in: To here, at Ian's suggestion. The top-
14629 level scripts might need to know of a patch level.
14630
14631 Wed May 25 09:15:54 1994 Bill Cox (bill@rtl.cygnus.com)
14632
14633 * config.sub: Strip off patch suffix so rtl is recognized
14634 as a sunos4.1.3 machine, even though it's been patched.
14635
14636 Fri May 20 08:25:49 1994 Steve Chamberlain (sac@deneb.cygnus.com)
14637
14638 * Makefile.in (INSTALL_LAST): Delete.
14639 (INSTALL_DOSREL): New.
14640
14641 Thu May 19 17:12:12 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14642
14643 * configure.in: Use ld for i[34]86-*-sysv4* and sparc-*-solaris2*.
14644 Don't set use_gnu_ld to no for *-*-sysv4; that only controls
14645 whether we pass down --with-gnu-ld anyhow.
14646
14647 Thu May 19 09:29:12 1994 Steve Chamberlain (sac@cygnus.com)
14648
14649 * Makefile.in (INSTALL_LAST): Change operation so it works
14650 on more flavors of make.
14651 * configure.in (go32): Don't build libg++ or libio.
14652
14653 Fri May 13 13:28:34 1994 Steve Chamberlain (sac@cygnus.com)
14654
14655 * Makefile.in (Move HOST_PREFIX_1 and friends up so
14656 they can be overriden by templates.
14657
14658 Sat May 7 16:46:44 1994 Steve Chamberlain (sac@cygnus.com)
14659
14660 * configure.in (target==go32): Don't build gdb.
14661 * dosrel: New directory.
14662
14663 Fri May 6 14:19:25 1994 Steve Chamberlain (sac@cygnus.com)
14664
14665 * configure.in (host==go32): Configure dosrel too.
14666 * Makefile.in (INTALL_TARGET): Call INSTALL_LAST last.
14667 (HOST_CC, HOST_PREFIX, HOST_PREFIX_1): Undefine, they should
14668 be set by incoming names or templates.
14669 (INSTALL_LAST): New rule.
14670
14671 Thu May 5 17:35:05 1994 Stan Shebs (shebs@andros.cygnus.com)
14672
14673 * config.sub (sparclitefrw, sparclitefrwcompat): Don't set the os.
14674
14675 Thu May 5 20:06:45 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
14676
14677 * configure.in (appdirs): New variable. Currently empty, but will
14678 be used in gas distribution. If nonempty, lists a set of
14679 directories at least one of which must get configured, or top
14680 level configuration is considered to have failed.
14681 (rs6000-*-lynxos*): Use new file name.
14682
14683 Thu May 5 13:38:36 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14684
14685 Eliminate XTRAFLAGS.
14686 * Makefile.in (CC_FOR_TARGET): If newlib exists, refer to the
14687 newlib include files using -idirafter, and also use -nostdinc.
14688 (CXX_FOR_TARGET): Likewise.
14689 (XTRAFLAGS): Removed.
14690 (BASE_FLAGS_TO_PASS): Remove XTRAFLAGS_FOR_TARGET.
14691 (EXTRA_HOST_FLAGS): Remove XTRAFLAGS.
14692 (EXTRA_TARGET_FLAGS, EXTRA_GCC_FLAGS): Likewise.
14693 ($(DO_X)): Don't pass down XTRAFLAGS.
14694
14695 Thu May 5 00:16:36 1994 Ken Raeburn (raeburn@kr-pc.cygnus.com)
14696
14697 * configure.in (mips*-dec-bsd*): New target; do build linker.
14698 (mips*-*-bsd*): New target; don't build linker.
14699
14700 Wed May 4 20:10:10 1994 D. V. Henkel-Wallace (gumby@cygnus.com)
14701
14702 * configure.in: support rs6000-*-lynxos* configuration.
14703 support sunos4 as a cross target.
14704
14705 * config.sub: look for lynx*, not lynx since the OS version may
14706 legitimately be part of the name.
14707
14708 Tue May 3 21:48:11 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
14709
14710 * configure.in (i[34]86-*-sco*): Move to be with other i386
14711 targets.
14712 (romp-*-*): New target. Skip various binary utilities.
14713 (vax-*-*): New target. Don't build newlib.
14714 (vax-*-vms): Renamed from *-*-vms. Don't build opcodes or newlib.
14715
14716 Thu Apr 28 15:03:05 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14717
14718 * configure.in: Only set host_makefile_frag if config
14719 directory exists.
14720
14721 Wed Apr 27 12:14:30 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14722
14723 * install.sh: If $dstdir exists, don't check whether each
14724 component does.
14725
14726 Tue Apr 26 18:11:33 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14727
14728 * test-build.mk (HOLES): Add sleep; used by rcs/src/conf.sh.
14729
14730 Mon Apr 25 15:06:34 1994 Stan Shebs (shebs@andros.cygnus.com)
14731
14732 * configure.in (*-*-lynxos*): Don't configure newlib for either
14733 native or cross Lynx.
14734
14735 Sat Apr 16 11:58:16 1994 Doug Evans (dje@canuck.cygnus.com)
14736
14737 * config.sub (sparc64-elf): Fix os.
14738 (z8k): Remove duplicate.
14739
14740 Thu Apr 14 23:33:17 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14741
14742 * Makefile.in (gcc-no-fixedincludes): Touch gcc/include/fixed, not
14743 gcc/stmp-fixproto, to try to prevent fixproto from being run.
14744
14745 Wed Apr 13 15:14:52 1994 Bill Cox (bill@cygnus.com)
14746
14747 * configure: Make file links cleanly even if Lynx fails on
14748 an NFS symlink (at least fail cleanly).
14749
14750 Mon Apr 11 10:58:56 1994 Jim Wilson (wilson@sphagnum.cygnus.com)
14751
14752 * test-build.mk (CC): For mips-sgi-irix4, change -XNh1500 to
14753 -XNh2000.
14754
14755 Sat Apr 9 15:10:45 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14756
14757 * configure: Unknown options are fatal again.
14758
14759 Fri Apr 8 12:01:41 1994 David J. Mackenzie (djm@cygnus.com)
14760
14761 * configure: Ignore --x-includes and --x-libraries, for Autoconf
14762 compatibility.
14763
14764 Thu Apr 7 17:31:43 1994 Doug Evans (dje@canuck.cygnus.com)
14765
14766 * build-all.mk: Add `clean' target.
14767
14768 Wed Apr 6 20:44:56 1994 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
14769
14770 * config.guess: Add SINIX support.
14771 * configure.in: Add mips-*-sysv4* support.
14772
14773 Mon Apr 4 17:41:44 1994 Doug Evans (dje@canuck.cygnus.com)
14774
14775 * build-all.mk: Document all useful targets.
14776 If canonhost is sparc-sun-solaris2.3, change it to sparc-sun-solaris2.
14777 If canonhost is mips-sgi-irix4.0.5H, change it to mips-sgi-irix4.
14778
14779 Thu Mar 31 04:55:57 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14780
14781 * configure: Support --silent, --quiet.
14782
14783 Wed Mar 30 21:37:38 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14784
14785 * configure: Support --disable-FEATURE.
14786
14787 Tue Mar 29 19:15:05 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14788
14789 * config.guess: Recognize NCR running SVR4.3.
14790
14791 Mon Mar 28 14:55:15 1994 Per Bothner (bothner@kalessin.cygnus.com)
14792
14793 * config.guess: Make BSDI generate i386-unknown-bsd386.
14794 Patch from Paul Eggert <eggert@twinsun.com>.
14795
14796 Mon Mar 28 12:54:52 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14797
14798 * configure.in (powerpc-*-aix*): Treat like rs6000-*-*.
14799
14800 Sat Mar 26 11:25:48 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14801
14802 * configure: Make unrecognized options give nonfatal warnings
14803 instead of fatal errors, and pass them to any subdirectory
14804 configures in case they recognize them.
14805 Make --x equivalent to --with-x.
14806
14807 Fri Mar 25 21:52:10 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14808
14809 * configure: Add --enable-* options. Clean up usage message and
14810 some comments.
14811
14812 Thu Mar 24 09:12:53 1994 Doug Evans (dje@canuck.cygnus.com)
14813
14814 * Makefile.in (NM_FOR_TARGET): Build tree version is now nm.new.
14815
14816 Sun Mar 20 11:28:22 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
14817
14818 * configure.in (hppa*-*-*): Enable binutils.
14819
14820 Sat Mar 19 11:50:16 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14821
14822 * config.sub: Recognize cisco.
14823
14824 Fri Mar 18 16:42:32 1994 Jason Merrill (jason@deneb.cygnus.com)
14825
14826 * Makefile.in (CXXFLAGS): Add -fexternal-templates.
14827
14828 Tue Mar 15 11:25:55 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14829
14830 * config.guess: about target *-hitachi-hiuxwe2, don't print more
14831 than one configuration name. Add comment.
14832
14833 Sun Mar 6 23:13:38 1994 Hisashi MINAMINO (minamino@sra.co.jp)
14834
14835 * config.guess: about target *-hitachi-hiuxwe2, fixed
14836 machine guessing order. [Hitachi's CPU_IS_HP_MC68K
14837 macro is incorrect.]
14838
14839 Sun Mar 13 09:10:08 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14840
14841 * Makefile.in (TAGS): Just build TAGS in each subdirectory, rather
14842 than the "make ls" stuff which used to be here.
14843
14844 Fri Mar 11 12:52:39 1994 Per Bothner (bothner@kalessin.cygnus.com)
14845
14846 * config.guess: Recognize i[34]86-unknown-freebsd.
14847 From Shawn M Carey <smcarey@rodan.syr.edu>.
14848
14849 Thu Mar 3 14:24:21 1994 Per Bothner (bothner@kalessin.cygnus.com)
14850
14851 * configure.in (noconfigdirs for alpha): Remove libg++ and libio.
14852
14853 Wed Mar 2 13:28:48 1994 Jim Kingdon (kingdon@deneb.cygnus.com)
14854
14855 * config.guess: Check for ptx.
14856
14857 Mon Feb 28 16:46:50 1994 Kung Hsu (kung@mexican.cygnus.com)
14858
14859 * config.sub: Add os9k checking.
14860
14861 Thu Feb 24 07:09:04 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
14862
14863 * config.guess: Handle OSF1 running on HPPA processors
14864
14865 Fri Feb 18 14:14:00 1994 Ken Raeburn (raeburn@rtl.cygnus.com)
14866
14867 * configure: If subdir configure fails, print out a message with
14868 subdirectory name, in case subdir's configure code didn't identify
14869 itself.
14870
14871 Fri Feb 18 12:50:15 1994 Doug Evans (dje@cygnus.com)
14872
14873 * configure.in: Remove embedded newlines from configdirs.
14874 Avoid mismatches of substrings. Fix matching strings at end
14875 of configdirs.
14876
14877 Fri Feb 11 15:33:33 1994 Stu Grossman (grossman at cygnus.com)
14878
14879 * config.guess: Add Lynx/rs6000 config support.
14880
14881 Tue Feb 8 13:41:09 1994 Ken Raeburn (raeburn@rtl.cygnus.com)
14882
14883 * configure.in (alpha-dec-osf1*, alpha*-*-*): Build gas.
14884
14885 Mon Feb 7 15:42:36 1994 Jeffrey A. Law (law@cygnus.com)
14886
14887 * configure.in (hppa*-*-osf*): Treat this just like most other
14888 PA configurations (eg no binutils or ld).
14889 (hppa*-*-*elf*): These configurations have binutils and ld.
14890
14891 Sun Feb 6 16:35:07 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
14892
14893 * config.sub (hiux): Fix typo. From m-kasahr@sramhc.sra.co.JP.
14894
14895 Sat Feb 5 01:00:33 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14896
14897 * configure.in (rs6000-*-*): Build gas.
14898
14899 Wed Feb 2 13:57:57 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
14900
14901 * Makefile.in: Avoid bug in losing hpux sed.
14902
14903 Wed Feb 2 14:53:05 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14904
14905 * Makefile.in, test-build.mk: Remove MUNCH_NM; it was only needed
14906 for GDB and GDB has been fixed to not need it.
14907
14908 Sun Jan 30 17:58:06 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
14909
14910 * config.guess: Recognize vax hosts.
14911
14912 Fri Jan 28 15:29:38 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
14913
14914 * configure (while loop): Don't use "break 2" inside case
14915 statement -- the case statement isn't an enclosing loop.
14916
14917 Mon Jan 24 18:40:06 1994 Per Bothner (bothner@kalessin.cygnus.com)
14918
14919 * config.guess: Clean up NeXT support, to allow nextstep
14920 on Intel machines. Make OS be nextstep.
14921
14922 Sun Jan 23 18:47:22 1994 Richard Kenner (kenner@vlsi1.ultra.nyu.edu)
14923
14924 * config.guess: Add alternate forms for Convex.
14925
14926 Thu Jan 20 16:13:41 1994 Stu Grossman (grossman at cygnus.com)
14927
14928 * configure: Completely rewrite option processing. Take
14929 advantage of pattern-matching to avoid invoking test frequently.
14930 Also clean up host and target defaulting logic.
14931
14932 Mon Jan 17 15:06:56 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
14933
14934 * Makefile.in: Replace all occurrances of "rootme" with "r" and
14935 "$${rootme}" with "$$r", to increase the likelihood that the do-*
14936 commands (plus user environment) will fit SCO limits.
14937
14938 Thu Jan 6 11:20:57 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14939
14940 * configure.in: Don't issue warnings about directories which are
14941 not being configured if -norecursion is set. Correct test for
14942 --with-gnu-as and --with-gnu-ld to not get confused by substring
14943 matches.
14944
14945 * configure.in: Don't build gas for alpha-dec-osf1*.
14946
14947 Tue Jan 4 17:10:19 1994 Stu Grossman (grossman at cygnus.com)
14948
14949 * configure: Back out Per's change of 12/19/1993. It changes the
14950 behavior of configure in unexpected and confusing ways.
14951
14952 Also, use different delim char when calculating
14953 program_transform_name so that the name can contain slashes.
14954
14955 Sat Jan 1 13:45:31 1994 Rob Savoye (rob@darkstar.cygnus.com)
14956
14957 * configure.in, config.sub: Add support for VSTa micro-kernel.
14958
14959 Sat Dec 25 20:00:47 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
14960
14961 * configure.in: Nuke hacks which were used to get a special
14962 version of GAS for HPPA configurations.
14963
14964 Sun Dec 19 20:40:44 1993 Per Bothner (bothner@kalessin.cygnus.com)
14965
14966 * configure: If only ${target_alias} is given, use that
14967 as the default for ${host_alias}.
14968 * configure: Add missing back-slashes before nested quotes.
14969
14970 Wed Dec 15 18:07:18 1993 david d `zoo' zuhn (zoo@andros.cygnus.com)
14971
14972 * Makefile.in (BASE_FLAGS_TO_PASS): add YACC=$(BISON)
14973
14974 Tue Dec 14 21:25:33 1993 Per Bothner (bothner@cygnus.com)
14975
14976 * config.guess: Recognize some Tektronix configurations.
14977 From Kaveh R. Ghazi <ghazi@noc.rutgers.edu>.
14978
14979 Sat Dec 11 11:18:00 1993 Steve Chamberlain (sac@thepub.cygnus.com)
14980
14981 * config.sub: Match any flavor of SH.
14982
14983 Thu Dec 2 17:16:58 1993 Ken Raeburn (raeburn@cujo.cygnus.com)
14984
14985 * configure.in: Don't try to configure newlib for Alpha.
14986
14987 Thu Dec 2 14:35:54 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14988
14989 * configure.in: Don't build ld for Irix 5. Don't build gas,
14990 libg++ or libio for any Alpha target.
14991
14992 * configure.in (mips*-sgi-irix5*): New target; use mh-irix5.
14993
14994 Wed Dec 1 17:00:33 1993 Jason Merrill (jason@deneb.cygnus.com)
14995
14996 * Makefile.in (GZIPPROG): Renamed from GZIP, which gzip uses for
14997 default arguments -- so it tried to compress itself.
14998
14999 Tue Nov 30 13:45:15 1993 david d `zoo' zuhn (zoo@andros.cygnus.com)
15000
15001 * configure.in (notsupp): ensure that a space is always at the end
15002 of the configdirs list, since the grep checks for an explicit space
15003
15004 Tue Nov 16 15:04:27 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15005
15006 * configure.in (target i386-sysv4.2): don't build ld, since static
15007 versions of many libraries are not available.
15008
15009 Tue Nov 16 14:28:12 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15010
15011 * config.guess: Recognize Apollos (using environment variables).
15012 * configure.in: Don't configure ld, binutils, or gprof for Apollo.
15013
15014 Thu Nov 11 12:03:50 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15015
15016 * config.guess: Recognize Sony news mips running newsos.
15017
15018 Wed Nov 10 16:57:00 1993 Mark Eichin (eichin@cygnus.com)
15019
15020 * Makefile.in (all-cygnus, build-cygnus): "fi else" needs to be
15021 "fi ; else" for bash.
15022
15023 Tue Nov 9 15:54:01 1993 Mark Eichin (eichin@cygnus.com)
15024
15025 * Makefile.in (BASE_FLAGS_TO_PASS): pass SHELL.
15026
15027 Fri Nov 5 08:07:27 1993 D. V. Henkel-Wallace (gumby@blues.cygnus.com)
15028
15029 * config.sub: accept unixware as an alias for svr4.2.
15030 Fix some inconsistancies with the gcc version.
15031
15032 Fri Nov 5 15:14:12 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15033
15034 * Makefile.in (DISTDOCDIRS): Add gdb.
15035
15036 Fri Nov 5 11:59:42 1993 Per Bothner (bothner@kalessin.cygnus.com)
15037
15038 * Makefile.in (DISTDOCDIRS): Add libg++ and libio.
15039
15040 Fri Nov 5 10:35:05 1993 Ken Raeburn (raeburn@rover.cygnus.com)
15041
15042 * Makefile.in (taz): Only build "info" in DISTDOCDIRS.
15043 (DISTDOCDIRS): Don't assume libg++ and gdb folks necessarily want
15044 this now.
15045
15046 Thu Nov 4 18:58:23 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15047
15048 * config.sub: Accept hiux* as an OS name.
15049
15050 * Makefile.in: Change RUNTEST_FLAGS back to RUNTESTFLAGS per
15051 etc/make-stds.texi. The underscore came from gcc, and dje now
15052 agrees that RUNTESTFLAGS is the correct name.
15053
15054 Thu Nov 4 10:49:01 1993 Per Bothner (bothner@kalessin.cygnus.com)
15055
15056 * install.sh: Remove 'set -e'. It makes any conditionals
15057 in the script useless.
15058
15059 * config.guess: Automatically recognize arm-acorn-riscix
15060 Patch from Richard Earnshaw (rwe11@cl.cam.ac.uk).
15061
15062 Thu Nov 04 08:08:04 1993 Jeffrey Wheat (cassidy@cygnus.com)
15063
15064 * Makefile.in: Change RUNTESTFLAGS to RUNTEST_FLAGS
15065
15066 Wed Nov 3 22:09:46 1993 Ken Raeburn (raeburn@rtl.cygnus.com)
15067
15068 * Makefile.in (DISTDOCDIRS): New variable.
15069 (taz): Edit local Makefile.in sooner, instead of proto-toplev
15070 Makefile.in later. Build "info" and "dvi" in DISTDOCDIRS.
15071
15072 Wed Nov 3 21:31:52 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15073
15074 * configure.in (hppa target): check the source directory for the
15075 pagas sub-directory
15076
15077 Wed Nov 3 11:12:22 1993 Doug Evans (dje@canuck.cygnus.com)
15078
15079 * config.sub: Allow -aout* and -elf*.
15080
15081 Wed Nov 3 11:08:33 1993 Ken Raeburn (raeburn@rtl.cygnus.com)
15082
15083 * configure.in: Don't build ld on i386-solaris2, same as for
15084 sparc-solaris2.
15085
15086 Tue Nov 2 14:21:25 1993 Per Bothner (bothner@kalessin.cygnus.com)
15087
15088 * Makefile.in (taz): Add texinfo/lgpl.texinfo (for libg++).
15089
15090 Tue Nov 2 13:38:30 1993 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
15091
15092 * configure.in: Configure gdb for alpha.
15093
15094 Mon Nov 1 10:42:54 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15095
15096 * Makefile.in (CXXFLAGS): Add -O.
15097
15098 Wed Oct 27 10:45:06 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15099
15100 * config.guess: added support for DG Aviion
15101
15102 Tue Oct 26 14:37:37 1993 Ken Raeburn (raeburn@rover.cygnus.com)
15103
15104 * configure.in: Produce warning message for subdirectories not
15105 configurable for this host/target combination. Don't try to
15106 configure gdb for vms.
15107
15108 Mon Oct 25 11:22:15 1993 Ken Raeburn (raeburn@rover.cygnus.com)
15109
15110 * Makefile.in (taz): Replace "byacc" with "bison -y" in the
15111 appropriate files before making "diststuff".
15112 (DISTBISONFILES): New var: list of files to be edited.
15113 (DISTSTUFFDIRS): Add binutils.
15114
15115 Fri Oct 22 20:32:15 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15116
15117 * config.sub: also handle mipsel and mips64el (for little endian mips)
15118
15119 Fri Oct 22 07:59:20 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15120
15121 * configure.in: Add * to end of all OS names.
15122
15123 Thu Oct 21 11:38:28 1993 Stan Shebs (shebs@rtl.cygnus.com)
15124
15125 * configure.in: Build newlib for LynxOS native.
15126
15127 Wed Oct 20 09:56:12 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15128
15129 * config.guess: Add support for delta 88k running SVR3.
15130
15131 * configure.in: Add comment about HP compiler vs. emacs.
15132
15133 Tue Oct 19 16:02:22 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15134
15135 * configure.in: don't build ld on solaris2 (not a viable option
15136 due to bugs in getpwnam & getpwuid)
15137
15138 Tue Oct 19 15:13:56 1993 Ken Raeburn (raeburn@rtl.cygnus.com)
15139
15140 * configure.in: Accept alpha-dec-osf1*, not just -osf1, since
15141 config.guess will produce a full version number.
15142
15143 Tue Oct 19 15:58:01 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
15144
15145 * configure.in: Build linker and binutils for alpha-dec-osf1.
15146
15147 Tue Oct 19 11:41:55 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15148
15149 * Makefile.in: Remove -O from CXXFLAGS for consistency with CFLAGS,
15150 and gdb/testsuite/Makefile.in.
15151
15152 Sat Oct 9 18:39:07 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15153
15154 * configure.in: recognize mips*- instead of mips-
15155
15156 Fri Oct 8 14:15:39 1993 Ken Raeburn (raeburn@cygnus.com)
15157
15158 * config.sub: Accept linux*coff and linux*elf as operating
15159 systems.
15160
15161 Thu Oct 7 12:57:19 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
15162
15163 * config.sub: Recognize mips64, and mips3 as an alias for it.
15164
15165 Wed Oct 6 13:54:21 1993 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
15166
15167 * configure.in: Remove alpha-dec-osf*, no longer necessary now that
15168 gdb knows how to handle OSF/1 shared libraries.
15169
15170 Tue Oct 5 11:55:04 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15171
15172 * configure.in: Recognize hppa*-*-hiux* (currently synonym for hpux).
15173 * config.guess: Recognize Hitachi's HIUX.
15174 * config.sub: Recognize h3050r* and hppahitachi.
15175 Remove redundant cases for hp9k[23]*.
15176
15177 Mon Oct 4 16:15:09 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15178
15179 * configure.in: default to '--with-gnu-as' and '--with-gnu-ld'
15180 if gas and ld are in the source tree and are in ${configdirs}.
15181 If ${use_gnu_as} or ${use_gnu_ld} are 'no', then don't set the
15182 --with options (but still pass them down on the command line,
15183 if they were explicitly specified).
15184
15185 Fri Sep 24 19:11:13 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15186
15187 * configure: substitute SHELL value in Makefile.in with
15188 ${CONFIG_SHELL}
15189
15190 Thu Sep 23 18:05:13 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
15191
15192 * configure.in: Build gas, ld, and binutils for *-*-sysv4* and
15193 *-*-solaris2* targets.
15194
15195 Sun Sep 19 17:01:41 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15196
15197 * Makefile.in: define M4, and pass it down to sub-makes;
15198 all-autoconf now depends on all-m4
15199
15200 Sat Sep 18 00:38:23 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15201
15202 * Makefile.in ({AR,RANLIB}_FOR_TARGET): make contingent on
15203 presence of {ar,ranlib} instead of a configured directory
15204
15205 Wed Sep 15 08:41:44 1993 Jim Kingdon (kingdon@cirdan.cygnus.com)
15206
15207 * config.guess: Accept 34?? as well as 33?? for NCR.
15208
15209 Mon Sep 13 12:28:43 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15210
15211 * configure.in: grab mt-hppa for HPPA targets; use 'gas ' instead
15212 of 'gas' in sed commands, since 'gash' is now in the tree as well.
15213
15214 Fri Sep 10 11:23:52 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15215
15216 * configure: grab values for $(CC) and $(CXX) from the
15217 environment, so that someone can do "CC=gcc configure; make" and
15218 have it work right (matching the way that autoconf works now)
15219
15220 * configure.in, Makefile.in: add support for gash, the tcl
15221 interface to Galaxy
15222
15223 * config.guess: add NetBSD variants (hp300, x86)
15224
15225 Thu Sep 9 16:48:52 1993 Jason Merrill (jason@deneb.cygnus.com)
15226
15227 * install.sh: Support -d option (in the manner of SunOS 4 install,
15228 as it is more deterministic than that of GNU install)
15229 (chmodcmd): Set file to mode 755 by default (should also do default
15230 chgrp and chown, but I don't feel like dealing with that now)
15231
15232 Tue Sep 7 11:59:39 1993 Doug Evans (dje@canuck.cygnus.com)
15233
15234 * config.sub: Remove h8300hhms alias.
15235
15236 Tue Aug 31 11:00:09 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15237
15238 * configure.in: Match *-*-solaris2* not *-sun-solaris2*.
15239
15240 Mon Aug 30 18:29:10 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15241
15242 * Makefile.in (gcc-no-fixedincludes): touch stmp-fixproto as well
15243 as stmp-fixinc
15244
15245 Wed Aug 25 16:35:59 1993 K. Richard Pixley (rich@sendai.cygnus.com)
15246
15247 * config.sub: recognize m88110-bug-coff.
15248
15249 Tue Aug 24 10:23:24 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15250
15251 * Makefile.in (all-libio): all dependencies on the toolchain used
15252 to build this (gcc, gas, ld, etc)
15253
15254 Fri Aug 20 17:24:24 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15255
15256 * config.guess: Deal with OSF/1 1.3 on alpha.
15257
15258 Thu Aug 19 11:43:04 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15259
15260 * install.sh: add some 'else true' clauses for portability
15261
15262 * configure.in: don't build libio for h8[35]00-*-* targets
15263
15264 Tue Aug 17 19:02:31 1993 Per Bothner (bothner@kalessin.cygnus.com)
15265
15266 * Makefile.in: Add support for new libio.
15267
15268 Sun Aug 15 20:48:55 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15269
15270 * install.sh: If one command fails, don't try the rest. Don't try
15271 to remove $dsttmp (via trap) unless we have already created it.
15272 If $src doesn't exist, detect it and exit with an error.
15273
15274 * config.guess: Recognize BSD on hp300.
15275
15276 Wed Aug 11 18:35:13 1993 Per Bothner (bothner@kalessin.cygnus.com)
15277
15278 * config.guess: Map (9000/[34]??:HP-UX:*:*) to m68k-hp-hpux.
15279 Bug report from "Hamish (H.I.) Macdonald" <hamish@bnr.ca>.
15280
15281 Wed Aug 11 15:37:51 1993 Jason Merrill (jason@deneb.cygnus.com)
15282
15283 * Makefile.in (all-send-pr): depends on all-prms
15284
15285 Wed Aug 11 16:56:03 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15286
15287 * config.guess: Fix typo (9000/8??:4.3bsd -> 9000/7??:4.3bsd).
15288
15289 Fri Aug 6 14:45:02 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
15290
15291 * config.guess: From michael@mercury.cs.mun.ca (Michael Rendell):
15292 Added test for mips-mips-riscos5.
15293
15294 Thu Aug 5 15:45:08 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15295
15296 * configure.in: use mh-hp300 for 68k HP hosts
15297
15298 Mon Aug 2 11:56:53 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15299
15300 * configure: add support for CONFIG_SHELL, so that you can use
15301 some alternate shell for evaluating configure scripts
15302
15303 Sun Aug 1 11:36:27 1993 Fred Fish (fnf@deneb.cygnus.com)
15304
15305 * Makefile.in (make-gdb.tar.gz): Sed bug reporting address
15306 in configure script to bug-gdb@prep.ai.mit.edu when building
15307 distribution archive.
15308 * Makefile.in (COMPRESS): Remove def.
15309 * Makefile.in (gdb.tar.gz, make-gdb.tar.gz): Renamed from
15310 gdb.tar.Z and make-gdb.tar.Z respectively.
15311 * Makefile.in (make-gdb.tar.gz): Now only build gzip'd archive.
15312 * Makefile.in (make-gdb.tar.gz): Minor changes to move closer
15313 to convergence with 'taz' target in Makefile.in.
15314
15315 Fri Jul 30 12:34:57 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15316
15317 * install.sh (dsttmp): use trap to ensure that tmp files go
15318 away on error conditions
15319
15320 Wed Jul 28 11:57:36 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15321
15322 * Makefile.in (BASE_FLAGS_TO_PASS): remove LOADLIBES
15323
15324 Tue Jul 27 12:43:40 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15325
15326 * Makefile.in (install-dirs): Deal with a prefix like /gnu;
15327 its parent is '/' not ''.
15328
15329 * Makefile.in (DEVO_SUPPORT): Add comments about ChangeLog.
15330
15331 Fri Jul 23 09:53:37 1993 Jason Merrill (jason@wahini.cygnus.com)
15332
15333 * configure: if ${newsrcdir}/configure doesn't exist, don't assume
15334 that ${newsrcdir}/configure.in does.
15335
15336 Tue Jul 20 11:28:50 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15337
15338 * test-build.mk: support for CONFIG_SHELL
15339
15340 Mon Jul 19 21:54:46 1993 Fred Fish (fnf@deneb.cygnus.com)
15341
15342 * config.sub (netware): Add as a basic system type.
15343
15344 Wed Jul 14 12:03:11 1993 K. Richard Pixley (rich@sendai.cygnus.com)
15345
15346 * Makefile.in (Makefile): depend on configure.in. Also drop the
15347 $(srcdir)/ from the dependency on Makefile.in.
15348
15349 Tue Jul 13 20:10:58 1993 Doug Evans (dje@canuck.cygnus.com)
15350
15351 * config.sub: Recognize h8300hhms as h8300h-hitachi-hms.
15352 (h8300hhms is temporary until multi-libraries are implemented).
15353 * configure.in: Handle h8300h too.
15354
15355 Sun Jul 11 17:35:27 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15356
15357 * config.guess: Recognize dpx/2 as m68k-bull-sysv3.
15358
15359 Thu Jul 8 18:26:12 1993 John Gilmore (gnu@cygnus.com)
15360
15361 * configure: Remove extraneous output when guessing host type.
15362 * config.guess: Remove extraneous output when guessing using C
15363 compiler rather than uname, or when guessing fails.
15364
15365 Wed Jul 7 17:58:14 1993 david d `zoo' zuhn (zoo at rtl.cygnus.com)
15366
15367 * Makefile.in: remove all.cross and install.cross targets
15368
15369 * configure: remove CROSS=-DCROSS_COMPILE and ALL=all.cross
15370 definitions
15371
15372 Tue Jul 6 10:39:44 1993 Steve Chamberlain (sac@phydeaux.cygnus.com)
15373
15374 * configure.in (target sh): Build gprof.
15375
15376 Thu Jul 1 16:52:56 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15377
15378 * config.sub: change -solaris to -solaris2
15379
15380 Thu Jul 1 15:46:16 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15381
15382 * configure.in: Use config/mh-riscos for mips-*-sysv*.
15383
15384 Wed Jun 30 09:31:58 1993 Ian Lance Taylor (ian@cygnus.com)
15385
15386 * configure: Correct error message for missing Makefile.in to
15387 print correct directory.
15388
15389 Tue Jun 29 13:52:16 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15390
15391 * install.sh: kludge around 386BSD shell bug
15392
15393 Tue Jun 29 13:06:49 1993 Per Bothner (bothner@rtl.cygnus.com)
15394
15395 * config.guess: Recognize NeXT.
15396 * config.guess: Recognize i486-ncr-sysv4.
15397 * Makefile.in (taz): rm $(TOOL)-$$VER before linking.
15398
15399 Tue Jun 29 12:50:57 1993 Ian Lance Taylor (ian@cygnus.com)
15400
15401 * Makefile.in (MAKEINFOFLAGS): New variable.
15402 (FLAGS_TO_PASS): Pass MAKEINFO as MAKEINFO MAKEINFOFLAGS.
15403 * build-all.mk, test-build.mk: Pass down --no-split as
15404 MAKEINFOFLAGS when hosted on DOS. Compile DOS hosted without -g.
15405
15406 Thu Jun 24 13:39:11 1993 Per Bothner (bothner@rtl.cygnus.com)
15407
15408 * Makefile.in (DEVO_SUPPORT): Add COPYING COPYING.LIB install.sh.
15409
15410 Wed Jun 23 12:59:21 1993 Per Bothner (bothner@rtl.cygnus.com)
15411
15412 * Makefile.in (libg++.tar.z): New rule.
15413 * Makefile.in (taz): Replace 'configure -rm' by 'make distclean'.
15414 * Makefile.in (taz): Only do a single chmod.
15415
15416 Fri Jun 18 12:03:10 1993 david d `zoo' zuhn (zoo at majipoor.cygnus.com)
15417
15418 * install.sh: don't use dirname anymore (replaced with sed usage)
15419
15420 Thu Jun 17 18:43:42 1993 Fred Fish (fnf@cygnus.com)
15421
15422 * Makefile.in: Change extension for gzip'd files from '.z' to
15423 '.gz' per new FSF standard usage.
15424
15425 Thu Jun 17 16:58:50 1993 david d `zoo' zuhn (zoo at majipoor.cygnus.com)
15426
15427 * configure: put quotes around the final value of program_transform_name
15428
15429 Tue Jun 15 16:48:51 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15430
15431 * Makefile.in: new install.sh support; update install-info rules
15432
15433 Wed Jun 9 12:31:34 1993 Ian Lance Taylor (ian@cygnus.com)
15434
15435 * configure.in: Build diff for crosses, but not for go32 host.
15436
15437 * configure.in: Build gprof only for native, and don't build it
15438 for mips-*-*, rs6000-*-*, or i[34]86-*-sco*.
15439
15440 Mon Jun 7 13:12:11 1993 david d `zoo' zuhn (zoo at deneb.cygnus.com)
15441
15442 * configure.in: don't build gas,ld,binutils on for *-*-sysv4
15443
15444 Mon Jun 7 11:40:11 1993 Brendan Kehoe (brendan@lisa.cygnus.com)
15445
15446 * configure.in (host_tools): Add prms.
15447
15448 Fri Jun 4 13:30:42 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15449
15450 * Makefile.in: install gcc, do installation of $(INSTALL_MODULES)
15451 with $(FLAGS_TO_PASS) on the command line
15452
15453 * config.sub: Recognize lynx and lynxos
15454
15455 Fri Jun 4 10:59:56 1993 Ian Lance Taylor (ian@cygnus.com)
15456
15457 * config.sub: Accept -ecoff*, not just -ecoff.
15458
15459 Thu Jun 3 17:38:54 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15460
15461 * Makefile.in (taz): Use .gz suffix instead of .z.
15462 (binutils.tar.gz, gas+binutils.tar.gz, gas.tar.gz): Fixed target
15463 names.
15464
15465 Thu Jun 3 00:27:06 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15466
15467 * Makefile.in (vault-install): add an 'else true' (for Ultrix)
15468
15469 Wed Jun 2 18:19:16 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15470
15471 * Makefile.in (install-no-fixedincludes): install gcc last, so
15472 that rebuilds that might happen during 'make install' don't get
15473 bogus gcc include files
15474
15475 Wed Jun 2 16:14:10 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15476
15477 Change from Utah for HPPA support:
15478 * config.guess: Recognize hppa1.x-hp-bsd.
15479
15480 Wed Jun 2 11:53:33 1993 Per Bothner (bothner@rtl.cygnus.com)
15481
15482 * config.guess: Add support for Motorola Delta 68k, up to r3v7.
15483 Patch from pot@fly.cnuce.cnr.it (Francesco Potorti`).
15484
15485 Tue Jun 1 17:48:42 1993 Rob Savoye (rob at darkstar.cygnus.com)
15486
15487 * config.sub: Add support for rom68k and bug boot monitors.
15488
15489 Mon May 31 09:36:37 1993 Jim Kingdon (kingdon@cygnus.com)
15490
15491 * Makefile.in: Make all-opcodes depend on all-bfd.
15492
15493 Thu May 27 08:05:31 1993 Ian Lance Taylor (ian@cygnus.com)
15494
15495 * config.guess: Added special check for i[34]86-univel-sysv4*.
15496
15497 Wed May 26 16:33:40 1993 Ian Lance Taylor (ian@cygnus.com)
15498
15499 * config.guess: For i[34]86-unknown-sysv4 use UNAME_MACHINE for
15500 the processor rather than assuming i486.
15501
15502 Wed May 26 09:40:18 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15503
15504 * config.guess: Recognize SunOS6 as Solaris3.
15505
15506 Tue May 25 23:03:11 1993 Per Bothner (bothner@cygnus.com)
15507
15508 * config.guess: Fix typo. Avoid #elif (not in K&R 1).
15509 Recognize SunOS 5.* only (and not [6-9].*) as being Solaris2.
15510
15511 Tue May 25 12:44:18 1993 Ian Lance Taylor (ian@cygnus.com)
15512
15513 * build-all.mk (all-cross): New target for Canadian Cross.
15514 Added Q2 go32 targets.
15515 * test-build.mk: Configure go32 cross sparclite-aout and
15516 mips-idt-ecoff -with-gnu-ld. Moved build binary directory from
15517 PARTIAL_HOLE_DIRS to BUILD_HOLES_DIRS.
15518
15519 Mon May 24 15:30:06 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15520
15521 * configure.in: fix Alpha GDB typo; also, don't build DejaGnu for
15522 GO32 hosted toolchains
15523
15524 Mon May 24 14:18:41 1993 Rob Savoye (rob at darkstar.cygnus.com)
15525
15526 * configure: change so "-exec-prefix" gets passed down rather
15527 than "-exec_prefix" so autoconf generated Makefiles get the
15528 exec_prefix set right.
15529
15530 Fri May 21 10:42:25 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15531
15532 * config.guess: get the Solaris2 minor version number
15533
15534 * Makefile.in: add standards.texi and make-stds.texi to ETC_SUPPORT
15535
15536 Fri May 21 06:20:52 1993 Brendan Kehoe (brendan@lisa.cygnus.com)
15537
15538 * config.guess: Recognize some Sequent platforms.
15539
15540 Thu May 20 14:33:48 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15541
15542 * Makefile.in: added the vault-install target
15543
15544 * configure.in: actually use the Sun3 makefile fragment that's in
15545 config, also added the release dir to configdirs
15546
15547 Thu May 20 14:19:18 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15548
15549 * Makefile.in (taz): Fix modes on stuff in $(TOOL) dir also.
15550
15551 Tue May 18 20:26:41 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15552
15553 * configure.in: remove some program from Alpha targetted toolchains
15554
15555 Tue May 18 15:23:19 1993 Ken Raeburn (raeburn@cygnus.com)
15556
15557 * Makefile.in (DISTSTUFFDIRS): Renamed from PROTODIRS. Add ld and
15558 gprof.
15559 (taz): Run "make diststuff" in those directories instead of "make
15560 proto-dir". Look for "VERSION=" only at start of line in subdir
15561 Makefile. Use "gzip -9" for compression.
15562 (TEXINFO_SUPPORT, DIST_SUPPORT, BINUTILS_SUPPORT_DIRS): New vars.
15563 (binutils.tar.z): New target.
15564
15565 Mon May 17 17:01:15 1993 Ken Raeburn (raeburn@deneb.cygnus.com)
15566
15567 * Makefile.in (taz): Include gpl.texinfo.
15568
15569 Fri May 14 06:48:38 1993 Ken Raeburn (raeburn@deneb.cygnus.com)
15570
15571 * Makefile.in (setup-dirs): Merged into "taz" target.
15572 (taz): Only do `proto-dir' stuff if a directory is actually needed
15573 for this target.
15574
15575 Wed May 12 13:09:44 1993 Ian Lance Taylor (ian@cygnus.com)
15576
15577 * Makefile.in (MUNCH_NM): New variable, defined to be $(NM).
15578 (FLAGS_TO_PASS): Pass down MUNCH_NM.
15579 (HOST_CC, HOST_PREFIX, HOST_PREFIX_1): New variables.
15580 (EXTRA_GCC_FLAGS): Pass down HOST_* variables.
15581 (gcc-no-fixedincludes): Correct for current gcc Makefile.
15582
15583 Tue May 11 10:14:25 1993 Fred Fish (fnf@cygnus.com)
15584
15585 * Makefile.in (make-gdb.tar.Z): Add configure, config.guess,
15586 config.sub, and move-if-change to gdb testsuite distribution
15587 archive, so the testsuite can be extracted, configured, and
15588 run separately from the gdb distribution. Blow away the Chill
15589 tests that require a Chill compiled executable, since GNU Chill
15590 is not yet publically available.
15591
15592 Mon May 10 17:22:26 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15593
15594 * test-build.mk: set environment variables in a single command,
15595 instead of a list of assignments and exports
15596
15597 * config.guess: recognize Alpha/OSF1 systems
15598
15599 Mon May 10 14:55:51 1993 K. Richard Pixley (rich@rtl.cygnus.com)
15600
15601 * configure: Change help message to prefer --options rather than
15602 -options.
15603
15604 Mon May 10 05:58:35 1993 Ken Raeburn (raeburn@kr-pc.cygnus.com)
15605
15606 * config.sub: Convergent Tech. "miniframe" uses m68010, sez
15607 zippy@ecst.csuchico.edu.
15608 * config.guess: Recognize miniframe.
15609
15610 Sun May 9 17:47:57 1993 Rob Savoye (rob at darkstar.cygnus.com)
15611
15612 * Makefile.in: Use srcroot to find runtest rather than rootme.
15613 Pass RUNTESTFLAGS and EXPECT down in BASE_FLAGS_TO_PASS.
15614
15615 Fri May 7 14:55:59 1993 Ian Lance Taylor (ian@cygnus.com)
15616
15617 * test-build.mk: Extensive additions to support building on a
15618 machine other than the host.
15619
15620 Wed May 5 08:35:04 1993 Ken Raeburn (raeburn@deneb.cygnus.com)
15621
15622 * configure (tooldir): Fix for i386-aix again.
15623
15624 Mon May 3 19:00:27 1993 Per Bothner (bothner@cygnus.com)
15625
15626 * configure, Makefile.in: Change definition of $(tooldir)
15627 to match the FSF.
15628
15629 Fri Apr 30 15:55:21 1993 Fred Fish (fnf@cygnus.com)
15630
15631 * config.guess: Recognize i[34]86/SVR4.
15632
15633 Fri Apr 30 15:52:46 1993 Steve Chamberlain (sac@thepub.cygnus.com)
15634
15635 * Makefile.in (all-gdb): gdb depends on sim.
15636
15637 Thu Apr 29 23:30:48 1993 Fred Fish (fnf@cygnus.com)
15638
15639 * Makefile.in (gdb.tar.Z): Make prototype gdb testsuite directory
15640 at the same time we make the prototype gdb directory.
15641 * Makefile.in (make-gdb.tar.Z): Make the testsuite distribution
15642 files at the same time as the gdb base release distribution.
15643
15644 Thu Apr 29 12:50:37 1993 Ian Lance Taylor (ian@cygnus.com)
15645
15646 * Makefile.in (check): Use individual check targets rather than
15647 DO_X rule.
15648 (check-gcc): Added.
15649
15650 Thu Apr 29 09:50:07 1993 Jim Kingdon (kingdon@cygnus.com)
15651
15652 * config.sub: Use sysv3.2 not sysv32 for canonical OS
15653 for System V release 3.2.
15654
15655 Thu Apr 29 10:33:22 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15656
15657 * config.sub: Recognize hppaosf.
15658 * configure.in: Do configure ld/binutils/gas for it.
15659
15660 Tue Apr 27 06:25:34 1993 Ken Raeburn (raeburn@kr-pc.cygnus.com)
15661
15662 * configure (tooldir): Alter syntax used to set this, for systems
15663 where "\$" isn't handled right, like i386-aix.
15664
15665 Thu Apr 22 08:17:35 1993 Ian Lance Taylor (ian@cygnus.com)
15666
15667 * configure: Pass program-transform-name, not
15668 program_transform_name, to recursive configures.
15669
15670 Thu Apr 22 02:58:21 1993 Ken Raeburn (raeburn@cygnus.com)
15671
15672 * Makefile.in (gas+binutils.tar.z): New rule for building snapshots
15673 of gas+ld+binutils.
15674
15675 Mon Apr 19 17:41:30 1993 Per Bothner (bothner@cygnus.com)
15676
15677 * config.guess: Recognize AIX3.2 as distinct from 3.1.
15678
15679 Sat Apr 17 17:19:50 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15680
15681 * configure.in: rename m88k-motorola-m88kbcs to m88k-motorola-sysv
15682
15683 Tue Apr 13 16:52:16 1993 Brendan Kehoe (brendan@lisa.cygnus.com)
15684
15685 * Makefile.in (PRMS): Set back to all-prms.
15686
15687 Sat Apr 10 12:04:07 1993 Ian Lance Taylor (ian@cygnus.com)
15688
15689 * test-build.mk: Pass -with-gnu-as for known MIPS native and MIPS
15690 targets, rather than for MIPS hosts.
15691
15692 Fri Apr 9 13:51:06 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15693
15694 * configure.in: add comment for --with-x default values
15695
15696 * config.guess: handle Motorola Delta88 box for SVR3 and SVR4.
15697
15698 * Makefile.in: add check-* targets for each of the directories in
15699 the tree. Add a definition of RUNTEST that will use the one we
15700 just built, if it exists. Pass this down via FLAGS_TO_PASS.
15701
15702 Thu Apr 8 09:21:30 1993 Ian Lance Taylor (ian@cygnus.com)
15703
15704 * configure.in: Removed obsolete references to bfd_target and
15705 target_makefile_frag.
15706
15707 * build-all.mk: Set assorted targets for Q2.
15708 * config.sub: Recognize z8k-sim and h8300-hms.
15709 * test-build.mk: Really don't pass host to configure.
15710 (HOLES): Added uname.
15711
15712 Wed Apr 7 15:48:19 1993 Ian Lance Taylor (ian@cygnus.com)
15713
15714 * configure: Handle an empty program-prefix, program-suffix or
15715 program-transform-name correctly.
15716
15717 Tue Apr 6 13:48:41 1993 Ian Lance Taylor (ian@cygnus.com)
15718
15719 * build-all.mk: -G 8 no longer required for MIPS targets.
15720 * test-build.mk: Don't pass host argument to configure; make it
15721 guess.
15722
15723 Tue Apr 6 10:36:53 1993 Fred Fish (fnf@cygnus.com)
15724
15725 * Makefile.in (gdb.tar.Z): Fix for building gzip'd distribution.
15726 * Makefile.in (COMPRESS): New macro, like GZIP.
15727
15728 Fri Apr 2 09:02:31 1993 Ian Lance Taylor (ian@cygnus.com)
15729
15730 * test-build.mk: Use -with-gnu-as for mips-sgi-irix4 as well.
15731
15732 * build-all.mk: Set GCC to gcc -O -G 8 for MIPS targets, since gcc
15733 with gas currently defaults to -G 0.
15734
15735 Thu Apr 1 08:25:42 1993 Ian Lance Taylor (ian@cygnus.com)
15736
15737 * Makefile.in (all-flex): flex depends on byacc.
15738
15739 * build-all.mk: If host not specified, use config.guess. Pass TAG
15740 to test-build.mk as RELEASE_TAG.
15741 * test-build.mk (configargs): New variable containing arguments to
15742 pass to configure. Set to -with-gnu-as on mips-dec-ultrix.
15743 (FLAGS_TO_PASS): Pass down RELEASE_TAG.
15744
15745 * config.guess: Use /bin/uname when checking -X argument on SCO,
15746 to avoid invoking GNU uname which doesn't understand -X.
15747
15748 * test-build.mk: Don't use /usr/unsupported/bin/as on AIX.
15749
15750 * configure.in: Build gas for mips-*-*.
15751
15752 Wed Mar 31 21:20:58 1993 K. Richard Pixley (rich@rtl.cygnus.com)
15753
15754 * Makefile.in (all.normal): insert missing backslash.
15755
15756 Wed Mar 31 12:31:56 1993 Ian Lance Taylor (ian@cygnus.com)
15757
15758 * build-all.mk: Bump -XNh value to 1500 to match gcc requirements.
15759
15760 * Makefile.in: Complete overhaul to merge many almost identical
15761 targets.
15762
15763 Tue Mar 30 20:17:01 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15764
15765 * Makefile.in (setup-dirs-gdb): Renamed from setup-dirs.
15766 (gdb.tar.Z): Adjusted.
15767
15768 * Makefile.in (setup-dirs, taz): New targets; should be general
15769 enough to adapt for gdb sometime. Build only .z file.
15770 (gas.tar.z): New target.
15771
15772 Tue Mar 30 10:03:09 1993 Ian Lance Taylor (ian@cygnus.com)
15773
15774 * build-all.mk: Use CC=cc -Xs on Solaris.
15775
15776 Thu Mar 25 15:14:30 1993 Fred Fish (fnf@cygnus.com)
15777
15778 * Makefile.in: Incorporate changes suggested by wilson@cygnus.com
15779 for handling BISON for FSF releases.
15780
15781 Thu Mar 25 06:19:48 1993 Ken Raeburn (raeburn@kr-pc.cygnus.com)
15782
15783 * configure: Actually implement the change zoo just documented.
15784
15785 Wed Mar 24 13:02:44 1993 david d `zoo' zuhn (zoo at poseidon.cygnus.com)
15786
15787 * configure: when using config.guess, only set target_alias when
15788 it's not already been set (ie, on the command line)
15789
15790 Mon Mar 22 23:07:39 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15791
15792 * Makefile.in: add installcheck target, set PRMS to install-prms
15793
15794 Sun Mar 21 16:46:12 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15795
15796 * configure: add support for package_makefile_fragment, handle the
15797 case where a directory has a configure.in file but no Makefile.in
15798 more gracefully (with an actual understandable error message, even);
15799 add support for --without (and add this to the usage message); also
15800 explicitly add a --host=${host_alias} to the command line when
15801 config.guess is used
15802
15803 Sun Mar 21 12:11:58 1993 Jim Wilson (wilson@sphagnum.cygnus.com)
15804
15805 * configure: Must use both --host and --target in recursive calls.
15806
15807 Thu Mar 18 12:31:35 1993 Ian Lance Taylor (ian@cygnus.com)
15808
15809 * Makefile.in: Change deja-gnu to dejagnu.
15810
15811 Mon Mar 15 15:44:35 1993 Ian Lance Taylor (ian@cygnus.com)
15812
15813 * configure.in (h8300-*-*, h8500-*-*): Don't build libg++.
15814
15815 Fri Mar 12 18:30:14 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15816
15817 * configure.in: canonicalize all instances to *-*-solaris2*,
15818 also strip out a number of tools to not build for go32 host
15819
15820 Wed Mar 10 12:08:27 1993 K. Richard Pixley (rich@rtl.cygnus.com)
15821
15822 * config.guess: add GPL.
15823
15824 * Makefile.in, config.guess, config.sub, configure: bump
15825 copyrights to 93.
15826
15827 Wed Mar 10 07:12:48 1993 Ian Lance Taylor (ian@cygnus.com)
15828
15829 * Makefile.in (do-info): Removed obsolete check for existence of
15830 localenv file.
15831
15832 * Makefile.in (MAKEOVERRIDES): Define to be empty.
15833
15834 Wed Mar 10 03:11:56 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15835
15836 * Makefile.in: a couple of 'else true' for decstation,
15837 support for TclX
15838
15839 * configure.in: configure tclX too; don't remove Tk on RS/6000 anymore
15840
15841 Tue Mar 9 16:06:12 1993 K. Richard Pixley (rich@cygnus.com)
15842
15843 * Makefile.in (setup-dirs): change invocation of make to $(MAKE).
15844
15845 Mon Mar 8 14:52:11 1993 Ken Raeburn (raeburn@cambridge)
15846
15847 * config.guess: Recognize i386-ibm-aix (PS/2).
15848 * configure.in: Use config/mh-aix386 file for it.
15849
15850 Mon Mar 8 11:12:43 1993 Ian Lance Taylor (ian@cygnus.com)
15851
15852 * Makefile.in (GCC_FOR_TARGET): Eliminated definition; use
15853 CC_FOR_TARGET instead.
15854 (BASE_FLAGS_TO_PASS): Pass GCC_FOR_TARGET=$(CC_FOR_TARGET).
15855
15856 Wed Mar 3 16:00:28 1993 Steve Chamberlain (sac@ok.cygnus.com)
15857
15858 * Makefile.in: Add sim to list of directories sent with gdb
15859
15860 Wed Mar 3 11:42:39 1993 Ken Raeburn (raeburn@cygnus.com)
15861
15862 * configure.in: Put back mips-dec-bsd* case.
15863
15864 Tue Mar 2 21:15:58 1993 Fred Fish (fnf@cygnus.com)
15865
15866 (Ultrix 2.2 support from Michael Rendell <michael@mercury.cs.mun.ca>)
15867 * configure.in (vax-*-ultrix2*): Add Ultrix 2.2 triplet.
15868 * config.guess: Change 'VAX*:ULTRIX:*:*' to 'VAX*:ULTRIX*:*:*'.
15869
15870 Tue Mar 2 18:11:03 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15871
15872 * configure.in: remove no-op mips-dec-bsd* in "case $target"
15873
15874 * Makefile.in (dir.info): only run gen-info-dir if it exists,
15875 (install-info): install dir.info only if it exists,
15876 (all-expect, install-expect): pass along X11_FLAGS_TO_PASS
15877
15878 Tue Mar 2 09:01:30 1993 Ken Raeburn (raeburn@cygnus.com)
15879
15880 * configure.in: For vms target, skip bfd, ld, binutils. Do build
15881 gas for mips-dec-bsd.
15882
15883 Tue Mar 2 08:35:24 1993 Ian Lance Taylor (ian@cygnus.com)
15884
15885 * configure (makesrcdir): If ${srcdir} is relative and not ".",
15886 and ${subdir} is not ".", set makesrcdir based on ${invsubdir}.
15887
15888 Tue Feb 23 14:18:28 1993 Mike Werner (mtw@poseidon.cygnus.com)
15889
15890 * configure.in: Added "dejagnu" to hosttools list.
15891
15892 Mon Feb 22 23:28:38 1993 Per Bothner (bothner@rtl.cygnus.com)
15893
15894 * config.sub, configure.in, config.guess: Add support
15895 for Bosx, an AIX variant from Bull.
15896 Patches from F.Pierresteguy@frcl.bull.fr.
15897
15898 Sun Feb 21 11:15:22 1993 Mike Werner (mtw@poseidon.cygnus.com)
15899
15900 * devo/dejagnu: Initial creation of devo/dejagnu.
15901 Migrated dejagnu testcases and support files for testing software
15902 tools to reside as subdirectories, currently called "testsuite",
15903 within the directory of the software tool. Migrated all programs,
15904 support libraries, etc. beloging to dejagnu proper from
15905 devo/deja-gnu to devo/dejagnu. These files were moved "as is"
15906 with no modifications. The changes to these files which will
15907 allow them to configure, build, and execute properly will be made
15908 in a future update.
15909
15910 Fri Feb 19 20:19:39 1993 Brendan Kehoe (brendan@lisa.cygnus.com)
15911
15912 * Makefile.in: Change send_pr to send-pr.
15913 * configure.in: Likewise.
15914 * send_pr: Renamed directory to send-pr.
15915
15916 Fri Feb 19 19:00:13 1993 Per Bothner (bothner@cygnus.com)
15917
15918 * Makefile.in: Add some extra semi-colons (needed if SHELL=bash).
15919
15920 Fri Feb 19 00:59:33 1993 John Gilmore (gnu@cygnus.com)
15921
15922 * README: Update for gdb-4.8 release.
15923 * Makefile.in (gdb.tar.Z): Add texinfo/tex3patch. Build
15924 gdb-xxx.tar.z (gzip'd) file also.
15925
15926 Thu Feb 18 09:16:17 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15927
15928 * Makefile.in: make all-diff depend on all-libiberty
15929
15930 Tue Feb 16 16:06:31 1993 K. Richard Pixley (rich@cygnus.com)
15931
15932 * config.guess: add vax-ultrix in the spirit of mips-ultrix.
15933
15934 Tue Feb 16 05:57:15 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15935
15936 * configure.in, Makefile.in: add hello, tar, gzip, recode, indent
15937
15938 Tue Feb 16 00:58:20 1993 John Gilmore (gnu@cygnus.com)
15939
15940 * Makefile.in (DEVO_SUPPORT): Remove etc directory
15941 (ETC_SUPPORT): Only add the files GDB wants from etc/.
15942 (gdb.tar.Z): Use ETC_SUPPORT. Use byacc when building the file.
15943
15944 Thu Feb 11 20:14:28 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15945
15946 * Makefile.in: makeinfo binary is in a new location
15947
15948 Tue Feb 9 12:42:27 1993 Ian Lance Taylor (ian@cygnus.com)
15949
15950 * config.sub: Accept -ecoff as an OS.
15951
15952 * Makefile.in: Various changes to eliminate a level of make
15953 recursion and reduce the required command line length.
15954 (BASE_FLAGS_TO_PASS): New variable holding flags passed to all
15955 sub-makes.
15956 (EXTRA_HOST_FLAGS, EXTRA_TARGET_FLAGS, EXTRA_GCC_FLAGS): New
15957 variables holding settings for specific sub-makes.
15958 (FLAGS_TO_PASS, TARGET_FLAGS_TO_PASS, GCC_FLAGS_TO_PASS): Rewrote
15959 in terms of BASE_FLAGS_TO_PASS.
15960 (TARGET_LIBS): New variable listing directories which use
15961 TARGET_FLAGS_TO_PASS.
15962 (subdir_do): Eliminated.
15963 (do-*): New set of targets to replace subdir_do.
15964 (various): All targets which used subdir_do now depend on do-*.
15965 (local-clean): Renamed from do_clean.
15966 (local-distclean): New target, dependency of distclean and
15967 realclean.
15968 (install-info): Don't create directories. Depend on dir.info
15969 rather than calling make recursively.
15970 (install-dir.info): Eliminated.
15971 (install-info-dirs): Create all info directories here.
15972 (dir.info): Depend upon do-install-info.
15973
15974 * test-build.mk (HOLES): Added false.
15975
15976 Sat Feb 6 14:05:09 1993 Per Bothner (bothner@rtl.cygnus.com)
15977
15978 * config.guess: Recognize BSDI and BSDJ (Jolitz 386bsd).
15979
15980 Thu Feb 4 20:49:18 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15981
15982 * Makefile.in (info): remove dependency on all-texinfo. The
15983 problem was really in texinfo/C, not at this level.
15984
15985 Thu Feb 4 13:38:41 1993 Ian Lance Taylor (ian@cygnus.com)
15986
15987 * Makefile.in (info): Added dependency on all-texinfo (PR 2112).
15988
15989 Thu Feb 4 01:50:53 1993 John Gilmore (gnu@cygnus.com)
15990
15991 * Makefile.in (make-gdb.tar.Z): Change BISON to 'bison -y' for
15992 GDB releases.
15993
15994 Wed Feb 3 17:22:16 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15995
15996 * configure: Include srcdir in message about target of link not
15997 being found. Don't convert `-' to `_' in `with' options being
15998 passed to subdirs.
15999
16000 Tue Feb 2 18:57:59 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16001
16002 * configure.in: add uudecode to host_tools
16003
16004 * Makefile.in: added {all,install}-uudecode targets, added them to
16005 the appropriate lists
16006
16007 Tue Feb 2 11:45:53 1993 Ian Lance Taylor (ian@cygnus.com)
16008
16009 * Makefile.in (all-gcc): Added dependency on all-gas.
16010
16011 * configure.in (mips-*-*): Build ld and binutils.
16012
16013 Mon Feb 1 12:35:41 1993 K. Richard Pixley (rich@rtl.cygnus.com)
16014
16015 * configure: check return code from mkdir, print error message and
16016 exit on failure.
16017
16018 Sat Jan 30 16:40:28 1993 John Gilmore (gnu@cygnus.com)
16019
16020 * Makefile.in (make-gdb.tar.Z): New location for texinfo.tex.
16021
16022 Thu Jan 28 15:09:59 1993 Ian Lance Taylor (ian@cygnus.com)
16023
16024 * test-build.mk (HOLES): Added tar, cpio and uudecode.
16025
16026 Wed Jan 27 16:50:32 1993 Jim Wilson (wilson@sphagnum.cygnus.com)
16027
16028 * config.sub (h8500): Recognize this as a cpu type.
16029
16030 Sat Jan 23 20:32:01 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16031
16032 * configure: source directory missing is no longer a warning
16033
16034 * configure.in: recognize irix[34]* instead of irix[34]
16035
16036 * Makefile.in: define and pass down X11_LIB
16037
16038 Sat Jan 23 13:49:40 1993 Per Bothner (bothner@cygnus.com)
16039
16040 * guess-systype: Renamed to ...
16041 * config.guess: ... by popular request.
16042 * configure.in, Makefile.in: Update accordingly.
16043
16044 Thu Jan 21 12:20:55 1993 Per Bothner (bothner@cygnus.com)
16045
16046 * guess-systype: Patches from John Eaton <jwe@che.utexas.edu>:
16047 + Add Convex, Cray/Unicos, and Encore/Multimax support.
16048 + Execute ./dummy instead of assuming . is in PATH.
16049
16050 Tue Jan 19 17:18:06 1993 Per Bothner (bothner@cygnus.com)
16051
16052 * guess-systype: New shell script. Attempts to guess the
16053 canonical host name of the executing host.
16054 Only a few hosts are supported so far.
16055 * configure: Call guess-systype if no host is specified.
16056
16057 Tue Jan 19 08:26:07 1993 Ian Lance Taylor (ian@cygnus.com)
16058
16059 * Makefile.in (gcc-no-fixedincludes): Made to work with current
16060 gcc Makefile.
16061
16062
16063 Fri Jan 15 10:27:02 1993 Ian Lance Taylor (ian@cygnus.com)
16064
16065 * Makefile.in (GCC_FLAGS_TO_PASS): New variable.
16066 (all-gcc, install-gcc, subdir_do): Use it.
16067
16068 Wed Jan 13 17:06:45 1993 Jim Wilson (wilson@sphagnum.cygnus.com)
16069
16070 * Makefile.in: Rename uninstalled gcc driver from gcc to xgcc.
16071
16072 Wed Jan 6 20:29:16 1993 Mike Werner (mtw@rtl.cygnus.com)
16073
16074 * Makefile.in: Removed explicit setting of SUBDIRS. SUBDIRS is now
16075 set exclusively by configure, using configure.in .
16076
16077 Wed Jan 6 13:44:11 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16078
16079 * test-build.mk: set $PATH for all builds
16080
16081 * Makefile.in: pass TARGET_FLAGS_TO_PASS for xiberty and libm
16082
16083 Wed Jan 6 11:02:10 1993 Fred Fish (fnf@cygnus.com)
16084
16085 * Makefile.in (GCC_FOR_TARGET): Supply a default that matches
16086 the one used in gcc/Makefile.in, so that a null expansion doesn't
16087 override the one needed to build gcc with a native cc.
16088
16089
16090 Tue Jan 5 07:55:12 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
16091
16092 * configure: Accept -with arguments.
16093
16094 Sun Jan 3 15:15:09 1993 Steve Chamberlain (sac@thepub.cygnus.com)
16095
16096 * Makefile.in: added h8300sim
16097
16098 Tue Dec 29 15:06:00 1992 Ian Lance Taylor (ian@cygnus.com)
16099
16100 * build-all.mk: If canonhost is i386-unknown-sco3.2v4, change it
16101 to i386-sco3.2v4. Set TARGETS and CFLAGS for i386-sco3.2v4.
16102 (all-cygnus, native, build-cygnus): Make
16103 $(canonhost)-stamp-3stage-done, not $(host)....
16104 * test-build.mk (stamp-3stage-compared): Use tail +10c for
16105 i386-sco3.2v4. Added else true to if command.
16106
16107 Mon Dec 28 12:08:56 1992 Ken Raeburn (raeburn@cygnus.com)
16108
16109 * config.sub: (from FSF) Sequent uses a BSD-like OS.
16110
16111 Mon Dec 28 08:32:06 1992 Minh Tran-Le (mtranle@paris.intellicorp.com)
16112
16113 * configure.in (i[34]86-*-isc*): added; uses mh-sysv.
16114
16115 Thu Dec 24 17:26:24 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16116
16117 * configure.in: don't remove binutils from Solaris builds
16118
16119 Thu Dec 24 14:08:38 1992 david d`zoo' zuhn (zoo@cygnus.com)
16120
16121 * Makefile.in: get rid of earlier definitions for *clean,
16122 also handle the recursive info rule better
16123
16124 Thu Dec 24 12:40:21 1992 Per Bothner (bothner@rtl.cygnus.com)
16125
16126 * Makefile.in (mostlyclean, distclean, realclean): Fix to
16127 do more-or-less the right thing.
16128
16129 Wed Dec 16 10:25:31 1992 Ian Lance Taylor (ian@cygnus.com)
16130
16131 * Makefile.in: Add lines defining CC and CXX, and use CXX rather
16132 than gcc in definitions of CXX_FOR_BUILD and CXX_FOR_TARGET.
16133
16134 Tue Dec 15 00:34:32 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16135
16136 * Makefile.in: change all $(host_cpu)-$(host_vendor)-$(host_os) to
16137 $(host_canonical).
16138
16139 * configure.in: split the configdirs list into 4 categories (native
16140 v. cross, library v. tool) and handle the cross-only and native-
16141 only in more reasonable (and correct!) way.
16142
16143 Mon Dec 14 17:04:22 1992 Stu Grossman (grossman at cygnus.com)
16144
16145 * configure.in (hppa*-*-*): Don't remove bfd and gdb from
16146 configdirs anymore.
16147
16148 Sun Dec 13 00:37:26 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16149
16150 * Makefile.in: extensive cleanup:: removed all of the explicit
16151 clean-* targets, collapsed many wrappers around subdir_do into
16152 one, added additional targets to satisfy standards.texi, deleted
16153 some old targets, some changes for consistency
16154
16155 Fri Dec 11 20:18:02 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16156
16157 * configure.in: handle some programs as cross-only, and others as
16158 native only
16159
16160 * test-build.mk: handle partial holes in a more generic manner
16161
16162 * Makefile.in: m4 depends on libiberty
16163
16164 Thu Dec 3 21:52:11 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16165
16166 * configure.in: add m4, textutils, fileutils, sed, shellutils,
16167 time, wdiff, and find to configdirs
16168
16169 * Makefile.in: all, clean, and install rules for the new programs
16170 added to configure.in
16171
16172 Mon Nov 30 14:54:34 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16173
16174 * configure.in: use mh-sun for all *-sun-* hosts
16175
16176 Fri Nov 27 18:35:54 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16177
16178 * Makefile.in: define flags for X11 include files and library file
16179 locations, pass them down to the programs that need this info
16180
16181 * build-all.mk: added a 'native' target, to 3stage the native toolchain
16182
16183 Sun Nov 22 18:59:13 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16184
16185 * configure.in: start building libg++ for HP-UX targets
16186
16187 Wed Nov 18 19:33:11 1992 John Gilmore (gnu@cygnus.com)
16188
16189 * README: Update references to files moved into etc/.
16190
16191 Sun Nov 15 09:36:08 1992 Fred Fish (fnf@cygnus.com)
16192
16193 * config.sub (i386sol2, i486sol2): i[34]86-unknown-solaris2.
16194 * configure.in (i[34]86-*-solaris2*): Use config/mh-sysv4.
16195
16196 Thu Nov 12 08:50:42 1992 Ian Lance Taylor (ian@cygnus.com)
16197
16198 * configure: accept dash as well as underscore in long option
16199 names for FSF compatibility.
16200
16201 Wed Nov 11 08:04:37 1992 Ian Lance Taylor (ian@cygnus.com)
16202
16203 * config.sub: added -sco3.2v4 support from FSF.
16204
16205 Sun Nov 8 21:14:30 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16206
16207 * configure.in: expand the section that adds or removes
16208 directories from the list of programs to build, to handle native
16209 vs. cross in addition to host v. native
16210
16211 Sat Nov 7 18:52:27 1992 Per Bothner (bothner@rtl.cygnus.com)
16212
16213 * Makefile.in: Replace C++ in macro names with CXX.
16214 This is less likely to break ...
16215
16216 Sat Nov 7 15:16:58 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16217
16218 * test-build.mk: add -w to GNU_MAKE
16219
16220 Fri Nov 6 23:10:37 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16221
16222 * config.sub: remove 'sparc'-->'sparc-sun' default transformation,
16223 add 'sparc' to list of recognized cpus. This needed to make
16224 'sparc-aout' expand to 'sparc-unknown-aout' instead of 'sparc-sun-aout'.
16225 Delete some redundant ose68 variants. Recognize -wrs as an os,
16226 then changes that into $CPU-wrs-vxworks.
16227
16228 * configure.in: remove most references to gdbtest, regularize
16229 target based program removal
16230
16231 * test-build.mk: import from p3 tree (many fixes and changes)
16232
16233 Fri Nov 6 20:59:00 1992 david d `zoo' zuhn (zoo@cygnus.com)
16234
16235 * Makefile.in: added rules to handle tcl, tk, and expect
16236
16237 * configure.in: handle those directories if they exist
16238
16239 Thu Nov 5 14:35:41 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16240
16241 * config.sub: removed bogus hppabsd and hppahpux names, since
16242 "hppa" is not a valid cpu (hppa1.1 or hppa1.0 are, though)
16243
16244 Thu Oct 29 00:12:41 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16245
16246 * Makefile.in: all-gcc now depends on all-binutils. all-libg++
16247 depends upon all-xiberty
16248
16249 * Makefile.in: changes from p3, including:
16250
16251 Thu Oct 8 15:00:17 1992 Ian Lance Taylor (ian@cygnus.com)
16252
16253 * Makefile.in (XTRAFLAGS): include newlib directories if
16254 newlib/Makefile exists, rather than if host != target.
16255
16256 Fri Sep 25 13:41:52 1992 Ian Lance Taylor (ian@cygnus.com)
16257
16258 * Makefile.in: added -nostdinc to XTRAFLAGS if we are using gcc
16259 from the same source tree and not building a cross-compiler. This
16260 matters for the libg++ configuration if reconfiguring a tree that
16261 has already been installed.
16262
16263 Thu Sep 10 10:35:51 1992 Ian Lance Taylor (ian@cygnus.com)
16264
16265 * Makefile.in: added -I for newlib/targ-include to XTRAFLAGS, to
16266 pick up the machine and system specific header files.
16267
16268 * Makefile.in: added AS_FOR_TARGET, passed down in
16269 TARGET_FLAGS_TO_PASS. Added CC_FOR_BUILD, which is intended to be
16270 the C compiler to use to create programs which are run in the
16271 build environment, set it to default to $(CC), and passed it down
16272 in FLAGS_TO_PASS and TARGET_FLAGS_TO_PASS.
16273
16274 Mon Sep 7 22:34:42 1992 Ian Lance Taylor (ian@cirdan.cygnus.com)
16275
16276 * Makefile.in: add $(host) = $(target) tests back to *_FOR_TARGET.
16277 We need them for unusual native builds, like systems without
16278 ranlib.
16279
16280 * configure: also define $(host_canonical) and
16281 $(target_canonical), which are the full, canonical names for the
16282 given host and target
16283
16284 Sun Nov 1 16:38:17 1992 Per Bothner (bothner@cygnus.com)
16285
16286 * Makefile.in: Added separate definitions for C++.
16287
16288 Fri Oct 30 11:37:52 1992 Fred Fish (fnf@cygnus.com)
16289
16290 * configure.in (configdirs): Add deja-gnu.
16291
16292 Fri Oct 23 00:39:18 1992 John Gilmore (gnu@cygnus.com)
16293
16294 * README: Update for configure.texi and gdb-4.7 release.
16295
16296 Wed Oct 21 21:54:27 1992 John Gilmore (gnu@cygnus.com)
16297
16298 * Makefile.in: Move "all" target to top of file.
16299 Previously, first target was ".PHONY" which caused BSD4.4 make
16300 to build .PHONY when make was run without arguments.
16301
16302 Mon Oct 19 01:17:54 1992 John Gilmore (gnu@cygnus.com)
16303
16304 * Makefile.in: Add COPYING.LIB to GDB releases, now that there's
16305 Library-copylefted code in libiberty.
16306
16307 Tue Oct 13 01:22:32 1992 John Gilmore (gnu@cygnus.com)
16308
16309 * config.sub: Replace m68kmote with plain old m68k.
16310
16311 Fri Oct 9 03:14:24 1992 John Gilmore (gnu@cygnus.com)
16312
16313 * Makefile.in: Remove space from blank line, avoid Make complaints.
16314
16315 Thu Oct 8 18:41:45 1992 Ken Raeburn (raeburn@cygnus.com)
16316
16317 * config.sub: Complain if no argument is given. Added support for
16318 386bsd as OS and target alias.
16319
16320 Thu Oct 8 15:07:22 1992 Ian Lance Taylor (ian@cygnus.com)
16321
16322 * Makefile.in (XTRAFLAGS): include newlib directories if
16323 newlib/Makefile exists, rather than if host != target.
16324
16325 Mon Oct 5 03:00:09 1992 Mark Eichin (eichin at tweedledumber.cygnus.com)
16326
16327 * config.sub: recognize sparclite-wrs-vxworks.
16328
16329 * Makefile.in (install-xiberty): added *-xiberty make rules (from
16330 p3.) Added clean-xiberty to clean.
16331
16332 Thu Oct 1 17:59:19 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16333
16334 * configure.in: use *-*-* instead of nested cases for host and target
16335
16336 Tue Sep 29 14:11:18 1992 Ian Lance Taylor (ian@cygnus.com)
16337
16338 * Makefile.in: added -nostdinc to XTRAFLAGS if we are using gcc
16339 from the same source tree and not building a cross-compiler. This
16340 matters for the libg++ configuration if reconfiguring a tree that
16341 has already been installed.
16342
16343 Sep 20 08:53:10 1992 Fred Fish (fnf@cygnus.com)
16344
16345 * config.sub (i486v/i486v4): Merge in from FSF version.
16346
16347 Fri Sep 18 00:32:00 1992 Mark Eichin (eichin@cygnus.com)
16348
16349 * configure: only set PWD if it is already set.
16350
16351 Thu Sep 17 23:05:53 1992 Mark Eichin (eichin@cygnus.com)
16352
16353 * configure: just set PWD=`pwd` at the top, since Ultrix sh
16354 doesn't have unset and all success paths (and most error paths)
16355 out set it anyway. (Note: should change all uses of ${PWD=`pwd`}
16356 to just ${PWD} to avoid confusion.)
16357
16358 Tue Sep 15 16:00:54 1992 Ian Lance Taylor (ian@cygnus.com)
16359
16360 * configure: always set $(tooldir) to $(libdir)/$(target_alias),
16361 even for a native compilation.
16362
16363 Tue Sep 15 02:22:56 1992 John Gilmore (gnu@cygnus.com)
16364
16365 Changes to make the gdb.tar.Z rule work better.
16366
16367 * Makefile.in (GDB_SUPPORT_DIRS): Add opcodes.
16368 (DEVO_SUPPORT): Add configure.texi.
16369 (bfd-ilrt.tar.Z): Remove ancient rule.
16370
16371 Thu Sep 10 10:43:19 1992 Ian Lance Taylor (ian@cygnus.com)
16372
16373 * Makefile.in: added -I for newlib/targ-include to XTRAFLAGS, to
16374 pick up the machine and system specific header files.
16375
16376 * configure.in, config.sub: added new target m68010-adobe-scout,
16377 with alias of adobe68k. Changed configure.in to check for
16378 -scout before -sco* to avoid a false match.
16379
16380 * Makefile.in: added AS_FOR_TARGET, passed down in
16381 TARGET_FLAGS_TO_PASS. Added CC_FOR_BUILD, which is intended to be
16382 the C compiler to use to create programs which are run in the
16383 build environment, set it to default to $(CC), and passed it down
16384 in FLAGS_TO_PASS and TARGET_FLAGS_TO_PASS.
16385
16386 Wed Sep 9 12:21:42 1992 Ian Lance Taylor (ian@cygnus.com)
16387
16388 * Makefile.in: added TARGET_FLAGS_TO_PASS, CC_FOR_TARGET,
16389 AR_FOR_TARGET, RANLIB_FOR_TARGET, NM_FOR_TARGET. Pass
16390 TARGET_FLAGS_TO_PASS, which defines CC, AR, RANLIB and NM as the
16391 FOR_TARGET variants, to newlib and libg++.
16392
16393 Tue Sep 8 17:28:30 1992 Ken Raeburn (raeburn@cambridge.cygnus.com)
16394
16395 * Makefile.in (all-gas, all-gdb): Require all-opcodes to be built
16396 first.
16397
16398 Wed Sep 2 02:50:05 1992 John Gilmore (gnu@cygnus.com)
16399
16400 * config.sub: Accept `elf' as an environment.
16401
16402 Tue Sep 1 15:48:30 1992 Steve Chamberlain (sac@thepub.cygnus.com)
16403
16404 * Makefile.in (all-opcodes): cd into the right directory
16405
16406 Sun Aug 30 21:12:11 1992 Ian Lance Taylor (ian@cygnus.com)
16407
16408 * configure: added -program_transform_name option, used as
16409 argument to sed when installing programs.
16410 configure.texi: added documentation for -program_prefix,
16411 -program_suffix and -program_transform_name.
16412
16413 Thu Aug 27 21:59:44 1992 John Gilmore (gnu@cygnus.com)
16414
16415 * config.sub: Accept i486 where i386 ok.
16416
16417 Thu Aug 27 13:04:42 1992 Brendan Kehoe (brendan@rtl.cygnus.com)
16418
16419 * config.sub: accept we32k
16420
16421 Mon Aug 24 14:05:14 1992 Ian Lance Taylor (ian@cygnus.com)
16422
16423 * config.sub, configure.in: accept OSE68000 and OSE68k.
16424
16425 * Makefile.in: don't create all directories for ``make install'';
16426 let the subdirectories create the ones they need.
16427
16428 Tue Aug 11 23:13:17 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16429
16430 * COPYING: new file, GPL v2
16431
16432 Tue Aug 4 01:12:43 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16433
16434 * Makefile.in: use the new gen-info-dir, which needs a template
16435 argument (which also lives in texinfo)
16436
16437 * configure.texi, standards.texi: fix INFO-DIR-ENTRY
16438
16439 Mon Aug 3 00:34:17 1992 Fred Fish (fnf@cygnus.com)
16440
16441 * config.sub (ncr3000): Change i386 to i486.
16442
16443 Thu Jul 23 00:12:17 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16444
16445 * Makefile.in: add install-rcs, install-grep to
16446 install-no-fixedincludes, removed install-bison and install-libgcc
16447
16448 Tue Jul 21 01:01:50 1992 david d `zoo' zuhn (zoo@cygnus.com)
16449
16450 * configure.in: grab the HPUX makefile fragment if on HPUX
16451
16452 Mon Jul 20 11:02:09 1992 D. V. Henkel-Wallace (gumby@cygnus.com)
16453
16454 * Makefile.in: eradicate bison spoor (ditto libgcc).
16455 configure.in: recognise m68{k,000}-ericsson-OSE.
16456 es1800 is alias for m68k-ericsson-OSE
16457
16458 Sun Jul 19 17:49:02 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16459
16460 * configure.in: rearrange the parts that remove programs from
16461 configdirs, based now on HOST==TARGET or by canonical triple.
16462
16463 Fri Jul 17 22:52:49 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16464
16465 * test-build.mk: recurse explicitly with -f test-build.mk when
16466 appropriate. predicate stage3 and comparison on the existence
16467 of gcc. That is, if gcc isn't around, we aren't three-staging.
16468 On very clean, also remove ...stamp-co. Build in-place before
16469 doing other builds.
16470
16471 Thu Jul 16 18:33:09 1992 Steve Chamberlain (sac@thepub.cygnus.com)
16472
16473 * Makefile.in, configure.in: add tgas
16474
16475 Thu Jul 16 16:05:28 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16476
16477 * Makefile.in: a number of changes merged in from progressive.
16478
16479 * configure.in: add libm.
16480
16481 * .cvsignore: ignore some stuff that comes from test-build.mk.
16482
16483 Tue Jul 7 00:24:52 1992 Fred Fish (fnf@cygnus.com)
16484
16485 * config.sub: Add es1800 (m68k-ericsson-es1800).
16486
16487 Tue Jun 30 20:24:41 1992 D. V. Henkel-Wallace (gumby@cygnus.com)
16488
16489 * configure: Add program_suffix (parallel to program_prefix)
16490 * Makefile.in: adjust directory-creating script for losing decstation
16491
16492 Mon Jun 22 23:43:48 1992 Per Bothner (bothner@cygnus.com)
16493
16494 * configure: Minor $subdir-related fixes.
16495
16496 Mon Jun 22 18:30:26 1992 Steve Chamberlain (sac@thepub.cygnus.com)
16497
16498 * configure: fix various problems with propogating
16499 makefile_target_frag in subdirs.
16500 * configure.in: config libgcc if its there
16501
16502 Fri Jun 19 15:19:40 1992 Stu Grossman (grossman at cygnus.com)
16503
16504 * config.sub: HPPA merge.
16505
16506 Sun Jun 14 10:29:19 1992 John Gilmore (gnu at cygnus.com)
16507
16508 * Makefile.in: Replace all-bison with all-byacc in all
16509 dependency lines for other tools (which now use byacc).
16510
16511 Fri Jun 12 22:21:57 1992 John Gilmore (gnu at cygnus.com)
16512
16513 * config.sub: Add sun4sol2 => sparc-sun-solaris2.
16514
16515 Thu Jun 4 12:07:32 1992 Mark Eichin (eichin@cygnus.com)
16516
16517 * Makefile.in: make gprof rules similar to byacc rules (instead of
16518 vestigal $(unsubdir) that didn't work...)
16519
16520 Thu Jun 4 00:37:05 1992 Per Bothner (bothner@rtl.cygnus.com)
16521
16522 * config.sub: Add support for Linux.
16523 * Makefile.in: Use $(FLAGS_TO_PASS) more consistently
16524 (at least for libg++).
16525
16526 Tue Jun 02 20:03:00 1992 david d `zoo' zuhn (zoo@cygnus.com)
16527
16528 * configure.texi: fix doc for the -nfp option to configure
16529
16530 Tue Jun 2 17:20:52 1992 Michael Tiemann (tiemann@cygnus.com)
16531
16532 * Makefile.in (all-binutils): ar needs flex, so depend on all-flex.
16533
16534 Sun May 31 15:04:08 1992 Mark Eichin (eichin at cygnus.com)
16535
16536 * config.sub: changed [^-]+ to [^-][^-]* so that it works under
16537 Sun sed. (BSD 4.3 sed doesn't handle [^-]+ either.)
16538 * configure.in: added solaris* host_makefile_frag hook.
16539
16540 Sun May 31 01:10:34 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16541
16542 * config.sub: changed recognition of m68000 so that various
16543 m68k types can be specified via m680[01234]0
16544
16545 Sat May 30 21:01:06 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16546
16547 * config.sub (basic_machine): fix sed so that '-foo' isn't
16548 completely substituted out while .+'-foo' loses the '-foo'
16549
16550 Wed May 27 23:18:52 1992 Michael Tiemann (tiemann@rtl.cygnus.com)
16551
16552 * config.sub ($os): Add -aout.
16553
16554 Fri May 22 14:00:02 1992 Per Bothner (bothner@cygnus.com)
16555
16556 * configure: If host_makefile_frag is absolute, don't
16557 prefix ${invsubdir} (relevant to libg++ auto-configure).
16558
16559 Thu May 21 18:00:09 1992 Michael Tiemann (tiemann@rtl.cygnus.com)
16560
16561 * Makefile.in (tooldir): Define it.
16562 (all-ld): Depend on all-flex.
16563
16564 Sun May 10 21:45:59 1992 Per Bothner (bothner@rtl.cygnus.com)
16565
16566 * Makefile.in (check): Fix libg++ special case.
16567
16568 Fri May 8 08:31:41 1992 K. Richard Pixley (rich@cygnus.com)
16569
16570 * configure: do not bury `pwd` into config.status, thus do fewer
16571 pwd's.
16572
16573 * configure: print the "Building in" message only when building in
16574 other than "." AND verbose.
16575
16576 * configure: remove -s, rework -v to better accomodate guested
16577 configures.
16578
16579 * standards.texi: updated to 3 may, fixed librid <-> libdir typo.
16580
16581 Fri May 1 18:00:50 1992 K. Richard Pixley (rich@cygnus.com)
16582
16583 * Makefile.in: macroize flags passed on recursion. remove
16584 fileutils.
16585
16586 Thu Apr 30 08:56:20 1992 K. Richard Pixley (rich@cygnus.com)
16587
16588 * configure: get makesrcdir right for subdirs deeper than 1.
16589
16590 * Makefile.in: pass INSTALL, INSTALL_DATA, INSTALL_PROGRAM on
16591 install.
16592
16593 Fri Apr 24 15:51:51 1992 K. Richard Pixley (rich@cygnus.com)
16594
16595 * Makefile.in: don't print subdir_do or recursion lines.
16596
16597 Fri Apr 24 15:22:04 1992 K. Richard Pixley (rich@cygnus.com)
16598
16599 * standards.texi: added menu item.
16600
16601 * Makefile.in: build and install standards.info.
16602
16603 * standards.texi: new file.
16604
16605 Wed Apr 22 18:06:55 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16606
16607 * configure: test for and move config.status pieces from
16608 ${subdir}/.
16609
16610 Wed Apr 22 14:38:34 1992 Fred Fish (fnf@cygnus.com)
16611
16612 * configure: Test for existance of files before trying to mv
16613 them, to avoid numerous non-existance messages.
16614
16615 Tue Apr 21 12:31:33 1992 K. Richard Pixley (rich@cygnus.com)
16616
16617 * configure: correct final line of config.status.
16618
16619 * configure: patch from eggert. Avoids a protection problem if
16620 the original Makefile.in is read only.
16621
16622 * configure: use move-if-change from gcc to create config.status.
16623 Some makefiles depend on config.status to tell if a directory
16624 has been reconfigured for a different host. This change
16625 prevents those directories from remaking everything in the case
16626 where the reconfig was only intended to rebuild a Makefile.
16627
16628 * configure: test for config.sub with "config.sub sun4" rather
16629 than "config.sub ${host_alias}". Otherwise we can't tell a bad
16630 host alias from a missing config.sub.
16631
16632 Mon Apr 20 18:16:36 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16633
16634 * Makefile.in: explicitly pass CFLAGS on recursion. no longer pass
16635 MINUS_G (this can be done with CFLAGS). Default CFLAGS to -g.
16636
16637 Fri Apr 17 18:27:51 1992 Per Bothner (bothner@cygnus.com)
16638
16639 * configure: mkdir ${subdir} as needed.
16640
16641 Wed Apr 15 17:37:22 1992 K. Richard Pixley (rich@cygnus.com)
16642
16643 * Makefile.in,configure.in: added autoconf.
16644
16645 Wed Apr 15 17:27:34 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16646
16647 * Makefile.in: no longer pass against on recursion.
16648
16649 * Makefile.in: added .NOEXPORT: so that stray makefile_frag
16650 definitions are not inherited.
16651
16652 * configure: correct makesrcdir when subdir is .
16653
16654 Tue Apr 14 11:56:09 1992 Per Bothner (bothner@cygnus.com)
16655
16656 * configure: Add support for 'subdirs' variable, which is
16657 like 'configdirs', except that configure doesn't re-invoke
16658 itself for subdirs, it just creates a Makefile for each subdir.
16659 * configure.texi: Document subdirs.
16660
16661 Mon Apr 13 18:50:16 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16662
16663 * configure.in: added flex to configdirs
16664
16665 Mon Apr 13 18:43:55 1992 K. Richard Pixley (rich@cygnus.com)
16666
16667 * Makefile.in: remove clean-stamps from clean.
16668
16669 Sat Apr 11 03:52:03 1992 John Gilmore (gnu at cygnus.com)
16670
16671 * configure.in: Add gdbtest to configdirs.
16672
16673 Fri Apr 10 23:11:49 1992 Fred Fish (fnf@cygnus.com)
16674
16675 * Makefile.in (MINUS_G): Add macro, default to -g, pass on
16676 to recursive makes.
16677 * configure.in: Recognize new ncr3000 config.
16678
16679 Wed Apr 8 23:08:12 1992 K. Richard Pixley (rich@cygnus.com)
16680
16681 * Makefile.in, configure.in: removed references to gdbm.
16682
16683 Tue Apr 7 16:48:20 1992 Per Bothner (bothner@cygnus.com)
16684
16685 * config.sub: Don't canonicalize os value
16686 newsos* to bsd (readline needs to check for newsos).
16687 (This fix was earlier made Jan 31, but got re-broken.)
16688
16689 Mon Apr 6 14:34:08 1992 Stu Grossman (grossman at cygnus.com)
16690
16691 * configure.in: sco is an os, not a vendor!
16692
16693 * configure: Quote $( better. Keep various shells happy.
16694
16695 Tue Mar 31 16:32:57 1992 K. Richard Pixley (rich@cygnus.com)
16696
16697 * Makefile.in: eliminate stamp-files.
16698
16699 Mon Mar 30 22:20:23 1992 K. Richard Pixley (rich@cygnus.com)
16700
16701 * Makefile.in: add send_pr. remove "force" from .stmp-gprof rule.
16702 Supress echoing of all the "if [ -d ... $(MAKE)" lines.
16703
16704 Wed Mar 25 15:20:04 1992 Stu Grossman (grossman@cygnus.com)
16705
16706 * config.sub: fix iris/iris3.
16707
16708 Wed Mar 25 10:34:19 1992 K. Richard Pixley (rich@cygnus.com)
16709
16710 * configure: re-add -rm.
16711
16712 Tue Mar 24 23:50:16 1992 K. Richard Pixley (rich@cygnus.com)
16713
16714 * Maskefile.in: add .stmp-rcs to all.
16715
16716 * configure.in: remove gas from rs6000 build, use aix host fragment.
16717
16718 Mon Mar 23 19:43:35 1992 K. Richard Pixley (rich@cygnus.com)
16719
16720 * configure: pass down site_option during recursion.
16721
16722 Thu Mar 19 16:49:36 1992 Stu Grossman (grossman at cygnus.com)
16723
16724 * Makefile.in (all.cross): Add .stmp-bfd .stmp-readline.
16725
16726 Wed Mar 18 15:29:33 1992 Mike Stump (mrs@cygnus.com)
16727
16728 * configure: Change exec_prefix so that it really defaults to prefix.
16729
16730 Sat Mar 14 17:20:38 1992 Fred Fish (fnf@cygnus.com)
16731
16732 * Makefile.in, configure.in: Add support for mmalloc library.
16733
16734 Fri Mar 13 18:44:18 1992 K. Richard Pixley (rich@cygnus.com)
16735
16736 * Makefile.in: add stmp dependencies for a few more things.
16737
16738 Thu Mar 12 04:56:24 1992 K. Richard Pixley (rich@cygnus.com)
16739
16740 * configure: adjusted error message on objdir/srcdir configure
16741 collision, per john's suggestion.
16742
16743 * Makefile.in: add libiberty stmp to all and all.cross.
16744
16745 Wed Mar 11 02:07:52 1992 K. Richard Pixley (rich@cygnus.com)
16746
16747 * Makefile.in: remove force dependencies, add grep to all.
16748
16749 Tue Mar 10 21:49:18 1992 K. Richard Pixley (rich@mars.cygnus.com)
16750
16751 * Makefile.in: drop flex. make stamp files work.
16752
16753 * configure: added test for conflicting configuration in srcdir,
16754 remove trailing slashes from srcdir. Otherwise emacs gdb mode
16755 gets cranky. use relative paths for configure and srcdir
16756 whenever possible. Send some error messages to stderr that were
16757 going to stdout.
16758
16759 Tue Mar 10 18:01:55 1992 Per Bothner (bothner@cygnus.com)
16760
16761 * Makefile.in: Fix libg++ rule to check for gcc directory
16762 before using gcc/gcc. Also pass XTRAFLAGS.
16763
16764 Thu Mar 5 21:45:07 1992 K. Richard Pixley (rich@sendai)
16765
16766 * Makefile.in: added stmp-files so that directories aren't polled
16767 when they are already built.
16768
16769 * configure.texi: fixed a node pointer problem.
16770
16771 Thu Mar 5 12:05:58 1992 Stu Grossman (grossman at cygnus.com)
16772
16773 * config.sub configure.in gdb/configure.in
16774 gdb/mips-tdep.c gdb/mipsread.c gdb/procfs.c gdb/signame.h
16775 gdb/tm-irix3.h gdb/tm-mips.h gdb/xm-irix4.h gdb/config/mt-irix3
16776 gdb/config/mh-irix4 texinfo/configure.in: Port to SGI Irix-4.x.
16777
16778 Wed Mar 4 02:57:46 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16779
16780 * configure: -recurring becomes -silent. corrected help message
16781 for -site= option.
16782
16783 * Makefile.in: mkdir $(exec_prefix) and $(tooldir).
16784
16785 Tue Mar 3 14:51:21 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16786
16787 * configure: when building Makefile for crosses, replace
16788 tooldir and program_prefix. default srcdir from location of
16789 config.sub. remove "for host in hosts" and "for target in
16790 targets" loops.
16791
16792 Wed Feb 26 19:48:25 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16793
16794 * Makefile.in: Do not pass bindir or mandir to cvs.
16795
16796 Wed Feb 26 18:04:40 1992 K. Richard Pixley (rich@cygnus.com)
16797
16798 * Makefile.in, configure.in: removed traces of namesubdir,
16799 -subdirs, $(subdir), $(unsubdir), some rcs triggers. Forced
16800 copyrights to '92, changed some from Cygnus to FSF.
16801
16802 * configure.texi: remove most references to multiple hosts,
16803 multiple targets, subdirs, etc.
16804
16805 * configure.man: removed rcsid. reference config.sub not
16806 config.subr.
16807
16808 * Makefile.in: mkdir $(infodir) on install-info.
16809
16810 Wed Feb 19 15:41:13 1992 John Gilmore (gnu at cygnus.com)
16811
16812 * configure.texi: Explain better about .gdbinit and about
16813 the environment that configure.in sections run in.
16814
16815 Fri Feb 7 07:55:00 1992 John Gilmore (gnu at cygnus.com)
16816
16817 * configure.in: Ultrix is only a decstation if it's a MIPS.
16818
16819 Fri Jan 31 21:54:51 1992 John Gilmore (gnu at cygnus.com)
16820
16821 * README: DOC.configure => cfg-paper.texi.
16822
16823 Fri Jan 31 21:48:18 1992 Stu Grossman (grossman at cygnus.com)
16824
16825 * config.sub (near case $os): Don't convert newsos* to bsd!
16826
16827 Fri Jan 31 02:27:32 1992 John Gilmore (gnu at cygnus.com)
16828
16829 * Makefile.in: Reinstall change from gdb-4.3 that reduces
16830 the number of copies of COPYING that go into the GDB tar file.
16831
16832 Thu Jan 30 16:17:30 1992 Stu Grossman (grossman at cygnus.com)
16833
16834 * bfd/configure.in, gdb/config/mh-i386sco,
16835 gdb/config/mt-i386v32, gdb/configure.in, readline/configure.in:
16836 Fix SCO configuration stuff.
16837
16838 Tue Jan 28 23:51:07 1992 Per Bothner (bothner at cygnus.com)
16839
16840 * Makefile.in: For libg++, make sure the -I pointing
16841 to the gcc directory goes *after* all the libg++-local -I flags.
16842 Also, move just-gcc dependency from just-libg++ to all-libg++.
16843
16844 Tue Jan 28 12:56:24 1992 Stu Grossman (grossman at cygnus.com)
16845
16846 * configure: Change -x to -f to keep Ultrix /bin/test happy.
16847
16848 Sat Jan 18 17:45:11 1992 Stu Grossman (grossman at cygnus.com)
16849
16850 * Makefile.in (make-gdb.tar.Z): Remove texinfo targets.
16851
16852 Sat Jan 18 17:03:21 1992 Fred Fish (fnf at cygnus.com)
16853
16854 * config.sub: Add stratus configuration frags. Also
16855 submitted to FSF.
16856
16857 Sat Jan 18 15:35:29 1992 Stu Grossman (grossman at cygnus.com)
16858
16859 * Makefile.in (DEV_SUPPORT): add configure.man.
16860
16861 * config.sub(Decode manufacturer-specific): add -none*.
16862
16863 Fri Jan 17 17:58:05 1992 Stu Grossman (grossman at cygnus.com)
16864
16865 * Makefile.in: remove form feeds to make Sun's make happy.
16866 (DEVO_SUPPORT): DOC.configure => cfg-paper.texi.
16867
16868 Sat Jan 4 16:11:44 1992 John Gilmore (gnu at cygnus.com)
16869
16870 * Makefile.in (AR_FLAGS): Make quieter.
16871
16872 Thu Jan 2 22:57:12 1992 John Gilmore (gnu at cygnus.com)
16873
16874 * configure.in: Add libg++.
16875 * configure: When verbose, don't output the command line at each
16876 level; it will be unremarkably the same as the previous version,
16877 which will be the same as what the user typed.
16878
16879 Fri Dec 27 16:26:47 1991 K. Richard Pixley (rich at cygnus.com)
16880
16881 * configure.in, Makefile.in: fix clean-info, add flex. add
16882 fileutils.
16883
16884 * configure: be less sensitive to spaces in Makefile.in. Do not
16885 look for sources in "..". Doing so breaks subdirectories that
16886 might have their own configure. If a subdir has it's own
16887 configure script, use it.
16888
16889 Thu Dec 26 16:30:26 1991 K. Richard Pixley (rich at cygnus.com)
16890
16891 * cfg-paper.texi: some changes suggested by rms.
16892
16893 Thu Dec 26 10:13:36 1991 Fred Fish (fnf at cygnus.com)
16894
16895 * config.sub: Merge in some small additions from the FSF version,
16896 taken from the gcc distribution, to bring the Cygnus and FSF
16897 versions into closer sync.
16898
16899 Fri Dec 20 11:34:18 1991 Fred Fish (fnf at cygnus.com)
16900
16901 * configure.in: Changed svr4 references to sysv4.
16902
16903 Thu Dec 19 15:54:29 1991 K. Richard Pixley (rich at cygnus.com)
16904
16905 * configure: added -V for version number option.
16906
16907 Wed Dec 18 15:39:34 1991 K. Richard Pixley (rich at cygnus.com)
16908
16909 * DOC.configure, cfg-paper.texi: revised, updated, and texinfo'd.
16910 renamed from DOC.configure to cfg-paper.texi.
16911
16912 Mon Dec 16 23:05:19 1991 K. Richard Pixley (rich at rtl.cygnus.com)
16913
16914 * configure, config.subr, config.sub: config.subr is now
16915 config.sub again.
16916
16917 Fri Dec 13 01:17:06 1991 K. Richard Pixley (rich at cygnus.com)
16918
16919 * configure.texi: new file, in progress.
16920
16921 * Makefile.in: build info file and install the man page for
16922 configure.
16923
16924 * configure.man: new file, first cut.
16925
16926 * configure: find config.subr again now that configuration "none"
16927 has gone. removed all traces of the -ansi option. removed all
16928 traces of the -languages option.
16929
16930 * config.subr: resync from rms.
16931
16932 1991-12-11 K. Richard Pixley (rich at rtl.cygnus.com)
16933
16934 * configure, config.sub, config.subr: merge config.sub into
16935 config.subr, call the result config.subr, remove config.sub, use
16936 config.subr.
16937
16938 * Makefile.in: revised install for dir.info.
16939
16940 1991-12-10 K. Richard Pixley (rich at rtl.cygnus.com)
16941
16942 * configure.in: add decstation host makefile frag.
16943
16944 * Makefile.in: BISON now bison -y again. also install-gcc on
16945 install. clean-gdbm on clean. infodir belongs in datadir.
16946 Make directories for info install. Build dir.info here then
16947 install it.
16948
16949 1991-12-09 K. Richard Pixley (rich at rtl.cygnus.com)
16950
16951 * Makefile.in: fix for bad directory tests.
16952
16953 1991-12-07 K. Richard Pixley (rich at rtl.cygnus.com)
16954
16955 * configure: \{1,2\} appears to be a sysv'ism. Use a different
16956 regexp. -srcdir relative was being handled incorrectly.
16957
16958 * Makefile.in: unwrapped some for loops so that parallel makes
16959 work again and so one can focus one's attention on a particular
16960 package.
16961
16962 1991-12-06 K. Richard Pixley (rich at rtl.cygnus.com)
16963
16964 * configure: added PWD as a stand in for `pwd` (for speed). use
16965 elif wherever possible. make -srcdir work without -objdir.
16966 -objdir= commented out.
16967
16968 1991-12-05 K. Richard Pixley (rich at rtl.cygnus.com)
16969
16970 * configure: +options become --options. -subdirs commented out.
16971 added -host, -datadir. Renamed -destdir to -prefix. Comment in
16972 Makefile now at top of generated Makefile. Removed cvs log
16973 entries. added -srcdir. create .gdbinit only if there is one
16974 in ${srcdir}.
16975
16976 * Makefile.in: idestdir and ddestdir go away. Added copyrights
16977 and shift gpl to v2. Added ChangeLog if it didn't exist. docdir
16978 and mandir now keyed off datadir by default.
16979
16980 1991-11-22 K. Richard Pixley (rich at rtl.cygnus.com)
16981
16982 * Freshly created ChangeLog.
16983
16984 \f
16985 Local Variables:
16986 mode: change-log
16987 left-margin: 8
16988 fill-column: 76
16989 version-control: never
16990 End: