]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - ChangeLog
Add markers for 2.39 branch
[thirdparty/binutils-gdb.git] / ChangeLog
1 2022-07-08 Nick Clifton <nickc@redhat.com>
2
3 * 2.39 branch created.
4
5 2022-07-04 Nick Clifton <nickc@redhat.com>
6
7 * libiberty: Synchronize with GCC. Bring in:
8 2022-07-01 Nick Clifton <nickc@redhat.com>
9
10 PR demangler/105039
11 * rust-demangle.c (demangle_const): Add recursion limit.
12
13 2022-06-26 Simon Marchi <simon.marchi@efficios.com>
14
15 * configure.ac: Add AC_CONFIG_MACRO_DIRS call.
16 * configure: Re-generate.
17
18 2022-04-12 Nick Clifton <nickc@redhat.com>
19
20 * zlib: Rebase to the 1.2.12 release.
21
22 2022-04-08 Simon Marchi <simon.marchi@efficios.com>
23
24 * configure.ac: Add AC_SUBST(PKG_CONFIG_PATH).
25 * configure: Re-generate.
26 * Makefile.tpl (HOST_EXPORTS): Pass PKG_CONFIG_PATH.
27 (PKG_CONFIG_PATH): New.
28 * Makefile.in: Re-generate.
29
30 2022-03-15 Jose E. Marchesi <jose.marchesi@oracle.com>
31
32 * gprofng/src/gp-collect-app.cc (collect::check_args): Use
33 fallthrough comment instead of attribute.
34
35 2022-03-11 Vladimir Mezentsev <vladimir.mezentsev@oracle.com>
36
37 * Makefile.def: Add gprofng module.
38 * configure.ac: Add --enable-gprofng option.
39 * src-release.sh: Add gprofng.
40 * Makefile.in: Regenerate.
41 * configure: Regenerate.
42 * gprofng: New directory.
43
44 2022-01-22 Nick Clifton <nickc@redhat.com>
45
46 * 2.38 release branch created.
47
48 2022-01-17 Nick Clifton <nickc@redhat.com>
49
50 Update config.[guess|sub] from upstream:
51
52 2022-01-09 Idan Horowitz <idan.horowitz@gmail.com>
53
54 config.guess: recognize SerenityOS
55 * config.guess (*:SerenityOS:*:*): Recognize.
56 (timestamp): Update.
57
58 2022-01-03 Bernhard Voelker <mail@bernhard-voelker.de>
59
60 Fix GPLv3 license headers to use a comma instead of semicolon
61 See: https://www.gnu.org/licenses/gpl-3.0.html#howto
62
63 Update license headers automatically using the following script:
64
65 $ git grep -l 'Foundation; either version 3' \
66 | xargs sed -i '/Foundation; either version 3/ s/n; e/n, e/'
67
68 * config.guess: Adjust via the above command.
69 (timestamp): Update.
70 * config.sub: Likewise.
71 * doc/config.guess.1: Regenerate.
72 * doc/config.sub.1: Likewise.
73
74 2022-01-01 Dmitry V. Levin <ldv@altlinux.org>
75
76 Update copyright years
77 * config.guess: Update copyright years.
78 * config.sub: Likewise.
79
80 2021-12-25 Dmitry V. Levin <ldv@altlinux.org>
81
82 config.sub: alias armh to armv7l
83 ALT uses armh as an alias for armv7l-alt-linux-gnueabihf since 2012.
84
85 * config.sub (armh-unknown|armh-alt): Set cpu, vendor, and basic_os.
86 (timestamp): Update.
87
88 2021-12-24 Dmitry V. Levin <ldv@altlinux.org>
89
90 config.sub: alias aarch64le to aarch64
91 Apparently, QNX reports aarch64 as aarch64le on little-endian machines.
92
93 * config.sub (aarch64le-*): Set cpu to aarch64.
94 (timestamp): Update.
95
96 2021-12-13 Dmitry V. Levin <ldv@altlinux.org>
97
98 config.sub: fix typo in timestamp
99 * config.sub: Fix timestamp.
100
101 2021-11-30 Andreas F. Borchert <github@andreas-borchert.de>
102
103 config.guess: x86_64-pc-solaris2.11 is not properly recognized
104 config.guess guesses Solaris 11 to run on a 32-bit platform
105 despite Solaris 11 no longer supporting any 32-bit platform.
106
107 See the following code at lines 434 to 445:
108
109 | SUN_ARCH=i386
110 | # If there is a compiler, see if it is configured for 64-bit objects.
111 | # Note that the Sun cc does not turn __LP64__ into 1 like gcc does.
112 | # This test works for both compilers.
113 | if test "$CC_FOR_BUILD" != no_compiler_found; then
114 | if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \
115 | (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \
116 | grep IS_64BIT_ARCH >/dev/null
117 | then
118 | SUN_ARCH=x86_64
119 | fi
120 | fi
121
122 If "cc" is installed, i.e. the Oracle Studio compiler, this one is
123 chosen for $CC_FOR_BUILD. This compiler, the gcc provided by Oracle
124 and also gcc bootstrapped from sources on that platform with a default
125 configuration will by default generate 32-bit binaries -- even on
126 a 64-bit platform. And __amd64 will not be defined for compilations
127 targeting a 32-bit platform. This is different from the corresponding
128 behaviour on GNU/Linux systems where the local platform is targeted by
129 default.
130
131 Thus, as long as you do not add "-m64" or if you have a custom-built
132 gcc which defaults to 64 bit, you will get 32-bit binaries on Solaris
133 despite living on a 64-bit platform.
134
135 * config.guess (i86pc:SunOS:5.*:* || i86xen:SunOS:5.*:*): Adapt the
136 test by adding the "-m64" flag. This will work properly for Solaris
137 10 as well (the last Solaris release that supported x86 32-bit
138 platforms).
139
140 2021-10-27 Jordi Sanfeliu <jordi@fibranet.cat>
141
142 Recognize Fiwix
143 $ make check
144 cd testsuite && bash config-guess.sh && rm uname
145 PASS: config.guess checks (137 tests)
146 cd testsuite && bash config-sub.sh
147 PASS: config.sub checks (882 tests)
148 PASS: config.sub idempotency checks (819 tests)
149 PASS: config.sub canonicalise each config.guess testcase (137 tests)
150
151 * config.guess (i*86:Fiwix:*:*): Recognize.
152 * config.sub (fiwix*): Likewise.
153
154 2021-10-18 Kinshuk Dua <kinshukdua@gmail.com>
155
156 config.sub: Fix typo in comment
157 Fixes: 5e531d391852a54e7fab2d8ff55625fca514b305
158
159 2021-08-14 Nick Bowler <nbowler@draconx.ca>
160
161 config.sub: work around command assignment bug in some shells
162 When combining variable assignments with a shell command, some older
163 shells (notably heirloom-sh and presumably also Solaris 10 /bin/sh)
164 have a bug which causes the assignment to alter the current execution
165 environment whenever the command is a shell built-in. For example:
166
167 % dash -c 'x=good; x=bad echo >/dev/null; echo $x'
168 good
169
170 % jsh -c 'x=good; x=bad echo >/dev/null; echo $x'
171 bad
172
173 The config.sub script contains a few commands of the form:
174
175 IFS=- read ...
176
177 which triggers this bug, causing the IFS assignment to persist for the
178 remainder of the script. This can cause misbehaviour in certain cases,
179 for example:
180
181 % jsh config.sub i386-linux-gnu
182 config.sub: test: unknown operator gnu
183
184 % jsh config.sub i386-gnu/linux
185 sed: can't read s|gnu/linux|gnu|: No such file or directory
186 Invalid configuration `i386-gnu/linux': OS `' not recognized
187
188 * config.sub: Save and restore IFS explicitly to avoid shell bugs.
189 * doc/config.sub.1: Regenerate.
190
191 2021-08-04 Jeremy Soller <jackpot51@gmail.com>
192
193 config.sub: add Linux Relibc Target
194 $ make check
195 cd testsuite && bash config-guess.sh && rm uname
196 PASS: config.guess checks (136 tests)
197 cd testsuite && bash config-sub.sh
198 PASS: config.sub checks (881 tests)
199 PASS: config.sub idempotency checks (818 tests)
200 PASS: config.sub canonicalise each config.guess testcase (136 tests)
201
202 * config.sub (relibc*): Recognize.
203 * doc/config.sub.1: Regenerate.
204 * testsuite/config-sub.data (x86_64-linux-relibc): New test.
205
206 2021-07-06 Stephanos Ioannidis <root@stephanos.io>
207
208 config.sub: add Zephyr RTOS support
209 This adds the Zephyr RTOS targets in preparation for implementing the
210 Zephyr RTOS-specific toolchain support.
211
212 $ make check
213 cd testsuite && bash config-guess.sh && rm uname
214 PASS: config.guess checks (136 tests)
215 cd testsuite && bash config-sub.sh
216 PASS: config.sub checks (880 tests)
217 PASS: config.sub idempotency checks (817 tests)
218 PASS: config.sub canonicalise each config.guess testcase (136 tests)
219
220 * config.sub (zephyr*): Recognize.
221 * doc/config.sub.1: Regenerate.
222 * testsuite/config-sub.data: Add testcases for *-zephyr.
223
224 2021-07-03 Ozkan Sezer <sezero@users.sourceforge.net>
225
226 config.sub: disable shellcheck SC2006 / SC2268 warnings
227 This is in line with the recent config.guess change in commit
228 12fcf67c9108f4c4b581eaa302088782f0ee40ea
229
230 * config.sub (shellcheck disable): Add SC2006,SC2268.
231
232 Suggested-by: Jacob Bachmeyer <jcb@gnu.org>
233
234 2021-07-03 Ozkan Sezer <sezero@users.sourceforge.net>
235
236 config.sub: normalize the quoting in the `echo FOO | sed ...`
237 Some cases quote the argument to echo and some do not. At runtime
238 it probably does not matter because the substituted values will never
239 contain whitespace, but quoting them all would make shellcheck more
240 useful.
241
242 * config.sub: Consistently quote the argument of echo.
243 * doc/config.sub.1: Regenerate.
244
245 Suggested-by: Jacob Bachmeyer <jcb@gnu.org>
246
247 2021-07-02 Ozkan Sezer <sezero@users.sourceforge.net>
248
249 config.sub: replace POSIX $( ) with classic ` ` throughout
250 This is in line with the recent config.guess change in commit
251 d70c4fa934de164178054c3a60aaa0024ed07c91.
252
253 The patch was generated using patch-6.gawk script introduced in that
254 commit.
255
256 * config.sub: Revert POSIX command substitutions to classic form.
257
258 2021-06-04 Vineet Gupta <Vineet.Gupta1@synopsys.com>
259
260 Recognize arc32
261 This is the 32-bit variant of ARCv3 ISA (which is not compatible with the
262 32-bit ARCv2 ISA)
263
264 | make check
265 | cd testsuite && bash config-guess.sh && rm uname
266 | PASS: config.guess checks (136 tests)
267 | cd testsuite && bash config-sub.sh
268 | PASS: config.sub checks (864 tests)
269 | PASS: config.sub idempotency checks (801 tests)
270 | PASS: config.sub canonicalise each config.guess testcase (136 tests)
271
272 * config.guess (arc32:Linux:*:*): Recognize.
273 * config.sub (arc32): Likewise.
274
275 2021-05-27 Jacob Bachmeyer <jcb@gnu.org>
276
277 Remove automatic patch generators
278 These tools have served their purposes and need not be kept outside of
279 the repository history any longer. This patch as a diff also collects
280 the contents of the various tools in one convenient place.
281
282 * patch-1.gawk: Remove.
283 * patch-3.gawk: Likewise.
284 * patch-6.gawk: Likewise.
285
286 2021-05-26 Jacob Bachmeyer <jcb@gnu.org>
287
288 config.guess: manual fixups after previous automatic patch
289 The tool could not handle command substitutions that span lines, but
290 fortunately there were only two such substitutions in the script.
291
292 The test for which universe is active on Pyramid is rewritten into a
293 case block because it was the only use of a command substitution as an
294 argument to the test command, which would require quoting.
295
296 * config.guess: Rewrite "if" for Pyramid systems to "case".
297
298 2021-05-26 Jacob Bachmeyer <jcb@gnu.org>
299
300 config.guess: replace POSIX $( ) with classic ` ` throughout
301 The previous replacement of backticks with POSIX command substitutions
302 was ill-considered and illogical: this script recognizes many archaic
303 machine types that probably never had POSIX shells, therefore it needs
304 to be able to run successfully under pre-POSIX shells.
305
306 This patch was generated using the included GNU Awk program.
307
308 * config.guess: Revert POSIX command substitutions to classic form.
309 * patch-6.gawk: Store the tool that produced the automated patch.
310
311 2021-05-26 Jacob Bachmeyer <jcb@gnu.org>
312
313 config.guess: manual fixup after previous automated patches
314 This patch provides the special handling for the GNU system. As these
315 were two small and unique edits, they were not included in the scripts.
316
317 This patch also cleans up other minor issues that must be addressed
318 before reverting to classic command substitutions and updates
319 "shellcheck" directives to account for changes in this script and the
320 change in "shellcheck" towards reporting individual portability issues.
321
322 2021-05-26 Jacob Bachmeyer <jcb@gnu.org>
323
324 config.guess: automatic fixups after previous automated patch
325 This patch was generated using the following command:
326
327 sed -i config.guess \
328 -e '/="[^"]\+"\(-\|$\)/s/="\([^"([:space:])]\+\)"/=\1/' \
329 -e '/="[^"]\+"[[:alnum:]]/s/="\$\([^([:space:])]\+\)"/=${\1}/' \
330 -e \
331 '/\$(echo[^|]\+|/s/\([^[:space:]]\)[[:space:]]*|[[:space:]]*sed/\1 | sed/g'
332
333 * config.guess: Remove unneeded quotes in other variable assignments,
334 standardize spacing for "echo ... | sed" substitutions.
335
336 2021-05-26 Jacob Bachmeyer <jcb@gnu.org>
337
338 config.guess: remove unneeded quotes and factor command substitutions
339 This is further cleanup and simplifies some constructs that can confuse
340 Emacs' syntax highlighting while generally reducing required quoting.
341
342 This patch was generated using the included GNU Awk program.
343
344 * config.guess: Remove unneeded variable quotes and factor out command
345 substitutions when setting GUESS.
346 * patch-3.gawk: Store the tool that produced the automated patch.
347
348 2021-05-25 Jacob Bachmeyer <jcb@gnu.org>
349
350 config.guess: manual fixups after previous automatic patch
351 * config.guess: Adjust a few "leftover" cases that the tool could not
352 easily recognize and fixes comment indentation in a few other special
353 cases.
354
355 2021-05-25 Jacob Bachmeyer <jcb@gnu.org>
356
357 config.guess: use intermediate variable with uname results
358 This will allow quoting to be significantly simplified in another
359 pass through the file.
360
361 This patch was generated using the included GNU Awk program.
362
363 * config.guess: Use GUESS variable to hold results of uname analysis.
364 * patch-1.gawk: Store the tool that produced the automated patch.
365
366 2021-05-25 Jacob Bachmeyer <jcb@gnu.org>
367
368 config.guess: introduce intermediate variable with uname results
369 This will allow quoting to be significantly simplified in another
370 pass through the file.
371
372 * config.guess: Introduce GUESS variable to hold results of uname analysis.
373
374 2021-05-24 Dmitry V. Levin <ldv@altlinux.org>
375
376 config.guess: fix shellcheck warning SC2154
377 While, according to Plan 9 documentation, the environment variable
378 $cputype is set to the name of the kernel's CPU's architecture,
379 shellcheck warns that cputype is referenced but not assigned.
380 Be on the safe side and do not use cputype if it is not defined
381 or empty.
382
383 * config.guess (*:Plan9:*:*): Fix shellcheck warning SC2154.
384
385 2021-05-24 Dmitry V. Levin <ldv@altlinux.org>
386
387 config.guess: remove redundant quotes in case commands
388 According to the GNU Autoconf Portable Shell Programming manual,
389 the Bourne shell does not systematically split variables and back-quoted
390 expressions, in particular on the right-hand side of assignments and in
391 the argument of 'case'.
392
393 The change is made automatically using the following command:
394 $ sed -E -i 's/(\<case )"(\$[^"]+)"( in\>)/\1\2\3/' config.guess
395
396 * config.guess: Simplify case commands by removing quotes around the
397 argument.
398
399 Suggested-by: Jacob Bachmeyer <jcb@gnu.org>
400
401 2021-05-24 Dmitry V. Levin <ldv@altlinux.org>
402
403 config.guess: simplify exit status workaround on alphaev67-dec-osf5.1
404 Commit 29865ea8a5622cdd80b7a69a0afa78004b4cd311 introduced an exit trap
405 reset before exiting to avoid a spurious non-zero exit status on
406 alphaev67-dec-osf5.1. Simplify that code a bit by moving the exit trap
407 reset around.
408
409 * config.guess (alpha:OSF1:*:*): Reset exit trap earlier.
410 * doc/config.guess.1: Regenerate.
411
412 2021-10-29 Eli Zaretskii <eliz@gnu.org>
413
414 * gdb/doc/gdb.texinfo (Command Options): (Data): Document
415 '-memory-tag-violations'. Update the example.
416
417 2021-09-28 Andrew Burgess <andrew.burgess@embecosm.com>
418
419 * src-release.sh (GDB_SUPPPORT_DIRS): Add libbacktrace.
420
421 2021-09-27 Nick Alcock <nick.alcock@oracle.com>
422
423 PR libctf/27967
424 * libtool.m4 (LT_PATH_NM): Try BSDization flags with a user-provided
425 NM, if there is one. Run nm on itself, not on /dev/null, to avoid
426 errors from nms that refuse to work on non-regular files. Remove
427 other workarounds for this problem. Strip out blank lines from the
428 nm output.
429
430 2021-09-27 Nick Alcock <nick.alcock@oracle.com>
431
432 PR libctf/27967
433 * libtool.m4 (lt_cv_sys_global_symbol_pipe): Augment symcode for
434 Solaris 11.
435
436 2021-07-03 Nick Clifton <nickc@redhat.com>
437
438 * 2.37 release branch created.
439
440 2021-07-03 Nick Clifton <nickc@redhat.com>
441
442 * libiberty: Sync with gcc. Bring in:
443 2021-06-30 Gerald Pfeifer <gerald@pfeifer.com>
444
445 * make-temp-file.c (usrtmp): Remove.
446 (choose_tmpdir): Remove use of usrtmp.
447
448 2021-06-28 Indu Bhagat <indu.bhagat@oracle.com>
449
450 * simple-object.c (handle_lto_debug_sections): Copy over .BTF section.
451
452 2021-06-28 Indu Bhagat <indu.bhagat@oracle.com>
453 David Faust <david.faust@oracle.com>
454 Jose E. Marchesi <jose.marchesi@oracle.com>
455 Weimin Pan <weimin.pan@oracle.com>
456
457 * simple-object.c (handle_lto_debug_sections): Copy over .ctf
458 sections.
459
460 2021-06-05 John David Anglin <danglin@gcc.gnu.org>
461
462 PR target/100734
463 * configure.ac: Use libiberty snprintf and vsnprintf on
464 hppa*-*-hpux*.
465 * configure: Regenerate.
466
467 2021-05-06 Tom Tromey <tom@tromey.com>
468
469 * hashtab.c (htab_eq_string): New function.
470
471 2021-05-04 Eric Botcazou <ebotcazou@adacore.com>
472
473 * configure.ac: Make test for variables more robust.
474 * configure: Regenerate.
475
476 2021-05-03 H.J. Lu <hjl.tools@gmail.com>
477
478 PR bootstrap/99703
479 * configure: Regenerated.
480
481 2021-04-21 Andreas Schwab <schwab@linux-m68k.org>
482
483 PR demangler/100177
484 * rust-demangle.c (demangle_const_char): Properly print the
485 character value.
486
487 2021-03-31 Patrick Palka <ppalka@redhat.com>
488
489 PR c++/88115
490 * cp-demangle.c (d_dump, d_make_comp, d_expression_1)
491 (d_count_templates_scopes): Handle DEMANGLE_COMPONENT_VENDOR_EXPR.
492 (d_print_comp_inner): Likewise.
493 <case DEMANGLE_COMPONENT_EXTENDED_OPERATOR>: Revert r11-4926
494 change.
495 <case DEMANGLE_COMPONENT_UNARY>: Likewise.
496 * testsuite/demangle-expected: Adjust __alignof__ tests.
497
498 2021-03-16 Nick Clifton <nickc@redhat.com>
499
500 * sha1.c (sha1_process_bytes): Use memmove in place of memcpy.
501
502 2021-02-20 Mike Frysinger <vapier@gentoo.org>
503
504 * Makefile.in (ACLOCAL, ACLOCAL_AMFLAGS, $(srcdir)/aclocal.m4): Define.
505 (configure_deps): Rename to ...
506 (aclocal_deps): ... this. Replace aclocal.m4 with acinclude.m4.
507 ($(srcdir)/configure): Replace $(configure_deps) with
508 $(srcdir)/aclocal.m4.
509 * aclocal.m4: Move libiberty macros to acinclude.m4, then regenerate.
510 * acinclude.m4: New file.
511 * configure: Regenerate.
512
513 2021-02-19 Ayush Mittal <ayush.m@samsung.com>
514
515 * argv.c (expandargv): free allocated buffer if read fails.
516
517 2021-02-01 Martin Sebor <msebor@redhat.com>
518
519 * dyn-string.c (dyn_string_insert_cstr): Use memcpy instead of strncpy
520 to avoid -Wstringop-truncation.
521
522 2021-05-29 Mike Frysinger <vapier@gentoo.org>
523
524 * configure.ac: Add gnulib to configdirs for sim.
525 * configure: Regenerate.
526
527 2021-05-24 Maciej W. Rozycki <macro@orcam.me.uk>
528
529 * MAINTAINERS: Update path to readline config.{sub,guess} files.
530
531 2021-05-24 Maciej W. Rozycki <macro@orcam.me.uk>
532
533 * config.guess: Import from upstream.
534 * config.sub: Likewise.
535
536 2021-05-18 Mike Frysinger <vapier@gentoo.org>
537
538 * Makefile.def: Add configure-sim dependency on all-gnulib.
539 * Makefile.in: Regenerated.
540
541 2021-05-04 Nick Clifton <nickc@redhat.com>
542
543 * configure.ac (AC_PROG_CC): Replace with AC_PROG_CC_C99.
544 * configure: Regenerate.
545
546 2021-03-18 Nick Alcock <nick.alcock@oracle.com>
547
548 PR libctf/27482
549 * Makefile.def: Add install-bfd dependencies for install-libctf and
550 install-ld, and install-strip-bfd dependencies for
551 install-strip-libctf and install-strip-ld; move the install-ld
552 dependency on install-libctf to join it.
553 * Makefile.in: Regenerated.
554
555 2021-03-12 Mike Frysinger <vapier@gentoo.org>
556
557 * Makefile.def: Remove all-sim dependency on configure-gdb.
558 * Makefile.in: Regenerated.
559
560 2021-02-28 H.J. Lu <hongjiu.lu@intel.com>
561
562 PR binutils/26766
563 * Makefile.tpl (PGO_BUILD_TRAINING_FLAGS_TO_PASS): Add
564 PGO_BUILD_TRAINING=yes.
565 (PGO_BUILD_TRAINING_MFLAGS): New.
566 (all): Pass $(PGO_BUILD_TRAINING_MFLAGS) to the PGO build.
567
568 2021-02-09 Alan Modra <amodra@gmail.com>
569
570 * configure.ac: Delete arm*-*-symbianelf* entry.
571 * configure: Regenerate.
572
573 2021-01-26 Nick Alcock <nick.alcock@oracle.com>
574
575 * Makefile.def: Add install-libctf dependency to install-ld.
576 * Makefile.in: Regenerated.
577
578 2021-01-12 Mike Frysinger <vapier@gentoo.org>
579
580 * src-release.sh (do_proto_toplev): Rewrite indentation.
581
582 2021-01-11 H.J. Lu <hongjiu.lu@intel.com>
583
584 PR binutils/26766
585 * configure.ac:
586 * configure: Regenerated.
587
588 2021-01-11 H.J. Lu <hongjiu.lu@intel.com>
589
590 PR ld/27173
591 * configure: Regenerated.
592 * libtool.m4 (_LT_CMD_OLD_ARCHIVE): Check if AR works with
593 --plugin and rc before enabling --plugin.
594
595 2021-01-09 H.J. Lu <hongjiu.lu@intel.com>
596
597 PR binutils/26766
598 * Makefile.tpl (BUILD_CFLAGS): New.
599 (CFLAGS): Append $(BUILD_CFLAGS).
600 (CXXFLAGS): Likewise.
601 (PGO_BUILD_GEN_FLAGS_TO_PASS): New.
602 (PGO_BUILD_TRAINING_CFLAGS): Likewise.
603 (PGO_BUILD_TRAINING_CXXFLAGS): Likewise.
604 (PGO_BUILD_TRAINING_FLAGS_TO_PASS): Likewise.
605 (PGO_BUILD_TRAINING_MFLAGS): Likewise.
606 (PGO_BUILD_USE_FLAGS_TO_PASS): Likewise.
607 (PGO-TRAINING-TARGETS): Likewise.
608 (PGO_BUILD_TRAINING): Likewise.
609 (all): Add '+' to the command line for recursive make. Support
610 the PGO build.
611 * configure.ac: Add --enable-pgo-build[=lto].
612 AC_SUBST PGO_BUILD_GEN_CFLAGS, PGO_BUILD_USE_CFLAGS and
613 PGO_BUILD_LTO_CFLAGS. Enable the PGO build in Makefile.
614 * Makefile.in: Regenerated.
615 * configure: Likewise.
616
617 2021-01-09 H.J. Lu <hongjiu.lu@intel.com>
618
619 * Makefile.tpl (AR): Add @AR_PLUGIN_OPTION@
620 (RANLIB): Add @RANLIB_PLUGIN_OPTION@.
621 * configure.ac: Include config/gcc-plugin.m4.
622 AC_SUBST AR_PLUGIN_OPTION and RANLIB_PLUGIN_OPTION.
623 * libtool.m4 (_LT_CMD_OLD_ARCHIVE): Pass --plugin to AR and
624 RANLIB if possible.
625 * Makefile.in: Regenerated.
626 * configure: Likewise.
627
628 2021-01-09 Nick Clifton <nickc@redhat.com>
629
630 * 2.36 release branch crated.
631
632 2021-01-07 Samuel Thibault <samuel.thibault@gnu.org>
633
634 * libtool.m4: Match gnu* along with other GNU systems.
635
636 2021-01-07 Alan Modra <amodra@gmail.com>
637
638 * config.sub: Accept OS of eabi* and gnueabi*.
639
640 2021-01-05 Nick Alcock <nick.alcock@oracle.com>
641
642 * Makefile.def (libctf): No longer no_check. Checking depends on
643 all-ld.
644 * Makefile.in: Regenerated.
645
646 2021-01-05 Nick Clifton <nickc@redhat.com>
647
648 * libiberty: Sync with gcc. Bring in:
649 2021-01-04 Martin Liska <mliska@suse.cz>
650
651 * strverscmp.c: Convert to utf8 from iso8859.
652
653 2020-12-22 Jason Merrill <jason@redhat.com>
654
655 PR c++/67343
656 * cp-demangle.h (struct d_info): Add unresolved_name_state.
657 * cp-demangle.c (d_prefix): Add subst parm.
658 (d_nested_name): Pass it.
659 (d_unresolved_name): Split out from...
660 (d_expression_1): ...here.
661 (d_demangle_callback): Maybe retry with old sr mangling.
662 * testsuite/demangle-expected: Add test.
663
664 2020-12-21 Jason Merrill <jason@redhat.com>
665
666 * cp-demangle.c (d_expression_1): Recognize qualified-id
667 on RHS of dt/pt.
668 * testsuite/demangle-expected: Add test.
669
670 2020-12-21 Jason Merrill <jason@redhat.com>
671
672 * cp-demangle.c (d_unqualified_name): Clear is_expression.
673 * testsuite/demangle-expected: Add tests.
674
675 2020-11-25 Matthew Malcomson <matthew.malcomson@arm.com>
676
677 * configure: Regenerate.
678 * configure.ac: Avoid using sanitizer.
679
680 2020-11-13 Eduard-Mihai Burtescu <eddyb@lyken.rs>
681
682 * rust-demangle.c (struct rust_demangler): Add
683 skipping_printing and bound_lifetime_depth fields.
684 (eat): Add (v0-only).
685 (parse_integer_62): Add (v0-only).
686 (parse_opt_integer_62): Add (v0-only).
687 (parse_disambiguator): Add (v0-only).
688 (struct rust_mangled_ident): Add punycode{,_len} fields.
689 (parse_ident): Support v0 identifiers.
690 (print_str): Respect skipping_printing.
691 (print_uint64): Add (v0-only).
692 (print_uint64_hex): Add (v0-only).
693 (print_ident): Respect skipping_printing,
694 Support v0 identifiers.
695 (print_lifetime_from_index): Add (v0-only).
696 (demangle_binder): Add (v0-only).
697 (demangle_path): Add (v0-only).
698 (demangle_generic_arg): Add (v0-only).
699 (demangle_type): Add (v0-only).
700 (demangle_path_maybe_open_generics): Add (v0-only).
701 (demangle_dyn_trait): Add (v0-only).
702 (demangle_const): Add (v0-only).
703 (demangle_const_uint): Add (v0-only).
704 (basic_type): Add (v0-only).
705 (rust_demangle_callback): Support v0 symbols.
706 * testsuite/rust-demangle-expected: Add v0 testcases.
707
708 2020-11-13 Seija Kijin <doremylover456@gmail.com>
709
710 * strstr.c (strstr): Make implementation ANSI/POSIX compliant.
711
712 2020-11-11 Patrick Palka <ppalka@redhat.com>
713
714 PR c++/88115
715 * cp-demangle.c (d_print_comp_inner)
716 <case DEMANGLE_COMPONENT_EXTENDED_OPERATOR>: Don't print the
717 "operator " prefix for __alignof__.
718 <case DEMANGLE_COMPONENT_UNARY>: Always print parens around the
719 operand of __alignof__.
720 * testsuite/demangle-expected: Test demangling for __alignof__.
721
722 2020-11-09 Christophe Lyon <christophe.lyon@linaro.org>
723
724 * pex-win32.c (pex_win32_exec_child): Initialize orig_err.
725
726 2020-10-06 Martin Liska <mliska@suse.cz>
727
728 PR lto/97290
729 * simple-object-elf.c (simple_object_elf_copy_lto_debug_sections):
730 Use sh_link of a .symtab_shndx section.
731
732 2021-01-05 Alan Modra <amodra@gmail.com>
733
734 * config.guess: Import from upstream.
735 * config.sub: Likewise.
736
737 2020-12-16 Martin Liska <mliska@suse.cz>
738 Tom de Vries <tdevries@suse.de>
739
740 * gdb/debuginfod-support.c (struct user_data): Remove has_printed
741 field. Add meter field.
742 (progressfn): Print progress using meter.
743
744 2020-12-02 Enze Li <lienze2010@hotmail.com>
745
746 * .gitignore: Add gnu global outputs.
747
748 2020-12-02 Simon Marchi <simon.marchi@polymtl.ca>
749
750 * .gitignore: Sync with gcc.
751
752 2020-10-26 Andreas Rammhold <andreas@rammhold.de>
753
754 * src-release.sh: Use sha256sum instead of md5sum.
755
756 2020-10-14 Andrew Burgess <andrew.burgess@embecosm.com>
757
758 * Makefile.in: Rebuild.
759 * Makefile.def: Make distclean-gnulib depend on distclean-gdb and
760 distclean-gdbserver.
761
762 2020-07-24 Aaron Merey <amerey@redhat.com>
763
764 * configure: Rebuild.
765 * configure.ac: Remove AC_DEBUGINFOD.
766
767 2020-07-04 Nick Clifton <nickc@redhat.com>
768
769 Binutils 2.35 branch created.
770
771 2020-04-21 Stephen Casner <casner@acm.org>
772
773 PR 25830
774 * configure.ac (noconfigdirs): Exclude gdb & gprof for pdp11.
775 * configure: Rebuild.
776
777 2020-03-12 Tom Tromey <tom@tromey.com>
778
779 * Makefile.in: Rebuild.
780 * Makefile.def (gdbserver): Depend on gdbsupport.
781
782 2020-03-12 Tom Tromey <tom@tromey.com>
783
784 * Makefile.in: Rebuild.
785 * Makefile.def (gdbsupport): Don't depend on bfd.
786
787 2020-03-12 Tom Tromey <tom@tromey.com>
788
789 * Makefile.in: Rebuild.
790 * Makefile.def (gdbsupport): Depend on intl.
791
792 2020-02-17 Tom Tromey <tom@tromey.com>
793
794 * configure: Rebuild.
795 * configure.ac (configdirs): Add gnulib and gdbsupport when building
796 gdbserver.
797
798 2020-02-14 Tom Tromey <tom@tromey.com>
799
800 * Makefile.in: Rebuild.
801 * Makefile.def: Make gdbserver require gnulib and libiberty.
802
803 2020-02-07 Tom Tromey <tom@tromey.com>
804 Pedro Alves <palves@redhat.com>
805
806 * src-release.sh (GDB_SUPPORT_DIRS): Add gdbserver.
807 * gdbserver: New directory, moved from gdb/gdbserver.
808 * configure.ac (host_tools): Add gdbserver.
809 Only build gdbserver on certain systems.
810 * Makefile.in, configure: Rebuild.
811 * Makefile.def (host_modules, dependencies): Add gdbserver.
812 * MAINTAINERS: Add gdbserver.
813
814 2020-01-28 Sergio Durigan Junior <sergiodj@redhat.com>
815
816 * src-release.sh (getver): Look for gdbsupport's
817 create-version.sh script at the current directory if tool is
818 "gdb".
819
820 2020-01-19 Simon Marchi <simon.marchi@polymtl.ca>
821
822 * remote-sim.c (gdbsim_target::wait): Return
823 sim_data->remote_sim_ptid instead of inferior_ptid.
824
825 2020-01-18 Nick Clifton <nickc@redhat.com>
826
827 Binutils 2.34 branch created.
828
829 2020-01-18 Nick Clifton <nickc@redhat.com>
830
831 Synchronize top level configure files with master version:
832
833 2020-01-01 Ben Elliston <bje@gnu.org>
834
835 * config.guess: Update copyright years.
836 * config.sub: Likewise.
837
838 2019-12-21 Ben Elliston <bje@gnu.org>
839
840 * config.guess (set_cc_for_build): Prevent multiple calls by
841 checking if $tmp is already set. We can't check CC_FOR_BUILD as
842 the user may set it externally. Thanks to Torbjörn Granlund for
843 the bug report.
844
845 2019-12-21 Torbjörn Granlund <tg@gmplib.org>
846
847 * config.guess (alpha:Linux:*:*): Guard against missing
848 /proc/cpuinfo by redirecting standard error to /dev/null.
849
850 2019-09-12 Daniel Bittman <danielbittman1@gmail.com>
851
852 * config.guess (*:Twizzler:*:*): New.
853 * config.sub (-twizzler*): New.
854
855 2019-07-24 Ben Elliston <bje@gnu.org>
856
857 * config.guess (mips:OSF1:*.*): Whitespace cleanup.
858
859 2019-06-30 Ben Elliston <bje@gnu.org>
860
861 * config.sub (case $os): Match nsk* and powerunix. Don't later
862 match nsk* and set os=nsk which removes the OS version number.
863
864 2019-06-30 Ben Elliston <bje@gnu.org>
865
866 * config.sub: Recognise os108*.
867
868 2019-06-26 Ben Elliston <bje@gnu.org>
869
870 * config.sub (hp300): Set $os to hpux.
871
872 2019-06-26 Ben Elliston <bje@gnu.org>
873
874 * config.sub (vsta): Move into alphabetical order.
875
876 2019-06-10 Ben Elliston <bje@gnu.org>
877
878 * config.guess (*:OS108:*:*): Recognise new OS.
879
880 2019-05-28 Ben Elliston <bje@gnu.org>
881
882 * config.guess (*:Darwin:*:*): Run xcode-select to determine if a
883 system compiler is installed. If not, do not run set_cc_for_build,
884 as the default cc will open a dialog box asking to install
885 Xcode. If no C compiler is available, guess based on uname -p and
886 uname -m.
887
888 2019-05-28 Ben Elliston <bje@gnu.org>
889
890 * config.guess (*:Darwin:*:*): Simplify UNAME_PROCESSOR.
891
892 2020-01-17 Simon Marchi <simon.marchi@efficios.com>
893
894 * Makefile.def: Add dependencies of all-gdbsupport on all-bfd.
895 * Makefile.in: Re-generate.
896
897 2020-01-14 Tom Tromey <tom@tromey.com>
898
899 * src-release.sh (GDB_SUPPORT_DIRS): Add gdbsupport.
900 * MAINTAINERS: Add gdbsupport.
901 * configure: Rebuild.
902 * configure.ac (configdirs): Add gdbsupport.
903 * gdbsupport: New directory, move from gdb/gdbsupport.
904 * Makefile.def (host_modules, dependencies): Add gnulib.
905 * Makefile.in: Rebuild.
906
907 2020-01-09 Aaron Merey <amerey@redhat.com>
908
909 * config/debuginfod.m4: New file. Add macro AC_DEBUGINFOD. Adds
910 new configure option --with-debuginfod.
911 * configure: Regenerate.
912 * configure.ac: Call AC_DEBUGINFOD.
913
914 2019-12-26 Christian Biesinger <cbiesinger@google.com>
915
916 * .gitignore: Add perf.data and perf.data.old.
917
918 2019-10-17 Sergio Durigan Junior <sergiodj@redhat.com>
919
920 * src-release.sh (GDB_SUPPORT_DIRS): Add libctf.
921
922 2019-10-17 Alan Modra <amodra@gmail.com>
923
924 PR 29
925 * src-release.sh (getver): Replace "head -1" with "head -n 1".
926
927 2019-07-30 Nick Alcock <nick.alcock@oracle.com>
928
929 * Makefile.def (host_modules): libctf is no longer no_install.
930 * Makefile.in: Regenerated.
931
932 2019-07-13 Nick Alcock <nick.alcock@oracle.com>
933
934 * Makefile.def (dependencies): all-ld depends on all-libctf.
935 * Makefile.in: Regenerated.
936
937 2019-09-09 Phil Blundell <pb@pbcl.net>
938
939 binutils 2.33 branch created
940
941 2019-08-19 Tom Tromey <tom@tromey.com>
942
943 * configure: Rebuild.
944 * configure.ac: Add --with-static-standard-libraries.
945
946 2019-08-09 Nick Clifton <nickc@redhat.com>
947
948 * libiberty: Sync with gcc. Bring in:
949 2019-08-08 Martin Liska <mliska@suse.cz>
950
951 PR bootstrap/91352
952 * lrealpath.c (is_valid_fd): New function.
953
954 2019-07-24 Martin Liska <mliska@suse.cz>
955
956 PR lto/91228
957 * simple-object-elf.c (simple_object_elf_copy_lto_debug_sections):
958 Find first '\0' starting from gnu_lto + 1.
959
960 2019-07-12 Ren Kimura <rkx1209dev@gmail.com>
961
962 * simple-object-elf.c (simple_object_elf_match): Check zero value shstrndx.
963 This fixes a Bug 90924.
964
965 2019-07-22 Martin Liska <mliska@suse.cz>
966
967 * simple-object-elf.c (simple_object_elf_copy_lto_debug_sections):
968 Do not search for gnu_lto_v1, but search for first '\0'.
969
970 2019-07-18 Eduard-Mihai Burtescu <eddyb@lyken.rs>
971
972 * cplus-dem.c: Include rust-demangle.h.
973 * rust-demangle.c: Include rust-demangle.h.
974 * rust-demangle.h: New file.
975
976 2019-05-31 Michael Forney <mforney@mforney.org>
977
978 * cp-demangle.c: Don't define CP_DYNAMIC_ARRAYS if __STDC_NO_VLA__
979 is non-zero.
980
981 2019-04-30 Ben L <bobsayshilol@live.co.uk>
982
983 * d-demangle.c (dlang_parse_assocarray): Correctly handle error result.
984 * testsuite/d-demangle-expected: Add testcase.
985
986 * d-demangle.c (dlang_parse_tuple): Correctly handle error result.
987 * testsuite/d-demangle-expected: Add testcase.
988
989 * d-demangle.c (dlang_parse_structlit): Correctly handle error result.
990 * testsuite/d-demangle-expected: Add testcase.
991
992 * d-demangle.c (dlang_parse_arrayliteral): Correctly handle error result.
993 * testsuite/d-demangle-expected: Add testcase.
994
995 * d-demangle.c (dlang_parse_integer): Fix stack underflow.
996 * testsuite/d-demangle-expected: Add testcase.
997
998 * cp-demangle (d_print_comp_inner): Guard against a NULL 'typed_name'.
999 * testsuite/demangle-expected: Add testcase.
1000
1001 * cp-demangle.c (d_encoding): Guard against NULL return values from
1002 d_right (dc).
1003 * testsuite/demangle-expected: Add testcase.
1004
1005 2019-04-29 Ben L <bobsayshilol@live.co.uk>
1006
1007 * cp-demangle.c (d_expression_1): Don't peek ahead unless the current
1008 char is valid.
1009 * testsuite/demangle-expected: Add testcase.
1010
1011 2019-04-10 Nick Clifton <nickc@redhat.com>
1012
1013 PR 89394
1014 * cp-demangle.c (cplus_demangle_fill_name): Reject negative
1015 lengths.
1016 (d_count_templates_scopes): Replace num_templates and num_scopes
1017 parameters with a struct d_print_info pointer parameter. Adjust
1018 body of the function accordingly. Add recursion counter and check
1019 that the recursion limit is not reached.
1020 (d_print_init): Pass dpi parameter to d_count_templates_scopes.
1021 Reset recursion counter afterwards, unless the recursion limit was
1022 reached.
1023
1024 2019-07-13 Joel Brobecker <brobecker@adacore.com>
1025
1026 * src-release (getver): If $tool/gdbsupport/create-version.sh
1027 exists, use that to determine the version number.
1028
1029 2019-06-21 Andreas Schwab <schwab@linux-m68k.org>
1030
1031 * src-release.sh (GDB_SUPPORT_DIRS): Add gnulib.
1032
1033 2019-06-14 Tom Tromey <tom@tromey.com>
1034
1035 * MAINTAINERS: Add gnulib.
1036 * gnulib: New directory, move from gdb/gnulib.
1037 * configure.ac (host_libs): Add gnulib.
1038 * configure: Rebuild.
1039 * Makefile.def (host_modules, dependencies): Add gnulib.
1040 * Makefile.in: Rebuild.
1041
1042 2019-06-03 Nick Clifton <nickc@redhat.com>
1043
1044 Revert:
1045 2019-05-29 Nick Clifton <nickc@redhat.com>
1046
1047 * configure.ac (noconfigdirs): Add libctf if the target does not use
1048 the ELF file format.
1049 * configure: Regenerate.
1050
1051 2019-05-29 Nick Clifton <nickc@redhat.com>
1052
1053 * src-release.sh (do_proto_toplev): Add libctf to list of
1054 directories that can be disabled.
1055
1056 2019-05-29 Nick Clifton <nickc@redhat.com>
1057
1058 * configure.ac (noconfigdirs): Add libctf if the target does not use
1059 the ELF file format.
1060 * configure: Regenerate.
1061
1062 2019-05-28 Nick Alcock <nick.alcock@oracle.com>
1063
1064 * Makefile.def (dependencies): configure-libctf depends on all-bfd
1065 and all its deps.
1066 * Makefile.in: Regenerated.
1067
1068 2019-05-28 Nick Alcock <nick.alcock@oracle.com>
1069
1070 * MAINTAINERS: Add libctf.
1071
1072 2019-05-28 Nick Alcock <nick.alcock@oracle.com>
1073
1074 * Makefile.def (host_modules): Add libctf.
1075 * Makefile.def (dependencies): Likewise.
1076 libctf depends on zlib, libiberty, and bfd.
1077 * Makefile.in: Regenerated.
1078 * configure.ac (host_libs): Add libctf.
1079 * configure: Regenerated.
1080
1081 2019-05-23 Jose E. Marchesi <jose.marchesi@oracle.com>
1082
1083 * config.guess: Synchronize with config project master sources.
1084 * config.sub: Likewise.
1085 * readline/support/config.guess: Likewise.
1086 * readline/support/config.sub: Likewise.
1087
1088 2019-04-10 Nick Clifton <nickc@redhat.com>
1089
1090 * libiberty: Sync with gcc. Bring in:
1091 2019-04-10 Nick Clifton <nickc@redhat.com>
1092
1093 PR 89394
1094 * cp-demangle.c (cplus_demangle_fill_name): Reject negative
1095 lengths.
1096 (d_count_templates_scopes): Replace num_templates and num_scopes
1097 parameters with a struct d_print_info pointer parameter. Adjust
1098 body of the function accordingly. Add recursion counter and check
1099 that the recursion limit is not reached.
1100 (d_print_init): Pass dpi parameter to d_count_templates_scopes.
1101 Reset recursion counter afterwards, unless the recursion limit was
1102 reached.
1103
1104 2018-06-24 Nick Clifton <nickc@redhat.com>
1105
1106 2.32 branch created.
1107
1108 2019-01-14 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
1109
1110 Merge from GCC:
1111 PR target/88535
1112 * config.guess: Import upstream version 2019-01-03.
1113 * config.sub: Import upstream version 2019-01-01.
1114
1115 2019-01-10 Nick Clifton <nickc@redhat.com>
1116
1117 * libiberty: Sync with gcc. Bring in:
1118 2019-01-09 Sandra Loosemore <sandra@codesourcery.com>
1119
1120 PR other/16615
1121
1122 * cp-demangle.c: Mechanically replace "can not" with "cannot".
1123 * floatformat.c: Likewise.
1124 * strerror.c: Likewise.
1125
1126 2018-12-22 Jason Merrill <jason@redhat.com>
1127
1128 Remove support for demangling GCC 2.x era mangling schemes.
1129 * cplus-dem.c: Remove cplus_mangle_opname, cplus_demangle_opname,
1130 internal_cplus_demangle, and all subroutines.
1131 (libiberty_demanglers): Remove entries for ancient GNU (pre-3.0),
1132 Lucid, ARM, HP, and EDG demangling styles.
1133 (cplus_demangle): Remove 'work' variable. Don't call
1134 internal_cplus_demangle.
1135
1136 2019-01-03 Дилян Палаузов <dilyan.palauzov@aegee.org>
1137
1138 * configure.ac: Don't configure readline if --with-system-readline is
1139 used.
1140 * configure: Re-generate.
1141
1142 2018-10-31 Joseph Myers <joseph@codesourcery.com>
1143
1144 Merge from GCC:
1145 PR bootstrap/82856
1146 * multilib.am: New file. From automake.
1147
1148 2018-09-12 Sergio Durigan Junior <sergiodj@redhat.com>
1149
1150 * src-release.sh (GDB_SUPPORT_DIRS): Add "contrib".
1151
1152 2018-07-16 Nick Clifton <nickc@redhat.com>
1153
1154 * src-release.sh (DEVO_SUPPORT): Add test-driver and ar-lib.
1155
1156 2018-07-06 Sebastian Huber <sebastian.huber@embedded-brains.de>
1157
1158 * config.sub: Sync with upstream version 2018-07-03.
1159
1160 2018-07-05 Sebastian Huber <sebastian.huber@embedded-brains.de>
1161
1162 * config.guess: Sync with upstream version 2018-06-26.
1163 * config.sub: Sync with upstream version 2018-07-02.
1164
1165 2018-06-29 Alexandre Oliva <oliva@adacore.com>
1166
1167 * configure.ac: Introduce support for @unless/@endunless.
1168 * Makefile.tpl (dep-kind): Rewrite with cond; return
1169 postbootstrap in some cases.
1170 (make-postboot-dep, postboot-targets): New.
1171 (dependencies): Do not output postbootstrap dependencies at
1172 first. Output non-target ones changed for configure to depend
1173 on stage_last @if gcc-bootstrap, and the original deps @unless
1174 gcc-bootstrap.
1175 * configure.in, Makefile.in: Rebuilt.
1176
1177 2018-06-24 Nick Clifton <nickc@redhat.com>
1178
1179 * configure: Regenerate.
1180
1181 2018-06-19 Simon Marchi <simon.marchi@ericsson.com>
1182
1183 * libtool.m4: Use AC_LANG_SOURCE.
1184 * configure.ac: Remove AC_PREREQ, use AC_LANG_SOURCE.
1185 * README-maintainer-mode: Update version requirements.
1186 * ar-lib: New file.
1187 * test-driver: New file.
1188 * configure: Re-generate.
1189
1190 2018-06-18 Eric Botcazou <ebotcazou@adacore.com>
1191
1192 * Makefile.def (fortran): Add check-target-libgomp-fortran.
1193 * Makefile.tpl (check-target-libgomp-fortran): New phony target.
1194 * Makefile.in: Regenerate.
1195
1196 * configure: Regenerate.
1197
1198 2018-06-18 Simon Marchi <simon.marchi@ericsson.com>
1199
1200 * configure.ac: Sync with GCC, remove MPX-related things.
1201
1202 2018-05-01 Nick Clifton <nickc@redhat.com>
1203
1204 * config.guess: Synchronize with config project master sources.
1205 * config.sub: Likewise.
1206
1207 2018-05-01 Francois H. Theron <francois.theron@netronome.com>
1208
1209 * configure.ac: Added "nfp" target.
1210 * configure: Regenerate.
1211
1212 2018-02-13 Maciej W. Rozycki <macro@mips.com>
1213
1214 * configure.ac <wasm32-*-*> (noconfigdirs): Add `ld'.
1215 * configure: Regenerate.
1216
1217 2018-01-30 Nick Clifton <nickc@redhat.com>
1218
1219 * src-release.sh (do_proto_toplev): Add patterns for more junk files
1220 to delete before creating the tarball.
1221
1222 2018-01-29 Nick Clifton <nickc@redhat.com>
1223
1224 * src-release.sh (do_proto_toplev): Strip patch remnant files from
1225 the sources before creating the tarball.
1226
1227 2018-01-13 Nick Clifton <nickc@redhat.com>
1228
1229 * src-release.sh: Update copyright notice. Change reference to devo
1230 to be a reference to root.
1231
1232 2018-01-10 Nick Clifton <nickc@redhat.com>
1233
1234 * config-ml.in: Sync with gcc sources.
1235 * config.guess: Likewise.
1236 * config.sub: Likewise.
1237 * configure.ac: Likewise.
1238 * configure: Regenerate.
1239
1240 2017-12-14 Nick Clifton <nickc@redhat.com>
1241
1242 * COPYING.LIBGLOSS: Update address of FSF in copyright notice.
1243
1244 2017-12-12 Stafford Horne <shorne@gmail.com>
1245
1246 * configure.ac: Remove logic adding gdb to noconfigsdirs for or1k.
1247 * configure: Regenerate.
1248
1249 2017-09-15 Nick Clifton <nickc@redhat.com>
1250
1251 * src-release.sh (LZIPPROG): New define. Provides the name of the
1252 lzip program.
1253 (do_lz): New function. Compresses a tarball using the lzip
1254 program.
1255 (do_compress): Add support for lzip compression.
1256 (usage): Mention -l option.
1257 (build_release): Support -l option to invoke lzip compression.
1258
1259 2017-09-15 Alan Modra <amodra@gmail.com>
1260
1261 * src-release.sh (do_proto_toplev): Revert last patch. Enable or
1262 disable binutils, gas, gdb, gold, gprof, ld, libdecnumber, readline,
1263 and sim depending on $tool and $support_files. Echo configure line.
1264
1265 2017-09-14 Matt Rice <ratmice@gmail.com>
1266
1267 * src-release.sh (do_proto_toplev): Enable gold during release process.
1268
1269 2017-04-13 Andrew Jenner <andrew@codesourcery.com>
1270
1271 * config.sub: Sync with master version in config project.
1272
1273 2017-04-03 Andrew Jenner <andrew@codesourcery.com>
1274
1275 * config.sub: Handle ia16 in $basic_machine.
1276
1277 bfd/
1278 * config.bfd: Handle ia16.
1279
1280 gas/
1281 * configure.tgt: Handle ia16.
1282
1283 ld/
1284 * configure.tgt: Handle ia16.
1285
1286 2017-03-22 Nick Clifton <nickc@redhat.com>
1287
1288 * config.sub: Sync with master version in config project.
1289 * config.guess: Likewise.
1290
1291 2017-01-23 Nick Clifton <nickc@redhat.com>
1292
1293 * configure.ac: Update year in copyright notice.
1294 Sync from FSF GCC mainline, bringing in the following patches.
1295 * Makefile.def: Likewise.
1296 * Makefile.tpl: Likewise.
1297 * configure: Regenerate.
1298 * Makefile.in: Regenerate.
1299
1300 2016-12-21 Jakub Jelinek <jakub@redhat.com>
1301
1302 * configure.ac: Don't bootstrap libmpx unless --with-build-config
1303 includes bootstrap-mpx.
1304
1305 2016-12-01 Matthias Klose <doko@ubuntu.com>
1306
1307 * configure.ac: Don't use pkg-config to check for bdw-gc.
1308
1309 2016-11-30 Matthias Klose <doko@ubuntu.com>
1310
1311 * Makefile.def: Remove reference to boehm-gc target module.
1312 * configure.ac: Include pkg.m4, check for --with-target-bdw-gc
1313 options and for the bdw-gc pkg-config module.
1314
1315 2016-11-15 Matthias Klose <doko@ubuntu.com>
1316
1317 * config-ml.in: Remove references to GCJ.
1318 * configure.ac: Likewise.
1319
1320 2016-09-30 Jakub Jelinek <jakub@redhat.com>
1321
1322 * configure.ac: Add target-libffi to target_libraries.
1323 Readd libgcj target disablings, modified to only target-libffi.
1324 Readd target addition of go to unsupported languages.
1325
1326 2016-09-30 Andrew Haley <aph@redhat.com>
1327
1328 * Makefile.def: Remove libjava.
1329 * Makefile.tpl: Likewise.
1330 * configure.ac: Likewise.
1331
1332 2016-09-26 Anton Kolesov <Anton.Kolesov@synopsys.com>
1333
1334 * configure.ac: Disable "sim" directory for arc*-*-*.
1335
1336 2016-09-12 Maciej W. Rozycki <macro@imgtec.com>
1337
1338 * configure.ac: Check for the minimum in-tree MPFR version
1339 handled.
1340
1341 2016-12-31 Alan Modra <amodra@gmail.com>
1342
1343 * config.sub: Import from upstream.
1344
1345 2016-12-08 Alan Modra <amodra@gmail.com>
1346
1347 * configure: Regenerate.
1348
1349 2016-12-02 Josh Conner <joshconner@google.com>
1350
1351 * configure.ac: Add fuchsia to targets that use ELF.
1352 * configure: Regenerated.
1353
1354 2016-11-07 Doug Evans <dje@google.com>
1355
1356 * config.sub: Sync with upstream version 2016-11-03.
1357 git://git.sv.gnu.org/config.git
1358 * config.guess: Sync with upstream version 2016-10-02.
1359
1360 2016-09-27 Simon Marchi <simon.marchi@polymtl.ca>
1361
1362 * .gitignore: Add archives and make stamps.
1363
1364 2016-07-20 Yan-Ting Lin <currygt52@gmail.com>
1365
1366 * configure.ac (nds32*-*-*): Remove entry to enable gdb.
1367 * configure: Regenerated.
1368
1369 2016-06-28 Walter Lee <walt@tilera.com>
1370
1371 * configure.ac (tilepro-*-*): Add gdb to noconfigdirs.
1372 * configure: Regenerate.
1373
1374 2016-05-28 Alan Modra <amodra@gmail.com>
1375
1376 * Makefile.tpl (configure): Depend on m4 files included.
1377 * Makefile.in: Regenerate.
1378
1379 2016-05-27 Nick Clifton <nickc@redhat.com>
1380
1381 * config.guess (Alpha OSF1): Fix typo introduced during the most
1382 recent synchronization update.
1383
1384 2016-05-23 Nick Clifton <nickc@redhat.com>
1385
1386 * Import these patches from the gcc mainline:
1387
1388 2016-05-16 Jakub Sejdak <jakub.sejdak@phoesys.com>
1389
1390 * config.guess: Import version 2016-04-02 (newest).
1391 * config.sub: Import version 2016-05-10 (newest).
1392
1393 2016-04-19 Nick Clifton <nickc@redhat.com>
1394
1395 * Import this patch from the GCC mainline:
1396
1397 2016-04-13 Segher Boessenkool <segher@kernel.crashing.org>
1398
1399 PR bootstrap/70173
1400 * Makefile.tpl (local-distclean): Delete the libcc1, gnattools,
1401 and gotools directories. Delete the stage_final file.
1402 * Makefile.in: Regenerate.
1403
1404 2016-03-17 Cary Coutant <ccoutant@gmail.com>
1405
1406 * configure.ac: Add mips and s390 to the gold target check.
1407 * configure: Regenerate.
1408
1409 2016-02-10 Nick Clifton <nickc@redhat.com>
1410
1411 Import these patches from the GCC mainline:
1412
1413 2016-01-12 Andris Pavenis <andris.pavenis@iki.fi>
1414
1415 * configure.ac: Enable LTO for DJGPP
1416 * configure: Regenerate
1417
1418 2016-01-24 Mikhail Maltsev <maltsevm@gmail.com>
1419
1420 PR bootstrap/69329
1421 * Makefile.tpl (BASE_FLAGS_TO_PASS): Add LSAN_OPTIONS.
1422 * Makefile.in: Regenerate.
1423
1424 2016-01-25 Aditya Kumar <aditya.k7@samsung.com>
1425 Sebastian Pop <s.pop@samsung.com>
1426
1427 * Makefile.in: Regenerate.
1428 * Makefile.tpl: Export ISLVER.
1429 * configure: Regenerate.
1430 * config/isl.m4: Detect isl-0.15.
1431
1432 2016-01-29 Sebastian Pop <s.pop@samsung.com>
1433
1434 * config/isl.m4: Add comments about isl-0.16.
1435 * configure: Regenerate.
1436
1437 2016-01-12 H.J. Lu <hongjiu.lu@intel.com>
1438
1439 Sync with GCC
1440 2015-11-26 David Edelsohn <dje.gcc@gmail.com>
1441
1442 * m4/libtool.m4 (export_symbols_cmds) [AIX]: Add global TLS "L"
1443 symbols.
1444
1445 2016-01-12 Bernd Edlinger <bernd.edlinger@hotmail.de>
1446
1447 PR bootstrap/69134
1448 * Makefile.def (mpfr): Disable assembler.
1449 * Makefile.in: Regenerate.
1450
1451 2016-01-11 Nick Clifton <nickc@redhat.com>
1452
1453 Import the following changes from the GCC mainline:
1454
1455 2015-11-13 Tsvetkova Alexandra <aleksandra.tsvetkova@intel.com>
1456
1457 * configure.ac: Enable libmpx by default.
1458 * configure: Regenerated.
1459
1460 2015-11-19 Martin Liska <mliska@suse.cz>
1461
1462 * .gitignore: Add .clang-format to ignored files.
1463 * Makefile.tpl: Add clang-format.
1464 * Makefile.in: Regenerate.
1465
1466 2015-12-01 Andreas Tobler <andreast@gcc.gnu.org>
1467
1468 PR libffi/65726
1469 * Makefile.def (lang_env_dependencies): Make libffi depend
1470 on cxx.
1471 * Makefile.in: Regenerate.
1472
1473 2015-12-02 Ian Lance Taylor <iant@google.com>
1474
1475 PR go/66147
1476 * Makefile.tpl (HOST_EXPORTS): Add XGCC_FLAGS_FOR_TARGET.
1477 * Makefile.in: Regenerate.
1478
1479 2015-12-17 Nathan Sidwell <nathan@acm.org>
1480
1481 * config/isl.m4 (ISL_CHECK_VERSION): Add gmp libs.
1482 * configure: Regenerate.
1483
1484 2015-12-17 Sebastian Pop <s.pop@samsung.com>
1485
1486 * Makefile.in: Replace ISL with isl.
1487 * Makefile.tpl: Same.
1488 * config/isl.m4: Same.
1489 * configure.ac: Same.
1490 * contrib/download_prerequisites: Same.
1491 * configure: Regenerate.
1492
1493 2016-01-01 Ben Elliston <bje@gnu.org>
1494
1495 * config.guess: Import version 2016-01-01.
1496 * config.sub: Likewise.
1497
1498 2015-11-20 Tristan Gingold <gingold@adacore.com>
1499
1500 * configure.ac: Add aarch64-*-darwin* and arm-*-darwin*.
1501 * configure: Regenerate.
1502
1503 2015-10-21 Nick Clifton <nickc@redhat.com>
1504
1505 PR gas/19109
1506 * configure.ac: Note the 'none' is an acceptable argument to
1507 --enable-compressed-debug-sections.
1508 * configure: Regenerate.
1509
1510 2015-10-20 H.J. Lu <hongjiu.lu@intel.com>
1511
1512 PR gas/19109
1513 * configure.ac: Add
1514 --enable-compressed-debug-sections={all,gas,gold,ld}.
1515 * configure: Regenerated.
1516
1517 2015-09-30 Nick Clifton <nickc@redhat.com>
1518
1519 Import the following patches from the GCC mainline:
1520
1521 2015-08-23 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
1522
1523 PR libfortran/54572
1524 * Makefile.def: Make libgfortran depend on libbacktrace.
1525 * Makefile.in: Regenerate.
1526
1527 2015-08-12 Tom de Vries <tom@codesourcery.com>
1528
1529 PR other/67092
1530 PR other/67098
1531 * configure.ac: Remove --with_host_libstdcxx support.
1532 * configure: Regenerate.
1533
1534 2015-08-10 Thomas Schwinge <thomas@codesourcery.com>
1535 Jakub Jelinek <jakub@redhat.com>
1536
1537 * configure.ac (noconfigdirs): Don't add "target-libgomp" for target
1538 nvptx*-*-*.
1539 * configure: Regenerate.
1540
1541 2015-08-07 H.J. Lu <hongjiu.lu@intel.com>
1542
1543 Sync with GCC
1544 2015-07-28 Ben Elliston <bje@gnu.org>
1545
1546 * config.sub, config.guess: Import from upstream.
1547
1548 2015-08-06 Yaakov Selkowitz <yselkowi@redhat.com>
1549
1550 * Makefile.def (libiconv): Define bootstrap=true.
1551 Mark pdf/html/info as missing.
1552 (configure-gcc): Depend on all-libiconv.
1553 (all-gcc): Ditto.
1554 (configure-libcpp): Ditto.
1555 (all-libcpp): Ditto.
1556 (configure-intl): Ditto.
1557 (all-intl): Ditto.
1558 * Makefile.in: Regenerate.
1559
1560 2015-07-27 H.J. Lu <hongjiu.lu@intel.com>
1561
1562 Sync with GCC
1563 2015-07-24 Michael Darling <darlingm@gmail.com>
1564
1565 PR other/66259
1566 * config-ml.in: Reflects renaming of configure.in to configure.ac
1567 * configure: Likewise
1568 * configure.ac: Likewise
1569
1570 2015-07-14 H.J. Lu <hongjiu.lu@intel.com>
1571
1572 * Makefile.in: Regenerated.
1573
1574 Sync with GCC
1575 2015-05-21 Jason Merrill <jason@redhat.com>
1576
1577 * Makefile.tpl: Update comments.
1578
1579 2015-04-22 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
1580
1581 * Makefile.tpl: Remove surplus whitespace throughout.
1582
1583 2015-03-25 Martin Liska <mliska@suse.cz>
1584 Yury Gribov <y.gribov@samsung.com>
1585
1586 * Makefile.tpl: Fix ln source location for vimrc file.
1587
1588 2015-07-14 H.J. Lu <hongjiu.lu@intel.com>
1589
1590 Sync with GCC
1591 2015-05-16 James Bowman <james.bowman@ftdichip.com>
1592
1593 * configure.ac: FT32 target added.
1594 * configure: Regenerate.
1595
1596 2015-07-14 H.J. Lu <hongjiu.lu@intel.com>
1597
1598 Sync with GCC
1599 2015-06-02 Jason Merrill <jason@redhat.com>
1600
1601 PR bootstrap/66319
1602 * configure.ac: Use -std=gnu++98.
1603
1604 2015-05-28 Mike Frysinger <vapier@gentoo.org>
1605
1606 * configure.ac (--vtable-verify): Use AS_HELP_STRING for help.
1607 * configure: Regenerate.
1608
1609 2015-05-11 Paulo Matos <paulo@matos-sorge.com>
1610
1611 * configure.ac: Fix typo.
1612 * configure: Regenerate.
1613
1614 2015-05-03 Matthias Klose <doko@ubuntu.com>
1615
1616 * configure.ac: Match $host configured with triplets.
1617 * configure: Regenerate.
1618
1619 2015-04-17 Jakub Jelinek <jakub@redhat.com>
1620
1621 PR bootstrap/62077
1622 * configure.ac (--enable-stage1-checking): Default to
1623 release,misc,gimple,rtlflag,tree,types if --disable-checking
1624 or --enable-checking is not specified and DEV-PHASE is not
1625 experimental.
1626 * configure: Regenerated.
1627
1628 2015-03-27 Uros Bizjak <ubizjak@gmail.com>
1629
1630 Install back PR target/47230 fix (Revert the revert).
1631
1632 2015-06-30 H.J. Lu <hongjiu.lu@intel.com>
1633
1634 * configure.ac (ospace_frag): Enable for i?86*-*-elfiamcu
1635 target.
1636 * configure: Regenerate.
1637
1638 2015-05-13 John David Anglin <dave.anglin@bell.net>
1639
1640 * configure.ac: Disable configuration of GDB for HPUX targets.
1641 * configure: Regenerate.
1642
1643 2015-05-01 H.J. Lu <hongjiu.lu@intel.com>
1644
1645 PR ld/18355
1646 * Makefile.def: Add extra_configure_flags to host zlib.
1647 * configure.ac (extra_host_zlib_configure_flags): New. Set
1648 to --enable-host-shared When bfd is to be built as shared
1649 library. AC_SUBST.
1650 * Makefile.in: Regenerated.
1651
1652 2015-04-15 Mike Frysinger <vapier@gentoo.org>
1653 Hans-Peter Nilsson <hp@axis.com>
1654
1655 Adjust src-release.sh for sim using the gdb create-version.sh.
1656 * src-release.sh (tar_compress): If there's a fifth parameter,
1657 use that in the getver call instead of $tool.
1658 (sim_release): Pass gdb as fifth parameter to tar_compress.
1659 (SIM_SUPPORT_DIRS): Add gdb/common/create-version.sh.
1660
1661 2015-04-14 Max Ostapenko <m.ostapenko@partner.samsung.com>
1662
1663 * Makefile.tpl (EXTRA_HOST_EXPORTS): New variables.
1664 (EXTRA_BOOTSTRAP_FLAGS): Likewise.
1665 (check-[+module+]): Add EXTRA_HOST_EXPORTS and EXTRA_BOOTSTRAP_FLAGS.
1666 * Makefile.in: Regenerate.
1667
1668 2015-04-01 H.J. Lu <hongjiu.lu@intel.com>
1669
1670 * configure.ac: Add --with-system-zlib.
1671 * configure: Regenerated.
1672
1673 2015-03-31 H.J. Lu <hongjiu.lu@intel.com>
1674
1675 * src-release.sh: Don't configure with --with-target-subdir=.
1676 --disable-multilib.
1677
1678 2015-03-31 H.J. Lu <hongjiu.lu@intel.com>
1679
1680 * src-release.sh (DEVO_SUPPORT): Replace src-release with
1681 src-release.sh.
1682
1683 2015-03-30 Ed Schouten <ed@nuxi.nl>
1684
1685 * config.sub: Update from upstream, to 2015-03-04 version.
1686 * config.guess: Likewise.
1687
1688 2015-03-30 H.J. Lu <hongjiu.lu@intel.com>
1689
1690 * Makefile.def (dependencies): Add all-zlib to all-bfd.
1691 * Makefile.in: Regenerated.
1692
1693 2015-03-28 H.J. Lu <hongjiu.lu@intel.com>
1694
1695 * src-release.sh (do_proto_toplev): Configure with --target
1696 --with-target-subdir and --disable-multilib.
1697 (BINUTILS_SUPPORT_DIRS): Add zlib.
1698 (GAS_SUPPORT_DIRS): Likewise.
1699 (GDB_SUPPORT_DIRS): Likewise.
1700 (SIM_SUPPORT_DIRS): Likewise.
1701
1702 2015-03-17 H.J. Lu <hongjiu.lu@intel.com>
1703
1704 * configure.ac (target_configdirs): Exclude target-zlib if
1705 target-libjava isn't built.
1706 * configure: Regenerated.
1707
1708 2015-03-17 H.J. Lu <hongjiu.lu@intel.com>
1709
1710 Sync with GCC
1711 2014-06-13 Thomas Schwinge <thomas@codesourcery.com>
1712
1713 * config-ml.in: Robustify ac_configure_args parsing.
1714
1715 2015-03-16 H.J. Lu <hongjiu.lu@intel.com>
1716
1717 * Makefile.def: Updated from GCC trunk.
1718 * Makefile.tpl: Likewise.
1719 * configure.ac: Likewise.
1720 * Makefile.in: Regenerated.
1721 * configure: Likewise.
1722
1723 2015-01-28 James Bowman <james.bowman@ftdichip.com>
1724
1725 * configure.ac: Add FT32 support.
1726 * configure: Regenerate.
1727
1728 2015-01-12 Anthony Green <green@moxielogic.com>
1729
1730 * configure.ac: Don't disable gprof for moxie.
1731 * configure: Rebuild.
1732
1733 2015-01-03 Andrew Pinski <apinski@cavium.com>
1734
1735 * Makefile.def (flags_to_pass): Pass OBJCOPY_FOR_TARGET also.
1736 * Makefile.tpl (HOST_EXPORTS): Add OBJCOPY_FOR_TARGET.
1737 (BASE_TARGET_EXPORTS): Add OBJCOPY.
1738 (OBJCOPY_FOR_TARGET): New variable.
1739 (EXTRA_TARGET_FLAGS): Add OBJCOPY.
1740 * Makefile.in: Regenerate.
1741 * configure.ac: Check for already installed target objcopy.
1742 Also GCC_TARGET_TOOL on objcopy.
1743 * configure: Regenerate.
1744
1745 2015-01-02 Hans-Peter Nilsson <hp@bitrange.com>
1746
1747 * config.sub: Update from upstream, to 2015-01-01 version.
1748 * config.guess: Ditto.
1749
1750 2014-12-06 Eric Botcazou <ebotcazou@adacore.com>
1751
1752 * config.sub: Update from upstream config repo.
1753
1754 2014-11-24 H.J. Lu <hongjiu.lu@intel.com>
1755
1756 * libtool.m4: Updated from GCC trunk.
1757
1758 2014-11-16 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1759
1760 * config.guess: Update from upstream config repo.
1761 * config.sub: Ditto.
1762
1763 2014-11-16 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1764
1765 * move-if-change: Update from upstream gnulib.
1766
1767 2014-11-16 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1768
1769 * compile: Sync with upstream Automake.
1770 * depcomp: Ditto.
1771 * install-sh: Ditto.
1772 * missing: Ditto.
1773 * mkinstalldirs: Ditto.
1774 * ylwrap: Ditto.
1775
1776 2014-10-15 Tristan Gingold <gingold@adacore.com>
1777
1778 * src-release.sh (do_proto_toplev): Configure with --target.
1779
1780 2014-10-03 Jing Yu <jingyu@google.com>
1781
1782 * configure.ac: Add aarch64 to list of targets that support gold.
1783 * configure: Regenerate.
1784
1785 2014-09-12 Andrew Bennett <andrew.bennett@imgtec.com>
1786
1787 * configure.ac: Add mips*-img-elf* target triple.
1788 * configure: Regenerate.
1789
1790 2014-09-06 Kuan-Lin Chen <kuanlinchentw@gmail.com>
1791 * configure: Disable gdb for nds32*-*-* until supported.
1792 * configure.ac: Disable gdb for nds32*-*-* until supported.
1793
1794 2014-09-05 Joel Brobecker <brobecker@adacore.com>
1795
1796 * configure: Regenerate.
1797
1798 2014-08-27 Will Newton <will.newton@linaro.org>
1799
1800 * src-release.sh: New file.
1801 * src-release: Remove file.
1802
1803 2014-07-27 Joel Sherrill <joel.sherrill@oarcorp.com>
1804
1805 GDB not supported for or1k*-*-rtems*
1806 * configure.ac (or1k*-*-rtems*): gdb not supported. The ordering
1807 of the stanzas results in this not being caught by or1k*-*-* later.
1808 * configure. Regenerated.
1809
1810 2014-07-25 Samuel Bronson <naesten@gmail.com>
1811
1812 * .gitattributes: New file for use with git-merge-changelog.
1813
1814 2014-07-21 Joel Sherrill <joel.sherrill@oarcorp.com>
1815
1816 Disable gdb for or1k*-*-* until supported
1817 * configure.ac (or1k*-*-*): Disable gdb.
1818 * configure: Regenerated.
1819
1820 2014-05-14 Sandra Loosemore <sandra@codesourcery.com>
1821
1822 * configure.ac (target_makefile_frag): Set for nios2-*-elf*.
1823 * configure: Regenerated.
1824
1825 2014-03-26 Jakub Jelinek <jakub@redhat.com>
1826
1827 PR sanitizer/56781
1828 * Makefile.def: Set bootstrap=true; for host fixincludes.
1829 * configure.ac: Don't bootstrap host fixincludes unless
1830 --with-build-config=bootstrap-{a,ub}san.
1831 * Makefile.in: Regenerated.
1832 * configure: Regenerated.
1833
1834 2014-03-21 Jakub Jelinek <jakub@redhat.com>
1835
1836 * configure.ac: Move BUILD_CONFIG set up earlier. Add
1837 --enable-vtable-verify option parsing. Don't add
1838 target-libsanitizer to bootstrap_target_libs unless
1839 --with-build-config=bootstrap-asan or
1840 --with-build-config=bootstrap-ubsan. Don't add target-libvtv
1841 to bootstrap_target_libs unless --enable-vtable-verify.
1842 * configure: Regenerated.
1843
1844 2014-03-07 Jakub Jelinek <jakub@redhat.com>
1845
1846 PR bootstrap/58572
1847 * Makefile.tpl (POSTSTAGE1_CXX_EXPORT): Use -isystem instead of
1848 -I for libstdc++-v3 includes if $(LEAN).
1849 * Makefile.in: Regenerated.
1850
1851 2014-02-24 Walter Lee <walt@tilera.com>
1852
1853 * configure.ac (tilepro-*-*) Change to tilepro*-*-*.
1854 (tilegx-*-*): Change to tilegx*-*-*.
1855 * configure: Regenerate.
1856
1857 2014-05-01 Richard Sandiford <rdsandiford@googlemail.com>
1858
1859 * config.sub, config.guess: Import from upstream.
1860
1861 2014-04-04 Eric Botcazou <ebotcazou@adacore.com>
1862
1863 PR bootstrap/60620
1864 * Makefile.def (dependencies): Make gnattools depend on libstdc++-v3.
1865 * Makefile.in: Regenerate.
1866
1867 2014-03-28 Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
1868
1869 * Makefile.def (dependencies): Make all-ld depend on all-binutils
1870 for WINDRES_FOR_TARGET in default-manifest.o rule.
1871 * Makefile.in: Regenerate.
1872
1873 2014-02-04 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
1874
1875 PR target/59788
1876 * ltmain.sh (opt_duplicate_compiler_generated_deps): Enable on
1877 *solaris2*.
1878
1879 2013-12-19 Keven Boell <keven.boell@intel.com>
1880
1881 * cp-namespace.c (cp_lookup_nested_symbol): Enable
1882 nested lookups for fortran modules.
1883 * dwarf2read.c (read_module): Add fortran module to
1884 the symbol table.
1885 (add_partial_symbol, add_partial_module): Add fortran
1886 module to the partial symbol table.
1887 (new_symbol_full): Create full symbol for fortran module.
1888 * f-exp.y (yylex): Add new module domain to be parsed.
1889 * symtab.h: New domain for fortran modules.
1890
1891 2013-12-19 Keven Boell <keven.boell@intel.com>
1892
1893 * f-exp.y (yylex): Add domain array to enable lookup
1894 in multiple domains. Loop over lookup domains and try
1895 to find requested symbol. Add STRUCT_DOMAIN to lookup
1896 domains to be able to query for user defined types.
1897
1898 2013-12-13 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
1899
1900 * configure.ac: Add user-friendly check for native x86_64-linux
1901 multilibs.
1902 * configure: Regenerate.
1903
1904 2013-11-23 Alan Modra <amodra@gmail.com>
1905
1906 * config.sub, config.guess: Import from upstream.
1907
1908 2013-11-07 Thomas Schwinge <thomas@codesourcery.com>
1909
1910 * Makefile.in: Regenerate.
1911
1912 * Makefile.tpl: Fix typo.
1913 * Makefile.in: Regenerate partially.
1914
1915 2013-11-04 Balaji V. Iyer <balaji.v.iyer@intel.com>
1916
1917 * configure.ac: Added libcilkrts to noconfig list when C++ is not
1918 supported.
1919 * configure: Regenerated.
1920
1921 2013-10-30 Jason Merrill <jason@redhat.com>
1922
1923 * Makefile.tpl (STAGE1_CONFIGURE_FLAGS): Pass
1924 --disable-build-format-warnings.
1925
1926 2013-10-29 Balaji V. Iyer <balaji.v.iyer@intel.com>
1927
1928 * Makefile.def: Add libcilkrts to target_modules. Make libcilkrts
1929 depend on libstdc++ and libgcc.
1930 * configure: Regenerate.
1931 * configure.ac: Added libcilkrts to target binaries. Also, restrict
1932 libcilkrts for POSIX and i*86, and x86_64 architectures.
1933 * Makefile.in: Added libcilkrts related fields to support building it.
1934
1935 2013-10-26 Jeff Law <law@redhat.com>
1936
1937 * Makefile.def (target_modules): Remove libmudflap
1938 (languages): Remove check-target-libmudflap).
1939 * Makefile.in: Rebuilt.
1940 * Makefile.tpl (check-target-libmudflap-c++): Remove.
1941 * configure.ac (target_libraries): Remove target-libmudflap.
1942 Remove checks which disabled libmudflap on some systems.
1943 * configure: Rebuilt.
1944 * libmudflap: Directory removed.
1945
1946 2013-10-16 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1947
1948 * configure.ac: Update from GCC.
1949 * configure: Regenerate.
1950
1951 2013-10-15 Hans-Peter Nilsson <hp@axis.com>
1952
1953 * src-release (do-proto-toplevel): Support subdir-path-prefixed
1954 files in SUPPORT_FILES.
1955 (SIM_SUPPORT_DIRS): New variable.
1956 (sim.tar.bz2): New rule.
1957
1958 2013-10-08 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1959
1960 * configure.ac: Update from GCC.
1961 * configure: Regenerate.
1962
1963 2013-10-01 Jeff Johnston <jjohnstn@redhat.com>
1964
1965 * COPYING.NEWLIB: Update with new copyright.
1966
1967 2013-09-21 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1968
1969 * configure.ac: Update from GCC.
1970 * configure: Regenerate.
1971
1972 2013-09-20 Alan Modra <amodra@gmail.com>
1973
1974 * libtool.m4 (_LT_ENABLE_LOCK <ld -m flags>): Remove non-canonical
1975 ppc host match. Support little-endian powerpc linux hosts.
1976
1977 2013-08-16 Joel Brobecker <brobecker@adacore.com>
1978
1979 * src-release (VER): When using $(TOOL)/common/create-version.sh,
1980 strip the "-cvs" suffix from the version number if present.
1981
1982 2013-08-12 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1983
1984 * configure.ac: Sync with GCC repo.
1985 * Makefile.def: Ditto.
1986 * configure: Regenerate.
1987 * Makefile.in: Ditto.
1988
1989 2013-07-22 Joel Brobecker <brobecker@adacore.com>
1990
1991 * src-release (VER): Use $(TOOL)/common/create-version.sh
1992 if it exists.
1993
1994 2013-06-22 Richard Sandiford <rdsandiford@googlemail.com>
1995
1996 * configure.ac (mips*-*-bsd*, mips*-*-ultrix*, mips*-*-osf*)
1997 (mips*-*-ecoff*, mips*-*-pe*, mips*-*-irix* [v4 and earlier])
1998 (mips*-*-lnews*, mips*-*-riscos*): Add gas and ld to noconfigdirs.
1999 * configure: Regenerate.
2000
2001 2013-06-01 George Thomas <george.thomas@atmel.com>
2002
2003 * include/opcode/avr.h: Rename AVR_ISA_XCH to AVR_ISA_RMW. Remove
2004 from AVR_ISA_XMEGA and add new AVR_ISA_XMEGAU
2005
2006 2013-05-06 Sandra Loosemore <sandra@codesourcery.com>
2007
2008 * COPYING.NEWLIB: Add Altera Corporation copyright.
2009
2010 2013-04-29 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2011
2012 * config.guess: Update from config repo.
2013 * config.sub: Ditto.
2014
2015 2013-04-22 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2016
2017 * Makefile.def: Sync with GCC.
2018 * Makefile.in: Regenerate.
2019
2020 2013-04-22 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2021
2022 * configure.ac: Sync with GCC.
2023 * configure: Regenerate.
2024
2025 2013-03-22 Mike Frysinger <vapier@gentoo.org>
2026
2027 * src-release (VER): Change bfd/configure.in sed to use the new
2028 `bfd/configure --version` output.
2029
2030 2013-02-15 Yufeng Zhang <yufeng.zhang@arm.com>
2031
2032 * configure.ac: Sync with GCC repo.
2033 * configure: Ditto.
2034
2035 2013-02-05 Ian Lance Taylor <iant@google.com>
2036
2037 PR go/55969
2038 * configure.ac: Disable libgo on some systems where it does not
2039 work.
2040 * configure: Rebuild.
2041
2042 2013-02-05 Alan Modra <amodra@gmail.com>
2043
2044 * configure: Regenerate after syncing config/.
2045
2046 2013-01-15 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2047
2048 * configure.ac: Sync with GCC repo.
2049 * configure: Ditto.
2050 * Makefile.def: Ditto.
2051 * Makefile.in: Ditto.
2052
2053 2013-01-11 Joel Brobecker <brobecker@adacore.com>
2054
2055 Sync with GCC, merge:
2056
2057 2013-01-09 Jason Merrill <jason@redhat.com>
2058
2059 * .gitignore: Import from gdb repository.
2060
2061 2013-01-11 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2062
2063 * config.sub: Update from config repo.
2064
2065 2013-01-11 Eric Botcazou <ebotcazou@adacore.com>
2066
2067 * Makefile.tpl (BOOT_ADAFLAGS): Remove -gnata.
2068 * Makefile.in: Regenerate.
2069
2070 2013-01-09 H.J. Lu <hongjiu.lu@intel.com>
2071
2072 * Makefile.def (configure-gcc): Depend on all-gmp.
2073 (all-gcc): Remove dependency on all-gmp.
2074 * Makefile.in: Regenerated.
2075
2076 2013-01-08 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2077
2078 * config.guess: Update from config repo.
2079 * config.sub: Ditto.
2080
2081 2013-01-07 Jeff Johnston <jjohnstn@redhat.com>
2082
2083 * COPYING.LIBGLOSS: Remove license for mips/lsi33k-stub.h which no longer
2084 exists and replace the new bfin license in its location.
2085
2086 2013-01-07 H.J. Lu <hongjiu.lu@intel.com>
2087
2088 PR gas/14899
2089 * Makefile.def (dependencies): Make all-binutils, all-gprof,
2090 all-ld and all-gold depend on all-gas.
2091 * Makefile.in: Regenerated.
2092
2093 2012-12-29 Ben Elliston <bje@gnu.org>
2094
2095 * config.guess: Update to 2012-12-29 version.
2096 * config.sub: Likewise.
2097
2098 2012-12-20 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2099
2100 * Makefile.def (install-target-libgo): Depend on
2101 install-target-libatomic. Merged from GCC repo.
2102 * Makefile.in: Regenerate.
2103
2104 2012-12-17 Jeff Johnston <jjohnstn@redhat.com>
2105
2106 * COPYING.LIBGLOSS: Add license for bfin libgloss.
2107
2108 2012-12-16 Thomas Schwinge <thomas@codesourcery.com>
2109
2110 * configure.ac (ENABLE_GOLD): Consider *-*-gnu* targets ELF.
2111 * configure: Regenerate.
2112
2113 2012-12-11 H.J. Lu <hongjiu.lu@intel.com>
2114
2115 * Makefile.def (target_modules): Add bootstrap=true and
2116 raw_cxx=true to libsanitizer.
2117 * configure.ac (bootstrap_target_libs): Add libsanitizer.
2118 * Makefile.in: Regenerated.
2119 * configure: Likewise.
2120
2121 2012-12-08 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2122
2123 * config.sub: Merge from config repo.
2124
2125 2012-11-30 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2126
2127 * configure.ac: Merge from GCC.
2128 * Makefile.tpl: Ditto.
2129 * Makefile.in: Ditto.
2130 * configure: Ditto.
2131
2132 2012-11-28 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2133
2134 * configure.ac (noconfigdirs): Merge from GCC.
2135 * configure: Regenerate.
2136
2137 2012-11-19 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2138
2139 * config.sub (arm): Merge from upstream: Handle armv[6-8] targets.
2140
2141 2012-11-14 Roland McGrath <mcgrathr@google.com>
2142
2143 * configure.ac (ENABLE_GOLD): Consider *-*-nacl* targets ELF.
2144 * configure: Regenerate.
2145
2146 2012-11-13 Richard Henderson <rth@redhat.com>
2147
2148 * configure.ac: Move libsanitizer logic to subdirectory.
2149 * configure: Regenerate.
2150
2151 2012-11-13 Dodji Seketeli <dodji@redhat.com>
2152
2153 * configure.ac: Enable libsanitizer just on x86 linux for now.
2154 * configure: Re-generate.
2155
2156 2012-11-13 David Edelsohn <dje.gcc@gmail.com>
2157
2158 * configure.ac: Merge libquadmath sections.
2159 * configure: Regenerate.
2160
2161 2012-11-12 Wei Mi <wmi@google.com>
2162
2163 * configure.ac: Add libsanitizer to target_libraries.
2164 * Makefile.def: Ditto.
2165 * configure: Regenerate.
2166 * Makefile.in: Regenerate.
2167
2168 2012-11-03 H.J. Lu <hongjiu.lu@intel.com>
2169
2170 * configure: Regenerated.
2171
2172 2012-11-03 Robert Mason <rbmj@verizon.net>
2173
2174 * configure.ac: add --disable-libstdcxx configure option
2175 and handle defaulted state only for VxWorks, ARM-wince-pe and AVR.
2176
2177 2012-10-24 Corinna Vinschen <corinna@vinschen.de>
2178
2179 * configure.ac (FLAGS_FOR_TARGET,target=cygwin): Fix for building
2180 against Mingw64 w32api.
2181 * configure: Regenerate.
2182
2183 2012-10-23 Eric Botcazou <ebotcazou@adacore.com>
2184
2185 PR bootstrap/54820
2186 * configure.ac (have_static_libs): Force 'no' for GCC version < 4.5.
2187 * configure: Regenerate.
2188
2189 2012-10-22 Eric Botcazou <ebotcazou@adacore.com>
2190
2191 PR bootstrap/54820
2192 * Makefile.tpl (STAGE1_FLAGS_TO_PASS): New variable.
2193 (all-[+prefix+][+module+]): Pass stage1_args to sub-makes.
2194 (all-stage[+id+]-[+prefix+][+module+]): Likewise, if prev is false.
2195 (clean-stage[+id+]-[+prefix+][+module+]): Likewise, if prev is false.
2196 (host_modules): Set stage1_args to STAGE1_FLAGS_TO_PASS.
2197 * Makefile.in: Regenerate.
2198 * configure.ac (have_static_libs): New variable and associated check.
2199 (stage1-ldflags): Move to after stage1_libs and set to -static-libstdc++
2200 -static-libgcc if stage1_libs is empty and have_static_libs is yes.
2201 * configure: Regenerate.
2202
2203 2012-10-10 David Holsgrove <david.holsgrove@xilinx.com>
2204
2205 * config.guess, config.sub: Include updated version from
2206 config-patches. Adds microblaze little endian support.
2207
2208 2012-09-28 Ian Lance Taylor <iant@google.com>
2209
2210 * Makefile.def: Make all-target-libgo depend on
2211 all-target-libbacktrace.
2212 * Makefile.in: Rebuild.
2213
2214 2012-09-26 Ian Lance Taylor <iant@google.com>
2215
2216 * Makefile.def: Make all-gcc depend on all-libbacktrace.
2217 * Makefile.in: Rebuild.
2218
2219 2012-09-06 Diego Novillo <dnovillo@google.com>
2220
2221 * configure.ac: Bump minimum GMP version to 4.2.3.
2222 * configure: Re-generate.
2223
2224 2012-09-05 Georg-Johann Lay <avr@gjlay.de>
2225
2226 PR target/54461
2227 * configure.ac (noconfigdirs,target=avr-*-*): Add target-newlib,
2228 target-libgloss if not configured --with-avrlibc=no.
2229 * configure: Regenerate.
2230
2231 2012-09-04 Jason Merrill <jason@redhat.com>
2232
2233 * configure.ac: Fix --enable-languages=all.
2234
2235 2012-09-03 Richard Guenther <rguenther@suse.de>
2236
2237 PR bootstrap/54138
2238 * configure.ac: Re-organize ISL / CLOOG checks to allow
2239 disabling with either --without-isl or --without-cloog.
2240 * configure: Regenerated.
2241
2242 2012-09-03 Georg-Johann Lay <avr@gjlay.de>
2243
2244 * configure.ac (noconfigdirs,target=avr): Add target-libquadmath.
2245 * configure: Regenerate.
2246
2247 2012-09-21 Steve Ellcey <sellcey@mips.com>
2248
2249 * configure.ac: Add mips*-mti-elf* target.
2250 * configure: Regenerate.
2251
2252 2012-09-19 Ian Lance Taylor <iant@google.com>
2253
2254 * configure.ac (host_libs): Add libbacktrace.
2255 (target_libraries): Add libbacktrace.
2256 * Makefile.def (host_modules): Add libbacktrace.
2257 (target_modules): Likewise.
2258 * configure, Makefile.in: Rebuild.
2259
2260 2012-09-15 Jiong Wang <jiwang@tilera.com>
2261
2262 * configure.ac (ENABLE_GOLD): support tilegx*
2263 * configure: rebuild
2264
2265 2012-09-14 David Edelsohn <dje.gcc@gmail.com>
2266
2267 PR target/38607
2268 Merge upstream change.
2269 * libtool.m4 (_LT_COMPILER_PIC): Add -fPIC to GCC and GXX for AIX.
2270
2271 * configure.ac: Add target-libquadmath to noconfigdirs for AIX.
2272 Add libgomp*.o to compare_exclusions for AIX.
2273 * configure: Regenerate.
2274
2275 2012-08-26 H.J. Lu <hongjiu.lu@intel.com>
2276
2277 PR binutils/4970
2278 * Makefile.def (host_modules): Rmove lib_path=.libs from bfd
2279 and opcodes.
2280 * Makefile.in: Regenerated.
2281
2282 2012-08-14 Diego Novillo <dnovillo@google.com>
2283
2284 Merge from cxx-conversion branch.
2285
2286 * Makefile.tpl (STAGE[+id+]_CXXFLAGS): Remove
2287 POSTSTAGE1_CONFIGURE_FLAGS.
2288 * Makefile.in: Regenerate.
2289 * configure.ac (ENABLE_BUILD_WITH_CXX): Remove. Update all users.
2290 Force C++ when bootstrapping.
2291 * configure: Regenerate.
2292
2293 2012-07-06 Richard Guenther <rguenther@suse.de>
2294
2295 * Makefile.def (cloog): Pass $(HOST_GMPINC) and $(HOST_ISLINC)
2296 as CPPFLAGS, pass path to built gmp as LDFLAGS, always use
2297 --with-gmp=system.
2298 * Makefile.in: Regenerated.
2299 * configure: Likewise.
2300
2301 2012-07-06 Richard Guenther <rguenther@suse.de>
2302
2303 * configure.ac (extra_isl_gmp_configure_flags): Initialize and subst.
2304 * Makefile.def (isl): Use extra_isl_gmp_configure_flags and
2305 supply V=1 as extra_make_flags.
2306 * configure: Regenerated.
2307 * Makefile.in: Likewise.
2308
2309 2012-07-03 Richard Guenther <rguenther@suse.de>
2310
2311 * Makfile.def (isl): Remove not necessary extra_exports and
2312 extra_make_flags.
2313 (cloog): Use $$CPPFLAGS instead of ${CPPFLAGS}.
2314 * Makefile.in: Regenerated.
2315
2316 2012-07-03 Richard Guenther <rguenther@suse.de>
2317
2318 * Makefile.def (cloog): Add V=1 to extra_make_flags.
2319 * configure.ac: If either the ISL or the CLooG check failed
2320 do not try to build in-tree versions.
2321 * Makefile.in: Regenerated.
2322 * configure: Regenerated.
2323
2324 2012-07-02 Richard Guenther <rguenther@suse.de>
2325 Michael Matz <matz@suse.de>
2326 Tobias Grosser <tobias@grosser.es>
2327 Sebastian Pop <sebpop@gmail.com>
2328
2329 * Makefile.def: Add ISL host module, remove PPL host module.
2330 Adjust ClooG host module to use the proper ISL.
2331 * Makefile.tpl: Pass ISL include flags instead of PPL ones.
2332 * configure.ac: Include config/isl.m4. Add ISL host library,
2333 remove PPL. Remove PPL configury, add ISL configury, adjust
2334 ClooG configury.
2335 * Makefile.in: Regenerated.
2336 * configure: Likewise.
2337
2338 2012-07-02 Richard Guenther <rguenther@suse.de>
2339
2340 Merge from graphite branch
2341 2011-07-21 Tobias Grosser <tobias@grosser.es>
2342
2343 * configure: Regenerated.
2344 * config/cloog.m4: Remove support for CLooG-ppl and CLooG-parma,
2345 both cloog.org and legacy versions. The only supported version will
2346 be CLooG with the isl backend.
2347
2348 2011-07-21 Tobias Grosser <tobias@grosser.es>
2349
2350 * configure: Regenerated.
2351 * configure.ac: Require cloog isl 0.17.0
2352
2353 2011-07-21 Tobias Grosser <tobias@grosser.es>
2354
2355 * configure: Regenerated.
2356 * config/cloog.m4: Do not define CLOOG_ORG
2357
2358 2012-06-29 Steven Bosscher <steven@gcc.gnu.org>
2359
2360 * configure.ac: Skip C if explicitly selected.
2361 * configure: Regenerate.
2362
2363 2012-06-28 Christophe Lyon <christophe.lyon@st.com>
2364
2365 * configure.ac (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Make sure
2366 they contain -O2.
2367 * configure: Regenerate.
2368
2369 2012-06-20 Jason Merrill <jason@redhat.com>
2370
2371 * Makefile.tpl (check-target-libgomp-c++): New.
2372 (check-target-libitm-c++): New.
2373 * Makefile.def (c++): Add them.
2374 * Makefile.in: Regenerate.
2375
2376 2012-05-16 Olivier Hainque <hainque@adacore.com>
2377
2378 * Makefile.tpl (gcc-no-fixedincludes): Rename into ...
2379 (gcc-install-no-fixedincludes): Now forwarder to local target in gcc/
2380 (install-no-fixedincludes): Adjust accordingly.
2381 * Makefile.in: Regenerate.
2382
2383 2012-05-09 Nick Clifton <nickc@redhat.com>
2384 Paul Smith <psmith@gnu.org>
2385
2386 PR bootstrap/50461
2387 * configure.ac (mpfr-dir): When using in-tree MPFR sources
2388 allow for the fact that from release v3.1.0 of MPFR the source
2389 files were moved into a src sub-directory.
2390 * configure: Regenerate.
2391
2392 2012-05-07 Janne Blomqvist <jb@gcc.gnu.org>
2393
2394 * configure.ac: Bump minimum MPFR version to 2.4.0.
2395 * configure: Regenerated.
2396
2397 2012-05-01 Richard Henderson <rth@redhat.com>
2398
2399 * Makefile.def (libatomic): New target_module.
2400 * configure.ac (target_libraries): Add libatomic.
2401 (noconfigdirs): Check if libatomic is supported.
2402 * Makefile.in, configure: Rebuild.
2403
2404 2012-05-15 H.J. Lu <hongjiu.lu@intel.com>
2405
2406 Merge upstream change
2407 * libtool.m4 (_LT_ENABLE_LOCK): Support x32.
2408
2409 2011-11-21 Andreas Tobler <andreast@fgznet.ch>
2410
2411 * libtool.m4: Additional FreeBSD 10 fixes.
2412
2413 2012-06-28 Christophe Lyon <christophe.lyon@st.com>
2414
2415 * configure.ac (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Make sure
2416 they contain -O2.
2417 * configure: Regenerate.
2418
2419 2012-05-14 Catherine Moore <clm@codesourcery.com>
2420
2421 * NEWS: Mention PowerPC VLE port.
2422
2423 2012-05-11 Mike Frysinger <vapier@gentoo.org>
2424
2425 * MAINTAINERS (config/): Move to intl/ section.
2426 (compile; depcomp; install-sh; missing; ylwrap): Likewise.
2427
2428 2012-05-09 Nick Clifton <nickc@redhat.com>
2429 Paul Smith <psmith@gnu.org>
2430
2431 PR bootstrap/50461
2432 * configure.ac (mpfr-dir): When using in-tree MPFR sources
2433 allow for the fact that from release v3.1.0 of MPFR the source
2434 files were moved into a src sub-directory.
2435 * configure: Regenerate.
2436
2437 2012-05-02 Roland McGrath <mcgrathr@google.com>
2438
2439 * configure.ac (ENABLE_GOLD): Consider *-*-nacl* targets ELF.
2440 * configure: Regenerate.
2441
2442 2012-04-25 Joel Brobecker <brobecker@adacore.com>
2443
2444 * config.sub: Update to 2012-04-18 version from official repo.
2445
2446 2012-03-19 Tristan Gingold <gingold@adacore.com>
2447
2448 * configure.ac (ia64*-*-*vms*): Add support for ld.
2449 * configure: Regenerate.
2450
2451 2012-03-14 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2452
2453 * configure.ac (enable_libgomp): Remove *-*-irix6*.
2454 (unsupported_languages): Remove mips-sgi-irix6.*.
2455 (noconfigdirs): Don't add ${libgcj} for mips*-*-irix6*.
2456 (with_stabs): Remove.
2457 * configure: Regenerate.
2458
2459 2012-03-12 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2460
2461 * configure.ac (enable_libgomp): Remove *-*-osf*.
2462 (with_stabs): Remove alpha*-*-osf*.
2463 * configure: Regenerate.
2464
2465 2012-03-09 Jeff Johnston <jjohnstn@redhat.com>
2466
2467 * COPYING.NEWLIB: Modify DJ Delorie license to include
2468 modification rights in clause as permitted by DJ Delorie.
2469 * COPYING.LIBGLOSS: Ditto.
2470
2471 2012-03-09 Jeff Johnston <jjohnstn@redhat.com>
2472
2473 * COPYING.NEWLIB: Remove two unused licenses.
2474
2475 2012-03-05 Tristan Gingold <gingold@adacore.com>
2476
2477 * configure.ac: Enable gdb and readline for ia64*-*-*vms*.
2478 * configure: Regenerate.
2479
2480 2012-02-21 Joern Rennecke <joern.rennecke@embecosm.com>
2481
2482 * COPYING.NEWLIB: Add Adapteva notice.
2483 * COPYING.LIBGLOSS: Add Adapteva notice.
2484
2485 2011-12-18 Eric Botcazou <ebotcazou@adacore.com>
2486
2487 * configure: Regenerate.
2488
2489 2011-12-15 Jeff Johnston <jjohnstn@redhat.com>
2490
2491 * COPYING.LIBGLOSS: Add GPL with exception license.
2492
2493 2011-11-09 Roland McGrath <mcgrathr@google.com>
2494
2495 * configure.ac: Add tool checks for READELF and READELF_FOR_TARGET.
2496 * configure: Rebuild.
2497 * Makefile.def (flags_to_pass): Add READELF_FOR_TARGET.
2498 * Makefile.tpl (READELF, READELF_FOR_TARGET): New variables.
2499 (HOST_EXPORTS): Add READELF, READELF_FOR_TARGET.
2500 (BASE_FLAGS_TO_PASS): Add READELF_FOR_TARGET.
2501 (BASE_TARGET_EXPORTS, EXTRA_HOST_FLAGS, EXTRA_TARGET_FLAGS):
2502 Add READELF.
2503 * Makefile.in: Rebuild.
2504
2505 2011-11-08 Richard Henderson <rth@redhat.com>
2506
2507 * configure.ac: Test for libitm directory present first.
2508
2509 * configure.ac: Adjust srcdir for running libitm/configure.tgt.
2510
2511 * configure.ac: Test libitm/configure.tgt to disable libitm.
2512 * configure: Rebuild.
2513
2514 2011-11-02 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2515
2516 * Makefile.tpl (EXTRA_GCC_FLAGS): Remove LIBGCC2_CFLAGS,
2517 LIBGCC2_DEBUG_CFLAGS, LIBGCC2_INCLUDES.
2518 * Makefile.in: Regenerate.
2519
2520 2011-11-01 DJ Delorie <dj@redhat.com>
2521
2522 * configure.ac (rl78-*-*) New case.
2523 * configure: Regenerate.
2524
2525 2011-11-01 DJ Delorie <dj@redhat.com>
2526
2527 * config.sub: Update to version 2011-10-29 (added rl78)
2528
2529 2011-10-27 Nick Clifton <nickc@redhat.com>
2530
2531 * config.sub: Import these changes from the config project:
2532
2533 2011-10-08 Joern Rennecke <joern.rennecke@embecosm.com>
2534 Ben Elliston <bje@gnu.org>
2535
2536 * config.sub (epiphany): New.
2537
2538 2011-09-09 Linas Vepstas <linasvepstas@gmail.com>
2539 Ben Elliston <bje@gnu.org>
2540
2541 * config.sub (hexagon, hexagon-*): New.
2542
2543 2011-08-23 Roland McGrath <mcgrathr@google.com>
2544
2545 * config.sub: Rename 32eb to be32, 32el to le32, 64el to le64, and
2546 64eb to be64.
2547
2548 2011-08-16 Roland McGrath <mcgrathr@google.com>
2549
2550 * config.sub (32eb, 32el, 64eb, 64el): New (pseudo-)CPUs.
2551 (nacl): Grok as alias for 32el-unknown-nacl.
2552
2553 2011-08-19 Joel Brobecker <brobecker@adacore.com>
2554
2555 * src-release (GDB_SUPPORT_DIRS): Add 'cpu'.
2556
2557 2011-08-14 Yao Qi <yao@codesourcery.com>
2558
2559 Merge from gcc:
2560
2561 2011-08-14 Yao Qi <yao@codesourcery.com>
2562 * configure.ac (tic6x-*-*): Remove gdb from noconfigdirs.
2563 * configure: Regenerate.
2564
2565 2011-07-26 Ian Lance Taylor <iant@google.com>
2566
2567 Merge from gcc:
2568
2569 2011-07-26 Ian Lance Taylor <iant@google.com>
2570 * configure.ac: Set have_compiler based on whether gcc directory
2571 exists, rather than on whether gcc is in configdirs.
2572 * configure: Rebuild.
2573
2574 2011-07-20 David Edelsohn <dje.gcc@gmail.com>
2575 * Makefile.tpl (POSTSTAGE1_CONFIGURE_FLAGS): Add libsupc++ to
2576 link directories.
2577 * Makefile.in: Rebuild.
2578
2579 2011-07-20 Ian Lance Taylor <iant@google.com>
2580 PR bootstrap/49787
2581 * configure.ac: Move --enable-bootstrap handling earlier in file.
2582 If --enable-bootstrap and either --enable-build-with-cxx or
2583 --enable-build-poststage1-with-cxx, enable C++ automatically.
2584 * configure: Rebuild.
2585
2586 2011-07-19 Ian Lance Taylor <iant@google.com>
2587 * configure.ac: Add --enable-build-poststage1-with-cxx. If set,
2588 make C++ a boot_language. Set and substitute
2589 POSTSTAGE1_CONFIGURE_FLAGS.
2590 * Makefile.tpl (POSTSTAGE1_CONFIGURE_FLAGS): New variable.
2591 (STAGE[+id+]_CONFIGURE_FLAGS): Add $(POSTSTAGE1_CONFIGURE_FLAGS).
2592 * configure, Makefile.in: Rebuild.
2593
2594 2011-07-16 Jason Merrill <jason@redhat.com>
2595 * Makefile.def (language=c++): Add check-c++0x and
2596 check-target-libmudflap-c++.
2597 * Makefile.tpl (check-target-libmudflap-c++): New.
2598 * Makefile.in: Regenerate.
2599
2600 2011-07-16 Matthias Klose <doko@ubuntu.com>
2601 * Makefile.tpl (EXTRA_CONFIGARGS_LIBJAVA): Define.
2602 * Makefile.def (target_modules/libjava): Pass
2603 $(EXTRA_CONFIGARGS_LIBJAVA).
2604 * configure.ac: Pass --disable-static in EXTRA_CONFIGARGS_LIBJAVA,
2605 if not configured with --enable-static-libjava.
2606 * Makefile.in: Regenerate.
2607 * configure: Likewise.
2608
2609 2011-06-22 Hans-Peter Nilsson <hp@axis.com>
2610 PR regression/47836
2611 PR bootstrap/23656
2612 PR other/47733
2613 PR bootstrap/49247
2614 PR c/48825
2615 * configure.ac (target_libraries): Remove target-libiberty.
2616 Remove case-statement setting skipdirs=target-libiberty for
2617 multiple targets. Remove checking target_configdirs and
2618 removing target-libiberty but keeping target-libgcc if
2619 otherwise empty.
2620 * Makefile.def (target_modules): Don't add libiberty.
2621 (dependencies): Remove all traces of target-libiberty.
2622 * configure, Makefile.in: Regenerate.
2623
2624 2011-07-22 Jason Merrill <jason@redhat.com>
2625
2626 * Makefile.def (language=c++): Add check-c++0x and
2627 check-target-libmudflap-c++.
2628 * Makefile.tpl (check-target-libmudflap-c++): New.
2629 * Makefile.in: Regenerate.
2630
2631 2011-07-18 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2632
2633 * configure: Regenerate.
2634
2635 2011-07-07 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2636
2637 PR target/39150
2638 * configure.ac (i[3456789]86-*-solaris2*): Also accept
2639 x86_64-*-solaris2.1[0-9]*.
2640 * configure: Regenerate.
2641
2642 2011-06-13 Walter Lee <walt@tilera.com>
2643
2644 * configure.ac (tilepro-*-*) New case.
2645 (tilegx-*-*): Likewise.
2646 * configure: Regenerate.
2647
2648 2011-06-06 Nick Clifton <nickc@redhat.com>
2649
2650 * config.sub: Sync from upstream.
2651
2652 2011-05-08 Doug Kwan <dougkwan@google.com>
2653
2654 Merge from gcc:
2655
2656 2011-05-08 Doug Kwan <dougkwan@google.com>
2657
2658 * configure.ac: Propagate LDFLAGS_FOR_TARGET.
2659 * configure: Regenerated.
2660 * Makefile.tpl (LDFLAGS_FOR_TARGET): Use LDFLAGS_FOR_TARGET
2661 value from configure.
2662 * Makefile.in: Regenerated.
2663
2664 2011-05-05 Joseph Myers <joseph@codesourcery.com>
2665
2666 * configure.ac (alpha*-dec-osf*, i[[3456789]]86-*-rdos*,
2667 sh*-*-pe|mips*-*-pe|arm-wince-pe, sparc-*-sunos4*, *-*-aix*,
2668 *-*-beos*, *-*-chorusos, *-*-dragonfly*, *-*-freebsd*, *-*-linux*
2669 | *-*-gnu* | *-*-k*bsd*-gnu | *-*-kopensolaris*-gnu, *-*-lynxos*,
2670 *-*-mingw*, *-*-netbsd*, *-*-netware*, *-*-tpf*, *-*-uclinux*,
2671 *-*-vxworks*): Disable newlib and libgloss in separate case
2672 statement.
2673 (i[[3456789]]86-*-linux*): Move logic allowing newlib to be built
2674 to separate case statement.
2675 (*-*-chorusos, *-*-dragonfly*, *-*-freebsd*, *-*-netbsd*,
2676 *-*-netware*, *-*-tpf*, *-*-uclinux*, *-*-vxworks*,
2677 alpha*-dec-osf*, alpha*-*-linux*, am33_2.0-*-linux*, sh-*-linux*,
2678 sh*-*-pe|mips*-*-pe|*arm-wince-pe, arm-*-coff, arm-*-elf* |
2679 arm*-*-eabi*, arm*-*-linux-gnueabi, arm*-*-symbianelf*, avr-*-*,
2680 bfin-*-*, cris-*-* | crisv32-*-*, frv-*-*, i[[3456789]]86-*-coff |
2681 i[[3456789]]86-*-elf, i[[3456789]]86-w64-mingw*,
2682 i[[3456789]]86-*-mingw*, x86_64-*-mingw*,
2683 i[[3456789]]86-*-interix*, i[[3456789]]86-*-beos*,
2684 i[[3456789]]86-*-rdos*, m32r-*-*,
2685 m68hc11-*-*|m6811-*-*|m68hc12-*-*|m6812-*-*, m68k-*-elf*, m68*-*-*
2686 | fido-*-*, powerpc-*-aix*, powerpc-*-beos*, powerpc-*-eabi,
2687 powerpc-*-eabi* | powerpcle-*-eabi* | powerpc-*-rtems*,
2688 rs6000-*-lynxos*, rs6000-*-aix*, mips*-*-linux*, sparclet-*-aout*
2689 | sparc86x-*-*, sparc-*-elf*, sparc64-*-elf*, sparclite-*-*,
2690 sparc-*-sunos4*, sparc-*-solaris* | sparc64-*-solaris* |
2691 sparcv9-*-solaris*, *-*-linux* | *-*-gnu* | *-*-k*bsd*-gnu |
2692 *-*-kopensolaris*-gnu, *-*-lynxos*, *-*-*): Don't disable newlib
2693 and libgloss in main case over targets. Remove most empty cases
2694 in main case over targets.
2695 * configure: Regenerate.
2696
2697 2011-05-04 Joseph Myers <joseph@codesourcery.com>
2698
2699 * configure.ac: Remove code setting special library locations for
2700 hppa*64*-*-hpux11*. Remove code setting compiler for
2701 sparc-sun-solaris2*.
2702 * configure: Regenerate.
2703
2704 2011-05-04 Joseph Myers <joseph@codesourcery.com>
2705
2706 * configure.ac: Separate libgloss_dir settings from general case
2707 over targets.
2708 * configure: Regenerate.
2709
2710 2011-04-28 Joseph Myers <joseph@codesourcery.com>
2711
2712 * configure.ac (*-*-dragonfly*, *-*-freebsd*, *-*-netbsd*,
2713 alpha*-dec-osf*, alpha*-*-linux*, alpha*-*-*, sh-*-linux*,
2714 arm-*-elf* | arm*-*-eabi*, arm*-*-linux-gnueabi, frv-*-*): Remove
2715 cases in libgcj-disabling case statement.
2716 (hppa*64*-*-linux*): Set unsupported_languages instead of
2717 disabling target-zlib.
2718 (hppa*64*-*-*): Restrict case in libgcj-disabling case statement
2719 to hppa*64*-*-hpux*.
2720 (hppa*-*-*): Restrict case in libgcj-disabling case statement to
2721 hppa*-*-hpux*.
2722 (ia64*-*-elf*, ia64*-**-hpux*, i[[3456789]]86-*-elf,
2723 i[[3456789]]86-*-linux*, *-*-cygwin*, i[[3456789]]86-*-interix*,
2724 i[[3456789]]86-*-solaris2*, m32r-*-*, m68k-*-elf*, m68*-*-* |
2725 fido-*-*, powerpc-*-eabi, powerpc-*-eabi* | powerpcle-*-eabi* |
2726 powerpc-*-rtems*, mips*-*-linux*, mips*-*-*, sh-*-* | sh64-*-*,
2727 sparc-*-elf*, sparc64-*-elf*, sparc-*-solaris* |
2728 sparc64-*-solaris* | sparcv9-*-solaris*, *-*-linux* | *-*-gnu* |
2729 *-*-k*bsd*-gnu | *-*-kopensolaris*-gnu, *-*-*): Remove cases in
2730 libgcj-disabling case statement.
2731 * configure: Regenerate.
2732
2733 2011-04-28 Joseph Myers <joseph@codesourcery.com>
2734
2735 * configure.ac: Disable Java for targets not supporting libffi.
2736 (*-*-chorusos, *-*-kaos*, am33_2.0-*-linux*, sh*-*-pe|mips*-*-pe):
2737 Remove cases in Java-disabling statement.
2738 (*arm-wince-pe): Change to arm-wince-pe.
2739 (arc-*-*, arm-*-coff, arm-*-pe*, arm-*-riscix*, avr-*-*): Remove
2740 cases in Java-disabling statement.
2741 (bfin-*-*): Don't disable Java again.
2742 (c4x-*-* | tic4x-*-*, tic54x-*-*, cr16-*-*, d10v-*-*, d30v-*-*,
2743 fr30-*-elf*, moxie-*-*, h8300*-*-*, h8500-*-*, hppa1.1-*-osf* |
2744 hppa1.1-*-bsd*, hppa*-*-*elf* | hppa*-*-lites* | hppa*-*-openbsd*,
2745 hppa*-*-pro*, i960-*-*, i[[3456789]]86-*-coff,
2746 i[[3456789]]86-*-pe, i[[3456789]]86-*-sco3.2v5*,
2747 i[[3456789]]86-*-sco*, i[[3456789]]86-*-sysv4*,
2748 i[[3456789]]86-*-beos*, i[[3456789]]86-*-rdos*,
2749 m68hc11-*-*|m6811-*-*|m68hc12-*-*|m6812-*-*): Remove cases in
2750 Java-disabling statement.
2751 (mmix-*-*): Don't disable Java again.
2752 (mt-*-*, powerpc*-*-winnt* | powerpc*-*-pe*, powerpcle-*-solaris*,
2753 powerpc-*-beos*, rs6000-*-lynxos*, rs6000-*-*, m68k-apollo-*,
2754 microblaze*, mips*-sde-elf*, mips*-*-irix5*, mips*-*-bsd*,
2755 sparclet-*-aout* | sparc86x-*-*, sparclite-*-*, sparc-*-sunos4*,
2756 tic6x-*-*, v810-*-*, vax-*-*): Remove cases in Java-disabling
2757 statement.
2758 * configure: Regenerate.
2759
2760 2011-04-28 Joseph Myers <joseph@codesourcery.com>
2761
2762 Merge from GCC:
2763
2764 2011-04-18 Jack Howarth <howarth@bromo.med.uc.edu>
2765
2766 PR lto/48086
2767 * configure.ac: Re-enable LTO on *-apple-darwin9*.
2768 * configure: Regenerate.
2769
2770 2011-04-28 Joseph Myers <joseph@codesourcery.com>
2771
2772 * configure.ac: Separate cases disabling Java and Java libraries
2773 from general case over targets.
2774 * configure: Regenerate.
2775
2776 2011-04-06 Joseph Myers <joseph@codesourcery.com>
2777
2778 * configure.ac (build_tools): Remove build-byacc.
2779 (host_libs): Remove mmalloc.
2780 (host_tools): Remove byacc make patch prms send-pr ash bash bzip2
2781 autoconf automake libtool diff rcs fileutils shellutils time
2782 textutils wdiff find uudecode hello tar gzip indent recode release
2783 sed perl gawk findutils gettext zip.
2784 (libgcj): Remove target-qthreads.
2785 (target_tools): Remove target-examples target-gperf.
2786 (YACC): Don't handle building byacc.
2787 * configure: Regenerate.
2788 * Makefile.def (ash, autoconf, automake, bash, byacc, bzip2, diff,
2789 dosutils, examples, fileutils, find, findutils, gawk, gettext,
2790 gnuserv, gperf, gzip, hello, indent, libtool, make, mmalloc,
2791 patch, perl, prms, qthreads, rcs, recode, release, sed, send-pr,
2792 shellutils, tar, textutils, time, uudecode, wdiff, zip): Don't
2793 handle building components.
2794 * Makefile.in: Regenerate.
2795
2796 2011-04-05 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
2797
2798 * config.sub: Sync from upstream.
2799
2800 2011-04-01 Joseph Myers <joseph@codesourcery.com>
2801
2802 * configure.ac (avr-*-*): Add comment about why libssp is disabled.
2803 (microblaze*): Don't disable libssp.
2804 * configure: Regenerate.
2805
2806 2011-04-01 Joseph Myers <joseph@codesourcery.com>
2807
2808 * configure.ac: Remove code setting CONFIG_SHELL, config_shell and
2809 moveifchange.
2810 * configure: Regenerate.
2811 * Makefile.tpl: Use @SHELL@ not @config_shell@.
2812 * Makefile.in: Regenerate.
2813
2814 2011-04-01 Joseph Myers <joseph@codesourcery.com>
2815
2816 * configure.ac (*-*-sysv4*): Don't enable libgomp.
2817 (alpha*-*-*vms*, i[[34567]]86-*-sco3.2v5*, mn10300-*-*,
2818 powerpc-*-chorusos*, powerpc*-*-eabi*, powerpc*-*-sysv*,
2819 powerpc*-*-kaos*, s390x-ibm-tpf*, sparc64-*-elf*, v850*-*-*,
2820 xtensa*-*-elf*, *-*-beos*, *-*-elf*, *-*-netware*, *-*-rtems*,
2821 *-*-sysv[[45]]*, *-*-vxworks*, *-wrs-windiss): Remove
2822 md_exec_prefix cases.
2823 * configure: Regenerate.
2824
2825 2011-04-01 Joseph Myers <joseph@codesourcery.com>
2826
2827 * configure.ac: Separate cases disabling target-libssp,
2828 target-libiberty, target-libstdc++-v3 and Fortran from general
2829 case over targets.
2830 * configure: Regenerate.
2831
2832 2011-04-01 Joseph Myers <joseph@codesourcery.com>
2833
2834 * configure.ac (*-*-chorusos): Don't disable libgcj.
2835 (*-*-freebsd[[12]] | *-*-freebsd[[12]].* | *-*-freebsd*aout*):
2836 Remove case.
2837 (*-*-kaos*): Don't disable GCC libraries, zlib or fastjar.
2838 (arm-*-coff): Don't disable libgcj.
2839 (arm*-*-linux-gnueabi): Remove useless assignment.
2840 (arm-*-riscix*): Don't disable libgcj.
2841 (bfin-*-*): Don't enable target-bsp and target-cygmon depending on
2842 configuration.
2843 (c4x-*-* | tic4x-*-*): Don't disable GCC libraries.
2844 (c54x*-*-*): Remove case.
2845 (tic54x-*-*): Don't disable GCC or GCC libraries.
2846 (cris-*-* | crisv32-*-*): Don't handle *-*-aout. Change *-*-elf
2847 to *.
2848 (d10v-*-*): Don't disable GCC libraries.
2849 (d30v-*-*): Don't disable libgcj.
2850 (h8500-*-*): Don't disable GCC libraries.
2851 (i960-*-*): Don't disable libgcj.
2852 (i[[3456789]]86-*-linux*): Don't handle *-*-*libc1*.
2853 (i[[3456789]]86-*-sco3.2v5*, i[[3456789]]86-*-sco*,
2854 i[[3456789]]86-*-sysv4*, i[[3456789]]86-*-beos*): Don't disable
2855 libgcj.
2856 (m68k-*-coff*): Remove case.
2857 (mmix-*-*): Don't disable libgloss on host.
2858 (mn10200-*-*, mn10300-*-*): Remove cases.
2859 (powerpc*-*-winnt* | powerpc*-*-pe*, powerpcle-*-solaris*,
2860 powerpc-*-beos*, m68k-apollo-*, mips*-*-irix5*, mips*-*-bsd*):
2861 Don't disable libgcj.
2862 (romp-*-*): Remove case.
2863 (sparclite-*-*, sparc-*-sunos4*): Don't disable libgcj.
2864 (sparc-*-solaris2.[[0-6]] | sparc-*-solaris2.[[0-6]].*): Remove
2865 case.
2866 (v810-*-*): Don't disable GCC libraries.
2867 (v850*-*-*, vax-*-vms, xtensa*-*-*): Remove cases.
2868 (ip2k-*-*): Don't disable GCC libraries.
2869 * configure: Regenerate.
2870
2871 2011-03-28 Joseph Myers <joseph@codesourcery.com>
2872
2873 * configure.ac (i[[3456789]]86-*-msdosdjgpp*): Don't disable
2874 libffi on host.
2875 (x86_64-*-mingw*, i[[3456789]]86-*-mingw32*): Don't disable newlib
2876 on host.
2877 (c54x*-*-* | tic54x-*-*): Don't disable newlib on host.
2878 * configure: Regenerate.
2879
2880 2011-03-26 John Marino <binutils@marino.st>
2881
2882 * configure.ac: Add support for *-*-dragonfly*
2883 * configure: Regenerate.
2884
2885 2011-03-25 Joseph Myers <joseph@codesourcery.com>
2886
2887 * configure.ac (native_only): Remove.
2888 (i[[3456789]]86-*-msdosdjgpp*): Don't disable expect dejagnu
2889 send-pr uudecode guile gnuserv on host.
2890 (x86_64-*-mingw*): Don't disable expect dejagnu autoconf automake
2891 send-pr rcs guile perl texinfo libtool on host.
2892 (i[[3456789]]86-*-mingw32*): Don't disable expect dejagnu autoconf
2893 automake send-pr rcs guile perl texinfo libtool on host.
2894 (*-*-cygwin*, *-*-netbsd*): Remove host cases.
2895 (*-*-kaos*): Don't disable target-examples target-gperf on target.
2896 (alpha*-dec-osf*): Don't disable fileutils on target.
2897 (sh*-*-pe|mips*-*-pe|*arm-wince-pe): Don't disable target-examples
2898 texinfo send-pr expect dejagnu on target.
2899 (arm-*-elf* | arm*-*-eabi*, arm*-*-linux-gnueabi): Don't disable
2900 target-qthreads on target.
2901 (hppa*-hp-hpux11*, hppa*-*-*): Don't disable shellutils on target.
2902 (ia64*-*-elf*, ia64*-*-*vms*): Don't disable mmalloc on target.
2903 (i[[3456789]]86-w64-mingw*, i[[3456789]]86-*-mingw*,
2904 x86_64-*-mingw*): Don't disable expect on target.
2905 (*-*-cygwin*): Don't disable target-gperf on target.
2906 (powerpc*-*-winnt* | powerpc*-*-pe*): Don't disable make expect
2907 gnuserv on target.
2908 (powerpcle-*-solaris*): Don't disable make expect gnuserv on
2909 target.
2910 * configure: Regenerate.
2911
2912 2011-03-25 Joseph Myers <joseph@codesourcery.com>
2913
2914 * configure.ac (target_tools): Remove target-groff.
2915 (native_only): Remove target-groff.
2916 (hppa*64*-*-*): Don't disable byacc.
2917 (i[[3456789]]86-*-mingw32*): Remove commented-out noconfigdirs
2918 setting.
2919 (*-*-kaos*): Don't skip target-librx and target-groff.
2920 (*-*-netware*): Don't skip target-libmudflap.
2921 (*-*-tpf*): Don't skip target-libmudflap.
2922 (sh*-*-pe|mips*-*-pe|*arm-wince-pe): Don't condition configured
2923 directories on the host.
2924 (ia64*-*-*vms*): Don't skip tix.
2925 (sh-*-* | sh64-*-*): Don't condition skipped directories on the
2926 host.
2927 * configure: Regenerate.
2928
2929 2011-03-24 Paolo Bonzini <pbonzini@redhat.com>
2930
2931 * configure.ac: Remove references to mt-mep, mt-netware,
2932 mt-wince.
2933 * Makefile.def: Add all-utils soft dependencies.
2934 * Makefile.tpl: Remove GDB_NLM_DEPS.
2935 * configure: Regenerate.
2936 * Makefile.in: Regenerate.
2937
2938 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2939
2940 Sync from GCC:
2941
2942 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2943
2944 * configure.ac: Do not include mh-x86omitfp.
2945 * configure: Regenerate.
2946
2947 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2948
2949 * configure.ac: Remove empty cases.
2950 * configure: Regenerate.
2951
2952 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2953
2954 * Makefile.def: Add dependency from termcap to gdb.
2955 * Makefile.in: Regenerate.
2956
2957 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2958
2959 * configure.ac: Remove all mentions of mh-sysv4 and mh-solaris.
2960 * configure: Regenerate.
2961 * Makefile.def: Remove all mentions of X11_FLAGS_TO_PASS.
2962 * Makefile.tpl: Likewise.
2963 * Makefile.in: Regenerate.
2964
2965 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2966
2967 * configure.ac: Remove all mentions of tentative_cc.
2968 * configure: Regenerate.
2969
2970 2011-03-16 Jack Howarth <howarth@bromo.med.uc.edu>
2971
2972 PR lto/48086
2973 * configure.ac: Re-enable LTO on *-apple-darwin9.
2974 * configure: Regenerate.
2975
2976 2011-03-24 Joseph Myers <joseph@codesourcery.com>
2977
2978 * configure.ac (i[[3456789]]86-*-vsta, i[[3456789]]86-*-go32*,
2979 i[[3456789]]86-*-beos*, powerpc-*-beos*, m68k-hp-hpux*,
2980 m68k-apollo-sysv*, m68k-apollo-bsd*, m88k-dg-dgux*,
2981 m88k-harris-cxux*, m88k-motorola-sysv*, mips*-dec-ultrix*,
2982 mips*-nec-sysv4*, mips*-sgi-irix4*, mips*-*-sysv4*, mips*-*-sysv*,
2983 i370-ibm-opened*, i[[3456789]]86-*-sysv5*, i[[3456789]]86-*-dgux*,
2984 i[[3456789]]86-ncr-sysv4.3*, i[[3456789]]86-ncr-sysv4*,
2985 i[[3456789]]86-*-sco3.2v5*, i[[3456789]]86-*-sco*,
2986 i[[3456789]]86-*-udk*, vax-*-ultrix2*, m68k-sun-sunos*,
2987 hppa*-*-hiux*, *-*-hiux*, rs6000-*-lynxos*, *-*-sysv4*,
2988 *-*-rhapsody*): Remove host cases.
2989 * configure: Regenerate.
2990
2991 2011-03-24 Joseph Myers <joseph@codesourcery.com>
2992
2993 * configure.ac (ppc*-*-pe): Remove host case.
2994 (strongarm-*-coff | xscale-*-coff, strongarm-*-elf* |
2995 xscale-*-elf*, thumb-*-coff, thumb-*-elf, thumb-*-pe, ep9312-*-elf
2996 | ep9312-*-coff, parisc*64*-*-linux*, ppc*-*-pe): Remove target
2997 cases.
2998 * configure: Regenerate.
2999
3000 2011-03-24 Joseph Myers <joseph@codesourcery.com>
3001
3002 * config.sub: Update to version 2011-03-23.
3003
3004 2011-03-22 Joseph Myers <joseph@codesourcery.com>
3005
3006 * configure.ac (arm-semi-aof, crx-*-*, parisc*-*-linux*,
3007 i370-*-opened*, i[[3456789]]86-moss-msdos | i[[3456789]]86-*-moss*
3008 | i[[3456789]]86-*-uwin*, mcore-*-pe*): Remove empty cases.
3009 * configure: Regenerate.
3010
3011 2011-03-22 Joseph Myers <joseph@codesourcery.com>
3012
3013 * config-ml.in: Don't handle arc-*-elf*.
3014 * configure.ac (arc-*-*, crx-*-*, i[[3456789]]86-*-pe,
3015 m68hc11-*-*|m6811-*-*|m68hc12-*-*|m6812-*-*, mcore-*-pe*): Don't
3016 handle GCC libraries.
3017 * configure: Regenerate.
3018
3019 2011-03-21 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3020
3021 PR bootstrap/48120:
3022 * configure.ac (pwllib): Use LIBS instead of LDFLAGS.
3023 Add -lstdc++ -lm to LIBS.
3024 * configure: Regenerate.
3025
3026 2011-03-18 David Edelsohn <dje.gcc@gmail.com>
3027
3028 * config.guess: Update to version 2011-02-02
3029 * config.sub: Update to version 2011-02-24
3030
3031 2011-03-03 Sebastian Pop <sebastian.pop@amd.com>
3032
3033 * configure.ac: Adjust test of with_ppl.
3034 * configure: Regenerated.
3035
3036 2011-03-02 Sebastian Pop <sebastian.pop@amd.com>
3037
3038 * configure.ac: Add -lpwl to ppllibs.
3039 * config/cloog.m4: Add -lisl to clooglibs.
3040 * configure: Regenerated.
3041
3042 2011-02-13 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3043
3044 Import from Libtool and gnulib:
3045
3046 2011-01-27 Gerald Pfeifer <gerald@pfeifer.com>
3047
3048 Prepare for supporting FreeBSD 10.
3049 * config.rpath: Remove handling of freebsd1* which soon would
3050 match FreeBSD 10.0.
3051
3052 2011-01-20 Gerald Pfeifer <gerald@pfeifer.com> (tiny change)
3053
3054 Remove support for FreeBSD 1.x.
3055 * libtool.m4 (_LT_LINKER_SHLIBS)
3056 (_LT_SYS_DYNAMIC_LINKER): Remove handling of freebsd1* which
3057 soon would incorrectly match FreeBSD 10.0.
3058
3059 2011-02-12 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3060
3061 PR binutils/12283
3062 * MAINTAINERS (mkinstalldirs): Comes from Automake.
3063 (move-if-change): Comes from gnulib.
3064 * move-if-change: Import version from gnulib.
3065
3066 2011-02-12 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3067
3068 Sync from GCC:
3069
3070 2011-02-12 Alexandre Oliva <aoliva@redhat.com>
3071
3072 PR lto/47225
3073 * Makefile.def (lto-plugin): Double dash for enable-shared.
3074 (configure-gcc): Depend on all-lto-plugin.
3075 * Makefile.in: Rebuilt.
3076
3077 2011-02-11 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3078
3079 * configure.ac: Remove extra bracket.
3080 * configure: Regenerate.
3081
3082 2011-02-06 Kai Tietz <kai.tietz@onevision.com>
3083
3084 PR lto/47225
3085 * Makefile.def: Add dependency for install-gcc
3086 on install-lto-plugin.
3087 * Makfile.in: Regenerated
3088
3089 2011-01-25 Jakub Jelinek <jakub@redhat.com>
3090
3091 * configure.ac: If with_ppl is no, move setting with_cloog=no
3092 after CLOOG_REQUESTED check.
3093 * configure: Regenerated.
3094
3095 2011-01-25 Sebastian Pop <sebastian.pop@amd.com>
3096
3097 * configure.ac: Call AC_MSG_ERROR when PPL 0.11 is not present and
3098 CLooG has been requested.
3099 * configure: Regenerated.
3100
3101 2011-01-25 Sebastian Pop <sebastian.pop@amd.com>
3102
3103 * configure: Regenerated.
3104 * configure.ac: Check for version 0.11 (or later revision) of PPL.
3105
3106 2011-01-25 Tobias Grosser <grosser@fim.uni-passau.de>
3107
3108 * configure: Regenerated.
3109 * configure.ac: Use CLOOG_CHECK_VERSION(0,16,1).
3110
3111 2011-01-07 Jan Hubicka <jh@suse.cz>
3112
3113 PR lto/47225
3114 * Makefile.in: Regenerate.
3115 * Makefile.def (lto-plugin): Always pass enable-shared to the plugin
3116 configure.
3117
3118 2011-01-31 Alexandre Oliva <aoliva@redhat.com>
3119
3120 PR libgcj/44341
3121 * configure.ac: Discard --with-* flags for host when configuring
3122 target libraries for cross build.
3123 * configure: Rebuilt.
3124
3125 2011-01-21 Andreas Schwab <schwab@redhat.com>
3126
3127 Sync from GCC:
3128
3129 2011-01-21 Andreas Schwab <schwab@redhat.com>
3130
3131 * configure.ac: Use AS_HELP_STRING throughout.
3132 * configure: Regenerate.
3133
3134 2011-01-18 Jie Zhang <jie.zhang@analog.com>
3135
3136 * configure.ac (bfin-*-*): Remove gdb from noconfigdirs.
3137 * configure: Regenerate.
3138
3139 2010-12-10 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
3140
3141 * ltmain.sh (relink): Use absolute path when hardcoding with -L.
3142
3143 2011-01-13 Joel Brobecker <brobecker@adacore.com>
3144
3145 * configure.ac: Remove readline, mmalloc, and gdb from noconfigdirs
3146 for ia64-hpux.
3147 * configure: Regenerate.
3148
3149 2011-01-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3150
3151 Sync from GCC:
3152 2010-12-22 Hariharan Sandanagobalane <hariharan@picochip.com>
3153
3154 * configure.ac: (picochip): Disable libiberty.
3155 * configure: Regenerate.
3156
3157 2010-12-18 Jeff Johnston <jjohnstn@redhat.com>
3158
3159 * COPYING.LIBGLOSS: Remove the GPL for fr30 target.
3160
3161 2010-12-10 Ian Lance Taylor <iant@google.com>
3162
3163 PR bootstrap/46819
3164 * configure.ac: For --disable-libgcj clear libgcj_saved.
3165 * configure: Rebuild.
3166
3167 2010-12-10 Tobias Burnus <burnus@net-b.de>
3168
3169 PR fortran/46540
3170 * configure.ac: Add --disable-libquadmath and
3171 --disable-libquadmath-support.
3172 * configure: Regenerate.
3173
3174 2010-12-10 Tristan Gingold <gingold@adacore.com>
3175
3176 * src-release (ETC_SUPPORT): add gnu-oids.texi
3177
3178 2010-12-03 Hans-Peter Nilsson <hp@axis.com>
3179
3180 PR libffi/46792
3181 * configure.ac (cris-*-elf, crisv32-*-elf): Disable target-libffi.
3182 * configure: Regenerate.
3183
3184 2010-12-02 Ian Lance Taylor <iant@google.com>
3185
3186 * configure.ac: Always set default for poststage1_ldflags to
3187 -static-libstdc++ -static-libgcc.
3188
3189 2010-12-02 Jeff Johnston <jjohnstn@redhat.com>
3190
3191 * COPYING.NEWLIB: Add National Semiconductor notice.
3192
3193 2010-11-29 Andreas Schwab <schwab@redhat.com>
3194
3195 * configure.ac: Move comment to remove extra space in last argument
3196 of GCC_TARGET_TOOL.
3197
3198 2010-11-26 Alexandre Oliva <aoliva@redhat.com>
3199
3200 PR other/46026
3201 * configure.ac (CXX_FOR_TARGET): Add -funconfigured-libstdc++-v3.
3202 * Makefile.def (CXX_FOR_TARGET): Removed from flags_to_pass.
3203 * Makefile.tpl (CXX_FOR_TARGET_FLAG_TO_PASS): New.
3204 (BASE_FLAGS_TO_PASS): Use it.
3205 * configure: Rebuilt.
3206 * Makefile.in: Rebuilt.
3207
3208 2010-11-23 H.J. Lu <hongjiu.lu@intel.com>
3209
3210 PR binutils/12258
3211 * configure.ac: Correct comments for --enable-gold/--enable-ld.
3212 Properly check default linker.
3213 * configure: Regnerated.
3214
3215 2010-11-23 Matthias Klose <doko@ubuntu.com>
3216
3217 * configure.ac: For --enable-gold, handle value `default' instead of
3218 `both*'. New configure option --{en,dis}able-ld.
3219 * configure: Regenerate.
3220
3221 2010-11-20 Ian Lance Taylor <iant@google.com>
3222
3223 * configure.ac: Only disable a language library if no language needs
3224 it. Don't let --disable-libgcj uncondtionally disable libffi.
3225 * configure: Rebuild.
3226
3227 2010-11-20 Paolo Bonzini <bonzini@gnu.org>
3228
3229 * configure: Regenerate.
3230
3231 2010-11-20 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3232
3233 PR other/46202
3234 * configure.ac: Fix just-built in-tree STRIP name to be
3235 binutils/strip-new.
3236 * configure: Regenerate.
3237 * Makefile.def (install-strip-gcc, install-strip-binutils)
3238 (install-strip-opcodes, install-strip-ld, install-strip-itcl)
3239 (install-strip-sid): Mirror dependencies on non-strip variants
3240 of these targets on the respective -strip prerequisites.
3241 * Makefile.tpl (install-strip, install-strip-host)
3242 (install-strip-target): New targets.
3243 (install-strip-[+module+], install-strip-target-[+module+]):
3244 New targets.
3245 * Makefile.in: Regenerate.
3246
3247 2010-11-19 Ian Lance Taylor <iant@google.com>
3248 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3249
3250 * configure.ac: Add target-libgo to target_libraries. Set
3251 and substitute GOC_FOR_BUILD and GOC_FOR_TARGET.
3252 * Makefile.tpl (BUILD_EXPORTS): Add GOC and GOCFLAGS.
3253 (HOST_EXPORTS): Add GOC.
3254 (BASE_TARGET_EXPORTS): Add GOC.
3255 (GOC_FOR_BUILD, GOCFLAGS, GOC_FOR_TARGET): New variables.
3256 (GOCFLAGS_FOR_TARGET): New variable.
3257 (EXTRA_HOST_FLAGS): Add GOC.
3258 (EXTRA_TARGET_FLAGS): Add GOC and GOCFLAGS.
3259 * Makefile.def (target_modules): Add libgo.
3260 (flags_to_pass): Add GOC_FOR_TARGET and GOCFLAGS_FOR_TARGET.
3261 (dependencies): Add dependency from configure-target-libgo to
3262 configure-target-libffi and all-target-libstdc++-v3. Add
3263 dependencies from all-target-libgo to all-target-libffi.
3264 (languages): Add go.
3265 * configure: Rebuild.
3266 * Makefile.in: Rebuild.
3267
3268 2010-11-19 Ian Lance Taylor <iant@google.com>
3269
3270 * config-ml.in: Add Go support: treat GOC and GOCFLAGS like other
3271 compiler/flag environment variables.
3272
3273 2010-11-18 Ian Lance Taylor <iant@google.com>
3274
3275 * configure.ac: Check for lang_requires_boot_languages in
3276 config-lang.in files.
3277 * configure: Rebuild.
3278
3279 2010-11-17 Mike Frysinger <vapier@gentoo.org>
3280
3281 * .gitignore: New file.
3282
3283 2010-11-16 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
3284 Tobias Burnus <burnus@net-b.de>
3285
3286 PR fortran/32049
3287 * Makefile.def: Add libquadmath; build it with language=fortran.
3288 * configure.ac: Add libquadmath.
3289 * Makefile.tpl: Handle multiple libs in check-[+language+].
3290 * Makefile.in: Regenerate.
3291 * configure: Regenerate.
3292
3293 2010-11-15 Andreas Schwab <schwab@redhat.com>
3294
3295 * configure.ac: Fix spelling in option names.
3296 * configure: Regenerated.
3297
3298 2010-11-13 Georg-Johann Lay <georgjohann@web.de>
3299
3300 PR bootstrap/39622
3301 * configure.ac (FLAGS_FOR_TARGET): Add include-fixed path.
3302 * configure: Regenerated.
3303
3304 2010-11-12 Tobias Grosser <grosser@fim.uni-passau.de>
3305
3306 * config/cloog.m4: Add -enable-cloog-backend=(isl|ppl|ppl-legacy) to
3307 define the cloog backend to use. Furthermore, only pass the ppllibs to
3308 the configure checks, if necessary.
3309 * configure: Regenerate.
3310
3311 2010-11-12 Tobias Grosser <grosser@fim.uni-passau.de>
3312
3313 * config/cloog.m4: Use CLooG predefined macro to check for CLooG PPL.
3314 * configure: regenerate
3315
3316 2010-11-12 Tobias Grosser <grosser@fim.uni-passau.de>
3317
3318 * config/cloog.m4: Fix typo. verison -> version.
3319 * configure: Regenerate.
3320
3321 2010-11-12 Tobias Grosser <grosser@fim.uni-passau.de>
3322
3323 * config/cloog.m4: Pass ppl libraries to the CLooG version check.
3324 * configure: Regenerate.
3325
3326 2010-11-11 Andreas Simbuerger <simbuerg@fim.uni-passau.de>
3327
3328 * configure.ac: Support official CLooG.org versions.
3329 * configure: Regenerate.
3330 * config/cloog.m4: New.
3331
3332 2010-11-05 Michael Eager <eager@eagercon.com>
3333
3334 * COPYING.LIBGLOSS: Correct typo in microblaze.
3335 * COPYING.NEWLIB: Same.
3336
3337 2010-11-04 Iain Sandoe <iains@gcc.gnu.org>
3338
3339 * configure.ac (*-*-darwin*): Use mh-darwin for all Darwin variants.
3340 * configure: Regenerate.
3341
3342 2010-11-03 Ian Lance Taylor <iant@google.com>
3343 Dave Korn <dave.korn.cygwin@gmail.com>
3344
3345 PR lto/46273
3346 * configure.ac: Remove libelf tests. Build lto-plugin on ELF always
3347 and on other supported platforms whenever LTO is enabled.
3348 * configure: Rebuild.
3349
3350 2010-11-02 Alan Modra <amodra@gmail.com>
3351
3352 PR binutils/12110
3353 * configure.ac: Error when source path contains spaces.
3354 * configure: Regenerate.
3355
3356 2010-10-20 Ian Lance Taylor <iant@google.com>
3357
3358 * Makefile.def (target_modules): Set lib_path to src/.libs for
3359 libstdc++-v3 module.
3360 * Makefile.tpl: Fix typo in TARGET_LIB_PATH comment.
3361 * Makefile.in: Rebuild.
3362
3363 2010-10-08 Bernd Schmidt <bernds@codesourcery.com>
3364 Joseph Myers <joseph@codesourcery.com>
3365
3366 * COPYING.LIBGLOSS: Add National Semiconductor and CodeSourcery
3367 notices.
3368 * COPYING.NEWLIB: Add Texas Instruments notice.
3369
3370 2010-10-07 Dave Korn <dave.korn.cygwin@gmail.com>
3371
3372 * configure.ac (build_lto_plugin): New shell variable.
3373 (--enable-lto): Turn on by default for all non-ELF platforms that
3374 have had LTO support added so far. Set build_lto_plugin appropriately
3375 for both ELF and non-ELF.
3376 (configdirs): Add lto-plugin or not based on build_lto_plugin.
3377 * configure: Regenerate.
3378
3379 2010-10-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3380
3381 PR bootstrap/45326
3382 PR bootstrap/45174
3383 * configure.ac: Honor initial values of $build_configargs,
3384 $host_configargs, $target_configargs. Mark the precious, so
3385 environment settings get recorded.
3386 * configure: Regenerate.
3387
3388 2010-10-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3389
3390 Sync from GCC:
3391
3392 2010-09-30 Michael Eager <eager@eagercon.com>
3393
3394 * configure.ac (microblaze): Add target-libssp to noconfigdirs.
3395 * configure: Regenerate.
3396
3397 2010-09-21 Iain Sandoe <iains@gcc.gnu.org>
3398
3399 * configure.ac (enable-lto): Add Darwin to the list of supported lto
3400 targets and amend comment.
3401 * configure: Regenerate.
3402
3403 2010-09-03 Jack Howarth <howarth@bromo.med.uc.edu>
3404
3405 * configure.ac: Enable LTO by default on Darwin.
3406 * configure: Regenerate.
3407
3408 2010-07-23 Marc Glisse <marc.glisse@normalesup.org>
3409
3410 PR bootstrap/44455
3411 * configure.ac (extra_mpfr_configure_flags): Copy from
3412 extra_mpc_gmp_configure_flags.
3413 * configure: Re-generated.
3414
3415 2010-09-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3416
3417 Sync from GCC:
3418
3419 PR bootstrap/45796
3420 * Makefile.def (info-gcc, dvi-gcc, pdf-gcc, html-gcc):
3421 Depend on all-build-libiberty.
3422 * Makefile.in: Regenerate.
3423
3424 2010-09-27 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3425
3426 Sync from GCC:
3427
3428 PR bootstrap/44621
3429 * configure.ac: Fix unportable shell quoting.
3430 * configure: Regenerate.
3431
3432 2010-07-26 Naveen.H.S <naveen.S@kpitcummins.com>
3433
3434 * configure.ac: Support all v850 targets.
3435 * configure: Regenerate.
3436
3437 2010-07-17 Jack Howarth <howarth@bromo.med.uc.edu>
3438
3439 PR target/44862
3440 * Makefile.tpl (POSTSTAGE1_CXX_EXPORT):
3441 Provide -B option to allow for link spec %s substitutions for
3442 libstdc++.a on darwin.
3443 * Makefile.in: Regenerate.
3444
3445 2010-06-10 Alexandre Oliva <aoliva@redhat.com>
3446
3447 * Makefile.def (configure-gcc): Depend on all-libelf.
3448 * Makefile.in: Rebuild.
3449
3450 2010-06-01 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3451
3452 * config.sub, config.guess: Update from upstream sources.
3453
3454 2010-06-01 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3455
3456 Sync from GCC:
3457
3458 2010-05-05 Sebastian Pop <sebastian.pop@amd.com>
3459 * configure.ac: Allow all the versions greater than 0.10 of PPL.
3460 * configure: Regenerated.
3461
3462 2010-04-20 Eric Botcazou <ebotcazou@adacore.com>
3463 * configure.ac (BUILD_CONFIG): Redirect output to /dev/null.
3464 * configure: Regenerate.
3465
3466 2010-04-17 Ralf Cors<E9>pius <ralf.corsepius@rtems.org>
3467 * configure.ac (*-*-rtems*): Add target-libiberty to $skipdirs.
3468 * configure: Regenerate.
3469
3470 2010-04-16 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3471 * configure.ac: Check for elf_getshdrstrndx or elf_getshstrndx
3472 separately.
3473 * configure: Regenerate.
3474
3475 2010-04-13 Steve Ellcey <sje@cup.hp.com>
3476 * configure: Regenerate after change to elf.m4.
3477
3478 2010-04-02 Sebastian Pop <sebastian.pop@amd.com>
3479 * configure.ac: Add brackets around AC_TRY_COMPILE alternative.
3480 * configure: Regenerated.
3481
3482 2010-04-02 Sebastian Pop <sebastian.pop@amd.com>
3483 * configure.ac: Print "buggy but acceptable" when CLooG
3484 revision is less than 9.
3485 * configure: Regenerated.
3486
3487 2010-05-26 Dave Korn <dave.korn.cygwin@gmail.com>
3488
3489 Merge from gcc:
3490
3491 2010-05-18 Steven Bosscher <steven@gcc.gnu.org>
3492 * configure.ac (--enable-lto): All *-apple-darwin* now support LTO.
3493 * configure: Regenerate.
3494
3495 2010-05-07 Steven Bosscher <steven@gcc.gnu.org>
3496 * configure.ac (--enable-lto): Add x86_64-apple-darwin* as
3497 a platform that supports LTO.
3498 * configure: Regenerate.
3499
3500 2010-04-27 Dave Korn <dave.korn.cygwin@gmail.com>
3501 PR lto/42776
3502 * configure.ac (--enable-lto): Refactor handling so libelf tests
3503 are only performed inside then-clause of ACX_ELF_TARGET_IFELSE,
3504 and allow LTO to be explicitly enabled on non-ELF platforms that
3505 are known to support it inside else-clause.
3506 * configure: Regenerate.
3507
3508 2010-04-27 Roland McGrath <roland@redhat.com>
3509 H.J. Lu <hongjiu.lu@intel.com>
3510
3511 * configure.ac (--enable-gold): Support both, both/gold and
3512 both/bfd to add gold to configdirs without removing ld.
3513 * configure: Regenerated.
3514
3515 * Makefile.def: Add install-gold dependency to install-ld.
3516 * Makefile.in: Regenerated.
3517
3518 2010-04-14 Tristan Gingold <gingold@adacore.com>
3519
3520 * configure.ac (alpha*-*-*vms*): Remove ld from noconfigdirs.
3521 * configure: Regenerate.
3522
3523 2010-04-08 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3524
3525 Merge from gcc:
3526 PR bootstrap/43615
3527 PR bootstrap/43328
3528 Revert:
3529 2010-03-31 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3530 * configure.ac: Do not pass --enable-multilib nor
3531 --disable-multilib in baseargs. Accept explicitly passed
3532 --enable_multilib.
3533 * configure: Regenerate.
3534
3535 2010-03-31 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3536
3537 PR bootstrap/43328
3538 * configure.ac: Do not pass --enable-multilib nor
3539 --disable-multilib in baseargs. Accept explicitly passed
3540 --enable_multilib.
3541 * configure: Regenerate.
3542
3543 2010-03-23 Joseph Myers <joseph@codesourcery.com>
3544
3545 * configure.ac (tic6x-*-*): New case.
3546 * configure: Regenerate.
3547
3548 2010-03-23 Joseph Myers <joseph@codesourcery.com>
3549
3550 Merge from gcc:
3551 2010-03-19 Jack Howarth <howarth@bromo.med.uc.edu>
3552 PR ada/42554
3553 * configure.ac: Only pass -c to ranlib for darwin9 and earlier.
3554 * configure: Regenerate.
3555
3556 2010-03-23 Joseph Myers <joseph@codesourcery.com>
3557
3558 * config.sub: Update to version 2010-03-22.
3559 * config.guess: Update to version 2009-12-30.
3560
3561 2010-03-14 Joseph Myers <joseph@codesourcery.com>
3562
3563 Merge from gcc:
3564 2010-01-11 Richard Guenther <rguenther@suse.de>
3565 PR lto/41569
3566 * Makefile.def (all-lto-plugin): Depend on all-gcc.
3567 * Makefile.in: Regenerated.
3568
3569 2010-03-01 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3570
3571 PR libstdc++/32499
3572 * configure.ac (RANLIB): Default to true.
3573 (STRIP): Likewise.
3574 (RANLIB_FOR_TARGET): Remove superfluous : argument.
3575 * configure: Regenerate.
3576
3577 2010-02-17 Nick Clifton <nickc@redhat.com>
3578
3579 PR 11238
3580 * Makefile.tpl (local-distclean): Also remove config.cache files in
3581 sub-directories as there may not be Makefiles present in the
3582 sub-directories.
3583 * Makefile.tpl: Use "-exec rm {}" rather than "-delete" to delete
3584 the config.cache files found by the find command.
3585
3586 * Makefile.in: Regenerate.
3587 * configure.ac: Revert previous delta.
3588 * configure: Regenerate.
3589
3590 2010-02-15 Nick Clifton <nickc@redhat.com>
3591
3592 PR 11238
3593 * configure.ac: Delete config.cache files in sub-directories when
3594 deleting Makefiles.
3595 * configure: Regenerate.
3596
3597 2010-02-15 Nick Clifton <nickc@redhat.com>
3598
3599 * configure.ac: Sync from gcc.
3600 * configure: Regenerate.
3601
3602 2010-01-31 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3603
3604 Sync from gcc:
3605 * configure.ac: Add "recommended" version checks for GMP/MPC.
3606 Update recommended GMP/MPFR/MPC versions.
3607 * configure: Regenerate.
3608
3609 2010-01-25 Joern Rennecke <amylaar@spamcop.net>
3610
3611 gcc PR libstdc++/36101, gcc PR libstdc++/42813
3612 * configure.ac (bootstrap_target_libs): Make inclusion of
3613 target-libgomp conditional on libgomb being in target_configdirs.
3614 * configure: Regenerate.
3615
3616 2010-01-23 Joern Rennecke <amylaar@spamcop.net>
3617
3618 gcc PR libstdc++/36101, gcc PR libstdc++/42813
3619 * configure.ac (bootstrap_target_libs): Include target-libgomp.
3620 * configure: Regenerate.
3621
3622 2010-01-22 Joern Rennecke <amylaar@spamcop.net>
3623
3624 gcc PR libstdc++/36101, gcc PR libstdc++/42813
3625 * configure.ac (target_configdirs): Substitute.
3626 * Makefile.def: Bootstrap target module libgomp.
3627 Add dependency of all-target-libstdc++-v3 on configure-target-libgomp.
3628 * Makefile.tpl (TARGET_CONFIGDIRS): New makefile variable.
3629 (BASE_TARGET_EXPORTS): Export TARGET_CONFIGDIRS.
3630 * configure, Makefile.in: Regenerate.
3631
3632 2009-12-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3633
3634 * libtool.m4: Sync from git Libtool.
3635 * ltmain.sh: Likewise.
3636 * ltoptions.m4: Likewise.
3637 * ltversion.m4: Likewise.
3638 * lt~obsolete.m4: Likewise.
3639
3640 2010-01-07 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3641 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
3642
3643 PR bootstrap/42424
3644 * configure.ac: Include libtool m4 files.
3645 (_LT_CHECK_OBJDIR): Call it.
3646 (extra_mpc_mpfr_configure_flags, extra_mpc_gmp_configure_flags,
3647 gmplibs, ppllibs, clooglibs): Use $lt_cv_objdir.
3648
3649 * configure: Regenerate.
3650
3651 2010-01-07 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3652
3653 PR bootstrap/41818
3654 * Makefile.tpl (BASE_TARGET_EXPORTS): Only add TARGET_LIB_PATH
3655 to $(RPATH_ENVVAR) if bootstrapping. Fix typo in comment.
3656 * Makefile.in: Regenerate.
3657
3658 2009-12-18 Ben Elliston <bje@au.ibm.com>
3659
3660 * config.sub, config.guess: Update from upstream sources.
3661
3662 2009-12-17 Jeff Johnston <jjohnstn@redhat.com>
3663
3664 * COPYING.NEWLIB: Update copyright date.
3665 * COPYING.LIBGLOSS: Ditto.
3666
3667 2009-12-07 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3668
3669 PR middle-end/30447
3670 PR middle-end/30789
3671 PR other/40302
3672
3673 * configure.ac: Require MPC.
3674 * configure: Regenerate.
3675
3676 * configure.ac: Update minimum MPC version to 0.8.
3677 * configure: Regenerate.
3678
3679 2009-11-20 Paolo Bonzini <bonzini@gnu.org>
3680
3681 * config.guess: Sync with upstream and gcc.
3682 * config.sub: Sync with upstream and gcc.
3683
3684 2009-11-16 Alexandre Oliva <aoliva@redhat.com>
3685
3686 * Makefile.def: Restore host and target settings for gmp.
3687 * Makefile.in: Rebuild.
3688
3689 2009-11-16 Alexandre Oliva <aoliva@redhat.com>
3690
3691 * configure.ac: Add libelf to host_libs. Enable in-tree configury
3692 of ppl and cloog. Fix in-tree configury of libelf, skip tests.
3693 Fix portability of test of C++ as bootstrap language. Add
3694 ppl/src/ppl-config.o to the bootstrap compare exclusion list.
3695 * configure: Rebuild.
3696 * Makefile.def: Drop host and target settings from gmp, mpfr, ppl,
3697 and cloog. Fix in-tree ppl configuration. Introduce libelf
3698 in-tree building.
3699 * Makefile.tpl (POSTSTAGE1_CXX_EXPORT): New.
3700 (POSTSTAGE1_HOST_EXPORTS): Use it.
3701 (STAGE[+id+]_CXXFLAGS): New.
3702 (BASE_FLAGS_TO_PASS): Pass it down.
3703 (configure-stage[+id+]-[+prefix+][+module+]): Use it. Add
3704 extra_exports.
3705 (all-stage[+id+]-[+prefix+][+module+]): Likewise.
3706 (configure-[+prefix+][+module+], all-[+prefix+][+module+]): Add
3707 extra_exports.
3708 * Makefile.in: Rebuild.
3709
3710 2009-11-06 Ozkan Sezer <sezeroz@gmail.com>
3711
3712 * configure.ac (FLAGS_FOR_TARGET): Add -L and -isystem
3713 paths for *-w64-mingw* and x86_64-*mingw*.
3714 * configure: Regenerated.
3715
3716 2009-10-30 Kai Tietz <kai.tietz@onevision.com>
3717
3718 * configure.ac: Disable target-winsup & co for
3719 x86_64-*-mingw* and *-w64-mingw* targets.
3720 * configure: Regenerated.
3721
3722 2009-10-23 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3723
3724 * configure.ac (CLooG test): Use = with test.
3725 * configure: Regenerate.
3726
3727 2009-10-22 Richard Guenther <rguenther@suse.de>
3728
3729 * configure.ac: Do not set LIBS for ppl/cloog checks. Disable
3730 cloog if the ppl version check failed. Move flags saving
3731 before setting in libelf check.
3732 * configure: Regenerate.
3733
3734 2009-10-21 Richard Guenther <rguenther@suse.de>
3735
3736 * configure.ac: Adjust the ppl and cloog configure to work as
3737 documented. Disable cloog if ppl was disabled. Omit the version
3738 checks if they were disabled.
3739 * configure: Re-generate.
3740
3741 2009-10-13 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3742
3743 * configure.ac: Add 'lto' to enable_languages, not
3744 new_enable_languages, and only if not already present.
3745 * configure: Regenerate.
3746
3747 2009-10-06 Ian Lance Taylor <iant@google.com>
3748
3749 * Makefile.def: check-gold depends upon all-gas.
3750 * Makefile.in: Rebuild.
3751
3752 2009-10-03 2009-02-05 Rafael Avila de Espindola <espindola@google.com>
3753
3754 * Makefile.def: all-lto-plugin depends on all-libiberty.
3755 set bootstrap=true for lto-plugin.
3756 Add lto-plugin.
3757 * Makefile.in: Regenerate.
3758 * configure.ac (host_libs): Add lto-plugin.
3759 * configure: Regenerate.
3760
3761 2009-10-03 Diego Novillo <dnovillo@google.com>
3762
3763 * Makefile.tpl (HOST_EXPORTS): Add LIBELFLIBS and LIBELFINC.
3764 (HOST_LIBELFLIBS): Define.
3765 (HOST_LIBELFINC): Define.
3766 * Makefile.in: Regenerate.
3767 * configure.ac: Add --enable-lto.
3768 Add --with-libelf, --with-libelf-include and --with-libelf-lib.
3769 If --enable-lto is used, add 'lto' to new_enable_languages.
3770 If --enable-lto is used and gold is enabled, add
3771 lto-plugin to configdirs.
3772 * configure: Regenerate.
3773
3774 2009-10-03 Simon Baldwin <simonb@google.com>
3775
3776 * configure.ac: If --with-system-zlib, suppress local zlib and
3777 pass --with-system-zlib to subdir configure scripts.
3778 * configure: Regenerate.
3779
3780 2009-10-01 Loren J. Rittle <ljrittle@acm.org>
3781 Paolo Bonzini <bonzini@gnu.org>
3782
3783 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Use $$s rather than
3784 $(srcdir).
3785 * Makefile.in: Rebuilt.
3786
3787 2009-09-29 Paolo Bonzini <bonzini@gnu.org>
3788
3789 Sync from gcc:
3790 2009-09-26 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3791
3792 * configure.ac: Update minimum MPC version to 0.7.
3793 * configure: Regenerate.
3794
3795 2009-09-25 Nick Clifton <nickc@redhat.com>
3796
3797 * configure.ac: Pass any --cache-file=/dev/null option on to
3798 subconfigures.
3799 * configure: Regenerate.
3800
3801 2009-09-23 Nick Clifton <nickc@redhat.com>
3802
3803 * config.sub, config.guess: Update from upstream sources.
3804
3805 2009-09-22 Loren J. Rittle <ljrittle@acm.org>
3806
3807 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Remove stray $$r/.
3808 * Makefile.in: Rebuilt.
3809
3810 2009-09-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3811
3812 PR bootstrap/32272
3813 * configure.ac: Error out if $srcdir isn't '.' but contains
3814 host-${host_noncanonical}.
3815 * configure: Regenerate.
3816
3817 2009-09-21 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3818
3819 * configure.ac: If bootstrapping a combined tree with
3820 --enable-gold, require c++ in stage1_languages.
3821 * configure: Regenerate.
3822
3823 * configure.ac: Also add target_libs of stage1_languages to
3824 bootstrap_target_libs.
3825 * configure: Regenerate.
3826
3827 * configure.ac: Diagnose --enable-build-with-cxx bootstrap
3828 with --enable-languages not containing c++.
3829 * configure: Regenerate.
3830
3831 2009-09-16 Jie Zhang <jie.zhang@analog.com>
3832
3833 * configure.ac: Disable java and boehm-gc for bfin-*-*.
3834 * configure: Regenerate.
3835
3836 2009-09-08 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3837
3838 * configure.ac: Do not use $extrasub for replacing @if/@endif
3839 parts in Makefile; instead, use additional arguments to
3840 AC_CONFIG_COMMANDS to do the replacement manually, with several
3841 sed invocations, to avoid HP-UX sed command limits.
3842 * configure: Regenerate.
3843
3844 2009-09-04 Alexandre Oliva <aoliva@redhat.com>
3845
3846 * configure.ac (with-build-config): Document. Handle without.
3847 Handle missing argument.
3848 * configure: Rebuilt.
3849
3850 2009-09-03 Alexandre Oliva <aoliva@redhat.com>
3851
3852 * configure.ac (--with-build-config): New. Set BUILD_CONFIG.
3853 Default to bootstrap-debug only if compare-debug works.
3854 * configure: Rebuilt.
3855 * Makefile.tpl: Make BUILD_CONFIG configure-configurable.
3856 * Makefile.in: Rebuilt.
3857
3858 2009-09-01 Alexandre Oliva <aoliva@redhat.com>
3859
3860 * Makefile.tpl (BUILD_CONFIG): Default to bootstrap-debug.
3861 * Makefile.in: Rebuilt.
3862
3863 2009-09-02 Paolo Bonzini <bonzini@gnu.org>
3864
3865 * Makefile.tpl (AWK): Fix typo.
3866 * Makefile.in: Regenerate.
3867
3868 2009-09-02 Paolo Bonzini <bonzini@gnu.org>
3869
3870 * configure.ac: Detect awk and sed.
3871 * Makefile.def (flags_to_pass): Add AWK and SED.
3872 * Makefile.tpl (AWK, SED): New.
3873 (BASE_FLAGS_TO_PASS): Add AWK and SED.
3874 * configure: Regenerate.
3875 * Makefile.in: Regenerate.
3876
3877 2009-09-01 Tristan Gingold <gingold@adacore.com>
3878
3879 * setup.com: Ported to Itanium VMS. Can also build using DCL scripts.
3880 Remove logical names.
3881
3882 2009-08-31 Dave Korn <dave.korn.cygwin@gmail.com>
3883
3884 * ltmain.sh (func_normal_abspath): New function.
3885 (func_relative_path): Likewise.
3886 (func_mode_help): Document new -bindir option for link mode.
3887 (func_mode_link): Add new -bindir option, and use it to place
3888 output DLL if specified.
3889
3890 2009-08-24 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3891
3892 * configure.ac (AC_PREREQ): Bump to 2.64.
3893
3894 2009-08-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3895
3896 * README-maintainer-mode: Point directly to upstream locations
3897 for autoconf, automake, libtool, gettext, instead of copies on
3898 sources.redhat.com. Document required versions.
3899 * configure.ac: Do not substitute datarootdir, htmldir,
3900 pdfdir, docdir. Do not process --with-datarootdir,
3901 --with-htmldir, --with-pdfdir, --with-docdir.
3902 * configure: Regenerate.
3903
3904 * configure: Regenerate.
3905
3906 * compile: Sync from Automake 1.11.
3907 * depcomp: Likewise.
3908 * install-sh: Likewise.
3909 * missing: Likewise.
3910 * mkinstalldirs: Likewise.
3911 * ylwrap: Likewise.
3912
3913 2009-08-19 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3914
3915 * configure.ac: Call AC_DISABLE_OPTION_CHECKING.
3916 (baseargs): Add --disable-option-checking.
3917 * configure: Regenerate.
3918
3919 * Makefile.def (configure-target-libiberty): Depend on
3920 all-binutils and all-ld.
3921 (configure-target-newlib): Likewise.
3922 * Makefile.in: Regenerate.
3923
3924 2009-08-19 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3925
3926 Sync with GCC, merge:
3927
3928 2009-07-31 Christian Bruel <christian.bruel@st.com>
3929
3930 * configure.ac (sh*-*-elf): Don't add target-libgloss to noconfigdirs.
3931 * configure: Regenerate.
3932
3933 2009-07-06 Ian Lance Taylor <iant@google.com>
3934
3935 * configure.ac: Add missing comma in AC_ARG_WITH(boot-libs).
3936 * configure: Rebuild.
3937
3938 2009-06-26 Steve Ellcey <sje@cup.hp.com>
3939
3940 PR bootstrap/40338
3941 * configure.ac (comparestring): Create new variable.
3942 * Makefile.tpl (comparestring): Use to skip some comparisions.
3943 * configure: Regenerate.
3944 * Makefile.in: Regenerate.
3945
3946 2009-06-23 Ian Lance Taylor <iant@google.com>
3947
3948 * configure.ac: Add --enable-build-with-cxx. When set, add c++ to
3949 boot_languages. Only bootstrap target libraries listed in
3950 target_libs for some boot language. Add --with-stage1-ldflags,
3951 --with-stage1-libs, --with-boot-ldflags, --with-boot-libs. Remove
3952 with_host_libstdcxx from ppllibs. Only add -fkeep-inline-functions
3953 if not building with C++.
3954 * Makefile.def: For target_module libstdc++-v3, set bootstrap=true.
3955 * Makefile.tpl (STAGE1_LDFLAGS, STAGE1_LIBS): New variables.
3956 (POSTSTAGE1_LDFLAGS, POSTSTAGE1_LIBS): New variables.
3957 (HOST_EXPORTS): Add STAGE1_LDFLAGS to LDFLAGS. Export HOST_LIBS.
3958 (POSTSTAGE1_HOST_EXPORTS): Set CXX and CXX_FOR_BUILD. Add
3959 POSTSTAGE1_LDFLAGS to LDFLAGS. Export HOST_LIBS.
3960 (POSTSTAGE1_FLAGS_TO_PASS): Likewise.
3961 * configure, Makefile.in: Rebuild.
3962
3963 2009-06-08 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3964
3965 * configure.ac: Detect MPC in default directory.
3966 * configure: Regenerate.
3967
3968 2009-06-02 Richard Sandiford <r.sandiford@uk.ibm.com>
3969
3970 * configure.ac (powerpc-*-aix*, rs6000-*-aix*): Add target-newlib
3971 to noconfdirs.
3972 * configure: Regenerate.
3973
3974 2009-05-29 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3975
3976 * Makefile.def: Add MPC support and dependencies.
3977 * configure.ac: Likewise. Reorganize GMP/MPFR checks.
3978
3979 * Makefile.in, configure: Regenerate.
3980
3981 2009-05-24 Nicolas Roche <roche@adacore.com>
3982
3983 * Makefile.tpl (compare-target): Skip ./ada/*tools directories.
3984 * Makefile.in: Regenerate.
3985
3986 2009-05-21 Dave Korn <dave.korn.cygwin@gmail.com>
3987
3988 * configure.ac (cygwin noconfigdirs): Remove libgcj.
3989 * configure: Regenerate.
3990
3991 2009-05-07 Dave Korn <dave.korn.cygwin@gmail.com>
3992
3993 * configure.ac ($with_ppl): Default to no if not supplied.
3994 ($with_cloog): Likewise.
3995 configure: Regenerate.
3996
3997 2009-04-24 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3998
3999 PR bootstrap/39739
4000 * configure.ac (extra_mpfr_configure_flags): Set and AC_SUBST.
4001 * Makefile.def (module=mpfr): Use extra_mpfr_configure_flags.
4002
4003 * configure, Makefile.in: Regenerate.
4004
4005 2009-04-14 Jakub Jelinek <jakub@redhat.com>
4006
4007 * configure.ac: Change copyright header to refer to version
4008 3 of the GNU General Public License and to point readers at the
4009 COPYING3 file and the FSF's license web page.
4010 * Makefile.def: Likewise.
4011 * Makefile.tpl: Likewise.
4012 * Makefile.in: Regenerate.
4013
4014 2009-04-09 Jack Howarth <howarth@bromo.med.uc.edu>
4015
4016 * configure.ac: Restore match for darwin9 or later. Use double
4017 brackets since regeneration eats one pair.
4018 * configure: Regenerate.
4019
4020 2009-08-18 Christopher Faylor <me+cygwin@cgf.cx>
4021
4022 * MAINTAINERS: Perform some obvious fixups.
4023
4024 2009-08-17 Ben Elliston <bje@au.ibm.com>
4025
4026 * config.sub, config.guess: Update from upstream sources.
4027
4028 2009-08-06 Michael Eager <eager@eagercon.com>
4029
4030 * configure.ac: Add Microblaze target.
4031 * configure: Regenerate.
4032
4033 2009-07-02 Tristan Gingold <gingold@adacore.com>
4034
4035 * configure.ac: Do not exclude gas for i386-*-darwin.
4036 Add a case for x86_64-*-darwin.
4037 * configure: Regenerate.
4038
4039 2009-06-26 Doug Evans <dje@sebabeach.org>
4040
4041 * Makefile.def (host_modules): Add cgen.
4042 * Makefile.in: Regenerate.
4043 * configure.ac (host_tools): Add cgen.
4044 * configure: Regenerate.
4045
4046 2009-06-17 Michael Eager <eager@eagercon.com>
4047
4048 * COPYING.LIBGLOSS: Add Xilinx license.
4049
4050 2009-06-15 Ryan Mansfield <rmansfield@qnx.com>
4051
4052 * configure.ac: Define is_elf for QNX Neutrino targets.
4053 * configure: Regenerate.
4054
4055 2009-06-03 Jerome Guitton <guitton@adacore.com>
4056 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4057
4058 * Makefile.tpl (all): Avoid a trailing backslash.
4059 * Makefile.in: Regenerate.
4060
4061 2009-06-03 Ben Elliston <bje@au.ibm.com>
4062
4063 * config.sub, config.guess: Update from upstream sources.
4064
4065 2009-06-02 Alexandre Oliva <aoliva@redhat.com>
4066
4067 * Makefile.tpl ([+compare-target+]): Compare all stage
4068 directories, rather than just gcc.
4069 * Makefile.in: Rebuilt.
4070
4071 2009-05-28 Doug Kwan <dougkwan@google.com>
4072
4073 * configure.ac: Support gold for target arm*-*-*.
4074 * configure: Regenerate.
4075
4076 2009-05-27 Alexandre Oliva <aoliva@redhat.com>
4077
4078 * Makefile.tpl (all): Avoid harmless warning in make all when
4079 gcc-bootstrap is enabled but stage_last does not exist.
4080 * Makefile.in: Rebuilt.
4081
4082 2009-05-25 Tristan Gingold <gingold@adacore.com>
4083
4084 * setup.com: Complete the file with configuration and build.
4085
4086 2009-05-18 Alexandre Oliva <aoliva@redhat.com>
4087
4088 PR other/40159
4089 * Makefile.tpl (all): Don't assume gcc-bootstrap and
4090 gcc-no-bootstrap are mutually exclusive.
4091 * Makefile.in: Rebuilt.
4092
4093 2009-05-18 Alexandre Oliva <aoliva@redhat.com>
4094
4095 PR other/40159
4096 * Makefile.tpl (all): Don't end with unconditional success.
4097 * Makefile.in: Rebuilt.
4098
4099 2009-05-12 Alexandre Oliva <aoliva@redhat.com>
4100
4101 PR target/37137
4102 * Makefile.def (flags_to_pass): Remove redundant and incomplete
4103 STAGE1_CFLAGS, STAGE2_CFLAGS, STAGE3_CFLAGS, and STAGE4_CFLAGS.
4104 Add FLAGS_FOR_TARGET and BUILD_CONFIG.
4105 (bootstrap_stage): Remove bootstrap-debug custom stages. Turn
4106 stage_configureflags, stage_cflags and stage_libcflags into
4107 explicit Makefile macros.
4108 * Makefile.tpl (HOST_EXPORTS, EXTRA_HOST_FLAGS): Pass GCJ and
4109 GFORTRAN.
4110 (POSTSTAGE1_HOST_EXPORTS): Add XGCC_FLAGS_FOR_TARGET and TFLAGS to
4111 CC. Set CC_FOR_BUILD from CC.
4112 (BASE_TARGET_EXPORTS, RAW_CXX_TARGET_EXPORTS,
4113 NORMAL_TARGET_EXPORTS): Move SYSROOT_CFLAGS_FOR_TARGET and
4114 DEBUG_PREFIX_CFLAGS_FOR_TARGET from CFLAGS and CXXFLAGS to
4115 XGCC_FLAGS_FOR_TARGET. Add it along with TFLAGS to CC, CXX, GCJ,
4116 and GFORTRAN.
4117 (TFLAGS, STAGE_CFLAGS, STAGE_TFLAGS, STAGE_CONFIGURE_FLAGS): New.
4118 (_LIBCFLAGS): Renamed to _TFLAGS.
4119 (do-compare-debug, do-compare3-debug): Drop.
4120 (CC, GCC_FOR_TARGET, CXX_FOR_TARGET, RAW_CXX_FOR_TARGET,
4121 GCJ_FOR_TARGET, GFORTRAN_FOR_TARGET): Remove FLAGS_FOR_TARGET.
4122 (FLAGS_FOR_TARGET, SYSROOT_CFLAGS_FOR_TARGET,
4123 DEBUG_PREFIX_CFLAGS_FOR_TARGET): Move down.
4124 (XGCC_FLAGS_FOR_TARGET): New.
4125 (BASE_FLAGS_TO_PASS): Pass STAGEid_CFLAGS, STAGEid_TFLAGS and TFLAGS.
4126 (EXTRA_HOST_FLAGS): Pass GCJ and GFORTRAN.
4127 (POSTSTAGE1_FLAGS_TO_PASS): Move SYSROOT_CFLAGS_FOR_TARGET and
4128 DEBUG_PREFIX_CFLAGS_FOR_TARGET from CFLAGS, CXXFLAGS, LIBCFLAGS,
4129 LIBCXXFLAGS to XGCC_FLAGS_FOR_TARGET. Add it along with TFLAGS
4130 to CC, CXX, GCJ, and GFORTRAN. Pass XGCC_FLAGS_FOR_TARGET and
4131 TFLAGS.
4132 (BUILD_CONFIG): Include if requested.
4133 (all): Set TFLAGS on bootstrap.
4134 (configure-stageid-prefixmodule): Pass TFLAGS, adjust FLAGS.
4135 (all-stageid-prefixmodule): Likewise.
4136 (do-clean, distclean-stageid): Set TFLAGS.
4137 (restrap): Fix whitespace.
4138 * Makefile.in: Rebuilt.
4139
4140 2009-04-25 Eric Botcazou <ebotcazou@adacore.com>
4141
4142 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Add GNATBIND.
4143 (POSTSTAGE1_FLAGS_TO_PASS): Pick up exported value for GNATBIND.
4144 * Makefile.in: Regenerate.
4145
4146 2009-04-24 Eli Zaretskii <eliz@gnu.org>
4147
4148 * config.guess (pc:*:*:*): Return i586-pc-msdosdjgpp, for
4149 consistency with config.sub. (Update from upstream sources.)
4150
4151 2009-04-21 Joseph Myers <joseph@codesourcery.com>
4152
4153 * texinfo/texinfo.tex: Update to version 2009-03-28.05.
4154
4155 2009-04-17 Ben Elliston <bje@au.ibm.com>
4156
4157 * config.sub, config.guess: Update from upstream sources.
4158
4159 2009-04-15 Anthony Green <green@moxielogic.com>
4160
4161 * configure.ac: Add moxie support.
4162 * configure: Rebuilt.
4163
4164 2009-04-09 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4165
4166 * configure.ac: Bump minimum GMP/MPFR versions to 4.2 and 2.3.1.
4167 * configure: Regenerate.
4168
4169 2009-04-09 H.J. Lu <hongjiu.lu@intel.com>
4170
4171 PR gas/10039
4172 * configure.ac: Require texinfo 4.7.
4173 * configure: Regenerated.
4174
4175 2009-04-09 Steve Ellcey <sje@cup.hp.com>
4176
4177 * Makefil.def (languages): New entries.
4178 * Makefile.tpl (check-gcc-*): New generic target.
4179 * Makefile.in: Regenerate.
4180
4181 2009-03-27 Eli Zaretskii <eliz@gnu.org>
4182
4183 * djunpack.bat: Use ".." quoting in Sed command, for the sake of
4184 Windows builds of Sed.
4185
4186 2009-03-18 Tom Tromey <tromey@redhat.com>
4187
4188 * configure: Rebuild.
4189 * configure.ac (host_libs): Add libiconv.
4190 * Makefile.in: Rebuild.
4191 * Makefile.def (host_modules): Add libiconv.
4192 (configure-gdb, all-gdb): Depend on libiconv.
4193
4194 2009-03-16 Tristan Gingold <gingold@adacore.com>
4195
4196 * configure.ac: Treat gdb as supported on x86_64-darwin.
4197 * configure: Regenerate.
4198
4199 2009-03-16 Joseph Myers <joseph@codesourcery.com>
4200
4201 Merge from GCC:
4202
4203 2009-03-16 Joseph Myers <joseph@codesourcery.com>
4204
4205 * configure.ac (--with-host-libstdcxx): New option.
4206 * configure: Regenerate.
4207
4208 2009-01-29 Robert Millan <rmh@aybabtu.com>
4209
4210 * configure.ac: Recognize GNU/kOpenSolaris (*-*-kopensolaris*-gnu).
4211 * configure: Regenerate.
4212
4213 2009-01-12 Sebastian Pop <sebastian.pop@amd.com>
4214
4215 PR tree-optimization/38515
4216 * configure.ac (cloog-polylib): Removed.
4217 (with_ppl, with_cloog): Test for "no".
4218 * configure: Regenerated.
4219
4220 2009-03-01 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4221
4222 Backport from git Libtool:
4223
4224 2009-01-19 Robert Millan <rmh@aybabtu.com>
4225 Support GNU/kOpenSolaris.
4226 * libltdl/m4/libtool.m4 (_LT_SYS_DYNAMIC_LINKER)
4227 (_LT_CHECK_MAGIC_METHOD, _LT_COMPILER_PIC, _LT_LINKER_SHLIBS)
4228 (_LT_LANG_CXX_CONFIG) [kopensolaris*-gnu]: Recognize
4229 GNU/kOpenSolaris.
4230
4231 2009-02-05 Andreas Schwab <schwab@suse.de>
4232
4233 * Makefile.tpl (stage_last): Define $r and $s before using
4234 $(RECURSE_FLAGS_TO_PASS).
4235 * Makefile.in: Regenerate
4236
4237 2009-01-21 Jeff Johnston <jjohnstn@redhat.com>
4238
4239 * COPYING.NEWLIB: Add ARM license.
4240
4241 2009-01-16 Alan Modra <amodra@bigpond.net.au>
4242
4243 * Makefile.def (configure-opcodes): Depend on configure-libiberty.
4244 (all-opcodes): Depend on all-libiberty.
4245 * Makefile.in: Regenerate.
4246
4247 2009-01-15 Douglas B Rupp <rupp@gnat.com>
4248
4249 * configure.ac (ia64*-*-*vms*): Add case with no gdb or ld support.
4250 * configure: Regenerate.
4251
4252 2008-12-18 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4253
4254 Backport link test fix from upstream Libtool:
4255
4256 * libltdl.m4 (_LT_SYS_DYNAMIC_LINKER, _LT_LINKER_SHLIBS):
4257 Add cache variables to tests that require the linker to work.
4258 For shlibpath_overrides_runpath, this also changes the semantics
4259 to let the result from the C compiler take precedence.
4260 compiler take precedence.
4261
4262 2008-12-02 Ben Elliston <bje@au.ibm.com>
4263
4264 * config.sub, config.guess: Update from upstream sources.
4265
4266 2008-12-17 Jeff Johnston <jjohnstn@redhat.com>
4267
4268 * COPYING.NEWLIB: Updated.
4269 * COPYING.LIBGLOSS: Ditto.
4270
4271 2008-12-16 Paolo Bonzini <bonzini@gnu.org>
4272
4273 Sync with GCC:
4274
4275 2008-12-12 Sebastian Pop <sebastian.pop@amd.com>
4276
4277 * configure.ac (ppllibs): Add by default the lib flags.
4278 * configure: Regenerate.
4279
4280 2008-12-04 Jack Howarth <howarth@bromo.med.uc.edu>
4281
4282 * configure.ac: Add double brackets on darwin[912].
4283 * configure: Regenerate.
4284
4285 2008-12-02 Jack Howarth <howarth@bromo.med.uc.edu>
4286
4287 * configure.ac: Expand to darwin10 and later.
4288 * configure: Regenerate.
4289
4290 2008-12-02 Andreas Schwab <schwab@suse.de>
4291
4292 * Makefile.def: configure-target-boehm-gc depends on
4293 all-target-libstdc++-v3.
4294 * Makefile.in: Regenerate.
4295
4296 2008-12-02 Ben Elliston <bje@au.ibm.com>
4297
4298 * config.sub, config.guess: Update from upstream sources.
4299
4300 2008-11-27 Joseph Myers <joseph@codesourcery.com>
4301
4302 Merge from GCC:
4303
4304 2007-12-02 Matthias Klose <doko@ubuntu.com>
4305
4306 * config-ml.in: Remove 64bit configure tests.
4307
4308 2008-05-14 Rafael Espindola <espindola@google.com>
4309
4310 * config-ml.in: don't handle --enable-shared and --enable-static.
4311
4312 2008-09-02 Sebastian Pop <sebastian.pop@amd.com>
4313 Tobias Grosser <grosser@fim.uni-passau.de>
4314 Jan Sjodin <jan.sjodin@amd.com>
4315 Harsha Jagasia <harsha.jagasia@amd.com>
4316 Dwarakanath Rajagopal <dwarak.rajagopal@amd.com>
4317 Konrad Trifunovic <konrad.trifunovic@inria.fr>
4318 Adrien Eliche <aeliche@isty.uvsq.fr>
4319
4320 Merge from graphite branch.
4321 * configure: Regenerate.
4322 * Makefile.in: Regenerate.
4323 * configure.ac (host_libs): Add ppl and cloog.
4324 Add checks for PPL and CLooG.
4325 * Makefile.def (ppl, cloog): Added modules and dependences.
4326 * Makefile.tpl (PPLLIBS, PPLINC, CLOOGLIBS, CLOOGINC): New.
4327 (HOST_PPLLIBS, HOST_PPLINC, HOST_CLOOGLIBS, HOST_CLOOGINC): New.
4328
4329 2008-09-03 Richard Guenther <rguenther@suse.de>
4330
4331 * configure.ac: Always pass -DCLOOG_PPL_BACKEND to the
4332 cloog test.
4333 * configure: Re-generate.
4334
4335 2008-09-03 Sebastian Pop <sebastian.pop@amd.com>
4336
4337 * configure.ac (--with-cloog-polylib): New.
4338 (--disable-cloog-version-check): New.
4339 (--disable-ppl-version-check): New.
4340 * configure: Re-generate.
4341
4342 2008-09-05 Richard Guenther <rguenther@suse.de>
4343
4344 * configure.ac: Initialize clooglibs to -lcloog.
4345 * configure: Re-generate.
4346
4347 2008-10-13 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4348
4349 * configure.ac (MPFR check): Bump minimum version to 2.3.0 and
4350 recommended version to 2.3.2.
4351
4352 * configure: Regenerate.
4353
4354 2008-10-31 Ben Elliston <bje@au.ibm.com>
4355
4356 * configure.ac (spu-*-*): Remove special case.
4357 * configure: Regenerate.
4358
4359 Complete comment text from GCC version of:
4360
4361 2008-08-31 Aaron W. LaFramboise <aaronavay62@aaronwl.com>
4362
4363 * configure.ac (RPATH_ENVVAR): Use PATH on Windows.
4364 (GCC_SHLIB_SUBDIR): New.
4365 * Makefile.tpl (HOST_LIB_PATH_gcc): Use GCC_SHLIB_SUBDIR.
4366 * configure: Regenerate.
4367 * Makefile.in: Regenerate.
4368
4369 2008-11-27 Tristan Gingold <gingold@adacore.com>
4370
4371 * configure.ac: Build gdb for i?86-*-darwin*
4372 * configure: Regenerated.
4373
4374 2008-11-14 Daniel Jacobowitz <dan@codesourcery.com>
4375
4376 PR bootstrap/38014
4377 PR bootstrap/37923
4378
4379 Revert:
4380
4381 2008-10-24 Daniel Jacobowitz <dan@codesourcery.com>
4382
4383 * Makefile.tpl (HOST_EXPORTS): Correct CPPFLAGS typo.
4384 * Makefile.in: Regenerated.
4385
4386 2008-10-22 Daniel Jacobowitz <dan@codesourcery.com>
4387
4388 PR gdb/921
4389 PR gdb/1646
4390 PR gdb/2175
4391 PR gdb/2176
4392
4393 * Makefile.def (flags_to_pass): Add CPPFLAGS_FOR_BUILD and CPPFLAGS.
4394 * Makefile.tpl (BUILD_EXPORTS): Set CPPFLAGS.
4395 (EXTRA_BUILD_FLAGS): Correct typo. Pass CPPFLAGS.
4396 (HOST_EXPORTS): Pass CPPFLAGS.
4397 (CPPFLAGS_FOR_BUILD, CPPFLAGS, CPPFLAGS_FOR_TARGET): Define.
4398 (LDFLAGS_FOR_TARGET): Initialize from configure script.
4399 (EXTRA_TARGET_FLAGS): Set CPPFLAGS.
4400 * Makefile.in, configure: Regenerated.
4401 * configure.ac: Set CPPFLAGS_FOR_TARGET, LDFLAGS_FOR_TARGET,
4402 and CPPFLAGS_FOR_BUILD.
4403
4404 2008-10-29 Stefan Schulze Frielinghaus <xxschulz@de.ibm.com>
4405
4406 * configure.ac [spu-*-*]: Do not set skipdirs.
4407 * configure: Re-generate.
4408
4409 2008-10-24 Daniel Jacobowitz <dan@codesourcery.com>
4410
4411 * Makefile.tpl (HOST_EXPORTS): Correct CPPFLAGS typo.
4412 * Makefile.in: Regenerated.
4413
4414 2008-10-22 Daniel Jacobowitz <dan@codesourcery.com>
4415
4416 PR gdb/921
4417 PR gdb/1646
4418 PR gdb/2175
4419 PR gdb/2176
4420
4421 * Makefile.def (flags_to_pass): Add CPPFLAGS_FOR_BUILD and CPPFLAGS.
4422 * Makefile.tpl (BUILD_EXPORTS): Set CPPFLAGS.
4423 (EXTRA_BUILD_FLAGS): Correct typo. Pass CPPFLAGS.
4424 (HOST_EXPORTS): Pass CPPFLAGS.
4425 (CPPFLAGS_FOR_BUILD, CPPFLAGS, CPPFLAGS_FOR_TARGET): Define.
4426 (LDFLAGS_FOR_TARGET): Initialize from configure script.
4427 (EXTRA_TARGET_FLAGS): Set CPPFLAGS.
4428 * Makefile.in, configure: Regenerated.
4429 * configure.ac: Set CPPFLAGS_FOR_TARGET, LDFLAGS_FOR_TARGET,
4430 and CPPFLAGS_FOR_BUILD.
4431
4432 2008-09-29 Peter O'Gorman <pogma@thewrittenword.com>
4433
4434 * libtool.m4: Update to libtool 2.2.6.
4435 * lt~obsolete.m4: Update to libtool 2.2.6.
4436 * ltmain.sh: Update to libtool 2.2.6.
4437 * ltsugar.m4: Update to libtool 2.2.6.
4438 * ltversion.m4: Update to libtool 2.2.6.
4439 * ltoptions.m4: Update to libtool 2.2.6.
4440 * ltgcc.m4: Update to match changes from libtool 2.2.6.
4441
4442 2008-08-31 Aaron W. LaFramboise <aaronavay62@aaronwl.com>
4443
4444 * configure.ac (RPATH_ENVVAR): Use PATH on Windows.
4445 (GCC_SHLIB_SUBDIR): New.
4446 * Makefile.tpl (HOST_LIB_PATH_gcc): Use GCC_SHLIB_SUBDIR.
4447 * configure: Regenerate.
4448 * Makefile.in: Regenerate.
4449
4450 2008-08-28 Tristan Gingold <gingold@adacore.com>
4451
4452 * configure.ac (powerpc-*-darwin*, i?86-*-darwin*,x86_64-*-darwin9):
4453 Enable bfd, binutils and opcodes.
4454 * configure: Regenerate.
4455
4456 2008-08-16 Nicolas Roche <roche@adacore.com>
4457
4458 * Makefile.tpl: Add BOOT_ADAFLAGS.
4459 * Makefile.in: Regenerate.
4460
4461 2008-08-16 Richard Sandiford <rdsandiford@googlemail.com>
4462
4463 * configure.ac (mips*-*-*linux*, mips*-*-gnu*): Use mt-mips-gnu.
4464 * configure: Regenerate.
4465
4466 2008-07-30 Paolo Bonzini <bonzini@gnu.org>
4467
4468 Sync with gcc:
4469 2008-07-30 Paolo Bonzini <bonzini@gnu.org>
4470
4471 * configure.ac: Add makefile fragments for hpux.
4472 * Makefile.def (flags_to_pass): Add ADA_CFLAGS.
4473 * Makefile.tpl (HOST_EXPORTS): Pass ADA_CFLAGS.
4474 * configure: Regenerate.
4475 * Makefile.in: Regenerate.
4476
4477 2008-06-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4478
4479 * Makefile.tpl ($(srcdir)/configure): Update dependencies.
4480 * Makefile.in: Regenerate.
4481 * configure: Regenerate.
4482
4483 2008-06-18 Ian Lance Taylor <iant@google.com>
4484
4485 * src-release (BINUTILS_SUPPORT_DIRS): Remove mkdep and depcomp.
4486
4487 * src-release (BINUTILS_SUPPORT_DIRS): Add depcomp.
4488
4489 2008-06-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4490
4491 * configure: Regenerate.
4492
4493 2008-06-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4494
4495 * configure.ac: Set TOPLEVEL_CONFIGURE_ARGUMENTS early, when
4496 "$@" is still intact with both Autoconf 2.59 and 2.62.
4497 * configure: Regenerate.
4498
4499 2008-06-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4500
4501 * Makefile.tpl: Fix comment errors.
4502 * Makefile.in: Regenerate.
4503
4504 2008-06-13 Julian Brown <julian@codesourcery.com>
4505
4506 * configure.ac (arm*-*-linux-gnueabi): Don't disable building
4507 of libobjc for ARM EABI Linux.
4508 * configure: Regenerate.
4509
4510 2008-06-12 David S. Miller <davem@davemloft.net>
4511 David Edelsohn <edelsohn@gnu.org>
4512
4513 * configure.ac: Add powerpc*-*-* to gold supported targets.
4514 * configure: Regenerate.
4515
4516 2008-06-08 Joseph Myers <joseph@codesourcery.com>
4517
4518 PR tree-optimization/36218
4519 * Makefile.def (flags_to_pass): Add LDFLAGS_FOR_BUILD.
4520 * Makefile.tpl (EXTRA_BUILD_FLAGS): Define.
4521 (all prefix="build-"): Pass them to build-system sub-makes.
4522 * Makefile.in: Regenerate.
4523
4524 2008-05-16 Daniel Jacobowitz <dan@codesourcery.com>
4525
4526 * src-release (DEVO_SUPPORT): Add ChangeLog, MAINTAINERS,
4527 README-maintainer-mode, lt~obsolete.m4, ltgcc.m4, depcomp,
4528 mkdep, and compile. Update comments.
4529 (ETC_SUPPORT): Add ChangeLog and update comments.
4530
4531 2008-05-11 Ian Lance Taylor <iant@google.com>
4532
4533 * src-release (BINUTILS_SUPPORT_DIRS): Add elfcpp and gold.
4534
4535 2008-04-18 Paolo Bonzini <bonzini@gnu.org>
4536
4537 Sync with gcc:
4538 2008-04-18 Paolo Bonzini <bonzini@gnu.org>
4539
4540 PR bootstrap/35457
4541 * configure.ac: Include override.m4.
4542 * configure: Regenerate.
4543
4544 2008-04-18 Paolo Bonzini <bonzini@gnu.org>
4545
4546 * Makefile.tpl (restrap): Call `make all' using double-colon rules.
4547 * Makefile.in: Regenerate.
4548
4549 2008-04-11 Eric B. Weddington <eweddington@cso.atmel.com>
4550
4551 * configure.ac: Do not build libssp for the AVR.
4552 * configure: Regenerate.
4553
4554 2008-04-18 Nick Clifton <nickc@redhat.com>
4555
4556 * MAINTAINERS: Replace reference to configure.in with reference to
4557 configure.ac.
4558
4559 2008-04-18 M R Swami Reddy <MR.Swami.Reddy@nsc.com>
4560
4561 * configure.ac (cr16-*-*): Add case for cr16 target and include gdb
4562 as nonconfigurable directories list.
4563 * configure: Regenerate.
4564
4565 2008-04-14 David S. Miller <davem@davemloft.net>
4566
4567 * configure.ac: Add sparc*-*-* to gold supported targets.
4568 * configure: Regenerate.
4569
4570 2008-04-14 Ben Elliston <bje@au.ibm.com>
4571
4572 * config.sub, config.guess: Update from upstream sources.
4573
4574 2008-04-12 Hans-Peter Nilsson <hp@axis.com>
4575
4576 * Makefile.tpl <gcc>: Error early unless at least GNU make 3.80.
4577 * Makefile.in: Regenerate.
4578
4579 2008-04-07 Ian Lance Taylor <iant@google.com>
4580
4581 * Makefile.def: check-gold depends upon all-binutils.
4582 * Makefile.in: Regenerate.
4583
4584 2008-04-04 Nick Clifton <nickc@redhat.com>
4585
4586 PR binutils/4334
4587 * configure.ac: Run ACX_CHECK_CYGWIN_CAT_WORKS for cygwin hosted
4588 builds.
4589 * configure: Regenerate.
4590
4591 2008-04-04 NightStrike <NightStrike@gmail.com>
4592
4593 PR other/35151
4594 * configure.ac: Combine rules for mingw32 and mingw64.
4595 * configure: Regenerate.
4596
4597 2008-03-27 Paolo Bonzini <bonzini@gnu.org>
4598
4599 * Makefile.tpl (PICFLAG, PICFLAG_FOR_TARGET): Remove.
4600 * Makefile.in: Regenerate.
4601
4602 2008-03-20 Ian Lance Taylor <iant@google.com>
4603
4604 * configure.ac: Add support for --enable-gold.
4605 * Makefile.def: Add gold as a directory like ld.
4606 * configure, Makefile.in: Regenerate.
4607
4608 2008-03-19 Andreas Krebbel <krebbel1@de.ibm.com>
4609
4610 * opcodes/s390-mkopc.c (s390_opcode_cpu_val): S390_OPCODE_Z10 added.
4611 (s390_cond_extensions): Reduced extensions to the compare related.
4612 (main): z10 cpu type option added.
4613 (expandConditionalJump): Renamed to ...
4614 (insertExpandedMnemonic): ... this.
4615
4616 * opcodes/s390-opc.c: Re-group the operand format makros.
4617 (INSTR_RIE_RRPU, INSTR_RIE_RRP0, INSTR_RIE_RUPI,
4618 INSTR_RIE_R0PI, INSTR_RIE_RUPU, INSTR_RIE_R0PU, INSTR_RIE_R0IU,
4619 INSTR_RIE_R0I0, INSTR_RIE_R0UU, INSTR_RIE_R0U0,
4620 INSTR_RIE_RRUUU, INSTR_RIS_RURDI, INSTR_RIS_R0RDI, INSTR_RIS_RURDU,
4621 INSTR_RIS_R0RDU, INSTR_RRF_U0RR, INSTR_RRF_00RR, INSTR_RRS_RRRDU,
4622 INSTR_RRS_RRRD0, INSTR_RXY_URRD, INSTR_SIY_IRD, INSTR_SIL_RDI,
4623 INSTR_SIL_RDU): New instruction formats added.
4624 (MASK_RIE_RRPU, MASK_RIE_RRP0, MASK_RIE_RUPI, MASK_RIE_R0PI,
4625 MASK_RIE_RUPU, MASK_RIE_R0PU, MASK_RIE_R0IU, MASK_RIE_R0I0,
4626 MASK_RIE_R0UU, MASK_RIE_R0U0, MASK_RIE_RRUUU, MASK_RIS_RURDI,
4627 MASK_RIS_R0RDI, MASK_RIS_RURDU, MASK_RIS_R0RDU, MASK_RRF_U0RR,
4628 MASK_RRF_00RR, MASK_RRS_RRRDU, MASK_RRS_RRRD0, MASK_RXY_URRD,
4629 MASK_SIY_IRD, MASK_SIL_RDI, MASK_SIL_RDU): New instruction format
4630 masks added.
4631 (s390_opformats): New formats added "ris", "rrs", "sil".
4632 * opcodes/s390-opc.txt: Add the conditional jumps with the
4633 extensions removed from automatic expansion in s390-mkopc.c manually.
4634 (asi - trtre): Add new System z10 EC instructions.
4635 * include/opcode/s390.h (s390_opcode_cpu_val): S390_OPCODE_Z10 added.
4636
4637 2008-03-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4638
4639 * configure.ac: m4_include config/proginstall.m4.
4640 * configure: Regenerate.
4641
4642 2008-03-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4643
4644 Backport from upstream Libtool:
4645
4646 2007-10-12 Eric Blake <ebb9@byu.net>
4647
4648 Deal with Autoconf 2.62's semantic change in m4_append.
4649 * ltsugar.m4 (lt_append): Replace broken versions of
4650 m4_append.
4651 (lt_if_append_uniq): Don't require separator to be overquoted,
4652 and avoid broken m4_append.
4653 (lt_dict_add): Fix typo.
4654 * libtool.m4 (_LT_DECL): Don't overquote separator.
4655
4656 2008-03-13 David Edelsohn <edelsohn@gnu.org>
4657
4658 * config.rpath: Add AIX 6 support.
4659
4660 2008-03-13 Paolo Bonzini <bonzini@gnu.org>
4661
4662 * Makefile.def (stageprofile). Remove -fprofile-generate
4663 from stage_libcflags.
4664 * Makefile.in: Regenerate.
4665
4666 2008-03-13 Ben Elliston <bje@au.ibm.com>
4667
4668 * config.sub, config.guess: Update from upstream sources.
4669
4670 2008-03-06 Florian Krohm <fkrohm@us.ibm.com>
4671
4672 * s390-opc.c (INSTR_RSL_R0RD): Fix operands.
4673 * s390-opc.txt (cmpsc): Duplicate entry removed.
4674 (dxr, sqdr, sqer, cxfbr, cdfbr, cefbr, lzer, lzdr, lzxr,
4675 cegbr, cdgbr, cxgbr, cegr, cdgr, cxgr, cxfr, cdfr, cefr, fixr, fidr,
4676 fier, cu42, cu41): Fix operand format.
4677
4678 2008-02-20 Paolo Bonzini <bonzini@gnu.org>
4679
4680 PR bootstrap/32009
4681 PR bootstrap/32161
4682
4683 * configure.ac (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Compute here.
4684 * configure: Regenerate.
4685
4686 * Makefile.def: Define stage_libcflags for all bootstrap stages.
4687 * Makefile.tpl (BOOT_LIBCFLAGS, STAGE2_LIBCFLAGS, STAGE3_LIBCFLAGS,
4688 STAGE4_LIBCFLAGS): New.
4689 (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Subst from autoconf, without
4690 $(SYSROOT_CFLAGS_FOR_TARGET) and $(DEBUG_PREFIX_CFLAGS_FOR_TARGET).
4691 (BASE_TARGET_EXPORTS): Append them here to C{,XX}FLAGS.
4692 (EXTRA_TARGET_FLAGS): Append them here to {LIB,}C{,XX}FLAGS.
4693 (configure-stage[+id+]-[+prefix+][+module+]): Pass stage_libcflags
4694 for target modules. Don't export LIBCFLAGS.
4695 (all-stage[+id+]-[+prefix+][+module+]): Pass stage_libcflags; pass
4696 $(BASE_FLAGS_TO_PASS) where [+args+] was passed, and [+args+] after
4697 the overridden CFLAGS_FOR_TARGET and CXXFLAGS_FOR_TARGET.
4698 (invocations of `all'): Replace $(TARGET_FLAGS_TO_PASS) with
4699 $(EXTRA_TARGET_FLAGS), $(FLAGS_TO_PASS) with $(EXTRA_HOST_FLAGS).
4700 * Makefile.in: Regenerate.
4701
4702 2008-02-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4703
4704 PR libgcj/33085
4705 * libtool.m4 (_LT_COMPILER_PIC) [ mingw, cygwin ] <GCJ>:
4706 Do not use -DDLL_EXPORT. Backport from upstream.
4707
4708 2008-02-14 Nick Clifton <nickc@redhat.com>
4709
4710 Import this patch from gcc:
4711 2008-01-24 David Edelsohn <edelsohn@gnu.org>
4712
4713 * libtool.m4: Backport AIX 6 support from ToT Libtool.
4714
4715 2008-02-02 Hans-Peter Nilsson <hp@axis.com>
4716
4717 * configure.ac: Enable fortran for cris-*-elf and crisv32-*-elf.
4718 * configure: Regenerate.
4719
4720 2008-01-31 Marc Gauthier <marc@tensilica.com>
4721
4722 * configure.ac (xtensa*-*-*): Recognize processor variants.
4723 * configure: Regenerate.
4724
4725 2008-01-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4726
4727 PR bootstrap/34922
4728 * configure.ac (PARSE_ARGS): Push suitable setting of
4729 ac_subdirs_all, for `./configure --help=recursive'.
4730 Handle `+' in generic toplevel directory disabling.
4731 * configure: Regenerate.
4732
4733 2008-01-23 Ben Elliston <bje@au.ibm.com>
4734
4735 * config.sub, config.guess: Update from upstream sources.
4736
4737 2008-01-08 Ben Elliston <bje@au.ibm.com>
4738
4739 * config.sub, config.guess: Update from upstream sources.
4740
4741 2007-12-19 Jeff Johnston <jjohnstn@redhat.com>
4742
4743 * COPYING.LIBGLOSS: Update default copyright.
4744
4745 2007-12-19 Jeff Johnston <jjohnstn@redhat.com>
4746
4747 * COPYING.NEWLIB: Update default copyright.
4748
4749 2007-12-17 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4750
4751 * configure.ac: Change required MPFR from 2.2.0 -> 2.2.1.
4752 Change recommended MPFR from 2.2.1 > 2.3.0.
4753 * configure: Regenerate.
4754
4755 2007-12-13 Richard Sandiford <rsandifo@nildram.co.uk>
4756
4757 * Makefile.tpl (CFLAGS_FOR_TARGET): Add -g.
4758 (CXXFLAGS_FOR_TARGET): Add -O2 -g.
4759 * Makefile.in: Regenerate.
4760
4761 2007-12-10 Andreas Tobler <a.tobler@schweiz.org>
4762
4763 * configure.ac: Enable libjava for x86_64-*-darwin9.
4764 * configure: Regenerate.
4765
4766 2007-12-05 Ben Elliston <bje@au.ibm.com>
4767
4768 * config.sub, config.guess: Update from upstream sources.
4769
4770 2007-11-28 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4771
4772 * config-ml.in: Robustify against white space in absolute file
4773 names.
4774
4775 * config-ml.in (multi-clean): Substitute ${Makefile}.
4776 Remove superfluous ${Makefile} in list.
4777
4778 2007-10-23 Daniel Jacobowitz <dan@codesourcery.com>
4779
4780 * Makefile.def (dependencies): Make configure-gdb depend on
4781 all-intl.
4782 * Makefile.in: Regenerated.
4783
4784 2007-10-15 Patrick Mansfield <patmans@us.ibm.com>
4785
4786 * Makefile.def: To avoid problems running with parallel makes,
4787 build newlib before libgloss so that target specific header
4788 files are availble.
4789 * Makefile.in: Regenerate.
4790
4791 2007-10-11 Daniel Jacobowitz <dan@codesourcery.com>
4792
4793 * Makefile.def (dependencies): Add all-gdb -> all-libdecnumber.
4794 * Makefile.in: Regenerate.
4795
4796 2007-10-11 Daniel Jacobowitz <dan@codesourcery.com>
4797
4798 * src-release (GDB_SUPPORT_DIRS): Add libdecnumber.
4799 * libdecnumber: New directory, imported from GCC.
4800
4801 2007-10-08 Mike Frysinger <vapier@gentoo.org>
4802
4803 * configure.ac (CFLAGS_FOR_BUILD, CXXFLAGS_FOR_BUILD,
4804 LDFLAGS_FOR_BUILD): Default them to host flags only for $host = $build.
4805 Set default CXXFLAGS_FOR_BUILD to CXXFLAGS, not CFLAGS. Set default
4806 LDFLAGS_FOR_BUILD to LDFLAGS, not CFLAGS.
4807 * configure: Regenerate.
4808
4809 2007-10-01 Paolo Bonzini <bonzini@gnu.org>
4810
4811 * Makefile.tpl (AR_FOR_BUILD, AS_FOR_BUILD, CXX_FOR_BUILD,
4812 DLLTOOL_FOR_BUILD, GCJ_FOR_BUILD, GFORTRAN_FOR_BUILD,
4813 LDFLAGS_FOR_BUILD, LD_FOR_BUILD, NM_FOR_BUILD, RANLIB_FOR_BUILD,
4814 WINDMC_FOR_BUILD, WINDRES_FOR_BUILD): Use autoconf substitutions.
4815 * configure.ac: Default them to host tools for $host = $build.
4816 Subst them.
4817
4818 * configure: Regenerate.
4819 * Makefile.in: Regenerate.
4820
4821 2007-09-20 Richard Sandiford <rsandifo@nildram.co.uk>
4822
4823 * configure.ac (mipsisa*-*-elfoabi*): New stanza.
4824 * configure: Regenerate.
4825
4826 2007-09-19 Benjamin Kosnik <bkoz@redhat.com>
4827
4828 * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Move libgomp before
4829 libstdc++.
4830 * Makefile.def: Add libgomp config as a maybe dependency for libstdc++.
4831 * configure: Regenerate.
4832 * Makefile.in: Regenerate.
4833
4834 2007-09-17 Andreas Schwab <schwab@suse.de>
4835
4836 * configure.ac: Raise minimum makeinfo version to 4.6.
4837 * configure: Regenerate.
4838
4839 2007-09-15 Alan Modra <amodra@bigpond.net.au>
4840
4841 * configure.ac: Correct makeinfo version check.
4842 * configure: Regenerate.
4843
4844 2007-09-14 Richard Sandiford <richard@codesourcery.com>
4845
4846 * configure.ac (mips*-sde-elf*): New stanza. Add target-libiberty
4847 to $skipdirs and only disable gprof for newlib. Use the normal
4848 mips*-elf* handling in other respects.
4849 * configure: Regnerate.
4850
4851 2007-09-12 David Daney <ddaney@avtrex.com>
4852
4853 * configure.ac: Remove mips64*-*-linux* noconfigdirs section, thus
4854 enabling libgcj.
4855 * configure: Regenerate.
4856
4857 2007-09-12 Richard Guenther <rguenther@suse.de>
4858
4859 * configure.ac (--enable-stage1-checking): If neither --enable-checking
4860 nor --disable-checking is provided also turn on yes and types
4861 checking for stage1.
4862 * configure: Re-generate.
4863
4864 2007-09-11 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
4865
4866 PR target/33281
4867 * configure.ac: Use config/mh-mingw on mingw.
4868 * configure: Regenerate.
4869
4870 2007-09-10 Rask Ingemann Lambertsen <rask@sygehus.dk>
4871
4872 PR other/32154
4873 * configure.ac: For libgloss targets, point the linker to the linker
4874 script, startup code and simulator library.
4875 * configure: Regenerate.
4876
4877 2007-09-09 Andrew Haley <aph@redhat.com>
4878
4879 * configure.ac (noconfigdirs): Remove target-libffi and
4880 target-libjava.
4881
4882 2007-08-29 Nick Clifton <nickc@redhat.com>
4883
4884 * config.sub, config.guess: Update from upstream sources.
4885
4886 2007-08-21 Richard Guenther <rguenther@suse.de>
4887
4888 * configure.ac: Add types checking to stage1 checking flags.
4889 * configure: Regenerate.
4890
4891 2007-08-18 Paul Brook <paul@codesourcery.com>
4892 Joseph Myers <joseph@codesourcery.com>
4893
4894 * Makefile.tpl (DEBUG_PREFIX_CFLAGS_FOR_TARGET): New.
4895 (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Include it.
4896 * Makefile.in: Regenerate.
4897 * configure.ac (--with-debug-prefix-map): New.
4898 * configure: Regenerate.
4899
4900 2007-08-17 Richard Sandiford <richard@codesourcery.com>
4901 Nigel Stephens <nigel@mips.com>
4902
4903 * configure.ac (mips*-sde-elf*): New stanza. Use config/mt-sde
4904 as target_makefile_frag.
4905 * configure: Regenerate.
4906
4907 2007-08-16 Alexandre Oliva <aoliva@redhat.com>
4908
4909 * Makefile.def (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS):
4910 Add to flags_to_pass. Adjust uses of BOOT_CFLAGS.
4911 (bootstrap2-debug, bootstrap-debug): New bootstrap stages.
4912 * Makefile.tpl (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS): New.
4913 (do-compare, do-compare3, do-compare-debug): New.
4914 ([+compare-target+]): Use them.
4915
4916 2007-08-16 Alexandre Oliva <aoliva@redhat.com>
4917
4918 * Makefile.def (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS):
4919 Add to flags_to_pass. Adjust uses of BOOT_CFLAGS.
4920 (bootstrap2-debug, bootstrap-debug): New bootstrap stages.
4921 * Makefile.tpl (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS): New.
4922 (do-compare, do-compare3, do-compare-debug): New.
4923 ([+compare-target+]): Use them.
4924
4925 2007-08-13 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4926 Ben Elliston <bje@au.ibm.com>
4927
4928 * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS, baseargs): Pass
4929 --silent if $silent.
4930 * configure: Regenerate.
4931
4932 2007-08-12 Daniel Jacobowitz <dan@codesourcery.com>
4933
4934 * src-release (DEVO_SUPPORT): Add COPYING3 and COPYING3.LIB.
4935
4936 2007-07-17 Nick Clifton <nickc@redhat.com>
4937
4938 * COPYING3: New file. Contains version 3 of the GNU General
4939 Public License.
4940 * COPYING3.LIB: New file. Contains version 3 of the GNU
4941 Lesser General Public License.
4942
4943 2007-07-11 Bernd Schmidt <bernd.schmidt@analog.com>
4944
4945 * configure.ac: Fix my previous change to really match GCC.
4946 * configure: Regenerate.
4947
4948 2007-07-11 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4949
4950 * configure.ac: Rewrite 'configure --help' strings to look nicer.
4951 * configure: Regenerate.
4952
4953 2007-07-11 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4954
4955 * configure.ac: Add some missing m4 quotation.
4956 * configure: Regenerate.
4957
4958 2007-07-09 Kai Tietz <kai.tietz@onevision.com>
4959
4960 * Makefile.def: Add windmc tool to build.
4961 * Makefile.tpl: Likewise.
4962 * configure.ac: Likewise.
4963 * Makefile.in: Regenerate.
4964 * configure: Regenerate.
4965
4966 2007-07-05 H.J. Lu <hongjiu.lu@intel.com>
4967
4968 * lt~obsolete.m4: New. Import from 20070318 libtool.
4969
4970 2007-06-29 Bernd Schmidt <bernd.schmidt@analog.com>
4971
4972 * configure.ac: Don't add target-libmudflap to noconfigdirs for
4973 uclinux and linux-uclibc targets.
4974 * configure: Regenerate.
4975
4976 2007-06-28 DJ Delorie <dj@redhat.com>
4977
4978 * configure.ac (arm*-*-linux-gnueabi): Don't build libgloss if we're
4979 not building newlib.
4980 * configure: Regenerated.
4981
4982 2007-06-22 Daniel Jacobowitz <dan@codesourcery.com>
4983
4984 * src-release (DEVO_SUPPORT): Correct typos.
4985
4986 2007-06-18 Daniel Jacobowitz <dan@codesourcery.com>
4987
4988 * Makefile.def: Add dependency from configure-gdb to all-bfd.
4989 * Makefile.in: Regenerated.
4990
4991 2007-06-14 Paolo Bonzini <bonzini@gnu.org>
4992
4993 * Makefile.tpl (cleanstrap): Don't delete the toplevel Makefile.
4994 (distclean-stage[+id+]): Possibly delete stage_last.
4995 * Makefile.in: Regenerate.
4996
4997 2007-06-07 Ben Elliston <bje@au.ibm.com>
4998
4999 * config.sub, config.guess: Update from upstream sources.
5000
5001 2007-06-07 Ben Elliston <bje@au.ibm.com>
5002
5003 * Makefile.tpl: Fix spelling error.
5004 * Makefile.in: Regenerate.
5005
5006 2007-06-04 Paolo Bonzini <bonzini@gnu.org>
5007
5008 Sync with gcc:
5009 2007-05-30 Jakub Jelinek <jakub@redhat.com>
5010
5011 PR bootstrap/29382
5012 * configure.ac: Don't use -fkeep-inline-functions for GCC < 3.3.1.
5013 * configure: Rebuilt.
5014
5015 2007-06-01 Steve Ellcey <sje@cup.hp.com>
5016
5017 * libtool.m4 (LT_CMD_MAX_LEN): Try using getconf to set
5018 lt_cv_sys_max_cmd_len.
5019
5020 2007-05-31 Paolo Bonzini <bonzini@gnu.org>
5021
5022 * ltgcc.m4: Update from GCC.
5023
5024 2007-05-25 Andreas Tobler <a.tobler@schweiz.org>
5025
5026 * ltmain.sh: Fix Darwin verstring, remove ${wl}.
5027
5028 2007-05-24 Steve Ellcey <sje@cup.hp.com>
5029
5030 * ltmain.sh: Update from GCC.
5031 * libtool.m4: Update from GCC.
5032 * ltsugar.m4: New. Update from GCC.
5033 * ltversion.m4: New. Update from GCC.
5034 * ltoptions.m4: New. Update from GCC.
5035 * ltconfig: Remove.
5036 * ltcf-c.sh: Remove.
5037 * ltcf-cxx.sh: Remove.
5038 * ltcf-gcj.sh: Remove.
5039 * src-release: Update with new libtool file list.
5040
5041 2007-05-16 Paolo Bonzini <bonzini@gnu.org>
5042
5043 * Makefile.def (bootstrap_stage): Replace stage_make_flags with
5044 stage_cflags.
5045 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS, POSTSTAGE1_FLAGS_TO_PASS):
5046 Remove CFLAGS/LIBCFLAGS.
5047 (configure-stage[+id+]-[+prefix+][+module+],
5048 all-stage[+id+]-[+prefix+][+module+]): Pass it from [+stage_cflags+].
5049 * Makefile.in: Regenerate.
5050
5051 2007-04-14 Steve Ellcey <sje@cup.hp.com>
5052
5053 * config-ml.in: Update from GCC.
5054
5055 2007-04-09 Daniel Jacobowitz <dan@codesourcery.com>
5056
5057 * src-release (do-proto-toplev): Process the support directories before
5058 the tool directory.
5059
5060 2007-03-21 Richard Sandiford <richard@codesourcery.com>
5061
5062 * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Fix m4 quoting
5063 of glob. Quote arguments with single quotes too.
5064 * configure: Regenerate.
5065
5066 2007-03-12 Brooks Moses <brooks.moses@codesourcery.com>
5067
5068 * Makefile.def (fixincludes): Remove unneeded "missing" lines.
5069 * Makefile.in: Regenerate
5070
5071 2007-03-07 Andreas Schwab <schwab@suse.de>
5072
5073 * configure: Regenerate.
5074
5075 2007-03-01 Brooks Moses <brooks.moses@codesourcery.com>
5076
5077 * configure.ac: Add "--with-pdfdir" configure option,
5078 which defines pdfdir variable.
5079 * Makefile.def (target=fixincludes): Add install-pdf to
5080 missing targets.
5081 (recursive_targets): Add install-pdf target.
5082 (flags_to_pass): Add pdfdir.
5083 * Makefile.tpl: Add pdfdir handling, add do-install-pdf
5084 target.
5085 * configure: Regenerate
5086 * Makefile.in: Regenerate
5087
5088 2007-02-28 Eric Christopher <echristo@apple.com>
5089
5090 Revert:
5091 2006-12-07 Mike Stump <mrs@apple.com>
5092
5093 * Makefile.def (dependencies): Add dependency for
5094 install-target-libssp and install-target-libgomp on
5095 install-gcc.
5096 * Makefile.in: Regenerate.
5097
5098 2007-02-27 Matt Kraai <kraai@ftbfs.org>
5099
5100 * configure: Regenerate.
5101 * configure.ac: Move statements after variable declarations.
5102
5103 2007-02-19 Joseph Myers <joseph@codesourcery.com>
5104
5105 * configure.ac: Adjust for loop syntax.
5106 * configure: Regenerate.
5107
5108 2007-02-18 Alexandre Oliva <aoliva@redhat.com>
5109
5110 * configure: Rebuilt.
5111
5112 2007-02-18 Alexandre Oliva <aoliva@redhat.com>
5113
5114 * configure.ac: Drop multiple occurrences of --enable-languages,
5115 and fix its quoting.
5116 * configure: Rebuilt.
5117
5118 2007-02-17 Mark Mitchell <mark@codesourcery.com>
5119 Nathan Sidwell <nathan@codesourcery.com>
5120 Vladimir Prus <vladimir@codesourcery.com
5121 Joseph Myers <joseph@codesourcery.com>
5122
5123 * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Fix quoting.
5124 * configure: Regenerate.
5125
5126 2007-02-13 Daniel Jacobowitz <dan@codesourcery.com>
5127
5128 * configure.ac (target_libraries): Move libgcc before libiberty.
5129 * configure: Regenerated.
5130
5131 2007-02-13 Paolo Bonzini <bonzini@gnu.org>
5132
5133 * configure: Regenerate again?
5134
5135 2007-02-13 Paolo Bonzini <bonzini@gnu.org>
5136
5137 * configure: Reapply PR30748 fix which was lost in the previous commit.
5138
5139 2007-02-13 Daniel Jacobowitz <dan@codesourcery.com>
5140 Paolo Bonzini <bonzini@gnu.org>
5141
5142 PR bootstrap/30753
5143 * configure.ac: Remove obsolete build / host tests. Use AC_PROG_CC
5144 unconditionally. Use AC_PROG_CXX. Use ACX_TOOL_DIRS to find $prefix.
5145 * configure: Regenerated.
5146
5147 2007-02-10 Paolo Bonzini <bonzini@gnu.org>
5148
5149 * configure: Regenerate.
5150
5151 2007-02-09 Daniel Jacobowitz <dan@codesourcery.com>
5152
5153 PR bootstrap/30748
5154 * configure.ac: Correct syntax for Solaris ksh.
5155 * configure: Regenerated.
5156
5157 2007-02-09 Paolo Bonzini <bonzini@gnu.org>
5158
5159 * Makefile.def: Sync with GCC.
5160 * Makefile.tpl: Sync with GCC.
5161 * Makefile.in: Regenerate.
5162 * configure: Regenerate.
5163
5164 2007-02-09 Daniel Jacobowitz <dan@codesourcery.com>
5165
5166 * Makefile.tpl (build_alias, host_alias, target_alias): Use
5167 noncanonical equivalents.
5168 * configure.in: Rename to...
5169 * configure.ac: ...this. Update AC_PREREQ. Prevent error for
5170 AS_FOR_TARGET. Set build_noncanonical, host_noncanonical, and
5171 target_noncanonical. Use them. Rewrite removal of configure
5172 arguments for autoconf 2.59. Discard variable settings. Force
5173 program_transform_name for native tools.
5174
5175 * Makefile.in: Regenerated.
5176 * configure: Regenerated with autoconf 2.59.
5177
5178 * src-release (DEVO_SUPPORT, do-proto-toplev): Expect configure.ac.
5179
5180 2007-02-08 Jeff Johnston <jjohnstn@redhat.com>
5181
5182 * COPYING.LIBGLOSS: Reformat default Red Hat
5183 license to fit within 80 columns.
5184 * COPYING.NEWLIB: Ditto.
5185
5186 2007-02-05 Dave Brolley <brolley@redhat.com>
5187
5188 * Contribute the following changes:
5189 2006-11-28 DJ Delorie <dj@redhat.com>
5190
5191 * configure.in: Fix typo for mep's target_makefile_frag.
5192 * configure: Regenerated.
5193
5194 2005-04-22 Richard Sandiford <rsandifo@redhat.com>
5195
5196 * configure.in (mep*): Add -mlibrary to FLAGS_FOR_TARGET.
5197 * configure: Regenerate.
5198
5199 2001-09-19 DJ Delorie <dj@redhat.com>
5200
5201 * configure.in (target_makefile_frag): use mt-mep
5202
5203 2001-06-12 Don Howard <dhoward@redhat.com>
5204
5205 * configure.in: Remove gdb from MeP skip list.
5206
5207 2001-04-05 DJ Delorie <dj@redhat.com>
5208
5209 * configure.in (noconfigdirs): Remove gcc from MeP skip list.
5210
5211 2001-03-20 Ben Elliston <bje@redhat.com>
5212
5213 * configure.in (noconfigdirs): Add gcc and gdb for MeP.
5214
5215 2001-03-19 Ben Elliston <bje@redhat.com>
5216
5217 * config.sub (mep, mep-*): Add.
5218
5219 2007-01-31 Andreas Schwab <schwab@suse.de>
5220
5221 * Makefile.tpl (LDFLAGS): Substitute it.
5222 * Makefile.in: Regenerate.
5223
5224 2007-01-11 Paolo Bonzini <bonzini@gnu.org>
5225
5226 * configure.in: Change == to = in test command.
5227 * configure: Regenerate.
5228
5229 2007-01-11 Paolo Bonzini <bonzini@gnu.org>
5230 Nick Clifton <nickc@redhat.com>
5231 Kaveh R. Ghazi <ghazi@caip.rutgets.edu>
5232
5233 * configure.in (build_configargs, host_configargs, target_configargs):
5234 Remove build/host/target parameters.
5235 (host_libs): Add gmp and mpfr.
5236 (GMP tests): Reorganize to allow in-tree GMP/MPFR.
5237 * Makefile.def (gmp, mpfr): New.
5238 (gcc): Remove target.
5239 * Makefile.tpl (build_os, build_vendor, host_os, host_vendor,
5240 target_os, target_vendor): New.
5241 (configure): Add host_alias/target_alias arguments. Adjust invocations.
5242 * configure: Regenerate.
5243 * Makefile.in: Regenerate.
5244
5245 2007-01-11 Matt Fago <fago@earthlink.net>
5246
5247 * configure.in: Try to link to functions only in mpfr 2.2.x
5248 to improve robustness of configure tests.
5249 * configure: Regenerate.
5250
5251 2007-01-08 Kai Tietz <kai.tietz@onevision.com>
5252
5253 * configure.in: Add support for an x86_64-mingw* target.
5254 * configure: Regenerate.
5255
5256 2007-01-05 Daniel Jacobowitz <dan@codesourcery.com>
5257
5258 * Makefile.tpl (all-target): Correct @if conditional for target
5259 modules.
5260 * configure.in: Omit libiberty if building only target libgcc.
5261 * configure, Makefile.in: Regenerated.
5262
5263 2007-01-04 Paolo Bonzini <bonzini@gnu.org>
5264
5265 * configure.in: Use DEV-PHASE to detect the default for --enable-werror.
5266 * configure: Regenerate.
5267
5268 2007-01-03 Daniel Jacobowitz <dan@codesourcery.com>
5269
5270 * Makefile.def (target_modules): Add libgcc.
5271 (lang_env_dependencies): Remove default items. Use no_c and no_gcc.
5272 * Makefile.tpl (clean-target-libgcc): Delete.
5273 (configure-target-[+module+]): Emit --disable-bootstrap dependencies
5274 on gcc even for bootstrapped modules. Rewrite handling of
5275 lang_env_dependencies to loop over target_modules.
5276 * configure.in (target_libraries): Add target-libgcc.
5277 * Makefile.in, configure: Regenerated.
5278
5279 2006-12-29 Paolo Bonzini <bonzini@gnu.org>
5280
5281 Sync with gcc:
5282 2006-12-29 Paolo Bonzini <bonzini@gnu.org>
5283
5284 * configure.in: Reorganize recognition of languages. Add
5285 --enable-stage1-languages. Show supported languages for the chosen
5286 target rather than all recognized languages.
5287 * configure: Regenerate.
5288
5289 2006-12-29 Paolo Bonzini <bonzini@gnu.org>
5290
5291 * Makefile.tpl (GCC_STRAP_TARGETS, all-prebootstrap): Remove.
5292 * Makefile.in: Regenerate.
5293
5294 2006-12-29 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5295
5296 * configure.in: Warn that MPFR 2.2.0 is buggy.
5297 * configure: Regenerate.
5298
5299 2006-12-27 Ian Lance Taylor <iant@google.com>
5300
5301 * configure.in: When removing Makefiles to force a reconfigure, also
5302 remove prev-DIR*/Makefile.
5303 * configure: Regenerate.
5304
5305 2006-12-23 Kazu Hirata <kazu@codesourcery.com>
5306
5307 * config.bfd: Recognize fido.
5308
5309 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
5310
5311 Sync with gcc:
5312
5313 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
5314
5315 * configure.in: Remove "$build" case for powerpc-*-darwin* since
5316 it only affects bootstrap and could be tested on "$host" as well.
5317 * configure: Regenerate.
5318 * config/mh-ppc-darwin: Add to the stage1 cflags here.
5319
5320 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
5321
5322 PR bootstrap/29544
5323 * Makefile.def (flags_to_pass): Add STAGE1_CHECKING.
5324 (bootstrap_stage): Add STAGE1_CHECKING to stage1 configure flags,
5325 move here comment from Makefile.tpl.
5326 * Makefile.tpl: Move some definitions higher in the file.
5327 (STAGE1_CHECKING): New.
5328 * configure.in: Add --enable-stage1-checking.
5329 * configure: Regenerate.
5330 * Makefile.in: Regenerate.
5331
5332 2006-12-03 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5333
5334 * configure.in: Update error message for missing GMP/MPFR.
5335
5336 * configure: Regenerate.
5337
5338 2006-12-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5339
5340 * configure.in: Update MPFR version in error message.
5341
5342 * configure: Regenerate.
5343
5344 2006-11-26 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5345
5346 * configure.in (--with-mpfr-dir, --with-gmp-dir): Remove flags.
5347 (--with-mpfr-include, --with-mpfr-lib, --with-gmp-include,
5348 --with-gmp-lib): New flags.
5349
5350 * configure: Regenerate.
5351
5352 2006-12-12 Andreas Tobler <a.tobler@schweiz.org>
5353
5354 PR bootstrap/30134
5355 * configure.in: Correct x86 darwin support for libjava to powerpc
5356 and i?86 only.
5357 * configure: Regenerate.
5358
5359 2006-12-11 Alan Modra <amodra@bigpond.net.au>
5360
5361 * configure.in: Handle spu makefile frag.
5362 * Makefile.tpl (MAINT): Define
5363 (MAINTAINER_MODE_FALSE, MAINTAINER_MODE_TRUE): Define.
5364 * configure: Regenerate.
5365 * Makefile.in: Regenerate.
5366
5367 2006-12-11 Ben Elliston <bje@au.ibm.com>
5368
5369 * config.sub, config.guess: Update from upstream sources.
5370
5371 2006-12-11 Ben Elliston <bje@au.ibm.com>
5372
5373 * configure.in: Sync with GCC (spu-*-*).
5374 * configure: Sync with GCC.
5375
5376 2006-12-07 Mike Stump <mrs@apple.com>
5377
5378 * Makefile.def (dependencies): Add dependency for
5379 install-target-libssp and install-target-libgomp on
5380 install-gcc.
5381 * Makefile.in: Regenerate.
5382
5383 2006-11-16 Paolo Bonzini <bonzini@gnu.org>
5384
5385 * Makefile.tpl (clean-target-libgcc): Test for gcc Makefile presence.
5386 (unstage): Test for stage_last presence.
5387
5388 PR bootstrap/29802
5389 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Add HOST_SUBDIR in STAGE_PREFIX.
5390 * Makefile.in: Regenerate.
5391
5392 2006-11-14 DJ Delorie <dj@redhat.com>
5393
5394 * Makefile.tpl (clean-stage*): Sync with GCC (clean).
5395 * Makefile.in: Sync with GCC.
5396 * configure.in: Sync with GCC (mpfr, gmp).
5397 * configure: Sync with GCC.
5398
5399 2006-11-08 Jie Zhang <jie.zhang@analog.com>
5400
5401 * configure.in: Remove target-libgloss from noconfigdirs for
5402 bfin-*-*.
5403 * configure: Regenerated.
5404
5405 2006-10-27 Jeff Johnston <jjohnstn@redhat.com>
5406
5407 * COPYING.NEWLIB: Add spu license.
5408 * COPYING.LIBGLOSS: Ditto.
5409
5410 2006-10-17 Brooks Moses <bmoses@stanford.edu>
5411
5412 * Makefile.def: Added pdf target handling.
5413 * Makefile.tpl: Added pdf target handling.
5414 * Makefile.in: Regenerated.
5415
5416 2006-10-11 Jeff Johnston <jjohnstn@redhat.com>
5417
5418 * COPYING.NEWLIB: Updated.
5419 * COPYING.LIBGLOSS: Ditto.
5420
5421 2006-09-27 Dave Brolley <brolley@redhat.com>
5422
5423 * configure.in (RUNTEST): Look for 'runtest' in the source tree by using
5424 $s instead of $r.
5425 * configure: Regenerated.
5426
5427 2006-09-26 Ben Elliston <bje@au.ibm.com>
5428
5429 * config.sub, config.guess: Update from upstream sources.
5430
5431 2006-09-20 Thiemo Seufer <ths@mips.com>
5432
5433 * configure.in: Remove redundant handling of mips*-dec-bsd*. Likewise
5434 for mipstx39-*-*. Disable libgloss for mips64*-*-linux*.
5435 * configure: Regenerate.
5436
5437 2006-08-30 Corinna Vinschen <corinna@vinschen.de>
5438
5439 * configure.in: Never build newlib for a Mingw host.
5440 Never build newlib as Mingw target library.
5441 Test the existence of winsup/cygwin for building a Cygwin newlib,
5442 rather than just winsup.
5443 Add winsup/mingw and winsup/w32api paths to FLAGS_FOR_TARGET if
5444 building a Mingw target.
5445 * configure: Regenerate.
5446
5447 2006-08-15 Thiemo Seufer <ths@mips.com>
5448 Nigel Stephens <nigel@mips.com>
5449 David Ung <davidu@mips.com>
5450
5451 * config.sub: Add support for sde as alias of mipsisa32-sde-elf.
5452
5453 2006-07-25 Paolo Bonzini <bonzini@gnu.org>
5454
5455 Sync from GCC:
5456 2006-07-04 Eric Botcazou <ebotcazou@libertysurf.fr>
5457
5458 PR bootstrap/18058
5459 * configure.in: Add -fkeep-inline-functions to CFLAGS for stage 1
5460 if the bootstrap compiler is a GCC version that supports it.
5461 * configure: Regenerate.
5462
5463 2006-07-22 Daniel Jacobowitz <dan@codesourcery.com>
5464
5465 * configure.in: Allow mingw32 and cygwin targets to build cross-gdb.
5466 * configure: Regenerated.
5467
5468 2006-07-18 Paolo Bonzini <bonzini@gnu.org>
5469
5470 * Makefile.tpl (configure-stageN-MODULE): Pass --with-build-libsubdir
5471 for stages after the first.
5472
5473 2006-07-17 Jakub Jelinek <jakub@redhat.com>
5474
5475 * Makefile.def: Add dependencies for configure-opcodes
5476 on configure-intl and all-opcodes on all-intl.
5477 * Makefile.in: Regenerated.
5478
5479 2006-07-04 Peter O'Gorman <peter@pogma.com>
5480
5481 * ltconfig: chmod 644 before ranlib during install.
5482
5483 2006-07-03 Paolo Bonzini <bonzini@gnu.org>
5484
5485 * configure.in: Fix thinkos in previous check-in.
5486 * configure: Regenerate.
5487
5488 2006-07-03 Paolo Bonzini <bonzini@gnu.org>
5489
5490 Sync from gcc:
5491
5492 2007-07-03 Paolo Bonzini <bonzini@gnu.org>
5493
5494 PR other/27063
5495 * configure.in: Test subdir_requires and give an appropriate
5496 error message.
5497 * configure: Regenerate.
5498
5499 2006-06-16 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
5500
5501 PR target/27540
5502 * configure.in: Only enable libgomp on IRIX 6.
5503 * configure: Regenerate.
5504
5505 2006-06-20 David Ayers <d.ayers@inode.at>
5506
5507 PR bootstrap/28072
5508 * configure.in: Add target-boehm-gc to noconfigdirs depending on
5509 whether target-libjava is being configured instead of whether the
5510 java front end is enabled.
5511 * configure: Regenerate.
5512
5513 2006-06-15 Mark Shinwell <shinwell@codesourcery.com>
5514
5515 * include/elf/arm.h: Correct names of R_ARM_LDC_G{0,1,2}
5516 to R_ARM_LDC_SB_G{0,1,2} respectively.
5517
5518 2006-06-15 Paolo Bonzini <bonzini@gnu.org>
5519
5520 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Export CFLAGS and LDFLAGS
5521 too.
5522 * Makefile.in: Regenerate.
5523
5524 2006-06-13 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
5525
5526 Sync from gcc:
5527
5528 2006-06-12 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
5529 * configure.in: Don't enable libgomp on hpux10.
5530 * configure: Rebuilt.
5531
5532 2006-06-13 David Ayers <d.ayers@inode.at>
5533
5534 Sync from gcc:
5535
5536 2006-06-12 David Ayers <d.ayers@inode.at>
5537
5538 PR bootstrap/27963
5539 PR target/19970
5540 * configure.in: Remove target-boehm-gc from noconfigdirs where
5541 ${libgcj} is specified.
5542 * configure: Regenerate.
5543
5544 2006-06-08 Jeff Johnston <jjohnstn@redhat.com>
5545
5546 Sync from gcc:
5547
5548 2005-01-12 David Edelsohn <edelsohn@gnu.org>
5549 Andreas Schwab <schwab@suse.de>
5550
5551 PR bootstrap/18033
5552 * config-ml.in: Eval option if surrounded by single quotes.
5553
5554 2006-06-07 Carlos O'Donell <carlos@codesourcery.com>
5555
5556 Sync from gcc:
5557
5558 2006-06-06 David Ayers <d.ayers@inode.at>
5559
5560 PR libobjc/13946
5561 * Makefile.def: Add dependencies for libobjc which boehm-gc.
5562 * Makefile.in: Regenerate.
5563 * configure.in: Add --enable-objc-gc at toplevel and have it
5564 enable boehm-gc for Objective-C.
5565 Remove target-boehm-gc from libgcj.
5566 Add target-boehm-gc to target_libraries.
5567 Add target-boehm-gc to noconfigdirs where ${libgcj}
5568 is specified.
5569 Assert that boehm-gc is supported when requested for Objective-C.
5570 Only build boehm-gc if needed either for Java or Objective-C.
5571 * configure: Regenerate.
5572
5573 2006-06-05 Paolo Bonzini <bonzini@gnu.org>
5574
5575 PR 27674
5576 * Makefile.tpl (configure-[+prefix+][+module+],
5577 all-[+prefix+][+module+]): Depend on stage_current if bootstrapping.
5578 Remove rule to unstage bootstrapped modules.
5579 (stage_current): New.
5580 * Makefile.in: Regenerate.
5581
5582 2006-05-20 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
5583 Andreas Tobler <a.tobler@schweiz.ch>
5584
5585 * configure.in: Enable libgcj for hppa*-hp-hpux11*.
5586 * configure: Rebuilt.
5587
5588 Revert
5589 2006-01-31 Richard Guenther <rguenther@suse.de>
5590 Paolo Bonzini <bonzini@gnu.org>
5591
5592 * Makefile.def (target_modules): Add libgcc-math target module.
5593 * configure.in (target_libraries): Add libgcc-math target library.
5594 (--enable-libgcc-math): New configure switch.
5595 * Makefile.in: Re-generate.
5596 * configure: Re-generate.
5597
5598 2006-06-05 Jeff Johnston <jjohnstn@redhat.com>
5599
5600 * config-ml.in: Alter CCASFLAGS to include special
5601 multilib options the same as is done for CFLAGS.
5602
5603 2006-05-31 Daniel Jacobowitz <dan@codesourcery.com>
5604
5605 * Makefile.def: Added dependencies from sim and gdb on intl, and
5606 added configure dependencies to everything with an all dependency
5607 on intl.
5608 * gettext.m4: Removed.
5609 * src-release (DEVO_SUPPORT): Don't mention gettext.m4.
5610 (GDB_SUPPORT_DIRS): Add intl.
5611 * Makefile.in: Regenerated.
5612
5613 2006-05-25 Daniel Jacobowitz <dan@codesourcery.com>
5614
5615 * src-release (DEVO_SUPPORT): Add config.rpath.
5616
5617 2006-05-25 Paolo Bonzini <bonzini@gnu.org>
5618
5619 * Makefile.def (bfd, opcodes): Fix lib_path.
5620 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Replace ADAC with ADAFLAGS.
5621 (restrap): Move under "@if gcc-bootstrap". Fix typo.
5622 * Makefile.in: Regenerate.
5623
5624 2006-05-24 Mark Shinwell <shinwell@codesourcery.com>
5625
5626 * configure.in: Enable gprof for cross builds.
5627 * configure: Regenerate.
5628
5629 2006-05-17 Daniel Jacobowitz <dan@codesourcery.com>
5630
5631 * src-release (MAKEINFOFLAGS): Define.
5632 (do-proto-toplev): Pass MAKEINFOFLAGS to submakes.
5633
5634 2006-05-14 Ben Elliston <bje@au.ibm.com>
5635
5636 * config.sub, config.guess: Update from upstream sources.
5637
5638 2006-05-12 Ben Elliston <bje@au.ibm.com>
5639
5640 * config.sub, config.guess: Update from upstream sources.
5641
5642 2006-05-04 Steve Ellcey <sje@cup.hp.com>
5643
5644 * blt, iwidgets, mmalloc: Remove directories.
5645
5646 2006-05-01 DJ Delorie <dj@redhat.com>
5647
5648 * configure.in: Restore CFLAGS if GMP isn't present.
5649 * configure: Regenerate.
5650
5651 2006-04-18 DJ Delorie <dj@redhat.com>
5652
5653 * configure.in (m32c): Build libstdc++-v3. Pass flags to
5654 reference libgloss so that libssp can be built in a combined
5655 tree.
5656 * configure: Regenerate.
5657
5658 2006-04-10 Ben Elliston <bje@au.ibm.com>
5659
5660 * contrib: Remove directory.
5661
5662 2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
5663
5664 * Makefile.tpl: Add install-html target.
5665 * Makefile.def: Add install-html target.
5666 * Makefile.in: Regenerate.
5667 * configure.in: Add --with-datarootdir, --with-docdir,
5668 and --with-htmldir options.
5669 * configure: Regenerate.
5670
5671 2006-03-31 Ben Elliston <bje@au.ibm.com>
5672
5673 PR binutils/1860
5674 * configure.in: Require makeinfo 4.4 or higher.
5675 * configure: Regenerate.
5676
5677 2006-03-14 Paolo Bonzini <bonzini@gnu.org>
5678
5679 * Makefile.in: Regenerate.
5680
5681 2006-03-14 Paolo Bonzini <bonzini@gnu.org>
5682
5683 Sync with gcc:
5684 2006-03-10 Aldy Hernandez <aldyh@redhat.com>
5685
5686 * configure.in: Handle --disable-<component> generically.
5687 * configure: Regenerate.
5688
5689 2006-02-21 Rafael Avila de Espindola <rafael.espindola@gmail.com>
5690
5691 * Makefile.tpl (BUILD_CONFIGDIRS): Remove.
5692 (TARGET_CONFIGDIRS): Remove.
5693 * configure.in: Remove AC_SUBST(target_configdirs).
5694 * Makefile.in, configure: Regenerated.
5695
5696
5697 2006-03-01 H.J. Lu <hongjiu.lu@intel.com>
5698
5699 PR libgcj/17311
5700 * ltmain.sh: Don't use "$finalize_rpath" for compile.
5701
5702 2006-02-20 Paolo Bonzini <bonzini@gnu.org>
5703
5704 PR bootstrap/25670
5705
5706 * Makefile.tpl ([+compare-target+]): Print explanation messages.
5707
5708 * Makefile.def (ADAFLAGS, BOOT_ADAFLAGS, LANGUAGES): New flags_to_pass.
5709 * Makefile.tpl (BASE_FLAGS_TO_PASS): Support optional flags_to_pass.
5710 (EXTRA_GCC_FLAGS): Remove ADAFLAGS, BOOT_ADAFLAGS, LANGUAGES,
5711 BUILD_PREFIX, BUILD_PREFIX_1.
5712 * configure.in: (BUILD_PREFIX, BUILD_PREFIX_1): Don't substitute.
5713
5714 * Makefile.def (bootstrap stage 1): Pass LIBCFLAGS too.
5715 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Override LIBCFLAGS too.
5716
5717 * Makefile.tpl (configure-stage[+id+]-[+prefix+][+module+],
5718 all-stage[+id+]-[+prefix+][+module+], : Use $(current_stage) instead
5719 of `cat stage_current`. Always provide the `r' and `s' variables.
5720 (clean-stage[+id+]-[+prefix+][+module+]): Likewise, and make it into
5721 a single shell execution.
5722 (configure-[+prefix+][+module+], all-[+prefix+][+module+]): For
5723 bootstrapped modules, make the stage1 module if the build was not
5724 started yet, else build the current stage.
5725 (all-host, all-target): Omit bootstrapped modules (if bootstrapping).
5726 (all-build, all-host, all-target, [+make_target+]-host,
5727 [+make_target+]-target): Do not use \-continued lines.
5728 (target modules): Depend on stage_last, not all-gcc, if bootstrapping.
5729 (current_stage, restrap, stage_last): New.
5730
5731 * Makefile.in: Regenerate.
5732 * configure: Regenerate.
5733
5734 2006-02-14 Paolo Bonzini <bonzini@gnu.org>
5735
5736 Sync from gcc:
5737
5738 2006-01-31 Richard Guenther <rguenther@suse.de>
5739 Paolo Bonzini <bonzini@gnu.org>
5740
5741 * Makefile.def (target_modules): Add libgcc-math target module.
5742 * configure.in (target_libraries): Add libgcc-math target library.
5743 (--enable-libgcc-math): New configure switch.
5744 * Makefile.in: Re-generate.
5745 * configure: Re-generate.
5746 * libgcc-math: New toplevel directory.
5747
5748 2006-01-18 Richard Henderson <rth@redhat.com>
5749 Jakub Jelinek <jakub@redhat.com>
5750 Diego Novillo <dnovillo@redhat.com>
5751
5752 * libgomp: New directory.
5753 * Makefile.def: Add target_module libgomp.
5754 * Makefile.in: Regenerate.
5755 * configure.in (target_libraries): Add target-libgomp.
5756 * configure: Regenerate.
5757
5758 2006-02-14 Paolo Bonzini <bonzini@gnu.org>
5759 Andreas Schwab <schwab@suse.de>
5760
5761 * configure: Regenerate.
5762
5763 2006-01-16 Paolo Bonzini <bonzini@gnu.org>
5764
5765 * configure.in: Set with_gnu_as, with_gnu_ld, with_newlib earlier.
5766 Set md_exec_prefix. Use ACX_CHECK_INSTALLED_TARGET_TOOL to find
5767 the assembler, linker and binutils.
5768 * configure: Regenerate.
5769
5770 2006-01-16 Nick Clifton <nickc@redhat.com>
5771
5772 * config.sub, config.guess: Sync from config repository.
5773
5774 2006-01-05 Alexandre Oliva <aoliva@redhat.com>
5775
5776 * Makefile.tpl (clean-stage[+id+]-[+prefix+][+module+]): Remove
5777 @ from continuation.
5778 * Makefile.in: Rebuilt.
5779
5780 2006-01-04 Paolo Bonzini <bonzini@gnu.org>
5781
5782 Sync from gcc:
5783
5784 2006-01-04 Paolo Bonzini <bonzini@gnu.org>
5785
5786 PR bootstrap/24252
5787
5788 * Makefile.def (flags_to_pass): Add STAGE1_CFLAGS and STAGE1_LANGUAGES.
5789 * Makefile.tpl (OBJDUMP): New.
5790 (EXTRA_HOST_FLAGS): Add it.
5791 (EXTRA_GCC_FLAGS): Remove flags already specified in flags_to_pass.
5792
5793 * Makefile.tpl (stage[+id+]-start, stage[+id+]-end): Do not try
5794 to use symbolic links between directories. Avoid race conditions
5795 or make them harmless.
5796 * configure.in: Do not try to use symbolic links between directories.
5797
5798 * Makefile.def (LEAN): Pass.
5799 * Makefile.tpl (LEAN): Define.
5800 (stage[+id+]-start): Accept that the previous directory does not
5801 exist, if the bootstrap is lean.
5802 (stage[+id+]-bubble): Invoke lean bootstrap commands after
5803 stage[+id+]-start. Use a makefile variable and an `if' instead of a
5804 configure substitution.
5805 ([+compare-target+]): Likewise.
5806 ([+bootstrap-target+]-lean): New.
5807 * configure.in: Remove lean bootstrap support from here.
5808
5809 * Makefile.in: Regenerate.
5810 * configure: Regenerate.
5811
5812 2006-01-02 Andreas Schwab <schwab@suse.de>
5813
5814 * configure.in: When reconfiguring remove Makefile in
5815 all stage directories.
5816 * configure: Regenerate.
5817
5818 2005-12-27 Leif Ekblad <leif@rdos.net>
5819
5820 * configure.in: Add support for RDOS target.
5821 * configure: Regenerate.
5822
5823 2005-12-27 Nick Clifton <nickc@redhat.com>
5824
5825 PR binutils/1990
5826 * libtool.m4: Synchronize with version in GCC sources.
5827
5828 2005-12-20 Paolo Bonzini <bonzini@gnu.org>
5829
5830 Revert Ada-related part of the previous change.
5831
5832 * Makefile.def (ADAFLAGS, BOOT_ADAFLAGS, ADAFLAGS_FOR_TARGET):
5833 Do not pass.
5834 * Makefile.tpl (BOOT_ADAFLAGS): Do not define.
5835 * Makefile.in: Regenerate.
5836 * configure.in: Do not include mt-ppc-aix target fragment.
5837 * configure: Regenerate.
5838
5839 2005-12-19 Paolo Bonzini <bonzini@gnu.org>
5840
5841 * configure.in: Select appropriate fragments for PowerPC/AIX.
5842 * configure: Regenerate.
5843
5844 * Makefile.def (flags_to_pass): Add ADAFLAGS, BOOT_ADAFLAGS,
5845 BOOT_CFLAGS, BOOT_LDFLAGS.
5846 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Handle BOOT_ADAFLAGS,
5847 BOOT_CFLAGS, BOOT_LDFLAGS.
5848 (TARGET_FLAGS_TO_PASS): Handle ADAFLAGS_FOR_TARGET.
5849 (stage[+id+]-bubble): Pass flags recursively to the comparison target.
5850 (stage): Fail if we cannot complete the work.
5851 * Makefile.in: Regenerate.
5852
5853 2005-12-16 Jeff Johnston <jjohnstn@redhat.com>
5854
5855 * COPYING.NEWLIB: Update copyright year for default
5856 copyright.
5857
5858 2005-12-15 Paolo Bonzini <bonzini@gnu.org>
5859
5860 * Makefile.tpl (all, do-[+make_target+], do-check, install,
5861 install-host-nogcc): Don't invoke $(stage) at the end.
5862 * Makefile.in: Regenerate.
5863
5864 2005-12-14 Paolo Bonzini <bonzini@gnu.org>
5865
5866 * configure.in: Flip the top-level bootstrap switch.
5867 * configure: Regenerate.
5868
5869 Merge from gcc:
5870
5871 2005-12-14 Daniel Jacobowitz <dan@codesourcery.com>
5872
5873 * Makefile.tpl: Throughout the file, use : $(MAKE) along with
5874 $(stage) and $(unstage).
5875 (EXTRA_TARGET_FLAGS): Correct double-quoting.
5876 (all): Remove stray semicolon.
5877 (local-distclean): Don't handle multilib.tmp and multilib.out.
5878 (install.all): Set $s for consistency.
5879 (configure-[+prefix+][+module+]): Instead of [+deps+], handle
5880 check_multilibs setting. Always make the install directory.
5881 (configure-stage[+id+]-[+prefix+][+module+]): Likewise.
5882 Correct @if/@endif.
5883 (all-stage[+id+]-[+prefix+][+module+]): Correct @if/@endif.
5884 ($(TARGET_SUBDIR)/[+module+]/multilib.out): Remove.
5885 (stage[+id+]-start, stage[+id+]-end): Stage $(TARGET_SUBDIR).
5886 (multilib.out): Remove.
5887 * Makefile.in: Regenerated.
5888
5889 2005-12-12 Nathan Sidwell <nathan@codesourcery.com>
5890
5891 * config.sub: Replace ms1 arch with mt. Allow ms1 as alias.
5892 * configure.in: Replace ms1 arch with mt.
5893 * configure: Rebuilt.
5894
5895 2005-12-05 Paolo Bonzini <bonzini@gnu.org>
5896
5897 Sync with gcc:
5898
5899 2005-12-12 Nathan Sidwell <nathan@codesourcery.com>
5900
5901 * config.sub: Replace ms1 arch with mt. Allow ms1 as alias.
5902 * configure.in: Replace ms1 arch with mt.
5903 * configure: Rebuilt.
5904
5905 2005-12-05 Paolo Bonzini <bonzini@gnu.org>
5906
5907 Sync with gcc:
5908
5909 2005-12-05 Paolo Bonzini <bonzini@gnu.org>
5910
5911 * configure.in (CONFIGURED_BISON, CONFIGURED_YACC, CONFIGURED_M4,
5912 CONFIGURED_FLEX, CONFIGURED_LEX, CONFIGURED_MAKEINFO): Remove
5913 "CONFIGURED_" from the AC_CHECK_PROGS invocation. Move below.
5914 Find in-tree tools if available.
5915 (EXPECT, RUNTEST, LIPO, STRIP): Find them and substitute them.
5916 (CONFIGURED_*_FOR_TARGET): Don't set nor substitute.
5917 (*_FOR_TARGET): Set them with GCC_TARGET_TOOL.
5918 (COMPILER_*_FOR_TARGET): New.
5919 * Makefile.tpl (HOST_EXPORTS): Add *_FOR_TARGET symbols that gcc needs.
5920 (BASE_TARGET_EXPORTS): Use COMPILER_*_FOR_TARGET symbols.
5921 (CONFIGURED_*, USUAL_*): Remove.
5922 (BISON, YACC, FLEX, LEX, M4, MAKEINFO, EXPECT, RUNTEST, LIPO,
5923 STRIP): Use autoconf substitutions.
5924 (COMPILER_AS_FOR_TARGET, COMPILER_LD_FOR_TARGET,
5925 COMPILER_NM_FOR_TARGET): New.
5926 (EXTRA_HOST_FLAGS): Pass LIPO and STRIP.
5927
5928 (all): Make all-host and all-target in parallel.
5929 (do-[+make_target+], do-check, install, [+compare-target+]): Ensure
5930 that $$r and $$s are set before invoking a recursive make.
5931 (stage[+id+]-bubble): Likewise, and invoke the comparison at the end.
5932 ([+bootstrap-target+]): Inline most of the `all' target.
5933
5934 2005-11-29 Ben Elliston <bje@au.ibm.com>
5935
5936 * Makefile.tpl (clean-target-libgcc): Invoke clean-target-libgcc
5937 from the gcc build directory.
5938 * Makefile.in: Regenerate.
5939
5940 2005-11-29 Ben Elliston <bje@au.ibm.com>
5941
5942 * Makefile.def: Add new libdecnumber host_module. Make all-gcc
5943 depend on all-libdecnumber.
5944 * configure.in (host_libs): Include libdecnumber.
5945 * Makefile.in: Regenerate.
5946 * configure: Likewise.
5947
5948 2005-11-21 Kean Johnston <jkj@sco.com>
5949
5950 * config.sub, config.guess: Sync from upstream sources.
5951
5952 2005-11-11 Daniel Jacobowitz <dan@codesourcery.com>
5953
5954 * Makefile.def: Remove gdb dependencies for gdbtk.
5955 * Makefile.tpl (CONFIGURE_GDB_TK, INSTALL_GDB_TK): New variables.
5956 (configure-gdb, install-gdb): New rules.
5957 * configure.in: Set CONFIGURE_GDB_TK and INSTALL_GDB_TK.
5958 * Makefile.in, configure: Regenerated.
5959
5960 2005-10-22 Paolo Bonzini <bonzini@gnu.org>
5961
5962 PR bootstrap/24297
5963 * Makefile.tpl (do-[+make-target+], do-check, install,
5964 stage[+id+]-bubble, [+compare-target+]): Ensure $$r and $$s
5965 are set before recursing.
5966 * Makefile.in: Regenerate.
5967
5968 2005-10-20 Eric Botcazou <ebotcazou@adacore.com>
5969
5970 PR bootstrap/18939
5971 * Makefile.def (gcc) <target>: Fix thinko.
5972 * Makefile.in: Regenerate.
5973
5974 2005-10-17 Bernd Schmidt <bernd.schmidt@analog.com>
5975
5976 * configure.in (bfin-*-*): Use test, not brackets, in if statement.
5977 * configure: Regenerate.
5978
5979 2005-10-09 Kazu Hirata <kazu@codesourcery.com>
5980
5981 * configure.in (arm-*-linux-gnueabi): Add to noconfigdirs
5982 target-libffi, target-qthreads, target-libjava, and
5983 targetlibobjc.
5984 * configure: Regenerate.
5985
5986 2005-10-06 Daniel Jacobowitz <dan@codesourcery.com>
5987
5988 * Makefile.def (flags_to_pass): Add OBJDUMP_FOR_TARGET.
5989 * Makefile.tpl (BASE_TARGET_EXPORTS): Add OBJDUMP.
5990 (OBJDUMP_FOR_TARGET, CONFIGURED_OBJDUMP_FOR_TARGET)
5991 (USUAL_OBJDUMP_FOR_TARGET): New.
5992 (EXTRA_TARGET_FLAGS): Add OBJDUMP.
5993 * configure.in: Check for $OBJDUMP_FOR_TARGET.
5994 * configure, Makefile.in: Regenerated.
5995
5996 2005-10-05 Paolo Bonzini <bonzini@gnu.org>
5997
5998 * Makefile.tpl (all) [gcc-no-bootstrap]: Make prebootstrap packages
5999 before other host packages.
6000
6001 2005-10-05 Paolo Bonzini <bonzini@gnu.org>
6002
6003 PR bootstrap/22340
6004
6005 * configure.in (default_target): Remove.
6006 * Makefile.tpl (all): Do not use prerequisites as subroutines
6007 (all) [gcc-bootstrap]: Bootstrap gcc first if it was not done yet.
6008 (do-[+make_target+], check, install, [+bootstrap_target+]): Do not
6009 use prerequisites as subroutines.
6010 (check-host, check-target): New.
6011 (bootstrap configure & all targets): Do not use stage*-start
6012 if the directory layout is already ok.
6013 (non-bootstrap configure & all targets): Prepend a $(unstage).
6014 (stage[+id+]-bubble): Do that here. Do not use NOTPARALLEL.
6015 (NOTPARALLEL): Remove.
6016 (unstage, stage variables): New variables.
6017 (unstage, stage targets): Simply expand to those variables.
6018
6019 * configure: Regenerate.
6020 * Makefile.in: Regenerate.
6021
6022 2005-10-04 James E Wilson <wilson@specifix.com>
6023
6024 * Makefile.def (lang_env_dependencies): Add libmudflap.
6025 * Makefile.in: Regenerate.
6026
6027 2005-10-03 Catherine Moore <clm@cm00re.com>
6028
6029 * configure.in (bfin-*-*): Support bfin.
6030 * configure: Regenerated.
6031
6032 2005-09-30 H.J. Lu <hongjiu.lu@intel.com>
6033
6034 * configure.in (*-*-darwin*): Build bfd, binutils and opcodes.
6035 * configure: Regenerated.
6036
6037 2005-09-28 Geoffrey Keating <geoffk@apple.com>
6038
6039 * Makefile.tpl (BASE_TARGET_EXPORTS): Add LIPO, STRIP.
6040 (LIPO_FOR_TARGET): New.
6041 (CONFIGURED_LIPO_FOR_TARGET): New.
6042 (USUAL_LIPO_FOR_TARGET): New.
6043 (STRIP_FOR_TARGET): New.
6044 (CONFIGURED_STRIP_FOR_TARGET): New.
6045 (USUAL_STRIP_FOR_TARGET): New.
6046 * Makefile.def (flags_to_pass): Add LIPO_FOR_TARGET and
6047 STRIP_FOR_TARGET.
6048 * configure.in: Set LIPO_FOR_TARGET, STRIP_FOR_TARGET,
6049 CONFIGURED_LIPO_FOR_TARGET, CONFIGURED_STRIP_FOR_TARGET.
6050 * Makefile.in: Regenerate.
6051 * configure: Regenerate.
6052
6053 2005-09-19 David Edelsohn <edelsohn@gnu.org>
6054
6055 * configure.in (powerpc-*-aix*): Add target-libssp to noconfigdirs.
6056 (rs6000-*-aix*): Same.
6057 * configure: Regenerate.
6058
6059 2005-09-14 Francois-Xavier Coudert <coudert@clipper.ens.fr>
6060
6061 * configure.in: Recognize f95 in the --enable-languages option,
6062 and substitute it for fortran, issuing a warning.
6063 * configure: Regenerate.
6064
6065 2005-09-07 Ben Elliston <bje@au.ibm.com>
6066
6067 Import from Autoconf sources:
6068
6069 2005-09-06 Paul Eggert <eggert@cs.ucla.edu>
6070 * move-if-change: Don't output "$2 is unchanged"; suggested by Ben
6071 Elliston. Handle weird characters correctly.
6072
6073 2005-08-30 Phil Edwards <phil@codesourcery.com>
6074
6075 * configure.in (*-*-vxworks*): Add target-libstdc++-v3 to noconfigdirs.
6076 * configure: Regenerated.
6077
6078 2005-08-20 Richard Earnshaw <richard.earnshaw@arm.com>
6079
6080 * Makefile.def (libssp): Add to lang_env_dependencies.
6081 * Makefile.in: Regenerate.
6082
6083 2005-08-17 Christian Groessler <chris@groessler.org>
6084
6085 * Makefile.tpl: (USUAL_CC_FOR_TARGET): Add missing trailing slash.
6086 * Makefile.in: Regenerate.
6087
6088 2005-08-12 Paolo Bonzini <bonzini@gnu.org>
6089
6090 * configure.in: Replace NCN_STRICT_CHECK_TOOL with
6091 NCN_STRICT_CHECK_TOOLS, and likewise for NCN_STRICT_CHECK_TARGET_TOOLS.
6092 Look for alternate names of the target cc and c++
6093 * configure: Regenerate.
6094
6095 2005-08-08 Paolo Bonzini <bonzini@gnu.org>
6096
6097 * configure.in (CC_FOR_TARGET, CXX_FOR_TARGET, GCJ_FOR_TARGET,
6098 GCC_FOR_TARGET, RAW_CXX_FOR_TARGET, GFORTRAN_FOR_TARGET): Find
6099 them with NCN_STRICT_CHECK_TARGET_TOOL, like the other target
6100 tools; remove code to manually set them.
6101 (Target tools): Look in the environment for them.
6102 * Makefile.tpl (CC_FOR_TARGET, CXX_FOR_TARGET, GCJ_FOR_TARGET,
6103 GCC_FOR_TARGET, RAW_CXX_FOR_TARGET, GFORTRAN_FOR_TARGET): Redefine.
6104 (AS_FOR_TARGET, LD_FOR_TARGET, NM_FOR_TARGET): Look into gcc
6105 build directory.
6106 (CONFIGURED_CC_FOR_TARGET, CONFIGURED_CXX_FOR_TARGET,
6107 CONFIGURED_GCJ_FOR_TARGET, CONFIGURED_GCC_FOR_TARGET,
6108 CONFIGURED_GFORTRAN_FOR_TARGET, USUAL_CC_FOR_TARGET,
6109 USUAL_CXX_FOR_TARGET, USUAL_GCJ_FOR_TARGET, USUAL_GCC_FOR_TARGET,
6110 USUAL_RAW_CXX_FOR_TARGET, USUAL_GFORTRAN_FOR_TARGET): New.
6111 (CXX_FOR_TARGET_FOR_RECURSIVE_MAKE,
6112 RAW_CXX_FOR_TARGET_FOR_RECURSIVE_MAKE, RECURSE_FLAGS): Delete.
6113 * configure: Regenerate.
6114 * Makefile.in: Regenerate.
6115
6116 2005-07-27 Mark Mitchell <mark@codesourcery.com>
6117
6118 * Makefile.tpl (EXTRA_TARGET_FLAGS): Set LDFLAGS=LDFLAGS_FOR_TARGET.
6119 * Makefile.def (flags_to_pass): Add LDFLAGS_FOR_TARGET.
6120 * Makefile.in: Regenerated.
6121
6122 2005-07-26 Mark Mitchell <mark@codesourcery.com>
6123
6124 * Makefile.tpl (SYSROOT_CFLAGS_FOR_TARGET): New variable.
6125 (CFLAGS_FOR_TARGET): Use it.
6126 (CXXFLAGS_FOR_TARGET): Likewise.
6127 * Makefile.in: Regenerated.
6128 * configure.in (--with-build-sysroot): New option.
6129 * configure: Regenerated.
6130
6131 2005-07-24 Paolo Bonzini <bonzini@gnu.org>
6132
6133 * Makefile.tpl: Wrap install between unstage and stage
6134 * Makefile.in: Regenerate.
6135
6136 2005-07-16 Kelley Cook <kcook@gcc.gnu.org>
6137
6138 * all files: Update FSF address.
6139
6140 2005-07-14 Jim Blandy <jimb@redhat.com>
6141
6142 * configure.in: Add cases for Renesas m32c.
6143 * configure: Regenerated.
6144
6145 2005-07-14 Kelley Cook <kcook@gcc.gnu.org>
6146
6147 * COPYING, compile, config-ml.in, config.guess,
6148 config.sub, install-sh, missing, mkinstalldirs,
6149 symlink-tree, ylwrap: Sync from upstream sources.
6150
6151 2005-07-13 Eric Christopher <echristo@redhat.com>
6152
6153 * configure.in: Add toplevel noconfigdir support for tpf.
6154 * configure: Regenerate.
6155
6156 2005-07-11 Jakub Jelinek <jakub@redhat.com>
6157
6158 * Makefile.def (target_modules): Add libssp.
6159 * configure.in (target_libraries): Add target-libssp.
6160 * configure: Rebuilt.
6161 * Makefile.in: Rebuilt.
6162
6163 2005-07-11 Paolo Bonzini <bonzini@gnu.org>
6164
6165 PR ada/22340
6166
6167 * Makefile.def: Sync with gcc.
6168 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Fix pasto.
6169 * Makefile.in: Regenerate.
6170
6171 2005-07-07 Andreas Schwab <schwab@suse.de>
6172
6173 * Makefile.def (flags_to_pass): Add CFLAGS_FOR_BUILD.
6174 * Makefile.tpl (EXTRA_GCC_FLAGS): Don't pass CFLAGS_FOR_BUILD here.
6175 * Makefile.in: Regenerated.
6176
6177 2005-07-07 Kazu Hirata <kazu@codesourcery.com>
6178
6179 * configure.in: Add --enable-libssp and --disable-libssp.
6180 * configure: Regenerate with autoconf-2.13.
6181
6182 2005-07-06 Geoffrey Keating <geoffk@apple.com>
6183
6184 * configure.in: Don't build sim or rda when targetting darwin.
6185 * configure: Regenerate.
6186
6187 2005-07-04 Ben Elliston <bje@gnu.org>
6188
6189 * src-release (do-proto-toplev): Remove dejagnu bits.
6190 (DEJAGNU_SUPPORT_DIRS): Remove.
6191 (dejagnu.tar.bz2, dejagnu.tar): Likewise.
6192 (GDBD_SUPPORT_DIRS): Likewise.
6193 (gdb+dejagnu.tar.bz2, gdb+dejagnu.tar): Likewise.
6194 (INSIGHTD_SUPPORT_DIRS): Likewise.
6195 (insight+dejagnu.tar.bz2, insight+dejagnu.tar): Likewise.
6196
6197 2005-06-30 Ben Elliston <bje@gnu.org>
6198
6199 * setup.com (mpw): Remove unused directive.
6200
6201 2005-06-22 Paolo Bonzini <bonzini@gnu.org>
6202
6203 * Makefile.def (stagefeedback): Come after profile.
6204 Define profiledbootstrap target.
6205 * Makefile.tpl (profiledbootstrap): Remove.
6206 (stageprofile-end): Zap stagefeedback.
6207 (stagefeedback-start): Copy all .gcda files, not only GCC's.
6208 * Makefile.in: Regenerate.
6209
6210 2005-06-13 Zack Weinberg <zack@codesourcery.com>
6211
6212 * depcomp: Update from automake CVS. Add 'ia64hp' stanza.
6213 In 'cpp' stanza, support '#line' as well as '# '.
6214
6215 2005-06-07 Hans-Peter Nilsson <hp@axis.com>
6216
6217 * configure.in (unsupported_languages): New macro.
6218 <mmix-knuth-mmixware>: Set unsupported_languages. Name explicit
6219 non-ported target libraries in noconfigdirs.
6220 <cris-*, crisv32-*> Ditto, except for non-aout, non-elf,
6221 non-linux-gnu. Remove libgcj_ex_libffi.
6222 <lang_frag loop>: Set add_this_lang=no if the language is in
6223 unsupported_languages.
6224 * configure: Regenerate.
6225
6226 2005-06-04 Tobias Schl"uter <tobias.schlueter@physik.uni-muenchen.de>
6227
6228 * configure.in: Fix typo in handling of --with-mpfr-dir.
6229 * configure: Regenerate.
6230
6231 2005-06-02 Jim Blandy <jimb@redhat.com>
6232
6233 * config.sub: Add cases for the Renesas m32c. (This patch has been
6234 accepted into the master sources.)
6235
6236 2005-06-02 Aldy Hernandez <aldyh@redhat.com>
6237 Michael Snyder <msnyder@redhat.com>
6238 Stan Cox <scox@redhat.com>
6239
6240 * configure.in: Set noconfigdirs for ms1.
6241
6242 * configure: Regenerate.
6243
6244 2005-05-25 Paolo Bonzini <bonzini@gnu.org>
6245
6246 * Makefile.tpl (stage[+id+]-start): Iterate over target module as well.
6247 (Dependencies): Consider target modules for bootstrap dependencies.
6248 Make target bootstrap modules depend on each stage's gcc.
6249 * Makefile.in: Regenerate.
6250
6251 2005-05-20 Paolo Bonzini <bonzini@gnu.org>
6252
6253 * Makefile.def (configure-gcc): Depend on binutils having been built.
6254 (all-gcc): No need to do it here.
6255 * Makefile.in: Regenerate.
6256
6257 2005-05-19 Paul Brook <paul@codesourcery.com>
6258
6259 * configure.in: Rewrite misleading error message when requested
6260 language cannot be built.
6261 * configure: Regenerate.
6262
6263 2005-05-15 Daniel Jacobowitz <dan@codesourcery.com>
6264
6265 * ylwrap: Import from Automake 1.9.5.
6266
6267 2005-05-04 Mike Stump <mrs@apple.com>
6268
6269 * configure.in: Always pass --target to target configures as
6270 otherwise rebuilds that do --recheck will fail.
6271 * configure: Rebuilt.
6272
6273 2005-05-04 Paolo Bonzini <bonzini@gnu.org>
6274
6275 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Rename from
6276 STAGE_HOST_EXPORTS.
6277 (configure, all): Add bootstrap support.
6278 (Host modules, target modules): Pass post-stage1 flags and exports.
6279 (Top-level bootstrap): Remove bootstrap rules, expanded elsewhere.
6280 * Makefile.in: Regenerate.
6281
6282 2005-04-29 Paolo Bonzini <bonzini@gnu.org>
6283
6284 Sync from gcc:
6285
6286 2005-04-22 Bernd Schmidt <bernd.schmidt@analog.com>
6287
6288 * config.sub: Update from master copy.
6289
6290 2005-04-19 Hans-Peter Nilsson <hp@axis.com>
6291
6292 * configure.in <crisv32-*-*, cris-*-*>: New local variable
6293 libgcj_ex_libffi. Have specific match for *-*-linux*. Separate
6294 matches for "*-*-aout" and "*-*-elf". Don't disable libffi for
6295 "*-*-elf" and "*-*-linux*".
6296 * configure: Regenerate.
6297
6298 2005-04-06 Paolo Bonzini <bonzini@gnu.org>
6299
6300 * Makefile.tpl (BUILD_CONFIGARGS): Include --with-build-subdir.
6301 (TARGET_CONFIGARGS): Include --with-target-subdir.
6302 (configure, all): New macros. Use them throughout.
6303
6304 2005-04-05 Paolo Bonzini <bonzini@gnu.org>
6305
6306 * Makefile.tpl: Sync with gcc.
6307 * Makefile.in: Regenerate.
6308
6309 2005-03-30 J"orn Rennecke <joern.rennecke@st.com>
6310
6311 * config/mh-mingw32: Delete.
6312 * configure.in: Don't use it.
6313 * configure: Regenerate.
6314
6315 2005-03-31 Paolo Bonzini <bonzini@gnu.org>
6316
6317 * Makefile.def (bfd, opcodes, libstdc++-v3, libmudflap): Set lib_path.
6318 * Makefile.tpl (SET_LIB_PATH, REALLY_SET_LIB_PATH): Remove.
6319 (HOST_EXPORTS, STAGE_HOST_EXPORTS, TARGET_EXPORTS): Set $(RPATH_ENVVAR).
6320 (HOST_LIB_PATH): Generate from Makefile.def.
6321 (TARGET_LIB_PATH): Likewise.
6322 (Old bootstrap targets): Include TARGET_LIB_PATH into RPATH_ENVVAR.
6323 * Makefile.in: Regenerate.
6324 * configure.in (set_lib_path, SET_LIB_PATH, SET_GCC_LIB_PATH): Remove.
6325 (RPATH_ENVVAR): Include Darwin case.
6326 * configure: Regenerate.
6327
6328 2005-03-25 Paolo Bonzini <bonzini@gnu.org>
6329
6330 * configure.in (RPATH_ENVVAR): Set to DYLD_LIBRARY_PATH on Darwin.
6331 * configure: Regenerate.
6332
6333 2005-03-21 Zack Weinberg <zack@codesourcery.com>
6334
6335 * Makefile.def: Remove libstdcxx_incdir, libsubdir, gxx_include_dir,
6336 gcc_version, and gcc_version_trigger from set of flags to pass.
6337 * Makefile.tpl: Remove definitions of above variables.
6338 (config.status): Remove dependency on $(gcc_version_trigger).
6339 * Makefile.in: Regenerate.
6340 * configure.in: Do not reference config/gcc-version.m4 nor
6341 config/gxx-include-dir.m4. Do not invoke TL_AC_GCC_VERSION nor
6342 TL_AC_GXX_INCLUDE_DIR. Do not set gcc_version_trigger.
6343 * configure: Regenerate.
6344
6345 2005-03-16 Manfred Hollstein <manfred.h@gmx.net>
6346 Andrew Pinski <pinskia@physics.uc.edu>
6347
6348 * Makefile.tpl (check-[+module+]): Fix shell statement inside if ... fi.
6349 * Makefile.in: Regenerate.
6350
6351 2005-03-01 Alexandre Oliva <aoliva@redhat.com>
6352
6353 PR libgcj/20160
6354 * ltmain.sh: Avoid creating archives with components that have
6355 duplicate basenames.
6356
6357 2005-02-28 Andrew Pinski <pinskia@physics.uc.edu>
6358
6359 PR bootstrap/20250
6360 * Makefile.tpl (HOST target installs): Fix copy and pasto, use install
6361 instead of check.
6362 * Makefile.in: Regenerate.
6363
6364 2005-02-28 Paolo Bonzini <bonzini@gnu.org>
6365
6366 Sync from gcc.
6367
6368 2005-02-28 Paolo Bonzini <bonzini@gnu.org>
6369
6370 PR bootstrap/17383
6371 * Makefile.def (target_modules): Remove "stage", now unnecessary.
6372 * Makefile.tpl (HOST_SUBDIR): New substitution.
6373 (STAGE_HOST_EXPORTS, EXPECT, HOST_LIB_PATH, USUAL_AR_FOR_TARGET,
6374 USUAL_AS_FOR_TARGET, USUAL_DLLTOOL_FOR_TARGET, USUAL_GCC_FOR_TARGET,
6375 USUAL_LD_FOR_TARGET, USUAL_NM_FOR_TARGET, USUAL_OBJDUMP_FOR_TARGET,
6376 USUAL_RANLIB_FOR_TARGET, USUAL_WINDRES_FOR_TARGET): Use it.
6377 (Host modules, Bootstrapped modules): Use it.
6378 (Build modules, Target modules): Do not create symlink trees,
6379 always configure out-of-srcdir.
6380 (distclean): Try removing $(host_subdir) with rm before using rm -rf.
6381 * configure.in (FLAGS_FOR_TARGET, CC_FOR_TARGET, GCJ_FOR_TARGET,
6382 GFORTRAN_FOR_TARGET, CXX_FOR_TARGET, RAW_CXX_FOR_TARGET): Use
6383 $(HOST_SUBDIR). Create a symlink for host_subdir.
6384
6385 * Makefile.in: Regenerate.
6386 * configure: Regenerate.
6387
6388 Merged from libada-gnattools-branch:
6389 2004-11-28 Nathanael Nerode <neroden@gcc.gnu.org>
6390
6391 * Makefile.def: Add gnattools as a module, depending on target-libada.
6392 * Makefile.in: Regenerate.
6393 * configure.in: Include gnattools in host_tools; disable it if ada
6394 is disabled.
6395 * configure: Regenerate.
6396
6397 2005-02-23 Nick Clifton <nickc@redhat.com>
6398
6399 * configure: Regenerate.
6400
6401 2005-02-22 Paul Schlie <schlie@comcast.net>
6402
6403 * configure.in: Allow darwin targeted ports to build tk, itcl and
6404 libgui.
6405
6406 2005-02-21 Eric Botcazou <ebotcazou@libertysurf.fr>
6407
6408 PR libgcj/10353
6409 * configure.in (noconfigdirs) <sparc-*-solaris2.[0-6]>: Add libgcj.
6410 * configure: Regenerate.
6411
6412 2005-02-08 Andrew Cagney <cagney@gnu.org>
6413
6414 * MAINTAINERS: Delete reference to dejagnu/ and mmalloc/ from the
6415 gdb/ section. Update GDB's URL.
6416
6417 2005-01-31 Andrew Cagney <cagney@gnu.org>
6418
6419 * gettext.m4: Only set ENABLE_NLS when gettext is present.
6420
6421 2005-01-29 Hans-Peter Nilsson <hp@axis.com>
6422
6423 * configure.in (noconfigdirs) <crisv32-*-*>: Match like cris-*-*.
6424 <crisv32-*-*, cris-*-*>: Only disable target-newlib and
6425 target-libgloss when not *-*-elf and *-*-aout.
6426 * configure: Regenerate.
6427
6428 2005-01-27 Andrew Cagney <cagney@gnu.org>
6429
6430 * gettext.m4: Don't use NONE as a default for CATOBJEXT.
6431
6432 2005-01-24 Andrew Cagney <cagney@gnu.org>
6433
6434 * gettext.m4: Only fall back to ../intl/ when it's present.
6435
6436 2005-01-17 Kelley Cook <kcook@gcc.gnu.org>
6437
6438 * install-sh, config.sub: Import from upstream.
6439
6440 2005-01-17 Kelley Cook <kcook@gcc.gnu.org>
6441
6442 PR bootstrap/18222
6443 * Makefile.def: Pass CPPFLAGS_FOR_TARGET.
6444 * Makefile.tpl: Define target CPPFLAGS on CPPFLAGS_FOR_TARGET.
6445 * Makefile.in: Regenerate.
6446
6447 2005-01-03 Paolo Bonzini <bonzini@gnu.org>
6448
6449 Revert 2004-12-28 Makefile changes, a better fix will be
6450 applied to mainline and src after GCC 4.0 branches.
6451
6452 2004-12-28 Paolo Bonzini <bonzini@gnu.org>
6453
6454 PR bootstrap/17383
6455
6456 * Makefile.def (target_modules): Remove stage parameter,
6457 it is always true now.
6458 * Makefile.tpl (configure-build-[+module+],
6459 configure-target-[+module+]): Always build symlink tree
6460 for the directory and for include. BUILD_SUBDIR and
6461 TARGET_SUBDIR cannot be . anymore.
6462 * Makefile.in: Regenerate.
6463
6464 2004-12-25 David Edelsohn <edelsohn@gnu.org>
6465
6466 Revert 2004-12-08 Makefile changes.
6467
6468 2004-12-16 Andrew Stubbs <andrew.stubbs@st.com>
6469
6470 * configure.in (sh64-*-*): Reenable gprof.
6471 * configure: Regenerate.
6472
6473 2004-12-09 Jim Blandy <jimb@redhat.com>
6474
6475 * MAINTAINERS: List 'depcomp' as part of automake.
6476
6477 2004-12-08 David Edelsohn <edelsohn@gnu.org>
6478
6479 * Makefile.def (flags_to_pass): Add PICFLAG_FOR_TARGET.
6480 * Makefile.tpl (EXTRA_HOST_FLAGS): Add PICFLAG.
6481 (EXTRA_TARGET_FLAGS): Add PICFLAG.
6482 * Makefile.in: Regenerate.
6483
6484 2004-12-07 Matt Kraai <kraai@ftbfs.org>
6485
6486 * Makefile.tpl: Generate normal dependencies if the LHS module is
6487 not bootstrapped.
6488 * Makefile.in: Regenerate.
6489
6490 2004-12-03 Richard Sandiford <rsandifo@redhat.com>
6491
6492 * configure.in: Include config/gxx-include-dir.m4. Use
6493 TL_AC_GXX_INCLUDE_DIR. Remove some now-redundant AC_SUBSTs.
6494 * configure: Regenerate.
6495
6496 2004-12-03 Richard Sandiford <rsandifo@redhat.com>
6497
6498 * config.if: Delete.
6499 * configure.in: Set libstdcxx_incdir directly.
6500 * configure: Regenerate.
6501 * MAINTAINERS: Remove mention of config.if.
6502 * src-release (DEVO_SUPPORT): Remove config.if.
6503
6504 2004-12-02 Eric Christopher <echristo@redhat.com>
6505
6506 * Makefile.tpl (clean-target-libgcc): Add stmp-dirs to list
6507 of things to remove.
6508 * Makefile.in: Regenerate.
6509
6510 2004-12-02 Richard Sandiford <rsandifo@redhat.com>
6511
6512 * configure.in: Clear gcc_version_trigger if the file doesn't exist.
6513 * configure: Regenerate.
6514
6515 2004-12-02 Richard Sandiford <rsandifo@redhat.com>
6516
6517 * configure.in: Include config/gcc-version.m4. Use TL_AC_GCC_VERSION
6518 to set gcc_version_trigger. Remove some now-redundant AC_SUBSTs.
6519 * configure: Regenerate.
6520
6521 2004-11-26 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
6522
6523 * configure.in (hppa*-*-linux*): Don't add libgcj to noconfigdirs.
6524 (hppa*64*-*-*): Delete incorrect comment.
6525 * configure: Rebuilt.
6526
6527 2004-11-15 Kelley Cook <kcook@gcc.gnu.org>
6528
6529 * install-sh, compile: Import from automake.
6530
6531 2004-11-15 Kelley Cook <kcook@gcc.gnu.org>
6532
6533 * config.guess, config.sub: Import from savannnah.
6534
6535 2004-11-12 Mike Stump <mrs@apple.com>
6536
6537 * Makefile.def: Add html support.
6538 * Makefile.tpl: Likewise.
6539 * Makefile.in: Regenerate.
6540
6541 2004-11-11 Geoffrey Keating <geoffk@apple.com>
6542
6543 PR 18423
6544 * configure.in: Remove all instances of build-fixincludes from
6545 noconfigdirs.
6546 (build_configargs): Supply --target to subdirectories.
6547 * configure: Regenerate.
6548
6549 * Makefile.def: Make gcc install depend on fixincludes install.
6550 * Makefile.in: Regenerate.
6551
6552 2004-11-08 Hans-Peter Nilsson <hp@bitrange.com>
6553
6554 * configure.in (noconfigdirs) [mmix-*-*]: Disable
6555 target-libgfortran.
6556 * configure: Regenerate.
6557
6558 2004-11-07 David Edelsohn <edelsohn@gnu.org>
6559
6560 * config-ml.in: Pass FCFLAGS for multilibs, handle GFORTRAN
6561 like CC.
6562
6563 2004-11-05 Paolo Bonzini <bonzini@gnu.org>
6564
6565 * Makefile.def (host fixincludes): Specify missing targets.
6566 * Makefile.in: Regenerate.
6567
6568 2004-11-04 H.J. Lu <hongjiu.lu@intel.com>
6569
6570 PR other/17783
6571 * configure.in: Set up LD_LIBRARY_PATH by default for gcc.
6572 * configure: Regenerated.
6573
6574 2004-11-04 Daniel Jacobowitz <dan@debian.org>
6575
6576 * configure.in (arm-*-oabi*, thumb-*-oabi*): Remove.
6577 * configure: Regenerated.
6578
6579 2004-10-28 Eric B. Weddington <ericw@evcohs.com>
6580
6581 PR target/18151
6582 * configure.in (case ${target}): Do not build fixincludes for avr.
6583 * configure: Regenerated.
6584
6585 2004-10-26 Paolo Bonzini <bonzini@gnu.org>
6586
6587 * configure.in (case ${target}): Do not build fixincludes
6588 on platforms where it is not used.
6589 * configure: Regenerated.
6590
6591 2004-10-23 Daniel Jacobowitz <dan@debian.org>
6592
6593 * configure.in: Use an absolute path to install-sh.
6594 * configure: Regenerated.
6595
6596 2004-10-19 Andrew Cagney <cagney@gnu.org>
6597
6598 * src-release (do-djunpack, do-md5sum): Install the generated file
6599 directly into the proto-toplev/ directory.
6600
6601 2004-10-19 Andrew Cagney <cagney@gnu.org>
6602
6603 * src-release (GDB_SUPPORT_DIRS): Remove utils and intl.
6604
6605 2004-10-12 Kelley Cook <kcook@gcc.gnu.org>
6606
6607 * configure.in (*-*-cygwin*): Supress warning if newlib not present.
6608 * configure: Regenerate.
6609
6610 2004-10-06 Paolo Bonzini <bonzini@gnu.org>
6611
6612 Fix wrong conflict resolution in:
6613
6614 2004-08-16 Paolo Bonzini <bonzini@gnu.org>
6615
6616 * Makefile.in: Regenerate.
6617 * Makefile.tpl (Autogenerated `all-*' targets): Invoke $(TARGET-*)
6618 in the recursive `make', instead of hardwiring `all'.
6619 (Autogenerated TARGET-* variables): New.
6620
6621 2004-10-05 Ulrich Weigand <uweigand@de.ibm.com>
6622
6623 Merged from GCC / libtool upstream:
6624 2004-10-02 P.J. Darcy <darcypj@us.ibm.com>
6625 * ltcf-c.sh (tpf*): Add ld_shlibs=yes.
6626 * ltcf-cxx.sh (tpf*): Likewise.
6627 * ltconfig (tpf*): Add TPF OS configuration support.
6628
6629 2004-09-30 Tomer Levi <Tomer.Levi@nsc.com>
6630
6631 * configure.in: Enable target-libgloss for crx-*-*.
6632 * configure: Regenerate.
6633
6634 2004-09-24 Michael Roth <mroth@nessie.de>
6635
6636 * configure.in (--without-headers): Add missing double quotes.
6637 * configure: Regenerate.
6638
6639 2004-09-24 Kelley Cook <kcook@gcc.gnu.org>
6640
6641 * ylwrap: Revert to previous version.
6642
6643 2004-09-23 H.J. Lu <hongjiu.lu@intel.com>
6644
6645 PR bootstrap/17369
6646 * Makefile.tpl (REALLY_SET_LIB_PATH): Add @SET_GCC_LIB_PATH@.
6647 (HOST_EXPORTS]): Add @SET_GCC_LIB_PATH@. Set and export
6648 SET_GCC_LIB_PATH_CMD.
6649 (BASE_TARGET_EXPORTS): Likewise.
6650 * Makefile.in: Regenerated.
6651
6652 * configure.in (SET_GCC_LIB_PATH): Set and substitute.
6653 * configure: Regenerated.
6654
6655 2004-09-23 Kelley Cook <kcook@gcc.gnu.org>
6656
6657 * config.guess: New upstream version
6658 * compile, depcomp, install-sh, ylwrap: Likewise.
6659
6660 2004-09-19 Roger Sayle <roger@eyesopen.com>
6661
6662 * config/mh-x86omitfp: New host makefile fragment. Add
6663 -fomit-frame-pointer to the default BOOT_CFLAGS.
6664 * configure.in: Use it to speed up bootstrap on some IA-32 hosts.
6665 * configure: Regenerate.
6666
6667 2004-09-15 Andrew Pinski <pinskia@physics.uc.edu>
6668
6669 PR target/11572
6670 * configure.in (*-*-darwin*): Renable libobjc.
6671 * configure: Regenerate.
6672
6673 2004-09-09 Daniel Berlin <dberlin@dberlin.org>
6674
6675 * Makefile.def: Remove libbanshee.
6676 * Makefile.tpl: Ditto.
6677 * configure.in: Ditto.
6678 * Makefile.in: Regen.
6679 * configure: Ditto.
6680
6681 2004-09-07 Paolo Bonzini <bonzini@gnu.org>
6682
6683 * missing: Import latest version from master repository.
6684
6685 2004-09-04 Nick Clifton <nickc@redhat.com>
6686
6687 * config.sub: Import latest version from master repository.
6688 * config.guess: Likewise.
6689 This includes these changes:
6690
6691 2004-08-27 Hans-Peter Nilsson <hp@axis.com>
6692
6693 * config.sub: Handle crisv32, alias etraxfs.
6694 * config.guess (crisv32:Linux:*:*): Handle.
6695
6696 2004-08-13 Brad Smith <brad@comstyle.com>
6697
6698 * config.guess (*:OpenBSD:*:*): Remove defunct MIPS machines.
6699 (sgi:OpenBSD:*:*): Emit mips64, not mipseb.
6700
6701 2004-08-11 Paul Eggert <eggert@cs.ucla.edu>
6702
6703 * config.guess (*:Darwin:*:*): If uname -p reports "unknown",
6704 assume the processor is a powerpc. This is because coreutils
6705 uname (at least versions 4.5.7 through 5.2.1) outputs "unknown"
6706 in this case, due to a MacOS X bug that causes
6707 sysctl ((int[]) {CTL_HW, HW_MACHINE_ARCH}, 2, buffer, &bufsize, 0, 0)
6708 to return a negative number.
6709 Problem reported by Petter Reinholdtsen in:
6710 http://lists.gnu.org/archive/html/bug-gnu-utils/2003-02/msg00201.html
6711
6712 2004-07-19 Ben Elliston <bje@gnu.org>
6713
6714 * config.guess (S7501:*:4.0:3.0): Handle NCR System V UNIX machine.
6715
6716 2004-06-24 Ben Elliston <bje@gnu.org>
6717
6718 * config.guess: Update copyright years.
6719 * config.sub: Likewise.
6720
6721 2004-06-22 Robert Millan <robertmh@gnu.org>
6722
6723 * config.guess (*:FreeBSD:*:*): Remove check for glibc (unneeded
6724 since GNU/kFreeBSD systems match *:GNU/*:*:* instead).
6725
6726 2004-06-22 Stanley F. Quayle <stan@stanq.com>
6727
6728 * config.guess (*:*VMS:*:*): New entry. Replaces
6729 Alpha:OpenVMS:*. Recognize and advertise all VMS flavors as dec
6730 manufacturer.
6731
6732 2004-06-22 Ben Elliston <bje@gnu.org>
6733
6734 * config.guess: Cray fixes from Wendy Palm <wendyp@cray.com>.
6735 * config.sub: Likewise.
6736
6737 2004-06-22 Ben Elliston <bje@gnu.org>
6738
6739 Reported by Hans-Peter Nilsson <hp@bitrange.com>:
6740 * config.sub: Correctly handle mmix-knuth and mmix-knuth-mmixware.
6741
6742 2004-06-11 Ben Elliston <bje@gnu.org>
6743
6744 * config.guess (pegasos:OpenBSD:*:*): Remove.
6745
6746 2004-06-11 Ben Elliston <bje@gnu.org>
6747
6748 From Wouter Verhelst <wouter@grep.be>:
6749 * config.guess (M68*:*:R3V[5678]:*): Detect R3V8.
6750
6751 2004-06-11 Ben Elliston <bje@gnu.org>
6752
6753 * config.guess (luna88k:OpenBSD:*:*): New.
6754
6755 2004-03-12 Kazuhiro Inaoka <inaoka.kazuhiro@renesas.com>
6756
6757 * config.guess (m32r*:Linux:*:*): New case.
6758 * config.sub: Handle m32rle.
6759
6760 2004-03-12 Ben Elliston <bje@wasabisystems.com>
6761
6762 From Jens Petersen <petersen@redhat.com>:
6763 * config.sub: Handle sparcv8.
6764
6765 2004-03-03 Ben Elliston <bje@wasabisystems.com>
6766
6767 From Tom Smith <smith@cag.lkg.hp.com>:
6768 * config.guess: Version suffixes are equally significant on Tru64
6769 V4.* and V5.*, so do not ignore them on V5.*. Handle a version
6770 prefix of "P" (patched kernel).
6771
6772 2004-02-23 Tal Agmon <Tal.Agmon@nsc.com>
6773
6774 * config.sub: Add support for National Semiconductor CRX target.
6775
6776 2004-09-03 Jan Beulich <jbeulich@novell.com>
6777
6778 * configure.in: Remove target-libstdc++-v3 from noconfigdirs for
6779 *-*-netware, but add target-libmudflap.
6780 Consolidate *-*-netware targets (of which really only i?86 exists)
6781 into a single entry.
6782 * configure: Likewise.
6783
6784 2004-09-01 Paolo Bonzini <bonzini@gnu.org>
6785
6786 * Makefile.tpl (sorry): Remove.
6787 (clean-stage[+id+], clean-stage[+id+]-module): New targets.
6788 (cleanstrap targets): Depend on distclean, not distclean-stage1.
6789 (do-clean): Clean per-stage directories too.
6790 (do-distclean): Run distclean-stage1 too.
6791 (.NOTPARALLEL): Enable during toplevel bootstrap.
6792 (stage[+id+]-bubble): Enable parallel execution during
6793 the recursive invocation.
6794 * Makefile.in: Regenerate.
6795
6796 Sync from gcc (moving the Makefile.in change to Makefile.tpl):
6797
6798 2004-08-31 Robert Bowdidge <bowdidge@apple.com>
6799
6800 * Makefile.in: Move BOOT_CFLAGS above host makefile fragment include.
6801 * configure.in: add test for powerpc-*-darwin* to specify makefile frag
6802 * configure: regenerate
6803 * config/mh-ppc-darwin: create file, override BOOT_CFLAGS for
6804 -mdynamic-no-pic
6805
6806 2004-08-31 Paolo Bonzini <bonzini@gnu.org>
6807
6808 * Makefile.tpl: Move BOOT_CFLAGS above host makefile fragment
6809 include.
6810 * configure.in: Fix indentation.
6811 * configure: Regenerate.
6812
6813 2004-08-31 Paolo Bonzini <bonzini@gnu.org>
6814
6815 * Makefile.def (build_modules): Add fixincludes.
6816 (dependencies): Make gcc depend on fixincludes.
6817 * configure.in (build_tools): Add fixincludes.
6818 (build_configdirs): Always include build_libs.
6819 * Makefile.in: Regenerate.
6820 * configure: Regenerate.
6821
6822 2004-08-30 Paolo Bonzini <bonzini@gnu.org>
6823
6824 * Makefile.def (bootstrap stages): Add 'lean' parameter.
6825 * Makefile.tpl (configure-stageN-*, all-stageN-*): Turned into
6826 phony targets; do not generate timestamp files.
6827 (distclean-stageN): Remove references to their timestamp files.
6828 (restageN, touch-stageN): Remove.
6829 (stageN-bubble): Rewritten.
6830 (compare): Support lean bootstraps.
6831 * Makefile.in: Regenerate.
6832
6833 * configure.in: Only warn when bootstrapping but
6834 build != host or build != target. Support lean bootstraps.
6835 * configure: Regenerate.
6836
6837 Sync from gcc:
6838 2004-08-26 Phil Edwards <phil@codesourcery.com>
6839
6840 * configure.in: Give a better error message if GMP/MPFR are missing
6841 and a language needing them has been requested.
6842 * configure: Regenerated.
6843
6844 2004-08-25 Phil Edwards <phil@codesourcery.com>
6845
6846 * configure.in: Print a list of available language front-ends if
6847 a requested one is missing. Tidy stray tab characters.
6848 * configure: Regenerated.
6849
6850 2004-08-17 Paolo Bonzini <bonzini@gnu.org>
6851
6852 * Makefile.in: Regenerate.
6853 * configure: Regenerate.
6854
6855 * Makefile.def (bootstrap-stage): Rename extra_*_flags to
6856 stage_*_flags.
6857 * Makefile.tpl (configure-[+module+], all-[+module+]): Exit
6858 for bootstrapped modules if toplevel bootstrap is going.
6859 (GCC bootstrap): Generate per-stage targets for all bootstrapped
6860 modules. Adjust for changes in Makefile.def. Enable several
6861 rules even in non-bootstrap mode, just to avoid peppering the
6862 template with unnecessary "@if/@endif gcc-bootstrap" pairs.
6863 (stage-[+prev+]-bubble): Remove.
6864
6865 * Makefile.def (Dependencies): Depend on all-build-bison,
6866 all-build-flex, all-build-byacc, all-build-texinfo, rather
6867 than the host variations.
6868 * Makefile.tpl (BUILD_DIR_PREFIX): Remove. Replace throughout
6869 with BUILD_SUBDIR.
6870 (BISON): Update for recent Bisons.
6871 (YACC): Fix typo.
6872 (cross): Depend on all-build.
6873 (all): Do not depend on all-build.
6874 (prebootstrap): Remove.
6875 (dep-kind): Accept separate prefixes for MODULE and ON variables.
6876 (Prebootstrap dependencies): Add them to the per-stage targets
6877 and to all-prebootstrap.
6878 * configure.in (build_configdirs): Always enable build_tools.
6879 (BUILD_DIR_PREFIX): Remove.
6880
6881 * Makefile.def (gcc): Add target variable.
6882 (gdb, expect, guile, tk, tix): Replace with_x with extra_make_flags.
6883 * Makefile.tpl (Autogenerated `all-*' targets): Invoke $(TARGET-*)
6884 in the recursive `make', instead of hardwiring `all'.
6885 (Autogenerated TARGET-* variables): New.
6886
6887 2004-08-17 Robert Millan <robertmh@gnu.org>
6888
6889 * configure.in: In noconfigdirs check, match GNU/k*BSD with GNU/Linux
6890 (instead of FreeBSD).
6891 * configure: Regenerate.
6892
6893 2004-08-12 Nathanael Nerode <neroden@gcc.gnu.org>
6894
6895 * Makefile.def, configure.in, src-release: Remove useless, bogus
6896 references to tix.
6897 * Makefile.in, configure: Regenerate.
6898
6899 * src-release: Stop distributing mmalloc with gdb (which doesn't
6900 use it).
6901 * Makefile.def: GDB doesn't depend on mmalloc anymore.
6902 * Makefile.in: Regenerate.
6903
6904 2004-08-09 Mark Mitchell <mark@codesourcery.com>
6905
6906 * configure.in (arm*-*-eabi*): New target.
6907 * configure: Regenerate.
6908
6909 2004-08-01 Robert Millan <robertmh@gnu.org>
6910
6911 * configure.in: Turn mt-linux into mt-gnu. Use mt-gnu and enable
6912 libmudflap for all GNU-based systems (with Glibc).
6913 * configure: Regenerate.
6914
6915 2004-08-06 Paolo Bonzini <bonzini@gnu.org>
6916
6917 * Makefile.def (bfd, opcodes, gcc, zlib): Mark as bootstrap module.
6918 (bison, byacc, flex, texinfo): Do not mark as bootstrap module.
6919 (Dependencies): New section.
6920 * Makefile.tpl (Dependencies): Generate from Makefile.def.
6921 (configure-target-[+module+]): Depend on maybe-all-gcc
6922 (all-prebootstrap): New name of all-bootstrap. Changed throughout.
6923 (toplevel profiledbootstrap): Fix dependencies.
6924 * Makefile.in: Regenerate.
6925
6926 2004-08-03 Mark Mitchell <mark@codesourcery.com>
6927
6928 * configure.in (arm*-*-symbianelf*): Add ${libgcj} and
6929 target-libiberty to noconfigdirs.
6930
6931 2004-08-03 Paul Brook <paul@codesourcery.com>
6932
6933 * configure.in: Check for MPFR as well as GMP.
6934 * configure: Regenerate.
6935
6936 2004-08-03 Paolo Bonzini <bonzini@gnu.org>
6937
6938 * Makefile.def (host-modules): Add gcc.
6939 * Makefile.in: Regenerate.
6940 * Makefile.tpl (sorry): New rule.
6941 (configure-host, all-host, [+make_target+]-host, do-check,
6942 install-host): Do not add gcc as a special case.
6943 (host modules): Add a small special-casing for gcc. Export
6944 extra_make_flags through the environment.
6945 (maybe-configure-gcc, configure-gcc, maybe-all-gcc, all-gcc,
6946 maybe-check-gcc, check-gcc, maybe-install-gcc, install-gcc,
6947 other recursive targets for gcc): Remove.
6948
6949 (all, do-[+make_target+], do-check): Wrap between unstage and stage.
6950 (stage, unstage): New rules.
6951 (stage[+id+]-start, stage[+id+]-end, [+compare-target+],
6952 distclean-stage[+id+]): Use stage_current.
6953 ([+bootstrap-target+], profiledbootstrap): Do not invoke manually
6954 the stage*-start rules.
6955
6956 2004-07-19 Robert Millan <robertmh@gnu.org>
6957
6958 Synced from gcc:
6959
6960 2004-04-26 Robert Millan <robertmh@gnu.org>
6961
6962 Add patches from libtool CVS.
6963 * libtool.m4: Add kfreebsd*-gnu and knetbsd*-gnu.
6964 * ltconfig: Likewise.
6965 * ltcf-c.sh: Likewise.
6966 * ltcf-cxx.sh: Likewise.
6967 * ltcf-gcj.sh: Likewise.
6968
6969 2004-07-12 Paolo Bonzini <bonzini@gnu.org>
6970
6971 * configure.in: Add noconfigdirs for crx-*-*.
6972 * configure: Regenerate.
6973
6974 2004-07-12 Paolo Bonzini <bonzini@gnu.org>
6975
6976 Synced from gcc:
6977
6978 2004-07-09 Loren J. Rittle <ljrittle@acm.org>
6979
6980 * configure.in: Build libmudflap by default on FreeBSD.
6981 * configure: Regenerated.
6982
6983 2004-07-09 Mark Mitchell <mark@codesourcery.com>
6984
6985 * configure.in: Do not build libmudflap by default on non-GNU/Linux
6986 systems.
6987 * configure: Regenerated.
6988
6989 2004-07-08 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
6990
6991 PR target/16344
6992 * Makefile.tpl (profiledbootstrap): Build runtime libraries with
6993 feedback based compiler.
6994 * Makefile.in: Rebuilt.
6995
6996 2004-07-05 Phil Edwards <phil@codesourcery.com>
6997
6998 * configure.in: Do not prepend $srcdir to /dev/null in
6999 makefile fragments.
7000 * configure: Regenerate.
7001
7002 2004-07-08 Alexandre Oliva <aoliva@redhat.com>
7003
7004 * Makefile.def (host_modules): Set bootstrap=true for flex.
7005 * Makefile.tpl (all-gcc): Depend on texinfo and flex.
7006 * Makefile.in: Rebuilt.
7007
7008 2004-07-01 Paolo Bonzini <bonzini@gnu.org>
7009
7010 * Makefile.def (build_modules): Add bison, byacc, flex,
7011 m4, texinfo.
7012 (flags_to_pass): Add FLEX.
7013 * Makefile.tpl (BUILD_DIR_PREFIX, BASE_EXPORTS): New.
7014 (BUILD_EXPORTS, HOST_EXPORTS, BASE_TARGET_EXPORTS): Include it.
7015 (DEFAULT_YACC, USUAL_YACC, DEFAULT_LEX, USUAL_LEX, DEFAULT_M4,
7016 DEFAULT_MAKEINFO): Remove.
7017 (CONFIGURED_YACC, CONFIGURED_FLEX, CONFIGURED_BISON,
7018 CONFIGURED_LEX, CONFIGURED_M4, CONFIGURED_MAKEINFO): Substitute.
7019 (YACC, FLEX, BISON, LEX, M4, MAKEINFO): Define to look into
7020 objdir or else use configured tool.
7021 (all-build): New.
7022 (all): Depend on it.
7023 (Build module dependencies): Add.
7024 * Makefile.in: Regenerate.
7025 * configure.in: Better support for multiple build modules,
7026 matching what is done for host/target modules. Do not look
7027 for "plausible" locations of build tools if Canadian cross.
7028 Use autoconf's AC_PROG_CC to find a C compiler. Define
7029 BUILD_DIR_PREFIX. Look for flex, makeinfo and m4.
7030 * configure: Regenerate.
7031
7032 2004-06-22 Paolo Bonzini <bonzini@gnu.org>
7033
7034 * Makefile.tpl (HOST_EXPORTS): Fix pasto.
7035 * Makefile.in: Regenerate.
7036
7037 2004-06-22 Paolo Bonzini <bonzini@gnu.org>
7038
7039 * Makefile.tpl (configure-build-[+module+],
7040 configure-[+module+], configure-target-[+module+]): Pass
7041 [+extra_configure_args+].
7042 (all-build-[+module+], all-[+module+], check-[+module+],
7043 install-[+module+], [+make_target+]-[+module+],
7044 all-target-[+module+], check-target-[+module+],
7045 install-target-[+module+], [+make_target+]-target-[+module+]):
7046 Pass [+extra_make_args+].
7047 (HOST_EXPORTS): Include the former GCC_HOST_EXPORTS.
7048 (GCC_HOST_EXPORTS): Remove.
7049 (configure-gcc, all-gcc, GCC_STRAP_TARGETS, profiledbootstrap,
7050 cross, check-gcc, check-gcc-c++, install-gcc,
7051 gcc-no-fixedincludes, [+make_target+]-gcc, stage[+id+]-bubble):
7052 Replace GCC_HOST_EXPORTS with HOST_EXPORTS.
7053 * Makefile.in: Regenerate.
7054
7055 2004-06-21 Christopher Faylor <cgf@alum.bu.edu>
7056
7057 * configure.in: Check for srcdir/winsup rather than build directory
7058 winsup.
7059 * configure: Regenerate.
7060
7061 2004-06-17 Corinna Vinschen <vinschen@redhat.com>
7062
7063 * configure.in: Don't build Cygwin native newlib if winsup
7064 directory is missing. Emit warning instead.
7065 * configure: Regenerate.
7066
7067 2004-06-09 Paolo Bonzini <bonzini@gnu.org>
7068
7069 * Makefile.tpl (touch-stage[+id+]): New.
7070 (restage[+prev+]): Depend on touch-stage[+id+].
7071
7072 * Makefile.tpl (RECURSE_FLAGS_TO_PASS): New.
7073 Use it throughout.
7074
7075 * Makefile.def: Add profile and feedback bootstrap stages.
7076 Remove next field from bootstrap stages.
7077 * Makefile.tpl (LN, LN_S): Substitute.
7078 (stageN-start, stageN-end): Use double-colon rules, to
7079 provide a hook for additional setup commands.
7080 (distclean-stageN-gcc, restageN): Create dependencies from
7081 [+prev+], not from [+next+].
7082 (stageN-bubble): Add commands for successive stages from
7083 [+prev+], using double-colon rules.
7084 (all-stageN-gcc): Fix typo.
7085 (stagefeedback-start, profiledbootstrap): New.
7086 * Makefile.in: Regenerate.
7087 * configure.in: Call ACX_PROG_LN.
7088 * configure: Regenerate.
7089
7090 2004-06-03 Paolo Bonzini <bonzini@gnu.org>
7091
7092 * configure.in: Fix --enable-bootstrap breakage introduced in trees
7093 without gcc.
7094 * configure: Regenerate.
7095
7096 2004-06-01 Paolo Bonzini <bonzini@gnu.org>
7097
7098 * Makefile.tpl: Fix typo.
7099 * Makefile.in: Regenerate.
7100
7101 2004-06-01 Paolo Bonzini <bonzini@gnu.org>
7102
7103 * configure.in: Remove new- prefix from toplevel
7104 bootstrap targets.
7105 * configure: Regenerate.
7106
7107 2004-06-01 Paolo Bonzini <bonzini@gnu.org>
7108
7109 Merge this patch from the gcc tree:
7110
7111 2004-05-30 Andreas Jaeger <aj@suse.de>
7112 Jim Wilson <wilson@specifixinc.com>
7113
7114 * config-ml.in: Pass FFLAGS and ADAFLAGS for multilibs, handle F77
7115 like CC.
7116
7117 2004-06-01 Paolo Bonzini <bonzini@gnu.org>
7118
7119 * Makefile.tpl (all.normal): Rename to all.
7120 (all): Replace with a rule to pick the default
7121 target from configure.
7122 (all-gcc, configure-gcc): Use conditionals to
7123 do nothing when toplevel bootstrap is going on.
7124 (GCC directory bootstrap) [gcc-bootstrap]: Disable.
7125 (Toplevel bootstrap) [gcc-no-bootstrap]: Disable.
7126 * configure.in: Support --enable-bootstrap.
7127
7128 * Makefile.def: Remove new- prefix from toplevel
7129 bootstrap targets.
7130 * Makefile.tpl: Likewise.
7131
7132 * Makefile.def: Add bootstrap_stage 4. Add bootstrap2
7133 target.
7134
7135 * Makefile.tpl (Toplevel bootstrap): Pass $(BASE_FLAGS_TO_PASS)
7136 $(RECURSE_FLAGS) to recursive invocation of make.
7137
7138 * Makefile.in: Regenerate.
7139 * configure: Regenerate.
7140
7141 2004-05-27 Daniel Jacobowitz <dan@debian.org>
7142
7143 * configure.in: Fix sed invocation for GFORTRAN_FOR_TARGET.
7144 * configure: Regenerate.
7145
7146 2004-05-25 Daniel Jacobowitz <drow@false.org>
7147
7148 * Makefile.tpl (BUILD_EXPORTS, HOST_EXPORTS, GCC_HOST_EXPORTS)
7149 (STAGE_HOST_EXPORTS, BASE_TARGET_EXPORTS, RAW_CXX_TARGET_EXPORTS)
7150 (NORMAL_TARGET_EXPORTS): New macros. Use them in all the recursive
7151 targets.
7152 * Makefile.in: Regenerate.
7153
7154 2005-05-24 Paolo Bonzini <bonzini@gnu.org>
7155
7156 * configure.in: Test the ability to symlink directories.
7157 * configure: Regenerate.
7158
7159 * Makefile.def (bootstrap-stage): New definitions.
7160 * Makefile.tpl (configure-stage1-gcc,
7161 configure-stage2-gcc, configure-stage3-gcc,
7162 all-stage1-gcc, all-stage2-gcc, all-stage3-gcc,
7163 new-bootstrap, new-cleanstrap, new-restage1, new-restage2,
7164 new-restage3, compare): Autogenerate, see Makefile.in
7165 entry for behavioral changes.
7166 (distclean-stage1, new-stage1-start, new-stage1-end,
7167 new-stage1-bubble, distclean-stage2, new-stage2-start,
7168 new-stage2-end, new-stage2-bubble, distclean-stage3,
7169 new-stage3-start, new-stage3-end): New autogenerated targets.
7170 (objext, prebootstrap, BOOT_CFLAGS,
7171 POSTSTAGE1_FLAGS_TO_PASS): Move above the autogenerated
7172 targets.
7173
7174 * Makefile.in: Regenerate.
7175 (distclean-stage1, new-stage1-start, new-stage1-end,
7176 new-stage1-bubble, distclean-stage2, new-stage2-start,
7177 new-stage2-end, new-stage2-bubble, distclean-stage3,
7178 new-stage3-start, new-stage3-end): New targets.
7179 (all-stage1-gcc): Move prebootstrap dependency from here...
7180 (configure-stage1-gcc): ...to here.
7181 (new-bootstrap): Use bubble targets.
7182 (new-cleanstrap, new-restage1, new-restage2, new-restage3):
7183 Use per-stage distclean targets.
7184 (configure-stage1-gcc, configure-stage2-gcc,
7185 configure-stage3-gcc, all-stage1-gcc,
7186 all-stage2-gcc, all-stage3-gcc, new-bootstrap):
7187 Use new-stageN-start to prepare the tree.
7188
7189 2004-05-23 Paolo Bonzini <bonzini@gnu.org>
7190
7191 * Makefile.def (host_modules): add libcpp.
7192 * Makefile.tpl: Add dependencies on and for libcpp.
7193 * Makefile.in: Regenerate.
7194 * configure.in: Add libcpp host module.
7195 * configure: Regenerate.
7196
7197 2004-05-17 Zack Weinberg <zack@codesourcery.com>
7198
7199 * Makefile.def, Makefile.tpl, configure.in: Remove all mention
7200 of libf2c.
7201 * configure, Makefile.in: Regenerate.
7202
7203 2004-05-13 Diego Novillo <dnovillo@redhat.com>
7204
7205 Merge from tree-ssa-20020619-branch.
7206
7207 * Makefile.def: Add libbanshee, libmudflap and libgfortran.
7208 * Makefile.tpl (BUILD_CONFIGDIRS): Add libbanshee.
7209 (HOST_GMPLIBS): Define.
7210 (HOST_GMPINC): Define.
7211 (TARGET_LIB_PATH): Add libmudflap.
7212 (GFORTRAN_FOR_TARGET): Define.
7213 (configure-build*): Export GFORTRAN.
7214 (configure-gcc): Export GMPLIBS and GMPINC.
7215 (all-gcc): Add maybe-all-libbanshee.
7216 (configure-target-libgfortran): Define.
7217 * Makefile.in: Regenerate.
7218 * configure.in (host_libs): Add libbanshee.
7219 (target_libraries): Add target-libmudflap and target-libgfortran.
7220 Add --with-libbanshee.
7221 Handle --disable-libmudflap.
7222 (*-*-freebsd*): Use with_gmp.
7223 Add $(libgcj) to noconfigdirs.
7224 * configure: Regenerate.
7225 * depcomp: New file.
7226 * MAINTAINERS: Add tree-ssa maintainers.
7227
7228 2004-04-28 Paolo Bonzini <bonzini@gnu.org>
7229
7230 * config/acx.m4: Fix fastcompare support for new-bootstrap.
7231 * configure: Regenerate.
7232
7233 2004-04-27 Paolo Bonzini <bonzini@gnu.org>
7234
7235 Revert:
7236 2004-04-26 Paolo Bonzini <bonzini@gnu.org>
7237
7238 * Makefile.def (flags_to_pass): Remove *dir variables that
7239 are passed to the modules via TOPLEVEL_CONFIGURE_ARGUMENTS,
7240 as well as prefix and exec_prefix.
7241 * Makefile.in: Regenerate.
7242
7243 2004-04-26 Paolo Bonzini <bonzini@gnu.org>
7244
7245 * Makefile.def (host_modules): Mark with the bootstrap
7246 flag packages on which gcc depends.
7247 * Makefile.tpl (all-bootstrap): Use it.
7248 * Makefile.in: Regenerate.
7249
7250 2004-04-26 Paolo Bonzini <bonzini@gnu.org>
7251
7252 * Makefile.def (flags_to_pass): Remove *dir variables that
7253 are passed to the modules via TOPLEVEL_CONFIGURE_ARGUMENTS,
7254 as well as prefix and exec_prefix.
7255 * Makefile.in: Regenerate.
7256
7257 2004-04-26 Paolo Bonzini <bonzini@gnu.org>
7258
7259 * configure.in: Invoke ACX_PROG_CMP_IGNORE_INITIAL.
7260 * configure: Regenerate.
7261 * config/acx.m4: Mutuate ACX_PROG_CMP_IGNORE_INITIAL from gcc.
7262 * gcc/Makefile.tpl (compare): Use the result of the test.
7263 * gcc/Makefile.in: Regenerate.
7264
7265 2004-04-23 Paolo Bonzini <bonzini@gnu.org>
7266
7267 * Makefile.tpl (all-stage1-gcc, all-stage2-gcc, all-stage3-gcc):
7268 Always relocate gcc and prev-gcc to the original names, even
7269 if the build fails.
7270 (new-cleanstrap, new-restage1, new-restage2, new-restage3):
7271 New targets.
7272
7273 2004-04-19 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
7274
7275 * configure.in (mips*-*-irix5*): Enable ld.
7276 * configure: Regenerate.
7277
7278 2004-04-15 James E Wilson <wilson@specifixinc.com>
7279
7280 * Makefile.tpl (configure-[+module+], configure-gcc,
7281 configure-stage1-gcc, configure-stage2-gcc, configure-stage3-gcc):
7282 Set and export LDFLAGS.
7283 * Makefile.in: Regenerate.
7284
7285 2004-04-09 Nathanael Nerode <neroden@gcc.gnu.org>
7286
7287 PR bootstrap/14871
7288 * Makefile.tpl: If we don't have built-in-tree target tools,
7289 use the ones found by configure rather than hacking around with
7290 program_transform_name.
7291 * configure.in: Give Makefile.tpl the information necessary
7292 to do that.
7293 * Makefile.in: Regenerate.
7294 * configure: Regenerate.
7295
7296 2004-04-06 Nathanael Nerode <neroden@gcc.gnu.org>
7297
7298 PR bootstrap/14760
7299 * configure.in: When computing baseargs, strip *all* copies of
7300 offending options. Also, don't match/substitute the trailing space,
7301 so that this actually works when two similar options are separated by
7302 only one space.
7303 * configure: Regenerate.
7304
7305 2004-04-06 David Edelsohn <edelsohn@gnu.org>
7306
7307 * configure.in (powerpc-*-aix*): Remove target-libada from noconfigdirs.
7308 (rs6000-*-aix*): Same.
7309 * configure: Regenerate.
7310
7311 2004-03-25 Stan Shebs <shebs@apple.com>
7312
7313 Remove MPW support, no longer used.
7314 * mpw-README, mpw-build.in, mpw-config.in, mpw-configure,
7315 mpw-install: Remove files.
7316 * src-release (DEVO_SUPPORT): Remove names of removed files.
7317 * MAINTAINERS: Likewise.
7318
7319 2004-03-24 Nathanael Nerode <neroden@gcc.gnu.org>
7320
7321 * Makefile.tpl (top level bootstrap support): Remove now-unneeded
7322 STRICT_WARN, WARN_CFLAGS flags passed down to make.
7323 * Makefile.in: Regenerate.
7324
7325 * configure.in (top level bootstrap support): Rework --enable-werror
7326 to set @stage2_werror_flag@.
7327 * configure: Regenerate.
7328 * Makefile.tpl (top level bootstrap support): Pass
7329 @stage2_werror_flag@ down to configure in stages 2 and 3.
7330 * Makefile.in: Regenerate.
7331
7332 2004-03-23 Nathanael Nerode <neroden@gcc.gnu.org>
7333
7334 * Makefile.tpl (new-bootstrap): Set CC and CC_FOR_BUILD in configure
7335 for stages 2 and 3 as well as in make. As a consequence, remove
7336 OUTPUT_OPTION (now detected by configure) from the flags passed down
7337 to make.
7338 * Makefile.in: Regenerate.
7339
7340 * Makefile.tpl (new-bootstrap): Fix typo.
7341 * Makefile.in: Regenerate.
7342
7343 2004-03-22 Nathanael Nerode <neroden@gcc.gnu.org>
7344
7345 * Makefile.tpl: Rearrange by moving recursive_targets rules
7346 into their proper sections.
7347 * Makefile.tpl (top level bootstrap support): Move disabling
7348 of coverage flags from 'make' to 'configure'; improve comments.
7349 * Makefile.in: Regenerate.
7350
7351 * Makefile.tpl (experimental top level bootstrap) Move stage1
7352 language setting from all- target to configure- target; disable
7353 intermodule optimization in stage 1; prevent gratuitous rebuilds
7354 of stage 1.
7355 * Makefile.in: Regenerate.
7356 * configure.in: Comma-separate stage 1 language list for top
7357 level bootstrap.
7358 * configure: Regenerate.
7359
7360 * Makefile.tpl: Clean up experimental top level bootstrap support:
7361 note known problems; set CONFIG_SHELL; don't set BUILD_CC; relocate
7362 prev-gcc in configure- targets as well as all- targets.
7363 * Makefile.in: Regenerate.
7364
7365 2004-03-17 Paolo Bonzini <bonzini@gnu.org>
7366
7367 * configure.in: Remove symbolic link section.
7368 * configure: Regenerate.
7369 * Makefile.tpl (links): Remove.
7370 * Makefile.in: Regenerate.
7371
7372 2004-03-15 Paolo Bonzini <bonzini@gnu.org>
7373 Nathanael Nerode <neroden@gcc.gnu.org>
7374
7375 * configure.in (DEFAULT_YACC, DEFAULT_M4, DEFAULT_LEX):
7376 Set with AC_CHECK_PROGS.
7377 * configure.in: Fix comment typo from last patch.
7378 * configure: Regenerate.
7379
7380 2004-03-15 Nathanael Nerode <neroden@gcc.gnu.org>
7381
7382 * Makefile.tpl: Introduce experimental top level bootstrap support.
7383 * Makefile.in: Regenerate.
7384 * configure.in: Introduce support for top level bootstrap.
7385 * configure: Regenerate.
7386
7387 2004-03-12 Eric Botcazou <ebotcazou@gcc.gnu.org>
7388 Paolo Bonzini <bonzini@gnu.org>
7389
7390 PR bootstrap/14522
7391 * configure.in: Cope with shells that do not support unquoted ^
7392 * configure: Regenerate.
7393
7394 2004-03-11 Eric Botcazou <ebotcazou@gcc.gnu.org>
7395 Paolo Bonzini <bonzini@gnu.org>
7396
7397 PR bootstrap/14522
7398 * configure.in: Cope with shell that do not support nesting
7399 quotes inside quoted backquote substitutions.
7400 * configure: Regenerate.
7401
7402 2004-03-10 Andrew Pinski <pinskia@physics.uc.edu>
7403
7404 PR bootstrap/14522
7405 * configure.in: Fix escaping of $.
7406 * configure: Regenerate.
7407
7408 2004-03-11 Nathanael Nerode <neroden@gcc.gnu.org>
7409
7410 * configure: Regenerate.
7411
7412 2004-03-08 Paolo Bonzini <bonzini@gnu.org>
7413
7414 PR ada/14131
7415 Move language detection to the top level.
7416 * configure.in: Find default values for the tools as
7417 soon as possible. Disable ada if GNAT is not found.
7418 Emit error message about missing languages. Expand
7419 --enable-languages=all for the gcc subdirectory.
7420
7421 2004-03-01 Richard Sandiford <rsandifo@redhat.com>
7422
7423 * configure.in (mips64*-*-linux*): Override mips*-*-linux* case
7424 and disable libgcj.
7425 * configure: Regenerated.
7426
7427 2004-02-28 Nathanael Nerode <neroden@gcc.gnu.org>
7428
7429 PR bootstrap/7087
7430 * Makefile.tpl: Guard XFOO sed statements better.
7431 * Makefile.tpl: Add dependency for configure-target-libada.
7432 * Makefile.in: Regenerate (incidentally fixes broken
7433 commit when libada-branch was merged).
7434
7435 2004-02-28 Andrew Cagney <cagney@redhat.com>
7436
7437 * src-release (CVS_NAMES): Define.
7438 (do-tar, do-tar): Prune $(CVS_NAMES).
7439
7440 2004-02-23 Andrew Cagney <cagney@redhat.com>
7441
7442 * texinfo/texinfo.tex: Update from version 2003-02-03.16 to
7443 2004-02-19.09.
7444
7445 2004-02-19 Nathanael Nerode <neroden@gcc.gnu.org>
7446
7447 PR bootstrap/11932
7448 * mkinstalldirs, install-sh: Import from automake CVS HEAD.
7449
7450 2004-02-19 Andrew Cagney <cagney@redhat.com>
7451
7452 * config.guess: Update from version 2003-06-12 to 2004-02-16.
7453 * config.sub: Update from version 2003-06-13 to 2004-02-16.
7454
7455 2004-02-11 David Edelsohn <edelsohn@gnu.org>
7456
7457 * configure.in (powerpc-*-aix*): Add target-libada to noconfigdirs.
7458 (rs6000-*-aix*): Same.
7459 * configure: Regenerate.
7460
7461 2004-02-11 Kelley Cook <kcook@gcc.gnu.org>
7462
7463 * configure.in (host): Add in missing $noconfigdirs to defines.
7464 * configure: Regenerate.
7465
7466 2004-02-10 Arnaud Charlet <charlet@act-europe.fr>,
7467 Nathanael Nerode <neroden@gcc.gnu.org>
7468
7469 PR ada/6637, PR ada/5911
7470 Merge with libada-branch:
7471 * configure.in, Makefile.tpl, Makefile.def: Add target-libada,
7472 with appropriate dependencies. Add --enable-libada configure switch.
7473 * configure, Makefile.in: Regenerate.
7474
7475 2004-02-05 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
7476
7477 * configure.in: Don't pass --with-stabs on IRIX 5 either.
7478 * configure: Regenerate.
7479
7480 2004-02-02 Jeff Johnston <jjohnstn@redhat.com>
7481
7482 * COPYING.NEWLIB: Update Red Hat license to 2004.
7483
7484 2004-01-23 DJ Delorie <dj@redhat.com>
7485
7486 * Makefile.def (target_modules) [libiberty]: Don't stage.
7487 * Makefile.in: Rebuilt.
7488
7489 2004-01-23 Jeff Johnston <jjohnstn@redhat.com>
7490
7491 * COPYING.NEWLIB: Update to include copyrights for new
7492 iconv code.
7493
7494 2004-01-15 Andrew Cagney <cagney@redhat.com>
7495
7496 * src-release: Update copyright year.
7497 (do-proto-toplev): Configure using i686-pc-linux-gnu.
7498 (NEWLIB_SUPPORT_DIRS): Delete macro.
7499 (newlib.tar.bz2): Delete rule.
7500
7501 2004-01-14 Loren J. Rittle <ljrittle@acm.org>
7502
7503 * Makefile.def (target_modules) [libtermcap, libiberty, zlib]: Stage.
7504 * Makefile.tpl (configure-target-[+module+]): Support stage.
7505 * Makefile.in: Rebuilt.
7506
7507 2003-01-14 Maciej W. Rozycki <macro@ds2.pg.gda.pl>
7508
7509 * gettext.m4: Quote names of macros to be defined by AC_DEFUN
7510 throughout.
7511
7512 2004-01-04 Nathanael Nerode <neroden@gcc.gnu.org>
7513
7514 * configure.in: Use ./config.cache, not config.cache.
7515 * configure: Regenerate.
7516 * Makefile.tpl: Special-casing not needed for GCC any more.
7517 * Makefile.in: Regenerate.
7518
7519 * configure.in: Don't share a cache file for host dirs.
7520 * configure: Regenerate.
7521
7522 * config-ml.in: Don't mess with the cache file.
7523
7524 2004-01-03 Nathanael Nerode <neroden@gcc.gnu.org>
7525
7526 * Makefile.tpl: Make GCC use a separate config.cache.
7527 * Makefile.in: Regenerate.
7528
7529 PR bootstrap/11932, PR bootstrap/11933
7530 (I don't know if it will fix either of them, but it relates
7531 to them.)
7532 * configure.in: Don't use shared config.cache for target
7533 directories.
7534 * configure: Regenerate.
7535
7536 2003-12-31 Roger Sayle <roger@eyesopen.com>
7537
7538 * configure.in (ia64*-*-hpux*): Disable building java libraries.
7539 * configure: Regenerated.
7540
7541 2003-12-21 Bernardo Innocenti <bernie@develer.com>
7542
7543 * configure.in (*-*-uclinux): Exclude newlib, libgloss and rda.
7544 * configure: Regenerated.
7545
7546 2003-12-19 Nathanael Nerode <neroden@gcc.gnu.org>
7547
7548 Port change over from GCC:
7549 2003-11-20 Kelley Cook <kcook@gcc.gnu.org>
7550 * Makefile.tpl (BASE_FLAGS_TO_PASS): Pass along CONFIG_SHELL.
7551 (configure-build-[+module+], configure-[+module+]): Likewise.
7552 (configure-target-[+module+], configure-gcc, config.status): Likewise.
7553 * Makefile.in: Regenerate.
7554
7555 2003-12-08 Thomas Fitzsimmons <fitzsim@redhat.com>
7556
7557 * configure.in (raw_libstdcxx_flags): Remove the leading space.
7558 * configure: Regenerate.
7559
7560 2003-11-27 Jeff Johnston <jjohnstn@redhat.com>
7561
7562 * COPYING.NEWLIB: Add license info for long long routines added to
7563 stdlib.
7564
7565 2003-11-14 Arnaud Charlet <charlet@act-europe.fr>
7566
7567 * Makefile.tpl (EXTRA_GCC_FLAGS): Pass BOOT_ADAFLAGS.
7568 * Makefile.in: Regenerate.
7569
7570 2003-10-20 Phil Edwards <phil@codesourcery.com>
7571
7572 * configure.in (*-*-vxworks): Add target-libiberty to noconfdirs.
7573 * configure: Regenerate.
7574
7575 2003-10-13 Nathanael Nerode <neroden@gcc.gnu.org>
7576
7577 * Makefile.tpl: Make GCC_FLAGS_TO_PASS a superset of
7578 HOST_FLAGS_TO_PASS.
7579 * Makefile.in: Regenerate.
7580
7581 2003-10-05 Mohan Embar <gnustuff@thisiscool.com>
7582
7583 * configure.in: Allow explicit specification of CFLAGS_FOR_BUILD.
7584 * configure: Rebuilt
7585 * Makefile.tpl: Use CFLAGS_FOR_BUILD computed by configure
7586 * Makefile.in: Rebuilt
7587
7588 2003-10-03 H.J. Lu <hongjiu.lu@intel.com>
7589
7590 * ltconfig (sys_lib_search_path_spec): Fix a typo for HPUX.
7591
7592 2003-10-01 Phil Edwards <pme@gcc.gnu.org>
7593
7594 * config-ml.in: Use ac_configure_args directly instead of
7595 ml_arguments. Only set ml_norecursion if --no[-]recursion is
7596 actually seen.
7597
7598 2003-10-01 Eric Botcazou <ebotcazou@libertysurf.fr>
7599
7600 * config-ml.in: Propagate INSTALL variables.
7601
7602 2003-09-21 Daniel Jacobowitz <drow@mvista.com>
7603
7604 * configure.in: Pass a computed --program-transform-name
7605 to subconfigures.
7606 * configure: Regenerated.
7607
7608 2003-09-20 Nathanael Nerode <neroden@gcc.gnu.org>
7609
7610 * Makefile.tpl: Don't pass down obsolete ENQUIRE variable.
7611 * Makefile.in: Regenerate.
7612
7613 * Makefile.tpl: Don't pass (unused) DLLTOOL or WINDRES to gcc.
7614 * Makefile.in: Regenerate.
7615
7616 2003-09-17 Daniel Jacobowitz <drow@mvista.com>
7617
7618 * configure.in (TOPLEVEL_CONFIGURE_ARGUMENTS, baseargs): Fix
7619 quoting.
7620 * configure: Regenerated.
7621
7622 2003-09-12 Michael Chastain <mec@shout.net>
7623
7624 Fix PR gdb/857.
7625 * src-release (do-proto-topleve): Remove junk files
7626 intl/config.cache, intl/config.status,
7627 intl/config.h, intl/stamp-h.
7628
7629 2003-09-14 Andrew Cagney <cagney@redhat.com>
7630
7631 * src-release (dejagnu.tar): New target.
7632 (dejagnu.tar.bz2): Recursively call "gdb-taz" rule.
7633 (do-djunpack): Use $(PACKAGE) for the package name.
7634
7635 2003-09-04 DJ Delorie <dj@redhat.com>
7636
7637 * configure: Regenerate.
7638
7639 2003-09-04 Robert Millan <robertmh@gnu.org>
7640
7641 * configure.in: Match GNU/KFreeBSD with new kfreebsd*-gnu triplet.
7642
7643 2003-09-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
7644
7645 * configure.in: Ensure arguments to sed are properly spaced.
7646 * configure: Regenerate.
7647
7648 2003-08-28 Daniel Jacobowitz <drow@mvista.com>
7649
7650 Merge from gcc:
7651 2003-07-20 Phil Edwards <pme@gcc.gnu.org>
7652 * install-sh: Update to newer upstream versions (associated with
7653 aclocal 1.7).
7654 * missing: Likewise, plus $1Help2man -> $1 typo fix.
7655
7656 2003-08-27 Daniel Jacobowitz <drow@mvista.com>
7657
7658 * configure.in: Set RAW_CXX_FOR_TARGET if unset.
7659 * configure: Regenerated.
7660
7661 2003-08-23 Phil Edwards <pme@gcc.gnu.org>
7662
7663 * configure.in: Use newline instead of semicolon when assuming
7664 shell arguments in a for loop.
7665 * configure: Regenerated.
7666
7667 2003-08-20 Geoffrey Keating <geoffk@apple.com>
7668
7669 PR 8180
7670 * configure.in: When testing with_libs and with_headers, treat
7671 'no' as unset. Based on a patch by Dan Kegel <dank@kegel.com>.
7672 * configure: Regenerate.
7673
7674 * configure.in (TOPLEVEL_CONFIGURE_ARGUMENTS): Quote properly for
7675 make, shell, etc.
7676 (baseargs): Likewise.
7677 * configure: Regenerate.
7678
7679 2003-08-19 Geoffrey Keating <geoffk@apple.com>
7680
7681 * configure.in: Disable libgcj for darwin not on powerpc.
7682 * configure: Rebuild.
7683
7684 2003-08-15 Michael Chastain <mec@shout.net>
7685
7686 * src-release (do-proto-toplev): Remove junk files
7687 dejagnu/example/calc/config.status,
7688 dejagnu/example/calc/config.log.
7689
7690 2003-08-14 Alexandre Duret-Lutz <adl@gnu.org>
7691
7692 * config-ml.in, symlink-tree: Add license.
7693
7694 2003-08-01 Nathanael Nerode <neroden@gcc.gnu.org>
7695
7696 Merge from gcc:
7697
7698 2003-08-01 Matt Kraai <kraai@alumni.cmu.edu>
7699 * Makefile.tpl (check, check-c++): Express dependencies using
7700 dependencies rather than commands.
7701 * Makefile.in: Regenerate.
7702
7703 2003-07-31 Geoffrey Keating <geoffk@apple.com>
7704 * Makefile.tpl (libsubdir): Use gcc instead of gcc-lib.
7705 * Makefile.in: Update.
7706
7707 2003-08-01 Andrew Cagney <cagney@redhat.com>
7708
7709 * configure.in (noconfigdirs): Do not add GDB when m32r-*-*.
7710 * configure: Ditto.
7711
7712 2003-07-30 Andreas Tobler <a.tobler@schweiz.ch>
7713
7714 * configure.in: Enable libgcj for darwin.
7715 * configure: Rebuild.
7716
7717 2003-07-29 Nathanael Nerode <neroden@gcc.gnu.org>
7718
7719 * mkinstalldirs: Import autoconf 2.57 / automake 1.7 version.
7720
7721 2003-07-27 Nathanael Nerode <neroden@gcc.gnu.org>
7722
7723 * Makefile.tpl: Use 'mkinstalldirs' rather than 'mkdir' when
7724 creating target and build subdirs to build all parent dirs as needed.
7725 * Makefile.in: Rebuild.
7726 * configure.in: Don't build dirs explicitly here.
7727 * configure: Rebuild.
7728
7729 2003-07-22 Alexandre Oliva <aoliva@redhat.com>
7730
7731 * Makefile.tpl (all-make): Depend on intl.
7732 * Makefile.in: Rebuilt.
7733
7734 2003-07-16 Nathanael Nerode <neroden@gcc.gnu.org>
7735
7736 * config.if: Remove unused libc_interface determination.
7737
7738 2003-07-14 Nathanael Nerode <neroden@gcc.gnu.org>
7739
7740 * Makefile.in: Regenerate, correctly this time.
7741
7742 2003-07-13 Nathanael Nerode <neroden@gcc.gnu.org>
7743
7744 * Makefile.tpl: Set INSTALL and friends using autoconf. Remove
7745 unused INSTALL_PROGRAM_ARGS.
7746 * configure.in: Use AC_PROG_INSTALL.
7747 * Makefile.in: Regenerate.
7748 * configure: Regenerate.
7749
7750 2003-07-10 Alexandre Oliva <aoliva@redhat.com>
7751
7752 * configure: Rebuilt.
7753 2001-09-26 Alexandre Oliva <aoliva@redhat.com>
7754 * configure.in (noconfigdirs) [am33_2.0-*-linux*]: Don't build
7755 newlib nor libgloss.
7756 Wed May 9 10:07:19 2001 Alexandre Oliva <aoliva@redhat.com>
7757 * configure.in (am33_2.0-*-linux*): Added.
7758
7759 2003-07-09 Bob Wilson <bob.wilson@acm.org>
7760
7761 * configure.in: Add ${libgcj} to noconfigdirs for xtensa-*-* targets.
7762 * configure: Regenerate.
7763
7764 2003-07-06 H.J. Lu <hongjiu.lu@intel.com>
7765
7766 * config-ml.in: Replace PWD with PWD_COMMAND.
7767 * Makefile.tpl: Likewise.
7768 * Makefile.in: Regenerated.
7769
7770 2003-06-27 Nathanael Nerode <neroden@gcc.gnu.org>
7771
7772 * configure.in: Clean up config-lang.in handling. Delete
7773 useless assignment to "subdirs".
7774 * configure: Regenerate.
7775
7776 2003-06-26 Nathanael Nerode <neroden@gcc.gnu.org>
7777
7778 * configure.in: Rename 'target_libs' to 'target_libraries'.
7779 Remove useless reference to 'target_libs'.
7780 * configure: Regenerate.
7781
7782 2003-06-23 Keith Seitz <kseitz@sources.redhat.com>
7783
7784 * Makefile.tpl: Add maybe-configure-itcl to configure-gdb.
7785 * Makefile.in: Regenerate.
7786
7787 2003-06-23 Nathanael Nerode <neroden@gcc.gnu.org>
7788
7789 * Makefile.def: Introduce flags_to_pass.
7790 * Makefile.tpl: Generate BASE_FLAGS_TO_PASS using it.
7791 * Makefile.in: Regenerate.
7792
7793 2003-06-23 Hans-Peter Nilsson <hp@bitrange.com>
7794
7795 * configure.in (noconfigdirs) <cris-*-*>: Disable target-newlib
7796 and target-libgloss.
7797 <d30v-*-*, fr30-*-*, i960-*-*, m32r-*-*>: Disable gdb.
7798 <h8300*-*-*>: Disable libf2c and ${libgcj}.
7799 * configure: Regenerate.
7800
7801 2003-06-17 Benjamin Kosnik <bkoz@redhat.com>
7802
7803 * configure.in: Update testsuite_flags to new location.
7804 * configure. Regenerate.
7805
7806 2003-06-18 Nathanael Nerode <neroden@gcc.gnu.org>
7807
7808 * Makefile.tpl: Remove BUILD_CC stuff.
7809 * Makefile.in: Regenerate.
7810
7811 2003-06-14 H.J. Lu <hongjiu.lu@intel.com>
7812
7813 * config.guess: Update to 2003-06-12 version.
7814 * config.sub: Update to 2003-06-13 version.
7815
7816 2003-06-12 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
7817
7818 * MAINTAINERS: Add myself as MIPS co-maintainer.
7819
7820 2003-06-12 H.J. Lu <hongjiu.lu@intel.com>
7821
7822 * config.guess: Update to 2003-06-06 version.
7823 * config.sub: Update to 2003-06-06 version.
7824
7825 2003-06-11 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
7826
7827 * configure.in: Don't pass --with-stabs for mips*-sgi-irix6*o32.
7828 * configure. Regenerate.
7829
7830 2003-06-10 Nathanael Nerode <neroden@gcc.gnu.org>
7831
7832 * configure.in: Disable serial configure by default.
7833 * configure: Regenerate.
7834 * Makefile.tpl: Abolish .NOTPARALLEL.
7835 * Makefile.in: Regenerate.
7836
7837 * Makefile.tpl: Replace {build,host,target}_canonical by
7838 {build,host,target}.
7839 * Makefile.in: Regenerate.
7840
7841 * Makefile.tpl: Fix stupid pasto.
7842 * Makefile.in: Regenerate.
7843
7844 2003-06-09 Nathanael Nerode <neroden@gcc.gnu.org>
7845
7846 * Makefile.tpl: Remove bogus conditional.
7847 * Makefile.in: Regenerate.
7848
7849 2003-06-03 Nathanael Nerode <neroden@gcc.gnu.org>
7850
7851 * Makefile.tpl: Make 'recursive targets' using autogen rather
7852 than shell loop. Remove duplicate 'clean' targets and false
7853 comments.
7854 * Makefile.def: Add systematic dependencies to 'recursive' targets.
7855 Add systematic method of specifying missing targets in subdirs.
7856 Add copyright boilerplate.
7857 * Makefile.in: Regenerate.
7858 * configure.in: Add 'recursive targets' to maybe list.
7859 * configure: Regenerate.
7860
7861 * Makefile.tpl: Rename [+target+] to [+make_target+].
7862 * Makefile.def: Rename 'target' to 'make_target'.
7863
7864 2003-05-30 Nick Clifton <nickc@redhat.com>
7865
7866 * README-maintainer-mode: Update URL for locating blessed config
7867 tools.
7868
7869 2003-05-29 Robert Millan <rmh@debian.org>
7870
7871 * ltconfig: Import this patch and modify for use with current
7872 version of ltconfig:
7873
7874 2003-05-21 Bruno Haible <bruno@clisp.org>
7875
7876 * libtool.m4 (AC_LIBTOOL_SYS_DYNAMIC_LINKER): Add support for
7877 GNU/FreeBSD.
7878
7879 2003-05-28 DJ Delorie <dj@redhat.com>
7880
7881 * Makefile.tpl: Make maybe-check-gcc .PHONY.
7882 * Makefile.in: Regenerate.
7883
7884 2003-05-28 Jeff Johnston <jjohnstn@redhat.com>
7885
7886 * COPYING.NEWLIB: Add license info for newlib/libc/sys/linux/stdlib.
7887
7888 2003-05-21 DJ Delorie <dj@redhat.com>
7889
7890 * Makefile.tpl (configure-target-libiberty): Depend only on gcc, not
7891 newlib or libgloss.
7892 * Makefile.in: Regenerate.
7893
7894 2003-05-21 DJ Delorie <dj@redhat.com>
7895
7896 * Makefile.tpl: Add missing empty maybe-check-gcc target.
7897 * Makefile.in: Regenerate.
7898
7899 2003-05-20 Maciej W. Rozycki <macro@ds2.pg.gda.pl>
7900
7901 * configure.in: Use curly braces in the definition of tooldir.
7902 * configure: Regenerate.
7903
7904 2003-05-19 Nathanael Nerode <neroden@gcc.gnu.org>
7905
7906 * configure.in: Switch more things to use maybe dependencies.
7907 * Makefile.tpl: Switch more things to use maybe dependencies.
7908 Factor out common code from autogen IF statements.
7909 * configure: Regenerate.
7910 * Makefile.in: Regenerate.
7911
7912 2003-05-14 Kelley Cook <kelleycook@wideopenwest.com>
7913
7914 * configure.in: Accept i[3456789]86 for machine type.
7915 * configure: Regenerate.
7916
7917 2003-05-18 Nathanael Nerode <neroden@gcc.gnu.org>
7918
7919 * configure.in: Switch more things to use maybe dependencies.
7920 Rearrange a little. Use GCC_TOPLEV_SUBDIRS.
7921 * configure: Regenerate.
7922 * Makefile.tpl: Switch more things to use maybe dependencies.
7923 * Makefile.in: Regenerate.
7924
7925 2003-05-16 Andreas Schwab <schwab@suse.de>
7926
7927 * Makefile.tpl (install-opcodes): Define.
7928 * Makefile.in: Rebuild.
7929
7930 2003-05-13 Andreas Jaeger <aj@suse.de>
7931
7932 * config.guess: Update to 2003-05-09 version.
7933 * config.sub: Update to 2003-05-09 version.
7934
7935 2003-05-13 Michael Eager <eager@mvista.com>
7936
7937 * configure.in: Correct sed script so that options in quotes are not
7938 deleted.
7939 * configure: Rebuild.
7940
7941 2003-05-12 Corinna Vinschen <corinna@vinschen.de>
7942
7943 * configure.in (FLAGS_FOR_TARGET): Remove $$s/newlib/libc/sys/cygwin
7944 and $$s/newlib/libc/sys/cygwin32 include paths.
7945 * configure: Ditto.
7946
7947 2003-05-05 H.J. Lu <hjl@gnu.org>
7948
7949 * config-ml.in: Restored from gcc repository.
7950
7951 2003-05-02 Chris Demetriou <cgd@broadcom.com>
7952
7953 * Makefile.tpl: Require "makeinfo" from texinfo 4.2 or later.
7954 * Makefile.in: Regenerate.
7955
7956 2003-04-27 Daniel Jacobowitz <drow@mvista.com>
7957
7958 * src-release (DEVO_SUPPORT): Add src-release, Makefile.tpl,
7959 and Makefile.def.
7960
7961 2003-04-27 Daniel Jacobowitz <drow@mvista.com>
7962
7963 * Makefile.tpl: Clean $(BUILD_SUBDIR).
7964 * Makefile.in: Regenerated.
7965
7966 2003-04-18 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
7967
7968 * Makefile.tpl (MAKEINFOFLAGS): Default to --split-size=5000000.
7969 * Makefile.in: Regenerate.
7970
7971 2003-04-18 Jakub Jelinek <jakub@redhat.com>
7972
7973 * configure.in (powerpc64*-*-linux*): Remove.
7974 * configure: Rebuilt.
7975
7976 2003-04-17 Phil Edwards <pme@gcc.gnu.org>
7977
7978 * Makefile.tpl (GCC_STRAP_TARGETS): New variable containing all the
7979 previous bootstrap targets, plus bubblestrap, quickstrap, cleanstrap,
7980 and restrap.
7981 * Makefile.in: Regenerate.
7982
7983 2003-04-16 Richard Earnshaw <rearnsha@arm.com>
7984
7985 * configure.in (arm-*-netbsdelf*): Enable building java libraries.
7986 * configure: Regenerated.
7987
7988 2003-04-11 Alexandre Oliva <aoliva@redhat.com>
7989
7990 * libtool.m4 (lt_cv_deplibs_check_method): Use pass_all on mips*.
7991 * */configure: Rebuilt.
7992
7993 2003-03-14 Nathanael Nerode <neroden@gcc.gnu.org>
7994
7995 * Makefile.tpl: Move .NOEXPORT, MAKEOVERRIDES back down.
7996 * Makefile.in: Regenerate.
7997
7998 2003-03-14 Michael Chastain <mec@shout.net>
7999
8000 * Makefile.in: Regenerate with correct Makefile.def.
8001
8002 2003-03-12 Nathanael Nerode <neroden@gcc.gnu.org>
8003
8004 * Makefile.tpl: Move .NOEXPORT, MAKEOVERRIDES up. Delete unused
8005 Make macro.
8006 * Makefile.in: Regenerate.
8007 * configure.in: Clean up gxx_include_dir logic.
8008 * configure: Regenerate.
8009
8010 2003-03-09 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
8011
8012 * configure.in (gxx_include_dir): Fix typo.
8013 * configure: Regenerated.
8014
8015 2003-03-06 Andrew Cagney <cagney@redhat.com>
8016
8017 * texinfo/texinfo.tex: Import version 2003-02-03.16.
8018
8019 2003-03-04 Daniel Jacobowitz <drow@mvista.com>
8020
8021 * configure.in: Include $(build_tooldir)/sys-include in
8022 FLAGS_FOR_TARGET.
8023 * configure: Regenerated.
8024
8025 2003-03-04 Nathanael Nerode <neroden@gcc.gnu.org>
8026
8027 * Makefile.tpl: Reindent.
8028 * Makefile.in: Regenerate.
8029 * configure.in: Reindent. Don't set unused variables.
8030 * configure: Regenerate.
8031
8032 * Makefile.tpl: Always pass down RANLIB.
8033 * Makefile.in: Regenerate.
8034
8035 * Makefile.tpl: Don't set unused enable_shared, enable_threads macros.
8036 * Makefile.in: Regenerate.
8037 * configure.in: Remove unused logic relating to --enable-shared
8038 and --enable-threads. Remove bogus comments. Remove redundant
8039 noconfigdirs.
8040 * configure: Regenerate.
8041
8042 * configure.in: Replace ${libstdcxx_version} by its value.
8043 Remove reference to mh-dgux.
8044 * configure: Regenerate.
8045
8046 2003-02-28 Nathanael Nerode <neroden@gcc.gnu.org>
8047
8048 * Makefile.tpl: Rearrange.
8049 * Makefile.in: Regenerate.
8050
8051 2003-02-25 Nick Clifton <nickc@redhat.com>
8052
8053 * configure: Remove site-file supprot - it is obsolete.
8054
8055 2003-02-24 Uwe Stieber <uwe@wwws.de>
8056
8057 * configure.in: Add support for kaOS as cross build target system.
8058 * configure: Regenerated.
8059
8060 2003-02-20 Sean McNeil <sean@blue.mcneil.com>
8061
8062 * Makefile.tpl: Add definition of CPPFLAGS to pass into
8063 configure-target-* as some target builds may require additional
8064 flags for preprocessor tests.
8065 * Makefile.in: Regenerated.
8066
8067 2003-02-19 Alexandre Oliva <aoliva@redhat.com>
8068
8069 * libtool.m4 (LD): Append -melf* option to LD on IRIX with GNU ld.
8070 * ltconfig: Handle it.
8071 * ltcf-cxx.sh: Use with_gnu_ld passed as a shell variable instead of
8072 auto-detecting it.
8073
8074 2003-02-19 Alexandre Oliva <aoliva@redhat.com>
8075
8076 * ltcf-cxx.sh: Replace $linker_flags with $compiler_flags wherever
8077 it is used as argument to $CC.
8078 * ltcf-gcj.sh: Likewise.
8079
8080 2003-02-19 Alexandre Oliva <aoliva@redhat.com>
8081
8082 * configure.in: Introduce --enable-maintainer-mode.
8083 * configure: Rebuilt.
8084 * Makefile.tpl (Makefile.in, configure): Enable dependencies only
8085 for maintainer mode.
8086 * Makefile.in: Rebuilt.
8087
8088 2003-02-19 Andrew Cagney <ac131313@redhat.com>
8089
8090 * configure: Regenerate using autoconf 2.13.
8091
8092 2003-02-19 Alan Modra <amodra@bigpond.net.au>
8093
8094 * config.guess: Import latest version.
8095 * config.sub: Import latest version.
8096
8097 2003-02-18 Jason Merrill <jason@redhat.com>
8098
8099 * Makefile.tpl (check-c++): Allow parallelism.
8100
8101 2003-02-17 Andrew Cagney <ac131313@redhat.com>
8102
8103 * configure: Regenerate using autoconf 000227.
8104
8105 2003-02-15 Geoffrey Keating <geoffk@apple.com>
8106
8107 * configure.in (*-*-darwin*): Rename from powerpc*-*-darwin*,
8108 don't configure target-libobjc.
8109 * configure: Regenerate.
8110
8111 2003-02-14 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
8112
8113 * Makefile.tpl (RANLIB): Define.
8114 * Makefile.in: Regenerate.
8115
8116 2003-02-06 Keith R Seitz <keiths@redhat.com>
8117
8118 * Makefile.def: Remove "snavigator", "grep", and "db" modules.
8119 * Makefile.tpl: Remove "all-snavigator" and "all-grep".
8120 * Makefile.in: Regenerated.
8121 * configure.in: Remove all traces of snavigator, db, and grep.
8122 * configure: Regenerated.
8123
8124 2003-01-31 Frank Ch. Eigler <fche@redhat.com>
8125
8126 * Makefile.tpl (all-sid): Add libiberty/bfd/opcodes dependencies.
8127 * Makefile.in: Regenerated.
8128
8129 2003-01-30 Alexandre Oliva <aoliva@redhat.com>
8130
8131 * config.if: Copy from GCC.
8132
8133 2003-01-27 Phil Edwards <pme@gcc.gnu.org>
8134
8135 * configure.in: Revert 24Jan change.
8136 * configure: Regenerate.
8137
8138 2003-01-23 Nathanael Nerode <neroden@gcc.gnu.org>
8139
8140 * configure.in: Revert previous change.
8141 * configure: Regenerate.
8142
8143 2003-01-23 Nathanael Nerode <neroden@gcc.gnu.org>
8144
8145 * configure.in: Make rda native-only.
8146 * configure: Regenerate.
8147
8148 2003-01-19 Nathanael Nerode <neroden@gcc.gnu.org>
8149
8150 * configure.in: Add missing \.
8151 * configure: Rebuilt.
8152
8153 2003-01-17 Jakub Jelinek <jakub@redhat.com>
8154
8155 * configure.in (baseargs): Avoid using \| in sed regular
8156 expressions.
8157 * configure: Rebuilt.
8158
8159 2003-01-16 Jakub Jelinek <jakub@redhat.com>
8160
8161 * configure.in (baseargs): Remove all supported forms of
8162 --cache-file, --srcdir, --host, --build and --target options
8163 from argument lists.
8164 * configure: Rebuilt.
8165
8166 2003-01-15 Alexandre Oliva <aoliva@redhat.com>
8167
8168 * configure.in (noconfigdirs): Don't skip gas on IRIX 6.
8169 * configure: Rebuilt.
8170
8171 2003-01-09 Nathanael Nerode <neroden@gcc.gnu.org>
8172
8173 * configure.in: Substitute TOPLEVEL_CONFIGURE_ARGUMENTS.
8174 * Makefile.tpl: Pass TOPLEVEL_CONFIGURE_ARGUMENTS to gcc.
8175 * Makefile.in: Regenerate.
8176 * configure: Regenerate.
8177
8178 2003-01-09 Christian Cornelssen <ccorn@cs.tu-berlin.de>
8179
8180 * Makefile.tpl (BASE_FLAGS_TO_PASS): Also pass DESTDIR.
8181 (install-info, dir.info): Prepend $(DESTDIR) to $(infodir).
8182 * Makefile.in: Regenerate.
8183
8184 2003-01-09 Alexandre Oliva <aoliva@redhat.com>
8185
8186 * configure.in: Remove Makefile in build, host and target modules
8187 unless configure was run with --no-recursion.
8188 * configure: Rebuilt.
8189
8190 2003-01-08 Chris Demetriou <cgd@broadcom.com>
8191
8192 * config.guess: Update to 2003-01-03 version.
8193 * config.sub: Update to 2003-01-03 version.
8194
8195 2003-01-07 Christopher Faylor <cgf@redhat.com>
8196
8197 * configure: Regenerate with proper autoconf 2.13.
8198
8199 2003-01-07 Christopher Faylor <cgf@redhat.com>
8200
8201 * configure.in: Add AC_PREREQ for consistency.
8202 * configure: Regenerate.
8203
8204 2003-01-06 Andrew Cagney <ac131313@redhat.com>
8205
8206 * configure.in (GDB_TK): Add tcl directories conditional on
8207 gdb/gdbtk directory being present.
8208 * configure: Regenerate.
8209
8210 2003-01-04 John David Anglin <dave.anglin@nrc.ca>
8211
8212 * configure.in (LD): Improve test for gcc. Try to set LD to the ld used
8213 by gcc if LD is not defined and we are not doing a Canadian Cross.
8214 * configure: Rebuilt.
8215
8216 2003-01-01 Daniel Jacobowitz <drow@mvista.com>
8217
8218 * src-release (ETC_SUPPORT): Add fdl.texi and texi2pod.pl.
8219
8220 2002-12-31 Tom Tromey <tromey@redhat.com>
8221
8222 * Makefile.in: Rebuilt.
8223 * Makefile.def (target_modules) [libffi]: Allow installation.
8224
8225 2002-12-31 Andreas Schwab <schwab@suse.de>
8226
8227 * configure.in: Fix use of $program_transform_name.
8228 * configure: Regenerated.
8229
8230 2002-12-30 Daniel Jacobowitz <drow@mvista.com>
8231
8232 * configure.in (baseargs): Don't remove first configure argument.
8233 * configure: Regenerated.
8234
8235 2002-12-29 Alexandre Oliva <aoliva@redhat.com>
8236
8237 * Makefile.tpl (local-distclean): Don't remove...
8238 (multilib.ts): ... this. Moved into...
8239 (multilib.out): ... this. Don't use sub-make.
8240 ($(BUILD_SUBDIR)/[+module+]/Makefile, [+module+]/Makefile,
8241 $(TARGET_SUBDIR)/[+module+]/Makefile, gcc/Makefile): Moved into...
8242 (configure-build-[+module+], configure-[+module+],
8243 configure-target-[+module+], configure-gcc): ... these. Test
8244 for Makefile existence. Drop config.status from dependencies.
8245 * Makefile.in: Rebuilt.
8246 * configure.in: Move gcc-version-trigger to the end of
8247 ac_configure_args. Add comments to maybedep.tmp and
8248 serdep.tmp. Introduce --disable-serial-configure. Remove
8249 nonopt from baseargs, matching and removing corresponding
8250 whitespace while at it.
8251 * configure: Rebuilt.
8252
8253 2002-12-28 Alexandre Oliva <aoliva@redhat.com>
8254
8255 * configure.in (host_configargs): Replace reference to
8256 no-longer-defined buildopts with --build=${build_alias}.
8257 * configure: Rebuilt.
8258
8259 2002-12-28 Alexandre Oliva <aoliva@redhat.com>
8260
8261 * Makefile.tpl ($(NOTPARALLEL)): Move to the end. Bring uses of
8262 program_transform_name to standard idiom.
8263 (AUTOGEN, AUTOCONF): Define.
8264 (Makefile.in): Use $(AUTOGEN).
8265 (Makefile): Depend on config.status, and use autoconf-style rule to
8266 build it. Move original commands to...
8267 (config.status): ... this new target.
8268 (configure): Add $(srcdir). Depend on config/acx.m4. Use
8269 $(AUTOCONF).
8270 * Makefile.in: Rebuilt.
8271
8272 2002-12-28 Nathanael Nerode <neroden@gcc.gnu.org>
8273
8274 * Makefile.tpl: Fix dramatic bustage due to change in
8275 program_transform_name.
8276 * Makefile.in: Regenerate.
8277
8278 * configure.in: Remove unnecessary PATH setting.
8279 * configure: Regnerate.
8280
8281 * configure.in: Don't default to unprefixed tools unless
8282 the native tools will work.
8283 * configure: Regenerate.
8284
8285 * configure.in: Convert to autoconf script. Blow away lots
8286 of now-redundant Makefile fragments.
8287 * configure: Generate using Autoconf.
8288 * Makefile.tpl: Rewrite to reflect autoconfiscation.
8289 * Makefile.in: Regenerate.
8290
8291 2002-12-27 Nathanael Nerode <neroden@gcc.gnu.org>
8292
8293 * configure: Remove unneeded 'export's. Make CC_FOR_TARGET,
8294 CXX_FOR_TARGET, GCJ_FOR_TARGET substituted in configure.in only.
8295
8296 * ChangeLog: Move a couple of entries from here to winsup/cygwin,
8297 where they belong.
8298
8299 2002-12-24 Andreas Schwab <schwab@suse.de>
8300
8301 * Makefile.tpl (multilib.out): Fix missing space.
8302 * Makefile.in: Regenerate.
8303
8304 2002-12-23 Nathanael Nerode <neroden@gcc.gnu.org>
8305
8306 * Makefile.tpl: Use shared multilib.out. Use move-if-change for it.
8307 Convert (cd foo; make) to (cd foo && make). Clean up multilib.out.
8308 * Makefile.in: Regenerate.
8309 * configure.in: Remove unnecessary leftovers.
8310
8311 2002-12-21 Geoffrey Keating <geoffk@apple.com>
8312
8313 * configure.in (extra_ranlibflags_for_target): New variable.
8314 (*-*-darwin): Add -c to ranlib commands.
8315 * configure (tooldir): Handle extra_ranlibflags_for_target.
8316
8317 2002-12-20 Jeff Johnston <jjohnstn@redhat.com>
8318
8319 * COPYING.NEWLIB: Updated.
8320 * COPYING.LIBGLOSS: Ditto.
8321
8322 2002-12-19 Nathanael Nerode <neroden@gcc.gnu.org>
8323
8324 * Makefile.tpl: Revert HJL's change.
8325 * Makefile.in: Regenerated.
8326 * configure.in: Put build_prefix before $(BUILD_SUBDIR) here, and
8327 always.
8328
8329 2002-12-19 Andreas Schwab <schwab@suse.de>
8330
8331 * Makefile.tpl, configure.in: Substitute libstdcxx_incdir.
8332 * Makefile.in: Regenerate.
8333
8334 2002-12-18 H.J. Lu <hjl@gnu.org>
8335
8336 * Makefile.tpl: Add @build_prefix@ before $(BUILD_SUBDIR).
8337 * Makefile.in: Regenerated.
8338
8339 * configure.in (build_prefix): New. Substitute.
8340
8341 2002-12-18 Nathanael Nerode <neroden@gcc.gnu.org>
8342
8343 * Makefile.tpl: Don't let real targets depend on phony targets.
8344 * Makefile.in: Regenerate.
8345
8346 * Makefile.tpl (do-info): Depend on maybe-all-texinfo, not all-texinfo.
8347 * Makefile.in: Regenerate.
8348
8349 2002-12-16 Jason Merrill <jason@redhat.com>
8350
8351 * Makefile.tpl (all-gcc): Use 'make quickstrap' if there was a
8352 previous 'make bootstrap'.
8353 * Makefile.in: Regenerate.
8354
8355 2002-12-17 Hans-Peter Nilsson <hp@bitrange.com>
8356
8357 * configure.in (noconfigdirs) [mmix-*-*]: Disable libgloss and gdb.
8358
8359 2002-12-13 Jason Merrill <jason@redhat.com>
8360
8361 * Makefile.tpl (check-gcc-c++): Renamed from check-c++. Don't run
8362 library tests.
8363 (check-c++): Just depend on it and check-target-libstdc++-v3.
8364 * Makefile.in: Regenerate.
8365
8366 2002-12-13 Nathanael Nerode <neroden@gcc.gnu.org>
8367
8368 * configure.in, Makefile.tpl, Makefile.def: Remove tclX.
8369 * Makefile.in: Regenerate.
8370
8371 2002-12-12 Jeff Johnston <jjohnstn@redhat.com>
8372
8373 * COPYING.NEWLIB: Update list of alternate Regent of California
8374 licenses and discuss official revoking of advertising clause.
8375 * COPYING.LIBGLOSS: Ditto.
8376
8377 2002-12-12 Alexandre Oliva <aoliva@redhat.com>
8378
8379 * Makefile.tpl (configure-target-rda): Depend on $(ALL_GCC_C).
8380 * Makefile.in: Rebuilt.
8381
8382 2002-12-10 Nathanael Nerode <neroden@gcc.gnu.org>
8383
8384 * configure: Fix bug put in by gremlins.
8385
8386 * Makefile.tpl: Substitute more autoconfily.
8387 * configure: Substitute more autoconfily.
8388 * Makefile.in: Regenerate.
8389
8390 2002-12-08 Andrew Cagney <ac131313@redhat.com>
8391
8392 * Makefile.tpl (all-sim): Depend on maybe-configure-gdb.
8393 * Makefile.in (all-sim): Ditto.
8394
8395 2002-12-06 DJ Delorie <dj@redhat.com>
8396
8397 * Makefile.tpl: Change configure dependencies to not have real
8398 targets depend on phony targets.
8399
8400 2002-12-05 Nathanael Nerode <neroden@gcc.gnu.org>
8401
8402 * configure.in: Revert unintentional change.
8403
8404 * src-release: Configure host subdirs.
8405
8406 * Makefile.tpl: Change dependency for */multilib.out so that
8407 it works when gcc isn't in the tree.
8408
8409 * configure.in: Substitute more.
8410 * configure: Run subconfigures from the Makefile.
8411 * Makefile.tpl: Run subconfigures from the Makefile; add a few
8412 convenience targets. Make sure gcc isn't rebuilt after bootstrap.
8413
8414 2002-12-03 Nathanael Nerode <neroden@gcc.gnu.org>
8415
8416 * Makefile.tpl: Add targets for configuring host subdirs in Makefile,
8417 and corresponding dependencies.
8418 * Makefile.in: Regenerate.
8419
8420 * configure.in (host_tools): Order binutils, gas and ld for
8421 convenience in running the testsuites.
8422
8423 * Makefile.tpl: Introduce rules to serialize subconfigure runs.
8424 * Makefile.in: Regenerate.
8425 * configure.in: Introduce rules to serialize subconfigure runs.
8426
8427 * configure.in: Introduce BASE_CC_FOR_TARGET.
8428 * Makefile.tpl: Reorganize and comment. Introduce HOST_CONFIGARGS.
8429 Realize configure-build-* targets. Realize configure-target-* targets.
8430 * Makefile.in: Regenerate.
8431
8432 2002-12-02 Nathanael Nerode <neroden@gcc.gnu.org>
8433
8434 * configure: Move gcc_version_trigger stuff from here...
8435 * configure.in: ...to here.
8436
8437 * configure.in: Separate subconfigure options added by this file from
8438 options given by the user. Add machinery to put args for host
8439 subconfigures into the Makefile.
8440
8441 * Makefile.tpl: Remove 'vault' targets.
8442 * Makefile.tpl: Reorder and comment dependencies.
8443 * Makefile.in: Regenerate.
8444
8445 2002-11-28 Geoffrey Keating <geoffk@apple.com>
8446
8447 * configure.in: Move host-specific darwin noconfigdirs into
8448 the host-specific section.
8449
8450 2002-12-02 Nathanael Nerode <neroden@gcc.gnu.org>
8451
8452 * Makefile.tpl: Restore bkorb's style patch, accidentally lost
8453 during replay.
8454 * Makefile.in: Regenerate.
8455
8456 (finishing slow-motion replay)
8457 * configure: Remove skip-this-dir support.
8458 * Makefile.tpl: Remove skip-this-dir support.
8459
8460 * Makefile.tpl: Remove leftover support for non-autoconfiscated
8461 subdirectories.
8462 * Makefile.in: Regenerate.
8463
8464 * Makefile.tpl: Strip out useless setting of 'dir'.
8465 * Makefile.in: Regenerate.
8466
8467 2002-12-02 Nathanael Nerode <neroden@gcc.gnu.org>
8468
8469 (finishing slow-motion replay)
8470 * configure.in: Fix deeply stupid bug.
8471
8472 * configure.in: Introduce RAW_CXX_FOR_TARGET and simplify embedded
8473 shell code in CXX_FOR_TARGET
8474 * Makefile.def: Introduce raw_cxx.
8475 * Makefile.tpl: Use raw_cxx to select between CXX_FOR_TARGET and
8476 RAW_CXX_FOR_TARGET.
8477 * Makefile.in: Regenerate.
8478
8479 2002-12-02 Nathanael Nerode <neroden@gcc.gnu.org>
8480
8481 (finishing slow-motion replay)
8482 * Makefile.tpl: Remove unnecessary ifs.
8483 * Makefile.in: Regenerate.
8484
8485 * Makefile.tpl: Implement soft dependency machinery. Maybe-ize
8486 dependencies. Maybe-ize build-libiberty. Create dummy install
8487 targets for 'no_install' modules.
8488 * configure: Move GDB_TK substitution to configure.in. Move
8489 build_modules stuff to configure.in.
8490 * configure.in: Implement soft dependency machinery. Maybe-ize
8491 GDB_TK, rearrange slightly. Move build_modules stuff from configure.
8492 * Makefile.in: Regenerate.
8493
8494 2002-12-01 Nathanael Nerode <neroden@gcc.gnu.org>
8495
8496 (continuing slow-motion replay)
8497 * Makefile.tpl: Make all-target, install-target behave similarly
8498 to all, install (only hitting configured targets). Eliminate
8499 unused macro defintions.
8500
8501 * Makefile.tpl: Add all-gcc: all-build-libiberty dependency when
8502 build != host.
8503
8504 * Makefile.tpl: Add all-gcc: all-libiberty dependency.
8505
8506 * ltcf-c.sh, ltcf-gcj.sh, Makefile.tpl: Correct BUILD/HOST confusion.
8507
8508 * configure.in: Produce lists of subdir targets we're actually
8509 configuring. Remove references to "dosrel".
8510 * Makefile.tpl: Let configure set which subdir targets are hit.
8511 Remove install-cross; clean up install; remove ALL. Remove
8512 references to "dosrel". Remove "EXTRA_TARGET_HOST" hackery.
8513 Autogenerate host module targets. Remove empty dependency lines
8514 and redundant dependency; rearrange slightly.
8515 * Makefile.def: Add host-side libtermcap, utils.
8516
8517 * Makefile.in: Regenerate.
8518
8519 2002-12-01 Nathanael Nerode <neroden@gcc.gnu.org>
8520
8521 (Continuing slow-motion replay)
8522 * Makefile.def: Add list of recursive targets to autogenerate.
8523 Add build_modules.
8524 * Makefile.tpl: Autogenerate do-* targets. Autogenerate *-target-*
8525 targets. Autogenerate *-build-* targets.
8526 * Makefile.in: Regenerate.
8527
8528 2002-11-30 Nathanael Nerode <neroden@gcc.gnu.org>
8529
8530 (Continuing slow-motion replay)
8531 * configure: More autoconf-style substitutions.
8532 * Makefile.tpl: More autoconf-style substitutions.
8533 * Makefile.in: Regenerate.
8534
8535 2002-11-30 Nathanael Nerode <neroden@gcc.gnu.org>
8536
8537 (Continuing slow-motion replay)
8538 * configure: Substitute more variables in a more autoconf-friendly
8539 way. Simplify slightly.
8540 * Makefile.tpl: Make more variables substitutable in an
8541 autoconf-friendly way.
8542 * Makefile.in: Regenerate.
8543
8544 2002-11-29 Nathanael Nerode <neroden@gcc.gnu.org>
8545
8546 (Continuing slow-motion replay)
8547 * configure.in (v810*): Remove special setting of tools.
8548
8549 * configure: Add support for extra required flags for ar or nm.
8550 * configure.in (aix4.3+): Use above support for target-specific
8551 issues, rather than using config/mt-aix43.
8552
8553 2002-11-29 Nathanael Nerode <neroden@gcc.gnu.org>
8554
8555 (Starting slow-motion replay merge from gcc 3.4 b-i-b branch)
8556 * configure: Remove 'removing', which doesn't work. Replace $subdir
8557 with . everywhere. Replace $subdirs with ''. Replace $makesrcdir
8558 with $srcdir. Reformat indentation. Substitute some variables
8559 formerly hard-coded in the Makefile for build=host.
8560 * Makefile.tpl: Autogenerate more; make more autoconf-friendly.
8561 * Makefile.def: Autogenerate more.
8562 * Makefile.in: Regenerate.
8563
8564 2002-11-13 Bruce Korb <bkorb@gnu.org>
8565
8566 * Makefile.tpl: syntactic cleanup
8567
8568 2002-11-04 Kevin Buettner <kevinb@redhat.com>
8569
8570 * Makefile.def (host_modules): Add rda.
8571 * Makefile.in: Regenerate.
8572 * configure.in (target_tool): Add target-rda to list.
8573
8574 2002-10-25 Phil Edwards <pme@gcc.gnu.org>
8575
8576 * Makefile.tpl (bootstrap): Add bubblestrap, quickstrap, cleanstrap,
8577 and restrap targets to this rule.
8578 * Makefile.in: Regenerate.
8579
8580 2002-10-24 Hans-Peter Nilsson <hp@bitrange.com>
8581
8582 * configure.in (i[3456]86-*-linux*): Add check to disable
8583 ${libgcj} for glibc1.
8584
8585 2002-10-07 Svein E. Seldal <Svein.Seldal@solidas.com>
8586
8587 * configure.in: Add tic4x target.
8588
8589 2002-10-03 Nathanael Nerode <neroden@gcc.gnu.org>
8590
8591 * Makefile.tpl: Make SET_LIB_PATH substitution more autoconfy.
8592 * Makefile.tpl: Make RPATH_ENVVAR substitution more autoconfy.
8593 * configure.in: Make SET_LIB_PATH substitution more autoconfy.
8594 * configure.in: Make RPATH_ENVVAR substitution more autoconfy.
8595 * Makefile.in: Regenerate.
8596
8597 2002-10-02 Nathanael Nerode <neroden@gcc.gnu.org>
8598
8599 * Makefile.tpl: Eliminate reference to all-gui, all-libproc.
8600 * Makefile.in: Regenerate.
8601
8602 * Makefile.def: Remove order dependency comments.
8603 * Makefile.tpl: Add explicit install-install dependencies.
8604 * Makefile.in: Regenerate.
8605
8606 * Makefile.tpl: Remove material now in src-release. (Finally!)
8607 * Makefile.in: Regenerate.
8608
8609 * configure: Restore my original patch by syncing with gcc version.
8610
8611 * Bring following over from gcc:
8612
8613 2002-09-30 Ulrich Weigand <uweigand@de.ibm.com>
8614
8615 * configure.in (s390*-*-linux*): Enable libgcj.
8616
8617 2002-10-02 Nathanael Nerode <neroden@gcc.gnu.org>
8618
8619 * Makefile.in: Regenerate. This really ought to fix things. :sigh:
8620
8621 2002-10-02 Alan Modra <amodra@bigpond.net.au>
8622
8623 * configure: Move stray lines back to where they belong.
8624
8625 2002-10-01 Nathanael Nerode <neroden@gcc.gnu.org>
8626
8627 * Makefile.tpl: Insert configure-target target, for src-release.
8628
8629 * configure: Finish reverting change which Andrew Cagney started
8630 reverting. Should fix bustage.
8631
8632 * src-release (BINUTILS_SUPPORT_DIRS): Add cpu directory.
8633 * src-release: New file. Contains material for making net
8634 releases for gdb, binutils, et al., formerly in Makefile.in.
8635
8636 2002-09-30 Nick Clifton <nickc@redhat.com>
8637
8638 * cpu: New top level directory. Intended to hold input files for
8639 CGEN which have FSF copyright assignment.
8640 * Makefile.in (BINUTILS_SUPPORT_DIRS): Add cpu directory.
8641
8642 2002-09-29 Andrew Cagney <ac131313@redhat.com>
8643
8644 Revert below (note that src does not contain Makefile.tpl):
8645 * Makefile.tpl: Make subsituted variables more autoconfy.
8646 * Makefile.in: Regenerate.
8647
8648 2002-09-29 Nathanael Nerode <neroden@gcc.gnu.org>
8649
8650 * configure: Revert accidentally applied changes.
8651
8652 * Makefile.tpl: Make more autoconf-friendly.
8653 * Makefile.in: Regenerate.
8654 * configure: Make substitution more autoconf-like.
8655
8656 2002-09-28 Richard Earnshaw <rearnsha@arm.com>
8657
8658 * configure.in (arm-*-coff, strongarm-*-coff, xscale-*-coff): Use a
8659 single entry to handle all these.
8660 (arm-*-elf, strongarm-*-elf, xscale-*-elf): Likewise. Also enable
8661 libjava on arm-*-elf.
8662
8663 2002-09-27 Geoffrey Keating <geoffk@apple.com>
8664
8665 * configure.in (powerpc-*-darwin*): Don't configure BFD, TK, or the
8666 things that depend on them.
8667
8668 2002-09-25 Nathanael Nerode <neroden@gcc.gnu.org>
8669
8670 * Makefile.tpl: Make subsituted variables more autoconfy.
8671 * Makefile.in: Regenerate.
8672 * configure: Make seds more autoconfy.
8673
8674 2002-09-25 Nathanael Nerode <neroden@gcc.gnu.org>
8675
8676 * Makefile.tpl: Rewrite substituted lines to look autoconfy.
8677 * Makefile.in: Regenerate.
8678 * configure.in: Rewrite sed statements to look autoconfy.
8679
8680 * Makefile.tpl: Autogenerate *-target-* lists, dependencies of
8681 all-target-foo on configure-target-foo.
8682 * Makefile.def: Ditto.
8683 * Makefile.in: Rebuild.
8684
8685 2002-09-22 Nathanael Nerode <neroden@gcc.gnu.org>
8686
8687 * Makefile.def: New file.
8688 * Makefile.tpl: New file.
8689 * Makefile.in: Generate from Makefile.tpl with 'autogen Makefile.def'.
8690
8691 * configure.in: Minor rearrangement. Simplify tests.
8692
8693 2002-09-23 Jason Thorpe <thorpej@wasabisystems.com>
8694
8695 * configure.in (with_headers): Skip copy if value is "yes".
8696 (with_libs): Likewise.
8697
8698 2002-09-20 Nathanael Nerode <neroden@gcc.gnu.org>
8699
8700 * configure.in (*-*-netbsd*): Use noconfigdirs, not skipdirs.
8701 * configure.in (sh*-*-pe*): Ditto.
8702 * configure.in (mips*-*-pe*): Ditto.
8703 * configure.in (*arm-wince-pe): Ditto.
8704
8705 * configure.in: Rearrange.
8706
8707 2002-09-12 Nick Clifton <nickc@redhat.com>
8708
8709 * Import these changes from the config master repository:
8710
8711 2002-09-05 Svein E. Seldal <Svein.Seldal@solidas.com>
8712
8713 * config.sub: Add tic4x target.
8714
8715 2002-09-03 Ben Elliston <bje@redhat.com>
8716
8717 * config.guess: Detect NSR-D machines for nsr-tandem-nsk.
8718 Reported by <Duncan_Stodart@insession.com>.
8719
8720 2002-09-10 Jeff Johnston <jjohnstn@redhat.com>
8721
8722 * COPYING.NEWLIB: More updates.
8723
8724 2002-09-09 Jeff Johnston <jjohnstn@redhat.com>
8725
8726 * COPYING.NEWLIB: Update.
8727
8728 2002-08-23 Andrew Cagney <ac131313@redhat.com>
8729
8730 * texinfo/texinfo.tex: Import version 2002-06-04.06.
8731
8732 * config.guess: Import version 2002-08-23.
8733 * config.sub: Import version 2002-08-22.
8734
8735 2002-08-20 Alexandre Oliva <aoliva@redhat.com>
8736
8737 * Makefile.in (GCC_FOR_TARGET): Prepend STAGE_CC_WRAPPER.
8738 * configure.in (CC_FOR_TARGET, GCJ_FOR_TARGET, CXX_FOR_TARGET,
8739 CXX_FOR_TARGET_FOR_RECURSIVE_MAKE): Likewise.
8740
8741 2002-08-06 Federico G. Schwindt <fgsch@olimpo.com.br>
8742
8743 * configure.in (hppa*-*-openbsd*): Treat like hppa*-*-*elf*.
8744
8745 2002-08-04 H.J. Lu (hjl@gnu.org)
8746
8747 * configure.in (mips*-*-linux*): Don't skip target-libffi.
8748
8749 2002-07-31 Alan Modra <amodra@bigpond.net.au>
8750
8751 * configure.in: Move generic linux case to end. Copy generic
8752 linux noconfigdirs to mips*-*-linux* entry and new
8753 powerpc64*-*-linux* entry. Add target-libffi for the latter.
8754
8755 2002-07-19 Chris Demetriou <cgd@broadcom.com>
8756
8757 * MAINTAINERS: Clarify on config.guess and config.sub, and add
8758 one instance of them which was missed to the list to update.
8759
8760 2002-07-16 Chris Demetriou <cgd@broadcom.com>
8761
8762 * config.guess: Update to 2002-07-09 version.
8763 * config.sub: Update to 2002-07-03 version.
8764
8765 2002-07-11 Nathanael Nerode <neroden@gcc.gnu.org>
8766
8767 * configure.in: Remove two redundant tests.
8768
8769 2002-07-11 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
8770
8771 * configure.in (mips*-*-irix6*o32): Enable stabs.
8772
8773 2002-07-08 Nathanael Nerode <neroden@gcc.gnu.org>
8774
8775 * configure.in: Don't build grez.
8776 * Makefile.in: Ditto.
8777
8778 * Makefile.in: Remove references to bsp, cygmon, libstub.
8779 * configure.in: Ditto.
8780
8781 * configure.in: Remove leftover reference to gdbtest.
8782
8783 2002-07-08 Phil Edwards <pme@gcc.gnu.org>
8784
8785 * configure.in (gxx_include_dir): Change to match versioned
8786 C++ headers if --enable-version-specific-runtime-libs is used.
8787
8788 2002-07-04 Steve Ellcey <sje@cup.hp.com>
8789
8790 * ltcf-cxx.sh (hpux*): Modify to support ia64-*-hpux*.
8791
8792 2002-07-03 Nathanael Nerode <neroden@gcc.gnu.org>
8793
8794 * configure.in: Make --without-x work.
8795
8796 2002-07-03 Nick Clifton <nickc@cambridge.redhat.com>
8797
8798 * contrib: New directory. Created to contain a copy of the
8799 texi2pod.pl script so that it is in the same place as the version in
8800 the FSF GCC sources.
8801
8802 2002-07-02 Nathanael Nerode <neroden@gcc.gnu.org>
8803
8804 * configure.in: Rearrange target Makefile fragment collection.
8805
8806 * Makefile.in: Don't try to build gdbtest, tgas, ispell, inet, or
8807 cvs[src].
8808 * configure.in: Ditto.
8809
8810 2002-07-01 Nathanael Nerode <neroden@gcc.gnu.org>
8811
8812 * Makefile.in: Eliminate 'apache' targets.
8813 * configure.in: Eliminate 'apache' targets.
8814
8815 * configure.in: Eliminate redundant tests. Reorganize.
8816
8817 * Makefile.in: Eliminate last reference to LIBGCC1_TEST.
8818
8819 * config-ml.in: Eliminate references to Cygnus configure.
8820
8821 * Makefile.in: Eliminate references to building emacs.
8822
8823 2002-07-01 Denis Chertykov <denisc@overta.ru>
8824
8825 * configure.in: Add support for ip2k.
8826
8827 2002-06-24 Ben Elliston <bje@redhat.com>
8828
8829 * configure.in (host_tools): Remove cgen.
8830
8831 * Makefile.in (all-cgen): Remove; runs from its source directory.
8832 (check-cgen, install-cgen, clean-cgen): Likewise.
8833 (all-opcodes): No not depend on all-cgen.
8834 (all-sim): Likewise.
8835
8836 2002-06-22 Nathanael Nerode <neroden@twcny.rr.com>
8837
8838 * configure.in: Fix AIX configury bug.
8839
8840 2002-06-19 Nathanael Nerode <neroden@twcny.rr.com>
8841
8842 * configure.in: Replace ${topsrcdir} with ${srcdir}.
8843
8844 * configure.in: Move definition of libstdcxx_flags right above
8845 usage, rather than way earlier.
8846
8847 * configure.in: Pull definition of is_cross_compiler earlier.
8848
8849 * configure.in: Rearrange a little.
8850
8851 * configure.in: Remove references to librx.
8852 * Makefile.in: Remove references to librx.
8853
8854 2002-06-19 Nathanael Nerode <neroden@twcny.rr.com>
8855
8856 * configure.in: Eliminate ${gasdir} variable.
8857
8858 2002-06-18 Dave Brolley <brolley@redhat.com>
8859
8860 * configure.in: Add support for frv.
8861 * config.sub: Add support for frv.
8862
8863 2002-06-12 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
8864
8865 * Makefile.in (CFLAGS_FOR_TARGET): Add -O2.
8866
8867 2002-06-08 Jason Thorpe <thorpej@wasabisystems.com>
8868
8869 * configure.in (vax-*-netbsd*): Re-enable gas.
8870
8871 2002-05-31 Nathanael Nerode <neroden@twcny.rr.com>
8872
8873 * Makefile.in: Replace HOST_PREFIX, HOST_PREFIX_1 with BUILD_PREFIX,
8874 BUILD_PREFIX_1, to correct nomenclature.
8875 * configure: Likewise.
8876
8877 * Makefile.in: Eliminate version-specific references to tcl8.1, tk8.1.
8878 * configure.in: Eliminate version-specific references to tcl8.1, tk8.1.
8879
8880 2002-05-31 Olaf Hering <olh@suse.de>
8881
8882 * config-ml.in: Propogate DESTDIR also.
8883
8884 2002-05-29 Jason Thorpe <thorpej@wasabisystems.com>
8885
8886 * configure.in (vax-*-netbsd*): Don't build gas for this
8887 platform.
8888
8889 2002-05-28 Marek Michalkiewicz <marekm@amelek.gda.pl>
8890
8891 * configure.in (noconfigdirs): Don't compile libiberty, libstdcxx
8892 and libgcj for AVR.
8893
8894 2002-05-28 Nick Clifton <nickc@cambridge.redhat.com>
8895
8896 * config.sub: Add DLX target.
8897
8898 2002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
8899
8900 * config.guess: Update to 2002-05-22 version.
8901 * config.sub: Likewise.
8902
8903 2002-05-16 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
8904
8905 * Makefile.in: Allow for PWDCMD to override hardcoded pwd.
8906 * config-ml.in: Likewise.
8907 * configure: Likewise.
8908 * configure.in: Likewise.
8909
8910 2002-05-13 Nathanael Nerode <neroden@twcny.rr.com>
8911
8912 * configure.in: Simplify makefile fragment collection.
8913
8914 * configure.in: Remove code to build emacs.
8915
8916 * configure.in : Remove --srcdir argument from targargs and buildargs
8917 (it's always overridden in the Makefile anyway). Rearrange a bit.
8918
8919 * configure: Move some logic to configure.in.
8920 * configure.in: Move some logic from configure.
8921
8922 2002-05-07 Jeff Johnston <jjohnstn@redhat.com>
8923
8924 * COPYING.LIBGLOSS: New file.
8925
8926 2002-05-07 Federico G. Schwindt <fgsch@olimpo.com.br>
8927
8928 * Makefile.in: Honour DESTDIR.
8929
8930 2002-05-05 Alexandre Oliva <aoliva@redhat.com>
8931
8932 * configure.in (noconfigdirs): Don't disable libgcj on
8933 sparc64-*-solaris* and sparcv9-*-solaris*.
8934
8935 2002-05-03 Alexandre Oliva <aoliva@redhat.com>
8936
8937 * configure.in: Revert 2002-04-18's patch; fixed in libjava.
8938
8939 2002-05-03 Thomas Fitzsimmons <fitzsim@redhat.com>
8940
8941 * configure.in (FLAGS_FOR_TARGET): Do not add
8942 -B$$r/$(TARGET_SUBDIR)/newlib/ when compiling newlib natively
8943 on i[3456]86-*-linux*.
8944
8945 2002-05-01 Thomas Fitzsimmons <fitzsim@redhat.com>
8946
8947 * configure.in (noconfigdirs): Replace [ ] with test.
8948
8949 * configure.in (noconfigdirs): Do not add target-newlib if
8950 target == i[3456]86-*-linux*, and host == target.
8951
8952 2002-04-29 Mark Mitchell <mark@codesourcery.com>
8953
8954 * config.guess: Updated to 2002-04-26's version.
8955 * config.sub: Updated to 2002-04-26's version.
8956
8957 2002-04-29 Nathanael Nerode <neroden@doctormoo.dyndns.org>
8958
8959 * configure.in: delete reference to absent file
8960
8961 * configure.in: replace '[' with 'test'
8962
8963 * configure.in: Eliminate references to gash.
8964 * Makefile.in: Eliminate references to gash.
8965
8966 * configure.in: remove useless references to 'pic' makefile fragments.
8967
8968 * configure.in: (*-*-windows*) Finish removing.
8969
8970 * configure.in: Eliminate redundant test for libgui.
8971
8972 2002-04-26 Joel Sherrill <joel@OARcorp.com>
8973
8974 * configure.in (h8300*-*-rtems*): Disable libf2c and libgcj.
8975 (sparc-*-elf*, sparc64-*-elf*): Disable libgcj.
8976
8977 2002-04-19 Nathanael Nerode <neroden@twcny.rr.com>
8978
8979 * configure.in: remove references to dead files
8980
8981 2002-04-18 Tom Tromey <tromey@redhat.com>
8982
8983 * configure.in: Disallow configuring libgcj when it is already
8984 installed and we're using Solaris 2.8 linker. Do enable libgcj on
8985 Solaris 2.8 by default. For PR libgcj/6158.
8986
8987 2002-04-17 Nathanael Nerode <neroden@twcny.rr.com>
8988
8989 * configure.in: Move default CC setting out of config/mh-* fragments
8990 directly into here.
8991
8992 2002-04-17 Nathanael Nerode <neroden@twcny.rr.com>
8993
8994 * configure.in: don't even try to configure or make a subdirectory
8995 if there's no configure script for it.
8996
8997 2002-04-15 Mark Mitchell <mark@codesourcery.com>
8998
8999 * MAINTAINERS: Remove chill maintainers.
9000 * Makefile.in (CHILLFLAGS): Remove.
9001 (CHILL_LIB): Remove.
9002 (TARGET_CONFIGDIRS): Remove libchill.
9003 (CHILL_FOR_TARGET): Remove.
9004 (BASE_FLAGS_TO_PASS): Don't pass CHILLFLAGS, CHILL_FOR_TARGET, or
9005 CHILL_LIB.
9006 (CONFIGURE_TARGET_MODULES): Remove configure-target-libchill.
9007 (CHECK_TARGET_MODULES): Likewise.
9008 (INSTALL_TARGET_MODULES): Likewise.
9009 (CLEAN_TARGET_MODULES): Likewise.
9010 (configure-target-libchill): Remove.
9011 (all-target-libchill): Remove.
9012 * configure.in (target_libs): Remove target-libchill.
9013 Do not compute CHILL_FOR_TARGET.
9014 * libchill: Remove directory.
9015
9016 2002-04-15 DJ Delorie <dj@redhat.com>
9017
9018 * Makefile.in, configure.in, configure: Sync with gcc, entries
9019 follow...
9020
9021 2002-04-08 Tom Tromey <tromey@redhat.com>
9022
9023 * configure.in: Add FLAGS_FOR_TARGET to GCJ_FOR_TARGET.
9024 Fixes PR libgcj/6068.
9025
9026 2002-03-30 Krister Walfridsson <cato@df.lth.se>
9027
9028 * configure.in (i*86-*-netbsdelf*): Don't disable libgcj.
9029
9030 2002-03-27 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
9031
9032 * configure.in (alpha*-dec-osf*): Enable libgcj.
9033
9034 2002-03-24 Nick Clifton <nickc@cambridge.redhat.com>
9035
9036 Fix for: PR bootstrap/3591, target/5676
9037 * configure.in (mcore-pe): Disable the configuration of
9038 libstdc++-v3 since exceptions are not supported.
9039
9040 2002-03-20 Anthony Green <green@redhat.com>
9041
9042 * configure.in: Enable libgcj for xscale-elf target.
9043
9044 2002-02-28 Alexandre Oliva <aoliva@redhat.com>
9045
9046 * configure.in (libstdcxx_flags): Don't add libstdc++-v3 flags for
9047 libjava.
9048 (CXX_FOR_TARGET): Explain why -shared-libgcc here.
9049
9050 2002-02-22 Alexandre Oliva <aoliva@redhat.com>
9051
9052 * configure.in (CXX_FOR_TARGET): Add -shared-libgcc for
9053 libstdc++-v3 and libjava.
9054
9055 2002-02-11 Adam Megacz <adam@xwt.org>
9056
9057 * gcc/Makefile.in: Removed libstdc++-v3 dependancy for libjava and
9058 boehm-gc
9059
9060 2002-02-09 Alexandre Oliva <aoliva@redhat.com>
9061
9062 * config.guess: Updated to 2002-01-30's version.
9063 * config.sub: Updated to 2002-02-01's version.
9064 Contribute sh64-elf.
9065 2000-12-01 Alexandre Oliva <aoliva@redhat.com>
9066 * configure.in: Added sh64-*-*.
9067
9068 2002-01-17 H.J. Lu <hjl@gnu.org>
9069
9070 * Makefile.in (all-fastjar): Also depend on all-libiberty.
9071 (all-target-fastjar): Also depend on all-target-libiberty.
9072
9073 Wed Dec 5 07:33:45 2001 Douglas B. Rupp <rupp@gnat.com>
9074
9075 * configure, configure.in: Use temp file for long sed commands.
9076
9077 2001-11-14 Hans-Peter Nilsson <hp@bitrange.com>
9078
9079 * configure.in (noconfigdirs) [h8300*-*-*, h8500-*-*]: Disable
9080 libf2c.
9081
9082 2001-11-03 Hans-Peter Nilsson <hp@bitrange.com>
9083
9084 * configure.in (noconfigdirs) [mmix-*-*]: Disable libgcj.
9085
9086 2001-10-11 Hans-Peter Nilsson <hp@axis.com>
9087
9088 * configure.in (noconfigdirs) [cris-*-*]: Disable libgcj.
9089
9090 2001-10-02 Joseph S. Myers <jsm28@cam.ac.uk>
9091
9092 * configure: Handle temporary files securely using mkdir.
9093
9094 2001-09-26 Will Cohen <wcohen@redhat.com>
9095
9096 * configure.in (*-*-linux*): Disable configuration of target-newlib
9097 and target-libgloss.
9098
9099 2001-09-26 Alexandre Oliva <aoliva@redhat.com>
9100
9101 * Makefile.in (EXTRA_TARGET_FLAGS): Pass RANLIB_FOR_TARGET for
9102 RANLIB.
9103
9104 2001-08-11 Graham Stott <grahams@redhat.com>
9105
9106 * Makefile.in (check-c++): Add missing semicolon.
9107
9108 2001-07-25 Andrew Haley <aph@cambridge.redhat.com>
9109
9110 * configure.in (sh-*-linux*): New.
9111
9112 2001-07-12 Stephane Carrez <Stephane.Carrez@worldnet.fr>
9113
9114 * configure.in (noconfigdirs): Don't compile libiberty, libstdcxx
9115 and libgcj on m68hc11/m68hc12.
9116
9117 2001-06-27 H.J. Lu (hjl@gnu.org)
9118
9119 * Makefile (CFLAGS_FOR_BUILD): New.
9120 (EXTRA_GCC_FLAGS): Add CFLAGS_FOR_BUILD.
9121
9122 2001-06-01 Hans-Peter Nilsson <hp@axis.com>
9123
9124 * configure.in (libstdcxx_flags): Do not try to execute
9125 libstdc++-v3/testsuite_flags until it exists.
9126
9127 2001-05-18 Benjamin Kosnik <bkoz@redhat.com>
9128
9129 * configure.in (libstdcxx_flags): Remove reference to libstdc++.INC.
9130
9131 2001-05-09 Jeffrey Oldham <oldham@codesourcery.com>
9132
9133 * ltcf-cxx.sh: Add -nostdlib to IRIX 6 archive_cmds.
9134
9135 Mon Apr 23 09:15:03 2001 Anthony Green <green@redhat.com>
9136
9137 * configure.in: Move *-chorusos target case to the proper switch.
9138 Disable libgcj.
9139
9140 2001-04-13 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
9141
9142 * Makefile.in (STAGE1_CFLAGS): Pass down.
9143
9144 2001-04-13 Alan Modra <amodra@one.net.au>
9145
9146 * config.guess: Add hppa64-linux support. Note for next import that
9147 this is already in the master file.
9148 * configure.in: Likewise. Accept `parisc' alias for `hppa'.
9149
9150 2001-03-22 Colin Howell <chowell@redhat.com>
9151
9152 * Makefile.in (DO_X): Do not backslash single-quotes in
9153 backquotes (two places).
9154
9155 2001-03-18 Laurynas Biveinis <lauras@softhome.net>
9156
9157 * Makefile.in (DO_X): Quote nested quotes.
9158
9159 2001-03-15 Laurynas Biveinis <lauras@softhome.net>
9160
9161 * Makefile.in (DO_X): Use double quotes for quoting
9162 "RANLIB=$${RANLIB}".
9163
9164 2001-03-09 Nicola Pero <n.pero@mi.flashnet.it>
9165
9166 * configure.in: Only use `lang_requires' for languages athat are
9167 actually enabled.
9168
9169 2001-03-07 Tom Tromey <tromey@redhat.com>
9170
9171 * configure.in: Allow config-lang.in to set `lang_requires' to list
9172 of other required languages.
9173
9174 2001-03-06 Laurynas Biveinis <lauras@softhome.net>
9175
9176 * Makefile.in: Remove RANLIB definition. Use RANLIB
9177 in RANLIB_FOR_TARGET, EXTRA_HOST_FLAGS, EXTRA_TARGET_FLAGS,
9178 EXTRA_GCC_FLAGS, $(DO_X) targets only when the RANLIB is set.
9179
9180 2001-02-28 Benjamin Kosnik <bkoz@redhat.com>
9181 Alexandre Oliva <aoliva@redhat.com>
9182
9183 * Makefile.in (check-c++): Use tabs, not spaces.
9184
9185 2001-02-19 Benjamin Kosnik <bkoz@redhat.com>
9186
9187 * Makefile.in (check-c++): New rule.
9188
9189 * configure.in (target_libs): Remove libg++.
9190 (noconfigdirs): Remove libg++.
9191 (noconfigdirs): Same.
9192 (noconfigdirs): Same.
9193 (noconfigdirs): Same.
9194
9195 * config-ml.in: Remove libg++ references.
9196
9197 * Makefile.in (TARGET_CONFIGDIRS): Remove libio, libstdc++, libg++.
9198 (ALL_TARGET_MODULES): Same.
9199 (configure-target-libg++): Remove.
9200 (all-target-libg++): Remove.
9201 (configure-target-libio): Remove.
9202 (all-target-libio): Remove.
9203 (check-target-libio): Remove.
9204 (.PHONY): Remove.
9205 (libg++.tar.bz2): Remove.
9206 (all-target-cygmon): Remove libio.
9207 (all-target-libstdc++): Remove.
9208 (configure-target-libstdc++): Remove.
9209 (TARGET_LIB_PATH): Remove libstdc++.
9210 (ALL_GCC_CXX): Remove libstdc++.
9211 (all-target-gperf): Correct.
9212
9213 2001-02-15 Anthony Green <green@redhat.com>
9214
9215 * configure: Introduce GCJ_FOR_TARGET.
9216 * configure.in: Ditto.
9217 * Makefile.in: Ditto.
9218
9219 2001-02-08 Chandrakala Chavva <cchavva@redhat.com>
9220
9221 * configure.in: for *-chorusos, don't config target-newlib and
9222 target-libgloss.
9223
9224 2001-02-04 Mark Mitchell <mark@codesourcery.com>
9225
9226 Remove V2 C++ library.
9227 * configure.in: Remove --enable-libstdcxx_v3 support.
9228
9229 2001-01-27 Richard Henderson <rth@redhat.com>
9230
9231 * configure.in (target_makefile_frag) [alpha*-*]: Use mt-alphaieee.
9232
9233 2001-01-26 Tom Tromey <tromey@redhat.com>
9234
9235 * configure.in: Allow libgcj to be built on Sparc Solaris.
9236
9237 2001-01-23 Bryce McKinlay <bryce@albatross.co.nz>
9238
9239 * configure.in: Enable libgcj on several additional platforms.
9240
9241 2001-01-22 Bryce McKinlay <bryce@albatross.co.nz>
9242
9243 * configure.in: Enable libgcj for linux targets.
9244
9245 2001-01-09 Mike Stump <mrs@wrs.com>
9246
9247 * Makefile.in (CONFIGURE_TARGET_MODULES): Pass back configuration
9248 failures of subdirectories.
9249
9250 2001-01-02 Laurynas Biveinis <lauras@softhome.net>
9251
9252 * configure: handle DOS-style absolute paths.
9253
9254 2001-01-02 Laurynas Biveinis <lauras@softhome.net>
9255
9256 * configure.in: remove supported directories from $noconfigdirs for DJGPP.
9257
9258 2000-12-18 Benjamin Kosnik <bkoz@redhat.com>
9259
9260 * Makefile.in (BASE_FLAGS_TO_PASS): Alphabetize.
9261 (libstdcxx_incdir): Pass down.
9262 * config.if: Remove expired bits for cxx_interface, add stub.
9263 (libstdcxx_incdir): Add variable for g++ include directory.
9264 * configure.in (gxx_include_dir): Use it.
9265
9266 2000-12-15 Andreas Jaeger <aj@suse.de>
9267
9268 * configure.in: Handle lang_dirs.
9269
9270 2000-12-13 Anthony Green <green@redhat.com>
9271
9272 * configure.in: Disable libgcj for any target not specifically
9273 listed. Disable libgcj for x86 and Alpha Linux until compatible
9274 with g++ abi.
9275
9276 2000-12-13 Mike Stump <mrs@wrs.com>
9277
9278 * Makefile.in (local-distclean): Also remove fastjar.
9279
9280 2000-12-10 Anthony Green <green@redhat.com>
9281
9282 * configure.in: Define libgcj. Disable libgcj target libraries for
9283 most targets.
9284
9285 2000-12-09 Alexandre Petit-Bianco <apbianco@cygnus.com>
9286
9287 * configure.in (target_libs): Revert 2000-12-08 patch.
9288 (noconfigdirs): Added target-libjava.
9289
9290 2000-12-09 Laurynas Biveinis <lauras@softhome.net>
9291
9292 * Makefile.in: handle DOS-style absolute paths.
9293
9294 2000-12-08 Alexandre Petit-Bianco <apbianco@cygnus.com>
9295
9296 * Makefile.in (TARGET_CONFIGDIRS): Wrong place. Removed note about
9297 libjava.
9298 * configure.in (target_libs): Removed `target-libjava'.
9299
9300 2000-12-08 Alexandre Petit-Bianco <apbianco@cygnus.com>
9301
9302 * Makefile.in (TARGET_CONFIGDIRS): Added note about libjava.
9303 (ALL_MODULES): Added fastjar.
9304 (NATIVE_CHECK_MODULES, INSTALL_MODULES, CLEAN_MODULES): Likewise.
9305 (all-target-libjava): all-fastjar replaces all-zip.
9306 (all-fastjar): Added.
9307 (configure-target-fastjar, all-target-fastjar): Likewise.
9308 * configure.in (host_tools): Added fastjar.
9309
9310 2000-12-07 Mike Stump <mrs@wrs.com>
9311
9312 * Makefile.in (local-distclean): Remove leftover built files.
9313
9314 2000-11-16 Fred Fish <fnf@be.com>
9315
9316 * configure.in (enable_libstdcxx_v3): Fix typo,
9317 libstd++ -> libstdc++.
9318
9319 2000-11-13 Joseph S. Myers <jsm28@cam.ac.uk>
9320
9321 * configure: Provide the original toplevel configure arguments
9322 (including $0) to subprocesses in the environment rather than
9323 through gcc/configargs.h.
9324
9325 2000-11-12 Mark Mitchell <mark@codesourcery.com>
9326
9327 * configure: Turn on libstdc++ V3 by default.
9328
9329 2000-10-16 Michael Meissner <meissner@redhat.com>
9330
9331 * configure (gcc/configargs.h): Only create if there is a build GCC
9332 directory created.
9333
9334 2000-10-05 Phil Edwards <pme@gcc.gnu.org>
9335
9336 * configure: Save configure arguments to gcc/configargs.h.
9337
9338 2000-10-04 Andris Pavenis <pavenis@latnet.lv>
9339
9340 * Makefile.in (bootstrap): avoid recursion if subdir missing
9341 (cross): ditto
9342 (do-proto-toplev): ditto
9343
9344 Wed Sep 13 11:11:29 2000 Jeffrey A Law (law@cygnus.com)
9345
9346 * configure.in: Do not build byacc for hppa64. Provide paths to the
9347 X11 libraries for hppa64.
9348
9349 2000-09-02 Anthony Green <green@cygnus.com>
9350
9351 * Makefile.in (all-gcc): Depend on all-zlib.
9352 (CLEAN_MODULES): Add clean-zlib.
9353 (ALL_MODULES): Add all-zlib.
9354 * configure.in (host_libs): Add zlib.
9355
9356 2000-08-25 Alexandre Oliva <aoliva@redhat.com>
9357
9358 * configure.in (FLAGS_FOR_TARGET): Use $target_configdirs and
9359 $targargs to tell whether newlib is going to be built.
9360
9361 * configure.in [disable-libstdcxx-v3] (libstdcxx_flags): Search
9362 $$r/TARGET_SUBDIR/libio for _G_config.h.
9363
9364 2000-08-14 Zack Weinberg <zack@wolery.cumb.org>
9365
9366 * configure.in (libstdcxx_flags): Remove -isystem $$s/libio/stdio.
9367
9368 * configure: Make enable_threads and enable_shared defaults
9369 explicit. Substitute enable_threads into generated Makefiles.
9370 * configure.in: Accept *-*-linux* not just *-*-linux-gnu*.
9371 * libtool.m4: Accept *-*-linux* not just *-*-linux-gnu*.
9372
9373 2000-08-02 Manfred Hollstein <manfredh@redhat.com>
9374
9375 * configure.in: Re-enable all references to libg++ and librx.
9376
9377 2002-04-09 Loren James Rittle <rittle@labs.mot.com>
9378
9379 * configure.in: Add *-*-freebsd* configurations.
9380
9381 2002-04-07 Andrew Cagney <ac131313@redhat.com>
9382
9383 * Makefile.in (do-tar-bz2): Delete rule. Replace with ...
9384 (do-tar, do-bz2): New rules.
9385 (taz): Update. Replace do-tar-bz2 with do-tar and do-bz2.
9386 (gdb-tar): New rule.
9387 (gdb-taz): Rewrite. Use gdb-tar and do-bz2.
9388 (insight_dejagnu.tar): New rule.
9389 (insight.tar): New rule.
9390 (gdb+dejagnu.tar): New rule.
9391 (gdb.tar): New rule.
9392
9393 2002-04-07 Andrew Cagney <ac131313@redhat.com>
9394
9395 * MAINTAINERS: Update dejagnu/
9396
9397 2002-03-16 Alexandre Oliva <aoliva@redhat.com>
9398
9399 * ltmain.sh (relink_command): Fix typo in previous change.
9400
9401 2002-03-15 Alexandre Oliva <aoliva@redhat.com>
9402
9403 * ltmain.sh (taglist): Initialized. Don't let `CC' tag out of it.
9404 (relink_command): Added --tag flags.
9405 (mode=install): If relinking fails; error out.
9406
9407 2002-03-12 Richard Henderson <rth@redhat.com>
9408
9409 * Makefile.in (NOTPARALLEL): New. Use it instead of explicit
9410 .NOTPARALLEL tag.
9411 (do-check): Rename from check.
9412 (check): Allow parallel check.
9413
9414 2002-03-11 Richard Henderson <rth@redhat.com>
9415
9416 * Makefile.in (.NOTPARALLEL): Add fake tag.
9417
9418 2002-03-07 H.J. Lu (hjl@gnu.org)
9419
9420 * configure.in: Enable gprof for mips*-*-linux*.
9421
9422 2002-02-28 Alexandre Oliva <aoliva@redhat.com>
9423
9424 * configure.in (libstdcxx_flags): Don't add libstdc++-v3 flags for
9425 libjava.
9426 (CXX_FOR_TARGET): Add -shared-libgcc for libstdc++-v3 and libjava.
9427
9428 2002-02-24 Andrew Cagney <ac131313@redhat.com>
9429
9430 * texinfo/texinfo.tex: Update to version 2002-02-14.08.
9431
9432 2002-02-23 Daniel Jacobowitz <drow@mvista.com>
9433
9434 * config.guess: Import from master sources, rev 1.232.
9435 * config.sub: Import from master sources, rev 1.246.
9436
9437 2002-02-23 Alexandre Oliva <aoliva@redhat.com>
9438
9439 * Makefile.in (MAKEINFO): Don't assume makeinfo will be built just
9440 because its Makefile is there; test for the executable instead.
9441
9442 2002-02-09 Alexandre Oliva <aoliva@redhat.com>
9443
9444 Contribute sh64-elf.
9445 2000-12-01 Alexandre Oliva <aoliva@redhat.com>
9446 * configure.in: Added sh64-*-*.
9447
9448 2002-02-04 Jeff Johnston <jjohnstn@redhat.com>
9449
9450 * COPYING.NEWLIB: Remove advertising clause from
9451 Berkeley and Red Hat licenses.
9452
9453 2002-02-01 Mo DeJong <supermo@bayarea.net>
9454
9455 * Makefile.in: Add all-tix to deps for all-snavigator
9456 so that tix is built when building snavigator.
9457
9458 2002-02-01 Ben Elliston <bje@redhat.com>
9459
9460 * config.guess: Import from master sources, rev 1.229.
9461 * config.sub: Import from master sources, rev 1.240.
9462
9463 2002-01-27 Daniel Jacobowitz <drow@mvista.com>
9464
9465 From Steve Ellcey <sje@cup.hp.com>:
9466 * libtool.m4 (HPUX_IA64_MODE): Set to 32 or 64 based on ABI.
9467 (lt_cv_deplibs_check_method, lt_cv_file_magic_cmd,
9468 lt_cv_file_magic_test_file): Set to appropriate values for HP-UX
9469 IA64.
9470 * ltcf-c.sh (archive_cmds, hardcode_*): Ditto.
9471 * ltconfig (shlibpath_*, dynamic_linker, library_names_spec,
9472 soname_spec, sys_lib_search_path_spec): Ditto.
9473
9474 2002-01-26 Jason Thorpe <thorpej@wasabisystems.com>
9475
9476 * configure.in (*-*-netbsd*): New. Skip target-newlib,
9477 target-libiberty, and target-libgloss. Skip Java-related
9478 libraries if not supported for NetBSD on target CPU.
9479
9480 2002-01-23 Nick Clifton <nickc@cambridge.redhat.com>
9481
9482 * configure.in: Import StrongARM and XScale target_configdirs from
9483 FSF GCC version.
9484
9485 2002-01-16 H.J. Lu (hjl@gnu.org)
9486
9487 * config.guess: Import from master sources, rev 1.225.
9488 * config.sub: Import from master sources, rev 1.238.
9489
9490 * MAINTAINERS: Updated notes on config.guess and config.sub.
9491
9492 2002-01-11 Steve Ellcey <sje@cup.hp.com>
9493
9494 * configure.in (ia64*-*-hpux*): New target for IA64 HP-UX,
9495 ld and gdb are not supported.
9496
9497 2002-01-07 Jeff Johnston <jjohnstn@redhat.com>
9498
9499 * Change reference to Cygnus Solutions to be Red Hat.
9500
9501 2002-01-07 Jeff Johnston <jjohnstn@redhat.com>
9502
9503 * COPYING.NEWLIB: Update generic copyright date.
9504
9505 2002-01-07 Mark Salter <msalter@redhat.com>
9506
9507 * configure.in: Remove target-bsp and target-cygmon from arm builds.
9508 Allow target-libgloss to be built for arm, strongarm, and xscale.
9509
9510 2002-01-03 Ben Elliston <bje@redhat.com>
9511
9512 * MAINTAINERS: Update URL for config.* scripts.
9513
9514 2001-12-18 Alan Modra <amodra@bigpond.net.au>
9515
9516 * config.sub: Import latest version.
9517 * config.guess: Likewise.
9518
9519 2001-12-13 Thomas Fitzsimmons <fitzsim@redhat.com>
9520
9521 * configure.in (FLAGS_FOR_TARGET): Remove -nostdinc and -isystem
9522 options for i[3456]86-pc-linux* native builds.
9523
9524 2001-12-05 Laurent Guerby <guerby@acm.org>
9525
9526 * MAINTAINERS: gcc adopts symlink-tree, refer more to
9527 libiberty.
9528
9529 Import this patch from gcc:
9530
9531 2000-12-09 Laurynas Biveinis <lauras@softhome.net>
9532
9533 * symlink-tree: handle DOS-style absolute paths.
9534
9535 2001-11-28 DJ Delorie <dj@redhat.com>
9536 Zack Weinberg <zack@codesourcery.com>
9537
9538 When build != host, create libiberty for the build machine.
9539
9540 * Makefile.in (TARGET_CONFIGARGS, BUILD_CONFIGARGS): Replace
9541 CONFIG_ARGUMENTS.
9542 (ALL_BUILD_MODULES_LIST, BUILD_CONFIGDIRS, BUILD_SUBDIR):
9543 New variables.
9544 (ALL_BUILD_MODULES, CONFIGURE_BUILD_MODULES): New variables
9545 and rules.
9546 (all.normal): Depend on ALL_BUILD_MODULES.
9547 (CONFIGURE_TARGET_MODULES rule): Use TARGET_CONFIGARGS.
9548 (all-build-libiberty): Depend on configure-build-libiberty.
9549
9550 * configure: Calculate and substitute proper value for
9551 ALL_BUILD_MODULES.
9552 * configure.in: Create the build subdirectory.
9553 Calculate and substitute TARGET_CONFIGARGS (formerly
9554 CONFIG_ARGUMENTS); also BUILD_SUBDIR and BUILD_CONFIGARGS (new).
9555
9556 2001-11-26 Geoffrey Keating <geoffk@redhat.com>
9557
9558 * config.sub: Update to version 1.232 on subversion.
9559
9560 2001-11-20 Nick Clifton <nickc@cambridge.redhat.com>
9561
9562 * Makefile.in (do-proto-toplev): Use msgfmt to generate .gmo
9563 files from .po files for a distribution.
9564
9565 2001-11-19 Hans-Peter Nilsson <hp@bitrange.com>
9566
9567 * COPYING.NEWLIB: Mention preserved notice in specific parts.
9568
9569 2001-11-13 Jeff Holcomb <jeffh@redhat.com>
9570
9571 Merged from net gcc:
9572 2001-07-30 Jeff Sturm <jsturm@one-pont.com>
9573 * ltcf-c.sh: Use $objext, not $ac_objext.
9574 2001-07-27 Mark Kettenis <kettenis@gnu.org>
9575 * ltcf-cxx.sh: Add support for GNU.
9576 2001-07-22 Timothy Wall <twall@redhat.com>
9577 * ltcf-c.sh: Don't disable shared libraries for AIX5/IA64. Preserve
9578 default settings if using GNU tools with that configuration.
9579 * ltcf-cxx.sh: Ditto.
9580 * ltcf-gcj.sh: Ditto.
9581 2001-07-21 Michael Chastain <chastain@redhat.com>
9582 * ltconfig: Set max_cmd_len to a maximum of 512Kb, as it seems some
9583 HPUX 11.0 systems have trouble with 1MB. Mark as gcc-local.
9584 * ltmain.sh: Mark as gcc-local.
9585
9586 2001-11-13 Jeff Holcomb <jeffh@redhat.com>
9587
9588 * Makefile.in (all-bison): Revert 2001-10-24.
9589 Don't depend on texinfo.
9590
9591 2001-11-12 Hans-Peter Nilsson <hp@bitrange.com>
9592
9593 * COPYING.NEWLIB: Add BSD-style license/copyright blurb for my work.
9594
9595 2001-11-08 Phil Edwards <pedwards@disaster.jaj.com>
9596
9597 * configure.in (--enable-languages): Be more permissive about
9598 syntax. Check for empty lists better. Warn about $LANGUAGES.
9599
9600 2001-11-06 Hans-Peter Nilsson <hp@bitrange.com>
9601
9602 * Makefile.in (MAKEINFO): Use "missing" for makeinfo older than 4.0.
9603
9604 2001-10-24 Jeff Holcomb <jeffh@redhat.com>
9605
9606 Makefile.in (all-bison): Don't depend on texinfo.
9607
9608 2001-10-03 Alan Modra <amodra@bigpond.net.au>
9609
9610 * gettext.m4: Test po/POTFILES.in exists before trying to read.
9611
9612 2001-09-29 Alexandre Oliva <aoliva@redhat.com>
9613
9614 * Makefile.in (configure-target-gperf): Depend on $(ALL_GCC_CXX).
9615
9616 2001-09-28 Hans-Peter Nilsson <hp@axis.com>
9617
9618 * config.sub, config.guess: Import latest from subversions.
9619
9620 2001-09-21 Alexandre Oliva <aoliva@redhat.com>
9621
9622 * Makefile.in (AS_FOR_TARGET, LD_FOR_TARGET,
9623 DLLTOOL_FOR_TARGET, WINDRES_FOR_TARGET, AR_FOR_TARGET,
9624 RANLIB_FOR_TARGET, NM_FOR_TARGET): Don't use double quotes to
9625 avoid quotes nesting problems.
9626 (NATIVE_CHECK_MODULES): Ditto, just for consistency.
9627 (DO_X): Export only variables that are set.
9628
9629 2001-09-19 Ben Elliston <bje@redhat.com>
9630
9631 * configure.in (sparc-sun-solaris2*): Don't use /usr/bin/which on
9632 Solaris when testing for the /usr/ucb/cc compiler; it has incorrect
9633 semantics. Use the shell built-in "type" command instead.
9634
9635 2001-09-15 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
9636
9637 * config.sub: Reverted the earlier change, this version is not the
9638 master file.
9639
9640 2001-09-14 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
9641
9642 * config.sub: Change machine triplets from mipsel*-* to mips*el-*.
9643 Add support for mips64.
9644
9645 2001-09-03 Jeff Holcomb <jeffh@redhat.com>
9646
9647 * configure.in: Enable libstdc++-v3 for h8300 targets.
9648
9649 2001-08-30 Eric Christopher <echristo@redhat.com>
9650 Jason Eckhardt <jle@redhat.com>
9651
9652 * config.sub: Add support for mipsisa32.
9653
9654 2001-08-30 Eric Christopher <echristo@redhat.com>
9655
9656 * config.sub, config.guess: Import latest from subversions.
9657
9658 2001-08-20 Alan Modra <amodra@bigpond.net.au>
9659
9660 * config.sub, config.guess: Import latest from subversions.
9661
9662 2001-07-26 DJ Delorie <dj@redhat.com>
9663
9664 * MAINTAINERS: Clarify libiberty merge rules and procedures.
9665
9666 2001-06-19 Alan Modra <amodra@bigpond.net.au>
9667
9668 * Makefile.in: Revert 2001-06-17.
9669 (VER): If AM_INIT_AUTOMAKE uses BFD_VERSION, get version from bfd/.
9670
9671 2001-06-17 H.J. Lu <hjl@gnu.org>
9672
9673 * Makefile.in (gas.tar.bz2): Pass TOOL=bfd PACKAGE=gas to make.
9674 (gas+binutils.tar.bz2): Likewise.
9675 (binutils.tar.bz2): Pass TOOL=bfd PACKAGE=binutils to make.
9676
9677 Fri Jun 8 11:14:02 2001 Andrew Cagney <cagney@b1.cygnus.com>
9678
9679 * Makefile.in (VER): When present, extract the version number from
9680 the file version.in.
9681
9682 2001-06-08 Alexandre Oliva <aoliva@redhat.com>, Jeff Sturm <jsturm@one-point.com>
9683
9684 * Makefile.in (AS_FOR_TARGET, LD_FOR_TARGET, NM_FOR_TARGET): If
9685 gcc/xgcc is built, use -print-prog-name to find out the program
9686 name to use.
9687
9688 2001-06-04 Mark Mitchell <mark@codesourcery.com>
9689
9690 * ltcf-c.sh (archive_cmds, archive_expsym_cmds) [solaris,
9691 with_gcc]: Use `gcc -shared' to build a shared library.
9692
9693 2001-06-04 John David Anglin <dave@hiauly1.hia.nrc.ca>
9694
9695 * ltcf-c.sh (archive_cmd) [hpux, with_gcc]: Use gcc to link shared
9696 archives.
9697
9698 2001-05-28 Simon Patarin <simon.patarin@inria.fr>
9699
9700 * ltcf-cxx.sh (osf3/osf4/osf5): Support creation of C++ shared
9701 libraries when using g++ with native linker.
9702
9703 2001-05-28 Alexandre Oliva <aoliva@redhat.com>
9704
9705 * ltconfig, ltmain.sh: Upgrade to libtool 1.4a 1.641.2.256.
9706
9707 2001-05-24 Tom Rix <trix@redhat.com>
9708
9709 * configure.in : enable ld for aix
9710
9711 2001-05-22 Alexandre Oliva <aoliva@redhat.com>
9712
9713 * ltcf-cxx.sh (allow_undefined_flag, no_undefined_flag)
9714 [aix4*|aix5*]: Prepend blank.
9715
9716 2001-05-20 Alexandre Oliva <aoliva@redhat.com>
9717
9718 * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh, ltcf-cxx.sh,
9719 ltcf-gcj.sh: Upgraded to libtool 1.4a 1.641.2.254. Rebuilt a number
9720 of subdir/configure scripts to use the new libtool.m4.
9721
9722 2001-05-14 H.J. Lu <hjl@gnu.org>
9723
9724 * config.if (libc_interface): Set to -libc6.2- for cross
9725 compiling to Linux/glibc 2.2.
9726
9727 2001-05-03 Alexandre Oliva <aoliva@redhat.com>
9728
9729 * configure.in (noconfigdirs) [*-cygwin*, *-mingw*, *-beos]: Disable
9730 libgcj.
9731
9732 2001-04-26 Alexandre Oliva <aoliva@redhat.com>
9733
9734 * configure.in (noconfigdirs): Don't reset it from scratch in the
9735 target case; only append to it.
9736
9737 2001-04-26 Alexandre Oliva <aoliva@redhat.com>
9738
9739 * configure.in (noconfigdirs) [hppa*-*-*, mips*-*-irix6*,
9740 sparc-*-solaris2.8]: Disable ${libgcj}.
9741
9742 2001-04-25 Alexandre Oliva <aoliva@redhat.com>
9743
9744 * configure.in (libgcj_saved): Copy from $libgcj.
9745 (libgcj): Zero out if --enable-libgcj; add to noconfigdirs is
9746 --disable-libgcj.
9747
9748 2001-04-20 Alexandre Oliva <aoliva@redhat.com>
9749
9750 * ltconfig, ltmain.sh, ltcf-cxx.sh: Upgraded to libtool 1.4a
9751 1.641.2.228.
9752
9753 2001-04-12 Alexandre Oliva <aoliva@redhat.com>
9754
9755 * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh, ltcf-cxx.sh,
9756 ltcf-gcj.sh: Upgraded to libtool 1.4a 1.641.2.226.
9757
9758 2001-04-01 Alexandre Oliva <aoliva@redhat.com>
9759
9760 * Makefile.in (CXX_FOR_TARGET_FOR_RECURSIVE_MAKE, RECURSE_FLAGS):
9761 New macros.
9762 (bootstrap, cross): Use RECURSE_FLAGS.
9763 * configure.in: Subst CXX_FOR_TARGET_FOR_RECURSIVE_MAKE.
9764
9765 2001-03-27 Alexandre Oliva <aoliva@redhat.com>
9766
9767 * configure.in (CXX_FOR_TARGET): Use xgcc for libstdc++-v3.
9768
9769 2001-03-23 Nick Clifton <nickc@redhat.com>
9770
9771 * README-maintainer-mode: Add note about inability to use "make
9772 distclean" in maintainer mode.
9773
9774 2001-03-22 Alexandre Oliva <aoliva@redhat.com>
9775
9776 Re-installed:
9777 2001-01-02 Laurynas Biveinis <lauras@softhome.net>
9778 * ltcf-c.sh: Clear ac_cv_prog_cc_pic for DJGPP. Do not add
9779 '-DPIC' to ac_cv_prog_cc_pic for DJGPP.
9780 * ltcf-cxx.sh: Likewise.
9781 * ltcf-gcj.sh: Likewise.
9782
9783 2001-03-22 Philip Blundell <philb@gnu.org>
9784
9785 * config.sub, config.guess: Import latest from subversions.
9786
9787 2001-03-22 Alexandre Oliva <aoliva@redhat.com>
9788
9789 * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh, ltcf-cxx.sh,
9790 ltcf-gcj.sh: Upgraded to libtool 1.4a 1.641.2.198.
9791
9792 2001-03-20 Michael Chastain <chastain@redhat.com>
9793
9794 * Makefile.in: all-m4 depends on all-texinfo.
9795
9796 2001-03-08 Alexandre Oliva <aoliva@redhat.com>
9797
9798 * Makefile.in (ALL_GCC, ALL_GCC_C, ALL_GCC_CXX): Set before use.
9799
9800 2001-02-22 Jeff Johnston <jjohnstn@redhat.com>
9801
9802 * COPYING.NEWLIB: Remove DJ Delorie's address because it is no
9803 longer valid.
9804
9805 2001-02-16 Nick Clifton <nickc@redhat.com>
9806
9807 * configure.in (noconfigdirs): Allow configuration of texinfo
9808 for Cygwin hosts.
9809
9810 2001-02-09 Martin Schwidefsky <schwidefsky@de.ibm.com>
9811
9812 * config.guess: Add linux target for S/390.
9813 * config.sub: Likewise.
9814 * configure.in: Likewise.
9815
9816 2001-02-06 Ben Elliston <bje@redhat.com>
9817
9818 * configure: Output host type to stdout, not stderr.
9819
9820 2001-02-04 Michael Sokolov <msokolov@ivan.Harhan.ORG>
9821
9822 * config.guess: Import from subversions.gnu.org (revision 1.181).
9823 * config.sub: Import from subversions.gnu.org (revision 1.199).
9824
9825 2001-01-30 Alan Modra <alan@linuxcare.com.au>
9826
9827 * config.guess: Handle hppa64-linux systems.
9828
9829 2001-01-27 Michael Sokolov <msokolov@ivan.Harhan.ORG>
9830
9831 * ltcf-cxx.sh (ac_cv_prog_cc_pic_works, ac_cv_prog_cc_static_works):
9832 Don't unset, it's non-portable and no longer necessary, set to empty
9833 instead.
9834
9835 2001-01-27 Michael Sokolov <msokolov@ivan.Harhan.ORG>, Alexandre Oliva <oliva@lsd.ic.unicamp.br>
9836
9837 * ltconfig: Shell portability fix for the tagname validity check.
9838
9839 2001-01-27 Michael Sokolov <msokolov@ivan.Harhan.ORG>
9840
9841 * ltcf-cxx.sh: Use parentheses around eval $ac_compile.
9842
9843 2001-01-27 Alexandre Oliva <aoliva@redhat.com>
9844
9845 * ltcf-c.sh (ld_shlibs) [aix5*]: Disable on unknown CPU types.
9846 * ltcf-cxx.sh, ltcf-gcj.sh: Likewise.
9847
9848 2001-01-24 Alexandre Oliva <aoliva@redhat.com>
9849
9850 * ltmain.sh (TAG disable-shared, TAG disable-static): Make sure we
9851 keep at least one of build_libtool_libs or build_old_libs set to
9852 yes.
9853
9854 2001-01-24 Alexandre Oliva <aoliva@redhat.com>
9855
9856 * ltcf-gcj.sh (lt_simple_link_test_code): Remove stray `(0)'.
9857 * libtool.m4 (_AC_LIBTOOL_GCJ): Pass $CPPFLAGS on.
9858
9859 2000-11-07 Philip Blundell <pb@futuretv.com>
9860
9861 * Makefile.in (ETC_SUPPORT): Also add configbuild.* and configdev.*.
9862
9863 2000-11-03 Philip Blundell <pb@futuretv.com>
9864
9865 * Makefile.in (ETC_SUPPORT): Add configure.texi and associated info
9866 files.
9867
9868 2001-01-15 Jeff Johnston <jjohnstn@redhat.com>
9869
9870 * COPYING.NEWLIB: Put into source repository.
9871
9872 2001-01-15 Ben Elliston <bje@redhat.com>
9873
9874 * configure.in (host_tools): Add sid.
9875 Always configure cgen.
9876 * Makefile.in (all-sid): New target.
9877 (check-sid, clean-sid, install-sid): Likewise.
9878
9879 2001-01-07 Andreas Jaeger <aj@suse.de>
9880
9881 * config.sub, config.guess: Update from subversions.
9882
9883 2000-12-12 Alexandre Oliva <aoliva@redhat.com>
9884
9885 * configure.in: Disable language-specific target libraries for
9886 languages that aren't enabled.
9887
9888 2000-11-24 Nick Clifton <nickc@redhat.com>
9889
9890 * configure.in (xscale-elf): Add target.
9891 (xscale-coff): Add target.
9892 (c4x, c5x, tic54x): Move after ARM targets.
9893
9894 2000-11-23 Alexandre Oliva <aoliva@redhat.com>
9895
9896 * ltcf-gcj.sh: Added file, required by 2000-11-18 merge.
9897
9898 2000-11-20 Ian Lance Taylor <ian@zembu.com>
9899
9900 * ltcf-cxx.sh: Added file, required by 2000-11-18 merge.
9901
9902 2000-11-18 Alexandre Oliva <aoliva@redhat.com>
9903
9904 * Makefile.in: Merge with GCC and libgcj.
9905 (ALL_GCC_C, ALL_GCC_CXX): New macros. Use them as dependencies of
9906 configure-target-<library> when their configure scripts need the C
9907 or C++ library to have already been built to work properly.
9908 (do_proto_toplev): Set them to an empty string.
9909
9910 2000-11-18 Alexandre Oliva <aoliva@redhat.com>
9911
9912 * Makefile.in (HOST_LIB_PATH, TARGET_LIB_PATH): New macros.
9913 (REALLY_SET_LIB_PATH): Use them.
9914
9915 2000-11-06 Christopher Faylor <cgf@cygnus.com>
9916
9917 * config.sub: Add support for Sun Chorus
9918
9919 2000-11-02 Per Lundberg <plundis@chaosdev.org>
9920
9921 * config.sub: Add support for the *-storm-chaos OS.
9922
9923 2000-10-30 Stephane Carrez <stcarrez@worldnet.fr>
9924
9925 * configure.in (noconfigdirs): Don't compile some
9926 of the libraries for 68HC11 & 68hc12 targets.
9927
9928 2000-09-30 Alexandre Oliva <aoliva@redhat.com>
9929
9930 * ltconfig, ltmain.sh, libtool.m4: Updated from libtool
9931 multi-language branch, to work around Solaris' /bin/sh bug. Rebuilt
9932 all affected `configure' scripts.
9933
9934 2000-09-25 Alexandre Oliva <aoliva@redhat.com>
9935
9936 * Makefile.in (DEVO_SUPPORT): Added gettext.m4, libtool.m4 and
9937 ltcf-c.sh.
9938
9939 2000-09-12 Philip Blundell <philb@gnu.org>
9940
9941 * config.sub, config.guess: Update from subversions.
9942
9943 2000-09-06 Alexandre Oliva <aoliva@redhat.com>
9944
9945 * Makefile.in (all-zlib): Added dummy target.
9946
9947 * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh: Updated from libtool
9948 multi-language branch.
9949
9950 2000-09-05 Alexandre Oliva <aoliva@redhat.com>
9951
9952 * Makefile.in (all-bootstrap): Added all-texinfo and all-zlib.
9953 (bootstrap*): Depend on all-bootstrap.
9954
9955 2000-09-02 Alexandre Oliva <aoliva@redhat.com>, DJ Delorie <dj@redhat.com>
9956
9957 * configure.in (FLAGS_FOR_TARGET): Use -nostdinc even for Canadian
9958 crosses, but add gcc/include to the header search path for them.
9959
9960 2000-08-31 Alexandre Oliva <aoliva@redhat.com>
9961
9962 * ltconfig, ltmain.sh: Updated from libtool multi-language branch.
9963 * libtool.m4, ltcf-c.sh: Copied from libtool multi-language branch.
9964 * gettext.m4: New file, extracted from aclocal.m4.
9965
9966 2000-08-22 Alexandre Oliva <aoliva@redhat.com>
9967
9968 * config-ml.in (CC, CXX): Avoid trailing whitespace.
9969 (LD_LIBRARY_PATH, SHLIB_PATH): Adjust for multilibs and export to
9970 sub-configures.
9971
9972 2000-08-20 Doug Evans <dje@casey.transmeta.com>
9973
9974 * Makefile.in (ALL_MODULES): Add all-cgen.
9975 (CROSS_CHECK_MODULES,INSTALL_MODULES,CLEAN_MODULES): Similarily.
9976 (all-cgen): New target.
9977 (all-opcodes,all-sim): Depend on all-cgen.
9978 * configure.in (host_tools): Add cgen.
9979 Only configure cgen if --enable-cgen-maint.
9980
9981 2000-08-17 Alexandre Oliva <aoliva@redhat.com>
9982
9983 * config-ml.in (CC, CXX): Don't introduce a leading space.
9984
9985 2000-08-16 Alexandre Oliva <aoliva@redhat.com>
9986
9987 * configure.in (libstdcxx_flags): Use
9988 libstdc++-v3/src/libstdc++.INC.
9989
9990 2000-08-15 Alexandre Oliva <aoliva@redhat.com>
9991
9992 * configure.in (libstdcxx_flags): Use libstdc++-v3/src/INCLUDES.
9993
9994 2000-08-11 Jason Merrill <jason@redhat.com>
9995
9996 * configure.in (CC_FOR_TARGET, CHILL_FOR_TARGET,
9997 CXX_FOR_TARGET): Add -B$$r/gcc/ here.
9998 (FLAGS_FOR_TARGET): Not here.
9999 (CHILL_FOR_TARGET, CXX_FOR_TARGET): Don't check the list of languages.
10000
10001 2000-08-07 DJ Delorie <dj@redhat.com>
10002
10003 * configure.in (FLAGS_FOR_TARGET): invert test for xgcc, should mean
10004 "if we're also building gcc, and it's a gcc that will run on the
10005 build machine, we want to use its includes instead of the system's
10006 default includes".
10007
10008 2000-08-03 Alexandre Oliva <aoliva@redhat.com>
10009
10010 * configure.in (libstdcxx_flags): Don't use `"'.
10011
10012 * config-ml.in: Adjust multilib search paths to the
10013 appropriate multilib tree.
10014
10015 2000-08-02 Alexandre Oliva <aoliva@redhat.com>
10016
10017 * configure.in (CHILL_FOR_TARGET, CXX_FOR_TARGET): Convert blanks to
10018 commas in $LANGUAGES.
10019
10020 2000-08-01 Alexandre Oliva <aoliva@redhat.com>
10021
10022 * configure.in (qCXX_FOR_TARGET): Use echo instead of expr.
10023
10024 2000-07-31 Alexandre Oliva <aoliva@redhat.com>
10025
10026 * configure.in (qCXX_FOR_TARGET): Quote `&' characters in
10027 CXX_FOR_TARGET for sed.
10028
10029 2000-07-30 Alexandre Oliva <aoliva@redhat.com>
10030
10031 * configure.in (CC_FOR_TARGET, CHILL_FOR_TARGET, CXX_FOR_TARGET):
10032 Do not override if already set in the environment or in configure.
10033 Don't duplicate $(FLAGS_FOR_TARGET) if it already appears in them.
10034 (FLAGS_FOR_TARGET): Don't use host directories on Canadian crosses.
10035
10036 2000-07-27 Alexandre Oliva <aoliva@redhat.com>
10037
10038 * Makefile.in (FLAGS_FOR_TARGET): New macro.
10039 (GCC_FOR_TARGET): Use it.
10040 (CC_FOR_TARGET, CXX_FOR_TARGET, CHILL_FOR_TARGET): Now defined...
10041 * configure.in: ... here.
10042 (FLAGS_FOR_TARGET): Define. Add ld build dir to -L path.
10043 (libstdcxx_flags): Define and append to CXX_FOR_TARGET.
10044
10045 2000-07-24 Alexandre Oliva <aoliva@redhat.com>
10046
10047 * Makefile.in (configure-target-libf2c): Depend on $(ALL_GCC).
10048 (configure-target-libchill, configure-target-libobjc): Likewise.
10049
10050 * configure.in: Use the same cache file for all target libs.
10051 * config-ml.in: But different cache files per multilib variant.
10052
10053 2000-07-23 Michael Sokolov <msokolov@ivan.Harhan.ORG>
10054
10055 * configure (topsrcdir): Don't use dirname.
10056
10057 2000-07-20 Jason Merrill <jason@redhat.com>
10058
10059 * configure.in: Remove all references to libg++ and librx.
10060
10061 * configure, configure.in, Makefile.in: Unify gcc and binutils.
10062
10063 2000-07-20 Hans-Peter Nilsson <hp@axis.com>
10064
10065 * config.sub: Update to subversions version 2000-07-06.
10066
10067 2000-07-12 Andrew Haley <aph@cygnus.com>
10068
10069 * configure.in (host_makefile_frag): Use mh-ia64pic on IA-64 hosts.
10070 (target_makefile_frag): Use mt-ia64pic on IA-64 targets.
10071
10072 2000-07-07 Phil Edwards <pme@sourceware.cygnus.com>
10073
10074 * symlink-tree: Check number of arguments.
10075
10076 2000-06-06 Andrew Cagney <cagney@b1.cygnus.com>
10077
10078 * texinfo/texinfo.tex: Update to version 2000-05-28.15.
10079
10080 2000-07-05 Jim Wilson <wilson@cygnus.com>
10081
10082 * Makefile.in (CXX_FOR_TARGET): Add libstdc++ to the library
10083 search path for a g++ extracted from the build tree. This
10084 will allow link tests run by configure scripts in
10085 subdirectories to succeed.
10086
10087 2000-07-01 Koundinya K <kk@ddeorg.soft.net>
10088
10089 * ltconfig: Add support for mips-dde-sysv4.2MP
10090
10091 2000-06-28 Corinna Vinschen <vinschen@cygnus.com>
10092
10093 * ltconfig: Check for host_os beeing one of `cygwin', `mingw' or
10094 `os2'. Force ac_cv_exeext to be ".exe" in that case.
10095
10096 2000-06-19 Timothy Wall <twall@cygnus.com>
10097
10098 * configure.in (noconfigdirs): Set noconfigdirs for tic54x target.
10099 * config.sub: Add tic54x target.
10100
10101 2000-06-07 Phillip Thomas <pthomas@suse.de>
10102
10103 * README-maintainer-mode: New file: Contains notes on using
10104 --enable-maintainer-mode with binutils.
10105
10106 2000-05-29 Andrew Cagney <cagney@b1.cygnus.com>
10107
10108 * texinfo/texinfo.tex: Update. Version from makeinfo 4.0.
10109
10110 2000-05-30 Andrew Cagney <cagney@b1.cygnus.com>
10111
10112 * config.sub: Import CVS version 1.167 Tue May 30 09:00:07 2000.
10113 * config.guess: Import CVS version 1.148 Tue May 30 09:00:06 2000
10114
10115 20000-05-21 H.J. Lu (hjl@gnu.org)
10116
10117 * Makefile.in (CC_FOR_TARGET): Make sure as/ld in the gcc
10118 directory are used if they exist. Make sure
10119 $(build_tooldir)/include is searched for header files,
10120 $(build_tooldir)/lib/ for library files.
10121 (GCC_FOR_TARGET): Likewise.
10122 (CXX_FOR_TARGET): Likewise.
10123
10124 2000-05-18 Jeffrey A Law (law@cygnus.com)
10125
10126 * configure.in (hppa*64*-*-*): Do build ld for this configuration.
10127
10128 2000-05-17 Alexandre Oliva <aoliva@cygnus.com>
10129
10130 * Makefile.in (configure-target-libiberty): Depend on
10131 configure-target-newlib.
10132
10133 2000-05-16 Alexandre Oliva <aoliva@cygnus.com>
10134
10135 * configure.in, Makefile.in: Merge all libffi-related
10136 configury stuff from the libgcj tree.
10137
10138 2000-05-16 Andrew Cagney <cagney@b1.cygnus.com>
10139
10140 Thu Apr 27 11:01:48 2000 Andrew Cagney <cagney@b1.cygnus.com>:
10141 * Makefile.in (do-tar-bz2, do-md5sum): Skip CVS directories.
10142
10143 2000-05-16 Andrew Cagney <cagney@b1.cygnus.com>
10144
10145 Wed Apr 26 17:03:53 2000 Andrew Cagney <cagney@b1.cygnus.com>:
10146 * Makefile.in (do-djunpack): New target. Update djunpack.bat with
10147 current version information. Add to proto-toplev directory.
10148 (gdb-taz): Build do-djunpack.
10149
10150 2000-05-15 David Edelsohn <edelsohn@gnu.org>
10151
10152 * configure.in: Special case powerpc*-*-aix* target_makefile_frag.
10153
10154 2000-05-13 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
10155
10156 * ltmain.sh: Preserve in relink_command any environment
10157 variables that may affect the linker behavior.
10158
10159 2000-05-12 Jeffrey A Law (law@cygnus.com)
10160
10161 * config.sub (basic_machine): Recognize hppa64 as a valid cpu type.
10162
10163 2000-05-10 Jim Wilson <wilson@cygnus.com>
10164
10165 * configure.in (ia64*-*-elf*): Add gdb and friends to noconfigdirs.
10166
10167 2000-05-08 Eli Zaretskii <eliz@is.elta.co.il>
10168
10169 * djunpack.bat: Change the Sed script to replace @V@ in fnchange.lst
10170 with the version name.
10171
10172 2000-05-01 Benjamin Kosnik <bkoz@cygnus.com>
10173
10174 * config.if: Tweak.
10175
10176 2000-04-23 Eli Zaretskii <eliz@is.elta.co.il>
10177
10178 * djunpack.bat: New file.
10179
10180 2000-04-19 Andrew Cagney <cagney@b1.cygnus.com>
10181
10182 * Makefile.in (taz, gdb-taz, gas.tar.bz2, binutils.tar.bz2,
10183 gas+binutils.tar.bz2, libg++.tar.bz2, gnats.tar.bz2, gdb.tar.bz2,
10184 dejagnu.tar.bz2, gdb+dejagnu.tar.bz2, insight.tar.bz2,
10185 insight+dejagnu.tar.bz2, newlib.tar.bz2): Pass MD5PROG to sub-make.
10186
10187 2000-04-16 Dave Pitts <dpitts@cozx.com>
10188
10189 * config.sub (case $basic_machine): Change default for "ibm-*"
10190 to "openedition".
10191
10192 2000-04-12 Andrew Cagney <cagney@b1.cygnus.com>
10193
10194 * Makefile.in (gdb-taz): New target. GDB specific archive.
10195 (do-md5sum): New target.
10196 (MD5PROG): Define.
10197 (PACKAGE): Default to TOOL.
10198 (VER): Default to a shell script.
10199 (taz): Rewrite target. Move real work to do-proto-toplev. Include
10200 md5 checksum generation.
10201 (do-proto-toplev): New target. Create $(PACKAGE)-$(VER) link.
10202 (do-tar-bz2): Delete creation of $(PACKAGE)-$(VER) link.
10203 (gdb.tar.bz2, dejagnu.tar.bz2, gdb+dejagnu.tar.bz2,
10204 insight.tar.bz2): Use gdb-taz to create archive.
10205
10206 2000-04-07 Andrew Cagney <cagney@b1.cygnus.com>
10207
10208 * configure (warn_cflags): Delete.
10209
10210 2000-04-05 Benjamin Kosnik <bkoz@cygnus.com>
10211 Martin v. Loewis <martin@loewis.home.cs.tu-berlin.de>
10212
10213 * configure.in (enable_libstdcxx_v3): Add.
10214 (target_libs): Add bits here to switch between libstdc++-v2 and
10215 libstdc++-v3.
10216 * config.if: And this file too.
10217 * Makefile.in: Add libstdc++-v3 targets.
10218
10219 2000-04-05 Michael Meissner <meissner@redhat.com>
10220
10221 * config.sub (d30v): Add d30v as a basic machine type.
10222
10223 2000-03-29 Jason Merrill <jason@casey.cygnus.com>
10224
10225 * configure.in: -linux-gnu*, not -linux-gnu.
10226
10227 2000-03-03 Andrew Cagney <cagney@b1.cygnus.com>
10228
10229 * Makefile.in (taz): Set PACKAGE to TOOL when not defined.
10230 (do-tar-bz2): Replace TOOL with PACKAGE.
10231 (gdb.tar.bz2): Remove GDBTK from GDB package.
10232 (gdb+dejagnu.tar.bz2, insight.tar.bz2, insight+dejagnu.tar.bz2,
10233 dejagnu.tar.bz2): New packages.
10234
10235 2000-02-27 Andreas Jaeger <aj@suse.de>
10236
10237 * configure.in: Add entry for mips*-*-linux*, move catch all
10238 *-*-*linux* entry below this one.
10239
10240 2000-02-27 Ian Lance Taylor <ian@zembu.com>
10241
10242 * ltconfig, ltmain.sh: Update to libtool 1.3.4.
10243
10244 2000-02-24 Nick Clifton <nickc@cygnus.com>
10245
10246 * config.sub: Support an OS of "wince".
10247
10248 2000-02-24 Andrew Cagney <cagney@b1.cygnus.com>
10249
10250 * config.guess, config.sub: Updated to match config's 2000-02-15
10251 version.
10252
10253 2000-02-23 Linas Vepstas <linas@linas.org>
10254
10255 * config.sub: Add support for Linux/IBM 370.
10256 * configure.in: Likewise.
10257
10258 2000-02-22 Nick Clifton <nickc@cygnus.com>
10259
10260 * configure.in: Add mips-pe, sh-pe and arm-wince-pe targets.
10261
10262 2000-02-20 Christopher Faylor <cgf@cygnus.com>
10263
10264 * config.guess: Guess "cygwin" rather than "cygwin32".
10265
10266 2000-02-16 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10267
10268 * configure (gcc_version): When setting, narrow search to
10269 lines containing `version_string'.
10270
10271 2000-02-15 Denis Chertykov <denisc@overta.ru>
10272
10273 * config.sub: Add support for avr target.
10274
10275 2000-02-01 Hans-Peter Nilsson <hp@bitrange.com>
10276
10277 * config.sub: Add mmix-knuth-mmixware.
10278
10279 2000-01-27 Christopher Faylor <cgf@redhat.com>
10280
10281 * Makefile.in (CC_FOR_TARGET): Add new winsup directory
10282 structure stuff to -L library search.
10283 (CXX_FOR_TARGET): Ditto.
10284 (CROSS_CHECK_MODULES): Fix spelling mistake.
10285
10286 2000-01-24 Mark Mitchell <mark@codesourcery.com>
10287
10288 * Makefile.in (CXX_FOR_TARGET): Use g++, not xgcc, to invoke
10289 the C++ compiler.
10290
10291 2000-01-12 Richard Henderson <rth@cygnus.com>
10292
10293 * configure.in: Don't build some bits for beos.
10294
10295 2000-01-12 Joel Sherrill (joel@OARcorp.com)
10296
10297 * Makefile.in (CC_FOR_TARGET): Use newlib libraries as well
10298 as include files.
10299
10300 2000-01-06 Geoff Keating <geoffk@cygnus.com>
10301
10302 * configure.in: Use mt-aix43 to handle *_TARGET defs,
10303 not mh-aix43.
10304
10305 1999-12-14 Richard Henderson <rth@cygnus.com>
10306
10307 * config.guess (alpha-osf, alpha-linux): Detect ev67.
10308 * config.sub: Accept alphaev[78], alphaev8.
10309
10310 1999-12-03 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
10311
10312 * config.guess, config.sub: Update from autoconf.
10313
10314 Tue Nov 23 00:57:41 1999 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
10315
10316 * config-ml.in (sparc*-*-*): Disable sparcv9 support if the
10317 necessary libraries are missing.
10318
10319 1999-10-25 Andreas Schwab <schwab@suse.de>
10320
10321 * configure: Fix quoting inside arguments of eval.
10322
10323 1999-10-21 Nick Clifton <nickc@cygnus.com>
10324
10325 * config-ml.in: Allow suppression of some ARM multilibs.
10326
10327 Tue Sep 7 23:33:57 1999 Linas Vepstas <linas@linas.org>
10328
10329 * config.guess: Add OS/390 match pattern.
10330 * config.sub: Add mvs, openedition targets.
10331 * configure.in (i370-ibm-opened*): New.
10332
10333 1999-09-04 Steve Chamberlain <sac@pobox.com>
10334
10335 * config.sub: Add support for configuring for pj.
10336
10337 1999-08-31 Nick Clifton <nickc@cygnus.com>
10338
10339 * config.sub (maybe_os): Add support for configuring for fr30.
10340
10341 1999-08-25 Nick Clifton <nickc@cygnus.com>
10342
10343 * configure.in: Do not configure or build ld for AIX
10344 platforms. ld is known to be broken on these platforms.
10345
10346 Wed Aug 25 01:12:25 1999 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
10347
10348 * config-ml.in: Pass compiler flag corresponding to multidirs to
10349 subdir configures.
10350
10351 1999-08-09 Ian Lance Taylor <ian@zembu.com>
10352
10353 * Makefile.in (LDFLAGS): Define.
10354
10355 1999-08-08 Mumit Khan <khan@xraylith.wisc.edu>
10356
10357 * configure.in (i[3456]-*-mingw32*): Don't put gprof in
10358 noconfigdirs.
10359 (*-*-cygwin*): Likewise.
10360
10361 1999-08-08 Ian Lance Taylor <ian@zembu.com>
10362
10363 * mkdep: New file.
10364 * Makefile.in (GAS_SUPPORT_DIRS): Add mkdep.
10365 (BINUTILS_SUPPORT_DIRS): Add mkdep.
10366
10367 From Eli Zaretskii <eliz@is.elta.co.il>:
10368 * configure (tmpfile): Change cONf$$ to cNf$$ to avoid an overly
10369 long file name when using DJGPP on MS-DOS.
10370
10371 Wed Aug 4 02:07:14 1999 Jeffrey A Law (law@cygnus.com)
10372
10373 * config.sub (vxworks case): Use os=-vxworks, not os=vxworks.
10374
10375 1999-07-30 Alan Modra <alan@spri.levels.unisa.edu.au>
10376
10377 * Makefile.in (check-target-libio): Remove all-target-libstdc++
10378 dependency as this causes "make check" to globally "make all"
10379
10380 Tue Jun 22 23:45:18 1999 Tom Tromey <tromey@cygnus.com>
10381
10382 * configure.in (target_libs): Added target-zlib.
10383 * Makefile.in (ALL_TARGET_MODULES): Added zlib.
10384 (CONFIGURE_TARGET_MODULES): Likewise.
10385 (CHECK_TARGET_MODULES): Likewise.
10386 (INSTALL_TARGET_MODULES): Likewise.
10387 (CLEAN_TARGET_MODULES): Likewise.
10388 (configure-target-zlib): New target.
10389 (all-target-zlib): Likewise.
10390 (all-target-libjava): Depend on all-target-zlib.
10391 (configure-target-libjava): Depend on configure-target-zlib.
10392
10393 * Makefile.in (configure-target-libjava): Depend on
10394 configure-target-newlib.
10395 (configure-target-boehm-gc): New target.
10396 (configure-target-qthreads): New target.
10397
10398 * configure.in (target_libs): Added target-qthreads.
10399 * Makefile.in (ALL_TARGET_MODULES): Added qthreads.
10400 (CONFIGURE_TARGET_MODULES): Likewise.
10401 (CHECK_TARGET_MODULES): Likewise.
10402 (INSTALL_TARGET_MODULES): Likewise.
10403 (CLEAN_TARGET_MODULES): Likewise.
10404 (all-target-qthreads): New target.
10405 (configure-target-libjava): Depend on configure-target-qthreads.
10406 (all-target-libjava): Depend on all-target-qthreads.
10407
10408 * Makefile.in (ALL_TARGET_MODULES): Added libjava, boehm-gc.
10409 (CONFIGURE_TARGET_MODULES): Likewise.
10410 (CHECK_TARGET_MODULES): Likewise.
10411 (INSTALL_TARGET_MODULES): Likewise.
10412 (CLEAN_TARGET_MODULES): Likewise.
10413 (all-target-libjava): New target.
10414 (all-target-boehm-gc): Likewise.
10415 * configure.in (target_libs): Added libjava, boehm-gc.
10416
10417 1999-07-22 Ian Lance Taylor <ian@zembu.com>
10418
10419 * Makefile.in (binutils.tar.bz2): Don't pass makeall.bat and
10420 configure.bat in SUPPORT_FILES.
10421 (gas+binutils.tar.bz2): Likewise.
10422
10423 * makeall.bat: Remove; obsolete.
10424
10425 1999-07-21 Ian Lance Taylor <ian@zembu.com>
10426
10427 From Mark Elbrecht:
10428 * configure.bat: Remove; obsolete.
10429
10430 1999-07-11 Ian Lance Taylor <ian@zembu.com>
10431
10432 * configure: Add -W -Wall to the default CFLAGS when compiling with
10433 gcc.
10434
10435 Thu Jul 8 12:32:23 1999 John David Anglin <dave@hiauly1.hia.nrc.ca>
10436
10437 * configure.in: Build ld, binutils & gas for hppa*-*-linux-gnu*.
10438
10439 1999-06-30 Mark Mitchell <mark@codesourcery.com>
10440
10441 * configure.in: Build ld on IRIX6.
10442
10443 1999-06-12 Ian Lance Taylor <ian@zembu.com>
10444
10445 * Makefile.in: Change distribution targets to use bzip2 instead of
10446 gzip.
10447 (TEXINFO_SUPPORT): Set to just texinfo/texinfo.tex.
10448 (taz): Don't use texinfo/gpl.texinfo or texinfo/lgpl.texinfo.
10449
10450 1999-06-04 Nick Clifton <nickc@cygnus.com>
10451
10452 * config.sub: Add mcore target.
10453
10454 1999-05-30 Cort Dougan <cort@cs.nmt.edu>
10455
10456 * config.guess (ppc-*-linux-gnu): Also use ld emul elf32ppclinux.
10457
10458 1999-05-25 H.J. Lu (hjl@gnu.org)
10459
10460 * config.guess (dummy): Changed to $dummy.
10461
10462 1999-05-24 Nick Clifton <nickc@cygnus.com>
10463
10464 * config.sub: Tidied up case statements.
10465
10466 1999-05-22 Ben Elliston <bje@cygnus.com>
10467
10468 * config.guess: Handle NEC UX/4800. Contributed by Jiro Takabatake
10469 <jiro@din.or.jp>.
10470
10471 * config.guess: Merge with FSF version. Future changes will be
10472 more accurately recorded in this ChangeLog.
10473 * config.sub: Likewise.
10474
10475 1999-05-20 Stephen L Moshier <moshier@world.std.com>
10476
10477 * Makefile.in (GCC_FOR_TARGET): Add -I$(build_tooldir)/include.
10478
10479 1999-04-30 Tom Tromey <tromey@cygnus.com>
10480
10481 * ltmain.sh: [mode link] Always use CC given by ltconfig.
10482
10483 1999-04-23 Tom Tromey <tromey@cygnus.com>
10484
10485 * ltconfig, ltmain.sh: Update to libtool 1.2f.
10486
10487 1999-04-20 Drew Moseley <dmoseley@cygnus.com>
10488
10489 * configure.in (noconfigdirs): Don't build libstub for arm-elf targets.
10490 (noconfigdirs): Don't build any bsp stuff for for arm-oabi targets.
10491 Bad merge removed these two changes.
10492
10493 Tue Apr 13 22:50:54 1999 Donn Terry (donn@interix.com)
10494 Martin Heller (Ing.-Buero_Heller@t-online.de)
10495
10496 * config.guess (interix Alpha): Add.
10497
10498 1999-04-11 Richard Henderson <rth@cygnus.com>
10499
10500 * configure.in (i?86-*-beos*): Do config gperf; don't config
10501 gdb, newlib, or libgloss.
10502
10503 1999-04-11 Alexandre Oliva <oliva@dcc.unicamp.br>
10504
10505 * config-ml.in: On mips*-*-*, if multidirs contains mabi=64, try to
10506 link a trivial program with -mabi=64. If it fails, remove mabi=64
10507 from multidirs.
10508
10509 1999-04-10 Philipp Thomas (kthomas@gwdg.de)
10510
10511 * config.sub: Set basic_machine to i586 when target_alias = k6-*.
10512
10513 1999-04-08 Nick Clifton <nickc@cygnus.com>
10514
10515 * config.sub: Add support for mcore targets.
10516
10517 1999-04-07 Michael Meissner <meissner@cygnus.com>
10518
10519 * configure.in (d30v-*): Use config/mt-d30v as makefile fragment,
10520 not mt-ospace, in order to shut up assembler warning about using
10521 symbols that are named the same as registers.
10522
10523 1999-04-07 Drew Moseley <dmoseley@cygnus.com>
10524
10525 * Makefile.in (all-target-cygmon): Added all-target-bsp to the
10526 dependency list for all-target-cygmon.
10527
10528 1999-04-05 Doug Evans <devans@casey.cygnus.com>
10529
10530 * config-ml.in: Check $host, not $target, for selective multilibs.
10531 (arm-*-*): Allow disabling of biendian, h/w fp, 26 bit apcs,
10532 thumb interworking, and underscore prefix multilibs.
10533
10534 1999-04-04 Ian Lance Taylor <ian@zembu.com>
10535
10536 * missing: Update to version from current automake.
10537
10538 Fri Apr 2 15:11:32 1999 H.J. Lu (hjl@gnu.org)
10539
10540 * configure (gxx_include_dir): Removed.
10541
10542 * configure.in (gxx_include_dir): Handle it.
10543 * Makefile.in: Likewise.
10544
10545 1999-03-29 Gavin Romig-Koch <gavin@cygnus.com>
10546
10547 * config.sub (mips64vr4111,mips64vr4111el) Add.
10548
10549 1999-03-21 Ben Elliston <bje@cygnus.com>
10550
10551 * config.guess: Correct typo for detecting ELF on FreeBSD.
10552
10553 Thu Mar 18 00:17:50 1999 Mark Elbrecht <snowball3@usa.net>
10554
10555 * configure.in (pc-msdosdjgpp): Set host_makefile_frag to
10556 config/mh-djgpp.
10557
10558 Thu Mar 11 18:37:23 1999 Drew Moseley <dmoseley@cygnus.com>
10559
10560 * Makefile.in (all-target-bsp): Added all-gcc all-binutils and
10561 all-target-newlib to dependency list for all-target-bsp.
10562
10563 Thu Mar 11 01:19:31 1999 Mumit Khan <khan@xraylith.wisc.edu>
10564
10565 * config.sub: Add i386-uwin support.
10566 * config.guess: Likewise.
10567
10568 Thu Mar 11 01:07:55 1999 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
10569
10570 * configure.in: cleanup, add mh-*pic handling for arm, special
10571 case powerpc*-*-aix*
10572
10573 Wed Mar 10 18:35:07 1999 Jeff Johnston <jjohnstn@cygnus.com>
10574
10575 * configure.in (noconfigdirs): Removed target-libgloss so libnosys.a
10576 can be built.
10577
10578 Wed Mar 10 17:39:09 1999 Drew Moseley <dmoseley@cygnus.com>
10579
10580 * configure.in: Added bsp support to arm-*-coff and arm-*-elf
10581 targets.
10582
10583 1999-03-02 Nick Clifton <nickc@cygnus.com>
10584
10585 * config.sub: Rename CYGNUS LOCAL to EGCS LOCAL
10586
10587 1999-02-28 Geoffrey Noer <noer@cygnus.com>
10588
10589 * config.sub: Check for "cygwin*" rather than "cygwin32*"
10590
10591 1999-02-24 Nick Clifton <nickc@cygnus.com>
10592
10593 * config.sub: Fix typo in arm recognition.
10594
10595 1999-02-24 Drew Moseley <dmoseley@cygnus.com>
10596
10597 * configure.in (noconfigdirs): Changed target_configdirs to
10598 include target-bsp only for m68k-*-elf* and m68k-*-coff*
10599 rather than m68k-*-* since it is not known to work on
10600 m68k-aout. Ditto for arm-*-*oabi.
10601
10602 1999-02-24 Stan Shebs <shebs@andros.cygnus.com>
10603
10604 * configure.in (*-*-windows*): Remove, no longer used.
10605
10606 1999-02-19 Ben Elliston <bje@cygnus.com>
10607
10608 * config.guess: Automatically recognise ELF on FreeBSD. From Niall
10609 Smart and improved by Andrew Cagney.
10610
10611 1999-02-18 Marc Espie <espie@cvs.openbsd.org>
10612
10613 * config.guess: Recognize openbsd-*-hppa.
10614
10615 1999-02-17 H.J. Lu (hjl@gnu.org)
10616
10617 * Makefile.in (REALLY_SET_LIB_PATH): Append $$$(RPATH_ENVVAR)
10618 only if it is not empty.
10619
10620 1999-02-17 Nick Clifton <nickc@cygnus.com>
10621
10622 Patch from: Scott Bambrough <scottb@corelcomputer.com>
10623
10624 * config.guess: Modified to recognize uname's armv* syntax.
10625
10626 * config.sub: Modified to recognize uname's armv* syntax.
10627
10628 1999-02-17 Mark Salter <msalter@cygnus.com>
10629
10630 * configure.in: Added target-bsp for sparclite.
10631
10632 1999-02-08 Richard Henderson <rth@cygnus.com>
10633
10634 * config.sub: Recognize alphapca5[67] and up to alphaev8.
10635
10636 1999-02-08 Nick Clifton <nickc@cygnus.com>
10637
10638 * configure.in: Add support for strongarm port.
10639 * config.sub: Add support for strongarm target.
10640
10641 1999-02-07 Mumit Khan <khan@xraylith.wisc.edu>
10642
10643 * configure.in (*-*-cygwin32*): Use config/mh-cygwin instead of
10644 the old name config/mh-cygwin32.
10645 Enable texinfo.
10646
10647 1999-02-04 Ian Lance Taylor <ian@cygnus.com>
10648
10649 * configure.in: Do build ld for ix86 Solaris.
10650
10651 1999-02-02 Jim Wilson <wilson@cygnus.com>
10652
10653 * Makefile.in (EXTRA_GCC_FLAGS): Set AR to $AR instead of
10654 $AR_FOR_TARGET. Likewise for RANLIB.
10655
10656 1999-02-02 Catherine Moore <clm@cygnus.com>
10657
10658 * config.sub (oabi): Recognize.
10659 * configure.in (arm-*-oabi): Handle.
10660
10661 1999-01-30 Robert Lipe (robertlipe@usa.net)
10662
10663 * config.guess: Improve detection of i686 on UnixWare 7.
10664
10665 1999-01-30 Mumit Khan <khan@xraylith.wisc.edu>
10666
10667 * config.guess: Add support for i386-pc-interix.
10668 * config.sub: Likewise.
10669 * configure.in: Likewise.
10670
10671 1999-01-18 Christopher Faylor <cgf@cygnus.com>
10672
10673 * Makefile.in: Remove unneeded all-target-libio from
10674 from all-target-winsup target since it is now unneeded.
10675 Add all-target-libtermcap in its place since it is now
10676 needed.
10677
10678 1998-12-30 Christopher Faylor <cgf@cygnus.com>
10679
10680 * configure.in: makefile stub for cygwin target is probably
10681 unnecessary. Remove it for now.
10682
10683 1998-12-30 Christopher Faylor <cgf@cygnus.com>
10684
10685 * configure.in: libtermcap.a should be built when cygwin is the
10686 target as well as the host.
10687 * config.guess: Allow mixed case in cygwin uname output.
10688 * Makefile.in: Add libtermcap target.
10689
10690 1998-12-23 Jeffrey A Law (law@cygnus.com)
10691
10692 * config.sub: Clean up handling of hppa2.0.
10693
10694 1998-12-22 Rodney Brown (rodneybrown@pmsc.com)
10695
10696 * config.guess: Use C code to identify more HP machines.
10697
10698 Thu Dec 17 01:22:30 1998 Jeffrey A Law (law@cygnus.com)
10699
10700 * config.sub: Handle hppa2.0.
10701
10702 Tue Dec 15 17:02:58 1998 Bob Manson <manson@charmed.cygnus.com>
10703
10704 * configure.in: Add cygmon for x86-coff and x86-elf. Configure
10705 cygmon for all sparclite targets, regardless of object format.
10706
10707 1998-12-15 Mark Salter <msalter@cygnus.com>
10708
10709 * configure.in: Added target-bsp for several target architectures.
10710
10711 * Makefile.in: Added rules for bsp.
10712
10713 Fri Dec 4 01:34:02 1998 Jeffrey A Law (law@cygnus.com)
10714
10715 * config.guess: Improve detection of hppa2.0 processors.
10716
10717 Fri Dec 4 01:33:05 1998 Niall Smart <nialls@euristix.ie>
10718
10719 * config.guess: Recognize FreeBSD using ELF automatically.
10720
10721 1998-11-26 Manfred Hollstein <manfred@s-direktnet.de>
10722
10723 * configure (skip-this-dir): Add handling for new shell script, which
10724 might be created by a sub-directory's configure to indicate, this particular
10725 directory is "unwanted".
10726 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): Likewise.
10727
10728 Wed Nov 18 18:28:45 1998 Geoffrey Noer <noer@cygnus.com>
10729
10730 * ltconfig: import from libtool, after changing libtool to
10731 account for the cygwin name change.
10732
10733 Wed Nov 18 18:09:14 1998 Geoffrey Noer <noer@cygnus.com>
10734
10735 * Makefile.in: CC_FOR_TARGET and CXX_FOR_TARGET should also
10736 include newlib/libc/sys/cygwin and newlib/libc/sys/cygwin32.
10737
10738 Wed Nov 18 20:13:29 1998 Christopher Faylor <cgf@cygnus.com>
10739
10740 * configure.in: Add libtermcap to list of cygwin dependencies.
10741
10742 1998-11-17 Geoffrey Noer <noer@cygnus.com>
10743
10744 * Makefile.in: modify CC_FOR_TARGET and CXX_FOR_TARGET so that
10745 they include winsup/include when it's a cygwin target.
10746
10747 1998-11-12 Tom Tromey <tromey@cygnus.com>
10748
10749 * configure.in (host_tools): Added zip.
10750 * Makefile.in (all-target-libjava): Depend on all-zip.
10751 (all-zip): New target.
10752 (ALL_MODULES): Added all-zip.
10753 (NATIVE_CHECK_MODULES): Added check-zip.
10754 (INSTALL_MODULES): Added install-zip.
10755 (CLEAN_MODULES): Added clean-zip.
10756
10757 1998-11-12 Geoffrey Noer <noer@cygnus.com>
10758
10759 * Makefile.in: lose "32" from comment about cygwin.
10760
10761 1998-11-05 Nick Clifton <nickc@cygnus.com>
10762
10763 * configure.in: Use -Os to build target libraries for the fr30.
10764
10765 1998-11-04 Dave Brolley <brolley@cygnus.com>
10766
10767 * config.sub: Add fr30.
10768
10769 1998-11-02 Geoffrey Noer <noer@cygnus.com>
10770
10771 * configure.in: drop "32" from config/mh-cygwin32. Check
10772 cygwin* instead of cygwin32*.
10773 * config.sub: Check cygwin* instead of cygwin32*.
10774
10775 1998-10-22 Robert Lipe <robertl@dgii.com>
10776
10777 * config.guess: Match any version of Unixware7.
10778
10779 1998-10-20 Syd Polk <spolk@cygnus.com>
10780
10781 * Makefile.in configure.in: Add the ability to use tcl8.1 and tk8.1
10782 if desired.
10783
10784 1998-10-18 Jeffrey A Law (law@cygnus.com)
10785
10786 * config.if (cxx_interface, libstdcxx_interface): Do not try to set
10787 these if the appropriate directories and files to not exist.
10788
10789 1998-10-14 Jeffrey A Law (law@cygnus.com)
10790
10791 * Makefile.in (DEVO_SUPPORT): Add config.if.
10792
10793 1998-10-13 Manfred Hollstein <manfred@s-direktnet.de>
10794
10795 * configure: Add pattern to replace "build_tooldir"'s
10796 definition in the generated Makefile with "tooldir"'s
10797 actual value.
10798
10799 Tue Oct 13 09:17:06 1998 Jeffrey A Law (law@cygnus.com)
10800
10801 * config.sub: Bring back lost sparcv9.
10802
10803 * Makefile.in (all-snvavigator): Remove all-flexlm dependency.
10804
10805 Mon Oct 12 12:09:44 1998 Jeffrey A Law (law@cygnus.com)
10806
10807 * Makefile.in (CHILL_FOR_TARGET): Mirror recent changes to
10808 CC_FOR_TARGET and friends.
10809
10810 Mon Oct 12 12:09:30 1998 Alexandre Oliva <oliva@dcc.unicamp.br>
10811
10812 * Makefile.in (build_tooldir): New variable, same as tooldir.
10813 (CC_FOR_TARGET, GCC_FOR_TARGET, CXX_FOR_TARGET): Add
10814 -B$(build_tooldir)/bin/.
10815 (BASE_FLAGS_TO_PASS): Pass build_tooldir down.
10816
10817 Wed Sep 30 22:20:50 1998 Robert Lipe <robertl@dgii.com>
10818
10819 * config.sub: Add support for i[34567]86-pc-udk.
10820 * configure.in: Likewise.
10821
10822 Wed Sep 30 19:23:48 1998 Geoffrey Noer <noer@cygnus.com>
10823
10824 * Makefile.in: add bzip2 package building bits for user
10825 tools module
10826 * configure.in: ditto
10827
10828 Wed Sep 30 03:00:05 1998 Jeffrey A Law (law@cygnus.com)
10829
10830 * Makefile.in (TARGET_CONFIGDIRS): Add libobjc.
10831 (ALL_TARGET_MODULES): Add all-target-libobjc.
10832 (CONFIGURE_TARGET_MODULES, CHECK_TARGET_MODULES): Similarly.
10833 (INSTALL_TARGET_MODULES, CLEAN_TARGET_MODULES): Similarly.
10834 (all-target-libchill): Add dependencies.
10835 * configure.in (target_libs): Add libchill.
10836
10837 1998-09-30 Manfred Hollstein <manfred@s-direktnet.de>
10838
10839 * configure.in (target_subdir): Remove duplicate line.
10840
10841 Tue Sep 29 22:45:41 1998 Felix Lee <flee@cygnus.com>
10842
10843 * Makefile.in (all-automake): fix dependencies.
10844
10845 Mon Sep 28 04:04:27 1998 Jeffrey A Law (law@cygnus.com)
10846
10847 * configure.in: Minor cleanups for building in the $(target_alias)
10848 subdir.
10849
10850 1998-09-22 Jim Wilson <wilson@cygnus.com>
10851
10852 * Makefile.in (bootstrap): Set r and s before make all. Use
10853 BASE_FLAGS_TO_PASS in make all.
10854 (cross): Likewise.
10855
10856 1998-09-20 Mark Mitchell <mark@markmitchell.com>
10857
10858 * Makefile.in (bootstrap): Pass TARGET_FLAGS_TO_PASS to `make all'.
10859
10860 Sun Sep 20 00:13:02 1998 Richard Henderson <rth@cygnus.com>
10861
10862 * config.sub: Fix typo in last change.
10863
10864 1998-09-19 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
10865
10866 * config.sub: Add support for C4x target.
10867 * configure.in: Likewise.
10868
10869 1998-09-13 David S. Miller <davem@pierdol.cobaltmicro.com>
10870
10871 * config.sub: Recognize sparcv9 just like sparc64.
10872
10873 Wed Sep 9 15:44:52 1998 Robert Lipe <robertl@dgii.com>
10874
10875 * config.guess: Match "Pent II" or "PentII" for OpenServer.
10876
10877 Tue Sep 8 01:18:39 1998 Jeffrey A Law (law@cygnus.com)
10878
10879 * config.guess: Correctly identify Pentium II sco boxes.
10880
10881 * config.guess: Fix "tr" code. From Weiwen Liu.
10882
10883 Sat Sep 5 13:56:52 1998 John Hughes <john@Calva.COM>
10884
10885 * configure.in: Do not assume x86-svr4 or x86-unixware can handle
10886 stabs.
10887
10888 Sat Sep 5 02:12:02 1998 Jeffrey A Law (law@cygnus.com)
10889
10890 * Makefile.in (TARGET_CONFIGDIRS): Add libchill.
10891 (ALL_TARGET_MODULES): Add all-target-libchill.
10892 (CONFIGURE_TARGET_MODULES, CHECK_TARGET_MODULES): Similarly.
10893 (INSTALL_TARGET_MODULES, CLEAN_TARGET_MODULES): Similarly.
10894 (all-target-libchill): Add dependencies.
10895 * configure.in (target_libs): Add libchill.
10896
10897 Sun Aug 30 22:27:02 1998 Lutz Wohlrab <lutz.wohlrab@informatik.tu-chemnitz.de>
10898
10899 * config.guess: Avoid assumptions about "tr" behaves when
10900 LANG is set to something other than English.
10901
10902 Sun Aug 30 22:14:44 1998 H.J. Lu (hjl@gnu.org)
10903
10904 * configure (gxx_include_dir): Changed to
10905 '${prefix}/include/g++'-${libstdcxx_interface}.
10906
10907 * config.if: New to determine the interfaces.
10908
10909 Sun Aug 30 21:15:19 1998 Mark Klein (mklein@dis.com)
10910
10911 * config.guess: Detect and handle MPE/IX.
10912 * config.sub: Deal with MPE/IX.
10913
10914 Sat Aug 29 14:32:55 1998 David Edelsohn <edelsohn@mhpcc.edu>
10915
10916 * configure.in: Use mh-aix43.
10917
10918 1998-07-29 Manfred Hollstein <manfred@s-direktnet.de>
10919
10920 * configure: Fix --without/--disable cases for gxx-include-dir.
10921
10922 Fri Aug 28 12:28:26 1998 Per Bothner <bothner@cygnus.com>
10923
10924 * mdata-sh: Imported. Needed for automake support.
10925
10926 Thu Aug 13 12:49:29 1998 H.J. Lu <hjl@gnu.org>
10927
10928 * Makefile.in (taz): Try "chmod -R og=u ." before
10929 "chmod og=u `find . -print`".
10930
10931 Fri Jul 31 09:38:33 1998 Catherine Moore <clm@cygnus.com>
10932
10933 * configure.in: Add arm-elf and thumb-elf support.
10934
10935 Mon Jul 27 16:23:58 1998 Doug Evans <devans@canuck.cygnus.com>
10936
10937 * Makefile.in: Undo previous patch.
10938
10939 Fri Jul 24 19:55:24 1998 Doug Evans <devans@canuck.cygnus.com>
10940
10941 * Makefile.in (INSTALL_TARGET): Move EXTRA_TARGET_HOST_INSTALL_MODULES
10942 to here ...
10943 (install-no-fixedincludes): and here
10944 (INSTALL_MODULES): ... from here.
10945
10946 Fri Jul 24 17:01:42 1998 Ian Lance Taylor <ian@cygnus.com>
10947
10948 * config.sub: Merge with FSF.
10949
10950 * config.guess: Merge with FSF.
10951
10952 Fri Jul 24 08:43:36 1998 Doug Evans <devans@canuck.cygnus.com>
10953
10954 * configure (extraconfigdirs): New variable.
10955 (SUBDIRS): Add extraconfigdirs and recurse on them too.
10956 * Makefile.in (all): Move higher in file.
10957 (EXTRA_TARGET_HOST_ALL_MODULES): New variable.
10958 (EXTRA_TARGET_HOST_{INSTALL,CHECK}_MODULES): New variables.
10959 (ALL_MODULES): Add EXTRA_TARGET_HOST_ALL_MODULES.
10960 (CROSS_CHECK_MODULES): Add EXTRA_TARGET_HOST_CHECK_MODULES.
10961 (INSTALL_MODULES): Add EXTRA_TARGET_HOST_INSTALL_MODULES.
10962
10963 1998-07-23 Brendan Kehoe <brendan@cygnus.com>
10964
10965 * Makefile.in (all-target-libjava): Depend on all-gcc and
10966 all-target-newlib.
10967 (configure-target-libjava): Depend on $(ALL_GCC).
10968
10969 Sat Jul 18 14:32:43 CDT 1998 Robert Lipe <robertl@dgii.com>
10970
10971 * config.guess: (*-pc-sco3.2v5) Add detection for Pentium II.
10972 (*-pc-unixware7) Add detection for Pentium II, Pentium Pro.
10973
10974 Fri Jul 17 13:30:18 1998 Ian Lance Taylor <ian@cygnus.com>
10975
10976 * ylwrap: Change absolute path checks to check for DOS style path
10977 names.
10978
10979 * ylwrap: Don't use a full path name if the source file is in the
10980 same directory. From hjl@lucon.org (H.J. Lu).
10981
10982 * config-ml.in: Default to being verbose, to match Feb 18 change to
10983 configure.
10984
10985 Thu Jul 16 12:29:51 1998 Ian Lance Taylor <ian@cygnus.com>
10986
10987 Brought over from egcs:
10988
10989 Sat Jun 27 22:46:32 1998 Jeffrey A Law (law@cygnus.com)
10990
10991 * configure.in (target_subdir): Set to ${target_alias} instead
10992 of "libraries".
10993
10994 Mon Sep 1 16:45:44 1997 Jim Wilson <wilson@cygnus.com>
10995
10996 * configure.in (target_subdir): Set to libraries if enable_multilib.
10997
10998 Wed Jul 15 01:00:54 1998 Ian Lance Taylor <ian@cygnus.com>
10999
11000 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): If there are any
11001 multilibs, force reconfiguration the first time we create
11002 multilib.out in a subdirectory, in case TARGET_SUBDIR is `.'.
11003
11004 Tue Jul 14 23:41:03 1998 Ian Lance Taylor <ian@cygnus.com>
11005
11006 * configure.in: Strip any --no option from CONFIG_ARGUMENTS, to
11007 avoid confusion with --no-recursion.
11008
11009 Tue Jul 14 15:37:41 1998 Geoffrey Noer <noer@cygnus.com>
11010
11011 * configure.in: Win32 hosts shouldn't use install -x
11012 * install-sh: remove -x option, and special .exe-handling
11013 hack.
11014
11015 Tue Jul 14 15:28:41 1998 Richard Henderson <rth@cygnus.com>
11016
11017 * config.guess: Recognize i586-pc-beos.
11018 * configure.in: Don't build some bits for beos.
11019
11020 Tue Jul 14 13:22:18 1998 Ian Lance Taylor <ian@cygnus.com>
11021
11022 * configure: If CC is set but CFLAGS is not, and CC is gcc, make
11023 CFLAGS default to -O2.
11024
11025 * ltmain.sh: Add some hacks to make SunOS --enable-shared work
11026 when using GNU ld.
11027
11028 Fri Jul 10 13:18:23 1998 Ian Lance Taylor <ian@cygnus.com>
11029
11030 * ltmain.sh: Correct install when using a different shell.
11031
11032 Tue Jul 7 15:24:38 1998 Ian Lance Taylor <ian@cygnus.com>
11033
11034 * ltconfig, ltmain.sh: Update to libtool 1.2b.
11035
11036 Thu Jul 2 13:57:36 1998 Klaus Kaempf <kkaempf@rmi.de>
11037
11038 * makefile.vms: Update to build binutils/makefile.vms. Add install
11039 target.
11040
11041 Wed Jul 1 16:45:21 1998 Ian Lance Taylor <ian@cygnus.com>
11042
11043 * ltconfig: Update to correct AIX handling.
11044
11045 Sat Jun 27 22:46:32 1998 Jeffrey A Law (law@cygnus.com)
11046
11047 * Makefile.in (BASE_FLAGS_TO_PASS): Add TARGET_SUBDIR.
11048
11049 * configure.in (target_subdir): Set to ${target_alias} instead
11050 of "libraries".
11051
11052 1998-06-26 Manfred Hollstein <manfred@s-direktnet.de>
11053
11054 * Makefile.in (BASE_FLAGS_TO_PASS): Add gcc_version_trigger.
11055 (Makefile): Depend on $(gcc_version_trigger).
11056
11057 * configure (gcc_version): Change default initializer to empty
11058 string.
11059 (gcc_version_trigger): New variable; pass this variable down
11060 to subdir configures to enable them checking gcc's version
11061 themselves. Emit make macros for both gcc_version vars.
11062 (topsrcdir): Initialize reliably.
11063 (recursion line): Remove --with-gcc-version=${gcc_version}.
11064
11065 1998-06-24 Manfred Hollstein <manfred@s-direktnet.de>
11066
11067 * configure (enable_version_specific_runtime_libs): Implement new flag
11068 --enable-version-specific-runtime-libs which installs C++ runtime stuff
11069 in $(libsubdir); emit definition in each generated Makefile.
11070 (gxx_include_dir): Initialize depending on
11071 $enable_version_specific_runtime_libs.
11072
11073 1998-06-24 Manfred Hollstein <manfred@s-direktnet.de>
11074
11075 * configure (gcc_version): Initialize properly depending on
11076 how and where configure is started.
11077 (recursion line): Pass a --with-gcc-version=${gcc_version}
11078 to configures in subdirs.
11079
11080 Wed Jun 24 16:01:59 1998 John Metzler <jmetzler@cygnus.com>
11081
11082 * configure.in (noconfigdirs): Add configure pattern for mips tx39
11083 cygmon
11084
11085 Tue Jun 23 22:42:32 1998 Mark Alexander <marka@cygnus.com>
11086
11087 * configure.in: Add cygmon and libstub support for mn10200.
11088
11089 1998-06-19 Manfred Hollstein <manfred@s-direktnet.de>
11090
11091 * configure (gcc_version): Add new variable describing the
11092 particular gcc version we're building.
11093 * Makefile.in (libsubdir): Add new macro for the directory
11094 in which the compiler finds executables, libraries, etc.
11095 (BASE_FLAGS_TO_PASS): Pass down gcc_version, target_alias
11096 and libsubdir.
11097
11098 Fri Jun 19 02:36:59 1998 Alexandre Oliva <oliva@dcc.unicamp.br>
11099
11100 * Makefile.in (local-clean): Remove *.log.
11101 (warning.log): Built with warn_summary from build.log.
11102 (mail-report.log): Run test_summary.
11103 (mail-report-with-warnings.log): Run test_summary including
11104 warning.log in the report.
11105
11106 Thu Jun 18 11:26:03 1998 Robert Lipe <robertl@dgii.com>
11107
11108 * config.guess: Detection of Pentium II for *-sco-3.2v5*.
11109
11110 Mon Jun 15 14:53:54 1998 Andrew Cagney <cagney@b1.cygnus.com>
11111
11112 * Makefile.in (grep): Grep no longer depends on libiberty.
11113
11114 Fri Jun 12 14:03:34 1998 Syd Polk <spolk@cygnus.com>
11115
11116 * Makefile.in: all-snavigator needs all-libgui.
11117
11118 Thu Jun 11 19:43:47 1998 Mark Alexander <marka@cygnus.com>
11119
11120 * configure.in: Add cygmon and libstub support for mn10300.
11121
11122 Wed Jun 10 11:19:47 1998 Ian Lance Taylor <ian@cygnus.com>
11123
11124 * missing: Update to version from automake 1.3.
11125
11126 * ltmain.sh: On installation, don't get confused if the same name
11127 appears more than once in the list of library names.
11128
11129 Wed Jun 3 14:51:42 1998 Ian Lance Taylor <ian@cygnus.com>
11130
11131 * config.sub: Accept m68060 and m5200 as CPU names.
11132
11133 Mon Jun 1 17:25:16 1998 Ian Lance Taylor <ian@cygnus.com>
11134
11135 * configure: Use && rather than using -a in test, because odd
11136 strings can confuse test.
11137 * configure.in: Likewise.
11138
11139 Thu May 28 19:31:13 1998 Ian Lance Taylor <ian@cygnus.com>
11140
11141 * ltconfig, ltmain.sh: Bring in Visual C++ support.
11142
11143 Sat May 23 23:44:13 1998 Alexandre Oliva <oliva@dcc.unicamp.br>
11144
11145 * Makefile.in (boostrap2-lean, bootstrap3-lean,
11146 bootstrap4-lean): New targets.
11147
11148 Mon May 11 23:55:56 1998 Jeffrey A Law (law@cygnus.com)
11149
11150 * mpw-* Delete. Not used.
11151
11152 Mon May 11 23:11:34 1998 Jeffrey A Law (law@cygnus.com)
11153
11154 * COPYING.LIB: Update FSF address.
11155
11156 Fri May 8 01:30:20 1998 Ian Lance Taylor <ian@cygnus.com>
11157
11158 * ltconfig, ltmain.sh: Update to libtool 1.2a.
11159
11160 * Makefile.in (GASB_SUPPORT_DIRS): Remove intl; already included via
11161 GAS_SUPPORT_DIRS.
11162
11163 Thu May 7 17:27:35 1998 Ian Lance Taylor <ian@cygnus.com>
11164
11165 * ltconfig, ltmain.sh: Avoid producing a version number if
11166 -version-info was not used.
11167
11168 Tue May 5 18:02:24 1998 Ian Lance Taylor <ian@cygnus.com>
11169
11170 * configure.in: Add --with-newlib to CONFIG_ARGUMENTS if we are
11171 building with newlib.
11172
11173 1998-04-30 Paul Eggert <eggert@twinsun.com>
11174
11175 * Makefile.in (EXTRA_GCC_FLAGS): Remove backslash at end;
11176 Solaris `make' causes it to continue to next definition.
11177
11178 Tue Apr 28 16:24:24 1998 Jason Molenda (crash@bugshack.cygnus.com)
11179
11180 * Makefile.in (install-gdbtk): Call this 'install-gdb' so that
11181 the right GUI libraries and files are installed along with GDB.
11182
11183 Tue Apr 28 18:11:24 1998 Ian Lance Taylor <ian@cygnus.com>
11184
11185 * configure.in: Change alpha to alpha* in several places.
11186
11187 Tue Apr 28 07:42:00 1998 Mark Alexander <marka@cygnus.com>
11188
11189 * config.sub: Recognize sparc86x.
11190
11191 Tue Apr 28 07:35:02 1998 Michael Meissner <meissner@cygnus.com>
11192
11193 * configure.in (--enable-target-optspace): Remove debug echo.
11194
11195 Thu Apr 23 21:31:16 1998 Jim Wilson <wilson@cygnus.com>
11196
11197 * configure: Set CXXFLAGS from CXXFLAGS, not CFLAGS.
11198
11199 Thu Apr 23 12:26:38 1998 Ian Lance Taylor <ian@cygnus.com>
11200
11201 * ltconfig: Update cygwin32 support.
11202
11203 * Makefile.in (GAS_SUPPORT_DIRS): Add intl.
11204 (BINUTILS_SUPPORT_DIRS, GASB_SUPPORT_DIRS): Likewise.
11205 (GDB_SUPPORT_DIRS): Likewise.
11206
11207 Wed Apr 22 12:30:10 1998 Michael Meissner <meissner@cygnus.com>
11208
11209 * configure.in (target_makefile_frag): If --enable-target-optspace,
11210 use -Os to compile target libraries rather than -O2. Default to
11211 using -Os for d10v and m32r if --{enable,disable}-target-optspace is
11212 not used.
11213 * configure.in (target_cflags): Ditto for d30v.
11214
11215 Tue Apr 21 23:06:54 1998 Tom Tromey <tromey@cygnus.com>
11216
11217 * Makefile.in (all-bfd): Depend on all-intl.
11218 (all-binutils): Likewise.
11219 (all-gas): Likewise.
11220 (all-gprof): Likewise.
11221 (all-ld): Likewise.
11222
11223 1998-04-19 Brendan Kehoe <brendan@cygnus.com>
11224
11225 * configure.in (host_tools): Fix typo, lbtool -> libtool.
11226
11227 Fri Apr 17 16:20:42 1998 Ian Lance Taylor <ian@cygnus.com>
11228
11229 * Makefile.in (all-bfd): Depend upon all-libiberty.
11230
11231 * ltconfig, ltmain.sh: Bring in newer cygwin32 support.
11232
11233 Fri Apr 17 12:22:22 1998 Bob Manson <manson@charmed.cygnus.com>
11234
11235 * Makefile.in: Add libstub.
11236
11237 * configure.in: Ditto. Build libstub for targets that have cygmon
11238 support.
11239
11240 Tue Apr 14 18:01:55 1998 Ian Lance Taylor <ian@cygnus.com>
11241
11242 * configure.in: Don't set PICFLAG on ix86-cygwin32.
11243
11244 Tue Apr 14 12:24:45 1998 J. Kean Johnston <jkj@sco.com>
11245
11246 * configure.in: Recognise i[3456]96-*-sysv5* as a valid host, and
11247 use mh-sysv5 if specified. Support gprof on SCO Open Server.
11248
11249 Tue Apr 14 11:33:51 1998 Krister Walfridsson <cato@df.lth.se>
11250
11251 * configure: Define DEFAULT_M4 by searching PATH.
11252 * Makfile.in: Use DEFAULT_M4.
11253
11254 Mon Apr 13 15:37:24 1998 Ian Lance Taylor <ian@cygnus.com>
11255
11256 * ltconfig: Add cygwin32 support.
11257
11258 * Makefile.in, configure.in: Add libtool as a native only directory
11259 to configure and build.
11260
11261 Sun Apr 12 20:58:46 1998 Jeffrey A Law (law@cygnus.com)
11262
11263 * Makefile.in (INSTALL_MODULES): Remove texinfo.
11264
11265 Wed Apr 8 13:18:56 1998 Philippe De Muyter <phdm@macqel.be>
11266
11267 * Makefile.in (EXTRA_GCC_FLAGS): XFOO lines shortened.
11268
11269 Thu Apr 2 14:48:44 1998 Geoffrey Noer <noer@cygnus.com>
11270
11271 * Makefile.in: add ash make rules
11272 * configure.in: add ash to native_only and host_tools lists
11273
11274 Thu Mar 26 12:53:20 1998 Tom Tromey <tromey@cygnus.com>
11275
11276 * Makefile.in (all-gettext, all-intl): New targets.
11277 (ALL_MODULES): Added all-gettext, all-intl.
11278 (CROSS_CHECK_MODULES): Added check-gettext, check-intl.
11279 (INSTALL_MODULES): Added install-gettext, install-intl.
11280 (CLEAN_MODULES): Added clean-gettext, clean-intl.
11281
11282 * configure.in (host_tools): Added gettext.
11283 (native_only): Likewise.
11284 (noconfigdirs) [various cases]: Likewise.
11285 (host_libs): Added intl.
11286
11287 Thu Mar 26 15:00:11 1998 Keith Seitz <keiths@onions.cygnus.com>
11288
11289 * configure: Do not disable building gdbtk for cygwin32 hosts.
11290
11291 Wed Mar 25 10:04:18 1998 Nick Clifton <nickc@cygnus.com>
11292
11293 * configure.in: Add thumb-coff target.
11294 * config.sub: Add thumb-coff target.
11295
11296 Wed Mar 25 11:49:12 1998 Jason Molenda (crash@bugshack.cygnus.com)
11297
11298 * Makefile.in: Revert yesterday's change.
11299 (all-target-winsup): all-target-librx stays out of here.
11300
11301 Tue Mar 24 16:58:29 1998 Jason Molenda (crash@bugshack.cygnus.com)
11302
11303 * Makefile.in (TARGET_CONFIGDIRS, ALL_TARGET_MODULES,
11304 CONFIGURE_TARGET_MODULES, CHECK_TARGET_MODULES,
11305 INSTALL_TARGET_MODULES, CLEAN_TARGET_MODULES, all-target-winsup):
11306 Remove references to librx and libg++.
11307
11308 Tue Mar 24 18:28:12 1998 Eric Mumpower <nocturne@cygnus.com>
11309
11310 * Makefile.in (BASE_FLAGS_TO_PASS): Pass $(lispdir) down to
11311 recursive makes
11312
11313 Tue Mar 24 11:37:45 1998 Ian Lance Taylor <ian@cygnus.com>
11314
11315 * Makefile.in (CC_FOR_TARGET): Use $(TARGET_SUBDIR) when passing -B
11316 for newlib directory.
11317 (CXX_FOR_TARGET): Likewise.
11318
11319 Mon Mar 23 11:30:21 1998 Jeffrey A Law (law@cygnus.com)
11320
11321 * ltconfig: Update after libtool/ltconfig.in change for
11322 hpux11.
11323
11324 Fri Mar 20 18:51:43 1998 Ian Lance Taylor <ian@cygnus.com>
11325
11326 * ltconfig, ltmain.sh: Update to libtool 1.2.
11327
11328 Fri Mar 20 09:32:14 1998 Manfred Hollstein <manfred@s-direktnet.de>
11329
11330 * Makefile.in (install-gcc): Don't specify LANGUAGES here.
11331 (install-gcc-cross): Instead, override LANGUAGES here.
11332
11333 1998-03-18 Dave Love <d.love@dl.ac.uk>
11334
11335 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): Set CONFIG_SITE to a
11336 non-existent file since /dev/null loses with bash 2.0/autoconf 2.12.
11337
11338 Wed Mar 18 09:24:59 1998 Nick Clifton <nickc@cygnus.com>
11339
11340 * configure.in: Add Thumb-pe target.
11341
11342 Tue Mar 17 16:59:00 1998 Syd Polk <spolk@cygnus.com>
11343
11344 * Makefile.in - changed sn targets to snavigator
11345 * configure.in - changed sn targets to snavigator
11346
11347 Tue Mar 17 10:33:28 1998 Manfred Hollstein <manfred@s-direktnet.de>
11348
11349 * config-ml.in: After building symlink tree call make distclean
11350 if a Makefile got linked into ${ml_dir}/${ml_libdir}; this happens
11351 to be the case for libiberty.
11352
11353 Tue Mar 17 10:22:37 1998 H.J. Lu (hjl@gnu.ai.mit.edu)
11354
11355 * configure: When making link, also check the current
11356 directory. The configure scripts may create one.
11357
11358 Fri Mar 6 01:02:03 1998 Richard Henderson <rth@cygnus.com>
11359
11360 * config.sub: Accept alphapca56 and alphaev6 properly.
11361
11362 Fri Mar 6 00:14:55 1998 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
11363
11364 * configure.in: Revert 3 Jan change for powerpc-linux-gnulibc1.
11365
11366 Mon Feb 23 15:09:18 1998 Bruno Haible <bruno@linuix.mathematik.uni-karlsruhe.de
11367
11368 * config.sub (sco5): Fix typo.
11369
11370 Mon Feb 23 14:46:06 1998 Ian Lance Taylor <ian@cygnus.com>
11371
11372 * Makefile.in (INSTALL_MODULES): Move install-tcl before
11373 install-itcl.
11374 (install-itcl): Remove dependency on install-tcl.
11375
11376 Mon Feb 23 09:53:28 1998 Mark Alexander <marka@cygnus.com>
11377
11378 * configure.in: Remove libgloss from noconfigdirs for MN10300.
11379
11380 Thu Feb 19 13:40:41 1998 Ian Lance Taylor <ian@cygnus.com>
11381
11382 * configure.in: Don't build libgui for a cygwin32 target when not on
11383 a cygwin32 host.
11384
11385 Wed Feb 18 12:29:00 1998 Jason Molenda (crash@bugshack.cygnus.com)
11386
11387 * configure (redirect): Set to null, so default behavior of
11388 configure is now --verbose.
11389
11390 1998-02-16 Dave Love <d.love@dl.ac.uk>
11391
11392 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): Run configure with
11393 CONFIG_SITE=/dev/null to forestall lossage with site configuration.
11394
11395 Mon Feb 16 12:23:53 1998 Manfred Hollstein <Manfred.Hollstein@ks.sel.alcatel.de>
11396
11397 * Makefile.in (BASE_FLAGS_TO_PASS, EXTRA_TARGET_FLAGS): Really add
11398 this change to sync Makefile.in with its ChangeLog entries.
11399
11400 Thu Feb 12 15:03:08 1998 H.J. Lu <hjl@gnu.org>
11401
11402 * ltmain.sh (mkdir): Check that the directory doesn't exist
11403 before we exit with error, so that we don't get races during
11404 parallel builds.
11405
11406 Sat Feb 7 15:19:18 1998 Ian Lance Taylor <ian@cygnus.com>
11407
11408 * ltconfig, ltmain.sh: Update from libtool 1.0i.
11409
11410 Fri Feb 6 01:33:52 1998 Manfred Hollstein <manfred@s-direktnet.de>
11411
11412 * Makefile.in (BASE_FLAGS_TO_PASS): Don't pass PICFLAG and
11413 PICFLAG_FOR_TARGET.
11414 (EXTRA_TARGET_FLAGS): Don't pass PICFLAG_FOR_TARGET.
11415
11416 * configure: Emit a definition for the new macro enable_shared
11417 into each Makefile.
11418
11419 Thu Feb 5 17:01:12 1998 Jason Molenda (crash@bugshack.cygnus.com)
11420
11421 * configure.in (host_tools, native_only): Add libtool.
11422
11423 Wed Feb 4 16:53:58 1998 Geoffrey Noer <noer@cygnus.com>
11424
11425 * configure.in: add target-gperf to noconfigdirs for Cygwin32.
11426 Fix typo in ming config comment.
11427
11428 Wed Feb 4 18:56:13 1998 Ian Lance Taylor <ian@cygnus.com>
11429
11430 * ltconfig, ltmain.sh: Update from libtool 1.0h.
11431
11432 Mon Feb 2 19:38:19 1998 Ian Lance Taylor <ian@cygnus.com>
11433
11434 * config.sub: Add tic30 cases, and map c30 to tic30.
11435
11436 Sun Feb 1 02:40:41 1998 Richard Henderson <rth@cygnus.com>
11437
11438 * Makefile.in (TARGET_CONFIGDIRS): Add libf2c.
11439 (ALL_TARGET_MODULES, CONFIGURE_TARGET_MODULES): Similarly
11440 (CHECK_TARGET_MODULES, INSTALL_TARGET_MODULES): Similarly
11441 (CLEAN_TARGET_MODULES): Similarly
11442 (all-target-libf2c): Add dependences.
11443 * configure.in (target_libs): Add libf2c.
11444
11445 Fri Jan 30 17:18:32 1998 Geoffrey Noer <noer@cygnus.com>
11446
11447 * configure.in: Remove expect from noconfigdirs when target
11448 is cygwin32. OK to build expect and dejagnu with Canadian
11449 Cross.
11450
11451 Wed Jan 28 12:58:49 1998 Ian Lance Taylor <ian@cygnus.com>
11452
11453 * configure.in: Do build expect, dejagnu, and cvssrc for a cygwin32
11454 host.
11455
11456 * config.guess: Use ${UNAME_MACHINE} rather than i386 for cygwin32
11457 and mingw32.
11458
11459 Wed Jan 28 10:26:37 1998 Manfred Hollstein <manfred@s-direktnet.de>
11460
11461 * Makefile.in (BASE_FLAGS_TO_PASS): Remove passing $(local_prefix)
11462 here as it is not defined in the toplevel Makefile.
11463
11464 Tue Jan 27 23:25:06 1998 Manfred Hollstein <manfred@s-direktnet.de>
11465
11466 * configure (package_makefile_rules_frag): New variable, which names
11467 a file with generic rules, ...
11468 Change comment to mention we now have FIVE parts.
11469 * configure: Undo last change.
11470
11471 Tue Jan 27 23:15:55 1998 Lassi A. Tuura <lat@iki.fi>
11472
11473 * config.guess: More accurate determination of HP processor types.
11474 * config.sub: More accurate determination of HP processor types.
11475
11476 Sat Jan 24 01:59:45 1998 Manfred Hollstein <manfred@s-direktnet.de>
11477
11478 * configure (package_makefile_frag): Move inserting the
11479 ${package_makefile_frag} to where it should be according
11480 to the comment.
11481
11482 Fri Jan 23 00:29:28 1998 Philip Blundell <pb@nexus.co.uk>
11483
11484 * config.guess: Add support for Linux/ARM.
11485
11486 Thu Jan 22 15:14:01 1998 Fred Fish <fnf@cygnus.com>
11487
11488 * .cvsignore: Remove *-info and *-install since they match
11489 release-info and mpw-install, which we don't want to just ignore.
11490
11491 Thu Jan 22 01:38:33 1998 Richard Henderson <rth@cygnus.com>
11492
11493 * configure.in: Revert 3 Jan change for alpha-linux-gnulibc1.
11494
11495 Sat Jan 17 21:28:08 1998 Pieter Nagel <pnagel@epiuse.co.za>
11496
11497 * Makefile.in (FLAGS_TO_PASS): Pass down gcc_include_dir and
11498 local_prefix to sub-make invocations.
11499
11500 Sat Jan 17 21:04:59 1998 H.J. Lu (hjl@gnu.org)
11501
11502 * configure.in: Check makefile fragments in the source
11503 directory.
11504
11505 Fri Jan 16 00:41:37 1998 Alexandre Oliva <oliva@dcc.unicamp.br>
11506
11507 * configure.in: Check whether host and target makefile
11508 fragments exist before adding them to *_makefile_frag.
11509
11510 Wed Jan 14 23:39:10 1998 Bob Manson <manson@charmed.cygnus.com>
11511
11512 * configure.in (target_configdirs): Add cygmon for sparc64-elf.
11513
11514 Wed Jan 14 12:48:07 1998 Keith Seitz <keiths@pizza.cygnus.com>
11515
11516 * configure.in: Make sure we only replace RPATH_ENVVAR on
11517 lines which begin with RPATH_ENVVAR, i.e. add "^" to the
11518 regexp to sed.
11519
11520 * Makefile.in (BASE_FLAGS_TO_PASS): Pass RRPATH_ENVVAR down
11521 to sub-makes.
11522
11523 1998-01-13 Lee Iverson (leei@ai.sri.com)
11524
11525 * config-ml.in (multi-do): LDFLAGS must include multilib
11526 designator.
11527
11528 Tue Jan 13 01:13:24 1998 Robert Lipe (robertl@dgii.com)
11529
11530 * config.guess: Recognize i[3456]-i586-UnixWare7-sysv5.
11531
11532 Sun Jan 4 01:06:55 1998 Mumit Khan <khan@xraylith.wisc.edu>
11533
11534 * config.sub: Add mingw32 support.
11535 * configure.in: Likewise.
11536
11537 Sat Jan 3 12:11:05 1998 Franz Sirl <franz.sirl-kernel@lauterbach.com>
11538
11539 * configure.in: Finalize support for {alpha|powerpc}*-*-linux-gnulibc1
11540
11541 Sun Dec 28 11:28:58 1997 Jeffrey A Law (law@cygnus.com)
11542
11543 * Makefile.in (INSTALL_TARGET): Do install-gcc first.
11544 * configure (gxx_include_dir): Provide a definition for subdirs
11545 which do not use autoconf.
11546
11547 Wed Dec 24 22:46:55 1997 Jeffrey A Law (law@cygnus.com)
11548
11549 * config.guess: Sync with egcs. Picks up new alpha support,
11550 BeOS & some additional linux support.
11551
11552 Tue Dec 23 12:44:24 1997 Jeffrey A Law (law@cygnus.com)
11553
11554 * config.guess: HP 9000/803 is a PA1.1 machine.
11555
11556 Mon Dec 22 02:39:24 1997 Richard Henderson <rth@cygnus.com>
11557
11558 * configure.in: It's alpha*-...
11559
11560 Sun Dec 21 16:53:12 1997 H.J. Lu (hjl@gnu.ai.mit.edu)
11561
11562 * configure.in (host_makefile_frag, target_makefile_frag):
11563 Handle multiple config files.
11564 (alpha-*-linux*): Treat alpha-*-linux* as alpha-*-linux* and
11565 alpha-*-*.
11566
11567 Thu Dec 18 13:13:03 1997 Doug Evans <devans@canuck.cygnus.com>
11568
11569 * mkdep: New file.
11570
11571 Wed Dec 17 09:53:02 1997 Michael Meissner <meissner@cygnus.com>
11572
11573 * configure.in (d30v-*-*): Allow configuring of libide, vmake, etc.
11574
11575 Tue Dec 16 17:36:05 1997 Ian Lance Taylor <ian@cygnus.com>
11576
11577 * Makefile.in: Add libgui directory.
11578 (GDB_TK): Add all-libgui.
11579 * configure.in: Add libgui directory.
11580 * configure: Add all-libgui to GDB_TK.
11581
11582 Mon Dec 15 16:12:28 1997 Nick Clifton <nickc@cygnus.com>
11583
11584 * config-ml.in (multidirs): Add m32r to multilib list.
11585
11586 Fri Dec 12 10:43:31 1997 Brendan Kehoe <brendan@canuck.cygnus.com>
11587
11588 * Makefile.in (all-target-gperf): Change dependency to
11589 all-target-libstdc++.
11590
11591 Thu Dec 11 23:30:51 1997 Fred Fish <fnf@ninemoons.com>
11592
11593 * config.guess: Add BeOS support.
11594
11595 Wed Dec 10 15:10:38 1997 Ian Lance Taylor <ian@cygnus.com>
11596
11597 Source directory cvs renamed to cvssrc:
11598 * configure.in (host_tools): Change cvs to cvssrc.
11599 (native_only): Likewise.
11600 (noconfigdirs) [various cases]: Likewise.
11601 * Makefile.in (ALL_MODULES): Change all-cvs to all-cvssrc.
11602 (CROSS_CHECK_MODULES): Change check-cvs to check-cvssrc.
11603 (INSTALL_MODULES): Change install-cvs to install-cvssrc.
11604 (CLEAN_MODULES): Change clean-cvs to clean-cvssrc.
11605 (all-cvssrc): Rename target from all-cvs.
11606
11607 Wed Dec 3 07:55:59 1997 Jeffrey A Law (law@cygnus.com)
11608
11609 * configure (gxx_include_dir): Fix thinko.
11610
11611 Tue Dec 2 10:55:34 1997 Jeffrey A Law (law@cygnus.com)
11612
11613 * Makefile.in (INSTALL_TARGET_CROSS): Define.
11614 (install-cross, install-gcc-cross): New targets.
11615
11616 Tue Dec 2 10:08:31 1997 Nick Clifton <nickc@cygnus.com>
11617
11618 * configure.in (noconfigdirs): Add support for Thumb target.
11619
11620 * config.sub (maybe_os): Add support for Thumb target.
11621
11622 Sun Nov 30 16:12:27 1997 Bob Manson <manson@charmed.cygnus.com>
11623
11624 * Makefile.in: Add rules for cygmon.
11625
11626 * configure.in: Build cygmon for sparc-elf and sparclite-aout.
11627
11628 Thu Nov 27 01:31:30 1997 Jeffrey A Law (law@cygnus.com)
11629
11630 * Makefile.in (INSTALL_TARGET): Do install-gcc first.
11631 * configure (gxx_include_dir): Provide a definition for subdirs
11632 which do not use autoconf.
11633
11634 Wed Nov 26 11:53:33 1997 Keith Seitz <keiths@onions.cygnus.com>
11635
11636 * Makefile.in, configure, configure.in, ChangeLog: merge with foundry's
11637 11/18/97 build
11638
11639 Wed Nov 26 16:08:50 1997 Jeffrey A Law (law@cygnus.com)
11640
11641 * From Franz Sirl.
11642 * config.guess (powerpc*-*-linux): Handle glibc2 beta release
11643 found on RedHat Linux systems.
11644
11645 Fri Nov 21 09:51:01 1997 Jeffrey A Law (law@cygnus.com)
11646
11647 * config.guess (alpha stuff): Merge with FSF to avoid incorrect
11648 guesses.
11649
11650 Thu Nov 13 11:38:37 1997 Jeffrey A Law (law@cygnus.com)
11651
11652 * configure.in (i[3456]86-ncr-sysv4.3*): Tweak.
11653
11654 Mon Nov 10 15:23:21 1997 H.J. Lu <hjl@gnu.ai.mit.edu>
11655
11656 * ltmain.sh: If mkdir fails, check whether the directory was created
11657 anyhow by some other process.
11658
11659 Mon Nov 10 14:38:03 1997 Michael Meissner <meissner@cygnus.com>
11660
11661 * configure.in (d30v-*-*): Configure all directories.
11662
11663 Sun Nov 9 17:36:20 1997 Michael Meissner <meissner@cygnus.com>
11664
11665 * configure.in (d30v-*-*): Configure newlib, libiberty directories
11666 for the D30V.
11667
11668 Sat Nov 8 14:42:59 1997 Michael Meissner <meissner@cygnus.com>
11669
11670 * configure.in (d30v-*-*): Configure target-libgloss on the D30V.
11671
11672 Fri Nov 7 10:34:09 1997 Rob Savoye <rob@darkstar.cygnus.com>
11673
11674 * include/libiberty.h: Add extern "C" { so it can be used with C++
11675 progrms.
11676 * include/remote-sim.h: Add extern "C" { so it can be used with C++
11677 programs.
11678
11679 Thu Oct 30 11:09:29 1997 Michael Meissner <meissner@cygnus.com>
11680
11681 * configure.in (d30v-*-*): Configure GCC now.
11682
11683 Mon Oct 27 13:17:24 1997 Stan Shebs <shebs@andros.cygnus.com>
11684
11685 * configure.in: Remove a "second pass" of tweaking noconfigdirs,
11686 is no longer needed.
11687
11688 Mon Oct 27 12:03:53 1997 Jason Merrill <jason@yorick.cygnus.com>
11689
11690 * Makefile.in: check-target-libio depends on all-target-libstdc++.
11691
11692 Sun Oct 26 11:48:27 1997 Manfred Hollstein (manfred@s-direktnet.de)
11693
11694 * Makefile.in (bootstrap-lean): Combined with `normal' bootstrap
11695 targets using "$@" to provide support for similar but not identical
11696 targets without having to duplicate code.
11697
11698 Mon Oct 20 15:28:49 1997 Klaus K"ampf <kkaempf@progis.de>
11699
11700 * makefile.vms: Fix to work with DEC C.
11701
11702 Tue Oct 7 23:58:57 1997 Gavin Koch <gavin@cygnus.com>
11703
11704 * config.sub: Add mips-tx39-elf to marketing names.
11705
11706 Tue Oct 7 14:24:41 1997 Ian Lance Taylor <ian@cygnus.com>
11707
11708 * ltmain.sh: Handle symlinks in generated script.
11709
11710 Wed Oct 1 13:11:27 1997 Ian Lance Taylor <ian@cygnus.com>
11711
11712 * configure: Handle autoconf style directory options: --bindir,
11713 --datadir, --includedir, --infodir, --libdir, --libexecdir,
11714 --mandir, --oldincludedir, --sbindir, --sharedstatedir,
11715 --sysconfdir.
11716 * Makefile.in (sbindir, libexecdir, sysconfdir): New variables.
11717 (sharedstatedir, localstatedir, oldincludedir): New variables.
11718 (BASE_FLAGS_TO_PASS): Pass down bindir, datadir, includedir,
11719 infodir, libdir, libexecdir, localstatedir, mandir, oldincludedir,
11720 sbindir, sharedstatedir, and sysconfdir.
11721
11722 Mon Sep 29 00:38:08 1997 Aaron Jackson <jackson@negril.msrce.howard.edu>
11723
11724 * Makefile.in (bootstrap-lean): New target.
11725
11726 Wed Sep 24 18:06:27 1997 Stu Grossman <grossman@babylon-5.cygnus.com>
11727
11728 * configure.in (d30v): Remove tcl, tk, expect, gdb, itcl, tix, db,
11729 sn, and gnuserv from noconfigdirs.
11730
11731 Wed Sep 24 15:18:32 1997 Ian Lance Taylor <ian@cygnus.com>
11732
11733 * ltmain.sh: Tweak shell pattern to avoid bug in NetBSD /bin/sh.
11734
11735 Thu Sep 18 23:58:27 1997 Jeffrey A Law (law@cygnus.com)
11736
11737 * Makefile.in (cross): New target.
11738
11739 Thu Sep 18 21:43:23 1997 Alexandre Oliva <oliva@dcc.unicamp.br>
11740 Jeff Law <law@cygnus.com>
11741
11742 * Makefile.in (bootstrap2, bootstrap3): New targets.
11743 (all-bootstrap): Remove outdated and confusing target.
11744 (bootstrap, bootstrap2, bootstrap3): Don't pass BOOT_CFLAGS down.
11745
11746 Thu Sep 18 15:37:42 1997 Andrew Cagney <cagney@b1.cygnus.com>
11747
11748 * configure (tooldir): enable_gdbtk=YES for cygwin32, NO for
11749 windows. Consistent with gdb/configure.
11750
11751 1997-09-15 02:37 Ulrich Drepper <drepper@cygnus.com>
11752
11753 * configure.in: Name Linux target fragment.
11754
11755 * configure: Rewrite so that project Makefile fragment is inserted
11756 first and appears last in the resulting Makefile.
11757
11758 Tue Sep 16 09:55:07 1997 Andrew Cagney <cagney@b1.cygnus.com>
11759
11760 * Makefile.in (install-itcl): Install tcl first.
11761
11762 Fri Sep 12 16:19:20 1997 Geoffrey Noer <noer@cygnus.com>
11763
11764 * configure.in: remove bison from noconfigdirs for Cygwin32 host
11765
11766 Thu Sep 11 16:40:46 1997 H.J. Lu (hjl@gnu.ai.mit.edu)
11767
11768 * Makefile.in (local-distclean): Also remove mh-frag mt-frag.
11769
11770 * configure.in (skipdirs): Add target-librx for Linux.
11771 (alpha-*-linux*): Use config/mh-elfalphapic and config/mt-elfalphapic.
11772
11773 Wed Sep 10 21:29:54 1997 Jeffrey A Law (law@cygnus.com)
11774
11775 * Makefile.in (bootstrap): New target.
11776
11777 Wed Sep 10 15:19:22 1997 Jeffrey A Law (law@cygnus.com)
11778
11779 * config.sub: Accept 'amigados' for backward compatability.
11780
11781 Mon Sep 8 20:46:20 1997 Ian Lance Taylor <ian@cygnus.com>
11782
11783 * config.guess: Merge with FSF.
11784
11785 Sun Sep 7 23:18:32 1997 Fred Fish <fnf@ninemoons.com>
11786
11787 * config.sub: Change 'amigados' to 'amigaos' to match current usage.
11788
11789 Sun Sep 7 15:55:28 1997 Gavin Koch <gavin@cygnus.com>
11790
11791 * config.sub: Add "marketing-names" patch.
11792
11793 Fri Sep 5 16:11:28 1997 Joel Sherrill (joel@OARcorp.com)
11794
11795 * configure.in (*-*-rtems*): Do not build libgloss for rtems.
11796
11797 Fri Sep 5 12:27:17 1997 Jeffrey A Law (law@cygnus.com)
11798
11799 * config.sub: Handle v850-elf.
11800
11801 Wed Sep 3 22:01:58 1997 Fred Fish <fnf@ninemoons.com>
11802
11803 * .cvsignore (*-install): Remove.
11804
11805 Wed Sep 3 12:15:24 1997 Chris Provenzano <proven@cygnus.com>
11806
11807 * ltconfig: Set CONFIG_SHELL in libtool.
11808 * ltmain.sh: Use CONFIG_SHELL instead of /bin/sh
11809
11810 Mon Sep 1 16:45:44 1997 Jim Wilson <wilson@cygnus.com>
11811
11812 * configure.in (target_subdir): Set to libraries if enable_multilib.
11813
11814 Wed Aug 27 16:15:11 1997 Jim Wilson <wilson@cygnus.com>
11815
11816 * config.guess: Update from gcc directory.
11817
11818 Tue Aug 26 16:46:46 1997 Andrew Cagney <cagney@b1.cygnus.com>
11819
11820 * Makefile.in (all-sim): Depends on all-readline.
11821
11822 Wed Aug 20 19:57:37 1997 Jason Merrill <jason@yorick.cygnus.com>
11823
11824 * Makefile.in (BISON, YACC): Use $$s.
11825 (all-bison): Depend on all-texinfo.
11826
11827 Tue Aug 19 01:41:32 1997 Jason Merrill <jason@yorick.cygnus.com>
11828
11829 * Makefile.in (BISON): Add -L flag.
11830 (YACC): Likewise.
11831
11832 Mon Aug 18 11:30:50 1997 Nick Clifton <nickc@cygnus.com>
11833
11834 * configure.in (noconfigdirs): Add support for v850e target.
11835
11836 * config.sub (maybe_os): Add support for v850e target.
11837
11838 Mon Aug 18 11:30:50 1997 Nick Clifton <nickc@cygnus.com>
11839
11840 * configure.in (noconfigdirs): Add support for v850ea target.
11841
11842 * config.sub (maybe_os): Add support for v850ea target.
11843
11844 Mon Aug 18 09:24:06 1997 Gavin Koch <gavin@cygnus.com>
11845
11846 * config.sub: Add mipstx39. Delete r3900.
11847
11848 Mon Aug 18 17:20:10 1997 Jason Molenda (crash@godzilla.cygnus.co.jp)
11849
11850 * Makefile.in (all-autoconf): Depends on all-texinfo.
11851
11852 Fri Aug 15 23:09:26 1997 Michael Meissner <meissner@cygnus.com>
11853
11854 * config-ml.in ({powerpc,rs6000}*-*-*): Update to current AIX and
11855 eabi targets.
11856
11857 Thu Aug 14 14:42:17 1997 Ian Lance Taylor <ian@cygnus.com>
11858
11859 * configure: Get CFLAGS and CXXFLAGS from Makefile, if possible.
11860
11861 * configure: When handling a Canadian Cross, handle YACC as well as
11862 BISON. Just set BISON to bison. When setting YACC, prefer bison.
11863 * Makefile.in (all-bison): Depend upon all-texinfo.
11864
11865 Tue Aug 12 20:09:48 1997 Jason Merrill <jason@yorick.cygnus.com>
11866
11867 * Makefile.in (BISON): bison, not byacc or bison -y.
11868 (YACC): bison -y or byacc or yacc.
11869 (various): Add *-bison as appropriate.
11870 (taz): No need to mess with BISON anymore.
11871
11872 Tue Aug 12 22:33:08 1997 Ian Lance Taylor <ian@cygnus.com>
11873
11874 * configure: If OSTYPE matches *win32*, try to find a good value for
11875 CONFIG_SHELL.
11876
11877 Sun Aug 10 14:41:11 1997 Ian Lance Taylor <ian@cygnus.com>
11878
11879 * Makefile.in (taz): Get the version number from AM_INIT_AUTOMAKE in
11880 configure.in if it is present.
11881
11882 Sat Aug 9 00:58:01 1997 Ian Lance Taylor <ian@cygnus.com>
11883
11884 * Makefile.in (LD_FOR_TARGET): Change ld.new to ld-new.
11885
11886 Fri Aug 8 16:30:13 1997 Doug Evans <dje@canuck.cygnus.com>
11887
11888 * config.sub: Recognize `arc' cpu.
11889 * configure.in: Likewise.
11890 * config-ml.in: Likewise.
11891
11892 Thu Aug 7 11:02:34 1997 Ian Lance Taylor <ian@cygnus.com>
11893
11894 * Makefile.in ($(INSTALL_X11_MODULES)): Depend upon installdirs.
11895
11896 Wed Aug 6 16:27:29 1997 Chris Provenzano <proven@cygnus.com>
11897
11898 * configure: Changed sed delimiter from ':' to '|' when
11899 attempting to substitute ${config_shell} for SHELL. On
11900 NT ${config_shell} may contain a ':' in it.
11901
11902 Wed Aug 6 12:29:05 1997 Jason Merrill <jason@yorick.cygnus.com>
11903
11904 * Makefile.in (EXTRA_GCC_FLAGS): Fix for non-bash shells.
11905
11906 Wed Aug 6 00:42:35 1997 Ian Lance Taylor <ian@cygnus.com>
11907
11908 * Makefile.in (AS_FOR_TARGET): Change as.new to as-new.
11909
11910 Tue Aug 5 14:08:51 1997 Ian Lance Taylor <ian@cygnus.com>
11911
11912 * Makefile.in (NM_FOR_TARGET): Change nm.new to nm-new.
11913
11914 * ylwrap: If the program is a relative path, force it to be
11915 absolute.
11916
11917 Tue Aug 5 12:12:44 1997 Andrew Cagney <cagney@b1.cygnus.com>
11918
11919 * configure (tooldir): Set BISON to `bison -y' and not just bison.
11920
11921 Mon Aug 4 22:59:02 1997 Andrew Cagney <cagney@b1.cygnus.com>
11922
11923 * Makefile.in (CC_FOR_TARGET): When winsup/Makefile present,
11924 correctly specify the target build directory $(TARGET_SUBDIR)/winsup
11925 for libraries.
11926
11927 Mon Aug 4 12:40:24 1997 Jason Merrill <jason@yorick.cygnus.com>
11928
11929 * Makefile.in (EXTRA_GCC_FLAGS): Fix handling of macros with values
11930 separated by spaces.
11931
11932 Thu Jul 31 19:49:49 1997 Ian Lance Taylor <ian@cygnus.com>
11933
11934 * ylwrap: New file.
11935 * Makefile.in (DEVO_SUPPORT): Add ylwrap.
11936
11937 * ltmain.sh: Handle /bin/sh at start of install program.
11938
11939 * Makefile.in (DEVO_SUPPORT): Add ltconfig, ltmain.sh, and missing.
11940
11941 * ltconfig, ltmain.sh: New files, from libtool 1.0.
11942 * missing: New file, from automake 1.2.
11943
11944 Thu Jul 24 12:57:56 1997 Ian Lance Taylor <ian@cygnus.com>
11945
11946 * Makefile.in: Treat tix like tk, putting it in X11_MODULES. Add
11947 check-tk to CHECK_X11_MODULES.
11948
11949 Wed Jul 23 17:03:29 1997 Ian Lance Taylor <ian@cygnus.com>
11950
11951 * config.sub: Merge with FSF.
11952
11953 Tue Jul 22 19:08:29 1997 Ian Lance Taylor <ian@cygnus.com>
11954
11955 * config.guess: Merge with FSF.
11956
11957 Tue Jul 22 14:50:42 1997 Robert Hoehne <robert.hoehne@Mathematik.TU-Chemnitz.DE>
11958
11959 * configure: Treat msdosdjgpp like go32.
11960 * configure.in: Likewise. Don't remove gprof for go32.
11961
11962 * configure: Change Makefile.tem2 to Makefile.tm2.
11963
11964 Mon Jul 21 10:31:26 1997 Stephen Peters <speters@cygnus.com>
11965
11966 * configure.in (noconfigdirs): For alpha-dec-osf*, don't ignore grep.
11967
11968 Tue Jul 15 14:33:03 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
11969
11970 * install-sh (chmodcmd): Set to null if the DST directory already
11971 exists. Same as Nov 11th change.
11972
11973 Mon Jul 14 11:01:15 1997 Martin M. Hunt <hunt@cygnus.com>
11974
11975 * configure (GDB_TK): Needs itcl and tix.
11976
11977 Mon Jul 14 00:32:10 1997 Jason Merrill <jason@yorick.cygnus.com>
11978
11979 * config.guess: Update from FSF.
11980
11981 Fri Jul 11 11:57:11 1997 Martin M. Hunt <hunt@cygnus.com>
11982
11983 * Makefile.in (GDB_TK): Depend on itcl and tix.
11984
11985 Fri Jul 4 13:25:31 1997 Ian Lance Taylor <ian@cygnus.com>
11986
11987 * Makefile.in (INSTALL_PROGRAM_ARGS): New variable.
11988 (INSTALL_PROGRAM): Use $(INSTALL_PROGRAM_ARGS).
11989 (INSTALL_SCRIPT): New variable.
11990 (BASE_FLAGS_TO_PASS): Pass down INSTALL_SCRIPT.
11991 * configure.in: If host is *-*-cygwin32*, set INSTALL_PROGRAM_ARGS
11992 to -x.
11993 * install-sh: Add support for -x option.
11994
11995 Mon Jun 30 15:51:30 1997 Ian Lance Taylor <ian@cygnus.com>
11996
11997 * configure.in, Makefile.in: Treat tix like itcl.
11998
11999 Thu Jun 26 13:59:19 1997 Ian Lance Taylor <ian@cygnus.com>
12000
12001 * Makefile.in (WINDRES): New variable.
12002 (WINDRES_FOR_TARGET): New variable.
12003 (BASE_FLAGS_TO_PASS): Add WINDRES_FOR_TARGET.
12004 (EXTRA_HOST_FLAGS): Add WINDRES.
12005 (EXTRA_TARGET_FLAGS): Add WINDRES.
12006 (EXTRA_GCC_FLAGS): Add WINDRES.
12007 ($(DO_X)): Pass down WINDRES.
12008 ($(CONFIGURE_TARGET_MODULES)): Set WINDRES when configuring.
12009 * configure: Treat WINDRES like DLLTOOL, and WINDRES_FOR_TARGET like
12010 DLLTOOL_FOR_TARGET.
12011
12012 Wed Jun 25 15:01:26 1997 Felix Lee <flee@cygnus.com>
12013
12014 * configure.in: configure sim before gdb for win32-x-ppc
12015
12016 Wed Jun 25 12:18:54 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
12017
12018 Move gperf into the toplevel, from libg++.
12019 * configure.in (target_tools): Add target-gperf.
12020 (native_only): Add target-gperf.
12021 * Makefile.in (all-target-gperf): New target, depend on
12022 all-target-libg++.
12023 (configure-target-gperf): Empty rule.
12024 (ALL_TARGET_MODULES): Add all-target-gperf.
12025 (CONFIGURE_TARGET_MODULES): Add configure-target-gperf.
12026 (CHECK_TARGET_MODULES): Add check-target-gperf.
12027 (INSTALL_TARGET_MODULES): Add install-target-gperf.
12028 (CLEAN_TARGET_MODULES): Add clean-target-gperf.
12029
12030 Mon Jun 23 10:51:53 1997 Jeffrey A Law (law@cygnus.com)
12031
12032 * config.sub (mn10200): Recognize new basic machine.
12033
12034 Thu Jun 19 14:16:42 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
12035
12036 * configure.in: Don't set ENABLE_MULTILIB, so we'll be passing
12037 --enable-multilib down to subdirs; setting TARGET_SUBDIR was enough.
12038
12039 Tue Jun 17 15:31:20 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
12040
12041 * configure.in: If we're building mips-sgi-irix6* native, turn on
12042 ENABLE_MULTILIB and set TARGET_SUBDIR.
12043
12044 Tue Jun 17 12:20:59 1997 Tom Tromey <tromey@cygnus.com>
12045
12046 * Makefile.in (all-sn): Depend on all-grep.
12047
12048 Mon Jun 16 11:11:10 1997 Ian Lance Taylor <ian@cygnus.com>
12049
12050 * configure.in: Use mh-ppcpic and mt-ppcpic for powerpc*-* targets.
12051
12052 * configure: Set CFLAGS and CXXFLAGS, and substitute them into
12053 Makefile. From Jeff Makey <jeff@cts.com>.
12054 * Makefile.in: Add comment for CFLAGS and CXXFLAGS.
12055
12056 * Makefile.in (DISTBISONFILES): Remove.
12057 (taz): Don't futz with DISTBISONFILES. Change BISON to use
12058 $(DEFAULT_YACC).
12059
12060 * configure.in: Build itl, db, sn, etc., when building for native
12061 cygwin32.
12062
12063 * Makefile.in (LD): New variable.
12064 (EXTRA_HOST_FLAGS): Pass down LD.
12065 ($(DO_X)): Likewise.
12066
12067 Mon Jun 16 11:10:35 1997 Philip Blundell <Philip.Blundell@pobox.com>
12068
12069 * Makefile.in (INSTALL): Use $(SHELL) when executing install-sh.
12070
12071 Fri Jun 13 10:22:56 1997 Bob Manson <manson@charmed.cygnus.com>
12072
12073 * configure.in (targargs): Strip out any supplied --build argument
12074 before adding our own. Always add --build.
12075
12076 Thu Jun 12 21:12:28 1997 Bob Manson <manson@charmed.cygnus.com>
12077
12078 * configure.in (targargs): Pass --build if we're doing
12079 a cross-compile.
12080
12081 Fri Jun 6 21:38:40 1997 Rob Savoye <rob@chinadoll.cygnus.com>
12082
12083 * configure: Use '|' instead of ":" as the separator in
12084 sed. Otherwise sed chokes on NT path names with drive
12085 designators. Also look for "?:*" as the leading characters in an
12086 absolute pathname.
12087
12088 Mon Jun 2 13:05:20 1997 Gavin Koch <gavin@cygnus.com>
12089
12090 * config.sub: Support for r3900.
12091
12092 Wed May 21 17:33:31 1997 Ian Lance Taylor <ian@cygnus.com>
12093
12094 * configure.in: Use install-sh, not install.sh.
12095
12096 Wed May 14 16:06:51 1997 Ian Lance Taylor <ian@cygnus.com>
12097
12098 * Makefile.in (taz): Improve check for BISON so it doesn't try to
12099 apply it twice.
12100
12101 Fri May 9 17:22:05 1997 Ian Lance Taylor <ian@cygnus.com>
12102
12103 * Makefile.in (INSTALL_MODULES): Put install-opcodes before
12104 install-binutils.
12105
12106 Thu May 8 17:29:50 1997 Ian Lance Taylor <ian@cygnus.com>
12107
12108 * Makefile.in: Add automake targets.
12109 * configure.in (host_tools): Add automake.
12110
12111 Tue May 6 15:49:52 1997 Ian Lance Taylor <ian@cygnus.com>
12112
12113 * configure: Default CXX to c++, not gcc.
12114 * Makefile.in (CXX): Set to c++, not gcc.
12115 (CXX_FOR_TARGET): When cross, transform c++, not gcc.
12116
12117 Thu May 1 10:11:43 1997 Geoffrey Noer <noer@cygnus.com>
12118
12119 * install-sh: try appending a .exe if source file doesn't
12120 exist
12121
12122 Wed Apr 30 12:05:36 1997 Jason Merrill <jason@yorick.cygnus.com>
12123
12124 * configure.in: Turn on multilib by default.
12125 (cross_only): Remove target-libiberty.
12126
12127 * Makefile.in (all-gcc): Don't depend on libiberty.
12128
12129 Mon Apr 28 18:39:45 1997 Michael Snyder <msnyder@cleaver.cygnus.com>
12130
12131 * config.guess: improve algorithm for recognizing Gnu Hurd x86.
12132
12133 Thu Apr 24 19:30:07 1997 Ian Lance Taylor <ian@cygnus.com>
12134
12135 * Makefile.in (DEVO_SUPPORT): Add mpw-install.
12136 (DISTBISONFILES): Add ld/Makefile.in
12137
12138 Tue Apr 22 17:17:28 1997 Geoffrey Noer <noer@pizza.cygnus.com>
12139
12140 * configure.in: if target is cygwin32 but host isn't cygwin32,
12141 don't configure gdb tcl tk expect, not just gdb.
12142
12143 Mon Apr 21 13:33:39 1997 Tom Tromey <tromey@cygnus.com>
12144
12145 * configure.in: Added gnuserv everywhere sn appears.
12146
12147 * Makefile.in (ALL_MODULES): Added all-gnuserv.
12148 (CROSS_CHECK_MODULES): Added check-gnuserv.
12149 (INSTALL_MODULES): Added install-gnuserv.
12150 (CLEAN_MODULES): Added clean-gnuserv.
12151 (all-gnuserv): New target.
12152
12153 Thu Apr 17 13:57:06 1997 Per Fogelstrom <pefo@openbsd.org>
12154
12155 * config.guess: Fixes for MIPS OpenBSD systems.
12156
12157 Tue Apr 15 12:21:07 1997 Ian Lance Taylor <ian@cygnus.com>
12158
12159 * Makefile.in (INSTALL_XFORM): Remove.
12160 (BASE_FLAGS_TO_PASS): Remove INSTALL_XFORM.
12161
12162 * mkinstalldirs: New file, copied from automake.
12163 * Makefile.in (installdirs): Rename from install-dirs. Use
12164 mkinstalldirs. Change all users.
12165 (DEVO_SUPPORT): Add mkinstalldirs.
12166
12167 Mon Apr 14 11:21:38 1997 Ian Lance Taylor <ian@cygnus.com>
12168
12169 * install-sh: Rename from install.sh.
12170 * Makefile.in (INSTALL): Change install.sh to install-sh.
12171 (DEVO_SUPPORT): Likewise.
12172
12173 * configure: Use ${config_shell} with ${moveifchange}. From Thomas
12174 Graichen <graichen@rzpd.de>.
12175
12176 Fri Apr 11 16:37:10 1997 Niklas Hallqvist <niklas@appli.se>
12177
12178 * config.guess: Recognize OpenBSD systems correctly.
12179
12180 Fri Apr 11 17:07:04 1997 Jason Molenda (crash@godzilla.cygnus.co.jp)
12181
12182 * README, Makefile.in (ETC_SUPPORT): Remove references to
12183 cfg-paper*, configure.{texi,man,info*}._
12184
12185 Sun Apr 6 18:47:57 1997 Andrew Cagney <cagney@kremvax.cygnus.com>
12186
12187 * Makefile.in (all.normal): Ensure that gcc is built after all
12188 the x11 - ie gdb - targets.
12189
12190 Tue Apr 1 16:28:50 1997 Klaus Kaempf <kkaempf@progis.de>
12191
12192 * makefile.vms: Don't run conf-a-gas.
12193
12194 Mon Mar 31 16:26:55 1997 Joel Sherrill <joel@oarcorp.com>
12195
12196 * configure.in (hppa1.1-*-rtems*): New target, like hppa-*-*elf*.
12197
12198 Sun Mar 30 12:38:27 1997 Fred Fish <fnf@cygnus.com>
12199
12200 * configure.in: Remove noconfigdirs case since gdb also
12201 configures and builds for tic80-coff.
12202
12203 Fri Mar 28 18:28:52 1997 Ian Lance Taylor <ian@cygnus.com>
12204
12205 * configure: Set cache_file to config.cache.
12206 * Makefile.in (local-distclean): Remove config.cache.
12207
12208 Wed Mar 26 18:49:39 1997 Ian Lance Taylor <ian@cygnus.com>
12209
12210 * COPYING: Update FSF address.
12211
12212 Wed Mar 26 10:38:25 1997 Michael Meissner <meissner@cygnus.com>
12213
12214 * configure.in (tic80-*-*): Remove G++ libraries and libgloss from
12215 noconfigdirs.
12216
12217 Mon Mar 24 15:02:39 1997 Ian Lance Taylor <ian@cygnus.com>
12218
12219 * Makefile.in (install-dirs): Don't crash if prefix, and hence
12220 MAKEDIRS, is empty.
12221
12222 Mon Mar 24 12:40:55 1997 Doug Evans <dje@canuck.cygnus.com>
12223
12224 * config.sub: Tweak mn10300 entry.
12225
12226 Fri Mar 21 15:35:27 1997 Michael Meissner <meissner@cygnus.com>
12227
12228 * configure.in (host_tools): Put sim before gdb, so gdb's
12229 configure.tgt can determine if the simulator was configured.
12230
12231 Sun Mar 16 16:07:08 1997 Fred Fish <fnf@cygnus.com>
12232
12233 * config.sub: Move BeOS $os case to be with other Cygnus
12234 local cases.
12235
12236 Sun Mar 16 01:34:55 1997 Martin Hunt <hunt@cygnus.com>
12237
12238 * config.sub: Remove misplaced comment that broke Linux.
12239
12240 Sat Mar 15 22:50:15 1997 Fred Fish <fnf@cygnus.com>
12241
12242 * config.sub: Add BeOS support.
12243
12244 Mon Mar 10 13:30:11 1997 Tom Tromey <tromey@cygnus.com>
12245
12246 * Makefile.in (CHECK_X11_MODULES): Don't run check-tk.
12247
12248 Wed Mar 5 12:09:29 1997 Martin <hunt@cygnus.com>
12249
12250 * configure.in (noconfigdirs): Remove tcl and tk from
12251 noconfigdirs for cygwin32 builds.
12252
12253 Fri Feb 28 18:20:15 1997 Fred Fish <fnf@cygnus.com>
12254
12255 * configure.in (tic80-*-*): Remove ld from noconfigdirs.
12256
12257 Thu Feb 27 14:57:26 1997 Ken Raeburn <raeburn@cygnus.com>
12258
12259 * Makefile.in (GAS_SUPPORT_DIRS, BINUTILS_SUPPORT_DIRS): Remove
12260 make-all.com, use makefile.vms instead.
12261
12262 Tue Feb 25 18:46:14 1997 Stan Shebs <shebs@andros.cygnus.com>
12263
12264 * config.sub: Accept -lnews*.
12265
12266 Tue Feb 25 13:19:14 1997 Andrew Cagney <cagney@kremvax.tpgi.com.au>
12267
12268 * configure.in (noconfigdirs): Disable target-newlib,
12269 target-examples and target-libiberty for d30v.
12270
12271 Fri Feb 21 17:56:25 1997 Martin M. Hunt <hunt@pizza.cygnus.com>
12272
12273 * configure.in (noconfigdirs): Enable ld for d30v.
12274
12275 Fri Feb 21 20:58:51 1997 Michael Meissner <meissner@cygnus.com>
12276
12277 * configure.in (tic80-*-*): Build compiler.
12278
12279 Sun Feb 16 15:41:09 1997 Andrew Cagney <cagney@critters.cygnus.com>
12280
12281 * configure.in (d30v-*): Remove sim directory from list of
12282 unsupported d30v directories
12283
12284 Tue Feb 18 17:32:42 1997 Martin M. Hunt <hunt@pizza.cygnus.com>
12285
12286 * config.sub, configure.in: Add d30v target cpu.
12287
12288 Thu Feb 13 22:04:44 1997 Klaus Kaempf <kkaempf@progis.de>
12289
12290 * makefile.vms: New file.
12291 * make-all.com: Remove.
12292
12293 Wed Feb 12 12:54:18 1997 Jim Wilson <wilson@cygnus.com>
12294
12295 * Makefile.in (EXTRA_GCC_FLAGS): Add LIBGCC2_DEBUG_CFLAGS.
12296
12297 Sat Feb 8 20:36:49 1997 Michael Meissner <meissner@cygnus.com>
12298
12299 * Makefile.in (all-itcl): The rule is all-itcl, not all-tcl.
12300
12301 Tue Feb 4 11:39:29 1997 Tom Tromey <tromey@cygnus.com>
12302
12303 * Makefile.in (ALL_MODULES): Added all-db.
12304 (CROSS_CHECK_MODULES): Addec check-db.
12305 (INSTALL_MODULES): Added install-db.
12306 (CLEAN_MODULES): Added clean-db.
12307
12308 Mon Feb 3 13:29:36 1997 Ian Lance Taylor <ian@cygnus.com>
12309
12310 * config.guess: Merge with latest FSF sources.
12311
12312 Tue Jan 28 09:20:37 1997 Tom Tromey <tromey@cygnus.com>
12313
12314 * Makefile.in (ALL_MODULES): Added all-itcl.
12315 (CROSS_CHECK_MODULES): Added check-itcl.
12316 (INSTALL_MODULES): Added install-itcl.
12317 (CLEAN_MODULES): Added clean-itcl.
12318
12319 Thu Jan 23 01:44:27 1997 Geoffrey Noer <noer@cygnus.com>
12320
12321 * configure.in: build gdb for mn10200
12322
12323 Fri Jan 17 15:32:15 1997 Doug Evans <dje@canuck.cygnus.com>
12324
12325 * Makefile.in (all-target-winsup): Depend on all-target-libio.
12326
12327 Mon Jan 13 22:46:54 1997 Michael Meissner <meissner@tiktok.cygnus.com>
12328
12329 * configure.in (tic80-*-*): Turn off most targets right now.
12330
12331 Fri Jan 3 16:04:03 1997 Ian Lance Taylor <ian@cygnus.com>
12332
12333 * Makefile.in (MAKEINFO): Check for the existence of the Makefile,
12334 rather than the makeinfo program.
12335 (do-info): Depend upon all-texinfo.
12336
12337 Tue Dec 31 16:00:31 1996 Ian Lance Taylor <ian@cygnus.com>
12338
12339 * configure.in: Remove uses of config/mh-linux.
12340
12341 * config.sub, config.guess: Merge with latest FSF sources.
12342
12343 Fri Dec 27 23:04:33 1996 Fred Fish <fnf@cygnus.com>
12344
12345 * config.sub (case $basic_machine): Add tic80 entries.
12346
12347 Fri Dec 27 12:07:59 1996 Ian Lance Taylor <ian@cygnus.com>
12348
12349 * config.sub, config.guess: Merge with latest FSF sources.
12350
12351 Wed Dec 18 22:46:39 1996 Stan Shebs <shebs@andros.cygnus.com>
12352
12353 * mpw-build.in: Build ld before gcc, use NewFolderRecursive.
12354 * mpw-config.in: Test for NewFolderRecursive.
12355 * mpw-install: Use symbolic name for startup filename.
12356 * mpw-README: Add various additional details.
12357
12358 Wed Dec 18 13:11:46 1996 Jim Wilson <wilson@cygnus.com>
12359
12360 * configure.in (mips*-sgi-irix6*): Remove binutils from noconfigdirs.
12361
12362 Wed Dec 18 10:29:31 1996 Jeffrey A Law (law@cygnus.com)
12363
12364 * configure.in: Do build gcc and the target libraries for
12365 the mn10200.
12366
12367 Wed Dec 4 16:53:05 1996 Geoffrey Noer <noer@cygnus.com>
12368
12369 * configure.in: don't avoid building gdb for mn10300 any more
12370 * Makefile.in: double-quote GCC_FOR_TARGET line in EXTRA_GCC_FLAGS
12371 instead of single-quoting it.
12372
12373 Tue Dec 3 23:26:50 1996 Jason Merrill <jason@yorick.cygnus.com>
12374
12375 * configure.in: Don't use --with-stabs on IRIX 6.
12376
12377 Tue Dec 3 09:05:25 1996 Doug Evans <dje@canuck.cygnus.com>
12378
12379 * configure.in (m32r): Build gdb, libg++ now.
12380
12381 Sun Dec 1 00:18:59 1996 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
12382
12383 * configure.in (mips*-sgi-irix6*): Remove gdb and related
12384 directories from noconfigdirs.
12385
12386 Tue Nov 26 11:45:33 1996 Kim Knuttila <krk@cygnus.com>
12387
12388 * config.sub (basic_machine): added mips16 configuration
12389
12390 Sat Nov 23 19:26:22 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12391
12392 * config.sub: Handle d10v-unknown.
12393
12394 Sat Nov 23 10:23:01 1996 Gavin Koch <gavin@cygnus.com>
12395
12396 * config.sub: Handle v850-unknown.
12397
12398 Thu Nov 21 16:19:44 1996 Geoffrey Noer <noer@cygnus.com>
12399
12400 * Makefile.in: add findutils
12401 * configure.in: add findutils to list of host_tools
12402
12403 Wed Nov 20 10:09:01 1996 Jeffrey A Law (law@cygnus.com)
12404
12405 * config.sub: Handle mn10200 and mn10300.
12406
12407 Tue Nov 19 16:35:14 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12408
12409 * configure.in (d10v-*): Do not build librx.
12410
12411 Mon Nov 18 13:28:41 1996 Jeffrey A Law (law@cygnus.com)
12412
12413 * configure.in (mn10300): Build everything except gdb & libgloss.
12414
12415 Wed Nov 13 14:59:46 1996 Per Bothner <bothner@deneb.cygnus.com>
12416
12417 * config.guess: Patch for Dansk Data Elektronik servers,
12418 from Niels Skou Olsen <nso@dde.dk>.
12419
12420 For ncr, use /bin/uname rather than uname, since GNU uname does not
12421 support -p. Suggested by Mark Mitchell <mmitchell@usa.net>.
12422
12423 Patch for MIPS R4000 running System V,
12424 from Eric S. Raymond <esr@snark.thyrsus.com>.
12425
12426 Fix thinko for nextstep.
12427
12428 Patch for OSF1 in i?86, from Dan Murphy <dlm@osf.org> via Harlan Stenn.
12429
12430 Sat Jun 24 18:58:17 1995 Morten Welinder <terra+@cs.cmu.edu>
12431 * config.guess: Guess mips-dec-mach_bsd4.3.
12432
12433 Thu Oct 10 04:07:04 1996 Harlan Stenn <harlan@pfcs.com>
12434 * config.guess (i?86-ncr-sysv*): Emit just enough of the minor
12435 release numbers.
12436 * config.guess (mips-mips-riscos*): Emit just enough of the
12437 release number.
12438
12439 Tue Oct 8 10:37:22 1996 Frank Vance <fvance@waii.com>
12440 * config.guess (sparc-auspex-sunos*): Added.
12441 (f300-fujitsu-*): Added.
12442
12443 Wed Sep 25 22:00:35 1996 Jeff Woolsey <woolsey@jlw.com>
12444 * config.guess: Recognize a Tadpole as a sparc.
12445
12446 Wed Nov 13 00:53:09 1996 David J. MacKenzie <djm@churchy.gnu.ai.mit.edu>
12447
12448 * config.guess: Don't assume that NextStep version is either 2 or
12449 3. NextStep 4 (aka OpenStep 4) has come out now.
12450
12451 Mon Nov 11 23:52:03 1996 David J. MacKenzie <djm@churchy.gnu.ai.mit.edu>
12452
12453 * config.guess: Support Cray T90 that reports itself as "CRAY TS".
12454 From Rik Faith <faith@cs.unc.edu>.
12455
12456 Fri Nov 8 11:34:58 1996 David J. MacKenzie <djm@geech.gnu.ai.mit.edu>
12457
12458 * config.sub: Contributions from bug-gnu-utils to:
12459 Support plain "hppa" (no version given) architecture, reported by
12460 OpenStep.
12461 OpenBSD like NetBSD.
12462 LynxOs is not a hardware supplier.
12463
12464 * config.guess: Contributions from bug-gnu-utils to add support for:
12465 OpenBSD like NetBSD.
12466 Stratus systems.
12467 More Pyramid systems.
12468 i[n>4]86 Intel chips.
12469 M680[n>4]0 Motorola chips.
12470 Use unknown instead of lynx for hardware manufacturer.
12471
12472 Mon Nov 11 10:09:08 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
12473
12474 * install.sh (chmodcmd): Set to null if the DST directory already
12475 exists.
12476
12477 Mon Nov 11 10:43:41 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12478
12479 * configure.in (powerpc*-{eabi,elf,linux,rtem,sysv,solaris}*): Do
12480 not use mt-ppc target Makefile fragment any more.
12481
12482 Sun Nov 3 19:17:07 1996 Stu Grossman (grossman@critters.cygnus.com)
12483
12484 * configure.in (*-*-windows): Exclude everything but those dirs
12485 needed to build windows.
12486
12487 Tue Oct 29 16:41:31 1996 Doug Evans <dje@canuck.cygnus.com>
12488
12489 * Makefile.in (all-target-winsup): Depend on all-target-librx.
12490
12491 Mon Oct 28 17:32:46 1996 Stu Grossman (grossman@critters.cygnus.com)
12492
12493 * configure.in: Exclude mmalloc from i386-windows.
12494
12495 Thu Oct 24 09:22:46 1996 Stu Grossman (grossman@critters.cygnus.com)
12496
12497 * Undo my previous change.
12498
12499 Thu Oct 24 12:12:04 1996 Ian Lance Taylor <ian@cygnus.com>
12500
12501 * Makefile.in (EXTRA_GCC_FLAGS): Pass down GCC_FOR_TARGET
12502 unconditionally.
12503 (MAKEOVERRIDES): Define (revert this part of October 18 change).
12504
12505 Thu Oct 24 09:02:07 1996 Stu Grossman (grossman@critters.cygnus.com)
12506
12507 * Makefile.in (FLAGS_TO_PASS): Add $(HOST_FLAGS) to allow the
12508 host to add it's own flags.
12509
12510 Tue Oct 22 15:20:26 1996 Ian Lance Taylor <ian@cygnus.com>
12511
12512 * configure: Handle GCC_FOR_TARGET like CC_FOR_TARGET.
12513
12514 Fri Oct 18 13:37:13 1996 Ian Lance Taylor <ian@cygnus.com>
12515
12516 * Makefile.in (CC_FOR_TARGET): Check for xgcc, not Makefile.
12517 (CXX_FOR_TARGET): Likewise.
12518 (GCC_FOR_TARGET): Define.
12519 (BASE_FLAGS_TO_PASS): Remove GCC_FOR_TARGET.
12520 (EXTRA_GCC_FLAGS): Define GCC_FOR_TARGET based on whether
12521 CC_FOR_TARGET was specified on the command line.
12522 (MAKEOVERRIDES): Don't define.
12523
12524 Thu Oct 17 10:27:56 1996 Doug Evans <dje@canuck.cygnus.com>
12525
12526 * configure.in (m32r): Fix spelling of libg++ libs.
12527
12528 Thu Oct 10 10:37:17 1996 Stan Shebs <shebs@andros.cygnus.com>
12529
12530 * config.sub (-apple*): Remove, now redundant.
12531
12532 Thu Oct 10 12:30:54 1996 Ian Lance Taylor <ian@cygnus.com>
12533
12534 * configure: Don't get confused by CPU-VENDOR-linux-gnu.
12535
12536 * configure: Rework yesterday's sed script patch.
12537
12538 * config.sub: Merge with FSF.
12539
12540 Wed Oct 9 17:24:59 1996 Per Bothner <bothner@deneb.cygnus.com>
12541
12542 * config.guess: Merge from FSF.
12543
12544 1996-09-12 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
12545 * config.guess: Use pc instead of unknown, for pc clone systems.
12546 Change linux to linux-gnu.
12547
12548 Mon Jul 15 23:51:11 1996 Karl Heuer <kwzh@gnu.ai.mit.edu>
12549 * config.guess: Avoid non-portable tr syntax.
12550
12551 Wed Oct 9 06:06:46 1996 Jeffrey A Law (law@cygnus.com)
12552
12553 * test-build.mk (HOLES): Add "xargs" for gdb.
12554
12555 * configure: Avoid hpux10.20 sed bug.
12556
12557 Tue Oct 8 08:32:48 1996 Stu Grossman (grossman@critters.cygnus.com)
12558
12559 * configure.in: Add support for windows host
12560 (that is a build done under the Microsoft build environment).
12561
12562 Tue Oct 8 10:39:08 1996 Ian Lance Taylor <ian@cygnus.com>
12563
12564 * Makefile.in: Replace all uses of srcroot with s, to shrink
12565 command line lengths.
12566
12567 Patches from Geoffrey Noer <noer@cygnus.com>:
12568 * configure.in: If configuring for newlib, pass --with-newlib to
12569 subdirectories.
12570 * Makefile.in (CC_FOR_TARGET): If winsup/Makefile exists, pass a
12571 -Bnewlib/ and -Lwinsup to gcc.
12572 (CXX_FOR_TARGET): Likewise.
12573
12574 Mon Oct 7 10:59:35 1996 Ian Lance Taylor <ian@cygnus.com>
12575
12576 * Makefile.in (ETC_SUPPORT): Add configure.
12577
12578 Fri Oct 4 12:22:58 1996 Angela Marie Thomas (angela@cygnus.com)
12579
12580 * configure.in: Use config/mh-dgux386 for i[345]86-dg-dgux
12581 host configuration file.
12582
12583 Thu Oct 3 09:28:25 1996 Jeffrey A Law (law@cygnus.com)
12584
12585 * configure.in: Break mn10x00 support into separate
12586 mn10200 and mn10300 configurations.
12587 * config.sub: Likewise.
12588
12589 Wed Oct 2 22:27:52 1996 Jeffrey A Law (law@cygnus.com)
12590
12591 * configure.in: Add lots of stuff to noconfigdirs for
12592 the mn10x00 targets.
12593
12594 * config.sub, configure.in: Add mn10x00 support.
12595
12596 Wed Oct 2 15:52:36 1996 Klaus Kaempf <kkaempf@progis.de>
12597
12598 * make-all.com: Call conf-a-gas, not config-a-gas.
12599
12600 Tue Oct 1 01:28:41 1996 James G. Smith <jsmith@cygnus.co.uk>
12601
12602 * configure.in (noconfigdirs): Don't build libgloss for arm-coff
12603 targets.
12604
12605 Mon Sep 30 14:24:01 1996 Stan Shebs <shebs@andros.cygnus.com>
12606
12607 * mpw-README: Add much more detail for native PowerMac.
12608 * mpw-install: New file.
12609 * mpw-configure: Add --norecursion and --help options.
12610 * mpw-config.in: Translate readme and install files when
12611 copying to objdir.
12612 * mpw-build.in: Don't always depend on byacc and flex.
12613 (install-only-top): New action.
12614
12615 Fri Sep 27 17:39:44 1996 Stu Grossman (grossman@critters.cygnus.com)
12616
12617 * configure.in: You can now configure GDB for the v850.
12618
12619 Tue Sep 24 19:05:12 1996 Stan Shebs <shebs@andros.cygnus.com>
12620
12621 * configure.in (noconfigdirs): Don't configure any C++ dirs
12622 if targeting D10V.
12623
12624 Tue Sep 17 12:15:31 1996 Ian Lance Taylor <ian@cygnus.com>
12625
12626 * config.sub: Recognize mips64vr5000.
12627
12628 Mon Sep 16 17:00:52 1996 Ian Lance Taylor <ian@cygnus.com>
12629
12630 * configure.in: Use a single line for host_tools and native_only.
12631
12632 Mon Sep 9 12:21:30 1996 Doug Evans <dje@canuck.cygnus.com>
12633
12634 * config.sub, configure.in: Add entries for m32r.
12635
12636 Thu Sep 5 13:52:47 1996 Tom Tromey <tromey@creche.cygnus.com>
12637
12638 * Makefile.in (inet-install): Don't run install-gzip.
12639
12640 Wed Sep 4 17:26:13 1996 Stu Grossman (grossman@critters.cygnus.com)
12641
12642 * configure.in: Don't config lots of things for *-*-windows*.
12643
12644 Sat Aug 31 11:45:57 1996 Stan Shebs <shebs@andros.cygnus.com>
12645
12646 * mpw-config.in: Test for mpw-true, true, and null-command scripts.
12647 (host_libs, host_tools): Copy from configure.in.
12648 * mpw-configure: Don't complain about directories not found.
12649
12650 Thu Aug 29 16:44:58 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12651
12652 * configure.in (i[345]86): Recognize i686 for pentium pro.
12653 (i[3456]86-*-dgux*): Use config/mh-sysv for the host configuration
12654 file.
12655
12656 * config.guess (i[345]86): Ditto.
12657
12658 Mon Aug 26 18:34:42 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
12659
12660 * configure.in (noconfigdirs): Removed gdb for D10V.
12661
12662 Thu Aug 22 17:13:52 1996 Jeffrey A Law (law@cygnus.com)
12663
12664 * configure.in: Remove ld, target-libio, target-libg++, and
12665 target-libstdc++ from noconfigdirs.
12666
12667 Wed Aug 21 18:56:38 1996 Fred Fish <fnf@cygnus.com>
12668
12669 * configure: Fix three locations where shell scripts were
12670 being run directly rather than with config_shell.
12671
12672 Tue Aug 20 13:08:47 1996 J.T. Conklin <jtc@hippo.cygnus.com>
12673
12674 * configure.in (v850-*-*): Set up initial $noconfigdirs.
12675 * config.sub (basic_machine): Recognize v850.
12676
12677 Thu Aug 15 12:19:33 1996 Stan Shebs <shebs@andros.cygnus.com>
12678
12679 * mpw-configure: Handle multiple enable/disable options and
12680 pass them down recursively, handle -c and -s flags appropriately
12681 depending on choice of compiler, add escape mechanism for
12682 quoted arguments to gC.
12683
12684 Mon Aug 12 13:15:13 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12685
12686 * configure.in (powerpc*-*-*): For eabi, system V.4, Linux, and
12687 solaris targets, use config/mt-ppc to set C{,XX}FLAGS_FOR_TARGETS
12688 so that -mrelocatable-lib and -mno-eabi are used.
12689
12690 * Makefile.in (CONFIGURE_TARGET_MODULES): If target compiler does
12691 not support --print-multi-lib, don't abort.
12692
12693 Thu Aug 8 12:18:59 1996 Klaus Kaempf <kkaempf@progis.de>
12694
12695 * make-all.com: Run config-a-gas.
12696 * setup.com: Don't copy subdirectory files around.
12697
12698 Tue Jul 30 17:49:31 1996 Brendan Kehoe <brendan@cygnus.com>
12699
12700 * configure.in (*-*-ose): Remove exclusion of libgloss for this
12701 target, it now compiles correctly.
12702
12703 Sat Jul 27 15:10:43 1996 Stan Shebs <shebs@andros.cygnus.com>
12704
12705 * mpw-config.in: Generate Mac include for elf/dwarf2.h.
12706
12707 Tue Jul 23 10:47:04 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
12708
12709 * configure.in (d10v-*-*): Remove ld from $noconfigdirs.
12710
12711 Mon Jul 22 13:28:51 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
12712
12713 * configure.in (native_only): Add prms.
12714
12715 Mon Jul 22 12:27:58 1996 Ian Lance Taylor <ian@cygnus.com>
12716
12717 * Makefile.in (GAS_SUPPORT_DIRS): Add make-all.com and setup.com.
12718 (BINUTILS_SUPPORT_DIRS): Likewise.
12719
12720 Thu Jul 18 12:55:40 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12721
12722 * configure.in (d10v-*-*): Don't configure ld or gdb until the
12723 d10v support is added.
12724
12725 Wed Jul 17 14:33:09 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
12726
12727 * configure.in (d10v-*-*): New target.
12728
12729 Mon Jul 15 11:53:00 1996 Jeffrey A Law (law@cygnus.com)
12730
12731 * config.guess (HP 9000/811): Recognize this as a PA1.1
12732 machine.
12733
12734 Fri Jul 12 23:21:17 1996 Ken Raeburn <raeburn@cygnus.com>
12735
12736 * Makefile.in (do-tar-gz): New target, split out from tail end of
12737 taz target. Run each command separately, don't use pipes.
12738 (taz): Use it.
12739
12740 Fri Jul 12 12:08:04 1996 Stan Shebs <shebs@andros.cygnus.com>
12741
12742 * mpw-configure: Look for g-mpw-make.sed in config/mpw.
12743 * mpw-build.in: No builds should depend on building byacc or flex,
12744 they are assumed to be installed already.
12745
12746 Fri Jul 12 09:52:52 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12747
12748 * Makefile.in (CONFIGURE_TARGET_MODULES): Set r environment
12749 variable that CC_FOR_TARGET needs.
12750
12751 Thu Jul 11 10:09:45 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12752
12753 * Makefile.in (CONFIGURE_TARGET_MODULES): Determine if the multlib
12754 options have changed since the last time the subdirectory was
12755 configured, and if it has, reconfigure.
12756 (CLEAN_TARGET_MODULES): Delete multilib.out and tmpmulti.out, which
12757 CONFIGURE_TARGET_MODULES uses to remember the old multilib options.
12758
12759 Wed Jul 10 18:56:59 1996 Doug Evans <dje@canuck.cygnus.com>
12760
12761 * Makefile.in (ALL_MODULES,CROSS_CHECK_MODULES,INSTALL_MODULES,
12762 CLEAN_MODULES): Add bash.
12763 (all-bash): New target.
12764
12765 Mon Jul 8 17:33:14 1996 Jim Wilson <wilson@cygnus.com>
12766
12767 * configure.in (mips-sgi-irix6*): Use mh-irix6 instead of mh-irix5.
12768
12769 Mon Jul 1 13:31:35 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12770
12771 * config.sub (basic_machine): Recognize d10v as a valid processor.
12772
12773 Fri Jun 28 12:14:35 1996 Stan Shebs <shebs@andros.cygnus.com>
12774
12775 * mpw-configure: Add support for --bindir.
12776 * mpw-build.in: Use a GCC-specific build script for GCC actions.
12777
12778 Wed Jun 26 17:20:12 1996 Geoffrey Noer <noer@cygnus.com>
12779
12780 * configure.in: add bash, time, gawk to list of hosttools and things
12781 to only build for native toolchains
12782
12783 Tue Jun 25 23:09:03 1996 Jason Molenda (crash@godzilla.cygnus.co.jp)
12784
12785 * Makefile.in (docdir): Remove.
12786
12787 Tue Jun 25 19:00:08 1996 Jason Molenda (crash@godzilla.cygnus.co.jp)
12788
12789 * Makefile.in (datadir): Set to $(prefix)/share.
12790
12791 Mon Jun 24 23:26:07 1996 Geoffrey Noer <noer@cygnus.com>
12792
12793 * configure.in: build diff and patch for cygwin32-hosted
12794 toolchains.
12795
12796 Mon Jun 24 15:01:12 1996 Joel Sherrill <joel@merlin.gcs.redstone.army.mil>
12797
12798 * config.sub: Accept -rtems*.
12799
12800 Sun Jun 23 22:41:54 1996 Geoffrey Noer <noer@cygnus.com>
12801
12802 * configure.in: enable dosrel for cygwin32-hosted builds,
12803 remove diff from the list of things not buildable
12804 via Canadian Cross
12805
12806 Sat Jun 22 11:39:01 1996 Jason Merrill <jason@yorick.cygnus.com>
12807
12808 * Makefile.in (TARGET_SUBDIR): Move comment to previous line so we
12809 don't get ". ".
12810
12811 Fri Jun 21 17:24:48 1996 Jim Wilson <wilson@cygnus.com>
12812
12813 * configure.in (mips*-sgi-irix6*): Set noconfigdirs appropriately.
12814
12815 Thu Jun 20 16:57:40 1996 Ken Raeburn <raeburn@cygnus.com>
12816
12817 * Makefile.in (taz): Handle case where tex3patch didn't even get
12818 checked out. Also, if it was found, put the symlink in a new util
12819 subdirectory.
12820
12821 Thu Jun 20 12:20:33 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12822
12823 * config.guess (*:Linux:*:*): Add support for PowerPC Linux.
12824
12825 Tue Jun 18 14:24:12 1996 Klaus Kaempf (kkaempf@progis.de)
12826
12827 * config.sub: Recognize -openvms.
12828 * configure.in (alpha*-*-*vms*): Set noconfigdirs.
12829 * make-all.com, setup.com: New files.
12830
12831 Mon Jun 17 16:34:46 1996 Jason Merrill <jason@yorick.cygnus.com>
12832
12833 * Makefile.in (taz): tex3patch moved to texinfo/util.
12834
12835 Sat Jun 15 17:13:25 1996 Geoffrey Noer <noer@cygnus.com>
12836
12837 * configure: enable_gdbtk=no for cygwin32-hosted toolchains
12838 * configure.in: remove make from disable-if-Can-Cross list
12839 enable gdb if ${host} and ${target} are cygwin32
12840
12841 Fri Jun 7 18:16:52 1996 Harlan Stenn <harlan@pfcs.com>
12842
12843 * config.guess (i?86-ncr-sysv*): Emit minor release numbers.
12844 Recognize the NCR 4850 machine and NCR Pentium-based platforms.
12845
12846 Wed Jun 5 00:09:17 1996 Per Bothner <bothner@wombat.gnu.ai.mit.edu>
12847
12848 * config.guess: Combine mips-mips-riscos cases, and use cpp to
12849 distinguish sysv/svr4/bsd variants.
12850 Based on a patch from Harlan Stenn <harlan@pfcs.com>.
12851
12852 Fri Jun 7 14:24:49 1996 Tom Tromey <tromey@creche.cygnus.com>
12853
12854 * configure.in: Added copyright notice.
12855 * move-if-change: Added copyright notice.
12856
12857 Thu Jun 6 16:27:05 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12858
12859 * configure.in (powerpcle-*-solaris*): Until we get shared
12860 libraries working, don't build gdb, sim, make, tcl, tk, or
12861 expect.
12862
12863 Tue Jun 4 20:41:45 1996 Per Bothner <bothner@deneb.cygnus.com>
12864
12865 * config.guess: Merge with FSF:
12866
12867 Mon Jun 3 08:49:14 1996 Karl Heuer <kwzh@gnu.ai.mit.edu>
12868 * config.guess (*:Linux:*:*): Add guess for sparc-unknown-linux.
12869
12870 Fri May 24 18:34:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
12871 * config.guess (AViiON:dgux:*:*): Fix typo in recognizing mc88110.
12872
12873 Fri Apr 12 20:03:59 1996 Per Bothner <bothner@spiff.gnu.ai.mit.edu>
12874 * config.guess: Combine two OSF1 rules.
12875 Also recognize field test versions. From mjr@zk3.dec.com.
12876 * config.guess (dgux): Use /usr/bin/uname rather than uname,
12877 because GNU uname does not support -p. From pmr@pajato.com.
12878
12879 Tue Jun 4 11:07:25 1996 Tom Tromey <tromey@csk3.cygnus.com>
12880
12881 * Makefile.in (MAKEDIRS): Removed $(tooldir).
12882
12883 Tue May 28 12:30:50 1996 Stan Shebs <shebs@andros.cygnus.com>
12884
12885 * mpw-README: Document GCCIncludes.
12886
12887 Sun May 26 15:16:27 1996 Fred Fish <fnf@cygnus.com>
12888
12889 * configure.in (alpha-*-linux*): Set enable_shared to yes.
12890
12891 Tue May 21 15:41:39 1996 Stan Shebs <shebs@andros.cygnus.com>
12892
12893 * mpw-configure: Handle --enable-FOO and --disable-FOO.
12894
12895 Mon May 20 10:12:29 1996 Geoffrey Noer <noer@cygnus.com>
12896
12897 * configure.in (*-*-cygwin32): Configure make.
12898
12899 Tue May 7 14:19:42 1996 Tom Tromey <tromey@snuffle.cygnus.com>
12900
12901 * Makefile.in (inet-install): Quote value of INSTALL_MODULES.
12902
12903 Fri May 3 08:57:17 1996 Tom Tromey <tromey@lisa.cygnus.com>
12904
12905 * Makefile.in (all-inet): Depend on all-perl.
12906
12907 * Makefile.in (inet-install): New target.
12908
12909 * Makefile.in (all-inet): Depend on all-tcl.
12910 (all-inet): Depend on all-send-pr.
12911
12912 Tue Apr 30 13:55:51 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12913
12914 * configure.in (powerpcle-*-solaris*): Turn off tk and tcl
12915 temporarily.
12916
12917 Thu Apr 25 11:48:20 1996 Ian Lance Taylor <ian@cygnus.com>
12918
12919 * configure.in: Don't configure --with-gnu-ld on AIX.
12920
12921 Thu Apr 25 06:33:36 1996 Michael Meissner <meissner@wogglebug.tiac.net>
12922
12923 * configure.in (powerpcle-*-solaris*): Turn off gdb temporarily.
12924
12925 Tue Apr 23 09:07:39 1996 Tom Tromey <tromey@creche.cygnus.com>
12926
12927 * Makefile.in (ALL_MODULES): Added all-inet.
12928 (CROSS_CHECK_MODULES): Added check-inet.
12929 (INSTALL_MODULES): Added install-inet.
12930 (CLEAN_MODULES): Added clean-inet.
12931 (all-indent): New target.
12932
12933 * configure.in (host_tools): Added inet.
12934 (native_only): Added inet.
12935 (noconfigdirs): Added inet.
12936
12937 Fri Apr 19 15:35:29 1996 Ian Lance Taylor <ian@cygnus.com>
12938
12939 * configure.in: Don't configure libgloss if we are not configuring
12940 newlib.
12941
12942 Wed Apr 17 19:30:01 1996 Rob Savoye <rob@chinadoll.cygnus.com>
12943
12944 * configure.in: Don't configure libgloss for unsupported
12945 architectures.
12946
12947 Tue Apr 16 11:17:05 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12948
12949 * Makefile.in (CLEAN_MODULES): Add clean-apache.
12950
12951 Mon Apr 15 15:09:05 1996 Tom Tromey <tromey@creche.cygnus.com>
12952
12953 * Makefile.in (ALL_MODULES): Include all-apache.
12954 (CROSS_CHECK_MODULES): Include check-apache.
12955 (INSTALL_MODULES): Include install-apache.
12956 (all-apache): New target.
12957
12958 * configure.in: Added apache everywhere perl is seen.
12959
12960 Mon Apr 15 14:59:13 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12961
12962 * Makefile.in: Add support for clean-{module} and
12963 clean-target-{module} rules.
12964
12965 Wed Apr 10 21:37:41 PDT 1996 Marilyn E. Sander <msander@cygnus.com>
12966
12967 * configure.in (*-*-ose) do not build libgloss.
12968
12969 Mon Apr 8 16:16:20 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12970
12971 * config.guess (prep*:SunOS:5.*:*): Turn into
12972 powerpele-unknown-solaris2.
12973
12974 Mon Apr 8 14:45:41 1996 Ian Lance Taylor <ian@cygnus.com>
12975
12976 * configure.in: Permit --enable-shared to specify a list of
12977 directories.
12978
12979 Fri Apr 5 08:17:57 1996 Jason Molenda (crash@phydeaux.cygnus.com)
12980
12981 * configure.in (host==solaris): Pass only the first word of $CC
12982 to /usr/bin/which when checking if we're using /usr/ccs/bin/cc.
12983
12984 Fri Apr 5 03:16:13 1996 Jason Molenda (crash@phydeaux.cygnus.com)
12985
12986 * Makefile.in (BASE_FLAGS_TO_PASS): pass down $(MAKE).
12987
12988 Thu Mar 28 14:11:11 1996 Tom Tromey <tromey@creche.cygnus.com>
12989
12990 * Makefile.in (ALL_MODULES): Include all-perl.
12991 (CROSS_CHECK_MODULES): Include check-perl.
12992 (INSTALL_MODULES): Include install-perl.
12993 (ALL_X11_MODULES): Include all-guile.
12994 (CHECK_X11_MODULES): Include check-guile.
12995 (INSTALL_X11_MODULES): Include install-guile.
12996 (all-perl): New target.
12997 (all-guile): New target.
12998
12999 * configure.in (host_tools): Include perl and guile.
13000 (native_only): Include perl and guile.
13001 (noconfigdirs): Don't build guile and perl; no ports have been
13002 done.
13003
13004 Tue Mar 26 21:18:50 1996 Andrew Cagney <cagney@kremvax.highland.com.au>
13005
13006 * configure (--enable-*): Handle quoted option lists such as
13007 --enable-sim-cflags='-g0 -O' better.
13008
13009 Thu Mar 21 11:53:08 1996 Michael Meissner <meissner@tiktok.cygnus.com>
13010
13011 * Makefile.in ({,inst}all-target): New rule so we can make and
13012 install all of the target directories easily.
13013
13014 Wed Mar 20 18:10:57 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
13015
13016 * configure.in: Add missing global flag in sed substitution when
13017 deleting `target-' from ${configdirs}.
13018
13019 Thu Mar 14 19:15:06 1996 Ian Lance Taylor <ian@cygnus.com>
13020
13021 * Makefile.in (DO_X): Don't get confused if CC contains `=' in an
13022 option.
13023
13024 * configure.in (mips*-nec-sysvr4*): Use a host_makefile_frag of
13025 config/mh-necv4.
13026
13027 * install.sh: Correct misspelling of transformbasename.
13028
13029 * config.guess: Recognize mips-*-sysv*.
13030
13031 Mon Mar 11 15:36:42 1996 Dawn Perchik <dawn@critters.cygnus.com>
13032
13033 * config.sub: Recognize mon960.
13034
13035 Sun Mar 10 13:18:38 1996 Ian Lance Taylor <ian@cygnus.com>
13036
13037 * configure: Restore Canadian Cross handling of BISON and LEX,
13038 removed in Feb 20 change.
13039
13040 Fri Mar 8 20:07:09 1996 Per Bothner <bothner@kalessin.cygnus.com>
13041
13042 * README: Suggestions from Torbjorn Granlund <tege@matematik.su.se>:
13043 Mention make install. Remove the old copyright date as well the
13044 clumsy and rather pointless copyright on the README file.
13045
13046 Fri Mar 8 17:51:35 1996 Ian Lance Taylor <ian@cygnus.com>
13047
13048 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): If there is a
13049 Makefile after running symlink-tree, then run `make distclean' to
13050 avoid clobbering any generated files in srcdir.
13051
13052 Tue Mar 5 08:21:44 1996 J.T. Conklin <jtc@rtl.cygnus.com>
13053
13054 * configure.in (m68k-*-netbsd*): Build everything now.
13055
13056 Wed Feb 28 12:25:46 1996 Jason Merrill <jason@yorick.cygnus.com>
13057
13058 * Makefile.in (taz): Fix quoting.
13059
13060 Tue Feb 27 11:33:57 1996 Doug Evans <dje@charmed.cygnus.com>
13061
13062 * configure.in (sparclet-*-*): Build everything now.
13063
13064 Tue Feb 27 14:31:51 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
13065
13066 * configure.in (m68k-*-linux*): New host.
13067
13068 Mon Feb 26 14:32:44 1996 Ian Lance Taylor <ian@cygnus.com>
13069
13070 * configure: Check for bison before byacc.
13071
13072 Tue Feb 20 23:12:35 1996 Stu Grossman (grossman@critters.cygnus.com)
13073
13074 * Makefile.in configure: Change the way LEX and BISON/YACC are
13075 set. configure now defines DEFAULT_LEX and DEFAULT_YACC by
13076 searching PATH. These are used as fallbacks by Makefile.in if
13077 flex/bison/byacc aren't in objdir.
13078
13079 Mon Feb 19 11:45:30 1996 Ian Lance Taylor <ian@cygnus.com>
13080
13081 * Makefile.in: Make everything which depends upon all-bfd also
13082 depend upon all-opcodes, in case --with-commonbfdlib is used.
13083
13084 Thu Feb 15 19:50:50 1996 Michael Meissner <meissner@tiktok.cygnus.com>
13085
13086 * configure.in (host *-*-cygwin32): Don't build gdb if we are
13087 building NT native compilers on Unix.
13088
13089 Thu Feb 15 17:42:25 1996 Ian Lance Taylor <ian@cygnus.com>
13090
13091 * configure.in: Don't get CC from the host Makefile fragment if we
13092 can find gcc in PATH, or if this is a Canadian Cross. Move the
13093 Solaris test for /usr/ucb/cc to the post target script, just after
13094 the compiler sanity test.
13095
13096 Wed Feb 14 16:57:40 1996 Ian Lance Taylor <ian@cygnus.com>
13097
13098 * config.sub: Merge with FSF.
13099
13100 Tue Feb 13 14:27:48 1996 Ian Lance Taylor <ian@cygnus.com>
13101
13102 * Makefile.in (RPATH_ENVVAR): New variable.
13103 (REALLY_SET_LIB_PATH): Use it.
13104 * configure.in: On HP/UX, set RPATH_ENVVAR to SHLIB_PATH.
13105
13106 Mon Feb 12 15:28:49 1996 Doug Evans <dje@charmed.cygnus.com>
13107
13108 * config.sub, configure.in: Recognize sparclet cpu.
13109
13110 Mon Feb 12 15:33:59 1996 Christian Bauernfeind <chrisbfd@theorie3.physik.uni-erlangen.de>
13111
13112 * config.guess: Support m68k-cbm-sysv4.
13113
13114 Sat Feb 10 12:06:42 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
13115
13116 * config.guess (*:Linux:*:*): Guess m68k-unknown-linux and
13117 m68k-unknown-linuxaout from linker help string. Put quotes around
13118 $ld_help_string.
13119
13120 Thu Dec 7 09:03:24 1995 Tom Horsley <Tom.Horsley@mail.hcsc.com>
13121
13122 * config.guess (powerpc-harris-powerunix): Add guess for port
13123 to new target.
13124
13125 Thu Feb 8 15:37:52 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
13126
13127 * config.guess (UNAME_VERSION): Recognize X4.x as an OSF version.
13128
13129 Mon Feb 5 16:36:51 1996 Ian Lance Taylor <ian@cygnus.com>
13130
13131 * configure.in: If --enable-shared was used, set SET_LIB_PATH to
13132 $(REALLY_SET_LIB_PATH) in Makefile.
13133 * Makefile.in (SET_LIB_PATH): New variable.
13134 (REALLY_SET_LIB_PATH): New variable.
13135 ($(DO_X)): Use $(SET_LIB_PATH).
13136 (install.all, gcc-no-fixedincludes, $(ALL_MODULES)): Likewise.
13137 ($(NATIVE_CHECK_MODULES), $(CROSS_CHECK_MODULES)): Likewise.
13138 ($(INSTALL_MODULES), $(CONFIGURE_TARGET_MODULES)): Likewise.
13139 ($(ALL_TARGET_MODULES), $(CHECK_TARGET_MODULES)): Likewise.
13140 ($(INSTALL_TARGET_MODULES), $(ALL_X11_MODULES)): Likewise.
13141 ($(CHECK_X11_MODULES), $(INSTALL_X11_MODULES)): Likewise.
13142 (all-gcc, all-bootstrap, check-gcc, install-gcc): Likewise.
13143 (install-dosrel): Likewise.
13144 (all-opcodes): Depend upon all-libiberty.
13145
13146 Sun Feb 4 16:51:11 1996 Steve Chamberlain <sac@slash.cygnus.com>
13147
13148 * config.guess (*:CYGWIN*): New
13149
13150 Sat Feb 3 10:42:35 1996 Michael Meissner <meissner@tiktok.cygnus.com>
13151
13152 * Makefile.in (all-target-winsup): All all-target-libiberty.
13153
13154 Fri Feb 2 17:58:56 1996 Michael Meissner <meissner@tiktok.cygnus.com>
13155
13156 * configure.in (noconfigdirs): Add missing # in front of comment.
13157
13158 Thu Feb 1 14:38:13 1996 Geoffrey Noer <noer@cygnus.com>
13159
13160 * configure.in: add second pass to things added to noconfigdirs
13161 so *-gm-magic can exclude libgloss properly.
13162
13163 Thu Feb 1 11:10:16 1996 Stan Shebs <shebs@andros.cygnus.com>
13164
13165 * mpw-configure (extralibs_name, rez_name): Set correctly
13166 for MWC68K compiler.
13167
13168 * mpw-README: Add more info on the necessary build tools.
13169
13170 Thu Feb 1 10:22:38 1996 Steve Chamberlain <sac@slash.cygnus.com>
13171
13172 * configure.in, config.sub: Recognize cygwin32.
13173
13174 Wed Jan 31 14:17:10 1996 Richard Henderson <rth@tamu.edu>
13175
13176 * config.guess, config.sub: Recognize A/UX.
13177
13178 Wed Jan 31 13:52:14 1996 Ian Lance Taylor <ian@cygnus.com>
13179
13180 * config.sub: Merge with gcc/config.sub.
13181
13182 Thu Jan 25 11:01:10 1996 Raymond Jou <rjou@mexican.cygnus.com>
13183
13184 * mpw-build.in (do-binutils): Add build of stamps.
13185
13186 Thu Jan 25 17:05:26 1996 James G. Smith <jsmith@cygnus.co.uk>
13187
13188 * config.sub: Add recognition for mips64vr4100*-* targets.
13189
13190 Wed Jan 24 12:47:55 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
13191
13192 * test-build.mk: Add checking of `hpux9' rather than just `hpux'.
13193 Add creation of gconfigargs with `--enable-shared' turned on.
13194 ($(host)-stamp-stage2-configured): Pass $(gconfigargs).
13195 ($(host)-stamp-stage3-configured): Likewise.
13196 (HOLES): Add chatr and ldd.
13197 (i386-ncr-sysv4.3*): Add use of /usr/ccs/bin in the PATH and HOLE_DIRS.
13198
13199 Wed Jan 24 20:32:30 1996 Torbjorn Granlund <tege@noisy.matematik.su.se>
13200
13201 * configure: Pass --nfp to recursive configures.
13202
13203 Mon Jan 22 10:41:56 1996 Steve Chamberlain <sac@slash.cygnus.com>
13204
13205 * Makefile.in (DLLTOOL): New.
13206 (DLLTOOL_FOR_TARGET): New.
13207 (EXTRA_HOST_FLAGS): Pass down DLLTOOL.
13208 (EXTRA_TARGET_FLAGS): Ditto.
13209 (EXTRA_GCC_FLAGS): Ditto.
13210 (CONFIGURE_TARGET_MODULES): Ditto.
13211 (DO_X): Ditto.
13212 * configure: Add DLLTOOL.
13213
13214 Fri Jan 19 13:30:15 1996 Stan Shebs <shebs@andros.cygnus.com>
13215
13216 SCO OpenServer 5 changes from Robert Lipe <robertl@dgii.com>:
13217 * configure.in (i[345]86-*-sco3.2v5*): Use mh-sysv instead of
13218 mh-sco, since old workarounds no longer needed, and don't
13219 build ld, since libraries have weak symbols in COFF.
13220
13221 Sun Jan 14 23:01:31 1996 Fred Fish <fnf@cygnus.com>
13222
13223 * Makefile.in (CONFIGURE_TARGET_MODULES): Add missing ';'.
13224
13225 Fri Jan 12 15:25:35 1996 Ian Lance Taylor <ian@cygnus.com>
13226
13227 * configure.in: Make sure that ${CC} can be used to compile an
13228 executable.
13229
13230 Sat Jan 6 07:23:33 1996 Michael Meissner <meissner@wogglebug.tiac.net>
13231
13232 * Makefile.in (all-gdb): Depend on $(GDB_TK).
13233 * configure (GDB_TK): Set GDB_TK to either "all-tcl all-tk" or
13234 nothing depending on whether gdbtk is being built.
13235
13236 Wed Jan 3 17:54:41 1996 Doug Evans <dje@canuck.cygnus.com>
13237
13238 * Makefile.in (newlib.tar.gz): Delete building of newlib's info files.
13239
13240 Mon Jan 1 19:09:14 1996 Brendan Kehoe <brendan@rtl.cygnus.com>
13241
13242 * configure.in (noconfigdirs): Put ld or gas in this early, if the
13243 user specifically used --with-gnu-ld=no or --with-gnu-as=no.
13244
13245 Sat Dec 30 16:08:57 1995 Doug Evans <dje@canuck.cygnus.com>
13246
13247 * config-ml.in: Add support for
13248 --disable-{softfloat,m68881,m68000,m68020} on m68*-*-*.
13249 Simplify setting of multidirs from --disable-foo.
13250
13251 Fri Dec 29 07:56:11 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13252
13253 * Makefile.in (EXTRA_GCC_FLAGS): If any of the make variables
13254 LANGUAGES, BOOT_CFLAGS, STMP_FIXPROTO, LIMITS_H_TEST,
13255 LIBGCC1_TEST, LIBGCC2_CFLAGS, LIBGCC2_INCLUDES, and ENQUIRE are
13256 non-empty, pass them on to the GCC make.
13257 (all-bootstrap): New rule that is like all-gcc, except it executes
13258 the GCC bootstrap rule instead of the GCC all rule.
13259
13260 Wed Dec 27 15:51:48 1995 Doug Evans <dje@canuck.cygnus.com>
13261
13262 * config-ml.in (ml_realsrcdir): New, to account for ${subdir}.
13263
13264 Tue Dec 26 11:45:31 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13265
13266 * config.guess (AViiON:dgux:*:*): Update from FSF to add pentium
13267 DG/UX support.
13268
13269 Fri Dec 15 10:01:27 1995 Stan Cox <coxs@dg-rtp.dg.com>
13270
13271 * config.sub (i*86*) Change [345] to [3456]
13272
13273 Wed Dec 20 17:41:40 1995 Brendan Kehoe <brendan@lisa.cygnus.com>
13274
13275 * configure.in (noconfigdirs): Add gas or ld if --with-gnu-as=no or
13276 --with-gnu-ld=no.
13277
13278 Wed Dec 20 15:15:35 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13279
13280 * config-ml.in (rs6000*, powerpc*): Add switches to control which
13281 AIX multilibs get built.
13282
13283 Mon Dec 18 17:55:46 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13284
13285 * configure.in (i386-win32): Don't build expect if we're not
13286 building the tcl subdir.
13287
13288 Mon Dec 18 11:47:19 1995 Stan Shebs <shebs@andros.cygnus.com>
13289
13290 * Makefile.in: (configure-target-examples, all-target-examples):
13291 New targets, configure and build example programs.
13292
13293 Fri Dec 15 16:13:03 1995 Stan Shebs <shebs@andros.cygnus.com>
13294
13295 * mpw-configure: If an mpw-config.in generated a file mk.sed,
13296 use it as input to sedit the generated MPW makefile.
13297 * mpw-README: Add a suggestion about Gestalt.h.
13298
13299 Wed Dec 13 16:43:51 1995 Ian Lance Taylor <ian@cygnus.com>
13300
13301 * config.sub: Accept *-*-ieee*.
13302
13303 Tue Dec 12 11:52:57 1995 Ian Lance Taylor <ian@cygnus.com>
13304
13305 * Makefile.in (local-distclean): Remove $(TARGET_SUBDIR). From
13306 Ronald F. Guilmette <rfg@monkeys.com>.
13307
13308 Mon Dec 11 15:31:58 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13309
13310 * configure.in (host==powerpc-pe): Add many directories to noconfigdirs
13311 for powerpc-pe native.
13312 (target==i386-win32): add tcl, make to noconfigdirs if canadian cross.
13313 (target==powerpc-pe): duplicate i386-win32 entry.
13314
13315 Sat Dec 9 14:58:28 1995 Jim Wilson <wilson@chestnut.cygnus.com>
13316
13317 * configure.in (noconfigdirs): Exclude target-newlib for all versions
13318 of vxworks, not just vxworks5.1.
13319
13320 Mon Dec 4 12:05:40 1995 Stan Shebs <shebs@andros.cygnus.com>
13321
13322 * mpw-configure: Add support for exec-prefix.
13323
13324 Mon Dec 4 10:22:50 1995 Jeffrey A. Law <law@rtl.cygnus.com>
13325
13326 * config.guess: Recognize HP model 816 machines as having
13327 a PA1.1 processor.
13328
13329 Mon Dec 4 12:38:15 1995 Ian Lance Taylor <ian@cygnus.com>
13330
13331 * configure: Ignore new autoconf configure options.
13332
13333 Thu Nov 30 16:57:33 1995 Per Bothner <bothner@wombat.gnu.ai.mit.edu>
13334
13335 * config.guess: Recognize Pentium under SCO.
13336 From Robert Lipe <robertl@arnet.com>.
13337
13338 Wed Nov 29 13:49:08 1995 J.T. Conklin <jtc@rtl.cygnus.com>
13339
13340 * configure.in (noconfigdirs): Disable target-libio on v810-*-*.
13341
13342 Wed Nov 29 12:12:01 1995 Ian Lance Taylor <ian@cygnus.com>
13343
13344 * configure.in: Don't configure gas for alpha-dec-osf*.
13345
13346 Tue Nov 28 17:16:48 1995 Ian Lance Taylor <ian@cygnus.com>
13347
13348 * configure.in: Default to --with-stabs for some targets for which
13349 it makes sense: mips*-*-*, alpha*-*-osf*, i[345]86*-*-sysv4* and
13350 i[345]86*-*-unixware*.
13351
13352 Mon Nov 27 13:44:15 1995 Ian Lance Taylor <ian@cygnus.com>
13353
13354 * config-ml.in: Get list of multidirs using gcc --print-multi-lib
13355 rather than basing it on the target. Simplify handling of options
13356 controlling which directories to configure. Remove extraneous
13357 slash in multi-clean target.
13358
13359 Fri Nov 24 17:29:29 1995 Doug Evans <dje@deneb.cygnus.com>
13360
13361 * config-ml.in: Prefix more variables with ml_ so they don't collide
13362 with configure's.
13363
13364 Wed Nov 22 11:27:02 1995 Ian Lance Taylor <ian@cygnus.com>
13365
13366 * configure: Don't turn -v into --v.
13367
13368 Tue Nov 21 16:48:02 1995 Doug Evans <dje@deneb.cygnus.com>
13369
13370 * configure.in (targargs): Fix typo.
13371
13372 * Makefile.in (DEVO_SUPPORT): Add symlink-tree.
13373
13374 Tue Nov 21 14:08:28 1995 Ian Lance Taylor <ian@cygnus.com>
13375
13376 * configure.in: Strip --host and --target options from
13377 CONFIG_ARGUMENTS, and always configure for --host only. Add
13378 --with-cross-host option when building with a cross-compiler.
13379 * configure: Canonicalize the arguments put into config.status by
13380 always using `=' for an option with an argument. Pass a presumed
13381 --host or --target explicitly.
13382
13383 Fri Nov 17 17:50:30 1995 Stan Shebs <shebs@andros.cygnus.com>
13384
13385 * config.sub: Merge -macos*, -magic*, -pe*, and -win32 cases
13386 into general OS recognition case.
13387
13388 Fri Nov 17 17:42:25 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13389
13390 * configure.in (target_configdirs): add target-winsup only
13391 for win32 target systems.
13392
13393 Thu Nov 16 14:04:47 1995 Ian Lance Taylor <ian@cygnus.com>
13394
13395 * Makefile.in (all-target-libgloss): Depend upon
13396 configure-target-newlib, since when libgloss is built it looks to
13397 see if the newlib directory exists.
13398
13399 Wed Nov 15 14:47:52 1995 Ken Raeburn <raeburn@cygnus.com>
13400
13401 * Makefile.in (DEVO_SUPPORT): Use config-ml.in instead of
13402 cfg-ml-*.in.
13403
13404 Wed Nov 15 11:45:23 1995 Ian Lance Taylor <ian@cygnus.com>
13405
13406 * configure: Handle LD and LD_FOR_TARGET when configuring a
13407 Canadian Cross.
13408
13409 Tue Nov 14 14:56:11 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13410
13411 * configure.in (target_libs): add target-winsup.
13412 (target==i386-win32): add patch diff flex make to $noconfigdirs.
13413 (target==ppcle-pe): remove ld from $noconfigdirs.
13414
13415 Tue Nov 14 01:25:50 1995 Doug Evans <dje@canuck.cygnus.com>
13416
13417 * Makefile.in (CONFIGURE_TARGET_MODULES): Pass --with-target-subdir.
13418 Preserve relative path names in $srcdir. Build symlink tree if
13419 configuring cross target dir and srcdir=. (= no VPATH support).
13420 (configure-target-libg++): Depend on configure-target-librx.
13421 * cfg-ml-com.in, cfg-ml-pos.in: Deleted.
13422 * config-ml.in: New file.
13423 * symlink-tree: New file.
13424 * configure: Ensure srcdir="." if that's what it is.
13425
13426 Mon Nov 13 12:34:20 1995 Stan Shebs <shebs@andros.cygnus.com>
13427
13428 * mpw-README: Clarify some phrasing, add notes about CodeWarrior
13429 includes and FLEX_SKELETON setting.
13430 * mpw-configure (--with-gnu-ld): New option, controls whether
13431 to use PPCLink or ld with PowerMac GCC.
13432 * mpw-build.in (all-grez, do-grez, install-grez): New targets.
13433 * mpw-config.in: Configure grez if targeting Mac.
13434
13435 * config.sub: Accept pmac and pmac-mpw as names for PowerMacs,
13436 accept mpw and mac-mpw as names for m68k Macs, change macos7 to
13437 just macos.
13438 * configure.in: Configure grez resource compiler if targeting Mac.
13439 * Makefile.in (all-grez, install-grez): New targets.
13440
13441 Wed Nov 8 17:33:51 1995 Jason Merrill <jason@yorick.cygnus.com>
13442
13443 * configure: CXX defaults to gcc, not g++. If we find
13444 gcc in the path, set CC to gcc -O2.
13445
13446 Tue Nov 7 15:45:17 1995 Ian Lance Taylor <ian@cygnus.com>
13447
13448 * configure: Default ${build} correctly. Avoid picking up extra
13449 spaces when reading CC and CXX from Makefile. When doing a
13450 Canadian Cross, use plausible default values for numerous
13451 variables.
13452 * configure.in: When doing a Canadian Cross, don't try to
13453 configure tools whose configure script can't handle it.
13454
13455 Mon Nov 6 19:32:17 1995 Jim Wilson <wilson@chestnut.cygnus.com>
13456
13457 * cfg-ml-com.in (sh-*-*): Add m2 and ml/m2 to multidirs.
13458
13459 Sun Nov 5 00:15:41 1995 Per Bothner <bothner@kalessin.cygnus.com>
13460
13461 * configure: Remove dubious bug reporting address.
13462
13463 Fri Nov 3 08:17:54 1995 Per Bothner <bothner@kalessin.cygnus.com>
13464
13465 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): If subdir has
13466 configure script, run that instead of this directory's configure.
13467 In either case, print a message that we're configuring the sub-dir.
13468
13469 Thu Nov 2 23:23:36 1995 Per Bothner <bothner@kalessin.cygnus.com>
13470
13471 * configure.in: Before checking for the existence of various files,
13472 use sed to filter out "target-".
13473
13474 Thu Nov 2 13:24:56 1995 Ian Lance Taylor <ian@cygnus.com>
13475
13476 * Makefile.in (DO_X): Split rule to decrease command line length
13477 for systems with small ARG_MAX values. From phdm@info.ucl.ac.be
13478 (Philippe De Muyter).
13479
13480 Wed Nov 1 15:18:35 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13481
13482 * Makefile.in (all-patch): depend on all-libiberty.
13483
13484 Wed Nov 1 12:23:20 1995 Ian Lance Taylor <ian@cygnus.com>
13485
13486 * configure.in: If the only directory in target_configdirs which
13487 actually exists is libiberty, then set target_configdirs to empty,
13488 to avoid trying to build a target libiberty in a gas or gdb
13489 distribution.
13490
13491 Tue Oct 31 17:52:39 1995 J.T. Conklin <jtc@slave.cygnus.com>
13492
13493 * configure.in (host_makefile_frag): Use m68k-sun-sunos* instead
13494 of m68k-sun-* when selecting mh-sun3 to avoid matching NetBSD/sun3
13495 systems.
13496
13497 Tue Oct 31 16:57:32 1995 Jim Wilson <wilson@chestnut.cygnus.com>
13498
13499 * configure.in (copy_dirs): Use sys-include instead of include
13500 for --with-headers option.
13501
13502 Tue Oct 31 10:29:36 1995 steve chamberlain <sac@slash.cygnus.com>
13503
13504 * Makefile.in, configure.in: Make winsup builds work with
13505 new scheme.
13506
13507 Mon Oct 30 18:57:09 1995 Ian Lance Taylor <ian@cygnus.com>
13508
13509 * configure.in: Build the linker on AIX.
13510
13511 Mon Oct 30 12:27:16 1995 Per Bothner <bothner@kalessin.cygnus.com>
13512
13513 * Makefile.in (CC_FOR_TARGET, CXX_FOR_TARGET): Add $(TARGET_SUBDIR)
13514 where needed.
13515
13516 Mon Oct 30 12:45:25 1995 Doug Evans <dje@cygnus.com>
13517
13518 * Makefile.in (all-gcc): Fix typo.
13519
13520 Sat Oct 28 10:27:59 1995 Per Bothner <bothner@kalessin.cygnus.com>
13521
13522 * Makefile.in ($(CHECK_TARGET_MODULES)): Fix typo.
13523
13524 Fri Oct 27 23:14:12 1995 Per Bothner <bothner@kalessin.cygnus.com>
13525
13526 * configure.in: Rename libFOO to target-libFOO, and xiberty
13527 to target-xiberty, to provide more flexibility.
13528 (target_subdir): Define. Create if cross.
13529 Set TARGET_SUBDIR in Makefile to ${target_subdir}.
13530 * Makefile.in: Rename all-libFOO -> all-target-libFOO, all-xiberty
13531 -> all-target-libiberty, configure-libFOO -> configure-target-libFOO,
13532 check-libFOO -> check-target-libFOO, etc.
13533 ($(DO_X)): Iterate over TARGET_CONFIGDIRS after SUBDIRS.
13534 ($(CONFIGURE_TARGET_MODULES), $(CHECK_TARGET_MODULES),
13535 $(ALL_TARGET_MODULES), $(INSTALL_TARGET_MODULES)): Update accordingly.
13536 (configure-target-XXX): Depend on $(ALL_GCC), not all-gcc, to
13537 allow ALL_GCC="" to only configure.
13538 (DEVO_SUPPORT): Add cfg-ml-com.in and cfg-ml-pos.in.
13539 (ETC_SUPPORT, ETC_SUPPORT_PFX): Merge; update 'taz' accordingly.
13540 (LIBGXX_SUPPORT_DIRS): Remove xiberty.
13541
13542 Sat Oct 28 01:53:49 1995 Ken Raeburn <raeburn@cygnus.com>
13543
13544 * Makefile.in (taz): Build "info" in etc explicitly.
13545
13546 Fri Oct 27 09:32:30 1995 Stu Grossman (grossman@cygnus.com)
13547
13548 * configure.in: Make sure that CC is undefined (as opposed to
13549 null) if toplevel/config/mh-{host} doesn't define it. Fixes a
13550 problem with autoconf trying to configure on a host without GCC.
13551
13552 Thu Oct 26 22:35:01 1995 Stan Shebs <shebs@andros.cygnus.com>
13553
13554 * mpw-configure: Set host alias from choice of host compiler,
13555 only use generic MPW Makefile sed if present, edit a file
13556 named "hacked_Makefile.in" instead of "Makefile.in" if present.
13557 * mpw-README: Add problem notes about CW6 and CW7.
13558
13559 Thu Oct 26 05:45:10 1995 Ken Raeburn <raeburn@kr-pc.cygnus.com>
13560
13561 * Makefile.in (taz): Use ";" instead of ";;".
13562
13563 Wed Oct 25 15:18:24 1995 Per Bothner <bothner@kalessin.cygnus.com>
13564
13565 * Makefile.in (taz): Grep for '^diststuff:' or '^info:' in
13566 sub-directory Makefiles, instead of using DISTSTUFFDIRS and
13567 DISTDOCDIRS.
13568 (DISTSTUFFDIRS, DISTDOCDIRS): Removed - no longer used.
13569 (newlib.tar.gz): Don't pass DISTDOCDIRS to recursive make.
13570
13571 Wed Oct 25 14:43:55 1995 Per Bothner <bothner@kalessin.cygnus.com>
13572
13573 * Makefile.in (DISTDOCDIRS): Remove ld gprof bnutils gas libg++ gdb
13574 and gnats, because they are now subsumed by DISTSTUFFDIRS.
13575 Move bfd to DISTSTUFFDIRS.
13576
13577 Tue Oct 24 18:19:09 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13578
13579 * Makefile.in (X11_LIB): Removed.
13580 (X11_FLAGS_TO_PASS): pass only X11_EXTRA_CFLAGS and X11_EXTRA_LIBS.
13581
13582 * configure.in (host_makefile_frag): mh-aix & mh-sun removed.
13583
13584 Sun Oct 22 13:04:42 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13585
13586 * cfg-ml-com.in (powerpc*): Shorten some of the multilib directory
13587 names.
13588
13589 Fri Oct 20 18:02:10 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13590
13591 * cfg-ml-com.in (powerpc*-eabi*): Add mcall-aixdesc varients.
13592
13593 Thu Oct 19 10:40:57 1995 steve chamberlain <sac@slash.cygnus.com>
13594
13595 * configure.in (i[345]86-*-win32): Always build newlib.
13596 Don't configure cvs, autoconf or texinfo.
13597 * Makefile.in (LD_FOR_TARGET): New.
13598 (BASE_FLAGS_TO_PASS, EXTRA_TARGET_FLAGS, CONFIGURE_TARGET_MODULES):
13599 Pass down LD_FOR_TARGET.
13600
13601 Wed Oct 18 15:53:56 1995 steve chamberlain <sac@slash.cygnus.com>
13602
13603 * winsup: New directory.
13604 * Makefile.in: Build winsup.
13605 * configure.in: Winsup is configured when target is win32.
13606 Can only build win32 target GDB when native.
13607
13608 Mon Oct 16 09:42:31 1995 Jeffrey A Law (law@cygnus.com)
13609
13610 * config.guess: Recognize HP model 819 machines as having
13611 a PA 1.1 processor.
13612
13613 Mon Oct 16 10:49:43 1995 Ian Lance Taylor <ian@cygnus.com>
13614
13615 * configure: Fix sed loop which substitutes for CC and CXX to
13616 avoid bug found in various sed implementations.
13617
13618 Wed Oct 11 16:16:20 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13619
13620 * cfg-ml-com.in (powerpc-*-eabisim): Delete separate rule for
13621 simulator. Use standard powerpc-*-eabi*.
13622
13623 Mon Oct 9 17:21:56 1995 Ian Lance Taylor <ian@cygnus.com>
13624
13625 * configure.in: Stop putting gas and binutils in noconfigdirs for
13626 powerpc-*-aix* and rs6000-*-*.
13627
13628 Mon Oct 9 12:38:40 1995 Michael Meissner <meissner@cygnus.com>
13629
13630 * cfg-ml-com.in (powerpc*-*-eabisim*): Add support for building
13631 -mcall-aixdesc libraries.
13632
13633 Fri Oct 6 16:17:57 1995 Ken Raeburn <raeburn@cygnus.com>
13634
13635 Mon Sep 25 22:49:32 1995 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
13636
13637 * config.sub (arm | armel | armeb): Fix shell syntax.
13638
13639 Fri Oct 6 14:40:28 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13640
13641 * cfg-ml-com.in ({powerpc,rs6000}-ibm-aix*): Add multilibs for
13642 -msoft-float and -mcpu=common support.
13643 (powerpc*-*-eabisim*): Add support for building -mcall-aix
13644 libraries.
13645
13646 Thu Oct 5 13:26:37 1995 Brendan Kehoe <brendan@lisa.cygnus.com>
13647
13648 * configure.in: Allow configuration and build of emacs19 for the alpha.
13649
13650 Wed Oct 4 22:05:36 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13651
13652 * configure.in (CC): Get ^CC, not just any old CC, from
13653 ${host_makefile_frag}.
13654
13655 Wed Oct 4 21:55:00 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13656
13657 * configure.in (CC): Try to get CC from
13658 ${srcdir}/${host_makefile_frag}, not ${host_makefile_frag}.
13659
13660 Wed Oct 4 21:44:12 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13661
13662 * Makefile.in (TARGET_CONFIGDIRS): configure targetdirs
13663 only if it exists in $(srcdir).
13664
13665 Wed Oct 4 11:52:31 1995 Ian Lance Taylor <ian@cygnus.com>
13666
13667 * configure: If CC and CXX are not set in the environment, set
13668 them, based on either an existing Makefile or on searching for gcc
13669 in PATH. Substitute for CC and CXX in Makefile.
13670 * configure.in: Remove libm from target_libs. Separate
13671 target_configdirs from configdirs. If CC is not set in
13672 environment, try to get it from a host Makefile fragment. Rewrite
13673 changes of configdirs to use skipdirs instead. A few minor
13674 tweaks. Take directories out of target_configdirs as they are
13675 taken out of configdirs. Remove existing Makefile files from
13676 subdirectories. Substitute for TARGET_CONFIGDIRS and
13677 CONFIG_ARGUMENTS in Makefile.
13678 * Makefile.in (TARGET_CONFIGDIRS): New variable, automatically set
13679 by configure.in.
13680 (CONFIG_ARGUMENTS): Likewise.
13681 (CONFIGURE_TARGET_MODULES): New variable.
13682 ($(DO_X)): Loop over TARGET_CONFIGDIRS as well as SUBDIRS.
13683 ($(CONFIGURE_TARGET_MODULES)): New target.
13684 (configure-libg++, configure-libio): New targets.
13685 (all-libg++): Depend upon configure-libg++.
13686 (all-libio): Depend upon configure-libio.
13687 (configure-libgloss, all-libgloss): New targets.
13688 (configure-libstdc++): New target.
13689 (all-libstdc++): Depend upon configure-libstdc++.
13690 (configure-librx, all-librx): New targets.
13691 (configure-newlib): New target.
13692 (all-newlib): Depend upon configure-newlib
13693 (configure-xiberty): New target.
13694 (all-xiberty): Depend upon configure-xiberty.
13695
13696 Sat Sep 30 04:32:59 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13697
13698 * configure.in (host i[345]86-*-win32): Expand the
13699 noconfigdirs again.
13700
13701 Thu Sep 28 21:18:49 1995 Stan Shebs <shebs@andros.cygnus.com>
13702
13703 * mpw-configure: Fix sed command file name.
13704
13705 Thu Sep 28 17:39:56 1995 steve chamberlain <sac@slash.cygnus.com>
13706
13707 * configure.in (host i[345]86-*-win32): Reduce the
13708 noconfigdirs again.
13709
13710 Wed Sep 27 12:24:00 1995 Ian Lance Taylor <ian@cygnus.com>
13711
13712 * configure.in: Don't configure ld and gdb for powerpc*-*-winnt*
13713 or powerpc*-*-pe*, since they are not yet supported.
13714
13715 Tue Sep 26 14:30:01 1995 Stan Shebs <shebs@andros.cygnus.com>
13716
13717 Add PowerMac support and many other enhancements.
13718 * mpw-configure: New option --cc to select compiler to use,
13719 paste options set according to --cc into the generated
13720 Makefile, generate the Makefile by sed'ing the Unix Makefile.in
13721 if mpw-make.sed is present.
13722 * mpw-config.in: Don't test for gC1, test for mpw-touch,
13723 add forward includes for PowerPC include files.
13724 * mpw-build.in: Build using Makefile.PPC if present.
13725 (do-byacc, etc): Remove separate version resource builds.
13726 (do-gas): Build "stamps" before "all".
13727 (do-gcc): Build "stamps-h" and "stamps-c" before "all".
13728 * mpw-README: Update to reflect --cc option, PowerMac support,
13729 and recently-reported compatibility problems.
13730
13731 Fri Sep 22 12:15:42 1995 Doug Evans <dje@deneb.cygnus.com>
13732
13733 * cfg-ml-com.in (m68*-*-*): Only build multilibs for
13734 embedded m68k systems (-aout, -coff, -elf, -vxworks).
13735 (--with-multilib-top): Pass to recursive invocations.
13736
13737 Tue Sep 19 13:51:05 1995 J.T. Conklin <jtc@blues.cygnus.com>
13738
13739 * configure.in (noconfigdirs): Disable libg++ and libstdc++ on
13740 v810-*-*.
13741
13742 Mon Sep 18 23:08:26 1995 J.T. Conklin <jtc@rtl.cygnus.com>
13743
13744 * configure.in (noconfigdirs): Disable bfd, binutils, gas, gcc,
13745 gdb, ld and opcodes on v810-*-*.
13746
13747 Tue Sep 12 18:03:31 1995 Ian Lance Taylor <ian@cygnus.com>
13748
13749 * Makefile.in (DO_X): Change do-realclean to do-maintainer-clean.
13750 (local-maintainer-clean): New target.
13751 (maintainer-clean): New target.
13752 (realclean): Just depend upon maintainer-clean.
13753
13754 Fri Sep 8 17:11:14 1995 J.T. Conklin <jtc@rtl.cygnus.com>
13755
13756 * configure.in (noconfigdirs): Disable gdb on m68k-*-netbsd*.
13757
13758 Fri Sep 8 16:46:29 1995 Ian Lance Taylor <ian@cygnus.com>
13759
13760 * configure.in: Build ld in mips*-*-bsd* case.
13761
13762 Thu Sep 7 20:03:41 1995 Ken Raeburn <raeburn@cygnus.com>
13763
13764 * config.sub: Accept -lites* OS. From Ian Dall.
13765
13766 Fri Sep 1 08:06:58 1995 James G. Smith <jsmith@beauty.cygnus.com>
13767
13768 * config.sub: recognise mips64vr4300 and mips64vr4300el as valid
13769 targets.
13770
13771 Wed Aug 30 21:06:50 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13772
13773 * configure.in: treat i386-win32 canadian cross the same as
13774 i386-go32 canadian cross.
13775
13776 Thu Aug 24 14:53:20 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13777
13778 * cfg-ml-com.in (powerpc*-*-eabisim): Add support for PowerPC
13779 running under the simulator to build a reduced set of libraries.
13780 (powerpc-*-eabiaix): Add fine grained multilib support added to
13781 other powerpc targets yesterday.
13782
13783 Wed Aug 23 09:41:56 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13784
13785 * cfg-ml-com.in (powerpc*): Add support for -disable-biendian,
13786 -disable-softfloat, -disable-relocatable, -disable-aix, and
13787 -disable-sysv to control which multilib libraries get built.
13788
13789 Thu Aug 17 16:03:41 1995 Ken Raeburn <raeburn@kr-laptop.cygnus.com>
13790
13791 * configure: Add Makefile.tem to list of files to remove in trap
13792 handler.
13793
13794 Mon Aug 14 19:27:56 1995 Per Bothner <bothner@kalessin.cygnus.com>
13795
13796 * config.guess (*Linux*): Add missing "exit"s.
13797 Also, need specific check for alpha-unknown-linux (uses COFF).
13798
13799 Fri Aug 11 15:38:20 1995 Per Bothner <bothner@kalessin.cygnus.com>
13800
13801 * config.guess: Merge with FSF:
13802
13803 Wed Jun 28 17:57:27 1995 David Edelsohn <edelsohn@mhpcc.edu>
13804 * config.guess (AIX4): More robust release numbering discovery.
13805
13806 Thu Jun 22 19:01:24 1995 Kenneth Stailey (kstailey@eagle.dol-esa.gov)
13807 * config.guess (i386-sequent-ptx): Properly get version number.
13808
13809 Thu Jun 22 18:36:42 1995 Uwe Seimet (seimet@iris1.chemie.uni-kl.de)
13810 * config.guess (mips:*:4*:UMIPS): New case.
13811
13812 Mon Aug 7 09:21:35 1995 Doug Evans <dje@canuck.cygnus.com>
13813
13814 * configure.in (i386-go32 host): Fix typo (deja-gnu -> dejagnu).
13815 (i386-win32 host): Likewise. Don't build readline.
13816
13817 Sat Aug 5 09:51:49 1995 Fred Fish <fnf@rtl.cygnus.com>
13818
13819 * Makefile.in (GDBTK_SUPPORT_DIRS): Define and pass as part of
13820 SUPPORT_FILES to submakes.
13821
13822 Fri Aug 4 13:04:36 1995 Fred Fish <fnf@cygnus.com>
13823
13824 * Makefile.in (GDB_SUPPORT_DIRS): Add utils.
13825 (DEVO_SUPPORT): Add mpw-README, mpw-build.in, mpw-config.h and
13826 mpw-configure.
13827
13828 Wed Aug 2 16:32:40 1995 Ken Raeburn <raeburn@cygnus.com>
13829
13830 * configure.in (appdirs): Use =, not ==, in test expression when
13831 trying to build the text to print in the warning message for
13832 Solaris users.
13833
13834 Mon Jul 31 09:56:18 1995 steve chamberlain <sac@slash.cygnus.com>
13835
13836 * cfg-ml-com.in (z8k-*-coff): Add 'std' multilib build.
13837
13838 Fri Jul 28 00:16:31 1995 Jeffrey A. Law <law@rtl.cygnus.com>
13839
13840 * config.guess: Recognize lynx-2.3.
13841
13842 Thu Jul 27 15:47:59 1995 steve chamberlain <sac@slash.cygnus.com>
13843
13844 * config.sub (z8ksim): Deleted
13845 (z8k-*-coff): New, this is the one true name of the target.
13846
13847 Thu Jul 27 14:33:33 1995 Doug Evans <dje@canuck.cygnus.com>
13848
13849 * cfg-ml-pos.in (dotdot): Work around SunOS sed bug.
13850
13851 Thu Jul 27 13:31:05 1995 Fred Fish (fnf@cygnus.com)
13852
13853 * config.guess (*:Linux:*:*): First try asking the linker what the
13854 default object file format is (elf, aout, or coff). Then if this
13855 fails, try previous methods.
13856
13857 Thu Jul 27 11:28:17 1995 J.T. Conklin <jtc@rtl.cygnus.com>
13858
13859 * configure.in: Don't build newlib for *-*-vxworks5.1.
13860
13861 Thu Jul 27 11:18:47 1995 Brendan Kehoe <brendan@lisa.cygnus.com>
13862
13863 * configure.in: Don't build newlib for a29k-*-vxworks5.1.
13864 * test-build.mk: Add setting of --with-headers for a29k-vxworks5.1.
13865
13866 Tue Jul 25 21:25:39 1995 Doug Evans <dje@canuck.cygnus.com>
13867
13868 * cfg-ml-pos.in (MULTITOP): Trim excess trailing "/.".
13869
13870 Fri Jul 21 10:41:12 1995 Doug Evans <dje@canuck.cygnus.com>
13871
13872 * cfg-ml-com.in: New file.
13873 * cfg-ml-pos.in: New file.
13874
13875 Wed Jul 19 00:37:27 1995 Jeffrey A. Law <law@rtl.cygnus.com>
13876
13877 * COPYING.NEWLIB: Add HP free copyright to list.
13878
13879 Tue Jul 18 10:58:51 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13880
13881 * config.sub: Recognize -eabi* for the system, not just -eabi.
13882
13883 Mon Jul 3 13:44:51 1995 Steve Chamberlain <sac@slash.cygnus.com>
13884
13885 * Makfile.in (DLLTOOL_FOR_TARGET): New name, pass it down.
13886 * config.sub, configure.in (win32): New target and host.
13887
13888 Wed Jun 28 23:57:08 1995 Steve Chamberlain <sac@slash.cygnus.com>
13889
13890 * configure.in: Add i386-pe configuration.
13891
13892 Fri Jun 23 14:28:44 1995 Stan Shebs <shebs@andros.cygnus.com>
13893
13894 * mpw-build.in (install): Install GDB after LD.
13895
13896 Thu Jun 22 17:10:53 1995 Stan Shebs <shebs@andros.cygnus.com>
13897
13898 * mpw-config.in (elf/mips.h): Always forward-include, needed
13899 for GDB to build.
13900
13901 Wed Jun 21 15:17:30 1995 Rob Savoye <rob@darkstar.cygnus.com>
13902
13903 * testsuite: New directory for customer acceptance and whole tool
13904 chain tests.
13905
13906 Wed Jun 21 16:50:29 1995 Ken Raeburn <raeburn@cujo.cygnus.com>
13907
13908 * configure: If per-host line isn't found, but AC_OUTPUT is found
13909 and a configure script exists, run it instead.
13910
13911 Thu Jun 15 21:09:24 1995 Per Bothner <bothner@kalessin.cygnus.com>
13912
13913 * config.guess: Update from FSF, for alpha-dec-winnt3.5 and Crays.
13914
13915 Tue Jun 13 21:43:27 1995 Rob Savoye <rob@darkstar.cygnus.com>
13916
13917 * configure: Set build_{cpu,vendor,os,alias} to host values when
13918 --build isn't specified.
13919
13920 Mon Jun 5 18:26:36 1995 Jason Merrill <jason@phydeaux.cygnus.com>
13921
13922 * Makefile.in (PICFLAG, PICFLAG_FOR_TARGET): New macros.
13923 (FLAGS_TO_PASS): Pass them.
13924 (EXTRA_TARGET_FLAGS): Ditto.
13925
13926 Wed May 31 22:27:42 1995 Jim Wilson <wilson@chestnut.cygnus.com>
13927
13928 * Makefile.in (all-libg++): Depend on all-libstdc++.
13929
13930 Thu May 25 22:40:59 1995 J.T. Conklin <jtc@rtl.cygnus.com>
13931
13932 * configure.in (noconfigdirs): Enable all packages for
13933 i386-unknown-netbsd.
13934
13935 Sat May 20 13:22:31 1995 Angela Marie Thomas <angela@cirdan.cygnus.com>
13936
13937 * configure.in (noconfigdirs): Don't configure tk for i386-go32
13938 hosted builds (DOS builds)
13939
13940 Thu May 18 18:08:49 1995 Ken Raeburn <raeburn@kr-laptop.cygnus.com>
13941
13942 Changes for ARM based on patches from Richard Earnshaw:
13943 * config.sub: Handle armeb and armel.
13944 * configure.in: Omit arm linker only for riscix.
13945
13946 Thu May 11 17:23:26 1995 Per Bothner <bothner@kalessin.cygnus.com>
13947
13948 * config.guess: Update from FSF.
13949
13950 Tue May 9 15:52:05 1995 Michael Meissner <meissner@cygnus.com>
13951
13952 * config.sub: Recognize powerpcle as the little endian varient of
13953 the PowerPC. Recgonize ppc as a PowerPC variant, and ppcle as a
13954 powerpcle variant. Convert pentium into i586, not i486. Add p5
13955 alias for i586. Map new x86 variants p6, k5, nexgen into i586
13956 temporarily.
13957
13958 Tue May 2 16:29:41 1995 Jeff Law (law@snake.cs.utah.edu)
13959
13960 * configure.in (hppa*-*-lites*): Treat like hppa*-*-*elf*.
13961
13962 Sun Apr 30 21:38:09 1995 Jeff Law (law@snake.cs.utah.edu)
13963
13964 * config.sub: Accept -lites* as a basic system type.
13965
13966 Thu Apr 27 11:33:29 1995 Michael Meissner (meissner@cygnus.com)
13967
13968 * config.guess (*:Linux:*:*): Check for whether the pre-BFD linker is
13969 installed, and if so return linuxoldld as the system name.
13970
13971 Wed Apr 26 10:59:02 1995 Jeff Law (law@snake.cs.utah.edu)
13972
13973 * config.guess: Add hppa1.1-hp-lites support.
13974
13975 Tue Apr 25 11:08:11 1995 Rob Savoye <rob@darkstar.cygnus.com>
13976
13977 * configure.in: Don't build newlib for m68k-vxworks5.1.
13978
13979 Wed Apr 19 17:02:43 1995 Jim Wilson <wilson@chestnut.cygnus.com>
13980
13981 * configure.in (mips-sgi-irix6): Use mh-irix5.
13982
13983 Fri Apr 14 15:21:17 1995 Doug Evans <dje@chestnut.cygnus.com>
13984
13985 * Makefile.in (all-gcc): Depend on all-ld (for libgcc1-test).
13986
13987 Wed Apr 12 16:06:01 1995 Jason Merrill <jason@phydeaux.cygnus.com>
13988
13989 * test-build.mk: Enable building of shared libraries on IRIX 5 and
13990 OSF/1. Fix compiler flags.
13991 * build-all.mk: Support Linux and OSF/1 3.0. Fix compiler flags.
13992
13993 Tue Apr 11 18:55:40 1995 Doug Evans <dje@canuck.cygnus.com>
13994
13995 * configure.in: Recognize --with-newlib.
13996 (sparc-*-sunos4*): Build sim, dejagnu, expect, tcl if cross target.
13997
13998 Mon Apr 10 14:38:20 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13999
14000 * Makefile.in: move {all,check,install}-gdb from *_MODULES
14001 to *_X11_MODULES due to gdbtk needing X include files et al.
14002
14003 Mon Apr 10 11:42:22 1995 Stan Shebs <shebs@andros.cygnus.com>
14004
14005 Merge in support for Mac MPW as a host.
14006 (Old change descriptions retained for informational value.)
14007
14008 * mpw-config.in: Add generic include forwards for cpu-specific
14009 include files in aout and elf directories.
14010
14011 * mpw-configure: Added copyright.
14012 * mpw-config.in: Check for presence of required build tools.
14013 (target_libs): Add newlib.
14014 (target_tools): Add examples.
14015 (Read Me): Generate as "Read Me for MPW" instead.
14016 * mpw-build.in: Base sub-builds on all-foo instead of do-foo.
14017 (all-byacc, do-byacc, all-flex, do-flex, do-newlib): New actions.
14018 (do-gas, do-gcc, do-gdb, do-ld): Build Version.r first.
14019
14020 * mpw-configure: Remove subdir-specific makefile hackery,
14021 delete mk.tmp after using it.
14022
14023 * mpw-build.in (all): Display start and end times.
14024
14025 * mpw-configure (host_canonical): Set.
14026 (target_cpu): Always add to makefiles.
14027 (ARCHDEFS, EMUL): Add to makefile only if nonempty.
14028 (TM_FILE, XM_FILE, NM_FILE): No longer add to makefile.
14029 (mpw-mh-mpw): Look for in srcdir and srcroot.
14030 Use sed instead of mpw-edit-prefix to edit prefix definitions.
14031
14032 * mpw-build.in: (install-only): New target.
14033
14034 * mpw-configure (host_alias, target_alias): Rename from hostalias
14035 and targetalias, add into generated Makefile.
14036 (mk.tmp): If present, add into generated Makefile.
14037 * mpw-build.in (all-gas): Build config.h first before gas proper.
14038
14039 * mpw-configure (config.status): Write only if changed.
14040 * mpw-config.in (readline): Configure it (not built, just used for
14041 definitions).
14042
14043 * mpw-config.in (elf/mips.h): Add a forward include.
14044
14045 * mpw-config.in: Forward-include most .h files in include into
14046 extra-include.
14047 (readline): Don't build.
14048 mpw-build.in (install): Install GDB.
14049
14050 * mpw-configure (prefix, mpw_prefix): Handle it.
14051 * mpw-config.in (mmalloc, readline): Don't configure.
14052 * mpw-build.in (thisscript): Rename to ThisScript.
14053 Use mpw-build instead of BuildProgram everywhere.
14054 (mmalloc, readline): Don't build.
14055 * mpw-README: New file, basic documentation about the MPW port.
14056
14057 * mpw-config.in: Use forward-include to create include files.
14058
14059 * mpw-configure: Add more things to the top of each configured
14060 Makefile, including contents of config/mpw-mh-mpw.
14061 * mpw-config.in (extra-include): Create this directory and fill it
14062 with Posix-like include files when configuring.
14063
14064 * config.sub (apple, mac, mpw): Add various aliases.
14065
14066 * mpw-build.in: New file, top-level build script fragment for MPW.
14067 * mpw-configure: New file, configure script for MPW.
14068 * mpw-config.in: New file, config fragment for MPW.
14069
14070 Fri Apr 7 19:33:16 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
14071
14072 * configure.in (host_libs): Remove glob, since it is gone from the
14073 sources.
14074
14075 Fri Mar 31 11:36:17 1995 Jason Molenda (crash@phydeaux.cygnus.com)
14076
14077 * Makefile.in: define empty GDB_NLM_DEPS var.
14078
14079 * configure.in(target_makefile_frag): use config/mt-netware
14080 for netware targets.
14081
14082 Thu Mar 30 13:51:43 1995 Ian Lance Taylor <ian@cygnus.com>
14083
14084 * config.sub: Merge in recent FSF changes. Remove linux special
14085 cases.
14086
14087 Tue Mar 28 14:47:34 1995 Jason Molenda (crash@phydeaux.cygnus.com)
14088
14089 Revert this change:
14090
14091 Tue Mar 30 10:03:09 1993 Ian Lance Taylor (ian@cygnus.com)
14092
14093 * build-all.mk: Use CC=cc -Xs on Solaris.
14094
14095 Tue Mar 21 10:43:32 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
14096
14097 * glob/*: Removed. Schauer's 24 Feb 1994 readline change made us
14098 stop using it.
14099 * Makefile.in: Nuke all references to glob subdirectory.
14100
14101 Thu Mar 16 13:35:30 1995 Jason Merrill <jason@phydeaux.cygnus.com>
14102
14103 * configure.in: Fix --enable-shared logic in per-host.
14104
14105 Mon Mar 13 12:33:15 1995 Ian Lance Taylor <ian@cygnus.com>
14106
14107 * configure.in (*-hp-hpux[78]*): Use mh-hpux8.
14108
14109 Mon Mar 6 10:21:58 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
14110
14111 * configure.in (noconfigdirs): Don't build gas on AIX, for
14112 powerpc*-*-aix* as well as for rs6000*-*-aix*.
14113
14114 Wed Mar 1 12:51:53 1995 Ian Lance Taylor <ian@cygnus.com>
14115
14116 * configure: Fix --cache-file to work if the file argument is a
14117 relative path.
14118
14119 Tue Feb 28 17:36:07 1995 Ian Lance Taylor <ian@cygnus.com>
14120
14121 * configure: If the --cache-file is used, pass it down to
14122 configure in subdirectories.
14123
14124 Mon Feb 27 12:52:46 1995 Kung Hsu <kung@mexican.cygnus.com>
14125
14126 * config.sub: add vxworks29k configuration.
14127
14128 Fri Feb 10 16:12:26 1995 Ken Raeburn <raeburn@cujo.cygnus.com>
14129
14130 * Makefile.in (taz): Do "diststuff" part quietly.
14131
14132 Sun Feb 5 14:16:35 1995 Doug Evans <dje@canuck.cygnus.com>
14133
14134 * config.sub: Mini-merge with gcc/config.sub.
14135
14136 Sat Feb 4 12:11:35 1995 Jim Wilson <wilson@chestnut.cygnus.com>
14137
14138 * config.guess (IRIX): Sed - to _.
14139
14140 Fri Feb 3 11:54:42 1995 J.T. Conklin <jtc@rtl.cygnus.com>
14141
14142 * Makefile.in (source-vault, binary-vault): New targets.
14143
14144 Thu Jan 26 13:00:11 1995 Michael Meissner <meissner@cygnus.com>
14145
14146 * config.sub: Recognize -eabi as a basic system type.
14147
14148 Thu Jan 12 13:13:23 1995 Jason Merrill <jason@phydeaux.cygnus.com>
14149
14150 * configure.in (enable_shared stuff): Fix typo.
14151
14152 Thu Jan 12 01:36:51 1995 deanm@medulla.LABS.TEK.COM (Dean Messing)
14153
14154 * Makefile.in (BASE_FLAGS_TO_PASS): Fix typo in passing LIBCXXFLAGS*.
14155
14156 Wed Jan 11 16:29:53 1995 Jason Merrill <jason@phydeaux.cygnus.com>
14157
14158 * Makefile.in (LIBCXXFLAGS_FOR_TARGET): Add -fno-implicit-templates.
14159
14160 Mon Jan 9 12:48:01 1995 Jim Kingdon <kingdon@lioth.cygnus.com>
14161
14162 * configure.in (rs6000-*-*): Don't build gas.
14163
14164 Wed Jan 4 23:53:49 1995 Ian Lance Taylor <ian@tweedledumb.cygnus.com>
14165
14166 * Makefile.in: Use /x/x/ instead of /brokensed/brokensed/, to
14167 reduce command line length.
14168 (AS_FOR_TARGET): Check for as.new, not Makefile.
14169 (NM_FOR_TARGET): Check for nm.new, not Makefile.
14170
14171 Wed Jan 4 13:02:39 1995 Per Bothner <bothner@kalessin.cygnus.com>
14172
14173 * config.guess: Merge from FSF.
14174
14175 Thu Dec 15 17:11:37 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
14176
14177 * configure: Don't use $ when handling program_suffix.
14178
14179 Mon Dec 12 12:09:37 1994 Stu Grossman (grossman@cygnus.com)
14180
14181 * configure.in: Configure tk for hppa/hpux.
14182
14183 Fri Dec 2 15:55:38 1994 Per Bothner <bothner@kalessin.cygnus.com>
14184
14185 * Makefile.in (LIBGXX_SUPPORT_DIRS): Add libstdc++.
14186
14187 Tue Nov 29 19:37:56 1994 Per Bothner <bothner@kalessin.cygnus.com>
14188
14189 * Makefile.in: Move -fno-implicit-template from CXXFLAGS
14190 to LIBCXXFLAGS. Tests are better run without it.
14191
14192 Wed Nov 23 10:29:25 1994 Brendan Kehoe (brendan@lisa.cygnus.com)
14193
14194 * Makefile.in (all-ispell): Depend on all-emacs19 instead of all-emacs.
14195
14196 Mon Nov 21 11:14:01 1994 J.T. Conklin <jtc@rtl.cygnus.com>
14197
14198 * configure.in (*-*-netware*): Don't configure xiberty.
14199
14200 Mon Nov 14 08:49:15 1994 Stu Grossman (grossman@cygnus.com)
14201
14202 * configure.in: Remove tk from native_only list.
14203
14204 Fri Nov 11 15:31:26 1994 Bill Cox (bill@rtl.cygnus.com)
14205
14206 * build-all.mk: Add mips-ncd-elf target to sun4 targets
14207 for special NCD build.
14208
14209 Mon Nov 7 20:58:17 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
14210
14211 * Makefile.in (DEVO_SUPPORT): Remove configure.bat and
14212 makeall.bat, they're only useful for binutils snapshots.
14213 (binutils.tar.gz, gas+binutils.tar.gz): Add configure.bat and
14214 makeall.bat to specified SUPPORT_FILES.
14215
14216 Mon Nov 7 17:25:18 1994 Bill Cox (bill@cirdan.cygnus.com)
14217
14218 * build-all.mk: Add Ericsson targets to sun4 and solaris
14219 hosts. Add BNR's sun4 target to solaris host, so their
14220 build-from-source will be tested in-house first.
14221
14222 Sat Nov 5 18:43:30 1994 Jason Merrill (jason@phydeaux.cygnus.com)
14223
14224 * Makefile.in (LIBCFLAGS): New variable.
14225 (CFLAGS_FOR_TARGET): Ditto.
14226 (LIBCFLAGS_FOR_TARGET): Ditto.
14227 (LIBCXXFLAGS): Ditto.
14228 (CXXFLAGS_FOR_TARGET): Ditto.
14229 (LIBCXXFLAGS_FOR_TARGET): Ditto.
14230 (BASE_FLAGS_TO_PASS): Pass them.
14231 (EXTRA_TARGET_FLAGS): Ditto.
14232
14233 * configure.in: Support --enable-shared.
14234
14235 Sat Nov 5 15:44:00 1994 Per Bothner <bothner@kalessin.cygnus.com>
14236
14237 * configure.in (target_libs): Include libstdc++ again.
14238 * config.guess: Update from FSF (for FreeBSD).
14239
14240 Thu Nov 3 16:32:30 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
14241
14242 * Makefile.in (DEVO_SUPPORT): Include configure.bat and
14243 makeall.bat.
14244 (DISTDOCDIRS): Add `etc'.
14245 (ETC_SUPPORT_PFX): New variable.
14246 (taz): Include anything from etc starting with a word in
14247 ETC_SUPPORT_PFX.
14248
14249 Wed Oct 26 16:19:35 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
14250
14251 * config.sub: Update for recent FSF changes. Remove obsolete
14252 h8300hds entry. Add -windows* and -osx as basic os. Minor
14253 spacing changes.
14254
14255 Thu Oct 20 18:41:56 1994 Per Bothner <bothner@kalessin.cygnus.com>
14256
14257 * configure.in (target_libs): Remove libstdc++ for libg++-2.6.1.
14258
14259 * config.guess: Merge with FSF.
14260 * configure.in: Match on i?86-ncr-sysv4.3, not i?86-ncr-sysv43.
14261
14262 Thu Oct 20 19:26:56 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
14263
14264 * configure: Since the "trap 0" handler will override the exit
14265 status on many systems, only use it for "exit 1", and make it set
14266 a non-zero exit status; reset it before "exit 0". Also, check
14267 exit status of config.sub, and error out if it failed.
14268
14269 Wed Oct 19 18:49:55 1994 Rob Savoye (rob@cygnus.com)
14270
14271 * Makefile.in: (ALL_TARGET_MODULES,INSTALL_TARGET_MODULES) Build
14272 and install libgloss.
14273
14274 Tue Oct 18 15:25:24 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
14275
14276 * Makefile.in (all-binutils): Depend upon all-byacc.
14277
14278 * configure.in: Don't build emacs on Irix 5.
14279
14280 Mon Oct 17 16:22:12 1994 J.T. Conklin (jtc@phishhead.cygnus.com)
14281
14282 * configure.in (*-*-netware*): Add libio.
14283
14284 Thu Oct 13 15:51:20 1994 Jason Merrill (jason@phydeaux.cygnus.com)
14285
14286 * Makefile.in (ALL_TARGET_MODULES): Add libstdc++.
14287 (CHECK_TARGET_MODULES): Ditto.
14288 (INSTALL_TARGET_MODULES): Ditto.
14289 (TARGET_LIBS): Ditto.
14290 (all-libstdc++): Note dependencies.
14291
14292 Thu Oct 13 01:43:08 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
14293
14294 * Makefile.in (BINUTILS_SUPPORT_DIRS): Add gas.
14295
14296 Tue Oct 11 12:12:29 1994 Jason Merrill (jason@phydeaux.cygnus.com)
14297
14298 * Makefile.in (CXXFLAGS): Use -fno-implicit-templates instead of
14299 -fexternal-templates.
14300
14301 * configure.in (target_libs): Add libstdc++.
14302 (noconfigdirs): Add libstdc++ as appropriate.
14303
14304 Thu Oct 6 18:00:54 1994 Per Bothner (bothner@kalessin.cygnus.com)
14305
14306 * config.guess: Update from FSF.
14307
14308 Tue Oct 4 12:05:42 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
14309
14310 * configure: Use ${config_shell} when running ${configsub}.
14311
14312 Mon Oct 3 14:28:34 1994 Doug Evans <dje@canuck.cygnus.com>
14313
14314 * config.sub: No longer recognize h8300h.
14315
14316 Mon Oct 3 12:40:54 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
14317
14318 * config.sub: Remove extraneous differences between config.sub and
14319 gcc/config.sub.
14320
14321 Sat Oct 1 00:23:12 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
14322
14323 * Makefile.in (DISTSTUFFDIRS): Add gas.
14324
14325 Thu Sep 22 19:04:55 1994 Doug Evans (dje@canuck.cygnus.com)
14326
14327 * COPYING.NEWLIB: New file.
14328
14329 Mon Sep 19 18:25:40 1994 Per Bothner (bothner@kalessin.cygnus.com)
14330
14331 * config.guess (HP-UX): Patch from Harlan Stenn
14332 <harlan@landmark.com> to also emit release level.
14333
14334 Wed Sep 7 13:15:25 1994 Jim Wilson (wilson@sphagnum.cygnus.com)
14335
14336 * config.guess (sun4*:SunOS:*:*): Change '-JL' to '_JL'.
14337
14338 Tue Sep 6 23:23:18 1994 Per Bothner (bothner@kalessin.cygnus.com)
14339
14340 * config.sub: Merge nextstep cleanup from FSF.
14341
14342 Mon Sep 5 05:01:30 1994 Ken Raeburn (raeburn@kr-pc.cygnus.com)
14343
14344 * configure.in (arm-*-*): Don't configure ld for this target.
14345
14346 Thu Sep 1 09:35:00 1994 J.T. Conklin (jtc@phishhead.cygnus.com)
14347
14348 * configure.in (*-*-netware): don't configure libg++, libio,
14349 librx, or newlib.
14350
14351 Wed Aug 31 13:52:08 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14352
14353 * configure.in (alpha-dec-osf*): Use osf*, not osf1*. Don't
14354 configure ld--it works, but it doesn't support shared libraries.
14355
14356 Sun Aug 28 18:13:45 1994 Per Bothner (bothner@kalessin.cygnus.com)
14357
14358 * config.guess (*-unknown-freebsd*): Get rid of possible
14359 trailing "(Release)" in version string.
14360 Patch from Paul Richards <paul@isl.cf.ac.uk>.
14361
14362 Sat Aug 27 15:00:49 1994 Per Bothner (bothner@kalessin.cygnus.com)
14363
14364 * config.guess: Fix i486-ncr-sysv43 -> i486-ncr-sysv4.3.
14365 Fix type: *-next-neststep -> *-next-nextstep.
14366
14367 * config.guess: Merge from FSF:
14368
14369 Fri Aug 26 18:45:25 1994 Philippe De Muyter (phdm@info.ucl.ac.be)
14370
14371 * config.guess: Recognize powerpc-ibm-aix3.2.5.
14372
14373 Wed Apr 20 06:36:32 1994 Philippe De Muyter (phdm@info.ucl.ac.be)
14374
14375 * config.guess: Recognize UnixWare 1.1 (UNAME_SYSTEM is SYSTEM_V
14376 instead of UNIX_SV for UnixWare 1.0).
14377
14378 Sat Aug 27 01:56:30 1994 Stu Grossman (grossman@cygnus.com)
14379
14380 * Makefile.in (all-gdb): Add dependencies on all-gcc and all-ld
14381 to make gdb/nlm/* build after the compiler and linker.
14382
14383 Fri Aug 26 14:30:05 1994 Per Bothner (bothner@kalessin.cygnus.com)
14384
14385 * config.guess (netbsd, freebsd, linux): Accept any machine,
14386 not just i[34]86.
14387 (m68k-atari-sysv4): Relocate to match FSF version.
14388
14389 * config.guess: More merges from the FSF:
14390
14391 Add a space before function call or macro invocation.
14392
14393 Tue May 10 16:53:55 1994 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
14394
14395 * config.guess: Add trap cmd to remove dummy.c and dummy when
14396 interrupted.
14397
14398 Wed Apr 20 18:07:13 1994 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
14399
14400 * config.guess (dummy.c): Redirect stderr for `hostinfo' command.
14401 (dummy): Redirect stderr from compilation of dummy.c.
14402
14403 Sat Apr 9 14:59:28 1994 Christian Kranz (kranz@sent5.uni-duisburg.de)
14404
14405 * config.guess: Distinguish between NeXTStep 2.1 and 3.x.
14406
14407 Fri Aug 26 13:42:20 1994 Ken Raeburn (raeburn@kr-laptop.cygnus.com)
14408
14409 * configure: Accept and ignore --cache*, for compatibility with
14410 new autoconf.
14411
14412 Fri Aug 26 13:05:27 1994 Per Bothner (bothner@kalessin.cygnus.com)
14413
14414 * config.guess: Merge from FSF:
14415
14416 Thu Aug 25 20:28:51 1994 Richard Stallman <rms@mole.gnu.ai.mit.edu>
14417
14418 * config.guess (Pyramid*:OSx*:*:*): New case.
14419 (PATH): Add /.attbin at end for finding uname.
14420 (dummy.c): Handle i860-alliant-bsd. Follow whitespace conventions.
14421
14422 Wed Aug 17 18:21:02 1994 Tor Egge (tegge@pvv.unit.no)
14423
14424 * config.guess (M88*:DolphinOS:*:*): New case.
14425
14426 Thu Aug 11 17:00:13 1994 Stan Cox (coxs@dg-rtp.dg.com)
14427
14428 * config.guess (AViiON:dgux:*:*): Use TARGET_BINARY_INTERFACE
14429 to select whether to use ELF or COFF.
14430
14431 Sun Jul 24 16:20:53 1994 Richard Stallman <rms@mole.gnu.ai.mit.edu>
14432
14433 * config.guess: Recognize i860-stardent-sysv and i860-unknown-sysv.
14434
14435 Sun May 1 10:23:10 1994 Richard Stallman (rms@mole.gnu.ai.mit.edu)
14436
14437 * config.guess: Guess the OS version for HPUX.
14438
14439 Tue Mar 1 21:53:03 1994 Karl Heuer (kwzh@hal.gnu.ai.mit.edu)
14440
14441 * config.guess (UNAME_VERSION): Recognize aix3.2.4 and aix3.2.5.
14442
14443 Fri Aug 26 11:19:08 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14444
14445 * configure.in: Recognize --with-headers, --with-libs, and
14446 --without-newlib.
14447 * Makefile.in (all-xiberty): Depend upon all-ld.
14448
14449 Wed Aug 24 12:36:50 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14450
14451 * configure.in: Change i[34]86 to i[345]86.
14452
14453 Mon Aug 22 10:58:33 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14454
14455 * configure (version): A few more tweaks to help message.
14456
14457 Fri Aug 19 12:40:25 1994 Per Bothner (bothner@kalessin.cygnus.com)
14458
14459 * Makefile.in: Remove (for now) librx as a host library,
14460 now that we're building it for target.
14461
14462 Fri Aug 19 10:49:17 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14463
14464 * configure: Fix up help message; from karl@owl.hq.ileaf.com
14465 (Karl Berry).
14466
14467 Tue Aug 16 16:11:08 1994 Per Bothner (bothner@kalessin.cygnus.com)
14468
14469 * configure.in: Also configure librx.
14470
14471 Mon Aug 15 16:51:45 1994 Per Bothner (bothner@kalessin.cygnus.com)
14472
14473 * Makefile.in: Update various rules to reflect that librx
14474 is now needed for libg++.
14475
14476 Fri Aug 12 18:07:21 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14477
14478 * config.sub: Accept mips64orion and mips64orionel as a CPU name.
14479
14480 Mon Aug 8 11:36:17 1994 Stan Shebs (shebs@andros.cygnus.com)
14481
14482 * configure.in: Configure the examples directory.
14483
14484 Thu Aug 4 16:12:36 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14485
14486 * configure: Simplify Jun 2 1994 change.
14487
14488 Wed Aug 3 04:58:16 1994 D. V. Henkel-Wallace (gumby@cygnus.com)
14489
14490 * change CC to /usr/latest/bin/gcc for lynx host builds, since
14491 /bin/gcc isn't good enough to build gcc.
14492
14493 Wed Jul 27 09:07:14 1994 Fred Fish (fnf@cygnus.com)
14494
14495 * Makefile.in (GDB_SUPPORT_FILES): Remove
14496 (setup-dirs-gdb, gdb.tar.gz, make-gdb.tar.gz): Remove old rules.
14497 (gdb.tar.gz): Add new rule to use standard distribution building
14498 mechanism.
14499
14500 Mon Jul 25 11:10:06 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14501
14502 * configure.in: Warn about use of /usr/ucb/cc on Solaris. From
14503 Bill Cox <bill@cygnus.com>.
14504
14505 Sat Jul 23 12:19:46 1994 Per Bothner (bothner@kalessin.cygnus.com)
14506
14507 * config.guess: Recognize ISC. Patch from kwzh@gnu.ai.mit.edu.
14508
14509 Fri Jul 22 17:53:59 1994 Stu Grossman (grossman@cygnus.com)
14510
14511 * configure: Search current dir first in .gdbinit.
14512
14513 Fri Jul 22 11:28:30 1994 Per Bothner (bothner@kalessin.cygnus.com)
14514
14515 * config.sub: Recognize freebsd (merged from gcc config.sub).
14516
14517 Thu Jul 21 14:10:52 1994 Per Bothner (bothner@kalessin.cygnus.com)
14518
14519 * config.sub: Refer to NeXT's operating system as nextstep.
14520
14521 * config.sub (case $basic_machine): Re-order the cases, to match
14522 the order in the FSF version (which is mostly alphabethical).
14523 Merge in some additions and changes from the FSF.
14524
14525 Sat Jul 16 12:03:08 1994 Stan Shebs (shebs@andros.cygnus.com)
14526
14527 * config.guess: Recognize m68k-atari-sysv4 and m88k-harris-csux7.
14528 * config.sub: Recognize cxux7.
14529 * configure.in: Use mh-cxux for m88k-harris-cxux*.
14530
14531 Mon Jul 11 14:37:39 1994 Per Bothner (bothner@kalessin.cygnus.com)
14532
14533 * config.sub: Fix typo powerpc -> powerpc-*.
14534
14535 Sat Jul 9 13:03:43 1994 Michael Tiemann (tiemann@blues.cygnus.com)
14536
14537 * Makefile.in: `all-emacs19' depends on `all-byacc'.
14538
14539 * Makefile.in: Add all-emacs19 and install-emacs19 rules (in
14540 parallel with all-emacs and install-emacs). Top-level command
14541 `make all-emacs19 CC=gcc' now behaves as `make all-emacs CC=gcc'.
14542
14543 Thu Jun 30 16:53:42 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14544
14545 * test-build.mk ($(host)-stamp-stage2-installed): Remove
14546 $(relbindir)/make before doing ``make install'', and use
14547 $(GNU_MAKE) while doing it. Avoids problem on SunOS with
14548 installing over running make binary.
14549 ($(host)-stamp-stage3-installed): Likewise.
14550
14551 Tue Jun 28 13:43:25 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14552
14553 * config.guess: Recognize Mach.
14554
14555 Mon Jun 27 16:41:14 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14556
14557 * configure: Check ${exec_prefixoption}, not ${exec_prefix}, to
14558 see whether --exec-prefix was used.
14559
14560 Sun Jun 26 21:15:54 1994 Per Bothner (bothner@kalessin.cygnus.com)
14561
14562 * README: Explicitly mention libg++/README. (Zoo's idea.)
14563
14564 Tue Jun 21 12:45:55 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14565
14566 * Makefile.in: Add all-librx target similar to all-libproc.
14567
14568 Wed Jun 8 23:11:55 1994 Stu Grossman (grossman@cygnus.com)
14569
14570 * config.guess: Rearrange tests for Alpha-OSF1 to properly deal
14571 with post 1.2 uname bogosity.
14572
14573 Thu Jun 9 00:27:59 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14574
14575 * configure: Remove temporary files on receipt of a signal.
14576
14577 Tue Jun 7 12:06:24 1994 Ian Lance Taylor (ian@cygnus.com)
14578
14579 * configure: If there is a package_makefile_frag, remove
14580 ${subdir}/Makefile.tem after copying it in.
14581
14582 Mon Jun 6 21:35:02 1994 D. V. Henkel-Wallace (gumby@cygnus.com)
14583
14584 * build_all.mk: support rs6000 lynx identifies itself as
14585 rs6000-lynx-lynxos2.2.2. Also, use /usr/cygnus/progressive/bin/gcc
14586 since /bin/gcc is too feeble to compile a modern gcc.
14587
14588 Mon Jun 6 16:06:34 1994 Karen Christiansen (karen@cirdan.cygnus.com)
14589
14590 * brought devo/test-build.mk update-to-date with progressive/
14591 test-build.mk. Add lynx targets and hppa flag info.
14592
14593 Sat Jun 4 17:23:54 1994 Per Bothner (bothner@kalessin.cygnus.com)
14594
14595 * configure.in: Use mh-ncrsvr43. Patch from
14596 Tom McConnell <tmcconne@sedona.intel.com>.
14597
14598 Fri Jun 3 17:47:24 1994 Per Bothner (bothner@kalessin.cygnus.com)
14599
14600 * config.guess (i386-unknown-bsdi): No longer need to
14601 check #if defined(__bsdi__) && defined(__i386__).
14602
14603 Thu Jun 2 18:56:46 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14604
14605 * configure: Set program_transform_nameoption correctly.
14606
14607 Thu Jun 2 10:57:06 1994 Karen Christiansen (karen@cirdan.cygnus.com)
14608
14609 * brought build-all.mk update-to-date with progressive build-all.mk,
14610 added new targets and hppa info.
14611
14612 Thu Jun 2 00:12:44 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14613
14614 * configure: If config.guess result is a prefix of the user
14615 specified target, assume a native build and use the user specified
14616 target as the host alias. Remove SunOS patch suffix removal hack.
14617 * configure.in: Remove SunOS patch suffix removal hack.
14618
14619 * Makefile.in (CROSS_CHECK_MODULES): Remove check-flex, since it's
14620 in NATIVE_CHECK_MODULES.
14621
14622 Wed Jun 1 10:49:41 1994 Bill Cox (bill@rtl.cygnus.com)
14623
14624 * Makefile.in: Rename HOST_ONLY to NATIVE.
14625 * configure: Delete SunOs patch suffix from host_canonical
14626 and build_canonical variables that are prepended to Makefiles.
14627 * configure.in: Add comments for easier maintenance.
14628
14629 Tue May 31 19:39:47 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14630
14631 * Makefile.in: Add all-libproc target similar to all-gui.
14632
14633 Tue May 31 17:16:33 1994 Tom Lord (lord@cygnus.com)
14634
14635 * Makefile.in (CHECK_MODULES): split into
14636 HOST_ONLY_CHECK_MODULES and CROSS_CHECK_MODULES.
14637
14638 Tue May 31 16:36:36 1994 Paul Eggert (eggert@twinsun.com)
14639
14640 * config.guess (i386-unknown-bsdi): New system to guess.
14641
14642 Wed May 25 16:47:10 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14643
14644 * Makefile.in: Add all-gui target (but not yet build by "all").
14645
14646 Thu May 26 08:53:19 1994 Bill Cox (bill@rtl.cygnus.com)
14647
14648 * config.sub: Move deletion of patch suffix from here...
14649 * configure.in: To here, at Ian's suggestion. The top-
14650 level scripts might need to know of a patch level.
14651
14652 Wed May 25 09:15:54 1994 Bill Cox (bill@rtl.cygnus.com)
14653
14654 * config.sub: Strip off patch suffix so rtl is recognized
14655 as a sunos4.1.3 machine, even though it's been patched.
14656
14657 Fri May 20 08:25:49 1994 Steve Chamberlain (sac@deneb.cygnus.com)
14658
14659 * Makefile.in (INSTALL_LAST): Delete.
14660 (INSTALL_DOSREL): New.
14661
14662 Thu May 19 17:12:12 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14663
14664 * configure.in: Use ld for i[34]86-*-sysv4* and sparc-*-solaris2*.
14665 Don't set use_gnu_ld to no for *-*-sysv4; that only controls
14666 whether we pass down --with-gnu-ld anyhow.
14667
14668 Thu May 19 09:29:12 1994 Steve Chamberlain (sac@cygnus.com)
14669
14670 * Makefile.in (INSTALL_LAST): Change operation so it works
14671 on more flavors of make.
14672 * configure.in (go32): Don't build libg++ or libio.
14673
14674 Fri May 13 13:28:34 1994 Steve Chamberlain (sac@cygnus.com)
14675
14676 * Makefile.in (Move HOST_PREFIX_1 and friends up so
14677 they can be overriden by templates.
14678
14679 Sat May 7 16:46:44 1994 Steve Chamberlain (sac@cygnus.com)
14680
14681 * configure.in (target==go32): Don't build gdb.
14682 * dosrel: New directory.
14683
14684 Fri May 6 14:19:25 1994 Steve Chamberlain (sac@cygnus.com)
14685
14686 * configure.in (host==go32): Configure dosrel too.
14687 * Makefile.in (INTALL_TARGET): Call INSTALL_LAST last.
14688 (HOST_CC, HOST_PREFIX, HOST_PREFIX_1): Undefine, they should
14689 be set by incoming names or templates.
14690 (INSTALL_LAST): New rule.
14691
14692 Thu May 5 17:35:05 1994 Stan Shebs (shebs@andros.cygnus.com)
14693
14694 * config.sub (sparclitefrw, sparclitefrwcompat): Don't set the os.
14695
14696 Thu May 5 20:06:45 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
14697
14698 * configure.in (appdirs): New variable. Currently empty, but will
14699 be used in gas distribution. If nonempty, lists a set of
14700 directories at least one of which must get configured, or top
14701 level configuration is considered to have failed.
14702 (rs6000-*-lynxos*): Use new file name.
14703
14704 Thu May 5 13:38:36 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14705
14706 Eliminate XTRAFLAGS.
14707 * Makefile.in (CC_FOR_TARGET): If newlib exists, refer to the
14708 newlib include files using -idirafter, and also use -nostdinc.
14709 (CXX_FOR_TARGET): Likewise.
14710 (XTRAFLAGS): Removed.
14711 (BASE_FLAGS_TO_PASS): Remove XTRAFLAGS_FOR_TARGET.
14712 (EXTRA_HOST_FLAGS): Remove XTRAFLAGS.
14713 (EXTRA_TARGET_FLAGS, EXTRA_GCC_FLAGS): Likewise.
14714 ($(DO_X)): Don't pass down XTRAFLAGS.
14715
14716 Thu May 5 00:16:36 1994 Ken Raeburn (raeburn@kr-pc.cygnus.com)
14717
14718 * configure.in (mips*-dec-bsd*): New target; do build linker.
14719 (mips*-*-bsd*): New target; don't build linker.
14720
14721 Wed May 4 20:10:10 1994 D. V. Henkel-Wallace (gumby@cygnus.com)
14722
14723 * configure.in: support rs6000-*-lynxos* configuration.
14724 support sunos4 as a cross target.
14725
14726 * config.sub: look for lynx*, not lynx since the OS version may
14727 legitimately be part of the name.
14728
14729 Tue May 3 21:48:11 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
14730
14731 * configure.in (i[34]86-*-sco*): Move to be with other i386
14732 targets.
14733 (romp-*-*): New target. Skip various binary utilities.
14734 (vax-*-*): New target. Don't build newlib.
14735 (vax-*-vms): Renamed from *-*-vms. Don't build opcodes or newlib.
14736
14737 Thu Apr 28 15:03:05 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14738
14739 * configure.in: Only set host_makefile_frag if config
14740 directory exists.
14741
14742 Wed Apr 27 12:14:30 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14743
14744 * install.sh: If $dstdir exists, don't check whether each
14745 component does.
14746
14747 Tue Apr 26 18:11:33 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14748
14749 * test-build.mk (HOLES): Add sleep; used by rcs/src/conf.sh.
14750
14751 Mon Apr 25 15:06:34 1994 Stan Shebs (shebs@andros.cygnus.com)
14752
14753 * configure.in (*-*-lynxos*): Don't configure newlib for either
14754 native or cross Lynx.
14755
14756 Sat Apr 16 11:58:16 1994 Doug Evans (dje@canuck.cygnus.com)
14757
14758 * config.sub (sparc64-elf): Fix os.
14759 (z8k): Remove duplicate.
14760
14761 Thu Apr 14 23:33:17 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14762
14763 * Makefile.in (gcc-no-fixedincludes): Touch gcc/include/fixed, not
14764 gcc/stmp-fixproto, to try to prevent fixproto from being run.
14765
14766 Wed Apr 13 15:14:52 1994 Bill Cox (bill@cygnus.com)
14767
14768 * configure: Make file links cleanly even if Lynx fails on
14769 an NFS symlink (at least fail cleanly).
14770
14771 Mon Apr 11 10:58:56 1994 Jim Wilson (wilson@sphagnum.cygnus.com)
14772
14773 * test-build.mk (CC): For mips-sgi-irix4, change -XNh1500 to
14774 -XNh2000.
14775
14776 Sat Apr 9 15:10:45 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14777
14778 * configure: Unknown options are fatal again.
14779
14780 Fri Apr 8 12:01:41 1994 David J. Mackenzie (djm@cygnus.com)
14781
14782 * configure: Ignore --x-includes and --x-libraries, for Autoconf
14783 compatibility.
14784
14785 Thu Apr 7 17:31:43 1994 Doug Evans (dje@canuck.cygnus.com)
14786
14787 * build-all.mk: Add `clean' target.
14788
14789 Wed Apr 6 20:44:56 1994 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
14790
14791 * config.guess: Add SINIX support.
14792 * configure.in: Add mips-*-sysv4* support.
14793
14794 Mon Apr 4 17:41:44 1994 Doug Evans (dje@canuck.cygnus.com)
14795
14796 * build-all.mk: Document all useful targets.
14797 If canonhost is sparc-sun-solaris2.3, change it to sparc-sun-solaris2.
14798 If canonhost is mips-sgi-irix4.0.5H, change it to mips-sgi-irix4.
14799
14800 Thu Mar 31 04:55:57 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14801
14802 * configure: Support --silent, --quiet.
14803
14804 Wed Mar 30 21:37:38 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14805
14806 * configure: Support --disable-FEATURE.
14807
14808 Tue Mar 29 19:15:05 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14809
14810 * config.guess: Recognize NCR running SVR4.3.
14811
14812 Mon Mar 28 14:55:15 1994 Per Bothner (bothner@kalessin.cygnus.com)
14813
14814 * config.guess: Make BSDI generate i386-unknown-bsd386.
14815 Patch from Paul Eggert <eggert@twinsun.com>.
14816
14817 Mon Mar 28 12:54:52 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14818
14819 * configure.in (powerpc-*-aix*): Treat like rs6000-*-*.
14820
14821 Sat Mar 26 11:25:48 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14822
14823 * configure: Make unrecognized options give nonfatal warnings
14824 instead of fatal errors, and pass them to any subdirectory
14825 configures in case they recognize them.
14826 Make --x equivalent to --with-x.
14827
14828 Fri Mar 25 21:52:10 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14829
14830 * configure: Add --enable-* options. Clean up usage message and
14831 some comments.
14832
14833 Thu Mar 24 09:12:53 1994 Doug Evans (dje@canuck.cygnus.com)
14834
14835 * Makefile.in (NM_FOR_TARGET): Build tree version is now nm.new.
14836
14837 Sun Mar 20 11:28:22 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
14838
14839 * configure.in (hppa*-*-*): Enable binutils.
14840
14841 Sat Mar 19 11:50:16 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14842
14843 * config.sub: Recognize cisco.
14844
14845 Fri Mar 18 16:42:32 1994 Jason Merrill (jason@deneb.cygnus.com)
14846
14847 * Makefile.in (CXXFLAGS): Add -fexternal-templates.
14848
14849 Tue Mar 15 11:25:55 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14850
14851 * config.guess: about target *-hitachi-hiuxwe2, don't print more
14852 than one configuration name. Add comment.
14853
14854 Sun Mar 6 23:13:38 1994 Hisashi MINAMINO (minamino@sra.co.jp)
14855
14856 * config.guess: about target *-hitachi-hiuxwe2, fixed
14857 machine guessing order. [Hitachi's CPU_IS_HP_MC68K
14858 macro is incorrect.]
14859
14860 Sun Mar 13 09:10:08 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14861
14862 * Makefile.in (TAGS): Just build TAGS in each subdirectory, rather
14863 than the "make ls" stuff which used to be here.
14864
14865 Fri Mar 11 12:52:39 1994 Per Bothner (bothner@kalessin.cygnus.com)
14866
14867 * config.guess: Recognize i[34]86-unknown-freebsd.
14868 From Shawn M Carey <smcarey@rodan.syr.edu>.
14869
14870 Thu Mar 3 14:24:21 1994 Per Bothner (bothner@kalessin.cygnus.com)
14871
14872 * configure.in (noconfigdirs for alpha): Remove libg++ and libio.
14873
14874 Wed Mar 2 13:28:48 1994 Jim Kingdon (kingdon@deneb.cygnus.com)
14875
14876 * config.guess: Check for ptx.
14877
14878 Mon Feb 28 16:46:50 1994 Kung Hsu (kung@mexican.cygnus.com)
14879
14880 * config.sub: Add os9k checking.
14881
14882 Thu Feb 24 07:09:04 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
14883
14884 * config.guess: Handle OSF1 running on HPPA processors
14885
14886 Fri Feb 18 14:14:00 1994 Ken Raeburn (raeburn@rtl.cygnus.com)
14887
14888 * configure: If subdir configure fails, print out a message with
14889 subdirectory name, in case subdir's configure code didn't identify
14890 itself.
14891
14892 Fri Feb 18 12:50:15 1994 Doug Evans (dje@cygnus.com)
14893
14894 * configure.in: Remove embedded newlines from configdirs.
14895 Avoid mismatches of substrings. Fix matching strings at end
14896 of configdirs.
14897
14898 Fri Feb 11 15:33:33 1994 Stu Grossman (grossman at cygnus.com)
14899
14900 * config.guess: Add Lynx/rs6000 config support.
14901
14902 Tue Feb 8 13:41:09 1994 Ken Raeburn (raeburn@rtl.cygnus.com)
14903
14904 * configure.in (alpha-dec-osf1*, alpha*-*-*): Build gas.
14905
14906 Mon Feb 7 15:42:36 1994 Jeffrey A. Law (law@cygnus.com)
14907
14908 * configure.in (hppa*-*-osf*): Treat this just like most other
14909 PA configurations (eg no binutils or ld).
14910 (hppa*-*-*elf*): These configurations have binutils and ld.
14911
14912 Sun Feb 6 16:35:07 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
14913
14914 * config.sub (hiux): Fix typo. From m-kasahr@sramhc.sra.co.JP.
14915
14916 Sat Feb 5 01:00:33 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14917
14918 * configure.in (rs6000-*-*): Build gas.
14919
14920 Wed Feb 2 13:57:57 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
14921
14922 * Makefile.in: Avoid bug in losing hpux sed.
14923
14924 Wed Feb 2 14:53:05 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14925
14926 * Makefile.in, test-build.mk: Remove MUNCH_NM; it was only needed
14927 for GDB and GDB has been fixed to not need it.
14928
14929 Sun Jan 30 17:58:06 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
14930
14931 * config.guess: Recognize vax hosts.
14932
14933 Fri Jan 28 15:29:38 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
14934
14935 * configure (while loop): Don't use "break 2" inside case
14936 statement -- the case statement isn't an enclosing loop.
14937
14938 Mon Jan 24 18:40:06 1994 Per Bothner (bothner@kalessin.cygnus.com)
14939
14940 * config.guess: Clean up NeXT support, to allow nextstep
14941 on Intel machines. Make OS be nextstep.
14942
14943 Sun Jan 23 18:47:22 1994 Richard Kenner (kenner@vlsi1.ultra.nyu.edu)
14944
14945 * config.guess: Add alternate forms for Convex.
14946
14947 Thu Jan 20 16:13:41 1994 Stu Grossman (grossman at cygnus.com)
14948
14949 * configure: Completely rewrite option processing. Take
14950 advantage of pattern-matching to avoid invoking test frequently.
14951 Also clean up host and target defaulting logic.
14952
14953 Mon Jan 17 15:06:56 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
14954
14955 * Makefile.in: Replace all occurrances of "rootme" with "r" and
14956 "$${rootme}" with "$$r", to increase the likelihood that the do-*
14957 commands (plus user environment) will fit SCO limits.
14958
14959 Thu Jan 6 11:20:57 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14960
14961 * configure.in: Don't issue warnings about directories which are
14962 not being configured if -norecursion is set. Correct test for
14963 --with-gnu-as and --with-gnu-ld to not get confused by substring
14964 matches.
14965
14966 * configure.in: Don't build gas for alpha-dec-osf1*.
14967
14968 Tue Jan 4 17:10:19 1994 Stu Grossman (grossman at cygnus.com)
14969
14970 * configure: Back out Per's change of 12/19/1993. It changes the
14971 behavior of configure in unexpected and confusing ways.
14972
14973 Also, use different delim char when calculating
14974 program_transform_name so that the name can contain slashes.
14975
14976 Sat Jan 1 13:45:31 1994 Rob Savoye (rob@darkstar.cygnus.com)
14977
14978 * configure.in, config.sub: Add support for VSTa micro-kernel.
14979
14980 Sat Dec 25 20:00:47 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
14981
14982 * configure.in: Nuke hacks which were used to get a special
14983 version of GAS for HPPA configurations.
14984
14985 Sun Dec 19 20:40:44 1993 Per Bothner (bothner@kalessin.cygnus.com)
14986
14987 * configure: If only ${target_alias} is given, use that
14988 as the default for ${host_alias}.
14989 * configure: Add missing back-slashes before nested quotes.
14990
14991 Wed Dec 15 18:07:18 1993 david d `zoo' zuhn (zoo@andros.cygnus.com)
14992
14993 * Makefile.in (BASE_FLAGS_TO_PASS): add YACC=$(BISON)
14994
14995 Tue Dec 14 21:25:33 1993 Per Bothner (bothner@cygnus.com)
14996
14997 * config.guess: Recognize some Tektronix configurations.
14998 From Kaveh R. Ghazi <ghazi@noc.rutgers.edu>.
14999
15000 Sat Dec 11 11:18:00 1993 Steve Chamberlain (sac@thepub.cygnus.com)
15001
15002 * config.sub: Match any flavor of SH.
15003
15004 Thu Dec 2 17:16:58 1993 Ken Raeburn (raeburn@cujo.cygnus.com)
15005
15006 * configure.in: Don't try to configure newlib for Alpha.
15007
15008 Thu Dec 2 14:35:54 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
15009
15010 * configure.in: Don't build ld for Irix 5. Don't build gas,
15011 libg++ or libio for any Alpha target.
15012
15013 * configure.in (mips*-sgi-irix5*): New target; use mh-irix5.
15014
15015 Wed Dec 1 17:00:33 1993 Jason Merrill (jason@deneb.cygnus.com)
15016
15017 * Makefile.in (GZIPPROG): Renamed from GZIP, which gzip uses for
15018 default arguments -- so it tried to compress itself.
15019
15020 Tue Nov 30 13:45:15 1993 david d `zoo' zuhn (zoo@andros.cygnus.com)
15021
15022 * configure.in (notsupp): ensure that a space is always at the end
15023 of the configdirs list, since the grep checks for an explicit space
15024
15025 Tue Nov 16 15:04:27 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15026
15027 * configure.in (target i386-sysv4.2): don't build ld, since static
15028 versions of many libraries are not available.
15029
15030 Tue Nov 16 14:28:12 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15031
15032 * config.guess: Recognize Apollos (using environment variables).
15033 * configure.in: Don't configure ld, binutils, or gprof for Apollo.
15034
15035 Thu Nov 11 12:03:50 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15036
15037 * config.guess: Recognize Sony news mips running newsos.
15038
15039 Wed Nov 10 16:57:00 1993 Mark Eichin (eichin@cygnus.com)
15040
15041 * Makefile.in (all-cygnus, build-cygnus): "fi else" needs to be
15042 "fi ; else" for bash.
15043
15044 Tue Nov 9 15:54:01 1993 Mark Eichin (eichin@cygnus.com)
15045
15046 * Makefile.in (BASE_FLAGS_TO_PASS): pass SHELL.
15047
15048 Fri Nov 5 08:07:27 1993 D. V. Henkel-Wallace (gumby@blues.cygnus.com)
15049
15050 * config.sub: accept unixware as an alias for svr4.2.
15051 Fix some inconsistancies with the gcc version.
15052
15053 Fri Nov 5 15:14:12 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15054
15055 * Makefile.in (DISTDOCDIRS): Add gdb.
15056
15057 Fri Nov 5 11:59:42 1993 Per Bothner (bothner@kalessin.cygnus.com)
15058
15059 * Makefile.in (DISTDOCDIRS): Add libg++ and libio.
15060
15061 Fri Nov 5 10:35:05 1993 Ken Raeburn (raeburn@rover.cygnus.com)
15062
15063 * Makefile.in (taz): Only build "info" in DISTDOCDIRS.
15064 (DISTDOCDIRS): Don't assume libg++ and gdb folks necessarily want
15065 this now.
15066
15067 Thu Nov 4 18:58:23 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15068
15069 * config.sub: Accept hiux* as an OS name.
15070
15071 * Makefile.in: Change RUNTEST_FLAGS back to RUNTESTFLAGS per
15072 etc/make-stds.texi. The underscore came from gcc, and dje now
15073 agrees that RUNTESTFLAGS is the correct name.
15074
15075 Thu Nov 4 10:49:01 1993 Per Bothner (bothner@kalessin.cygnus.com)
15076
15077 * install.sh: Remove 'set -e'. It makes any conditionals
15078 in the script useless.
15079
15080 * config.guess: Automatically recognize arm-acorn-riscix
15081 Patch from Richard Earnshaw (rwe11@cl.cam.ac.uk).
15082
15083 Thu Nov 04 08:08:04 1993 Jeffrey Wheat (cassidy@cygnus.com)
15084
15085 * Makefile.in: Change RUNTESTFLAGS to RUNTEST_FLAGS
15086
15087 Wed Nov 3 22:09:46 1993 Ken Raeburn (raeburn@rtl.cygnus.com)
15088
15089 * Makefile.in (DISTDOCDIRS): New variable.
15090 (taz): Edit local Makefile.in sooner, instead of proto-toplev
15091 Makefile.in later. Build "info" and "dvi" in DISTDOCDIRS.
15092
15093 Wed Nov 3 21:31:52 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15094
15095 * configure.in (hppa target): check the source directory for the
15096 pagas sub-directory
15097
15098 Wed Nov 3 11:12:22 1993 Doug Evans (dje@canuck.cygnus.com)
15099
15100 * config.sub: Allow -aout* and -elf*.
15101
15102 Wed Nov 3 11:08:33 1993 Ken Raeburn (raeburn@rtl.cygnus.com)
15103
15104 * configure.in: Don't build ld on i386-solaris2, same as for
15105 sparc-solaris2.
15106
15107 Tue Nov 2 14:21:25 1993 Per Bothner (bothner@kalessin.cygnus.com)
15108
15109 * Makefile.in (taz): Add texinfo/lgpl.texinfo (for libg++).
15110
15111 Tue Nov 2 13:38:30 1993 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
15112
15113 * configure.in: Configure gdb for alpha.
15114
15115 Mon Nov 1 10:42:54 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15116
15117 * Makefile.in (CXXFLAGS): Add -O.
15118
15119 Wed Oct 27 10:45:06 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15120
15121 * config.guess: added support for DG Aviion
15122
15123 Tue Oct 26 14:37:37 1993 Ken Raeburn (raeburn@rover.cygnus.com)
15124
15125 * configure.in: Produce warning message for subdirectories not
15126 configurable for this host/target combination. Don't try to
15127 configure gdb for vms.
15128
15129 Mon Oct 25 11:22:15 1993 Ken Raeburn (raeburn@rover.cygnus.com)
15130
15131 * Makefile.in (taz): Replace "byacc" with "bison -y" in the
15132 appropriate files before making "diststuff".
15133 (DISTBISONFILES): New var: list of files to be edited.
15134 (DISTSTUFFDIRS): Add binutils.
15135
15136 Fri Oct 22 20:32:15 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15137
15138 * config.sub: also handle mipsel and mips64el (for little endian mips)
15139
15140 Fri Oct 22 07:59:20 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15141
15142 * configure.in: Add * to end of all OS names.
15143
15144 Thu Oct 21 11:38:28 1993 Stan Shebs (shebs@rtl.cygnus.com)
15145
15146 * configure.in: Build newlib for LynxOS native.
15147
15148 Wed Oct 20 09:56:12 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15149
15150 * config.guess: Add support for delta 88k running SVR3.
15151
15152 * configure.in: Add comment about HP compiler vs. emacs.
15153
15154 Tue Oct 19 16:02:22 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15155
15156 * configure.in: don't build ld on solaris2 (not a viable option
15157 due to bugs in getpwnam & getpwuid)
15158
15159 Tue Oct 19 15:13:56 1993 Ken Raeburn (raeburn@rtl.cygnus.com)
15160
15161 * configure.in: Accept alpha-dec-osf1*, not just -osf1, since
15162 config.guess will produce a full version number.
15163
15164 Tue Oct 19 15:58:01 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
15165
15166 * configure.in: Build linker and binutils for alpha-dec-osf1.
15167
15168 Tue Oct 19 11:41:55 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15169
15170 * Makefile.in: Remove -O from CXXFLAGS for consistency with CFLAGS,
15171 and gdb/testsuite/Makefile.in.
15172
15173 Sat Oct 9 18:39:07 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15174
15175 * configure.in: recognize mips*- instead of mips-
15176
15177 Fri Oct 8 14:15:39 1993 Ken Raeburn (raeburn@cygnus.com)
15178
15179 * config.sub: Accept linux*coff and linux*elf as operating
15180 systems.
15181
15182 Thu Oct 7 12:57:19 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
15183
15184 * config.sub: Recognize mips64, and mips3 as an alias for it.
15185
15186 Wed Oct 6 13:54:21 1993 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
15187
15188 * configure.in: Remove alpha-dec-osf*, no longer necessary now that
15189 gdb knows how to handle OSF/1 shared libraries.
15190
15191 Tue Oct 5 11:55:04 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15192
15193 * configure.in: Recognize hppa*-*-hiux* (currently synonym for hpux).
15194 * config.guess: Recognize Hitachi's HIUX.
15195 * config.sub: Recognize h3050r* and hppahitachi.
15196 Remove redundant cases for hp9k[23]*.
15197
15198 Mon Oct 4 16:15:09 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15199
15200 * configure.in: default to '--with-gnu-as' and '--with-gnu-ld'
15201 if gas and ld are in the source tree and are in ${configdirs}.
15202 If ${use_gnu_as} or ${use_gnu_ld} are 'no', then don't set the
15203 --with options (but still pass them down on the command line,
15204 if they were explicitly specified).
15205
15206 Fri Sep 24 19:11:13 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15207
15208 * configure: substitute SHELL value in Makefile.in with
15209 ${CONFIG_SHELL}
15210
15211 Thu Sep 23 18:05:13 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
15212
15213 * configure.in: Build gas, ld, and binutils for *-*-sysv4* and
15214 *-*-solaris2* targets.
15215
15216 Sun Sep 19 17:01:41 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15217
15218 * Makefile.in: define M4, and pass it down to sub-makes;
15219 all-autoconf now depends on all-m4
15220
15221 Sat Sep 18 00:38:23 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15222
15223 * Makefile.in ({AR,RANLIB}_FOR_TARGET): make contingent on
15224 presence of {ar,ranlib} instead of a configured directory
15225
15226 Wed Sep 15 08:41:44 1993 Jim Kingdon (kingdon@cirdan.cygnus.com)
15227
15228 * config.guess: Accept 34?? as well as 33?? for NCR.
15229
15230 Mon Sep 13 12:28:43 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15231
15232 * configure.in: grab mt-hppa for HPPA targets; use 'gas ' instead
15233 of 'gas' in sed commands, since 'gash' is now in the tree as well.
15234
15235 Fri Sep 10 11:23:52 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15236
15237 * configure: grab values for $(CC) and $(CXX) from the
15238 environment, so that someone can do "CC=gcc configure; make" and
15239 have it work right (matching the way that autoconf works now)
15240
15241 * configure.in, Makefile.in: add support for gash, the tcl
15242 interface to Galaxy
15243
15244 * config.guess: add NetBSD variants (hp300, x86)
15245
15246 Thu Sep 9 16:48:52 1993 Jason Merrill (jason@deneb.cygnus.com)
15247
15248 * install.sh: Support -d option (in the manner of SunOS 4 install,
15249 as it is more deterministic than that of GNU install)
15250 (chmodcmd): Set file to mode 755 by default (should also do default
15251 chgrp and chown, but I don't feel like dealing with that now)
15252
15253 Tue Sep 7 11:59:39 1993 Doug Evans (dje@canuck.cygnus.com)
15254
15255 * config.sub: Remove h8300hhms alias.
15256
15257 Tue Aug 31 11:00:09 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15258
15259 * configure.in: Match *-*-solaris2* not *-sun-solaris2*.
15260
15261 Mon Aug 30 18:29:10 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15262
15263 * Makefile.in (gcc-no-fixedincludes): touch stmp-fixproto as well
15264 as stmp-fixinc
15265
15266 Wed Aug 25 16:35:59 1993 K. Richard Pixley (rich@sendai.cygnus.com)
15267
15268 * config.sub: recognize m88110-bug-coff.
15269
15270 Tue Aug 24 10:23:24 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15271
15272 * Makefile.in (all-libio): all dependencies on the toolchain used
15273 to build this (gcc, gas, ld, etc)
15274
15275 Fri Aug 20 17:24:24 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15276
15277 * config.guess: Deal with OSF/1 1.3 on alpha.
15278
15279 Thu Aug 19 11:43:04 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15280
15281 * install.sh: add some 'else true' clauses for portability
15282
15283 * configure.in: don't build libio for h8[35]00-*-* targets
15284
15285 Tue Aug 17 19:02:31 1993 Per Bothner (bothner@kalessin.cygnus.com)
15286
15287 * Makefile.in: Add support for new libio.
15288
15289 Sun Aug 15 20:48:55 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15290
15291 * install.sh: If one command fails, don't try the rest. Don't try
15292 to remove $dsttmp (via trap) unless we have already created it.
15293 If $src doesn't exist, detect it and exit with an error.
15294
15295 * config.guess: Recognize BSD on hp300.
15296
15297 Wed Aug 11 18:35:13 1993 Per Bothner (bothner@kalessin.cygnus.com)
15298
15299 * config.guess: Map (9000/[34]??:HP-UX:*:*) to m68k-hp-hpux.
15300 Bug report from "Hamish (H.I.) Macdonald" <hamish@bnr.ca>.
15301
15302 Wed Aug 11 15:37:51 1993 Jason Merrill (jason@deneb.cygnus.com)
15303
15304 * Makefile.in (all-send-pr): depends on all-prms
15305
15306 Wed Aug 11 16:56:03 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15307
15308 * config.guess: Fix typo (9000/8??:4.3bsd -> 9000/7??:4.3bsd).
15309
15310 Fri Aug 6 14:45:02 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
15311
15312 * config.guess: From michael@mercury.cs.mun.ca (Michael Rendell):
15313 Added test for mips-mips-riscos5.
15314
15315 Thu Aug 5 15:45:08 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15316
15317 * configure.in: use mh-hp300 for 68k HP hosts
15318
15319 Mon Aug 2 11:56:53 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15320
15321 * configure: add support for CONFIG_SHELL, so that you can use
15322 some alternate shell for evaluating configure scripts
15323
15324 Sun Aug 1 11:36:27 1993 Fred Fish (fnf@deneb.cygnus.com)
15325
15326 * Makefile.in (make-gdb.tar.gz): Sed bug reporting address
15327 in configure script to bug-gdb@prep.ai.mit.edu when building
15328 distribution archive.
15329 * Makefile.in (COMPRESS): Remove def.
15330 * Makefile.in (gdb.tar.gz, make-gdb.tar.gz): Renamed from
15331 gdb.tar.Z and make-gdb.tar.Z respectively.
15332 * Makefile.in (make-gdb.tar.gz): Now only build gzip'd archive.
15333 * Makefile.in (make-gdb.tar.gz): Minor changes to move closer
15334 to convergence with 'taz' target in Makefile.in.
15335
15336 Fri Jul 30 12:34:57 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15337
15338 * install.sh (dsttmp): use trap to ensure that tmp files go
15339 away on error conditions
15340
15341 Wed Jul 28 11:57:36 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15342
15343 * Makefile.in (BASE_FLAGS_TO_PASS): remove LOADLIBES
15344
15345 Tue Jul 27 12:43:40 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15346
15347 * Makefile.in (install-dirs): Deal with a prefix like /gnu;
15348 its parent is '/' not ''.
15349
15350 * Makefile.in (DEVO_SUPPORT): Add comments about ChangeLog.
15351
15352 Fri Jul 23 09:53:37 1993 Jason Merrill (jason@wahini.cygnus.com)
15353
15354 * configure: if ${newsrcdir}/configure doesn't exist, don't assume
15355 that ${newsrcdir}/configure.in does.
15356
15357 Tue Jul 20 11:28:50 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15358
15359 * test-build.mk: support for CONFIG_SHELL
15360
15361 Mon Jul 19 21:54:46 1993 Fred Fish (fnf@deneb.cygnus.com)
15362
15363 * config.sub (netware): Add as a basic system type.
15364
15365 Wed Jul 14 12:03:11 1993 K. Richard Pixley (rich@sendai.cygnus.com)
15366
15367 * Makefile.in (Makefile): depend on configure.in. Also drop the
15368 $(srcdir)/ from the dependency on Makefile.in.
15369
15370 Tue Jul 13 20:10:58 1993 Doug Evans (dje@canuck.cygnus.com)
15371
15372 * config.sub: Recognize h8300hhms as h8300h-hitachi-hms.
15373 (h8300hhms is temporary until multi-libraries are implemented).
15374 * configure.in: Handle h8300h too.
15375
15376 Sun Jul 11 17:35:27 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15377
15378 * config.guess: Recognize dpx/2 as m68k-bull-sysv3.
15379
15380 Thu Jul 8 18:26:12 1993 John Gilmore (gnu@cygnus.com)
15381
15382 * configure: Remove extraneous output when guessing host type.
15383 * config.guess: Remove extraneous output when guessing using C
15384 compiler rather than uname, or when guessing fails.
15385
15386 Wed Jul 7 17:58:14 1993 david d `zoo' zuhn (zoo at rtl.cygnus.com)
15387
15388 * Makefile.in: remove all.cross and install.cross targets
15389
15390 * configure: remove CROSS=-DCROSS_COMPILE and ALL=all.cross
15391 definitions
15392
15393 Tue Jul 6 10:39:44 1993 Steve Chamberlain (sac@phydeaux.cygnus.com)
15394
15395 * configure.in (target sh): Build gprof.
15396
15397 Thu Jul 1 16:52:56 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15398
15399 * config.sub: change -solaris to -solaris2
15400
15401 Thu Jul 1 15:46:16 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15402
15403 * configure.in: Use config/mh-riscos for mips-*-sysv*.
15404
15405 Wed Jun 30 09:31:58 1993 Ian Lance Taylor (ian@cygnus.com)
15406
15407 * configure: Correct error message for missing Makefile.in to
15408 print correct directory.
15409
15410 Tue Jun 29 13:52:16 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15411
15412 * install.sh: kludge around 386BSD shell bug
15413
15414 Tue Jun 29 13:06:49 1993 Per Bothner (bothner@rtl.cygnus.com)
15415
15416 * config.guess: Recognize NeXT.
15417 * config.guess: Recognize i486-ncr-sysv4.
15418 * Makefile.in (taz): rm $(TOOL)-$$VER before linking.
15419
15420 Tue Jun 29 12:50:57 1993 Ian Lance Taylor (ian@cygnus.com)
15421
15422 * Makefile.in (MAKEINFOFLAGS): New variable.
15423 (FLAGS_TO_PASS): Pass MAKEINFO as MAKEINFO MAKEINFOFLAGS.
15424 * build-all.mk, test-build.mk: Pass down --no-split as
15425 MAKEINFOFLAGS when hosted on DOS. Compile DOS hosted without -g.
15426
15427 Thu Jun 24 13:39:11 1993 Per Bothner (bothner@rtl.cygnus.com)
15428
15429 * Makefile.in (DEVO_SUPPORT): Add COPYING COPYING.LIB install.sh.
15430
15431 Wed Jun 23 12:59:21 1993 Per Bothner (bothner@rtl.cygnus.com)
15432
15433 * Makefile.in (libg++.tar.z): New rule.
15434 * Makefile.in (taz): Replace 'configure -rm' by 'make distclean'.
15435 * Makefile.in (taz): Only do a single chmod.
15436
15437 Fri Jun 18 12:03:10 1993 david d `zoo' zuhn (zoo at majipoor.cygnus.com)
15438
15439 * install.sh: don't use dirname anymore (replaced with sed usage)
15440
15441 Thu Jun 17 18:43:42 1993 Fred Fish (fnf@cygnus.com)
15442
15443 * Makefile.in: Change extension for gzip'd files from '.z' to
15444 '.gz' per new FSF standard usage.
15445
15446 Thu Jun 17 16:58:50 1993 david d `zoo' zuhn (zoo at majipoor.cygnus.com)
15447
15448 * configure: put quotes around the final value of program_transform_name
15449
15450 Tue Jun 15 16:48:51 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15451
15452 * Makefile.in: new install.sh support; update install-info rules
15453
15454 Wed Jun 9 12:31:34 1993 Ian Lance Taylor (ian@cygnus.com)
15455
15456 * configure.in: Build diff for crosses, but not for go32 host.
15457
15458 * configure.in: Build gprof only for native, and don't build it
15459 for mips-*-*, rs6000-*-*, or i[34]86-*-sco*.
15460
15461 Mon Jun 7 13:12:11 1993 david d `zoo' zuhn (zoo at deneb.cygnus.com)
15462
15463 * configure.in: don't build gas,ld,binutils on for *-*-sysv4
15464
15465 Mon Jun 7 11:40:11 1993 Brendan Kehoe (brendan@lisa.cygnus.com)
15466
15467 * configure.in (host_tools): Add prms.
15468
15469 Fri Jun 4 13:30:42 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15470
15471 * Makefile.in: install gcc, do installation of $(INSTALL_MODULES)
15472 with $(FLAGS_TO_PASS) on the command line
15473
15474 * config.sub: Recognize lynx and lynxos
15475
15476 Fri Jun 4 10:59:56 1993 Ian Lance Taylor (ian@cygnus.com)
15477
15478 * config.sub: Accept -ecoff*, not just -ecoff.
15479
15480 Thu Jun 3 17:38:54 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15481
15482 * Makefile.in (taz): Use .gz suffix instead of .z.
15483 (binutils.tar.gz, gas+binutils.tar.gz, gas.tar.gz): Fixed target
15484 names.
15485
15486 Thu Jun 3 00:27:06 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15487
15488 * Makefile.in (vault-install): add an 'else true' (for Ultrix)
15489
15490 Wed Jun 2 18:19:16 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15491
15492 * Makefile.in (install-no-fixedincludes): install gcc last, so
15493 that rebuilds that might happen during 'make install' don't get
15494 bogus gcc include files
15495
15496 Wed Jun 2 16:14:10 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15497
15498 Change from Utah for HPPA support:
15499 * config.guess: Recognize hppa1.x-hp-bsd.
15500
15501 Wed Jun 2 11:53:33 1993 Per Bothner (bothner@rtl.cygnus.com)
15502
15503 * config.guess: Add support for Motorola Delta 68k, up to r3v7.
15504 Patch from pot@fly.cnuce.cnr.it (Francesco Potorti`).
15505
15506 Tue Jun 1 17:48:42 1993 Rob Savoye (rob at darkstar.cygnus.com)
15507
15508 * config.sub: Add support for rom68k and bug boot monitors.
15509
15510 Mon May 31 09:36:37 1993 Jim Kingdon (kingdon@cygnus.com)
15511
15512 * Makefile.in: Make all-opcodes depend on all-bfd.
15513
15514 Thu May 27 08:05:31 1993 Ian Lance Taylor (ian@cygnus.com)
15515
15516 * config.guess: Added special check for i[34]86-univel-sysv4*.
15517
15518 Wed May 26 16:33:40 1993 Ian Lance Taylor (ian@cygnus.com)
15519
15520 * config.guess: For i[34]86-unknown-sysv4 use UNAME_MACHINE for
15521 the processor rather than assuming i486.
15522
15523 Wed May 26 09:40:18 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15524
15525 * config.guess: Recognize SunOS6 as Solaris3.
15526
15527 Tue May 25 23:03:11 1993 Per Bothner (bothner@cygnus.com)
15528
15529 * config.guess: Fix typo. Avoid #elif (not in K&R 1).
15530 Recognize SunOS 5.* only (and not [6-9].*) as being Solaris2.
15531
15532 Tue May 25 12:44:18 1993 Ian Lance Taylor (ian@cygnus.com)
15533
15534 * build-all.mk (all-cross): New target for Canadian Cross.
15535 Added Q2 go32 targets.
15536 * test-build.mk: Configure go32 cross sparclite-aout and
15537 mips-idt-ecoff -with-gnu-ld. Moved build binary directory from
15538 PARTIAL_HOLE_DIRS to BUILD_HOLES_DIRS.
15539
15540 Mon May 24 15:30:06 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15541
15542 * configure.in: fix Alpha GDB typo; also, don't build DejaGnu for
15543 GO32 hosted toolchains
15544
15545 Mon May 24 14:18:41 1993 Rob Savoye (rob at darkstar.cygnus.com)
15546
15547 * configure: change so "-exec-prefix" gets passed down rather
15548 than "-exec_prefix" so autoconf generated Makefiles get the
15549 exec_prefix set right.
15550
15551 Fri May 21 10:42:25 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15552
15553 * config.guess: get the Solaris2 minor version number
15554
15555 * Makefile.in: add standards.texi and make-stds.texi to ETC_SUPPORT
15556
15557 Fri May 21 06:20:52 1993 Brendan Kehoe (brendan@lisa.cygnus.com)
15558
15559 * config.guess: Recognize some Sequent platforms.
15560
15561 Thu May 20 14:33:48 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15562
15563 * Makefile.in: added the vault-install target
15564
15565 * configure.in: actually use the Sun3 makefile fragment that's in
15566 config, also added the release dir to configdirs
15567
15568 Thu May 20 14:19:18 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15569
15570 * Makefile.in (taz): Fix modes on stuff in $(TOOL) dir also.
15571
15572 Tue May 18 20:26:41 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15573
15574 * configure.in: remove some program from Alpha targetted toolchains
15575
15576 Tue May 18 15:23:19 1993 Ken Raeburn (raeburn@cygnus.com)
15577
15578 * Makefile.in (DISTSTUFFDIRS): Renamed from PROTODIRS. Add ld and
15579 gprof.
15580 (taz): Run "make diststuff" in those directories instead of "make
15581 proto-dir". Look for "VERSION=" only at start of line in subdir
15582 Makefile. Use "gzip -9" for compression.
15583 (TEXINFO_SUPPORT, DIST_SUPPORT, BINUTILS_SUPPORT_DIRS): New vars.
15584 (binutils.tar.z): New target.
15585
15586 Mon May 17 17:01:15 1993 Ken Raeburn (raeburn@deneb.cygnus.com)
15587
15588 * Makefile.in (taz): Include gpl.texinfo.
15589
15590 Fri May 14 06:48:38 1993 Ken Raeburn (raeburn@deneb.cygnus.com)
15591
15592 * Makefile.in (setup-dirs): Merged into "taz" target.
15593 (taz): Only do `proto-dir' stuff if a directory is actually needed
15594 for this target.
15595
15596 Wed May 12 13:09:44 1993 Ian Lance Taylor (ian@cygnus.com)
15597
15598 * Makefile.in (MUNCH_NM): New variable, defined to be $(NM).
15599 (FLAGS_TO_PASS): Pass down MUNCH_NM.
15600 (HOST_CC, HOST_PREFIX, HOST_PREFIX_1): New variables.
15601 (EXTRA_GCC_FLAGS): Pass down HOST_* variables.
15602 (gcc-no-fixedincludes): Correct for current gcc Makefile.
15603
15604 Tue May 11 10:14:25 1993 Fred Fish (fnf@cygnus.com)
15605
15606 * Makefile.in (make-gdb.tar.Z): Add configure, config.guess,
15607 config.sub, and move-if-change to gdb testsuite distribution
15608 archive, so the testsuite can be extracted, configured, and
15609 run separately from the gdb distribution. Blow away the Chill
15610 tests that require a Chill compiled executable, since GNU Chill
15611 is not yet publically available.
15612
15613 Mon May 10 17:22:26 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15614
15615 * test-build.mk: set environment variables in a single command,
15616 instead of a list of assignments and exports
15617
15618 * config.guess: recognize Alpha/OSF1 systems
15619
15620 Mon May 10 14:55:51 1993 K. Richard Pixley (rich@rtl.cygnus.com)
15621
15622 * configure: Change help message to prefer --options rather than
15623 -options.
15624
15625 Mon May 10 05:58:35 1993 Ken Raeburn (raeburn@kr-pc.cygnus.com)
15626
15627 * config.sub: Convergent Tech. "miniframe" uses m68010, sez
15628 zippy@ecst.csuchico.edu.
15629 * config.guess: Recognize miniframe.
15630
15631 Sun May 9 17:47:57 1993 Rob Savoye (rob at darkstar.cygnus.com)
15632
15633 * Makefile.in: Use srcroot to find runtest rather than rootme.
15634 Pass RUNTESTFLAGS and EXPECT down in BASE_FLAGS_TO_PASS.
15635
15636 Fri May 7 14:55:59 1993 Ian Lance Taylor (ian@cygnus.com)
15637
15638 * test-build.mk: Extensive additions to support building on a
15639 machine other than the host.
15640
15641 Wed May 5 08:35:04 1993 Ken Raeburn (raeburn@deneb.cygnus.com)
15642
15643 * configure (tooldir): Fix for i386-aix again.
15644
15645 Mon May 3 19:00:27 1993 Per Bothner (bothner@cygnus.com)
15646
15647 * configure, Makefile.in: Change definition of $(tooldir)
15648 to match the FSF.
15649
15650 Fri Apr 30 15:55:21 1993 Fred Fish (fnf@cygnus.com)
15651
15652 * config.guess: Recognize i[34]86/SVR4.
15653
15654 Fri Apr 30 15:52:46 1993 Steve Chamberlain (sac@thepub.cygnus.com)
15655
15656 * Makefile.in (all-gdb): gdb depends on sim.
15657
15658 Thu Apr 29 23:30:48 1993 Fred Fish (fnf@cygnus.com)
15659
15660 * Makefile.in (gdb.tar.Z): Make prototype gdb testsuite directory
15661 at the same time we make the prototype gdb directory.
15662 * Makefile.in (make-gdb.tar.Z): Make the testsuite distribution
15663 files at the same time as the gdb base release distribution.
15664
15665 Thu Apr 29 12:50:37 1993 Ian Lance Taylor (ian@cygnus.com)
15666
15667 * Makefile.in (check): Use individual check targets rather than
15668 DO_X rule.
15669 (check-gcc): Added.
15670
15671 Thu Apr 29 09:50:07 1993 Jim Kingdon (kingdon@cygnus.com)
15672
15673 * config.sub: Use sysv3.2 not sysv32 for canonical OS
15674 for System V release 3.2.
15675
15676 Thu Apr 29 10:33:22 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15677
15678 * config.sub: Recognize hppaosf.
15679 * configure.in: Do configure ld/binutils/gas for it.
15680
15681 Tue Apr 27 06:25:34 1993 Ken Raeburn (raeburn@kr-pc.cygnus.com)
15682
15683 * configure (tooldir): Alter syntax used to set this, for systems
15684 where "\$" isn't handled right, like i386-aix.
15685
15686 Thu Apr 22 08:17:35 1993 Ian Lance Taylor (ian@cygnus.com)
15687
15688 * configure: Pass program-transform-name, not
15689 program_transform_name, to recursive configures.
15690
15691 Thu Apr 22 02:58:21 1993 Ken Raeburn (raeburn@cygnus.com)
15692
15693 * Makefile.in (gas+binutils.tar.z): New rule for building snapshots
15694 of gas+ld+binutils.
15695
15696 Mon Apr 19 17:41:30 1993 Per Bothner (bothner@cygnus.com)
15697
15698 * config.guess: Recognize AIX3.2 as distinct from 3.1.
15699
15700 Sat Apr 17 17:19:50 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15701
15702 * configure.in: rename m88k-motorola-m88kbcs to m88k-motorola-sysv
15703
15704 Tue Apr 13 16:52:16 1993 Brendan Kehoe (brendan@lisa.cygnus.com)
15705
15706 * Makefile.in (PRMS): Set back to all-prms.
15707
15708 Sat Apr 10 12:04:07 1993 Ian Lance Taylor (ian@cygnus.com)
15709
15710 * test-build.mk: Pass -with-gnu-as for known MIPS native and MIPS
15711 targets, rather than for MIPS hosts.
15712
15713 Fri Apr 9 13:51:06 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15714
15715 * configure.in: add comment for --with-x default values
15716
15717 * config.guess: handle Motorola Delta88 box for SVR3 and SVR4.
15718
15719 * Makefile.in: add check-* targets for each of the directories in
15720 the tree. Add a definition of RUNTEST that will use the one we
15721 just built, if it exists. Pass this down via FLAGS_TO_PASS.
15722
15723 Thu Apr 8 09:21:30 1993 Ian Lance Taylor (ian@cygnus.com)
15724
15725 * configure.in: Removed obsolete references to bfd_target and
15726 target_makefile_frag.
15727
15728 * build-all.mk: Set assorted targets for Q2.
15729 * config.sub: Recognize z8k-sim and h8300-hms.
15730 * test-build.mk: Really don't pass host to configure.
15731 (HOLES): Added uname.
15732
15733 Wed Apr 7 15:48:19 1993 Ian Lance Taylor (ian@cygnus.com)
15734
15735 * configure: Handle an empty program-prefix, program-suffix or
15736 program-transform-name correctly.
15737
15738 Tue Apr 6 13:48:41 1993 Ian Lance Taylor (ian@cygnus.com)
15739
15740 * build-all.mk: -G 8 no longer required for MIPS targets.
15741 * test-build.mk: Don't pass host argument to configure; make it
15742 guess.
15743
15744 Tue Apr 6 10:36:53 1993 Fred Fish (fnf@cygnus.com)
15745
15746 * Makefile.in (gdb.tar.Z): Fix for building gzip'd distribution.
15747 * Makefile.in (COMPRESS): New macro, like GZIP.
15748
15749 Fri Apr 2 09:02:31 1993 Ian Lance Taylor (ian@cygnus.com)
15750
15751 * test-build.mk: Use -with-gnu-as for mips-sgi-irix4 as well.
15752
15753 * build-all.mk: Set GCC to gcc -O -G 8 for MIPS targets, since gcc
15754 with gas currently defaults to -G 0.
15755
15756 Thu Apr 1 08:25:42 1993 Ian Lance Taylor (ian@cygnus.com)
15757
15758 * Makefile.in (all-flex): flex depends on byacc.
15759
15760 * build-all.mk: If host not specified, use config.guess. Pass TAG
15761 to test-build.mk as RELEASE_TAG.
15762 * test-build.mk (configargs): New variable containing arguments to
15763 pass to configure. Set to -with-gnu-as on mips-dec-ultrix.
15764 (FLAGS_TO_PASS): Pass down RELEASE_TAG.
15765
15766 * config.guess: Use /bin/uname when checking -X argument on SCO,
15767 to avoid invoking GNU uname which doesn't understand -X.
15768
15769 * test-build.mk: Don't use /usr/unsupported/bin/as on AIX.
15770
15771 * configure.in: Build gas for mips-*-*.
15772
15773 Wed Mar 31 21:20:58 1993 K. Richard Pixley (rich@rtl.cygnus.com)
15774
15775 * Makefile.in (all.normal): insert missing backslash.
15776
15777 Wed Mar 31 12:31:56 1993 Ian Lance Taylor (ian@cygnus.com)
15778
15779 * build-all.mk: Bump -XNh value to 1500 to match gcc requirements.
15780
15781 * Makefile.in: Complete overhaul to merge many almost identical
15782 targets.
15783
15784 Tue Mar 30 20:17:01 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15785
15786 * Makefile.in (setup-dirs-gdb): Renamed from setup-dirs.
15787 (gdb.tar.Z): Adjusted.
15788
15789 * Makefile.in (setup-dirs, taz): New targets; should be general
15790 enough to adapt for gdb sometime. Build only .z file.
15791 (gas.tar.z): New target.
15792
15793 Tue Mar 30 10:03:09 1993 Ian Lance Taylor (ian@cygnus.com)
15794
15795 * build-all.mk: Use CC=cc -Xs on Solaris.
15796
15797 Thu Mar 25 15:14:30 1993 Fred Fish (fnf@cygnus.com)
15798
15799 * Makefile.in: Incorporate changes suggested by wilson@cygnus.com
15800 for handling BISON for FSF releases.
15801
15802 Thu Mar 25 06:19:48 1993 Ken Raeburn (raeburn@kr-pc.cygnus.com)
15803
15804 * configure: Actually implement the change zoo just documented.
15805
15806 Wed Mar 24 13:02:44 1993 david d `zoo' zuhn (zoo at poseidon.cygnus.com)
15807
15808 * configure: when using config.guess, only set target_alias when
15809 it's not already been set (ie, on the command line)
15810
15811 Mon Mar 22 23:07:39 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15812
15813 * Makefile.in: add installcheck target, set PRMS to install-prms
15814
15815 Sun Mar 21 16:46:12 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15816
15817 * configure: add support for package_makefile_fragment, handle the
15818 case where a directory has a configure.in file but no Makefile.in
15819 more gracefully (with an actual understandable error message, even);
15820 add support for --without (and add this to the usage message); also
15821 explicitly add a --host=${host_alias} to the command line when
15822 config.guess is used
15823
15824 Sun Mar 21 12:11:58 1993 Jim Wilson (wilson@sphagnum.cygnus.com)
15825
15826 * configure: Must use both --host and --target in recursive calls.
15827
15828 Thu Mar 18 12:31:35 1993 Ian Lance Taylor (ian@cygnus.com)
15829
15830 * Makefile.in: Change deja-gnu to dejagnu.
15831
15832 Mon Mar 15 15:44:35 1993 Ian Lance Taylor (ian@cygnus.com)
15833
15834 * configure.in (h8300-*-*, h8500-*-*): Don't build libg++.
15835
15836 Fri Mar 12 18:30:14 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15837
15838 * configure.in: canonicalize all instances to *-*-solaris2*,
15839 also strip out a number of tools to not build for go32 host
15840
15841 Wed Mar 10 12:08:27 1993 K. Richard Pixley (rich@rtl.cygnus.com)
15842
15843 * config.guess: add GPL.
15844
15845 * Makefile.in, config.guess, config.sub, configure: bump
15846 copyrights to 93.
15847
15848 Wed Mar 10 07:12:48 1993 Ian Lance Taylor (ian@cygnus.com)
15849
15850 * Makefile.in (do-info): Removed obsolete check for existence of
15851 localenv file.
15852
15853 * Makefile.in (MAKEOVERRIDES): Define to be empty.
15854
15855 Wed Mar 10 03:11:56 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15856
15857 * Makefile.in: a couple of 'else true' for decstation,
15858 support for TclX
15859
15860 * configure.in: configure tclX too; don't remove Tk on RS/6000 anymore
15861
15862 Tue Mar 9 16:06:12 1993 K. Richard Pixley (rich@cygnus.com)
15863
15864 * Makefile.in (setup-dirs): change invocation of make to $(MAKE).
15865
15866 Mon Mar 8 14:52:11 1993 Ken Raeburn (raeburn@cambridge)
15867
15868 * config.guess: Recognize i386-ibm-aix (PS/2).
15869 * configure.in: Use config/mh-aix386 file for it.
15870
15871 Mon Mar 8 11:12:43 1993 Ian Lance Taylor (ian@cygnus.com)
15872
15873 * Makefile.in (GCC_FOR_TARGET): Eliminated definition; use
15874 CC_FOR_TARGET instead.
15875 (BASE_FLAGS_TO_PASS): Pass GCC_FOR_TARGET=$(CC_FOR_TARGET).
15876
15877 Wed Mar 3 16:00:28 1993 Steve Chamberlain (sac@ok.cygnus.com)
15878
15879 * Makefile.in: Add sim to list of directories sent with gdb
15880
15881 Wed Mar 3 11:42:39 1993 Ken Raeburn (raeburn@cygnus.com)
15882
15883 * configure.in: Put back mips-dec-bsd* case.
15884
15885 Tue Mar 2 21:15:58 1993 Fred Fish (fnf@cygnus.com)
15886
15887 (Ultrix 2.2 support from Michael Rendell <michael@mercury.cs.mun.ca>)
15888 * configure.in (vax-*-ultrix2*): Add Ultrix 2.2 triplet.
15889 * config.guess: Change 'VAX*:ULTRIX:*:*' to 'VAX*:ULTRIX*:*:*'.
15890
15891 Tue Mar 2 18:11:03 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15892
15893 * configure.in: remove no-op mips-dec-bsd* in "case $target"
15894
15895 * Makefile.in (dir.info): only run gen-info-dir if it exists,
15896 (install-info): install dir.info only if it exists,
15897 (all-expect, install-expect): pass along X11_FLAGS_TO_PASS
15898
15899 Tue Mar 2 09:01:30 1993 Ken Raeburn (raeburn@cygnus.com)
15900
15901 * configure.in: For vms target, skip bfd, ld, binutils. Do build
15902 gas for mips-dec-bsd.
15903
15904 Tue Mar 2 08:35:24 1993 Ian Lance Taylor (ian@cygnus.com)
15905
15906 * configure (makesrcdir): If ${srcdir} is relative and not ".",
15907 and ${subdir} is not ".", set makesrcdir based on ${invsubdir}.
15908
15909 Tue Feb 23 14:18:28 1993 Mike Werner (mtw@poseidon.cygnus.com)
15910
15911 * configure.in: Added "dejagnu" to hosttools list.
15912
15913 Mon Feb 22 23:28:38 1993 Per Bothner (bothner@rtl.cygnus.com)
15914
15915 * config.sub, configure.in, config.guess: Add support
15916 for Bosx, an AIX variant from Bull.
15917 Patches from F.Pierresteguy@frcl.bull.fr.
15918
15919 Sun Feb 21 11:15:22 1993 Mike Werner (mtw@poseidon.cygnus.com)
15920
15921 * devo/dejagnu: Initial creation of devo/dejagnu.
15922 Migrated dejagnu testcases and support files for testing software
15923 tools to reside as subdirectories, currently called "testsuite",
15924 within the directory of the software tool. Migrated all programs,
15925 support libraries, etc. beloging to dejagnu proper from
15926 devo/deja-gnu to devo/dejagnu. These files were moved "as is"
15927 with no modifications. The changes to these files which will
15928 allow them to configure, build, and execute properly will be made
15929 in a future update.
15930
15931 Fri Feb 19 20:19:39 1993 Brendan Kehoe (brendan@lisa.cygnus.com)
15932
15933 * Makefile.in: Change send_pr to send-pr.
15934 * configure.in: Likewise.
15935 * send_pr: Renamed directory to send-pr.
15936
15937 Fri Feb 19 19:00:13 1993 Per Bothner (bothner@cygnus.com)
15938
15939 * Makefile.in: Add some extra semi-colons (needed if SHELL=bash).
15940
15941 Fri Feb 19 00:59:33 1993 John Gilmore (gnu@cygnus.com)
15942
15943 * README: Update for gdb-4.8 release.
15944 * Makefile.in (gdb.tar.Z): Add texinfo/tex3patch. Build
15945 gdb-xxx.tar.z (gzip'd) file also.
15946
15947 Thu Feb 18 09:16:17 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15948
15949 * Makefile.in: make all-diff depend on all-libiberty
15950
15951 Tue Feb 16 16:06:31 1993 K. Richard Pixley (rich@cygnus.com)
15952
15953 * config.guess: add vax-ultrix in the spirit of mips-ultrix.
15954
15955 Tue Feb 16 05:57:15 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15956
15957 * configure.in, Makefile.in: add hello, tar, gzip, recode, indent
15958
15959 Tue Feb 16 00:58:20 1993 John Gilmore (gnu@cygnus.com)
15960
15961 * Makefile.in (DEVO_SUPPORT): Remove etc directory
15962 (ETC_SUPPORT): Only add the files GDB wants from etc/.
15963 (gdb.tar.Z): Use ETC_SUPPORT. Use byacc when building the file.
15964
15965 Thu Feb 11 20:14:28 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15966
15967 * Makefile.in: makeinfo binary is in a new location
15968
15969 Tue Feb 9 12:42:27 1993 Ian Lance Taylor (ian@cygnus.com)
15970
15971 * config.sub: Accept -ecoff as an OS.
15972
15973 * Makefile.in: Various changes to eliminate a level of make
15974 recursion and reduce the required command line length.
15975 (BASE_FLAGS_TO_PASS): New variable holding flags passed to all
15976 sub-makes.
15977 (EXTRA_HOST_FLAGS, EXTRA_TARGET_FLAGS, EXTRA_GCC_FLAGS): New
15978 variables holding settings for specific sub-makes.
15979 (FLAGS_TO_PASS, TARGET_FLAGS_TO_PASS, GCC_FLAGS_TO_PASS): Rewrote
15980 in terms of BASE_FLAGS_TO_PASS.
15981 (TARGET_LIBS): New variable listing directories which use
15982 TARGET_FLAGS_TO_PASS.
15983 (subdir_do): Eliminated.
15984 (do-*): New set of targets to replace subdir_do.
15985 (various): All targets which used subdir_do now depend on do-*.
15986 (local-clean): Renamed from do_clean.
15987 (local-distclean): New target, dependency of distclean and
15988 realclean.
15989 (install-info): Don't create directories. Depend on dir.info
15990 rather than calling make recursively.
15991 (install-dir.info): Eliminated.
15992 (install-info-dirs): Create all info directories here.
15993 (dir.info): Depend upon do-install-info.
15994
15995 * test-build.mk (HOLES): Added false.
15996
15997 Sat Feb 6 14:05:09 1993 Per Bothner (bothner@rtl.cygnus.com)
15998
15999 * config.guess: Recognize BSDI and BSDJ (Jolitz 386bsd).
16000
16001 Thu Feb 4 20:49:18 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16002
16003 * Makefile.in (info): remove dependency on all-texinfo. The
16004 problem was really in texinfo/C, not at this level.
16005
16006 Thu Feb 4 13:38:41 1993 Ian Lance Taylor (ian@cygnus.com)
16007
16008 * Makefile.in (info): Added dependency on all-texinfo (PR 2112).
16009
16010 Thu Feb 4 01:50:53 1993 John Gilmore (gnu@cygnus.com)
16011
16012 * Makefile.in (make-gdb.tar.Z): Change BISON to 'bison -y' for
16013 GDB releases.
16014
16015 Wed Feb 3 17:22:16 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
16016
16017 * configure: Include srcdir in message about target of link not
16018 being found. Don't convert `-' to `_' in `with' options being
16019 passed to subdirs.
16020
16021 Tue Feb 2 18:57:59 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16022
16023 * configure.in: add uudecode to host_tools
16024
16025 * Makefile.in: added {all,install}-uudecode targets, added them to
16026 the appropriate lists
16027
16028 Tue Feb 2 11:45:53 1993 Ian Lance Taylor (ian@cygnus.com)
16029
16030 * Makefile.in (all-gcc): Added dependency on all-gas.
16031
16032 * configure.in (mips-*-*): Build ld and binutils.
16033
16034 Mon Feb 1 12:35:41 1993 K. Richard Pixley (rich@rtl.cygnus.com)
16035
16036 * configure: check return code from mkdir, print error message and
16037 exit on failure.
16038
16039 Sat Jan 30 16:40:28 1993 John Gilmore (gnu@cygnus.com)
16040
16041 * Makefile.in (make-gdb.tar.Z): New location for texinfo.tex.
16042
16043 Thu Jan 28 15:09:59 1993 Ian Lance Taylor (ian@cygnus.com)
16044
16045 * test-build.mk (HOLES): Added tar, cpio and uudecode.
16046
16047 Wed Jan 27 16:50:32 1993 Jim Wilson (wilson@sphagnum.cygnus.com)
16048
16049 * config.sub (h8500): Recognize this as a cpu type.
16050
16051 Sat Jan 23 20:32:01 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16052
16053 * configure: source directory missing is no longer a warning
16054
16055 * configure.in: recognize irix[34]* instead of irix[34]
16056
16057 * Makefile.in: define and pass down X11_LIB
16058
16059 Sat Jan 23 13:49:40 1993 Per Bothner (bothner@cygnus.com)
16060
16061 * guess-systype: Renamed to ...
16062 * config.guess: ... by popular request.
16063 * configure.in, Makefile.in: Update accordingly.
16064
16065 Thu Jan 21 12:20:55 1993 Per Bothner (bothner@cygnus.com)
16066
16067 * guess-systype: Patches from John Eaton <jwe@che.utexas.edu>:
16068 + Add Convex, Cray/Unicos, and Encore/Multimax support.
16069 + Execute ./dummy instead of assuming . is in PATH.
16070
16071 Tue Jan 19 17:18:06 1993 Per Bothner (bothner@cygnus.com)
16072
16073 * guess-systype: New shell script. Attempts to guess the
16074 canonical host name of the executing host.
16075 Only a few hosts are supported so far.
16076 * configure: Call guess-systype if no host is specified.
16077
16078 Tue Jan 19 08:26:07 1993 Ian Lance Taylor (ian@cygnus.com)
16079
16080 * Makefile.in (gcc-no-fixedincludes): Made to work with current
16081 gcc Makefile.
16082
16083
16084 Fri Jan 15 10:27:02 1993 Ian Lance Taylor (ian@cygnus.com)
16085
16086 * Makefile.in (GCC_FLAGS_TO_PASS): New variable.
16087 (all-gcc, install-gcc, subdir_do): Use it.
16088
16089 Wed Jan 13 17:06:45 1993 Jim Wilson (wilson@sphagnum.cygnus.com)
16090
16091 * Makefile.in: Rename uninstalled gcc driver from gcc to xgcc.
16092
16093 Wed Jan 6 20:29:16 1993 Mike Werner (mtw@rtl.cygnus.com)
16094
16095 * Makefile.in: Removed explicit setting of SUBDIRS. SUBDIRS is now
16096 set exclusively by configure, using configure.in .
16097
16098 Wed Jan 6 13:44:11 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16099
16100 * test-build.mk: set $PATH for all builds
16101
16102 * Makefile.in: pass TARGET_FLAGS_TO_PASS for xiberty and libm
16103
16104 Wed Jan 6 11:02:10 1993 Fred Fish (fnf@cygnus.com)
16105
16106 * Makefile.in (GCC_FOR_TARGET): Supply a default that matches
16107 the one used in gcc/Makefile.in, so that a null expansion doesn't
16108 override the one needed to build gcc with a native cc.
16109
16110
16111 Tue Jan 5 07:55:12 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
16112
16113 * configure: Accept -with arguments.
16114
16115 Sun Jan 3 15:15:09 1993 Steve Chamberlain (sac@thepub.cygnus.com)
16116
16117 * Makefile.in: added h8300sim
16118
16119 Tue Dec 29 15:06:00 1992 Ian Lance Taylor (ian@cygnus.com)
16120
16121 * build-all.mk: If canonhost is i386-unknown-sco3.2v4, change it
16122 to i386-sco3.2v4. Set TARGETS and CFLAGS for i386-sco3.2v4.
16123 (all-cygnus, native, build-cygnus): Make
16124 $(canonhost)-stamp-3stage-done, not $(host)....
16125 * test-build.mk (stamp-3stage-compared): Use tail +10c for
16126 i386-sco3.2v4. Added else true to if command.
16127
16128 Mon Dec 28 12:08:56 1992 Ken Raeburn (raeburn@cygnus.com)
16129
16130 * config.sub: (from FSF) Sequent uses a BSD-like OS.
16131
16132 Mon Dec 28 08:32:06 1992 Minh Tran-Le (mtranle@paris.intellicorp.com)
16133
16134 * configure.in (i[34]86-*-isc*): added; uses mh-sysv.
16135
16136 Thu Dec 24 17:26:24 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16137
16138 * configure.in: don't remove binutils from Solaris builds
16139
16140 Thu Dec 24 14:08:38 1992 david d`zoo' zuhn (zoo@cygnus.com)
16141
16142 * Makefile.in: get rid of earlier definitions for *clean,
16143 also handle the recursive info rule better
16144
16145 Thu Dec 24 12:40:21 1992 Per Bothner (bothner@rtl.cygnus.com)
16146
16147 * Makefile.in (mostlyclean, distclean, realclean): Fix to
16148 do more-or-less the right thing.
16149
16150 Wed Dec 16 10:25:31 1992 Ian Lance Taylor (ian@cygnus.com)
16151
16152 * Makefile.in: Add lines defining CC and CXX, and use CXX rather
16153 than gcc in definitions of CXX_FOR_BUILD and CXX_FOR_TARGET.
16154
16155 Tue Dec 15 00:34:32 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16156
16157 * Makefile.in: change all $(host_cpu)-$(host_vendor)-$(host_os) to
16158 $(host_canonical).
16159
16160 * configure.in: split the configdirs list into 4 categories (native
16161 v. cross, library v. tool) and handle the cross-only and native-
16162 only in more reasonable (and correct!) way.
16163
16164 Mon Dec 14 17:04:22 1992 Stu Grossman (grossman at cygnus.com)
16165
16166 * configure.in (hppa*-*-*): Don't remove bfd and gdb from
16167 configdirs anymore.
16168
16169 Sun Dec 13 00:37:26 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16170
16171 * Makefile.in: extensive cleanup:: removed all of the explicit
16172 clean-* targets, collapsed many wrappers around subdir_do into
16173 one, added additional targets to satisfy standards.texi, deleted
16174 some old targets, some changes for consistency
16175
16176 Fri Dec 11 20:18:02 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16177
16178 * configure.in: handle some programs as cross-only, and others as
16179 native only
16180
16181 * test-build.mk: handle partial holes in a more generic manner
16182
16183 * Makefile.in: m4 depends on libiberty
16184
16185 Thu Dec 3 21:52:11 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16186
16187 * configure.in: add m4, textutils, fileutils, sed, shellutils,
16188 time, wdiff, and find to configdirs
16189
16190 * Makefile.in: all, clean, and install rules for the new programs
16191 added to configure.in
16192
16193 Mon Nov 30 14:54:34 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16194
16195 * configure.in: use mh-sun for all *-sun-* hosts
16196
16197 Fri Nov 27 18:35:54 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16198
16199 * Makefile.in: define flags for X11 include files and library file
16200 locations, pass them down to the programs that need this info
16201
16202 * build-all.mk: added a 'native' target, to 3stage the native toolchain
16203
16204 Sun Nov 22 18:59:13 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16205
16206 * configure.in: start building libg++ for HP-UX targets
16207
16208 Wed Nov 18 19:33:11 1992 John Gilmore (gnu@cygnus.com)
16209
16210 * README: Update references to files moved into etc/.
16211
16212 Sun Nov 15 09:36:08 1992 Fred Fish (fnf@cygnus.com)
16213
16214 * config.sub (i386sol2, i486sol2): i[34]86-unknown-solaris2.
16215 * configure.in (i[34]86-*-solaris2*): Use config/mh-sysv4.
16216
16217 Thu Nov 12 08:50:42 1992 Ian Lance Taylor (ian@cygnus.com)
16218
16219 * configure: accept dash as well as underscore in long option
16220 names for FSF compatibility.
16221
16222 Wed Nov 11 08:04:37 1992 Ian Lance Taylor (ian@cygnus.com)
16223
16224 * config.sub: added -sco3.2v4 support from FSF.
16225
16226 Sun Nov 8 21:14:30 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16227
16228 * configure.in: expand the section that adds or removes
16229 directories from the list of programs to build, to handle native
16230 vs. cross in addition to host v. native
16231
16232 Sat Nov 7 18:52:27 1992 Per Bothner (bothner@rtl.cygnus.com)
16233
16234 * Makefile.in: Replace C++ in macro names with CXX.
16235 This is less likely to break ...
16236
16237 Sat Nov 7 15:16:58 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16238
16239 * test-build.mk: add -w to GNU_MAKE
16240
16241 Fri Nov 6 23:10:37 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16242
16243 * config.sub: remove 'sparc'-->'sparc-sun' default transformation,
16244 add 'sparc' to list of recognized cpus. This needed to make
16245 'sparc-aout' expand to 'sparc-unknown-aout' instead of 'sparc-sun-aout'.
16246 Delete some redundant ose68 variants. Recognize -wrs as an os,
16247 then changes that into $CPU-wrs-vxworks.
16248
16249 * configure.in: remove most references to gdbtest, regularize
16250 target based program removal
16251
16252 * test-build.mk: import from p3 tree (many fixes and changes)
16253
16254 Fri Nov 6 20:59:00 1992 david d `zoo' zuhn (zoo@cygnus.com)
16255
16256 * Makefile.in: added rules to handle tcl, tk, and expect
16257
16258 * configure.in: handle those directories if they exist
16259
16260 Thu Nov 5 14:35:41 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16261
16262 * config.sub: removed bogus hppabsd and hppahpux names, since
16263 "hppa" is not a valid cpu (hppa1.1 or hppa1.0 are, though)
16264
16265 Thu Oct 29 00:12:41 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16266
16267 * Makefile.in: all-gcc now depends on all-binutils. all-libg++
16268 depends upon all-xiberty
16269
16270 * Makefile.in: changes from p3, including:
16271
16272 Thu Oct 8 15:00:17 1992 Ian Lance Taylor (ian@cygnus.com)
16273
16274 * Makefile.in (XTRAFLAGS): include newlib directories if
16275 newlib/Makefile exists, rather than if host != target.
16276
16277 Fri Sep 25 13:41:52 1992 Ian Lance Taylor (ian@cygnus.com)
16278
16279 * Makefile.in: added -nostdinc to XTRAFLAGS if we are using gcc
16280 from the same source tree and not building a cross-compiler. This
16281 matters for the libg++ configuration if reconfiguring a tree that
16282 has already been installed.
16283
16284 Thu Sep 10 10:35:51 1992 Ian Lance Taylor (ian@cygnus.com)
16285
16286 * Makefile.in: added -I for newlib/targ-include to XTRAFLAGS, to
16287 pick up the machine and system specific header files.
16288
16289 * Makefile.in: added AS_FOR_TARGET, passed down in
16290 TARGET_FLAGS_TO_PASS. Added CC_FOR_BUILD, which is intended to be
16291 the C compiler to use to create programs which are run in the
16292 build environment, set it to default to $(CC), and passed it down
16293 in FLAGS_TO_PASS and TARGET_FLAGS_TO_PASS.
16294
16295 Mon Sep 7 22:34:42 1992 Ian Lance Taylor (ian@cirdan.cygnus.com)
16296
16297 * Makefile.in: add $(host) = $(target) tests back to *_FOR_TARGET.
16298 We need them for unusual native builds, like systems without
16299 ranlib.
16300
16301 * configure: also define $(host_canonical) and
16302 $(target_canonical), which are the full, canonical names for the
16303 given host and target
16304
16305 Sun Nov 1 16:38:17 1992 Per Bothner (bothner@cygnus.com)
16306
16307 * Makefile.in: Added separate definitions for C++.
16308
16309 Fri Oct 30 11:37:52 1992 Fred Fish (fnf@cygnus.com)
16310
16311 * configure.in (configdirs): Add deja-gnu.
16312
16313 Fri Oct 23 00:39:18 1992 John Gilmore (gnu@cygnus.com)
16314
16315 * README: Update for configure.texi and gdb-4.7 release.
16316
16317 Wed Oct 21 21:54:27 1992 John Gilmore (gnu@cygnus.com)
16318
16319 * Makefile.in: Move "all" target to top of file.
16320 Previously, first target was ".PHONY" which caused BSD4.4 make
16321 to build .PHONY when make was run without arguments.
16322
16323 Mon Oct 19 01:17:54 1992 John Gilmore (gnu@cygnus.com)
16324
16325 * Makefile.in: Add COPYING.LIB to GDB releases, now that there's
16326 Library-copylefted code in libiberty.
16327
16328 Tue Oct 13 01:22:32 1992 John Gilmore (gnu@cygnus.com)
16329
16330 * config.sub: Replace m68kmote with plain old m68k.
16331
16332 Fri Oct 9 03:14:24 1992 John Gilmore (gnu@cygnus.com)
16333
16334 * Makefile.in: Remove space from blank line, avoid Make complaints.
16335
16336 Thu Oct 8 18:41:45 1992 Ken Raeburn (raeburn@cygnus.com)
16337
16338 * config.sub: Complain if no argument is given. Added support for
16339 386bsd as OS and target alias.
16340
16341 Thu Oct 8 15:07:22 1992 Ian Lance Taylor (ian@cygnus.com)
16342
16343 * Makefile.in (XTRAFLAGS): include newlib directories if
16344 newlib/Makefile exists, rather than if host != target.
16345
16346 Mon Oct 5 03:00:09 1992 Mark Eichin (eichin at tweedledumber.cygnus.com)
16347
16348 * config.sub: recognize sparclite-wrs-vxworks.
16349
16350 * Makefile.in (install-xiberty): added *-xiberty make rules (from
16351 p3.) Added clean-xiberty to clean.
16352
16353 Thu Oct 1 17:59:19 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16354
16355 * configure.in: use *-*-* instead of nested cases for host and target
16356
16357 Tue Sep 29 14:11:18 1992 Ian Lance Taylor (ian@cygnus.com)
16358
16359 * Makefile.in: added -nostdinc to XTRAFLAGS if we are using gcc
16360 from the same source tree and not building a cross-compiler. This
16361 matters for the libg++ configuration if reconfiguring a tree that
16362 has already been installed.
16363
16364 Sep 20 08:53:10 1992 Fred Fish (fnf@cygnus.com)
16365
16366 * config.sub (i486v/i486v4): Merge in from FSF version.
16367
16368 Fri Sep 18 00:32:00 1992 Mark Eichin (eichin@cygnus.com)
16369
16370 * configure: only set PWD if it is already set.
16371
16372 Thu Sep 17 23:05:53 1992 Mark Eichin (eichin@cygnus.com)
16373
16374 * configure: just set PWD=`pwd` at the top, since Ultrix sh
16375 doesn't have unset and all success paths (and most error paths)
16376 out set it anyway. (Note: should change all uses of ${PWD=`pwd`}
16377 to just ${PWD} to avoid confusion.)
16378
16379 Tue Sep 15 16:00:54 1992 Ian Lance Taylor (ian@cygnus.com)
16380
16381 * configure: always set $(tooldir) to $(libdir)/$(target_alias),
16382 even for a native compilation.
16383
16384 Tue Sep 15 02:22:56 1992 John Gilmore (gnu@cygnus.com)
16385
16386 Changes to make the gdb.tar.Z rule work better.
16387
16388 * Makefile.in (GDB_SUPPORT_DIRS): Add opcodes.
16389 (DEVO_SUPPORT): Add configure.texi.
16390 (bfd-ilrt.tar.Z): Remove ancient rule.
16391
16392 Thu Sep 10 10:43:19 1992 Ian Lance Taylor (ian@cygnus.com)
16393
16394 * Makefile.in: added -I for newlib/targ-include to XTRAFLAGS, to
16395 pick up the machine and system specific header files.
16396
16397 * configure.in, config.sub: added new target m68010-adobe-scout,
16398 with alias of adobe68k. Changed configure.in to check for
16399 -scout before -sco* to avoid a false match.
16400
16401 * Makefile.in: added AS_FOR_TARGET, passed down in
16402 TARGET_FLAGS_TO_PASS. Added CC_FOR_BUILD, which is intended to be
16403 the C compiler to use to create programs which are run in the
16404 build environment, set it to default to $(CC), and passed it down
16405 in FLAGS_TO_PASS and TARGET_FLAGS_TO_PASS.
16406
16407 Wed Sep 9 12:21:42 1992 Ian Lance Taylor (ian@cygnus.com)
16408
16409 * Makefile.in: added TARGET_FLAGS_TO_PASS, CC_FOR_TARGET,
16410 AR_FOR_TARGET, RANLIB_FOR_TARGET, NM_FOR_TARGET. Pass
16411 TARGET_FLAGS_TO_PASS, which defines CC, AR, RANLIB and NM as the
16412 FOR_TARGET variants, to newlib and libg++.
16413
16414 Tue Sep 8 17:28:30 1992 Ken Raeburn (raeburn@cambridge.cygnus.com)
16415
16416 * Makefile.in (all-gas, all-gdb): Require all-opcodes to be built
16417 first.
16418
16419 Wed Sep 2 02:50:05 1992 John Gilmore (gnu@cygnus.com)
16420
16421 * config.sub: Accept `elf' as an environment.
16422
16423 Tue Sep 1 15:48:30 1992 Steve Chamberlain (sac@thepub.cygnus.com)
16424
16425 * Makefile.in (all-opcodes): cd into the right directory
16426
16427 Sun Aug 30 21:12:11 1992 Ian Lance Taylor (ian@cygnus.com)
16428
16429 * configure: added -program_transform_name option, used as
16430 argument to sed when installing programs.
16431 configure.texi: added documentation for -program_prefix,
16432 -program_suffix and -program_transform_name.
16433
16434 Thu Aug 27 21:59:44 1992 John Gilmore (gnu@cygnus.com)
16435
16436 * config.sub: Accept i486 where i386 ok.
16437
16438 Thu Aug 27 13:04:42 1992 Brendan Kehoe (brendan@rtl.cygnus.com)
16439
16440 * config.sub: accept we32k
16441
16442 Mon Aug 24 14:05:14 1992 Ian Lance Taylor (ian@cygnus.com)
16443
16444 * config.sub, configure.in: accept OSE68000 and OSE68k.
16445
16446 * Makefile.in: don't create all directories for ``make install'';
16447 let the subdirectories create the ones they need.
16448
16449 Tue Aug 11 23:13:17 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16450
16451 * COPYING: new file, GPL v2
16452
16453 Tue Aug 4 01:12:43 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16454
16455 * Makefile.in: use the new gen-info-dir, which needs a template
16456 argument (which also lives in texinfo)
16457
16458 * configure.texi, standards.texi: fix INFO-DIR-ENTRY
16459
16460 Mon Aug 3 00:34:17 1992 Fred Fish (fnf@cygnus.com)
16461
16462 * config.sub (ncr3000): Change i386 to i486.
16463
16464 Thu Jul 23 00:12:17 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16465
16466 * Makefile.in: add install-rcs, install-grep to
16467 install-no-fixedincludes, removed install-bison and install-libgcc
16468
16469 Tue Jul 21 01:01:50 1992 david d `zoo' zuhn (zoo@cygnus.com)
16470
16471 * configure.in: grab the HPUX makefile fragment if on HPUX
16472
16473 Mon Jul 20 11:02:09 1992 D. V. Henkel-Wallace (gumby@cygnus.com)
16474
16475 * Makefile.in: eradicate bison spoor (ditto libgcc).
16476 configure.in: recognise m68{k,000}-ericsson-OSE.
16477 es1800 is alias for m68k-ericsson-OSE
16478
16479 Sun Jul 19 17:49:02 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16480
16481 * configure.in: rearrange the parts that remove programs from
16482 configdirs, based now on HOST==TARGET or by canonical triple.
16483
16484 Fri Jul 17 22:52:49 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16485
16486 * test-build.mk: recurse explicitly with -f test-build.mk when
16487 appropriate. predicate stage3 and comparison on the existence
16488 of gcc. That is, if gcc isn't around, we aren't three-staging.
16489 On very clean, also remove ...stamp-co. Build in-place before
16490 doing other builds.
16491
16492 Thu Jul 16 18:33:09 1992 Steve Chamberlain (sac@thepub.cygnus.com)
16493
16494 * Makefile.in, configure.in: add tgas
16495
16496 Thu Jul 16 16:05:28 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16497
16498 * Makefile.in: a number of changes merged in from progressive.
16499
16500 * configure.in: add libm.
16501
16502 * .cvsignore: ignore some stuff that comes from test-build.mk.
16503
16504 Tue Jul 7 00:24:52 1992 Fred Fish (fnf@cygnus.com)
16505
16506 * config.sub: Add es1800 (m68k-ericsson-es1800).
16507
16508 Tue Jun 30 20:24:41 1992 D. V. Henkel-Wallace (gumby@cygnus.com)
16509
16510 * configure: Add program_suffix (parallel to program_prefix)
16511 * Makefile.in: adjust directory-creating script for losing decstation
16512
16513 Mon Jun 22 23:43:48 1992 Per Bothner (bothner@cygnus.com)
16514
16515 * configure: Minor $subdir-related fixes.
16516
16517 Mon Jun 22 18:30:26 1992 Steve Chamberlain (sac@thepub.cygnus.com)
16518
16519 * configure: fix various problems with propogating
16520 makefile_target_frag in subdirs.
16521 * configure.in: config libgcc if its there
16522
16523 Fri Jun 19 15:19:40 1992 Stu Grossman (grossman at cygnus.com)
16524
16525 * config.sub: HPPA merge.
16526
16527 Sun Jun 14 10:29:19 1992 John Gilmore (gnu at cygnus.com)
16528
16529 * Makefile.in: Replace all-bison with all-byacc in all
16530 dependency lines for other tools (which now use byacc).
16531
16532 Fri Jun 12 22:21:57 1992 John Gilmore (gnu at cygnus.com)
16533
16534 * config.sub: Add sun4sol2 => sparc-sun-solaris2.
16535
16536 Thu Jun 4 12:07:32 1992 Mark Eichin (eichin@cygnus.com)
16537
16538 * Makefile.in: make gprof rules similar to byacc rules (instead of
16539 vestigal $(unsubdir) that didn't work...)
16540
16541 Thu Jun 4 00:37:05 1992 Per Bothner (bothner@rtl.cygnus.com)
16542
16543 * config.sub: Add support for Linux.
16544 * Makefile.in: Use $(FLAGS_TO_PASS) more consistently
16545 (at least for libg++).
16546
16547 Tue Jun 02 20:03:00 1992 david d `zoo' zuhn (zoo@cygnus.com)
16548
16549 * configure.texi: fix doc for the -nfp option to configure
16550
16551 Tue Jun 2 17:20:52 1992 Michael Tiemann (tiemann@cygnus.com)
16552
16553 * Makefile.in (all-binutils): ar needs flex, so depend on all-flex.
16554
16555 Sun May 31 15:04:08 1992 Mark Eichin (eichin at cygnus.com)
16556
16557 * config.sub: changed [^-]+ to [^-][^-]* so that it works under
16558 Sun sed. (BSD 4.3 sed doesn't handle [^-]+ either.)
16559 * configure.in: added solaris* host_makefile_frag hook.
16560
16561 Sun May 31 01:10:34 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16562
16563 * config.sub: changed recognition of m68000 so that various
16564 m68k types can be specified via m680[01234]0
16565
16566 Sat May 30 21:01:06 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16567
16568 * config.sub (basic_machine): fix sed so that '-foo' isn't
16569 completely substituted out while .+'-foo' loses the '-foo'
16570
16571 Wed May 27 23:18:52 1992 Michael Tiemann (tiemann@rtl.cygnus.com)
16572
16573 * config.sub ($os): Add -aout.
16574
16575 Fri May 22 14:00:02 1992 Per Bothner (bothner@cygnus.com)
16576
16577 * configure: If host_makefile_frag is absolute, don't
16578 prefix ${invsubdir} (relevant to libg++ auto-configure).
16579
16580 Thu May 21 18:00:09 1992 Michael Tiemann (tiemann@rtl.cygnus.com)
16581
16582 * Makefile.in (tooldir): Define it.
16583 (all-ld): Depend on all-flex.
16584
16585 Sun May 10 21:45:59 1992 Per Bothner (bothner@rtl.cygnus.com)
16586
16587 * Makefile.in (check): Fix libg++ special case.
16588
16589 Fri May 8 08:31:41 1992 K. Richard Pixley (rich@cygnus.com)
16590
16591 * configure: do not bury `pwd` into config.status, thus do fewer
16592 pwd's.
16593
16594 * configure: print the "Building in" message only when building in
16595 other than "." AND verbose.
16596
16597 * configure: remove -s, rework -v to better accomodate guested
16598 configures.
16599
16600 * standards.texi: updated to 3 may, fixed librid <-> libdir typo.
16601
16602 Fri May 1 18:00:50 1992 K. Richard Pixley (rich@cygnus.com)
16603
16604 * Makefile.in: macroize flags passed on recursion. remove
16605 fileutils.
16606
16607 Thu Apr 30 08:56:20 1992 K. Richard Pixley (rich@cygnus.com)
16608
16609 * configure: get makesrcdir right for subdirs deeper than 1.
16610
16611 * Makefile.in: pass INSTALL, INSTALL_DATA, INSTALL_PROGRAM on
16612 install.
16613
16614 Fri Apr 24 15:51:51 1992 K. Richard Pixley (rich@cygnus.com)
16615
16616 * Makefile.in: don't print subdir_do or recursion lines.
16617
16618 Fri Apr 24 15:22:04 1992 K. Richard Pixley (rich@cygnus.com)
16619
16620 * standards.texi: added menu item.
16621
16622 * Makefile.in: build and install standards.info.
16623
16624 * standards.texi: new file.
16625
16626 Wed Apr 22 18:06:55 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16627
16628 * configure: test for and move config.status pieces from
16629 ${subdir}/.
16630
16631 Wed Apr 22 14:38:34 1992 Fred Fish (fnf@cygnus.com)
16632
16633 * configure: Test for existance of files before trying to mv
16634 them, to avoid numerous non-existance messages.
16635
16636 Tue Apr 21 12:31:33 1992 K. Richard Pixley (rich@cygnus.com)
16637
16638 * configure: correct final line of config.status.
16639
16640 * configure: patch from eggert. Avoids a protection problem if
16641 the original Makefile.in is read only.
16642
16643 * configure: use move-if-change from gcc to create config.status.
16644 Some makefiles depend on config.status to tell if a directory
16645 has been reconfigured for a different host. This change
16646 prevents those directories from remaking everything in the case
16647 where the reconfig was only intended to rebuild a Makefile.
16648
16649 * configure: test for config.sub with "config.sub sun4" rather
16650 than "config.sub ${host_alias}". Otherwise we can't tell a bad
16651 host alias from a missing config.sub.
16652
16653 Mon Apr 20 18:16:36 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16654
16655 * Makefile.in: explicitly pass CFLAGS on recursion. no longer pass
16656 MINUS_G (this can be done with CFLAGS). Default CFLAGS to -g.
16657
16658 Fri Apr 17 18:27:51 1992 Per Bothner (bothner@cygnus.com)
16659
16660 * configure: mkdir ${subdir} as needed.
16661
16662 Wed Apr 15 17:37:22 1992 K. Richard Pixley (rich@cygnus.com)
16663
16664 * Makefile.in,configure.in: added autoconf.
16665
16666 Wed Apr 15 17:27:34 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16667
16668 * Makefile.in: no longer pass against on recursion.
16669
16670 * Makefile.in: added .NOEXPORT: so that stray makefile_frag
16671 definitions are not inherited.
16672
16673 * configure: correct makesrcdir when subdir is .
16674
16675 Tue Apr 14 11:56:09 1992 Per Bothner (bothner@cygnus.com)
16676
16677 * configure: Add support for 'subdirs' variable, which is
16678 like 'configdirs', except that configure doesn't re-invoke
16679 itself for subdirs, it just creates a Makefile for each subdir.
16680 * configure.texi: Document subdirs.
16681
16682 Mon Apr 13 18:50:16 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16683
16684 * configure.in: added flex to configdirs
16685
16686 Mon Apr 13 18:43:55 1992 K. Richard Pixley (rich@cygnus.com)
16687
16688 * Makefile.in: remove clean-stamps from clean.
16689
16690 Sat Apr 11 03:52:03 1992 John Gilmore (gnu at cygnus.com)
16691
16692 * configure.in: Add gdbtest to configdirs.
16693
16694 Fri Apr 10 23:11:49 1992 Fred Fish (fnf@cygnus.com)
16695
16696 * Makefile.in (MINUS_G): Add macro, default to -g, pass on
16697 to recursive makes.
16698 * configure.in: Recognize new ncr3000 config.
16699
16700 Wed Apr 8 23:08:12 1992 K. Richard Pixley (rich@cygnus.com)
16701
16702 * Makefile.in, configure.in: removed references to gdbm.
16703
16704 Tue Apr 7 16:48:20 1992 Per Bothner (bothner@cygnus.com)
16705
16706 * config.sub: Don't canonicalize os value
16707 newsos* to bsd (readline needs to check for newsos).
16708 (This fix was earlier made Jan 31, but got re-broken.)
16709
16710 Mon Apr 6 14:34:08 1992 Stu Grossman (grossman at cygnus.com)
16711
16712 * configure.in: sco is an os, not a vendor!
16713
16714 * configure: Quote $( better. Keep various shells happy.
16715
16716 Tue Mar 31 16:32:57 1992 K. Richard Pixley (rich@cygnus.com)
16717
16718 * Makefile.in: eliminate stamp-files.
16719
16720 Mon Mar 30 22:20:23 1992 K. Richard Pixley (rich@cygnus.com)
16721
16722 * Makefile.in: add send_pr. remove "force" from .stmp-gprof rule.
16723 Supress echoing of all the "if [ -d ... $(MAKE)" lines.
16724
16725 Wed Mar 25 15:20:04 1992 Stu Grossman (grossman@cygnus.com)
16726
16727 * config.sub: fix iris/iris3.
16728
16729 Wed Mar 25 10:34:19 1992 K. Richard Pixley (rich@cygnus.com)
16730
16731 * configure: re-add -rm.
16732
16733 Tue Mar 24 23:50:16 1992 K. Richard Pixley (rich@cygnus.com)
16734
16735 * Maskefile.in: add .stmp-rcs to all.
16736
16737 * configure.in: remove gas from rs6000 build, use aix host fragment.
16738
16739 Mon Mar 23 19:43:35 1992 K. Richard Pixley (rich@cygnus.com)
16740
16741 * configure: pass down site_option during recursion.
16742
16743 Thu Mar 19 16:49:36 1992 Stu Grossman (grossman at cygnus.com)
16744
16745 * Makefile.in (all.cross): Add .stmp-bfd .stmp-readline.
16746
16747 Wed Mar 18 15:29:33 1992 Mike Stump (mrs@cygnus.com)
16748
16749 * configure: Change exec_prefix so that it really defaults to prefix.
16750
16751 Sat Mar 14 17:20:38 1992 Fred Fish (fnf@cygnus.com)
16752
16753 * Makefile.in, configure.in: Add support for mmalloc library.
16754
16755 Fri Mar 13 18:44:18 1992 K. Richard Pixley (rich@cygnus.com)
16756
16757 * Makefile.in: add stmp dependencies for a few more things.
16758
16759 Thu Mar 12 04:56:24 1992 K. Richard Pixley (rich@cygnus.com)
16760
16761 * configure: adjusted error message on objdir/srcdir configure
16762 collision, per john's suggestion.
16763
16764 * Makefile.in: add libiberty stmp to all and all.cross.
16765
16766 Wed Mar 11 02:07:52 1992 K. Richard Pixley (rich@cygnus.com)
16767
16768 * Makefile.in: remove force dependencies, add grep to all.
16769
16770 Tue Mar 10 21:49:18 1992 K. Richard Pixley (rich@mars.cygnus.com)
16771
16772 * Makefile.in: drop flex. make stamp files work.
16773
16774 * configure: added test for conflicting configuration in srcdir,
16775 remove trailing slashes from srcdir. Otherwise emacs gdb mode
16776 gets cranky. use relative paths for configure and srcdir
16777 whenever possible. Send some error messages to stderr that were
16778 going to stdout.
16779
16780 Tue Mar 10 18:01:55 1992 Per Bothner (bothner@cygnus.com)
16781
16782 * Makefile.in: Fix libg++ rule to check for gcc directory
16783 before using gcc/gcc. Also pass XTRAFLAGS.
16784
16785 Thu Mar 5 21:45:07 1992 K. Richard Pixley (rich@sendai)
16786
16787 * Makefile.in: added stmp-files so that directories aren't polled
16788 when they are already built.
16789
16790 * configure.texi: fixed a node pointer problem.
16791
16792 Thu Mar 5 12:05:58 1992 Stu Grossman (grossman at cygnus.com)
16793
16794 * config.sub configure.in gdb/configure.in
16795 gdb/mips-tdep.c gdb/mipsread.c gdb/procfs.c gdb/signame.h
16796 gdb/tm-irix3.h gdb/tm-mips.h gdb/xm-irix4.h gdb/config/mt-irix3
16797 gdb/config/mh-irix4 texinfo/configure.in: Port to SGI Irix-4.x.
16798
16799 Wed Mar 4 02:57:46 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16800
16801 * configure: -recurring becomes -silent. corrected help message
16802 for -site= option.
16803
16804 * Makefile.in: mkdir $(exec_prefix) and $(tooldir).
16805
16806 Tue Mar 3 14:51:21 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16807
16808 * configure: when building Makefile for crosses, replace
16809 tooldir and program_prefix. default srcdir from location of
16810 config.sub. remove "for host in hosts" and "for target in
16811 targets" loops.
16812
16813 Wed Feb 26 19:48:25 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16814
16815 * Makefile.in: Do not pass bindir or mandir to cvs.
16816
16817 Wed Feb 26 18:04:40 1992 K. Richard Pixley (rich@cygnus.com)
16818
16819 * Makefile.in, configure.in: removed traces of namesubdir,
16820 -subdirs, $(subdir), $(unsubdir), some rcs triggers. Forced
16821 copyrights to '92, changed some from Cygnus to FSF.
16822
16823 * configure.texi: remove most references to multiple hosts,
16824 multiple targets, subdirs, etc.
16825
16826 * configure.man: removed rcsid. reference config.sub not
16827 config.subr.
16828
16829 * Makefile.in: mkdir $(infodir) on install-info.
16830
16831 Wed Feb 19 15:41:13 1992 John Gilmore (gnu at cygnus.com)
16832
16833 * configure.texi: Explain better about .gdbinit and about
16834 the environment that configure.in sections run in.
16835
16836 Fri Feb 7 07:55:00 1992 John Gilmore (gnu at cygnus.com)
16837
16838 * configure.in: Ultrix is only a decstation if it's a MIPS.
16839
16840 Fri Jan 31 21:54:51 1992 John Gilmore (gnu at cygnus.com)
16841
16842 * README: DOC.configure => cfg-paper.texi.
16843
16844 Fri Jan 31 21:48:18 1992 Stu Grossman (grossman at cygnus.com)
16845
16846 * config.sub (near case $os): Don't convert newsos* to bsd!
16847
16848 Fri Jan 31 02:27:32 1992 John Gilmore (gnu at cygnus.com)
16849
16850 * Makefile.in: Reinstall change from gdb-4.3 that reduces
16851 the number of copies of COPYING that go into the GDB tar file.
16852
16853 Thu Jan 30 16:17:30 1992 Stu Grossman (grossman at cygnus.com)
16854
16855 * bfd/configure.in, gdb/config/mh-i386sco,
16856 gdb/config/mt-i386v32, gdb/configure.in, readline/configure.in:
16857 Fix SCO configuration stuff.
16858
16859 Tue Jan 28 23:51:07 1992 Per Bothner (bothner at cygnus.com)
16860
16861 * Makefile.in: For libg++, make sure the -I pointing
16862 to the gcc directory goes *after* all the libg++-local -I flags.
16863 Also, move just-gcc dependency from just-libg++ to all-libg++.
16864
16865 Tue Jan 28 12:56:24 1992 Stu Grossman (grossman at cygnus.com)
16866
16867 * configure: Change -x to -f to keep Ultrix /bin/test happy.
16868
16869 Sat Jan 18 17:45:11 1992 Stu Grossman (grossman at cygnus.com)
16870
16871 * Makefile.in (make-gdb.tar.Z): Remove texinfo targets.
16872
16873 Sat Jan 18 17:03:21 1992 Fred Fish (fnf at cygnus.com)
16874
16875 * config.sub: Add stratus configuration frags. Also
16876 submitted to FSF.
16877
16878 Sat Jan 18 15:35:29 1992 Stu Grossman (grossman at cygnus.com)
16879
16880 * Makefile.in (DEV_SUPPORT): add configure.man.
16881
16882 * config.sub(Decode manufacturer-specific): add -none*.
16883
16884 Fri Jan 17 17:58:05 1992 Stu Grossman (grossman at cygnus.com)
16885
16886 * Makefile.in: remove form feeds to make Sun's make happy.
16887 (DEVO_SUPPORT): DOC.configure => cfg-paper.texi.
16888
16889 Sat Jan 4 16:11:44 1992 John Gilmore (gnu at cygnus.com)
16890
16891 * Makefile.in (AR_FLAGS): Make quieter.
16892
16893 Thu Jan 2 22:57:12 1992 John Gilmore (gnu at cygnus.com)
16894
16895 * configure.in: Add libg++.
16896 * configure: When verbose, don't output the command line at each
16897 level; it will be unremarkably the same as the previous version,
16898 which will be the same as what the user typed.
16899
16900 Fri Dec 27 16:26:47 1991 K. Richard Pixley (rich at cygnus.com)
16901
16902 * configure.in, Makefile.in: fix clean-info, add flex. add
16903 fileutils.
16904
16905 * configure: be less sensitive to spaces in Makefile.in. Do not
16906 look for sources in "..". Doing so breaks subdirectories that
16907 might have their own configure. If a subdir has it's own
16908 configure script, use it.
16909
16910 Thu Dec 26 16:30:26 1991 K. Richard Pixley (rich at cygnus.com)
16911
16912 * cfg-paper.texi: some changes suggested by rms.
16913
16914 Thu Dec 26 10:13:36 1991 Fred Fish (fnf at cygnus.com)
16915
16916 * config.sub: Merge in some small additions from the FSF version,
16917 taken from the gcc distribution, to bring the Cygnus and FSF
16918 versions into closer sync.
16919
16920 Fri Dec 20 11:34:18 1991 Fred Fish (fnf at cygnus.com)
16921
16922 * configure.in: Changed svr4 references to sysv4.
16923
16924 Thu Dec 19 15:54:29 1991 K. Richard Pixley (rich at cygnus.com)
16925
16926 * configure: added -V for version number option.
16927
16928 Wed Dec 18 15:39:34 1991 K. Richard Pixley (rich at cygnus.com)
16929
16930 * DOC.configure, cfg-paper.texi: revised, updated, and texinfo'd.
16931 renamed from DOC.configure to cfg-paper.texi.
16932
16933 Mon Dec 16 23:05:19 1991 K. Richard Pixley (rich at rtl.cygnus.com)
16934
16935 * configure, config.subr, config.sub: config.subr is now
16936 config.sub again.
16937
16938 Fri Dec 13 01:17:06 1991 K. Richard Pixley (rich at cygnus.com)
16939
16940 * configure.texi: new file, in progress.
16941
16942 * Makefile.in: build info file and install the man page for
16943 configure.
16944
16945 * configure.man: new file, first cut.
16946
16947 * configure: find config.subr again now that configuration "none"
16948 has gone. removed all traces of the -ansi option. removed all
16949 traces of the -languages option.
16950
16951 * config.subr: resync from rms.
16952
16953 1991-12-11 K. Richard Pixley (rich at rtl.cygnus.com)
16954
16955 * configure, config.sub, config.subr: merge config.sub into
16956 config.subr, call the result config.subr, remove config.sub, use
16957 config.subr.
16958
16959 * Makefile.in: revised install for dir.info.
16960
16961 1991-12-10 K. Richard Pixley (rich at rtl.cygnus.com)
16962
16963 * configure.in: add decstation host makefile frag.
16964
16965 * Makefile.in: BISON now bison -y again. also install-gcc on
16966 install. clean-gdbm on clean. infodir belongs in datadir.
16967 Make directories for info install. Build dir.info here then
16968 install it.
16969
16970 1991-12-09 K. Richard Pixley (rich at rtl.cygnus.com)
16971
16972 * Makefile.in: fix for bad directory tests.
16973
16974 1991-12-07 K. Richard Pixley (rich at rtl.cygnus.com)
16975
16976 * configure: \{1,2\} appears to be a sysv'ism. Use a different
16977 regexp. -srcdir relative was being handled incorrectly.
16978
16979 * Makefile.in: unwrapped some for loops so that parallel makes
16980 work again and so one can focus one's attention on a particular
16981 package.
16982
16983 1991-12-06 K. Richard Pixley (rich at rtl.cygnus.com)
16984
16985 * configure: added PWD as a stand in for `pwd` (for speed). use
16986 elif wherever possible. make -srcdir work without -objdir.
16987 -objdir= commented out.
16988
16989 1991-12-05 K. Richard Pixley (rich at rtl.cygnus.com)
16990
16991 * configure: +options become --options. -subdirs commented out.
16992 added -host, -datadir. Renamed -destdir to -prefix. Comment in
16993 Makefile now at top of generated Makefile. Removed cvs log
16994 entries. added -srcdir. create .gdbinit only if there is one
16995 in ${srcdir}.
16996
16997 * Makefile.in: idestdir and ddestdir go away. Added copyrights
16998 and shift gpl to v2. Added ChangeLog if it didn't exist. docdir
16999 and mandir now keyed off datadir by default.
17000
17001 1991-11-22 K. Richard Pixley (rich at rtl.cygnus.com)
17002
17003 * Freshly created ChangeLog.
17004
17005 \f
17006 Local Variables:
17007 mode: change-log
17008 left-margin: 8
17009 fill-column: 76
17010 version-control: never
17011 End: