]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - ChangeLog
gdb: add compunit_symtab::set_primary_filetab method
[thirdparty/binutils-gdb.git] / ChangeLog
CommitLineData
a74e1cb3
NC
12022-01-22 Nick Clifton <nickc@redhat.com>
2
3 * 2.38 release branch created.
4
6c037fdb
NC
52022-01-17 Nick Clifton <nickc@redhat.com>
6
7 Update config.[guess|sub] from upstream:
8
9 2022-01-09 Idan Horowitz <idan.horowitz@gmail.com>
10
11 config.guess: recognize SerenityOS
12 * config.guess (*:SerenityOS:*:*): Recognize.
13 (timestamp): Update.
14
15 2022-01-03 Bernhard Voelker <mail@bernhard-voelker.de>
16
17 Fix GPLv3 license headers to use a comma instead of semicolon
18 See: https://www.gnu.org/licenses/gpl-3.0.html#howto
19
20 Update license headers automatically using the following script:
21
22 $ git grep -l 'Foundation; either version 3' \
23 | xargs sed -i '/Foundation; either version 3/ s/n; e/n, e/'
24
25 * config.guess: Adjust via the above command.
26 (timestamp): Update.
27 * config.sub: Likewise.
28 * doc/config.guess.1: Regenerate.
29 * doc/config.sub.1: Likewise.
30
31 2022-01-01 Dmitry V. Levin <ldv@altlinux.org>
32
33 Update copyright years
34 * config.guess: Update copyright years.
35 * config.sub: Likewise.
36
37 2021-12-25 Dmitry V. Levin <ldv@altlinux.org>
38
39 config.sub: alias armh to armv7l
40 ALT uses armh as an alias for armv7l-alt-linux-gnueabihf since 2012.
41
42 * config.sub (armh-unknown|armh-alt): Set cpu, vendor, and basic_os.
43 (timestamp): Update.
44
45 2021-12-24 Dmitry V. Levin <ldv@altlinux.org>
46
47 config.sub: alias aarch64le to aarch64
48 Apparently, QNX reports aarch64 as aarch64le on little-endian machines.
49
50 * config.sub (aarch64le-*): Set cpu to aarch64.
51 (timestamp): Update.
52
53 2021-12-13 Dmitry V. Levin <ldv@altlinux.org>
54
55 config.sub: fix typo in timestamp
56 * config.sub: Fix timestamp.
57
58 2021-11-30 Andreas F. Borchert <github@andreas-borchert.de>
59
60 config.guess: x86_64-pc-solaris2.11 is not properly recognized
61 config.guess guesses Solaris 11 to run on a 32-bit platform
62 despite Solaris 11 no longer supporting any 32-bit platform.
63
64 See the following code at lines 434 to 445:
65
66 | SUN_ARCH=i386
67 | # If there is a compiler, see if it is configured for 64-bit objects.
68 | # Note that the Sun cc does not turn __LP64__ into 1 like gcc does.
69 | # This test works for both compilers.
70 | if test "$CC_FOR_BUILD" != no_compiler_found; then
71 | if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \
72 | (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \
73 | grep IS_64BIT_ARCH >/dev/null
74 | then
75 | SUN_ARCH=x86_64
76 | fi
77 | fi
78
79 If "cc" is installed, i.e. the Oracle Studio compiler, this one is
80 chosen for $CC_FOR_BUILD. This compiler, the gcc provided by Oracle
81 and also gcc bootstrapped from sources on that platform with a default
82 configuration will by default generate 32-bit binaries -- even on
83 a 64-bit platform. And __amd64 will not be defined for compilations
84 targeting a 32-bit platform. This is different from the corresponding
85 behaviour on GNU/Linux systems where the local platform is targeted by
86 default.
87
88 Thus, as long as you do not add "-m64" or if you have a custom-built
89 gcc which defaults to 64 bit, you will get 32-bit binaries on Solaris
90 despite living on a 64-bit platform.
91
92 * config.guess (i86pc:SunOS:5.*:* || i86xen:SunOS:5.*:*): Adapt the
93 test by adding the "-m64" flag. This will work properly for Solaris
94 10 as well (the last Solaris release that supported x86 32-bit
95 platforms).
96
97 2021-10-27 Jordi Sanfeliu <jordi@fibranet.cat>
98
99 Recognize Fiwix
100 $ make check
101 cd testsuite && bash config-guess.sh && rm uname
102 PASS: config.guess checks (137 tests)
103 cd testsuite && bash config-sub.sh
104 PASS: config.sub checks (882 tests)
105 PASS: config.sub idempotency checks (819 tests)
106 PASS: config.sub canonicalise each config.guess testcase (137 tests)
107
108 * config.guess (i*86:Fiwix:*:*): Recognize.
109 * config.sub (fiwix*): Likewise.
110
111 2021-10-18 Kinshuk Dua <kinshukdua@gmail.com>
112
113 config.sub: Fix typo in comment
114 Fixes: 5e531d391852a54e7fab2d8ff55625fca514b305
115
116 2021-08-14 Nick Bowler <nbowler@draconx.ca>
117
118 config.sub: work around command assignment bug in some shells
119 When combining variable assignments with a shell command, some older
120 shells (notably heirloom-sh and presumably also Solaris 10 /bin/sh)
121 have a bug which causes the assignment to alter the current execution
122 environment whenever the command is a shell built-in. For example:
123
124 % dash -c 'x=good; x=bad echo >/dev/null; echo $x'
125 good
126
127 % jsh -c 'x=good; x=bad echo >/dev/null; echo $x'
128 bad
129
130 The config.sub script contains a few commands of the form:
131
132 IFS=- read ...
133
134 which triggers this bug, causing the IFS assignment to persist for the
135 remainder of the script. This can cause misbehaviour in certain cases,
136 for example:
137
138 % jsh config.sub i386-linux-gnu
139 config.sub: test: unknown operator gnu
140
141 % jsh config.sub i386-gnu/linux
142 sed: can't read s|gnu/linux|gnu|: No such file or directory
143 Invalid configuration `i386-gnu/linux': OS `' not recognized
144
145 * config.sub: Save and restore IFS explicitly to avoid shell bugs.
146 * doc/config.sub.1: Regenerate.
147
148 2021-08-04 Jeremy Soller <jackpot51@gmail.com>
149
150 config.sub: add Linux Relibc Target
151 $ make check
152 cd testsuite && bash config-guess.sh && rm uname
153 PASS: config.guess checks (136 tests)
154 cd testsuite && bash config-sub.sh
155 PASS: config.sub checks (881 tests)
156 PASS: config.sub idempotency checks (818 tests)
157 PASS: config.sub canonicalise each config.guess testcase (136 tests)
158
159 * config.sub (relibc*): Recognize.
160 * doc/config.sub.1: Regenerate.
161 * testsuite/config-sub.data (x86_64-linux-relibc): New test.
162
163 2021-07-06 Stephanos Ioannidis <root@stephanos.io>
164
165 config.sub: add Zephyr RTOS support
166 This adds the Zephyr RTOS targets in preparation for implementing the
167 Zephyr RTOS-specific toolchain support.
168
169 $ make check
170 cd testsuite && bash config-guess.sh && rm uname
171 PASS: config.guess checks (136 tests)
172 cd testsuite && bash config-sub.sh
173 PASS: config.sub checks (880 tests)
174 PASS: config.sub idempotency checks (817 tests)
175 PASS: config.sub canonicalise each config.guess testcase (136 tests)
176
177 * config.sub (zephyr*): Recognize.
178 * doc/config.sub.1: Regenerate.
179 * testsuite/config-sub.data: Add testcases for *-zephyr.
180
181 2021-07-03 Ozkan Sezer <sezero@users.sourceforge.net>
182
183 config.sub: disable shellcheck SC2006 / SC2268 warnings
184 This is in line with the recent config.guess change in commit
185 12fcf67c9108f4c4b581eaa302088782f0ee40ea
186
187 * config.sub (shellcheck disable): Add SC2006,SC2268.
188
189 Suggested-by: Jacob Bachmeyer <jcb@gnu.org>
190
191 2021-07-03 Ozkan Sezer <sezero@users.sourceforge.net>
192
193 config.sub: normalize the quoting in the `echo FOO | sed ...`
194 Some cases quote the argument to echo and some do not. At runtime
195 it probably does not matter because the substituted values will never
196 contain whitespace, but quoting them all would make shellcheck more
197 useful.
198
199 * config.sub: Consistently quote the argument of echo.
200 * doc/config.sub.1: Regenerate.
201
202 Suggested-by: Jacob Bachmeyer <jcb@gnu.org>
203
204 2021-07-02 Ozkan Sezer <sezero@users.sourceforge.net>
205
206 config.sub: replace POSIX $( ) with classic ` ` throughout
207 This is in line with the recent config.guess change in commit
208 d70c4fa934de164178054c3a60aaa0024ed07c91.
209
210 The patch was generated using patch-6.gawk script introduced in that
211 commit.
212
213 * config.sub: Revert POSIX command substitutions to classic form.
214
215 2021-06-04 Vineet Gupta <Vineet.Gupta1@synopsys.com>
216
217 Recognize arc32
218 This is the 32-bit variant of ARCv3 ISA (which is not compatible with the
219 32-bit ARCv2 ISA)
220
221 | make check
222 | cd testsuite && bash config-guess.sh && rm uname
223 | PASS: config.guess checks (136 tests)
224 | cd testsuite && bash config-sub.sh
225 | PASS: config.sub checks (864 tests)
226 | PASS: config.sub idempotency checks (801 tests)
227 | PASS: config.sub canonicalise each config.guess testcase (136 tests)
228
229 * config.guess (arc32:Linux:*:*): Recognize.
230 * config.sub (arc32): Likewise.
231
232 2021-05-27 Jacob Bachmeyer <jcb@gnu.org>
233
234 Remove automatic patch generators
235 These tools have served their purposes and need not be kept outside of
236 the repository history any longer. This patch as a diff also collects
237 the contents of the various tools in one convenient place.
238
239 * patch-1.gawk: Remove.
240 * patch-3.gawk: Likewise.
241 * patch-6.gawk: Likewise.
242
243 2021-05-26 Jacob Bachmeyer <jcb@gnu.org>
244
245 config.guess: manual fixups after previous automatic patch
246 The tool could not handle command substitutions that span lines, but
247 fortunately there were only two such substitutions in the script.
248
249 The test for which universe is active on Pyramid is rewritten into a
250 case block because it was the only use of a command substitution as an
251 argument to the test command, which would require quoting.
252
253 * config.guess: Rewrite "if" for Pyramid systems to "case".
254
255 2021-05-26 Jacob Bachmeyer <jcb@gnu.org>
256
257 config.guess: replace POSIX $( ) with classic ` ` throughout
258 The previous replacement of backticks with POSIX command substitutions
259 was ill-considered and illogical: this script recognizes many archaic
260 machine types that probably never had POSIX shells, therefore it needs
261 to be able to run successfully under pre-POSIX shells.
262
263 This patch was generated using the included GNU Awk program.
264
265 * config.guess: Revert POSIX command substitutions to classic form.
266 * patch-6.gawk: Store the tool that produced the automated patch.
267
268 2021-05-26 Jacob Bachmeyer <jcb@gnu.org>
269
270 config.guess: manual fixup after previous automated patches
271 This patch provides the special handling for the GNU system. As these
272 were two small and unique edits, they were not included in the scripts.
273
274 This patch also cleans up other minor issues that must be addressed
275 before reverting to classic command substitutions and updates
276 "shellcheck" directives to account for changes in this script and the
277 change in "shellcheck" towards reporting individual portability issues.
278
279 2021-05-26 Jacob Bachmeyer <jcb@gnu.org>
280
281 config.guess: automatic fixups after previous automated patch
282 This patch was generated using the following command:
283
284 sed -i config.guess \
285 -e '/="[^"]\+"\(-\|$\)/s/="\([^"([:space:])]\+\)"/=\1/' \
286 -e '/="[^"]\+"[[:alnum:]]/s/="\$\([^([:space:])]\+\)"/=${\1}/' \
287 -e \
288 '/\$(echo[^|]\+|/s/\([^[:space:]]\)[[:space:]]*|[[:space:]]*sed/\1 | sed/g'
289
290 * config.guess: Remove unneeded quotes in other variable assignments,
291 standardize spacing for "echo ... | sed" substitutions.
292
293 2021-05-26 Jacob Bachmeyer <jcb@gnu.org>
294
295 config.guess: remove unneeded quotes and factor command substitutions
296 This is further cleanup and simplifies some constructs that can confuse
297 Emacs' syntax highlighting while generally reducing required quoting.
298
299 This patch was generated using the included GNU Awk program.
300
301 * config.guess: Remove unneeded variable quotes and factor out command
302 substitutions when setting GUESS.
303 * patch-3.gawk: Store the tool that produced the automated patch.
304
305 2021-05-25 Jacob Bachmeyer <jcb@gnu.org>
306
307 config.guess: manual fixups after previous automatic patch
308 * config.guess: Adjust a few "leftover" cases that the tool could not
309 easily recognize and fixes comment indentation in a few other special
310 cases.
311
312 2021-05-25 Jacob Bachmeyer <jcb@gnu.org>
313
314 config.guess: use intermediate variable with uname results
315 This will allow quoting to be significantly simplified in another
316 pass through the file.
317
318 This patch was generated using the included GNU Awk program.
319
320 * config.guess: Use GUESS variable to hold results of uname analysis.
321 * patch-1.gawk: Store the tool that produced the automated patch.
322
323 2021-05-25 Jacob Bachmeyer <jcb@gnu.org>
324
325 config.guess: introduce intermediate variable with uname results
326 This will allow quoting to be significantly simplified in another
327 pass through the file.
328
329 * config.guess: Introduce GUESS variable to hold results of uname analysis.
330
331 2021-05-24 Dmitry V. Levin <ldv@altlinux.org>
332
333 config.guess: fix shellcheck warning SC2154
334 While, according to Plan 9 documentation, the environment variable
335 $cputype is set to the name of the kernel's CPU's architecture,
336 shellcheck warns that cputype is referenced but not assigned.
337 Be on the safe side and do not use cputype if it is not defined
338 or empty.
339
340 * config.guess (*:Plan9:*:*): Fix shellcheck warning SC2154.
341
342 2021-05-24 Dmitry V. Levin <ldv@altlinux.org>
343
344 config.guess: remove redundant quotes in case commands
345 According to the GNU Autoconf Portable Shell Programming manual,
346 the Bourne shell does not systematically split variables and back-quoted
347 expressions, in particular on the right-hand side of assignments and in
348 the argument of 'case'.
349
350 The change is made automatically using the following command:
351 $ sed -E -i 's/(\<case )"(\$[^"]+)"( in\>)/\1\2\3/' config.guess
352
353 * config.guess: Simplify case commands by removing quotes around the
354 argument.
355
356 Suggested-by: Jacob Bachmeyer <jcb@gnu.org>
357
358 2021-05-24 Dmitry V. Levin <ldv@altlinux.org>
359
360 config.guess: simplify exit status workaround on alphaev67-dec-osf5.1
361 Commit 29865ea8a5622cdd80b7a69a0afa78004b4cd311 introduced an exit trap
362 reset before exiting to avoid a spurious non-zero exit status on
363 alphaev67-dec-osf5.1. Simplify that code a bit by moving the exit trap
364 reset around.
365
366 * config.guess (alpha:OSF1:*:*): Reset exit trap earlier.
367 * doc/config.guess.1: Regenerate.
368
91b7c7e5
EL
3692021-10-29 Eli Zaretskii <eliz@gnu.org>
370
371 * gdb/doc/gdb.texinfo (Command Options): (Data): Document
372 '-memory-tag-violations'. Update the example.
373
890026e3
AB
3742021-09-28 Andrew Burgess <andrew.burgess@embecosm.com>
375
376 * src-release.sh (GDB_SUPPPORT_DIRS): Add libbacktrace.
377
bef9ef8c
NA
3782021-09-27 Nick Alcock <nick.alcock@oracle.com>
379
380 PR libctf/27967
381 * libtool.m4 (LT_PATH_NM): Try BSDization flags with a user-provided
382 NM, if there is one. Run nm on itself, not on /dev/null, to avoid
383 errors from nms that refuse to work on non-regular files. Remove
384 other workarounds for this problem. Strip out blank lines from the
385 nm output.
386
bc4b1401
NA
3872021-09-27 Nick Alcock <nick.alcock@oracle.com>
388
389 PR libctf/27967
390 * libtool.m4 (lt_cv_sys_global_symbol_pipe): Augment symcode for
391 Solaris 11.
392
51419248
NC
3932021-07-03 Nick Clifton <nickc@redhat.com>
394
395 * 2.37 release branch created.
396
20c4b12e
NC
3972021-07-03 Nick Clifton <nickc@redhat.com>
398
399 * libiberty: Sync with gcc. Bring in:
400 2021-06-30 Gerald Pfeifer <gerald@pfeifer.com>
401
402 * make-temp-file.c (usrtmp): Remove.
403 (choose_tmpdir): Remove use of usrtmp.
404
405 2021-06-28 Indu Bhagat <indu.bhagat@oracle.com>
406
407 * simple-object.c (handle_lto_debug_sections): Copy over .BTF section.
408
409 2021-06-28 Indu Bhagat <indu.bhagat@oracle.com>
410 David Faust <david.faust@oracle.com>
411 Jose E. Marchesi <jose.marchesi@oracle.com>
412 Weimin Pan <weimin.pan@oracle.com>
413
414 * simple-object.c (handle_lto_debug_sections): Copy over .ctf
415 sections.
416
417 2021-06-05 John David Anglin <danglin@gcc.gnu.org>
418
419 PR target/100734
420 * configure.ac: Use libiberty snprintf and vsnprintf on
421 hppa*-*-hpux*.
422 * configure: Regenerate.
423
424 2021-05-06 Tom Tromey <tom@tromey.com>
425
426 * hashtab.c (htab_eq_string): New function.
427
428 2021-05-04 Eric Botcazou <ebotcazou@adacore.com>
429
430 * configure.ac: Make test for variables more robust.
431 * configure: Regenerate.
432
433 2021-05-03 H.J. Lu <hjl.tools@gmail.com>
434
435 PR bootstrap/99703
436 * configure: Regenerated.
437
438 2021-04-21 Andreas Schwab <schwab@linux-m68k.org>
439
440 PR demangler/100177
441 * rust-demangle.c (demangle_const_char): Properly print the
442 character value.
443
444 2021-03-31 Patrick Palka <ppalka@redhat.com>
445
446 PR c++/88115
447 * cp-demangle.c (d_dump, d_make_comp, d_expression_1)
448 (d_count_templates_scopes): Handle DEMANGLE_COMPONENT_VENDOR_EXPR.
449 (d_print_comp_inner): Likewise.
450 <case DEMANGLE_COMPONENT_EXTENDED_OPERATOR>: Revert r11-4926
451 change.
452 <case DEMANGLE_COMPONENT_UNARY>: Likewise.
453 * testsuite/demangle-expected: Adjust __alignof__ tests.
454
455 2021-03-16 Nick Clifton <nickc@redhat.com>
456
457 * sha1.c (sha1_process_bytes): Use memmove in place of memcpy.
458
459 2021-02-20 Mike Frysinger <vapier@gentoo.org>
460
461 * Makefile.in (ACLOCAL, ACLOCAL_AMFLAGS, $(srcdir)/aclocal.m4): Define.
462 (configure_deps): Rename to ...
463 (aclocal_deps): ... this. Replace aclocal.m4 with acinclude.m4.
464 ($(srcdir)/configure): Replace $(configure_deps) with
465 $(srcdir)/aclocal.m4.
466 * aclocal.m4: Move libiberty macros to acinclude.m4, then regenerate.
467 * acinclude.m4: New file.
468 * configure: Regenerate.
469
470 2021-02-19 Ayush Mittal <ayush.m@samsung.com>
471
472 * argv.c (expandargv): free allocated buffer if read fails.
473
474 2021-02-01 Martin Sebor <msebor@redhat.com>
475
476 * dyn-string.c (dyn_string_insert_cstr): Use memcpy instead of strncpy
477 to avoid -Wstringop-truncation.
478
5c9e84c2
MF
4792021-05-29 Mike Frysinger <vapier@gentoo.org>
480
481 * configure.ac: Add gnulib to configdirs for sim.
482 * configure: Regenerate.
483
78a7f576
MR
4842021-05-24 Maciej W. Rozycki <macro@orcam.me.uk>
485
486 * MAINTAINERS: Update path to readline config.{sub,guess} files.
487
2e8adb64
MR
4882021-05-24 Maciej W. Rozycki <macro@orcam.me.uk>
489
490 * config.guess: Import from upstream.
491 * config.sub: Likewise.
492
9cc11ab5
MF
4932021-05-18 Mike Frysinger <vapier@gentoo.org>
494
495 * Makefile.def: Add configure-sim dependency on all-gnulib.
496 * Makefile.in: Regenerated.
497
a8d6316b
NC
4982021-05-04 Nick Clifton <nickc@redhat.com>
499
500 * configure.ac (AC_PROG_CC): Replace with AC_PROG_CC_C99.
501 * configure: Regenerate.
502
755ba58e
NA
5032021-03-18 Nick Alcock <nick.alcock@oracle.com>
504
505 PR libctf/27482
506 * Makefile.def: Add install-bfd dependencies for install-libctf and
507 install-ld, and install-strip-bfd dependencies for
508 install-strip-libctf and install-strip-ld; move the install-ld
509 dependency on install-libctf to join it.
510 * Makefile.in: Regenerated.
511
367c5eb7
MF
5122021-03-12 Mike Frysinger <vapier@gentoo.org>
513
514 * Makefile.def: Remove all-sim dependency on configure-gdb.
515 * Makefile.in: Regenerated.
516
1dbde357
L
5172021-02-28 H.J. Lu <hongjiu.lu@intel.com>
518
519 PR binutils/26766
520 * Makefile.tpl (PGO_BUILD_TRAINING_FLAGS_TO_PASS): Add
521 PGO_BUILD_TRAINING=yes.
522 (PGO_BUILD_TRAINING_MFLAGS): New.
523 (all): Pass $(PGO_BUILD_TRAINING_MFLAGS) to the PGO build.
524
a57d1773
AM
5252021-02-09 Alan Modra <amodra@gmail.com>
526
527 * configure.ac: Delete arm*-*-symbianelf* entry.
528 * configure: Regenerate.
529
f04ce15e
NA
5302021-01-26 Nick Alcock <nick.alcock@oracle.com>
531
532 * Makefile.def: Add install-libctf dependency to install-ld.
533 * Makefile.in: Regenerated.
534
3034143d
MF
5352021-01-12 Mike Frysinger <vapier@gentoo.org>
536
537 * src-release.sh (do_proto_toplev): Rewrite indentation.
538
44124a46
L
5392021-01-11 H.J. Lu <hongjiu.lu@intel.com>
540
541 PR binutils/26766
542 * configure.ac:
543 * configure: Regenerated.
544
03c02f31
L
5452021-01-11 H.J. Lu <hongjiu.lu@intel.com>
546
547 PR ld/27173
548 * configure: Regenerated.
549 * libtool.m4 (_LT_CMD_OLD_ARCHIVE): Check if AR works with
550 --plugin and rc before enabling --plugin.
551
af019bfd
L
5522021-01-09 H.J. Lu <hongjiu.lu@intel.com>
553
554 PR binutils/26766
555 * Makefile.tpl (BUILD_CFLAGS): New.
556 (CFLAGS): Append $(BUILD_CFLAGS).
557 (CXXFLAGS): Likewise.
558 (PGO_BUILD_GEN_FLAGS_TO_PASS): New.
559 (PGO_BUILD_TRAINING_CFLAGS): Likewise.
560 (PGO_BUILD_TRAINING_CXXFLAGS): Likewise.
561 (PGO_BUILD_TRAINING_FLAGS_TO_PASS): Likewise.
562 (PGO_BUILD_TRAINING_MFLAGS): Likewise.
563 (PGO_BUILD_USE_FLAGS_TO_PASS): Likewise.
564 (PGO-TRAINING-TARGETS): Likewise.
565 (PGO_BUILD_TRAINING): Likewise.
566 (all): Add '+' to the command line for recursive make. Support
567 the PGO build.
568 * configure.ac: Add --enable-pgo-build[=lto].
569 AC_SUBST PGO_BUILD_GEN_CFLAGS, PGO_BUILD_USE_CFLAGS and
570 PGO_BUILD_LTO_CFLAGS. Enable the PGO build in Makefile.
571 * Makefile.in: Regenerated.
572 * configure: Likewise.
573
50ad1254
L
5742021-01-09 H.J. Lu <hongjiu.lu@intel.com>
575
576 * Makefile.tpl (AR): Add @AR_PLUGIN_OPTION@
577 (RANLIB): Add @RANLIB_PLUGIN_OPTION@.
578 * configure.ac: Include config/gcc-plugin.m4.
579 AC_SUBST AR_PLUGIN_OPTION and RANLIB_PLUGIN_OPTION.
580 * libtool.m4 (_LT_CMD_OLD_ARCHIVE): Pass --plugin to AR and
581 RANLIB if possible.
582 * Makefile.in: Regenerated.
583 * configure: Likewise.
584
055bc77a
NC
5852021-01-09 Nick Clifton <nickc@redhat.com>
586
587 * 2.36 release branch crated.
588
f4782128
ST
5892021-01-07 Samuel Thibault <samuel.thibault@gnu.org>
590
591 * libtool.m4: Match gnu* along with other GNU systems.
592
16062162
AM
5932021-01-07 Alan Modra <amodra@gmail.com>
594
595 * config.sub: Accept OS of eabi* and gnueabi*.
596
c59e30ed
NA
5972021-01-05 Nick Alcock <nick.alcock@oracle.com>
598
599 * Makefile.def (libctf): No longer no_check. Checking depends on
600 all-ld.
601 * Makefile.in: Regenerated.
602
d750c713
NC
6032021-01-05 Nick Clifton <nickc@redhat.com>
604
605 * libiberty: Sync with gcc. Bring in:
606 2021-01-04 Martin Liska <mliska@suse.cz>
607
608 * strverscmp.c: Convert to utf8 from iso8859.
609
610 2020-12-22 Jason Merrill <jason@redhat.com>
611
612 PR c++/67343
613 * cp-demangle.h (struct d_info): Add unresolved_name_state.
614 * cp-demangle.c (d_prefix): Add subst parm.
615 (d_nested_name): Pass it.
616 (d_unresolved_name): Split out from...
617 (d_expression_1): ...here.
618 (d_demangle_callback): Maybe retry with old sr mangling.
619 * testsuite/demangle-expected: Add test.
620
621 2020-12-21 Jason Merrill <jason@redhat.com>
622
623 * cp-demangle.c (d_expression_1): Recognize qualified-id
624 on RHS of dt/pt.
625 * testsuite/demangle-expected: Add test.
626
627 2020-12-21 Jason Merrill <jason@redhat.com>
628
629 * cp-demangle.c (d_unqualified_name): Clear is_expression.
630 * testsuite/demangle-expected: Add tests.
631
632 2020-11-25 Matthew Malcomson <matthew.malcomson@arm.com>
633
634 * configure: Regenerate.
635 * configure.ac: Avoid using sanitizer.
636
637 2020-11-13 Eduard-Mihai Burtescu <eddyb@lyken.rs>
638
639 * rust-demangle.c (struct rust_demangler): Add
640 skipping_printing and bound_lifetime_depth fields.
641 (eat): Add (v0-only).
642 (parse_integer_62): Add (v0-only).
643 (parse_opt_integer_62): Add (v0-only).
644 (parse_disambiguator): Add (v0-only).
645 (struct rust_mangled_ident): Add punycode{,_len} fields.
646 (parse_ident): Support v0 identifiers.
647 (print_str): Respect skipping_printing.
648 (print_uint64): Add (v0-only).
649 (print_uint64_hex): Add (v0-only).
650 (print_ident): Respect skipping_printing,
651 Support v0 identifiers.
652 (print_lifetime_from_index): Add (v0-only).
653 (demangle_binder): Add (v0-only).
654 (demangle_path): Add (v0-only).
655 (demangle_generic_arg): Add (v0-only).
656 (demangle_type): Add (v0-only).
657 (demangle_path_maybe_open_generics): Add (v0-only).
658 (demangle_dyn_trait): Add (v0-only).
659 (demangle_const): Add (v0-only).
660 (demangle_const_uint): Add (v0-only).
661 (basic_type): Add (v0-only).
662 (rust_demangle_callback): Support v0 symbols.
663 * testsuite/rust-demangle-expected: Add v0 testcases.
664
665 2020-11-13 Seija Kijin <doremylover456@gmail.com>
666
667 * strstr.c (strstr): Make implementation ANSI/POSIX compliant.
668
669 2020-11-11 Patrick Palka <ppalka@redhat.com>
670
671 PR c++/88115
672 * cp-demangle.c (d_print_comp_inner)
673 <case DEMANGLE_COMPONENT_EXTENDED_OPERATOR>: Don't print the
674 "operator " prefix for __alignof__.
675 <case DEMANGLE_COMPONENT_UNARY>: Always print parens around the
676 operand of __alignof__.
677 * testsuite/demangle-expected: Test demangling for __alignof__.
678
679 2020-11-09 Christophe Lyon <christophe.lyon@linaro.org>
680
681 * pex-win32.c (pex_win32_exec_child): Initialize orig_err.
682
683 2020-10-06 Martin Liska <mliska@suse.cz>
684
685 PR lto/97290
686 * simple-object-elf.c (simple_object_elf_copy_lto_debug_sections):
687 Use sh_link of a .symtab_shndx section.
688
5f8c2a15
AM
6892021-01-05 Alan Modra <amodra@gmail.com>
690
691 * config.guess: Import from upstream.
692 * config.sub: Likewise.
693
d6f26c9d
ML
6942020-12-16 Martin Liska <mliska@suse.cz>
695 Tom de Vries <tdevries@suse.de>
696
697 * gdb/debuginfod-support.c (struct user_data): Remove has_printed
698 field. Add meter field.
699 (progressfn): Print progress using meter.
700
7ddfb1a8
EL
7012020-12-02 Enze Li <lienze2010@hotmail.com>
702
703 * .gitignore: Add gnu global outputs.
704
12bf6525
SM
7052020-12-02 Simon Marchi <simon.marchi@polymtl.ca>
706
707 * .gitignore: Sync with gcc.
708
ce04ca31
AR
7092020-10-26 Andreas Rammhold <andreas@rammhold.de>
710
711 * src-release.sh: Use sha256sum instead of md5sum.
712
ba4d88ad
AB
7132020-10-14 Andrew Burgess <andrew.burgess@embecosm.com>
714
715 * Makefile.in: Rebuild.
716 * Makefile.def: Make distclean-gnulib depend on distclean-gdb and
717 distclean-gdbserver.
718
f6720b1c
AM
7192020-07-24 Aaron Merey <amerey@redhat.com>
720
f6720b1c
AM
721 * configure: Rebuild.
722 * configure.ac: Remove AC_DEBUGINFOD.
723
b115b9fd
NC
7242020-07-04 Nick Clifton <nickc@redhat.com>
725
726 Binutils 2.35 branch created.
727
11104e42
SC
7282020-04-21 Stephen Casner <casner@acm.org>
729
730 PR 25830
731 * configure.ac (noconfigdirs): Exclude gdb & gprof for pdp11.
732 * configure: Rebuild.
733
4635ff97
TT
7342020-03-12 Tom Tromey <tom@tromey.com>
735
736 * Makefile.in: Rebuild.
737 * Makefile.def (gdbserver): Depend on gdbsupport.
738
21329136
TT
7392020-03-12 Tom Tromey <tom@tromey.com>
740
741 * Makefile.in: Rebuild.
742 * Makefile.def (gdbsupport): Don't depend on bfd.
743
9a665d62
TT
7442020-03-12 Tom Tromey <tom@tromey.com>
745
746 * Makefile.in: Rebuild.
747 * Makefile.def (gdbsupport): Depend on intl.
748
b6f9caee
TT
7492020-02-17 Tom Tromey <tom@tromey.com>
750
751 * configure: Rebuild.
752 * configure.ac (configdirs): Add gnulib and gdbsupport when building
753 gdbserver.
754
1a627e7e
TT
7552020-02-14 Tom Tromey <tom@tromey.com>
756
757 * Makefile.in: Rebuild.
758 * Makefile.def: Make gdbserver require gnulib and libiberty.
759
919adfe8
TT
7602020-02-07 Tom Tromey <tom@tromey.com>
761 Pedro Alves <palves@redhat.com>
762
763 * src-release.sh (GDB_SUPPORT_DIRS): Add gdbserver.
764 * gdbserver: New directory, moved from gdb/gdbserver.
765 * configure.ac (host_tools): Add gdbserver.
766 Only build gdbserver on certain systems.
767 * Makefile.in, configure: Rebuild.
768 * Makefile.def (host_modules, dependencies): Add gdbserver.
769 * MAINTAINERS: Add gdbserver.
770
fc1ca146
SDJ
7712020-01-28 Sergio Durigan Junior <sergiodj@redhat.com>
772
773 * src-release.sh (getver): Look for gdbsupport's
774 create-version.sh script at the current directory if tool is
775 "gdb".
776
cf1d9e09
SM
7772020-01-19 Simon Marchi <simon.marchi@polymtl.ca>
778
779 * remote-sim.c (gdbsim_target::wait): Return
780 sim_data->remote_sim_ptid instead of inferior_ptid.
781
ae774686
NC
7822020-01-18 Nick Clifton <nickc@redhat.com>
783
784 Binutils 2.34 branch created.
785
4fb3a8da
NC
7862020-01-18 Nick Clifton <nickc@redhat.com>
787
788 Synchronize top level configure files with master version:
789
790 2020-01-01 Ben Elliston <bje@gnu.org>
791
792 * config.guess: Update copyright years.
793 * config.sub: Likewise.
794
795 2019-12-21 Ben Elliston <bje@gnu.org>
796
797 * config.guess (set_cc_for_build): Prevent multiple calls by
798 checking if $tmp is already set. We can't check CC_FOR_BUILD as
799 the user may set it externally. Thanks to Torbjörn Granlund for
800 the bug report.
801
802 2019-12-21 Torbjörn Granlund <tg@gmplib.org>
803
804 * config.guess (alpha:Linux:*:*): Guard against missing
805 /proc/cpuinfo by redirecting standard error to /dev/null.
806
807 2019-09-12 Daniel Bittman <danielbittman1@gmail.com>
808
809 * config.guess (*:Twizzler:*:*): New.
810 * config.sub (-twizzler*): New.
811
812 2019-07-24 Ben Elliston <bje@gnu.org>
813
814 * config.guess (mips:OSF1:*.*): Whitespace cleanup.
815
816 2019-06-30 Ben Elliston <bje@gnu.org>
817
818 * config.sub (case $os): Match nsk* and powerunix. Don't later
819 match nsk* and set os=nsk which removes the OS version number.
820
821 2019-06-30 Ben Elliston <bje@gnu.org>
822
823 * config.sub: Recognise os108*.
824
825 2019-06-26 Ben Elliston <bje@gnu.org>
826
827 * config.sub (hp300): Set $os to hpux.
828
829 2019-06-26 Ben Elliston <bje@gnu.org>
830
831 * config.sub (vsta): Move into alphabetical order.
832
833 2019-06-10 Ben Elliston <bje@gnu.org>
834
835 * config.guess (*:OS108:*:*): Recognise new OS.
836
837 2019-05-28 Ben Elliston <bje@gnu.org>
838
839 * config.guess (*:Darwin:*:*): Run xcode-select to determine if a
840 system compiler is installed. If not, do not run set_cc_for_build,
841 as the default cc will open a dialog box asking to install
842 Xcode. If no C compiler is available, guess based on uname -p and
843 uname -m.
844
845 2019-05-28 Ben Elliston <bje@gnu.org>
846
847 * config.guess (*:Darwin:*:*): Simplify UNAME_PROCESSOR.
848
c4d3fc14
SM
8492020-01-17 Simon Marchi <simon.marchi@efficios.com>
850
851 * Makefile.def: Add dependencies of all-gdbsupport on all-bfd.
852 * Makefile.in: Re-generate.
853
01027315
TT
8542020-01-14 Tom Tromey <tom@tromey.com>
855
856 * src-release.sh (GDB_SUPPORT_DIRS): Add gdbsupport.
857 * MAINTAINERS: Add gdbsupport.
858 * configure: Rebuild.
859 * configure.ac (configdirs): Add gdbsupport.
860 * gdbsupport: New directory, move from gdb/gdbsupport.
861 * Makefile.def (host_modules, dependencies): Add gnulib.
862 * Makefile.in: Rebuild.
863
abb78b78
AM
8642020-01-09 Aaron Merey <amerey@redhat.com>
865
866 * config/debuginfod.m4: New file. Add macro AC_DEBUGINFOD. Adds
867 new configure option --with-debuginfod.
868 * configure: Regenerate.
869 * configure.ac: Call AC_DEBUGINFOD.
870
cef2097a
CB
8712019-12-26 Christian Biesinger <cbiesinger@google.com>
872
873 * .gitignore: Add perf.data and perf.data.old.
874
95c746cc
SDJ
8752019-10-17 Sergio Durigan Junior <sergiodj@redhat.com>
876
877 * src-release.sh (GDB_SUPPORT_DIRS): Add libctf.
878
a315e147
AM
8792019-10-17 Alan Modra <amodra@gmail.com>
880
881 PR 29
882 * src-release.sh (getver): Replace "head -1" with "head -n 1".
883
87279e3c
NA
8842019-07-30 Nick Alcock <nick.alcock@oracle.com>
885
886 * Makefile.def (host_modules): libctf is no longer no_install.
887 * Makefile.in: Regenerated.
888
1ff6de03
NA
8892019-07-13 Nick Alcock <nick.alcock@oracle.com>
890
891 * Makefile.def (dependencies): all-ld depends on all-libctf.
892 * Makefile.in: Regenerated.
893
60391a25
PB
8942019-09-09 Phil Blundell <pb@pbcl.net>
895
896 binutils 2.33 branch created
897
c1a5d03a
TT
8982019-08-19 Tom Tromey <tom@tromey.com>
899
900 * configure: Rebuild.
901 * configure.ac: Add --with-static-standard-libraries.
902
f211b8c0
NC
9032019-08-09 Nick Clifton <nickc@redhat.com>
904
905 * libiberty: Sync with gcc. Bring in:
906 2019-08-08 Martin Liska <mliska@suse.cz>
907
908 PR bootstrap/91352
909 * lrealpath.c (is_valid_fd): New function.
910
911 2019-07-24 Martin Liska <mliska@suse.cz>
912
913 PR lto/91228
914 * simple-object-elf.c (simple_object_elf_copy_lto_debug_sections):
915 Find first '\0' starting from gnu_lto + 1.
916
917 2019-07-12 Ren Kimura <rkx1209dev@gmail.com>
918
919 * simple-object-elf.c (simple_object_elf_match): Check zero value shstrndx.
920 This fixes a Bug 90924.
921
922 2019-07-22 Martin Liska <mliska@suse.cz>
923
924 * simple-object-elf.c (simple_object_elf_copy_lto_debug_sections):
925 Do not search for gnu_lto_v1, but search for first '\0'.
926
927 2019-07-18 Eduard-Mihai Burtescu <eddyb@lyken.rs>
928
929 * cplus-dem.c: Include rust-demangle.h.
930 * rust-demangle.c: Include rust-demangle.h.
931 * rust-demangle.h: New file.
932
933 2019-05-31 Michael Forney <mforney@mforney.org>
934
935 * cp-demangle.c: Don't define CP_DYNAMIC_ARRAYS if __STDC_NO_VLA__
936 is non-zero.
937
938 2019-04-30 Ben L <bobsayshilol@live.co.uk>
939
940 * d-demangle.c (dlang_parse_assocarray): Correctly handle error result.
941 * testsuite/d-demangle-expected: Add testcase.
942
943 * d-demangle.c (dlang_parse_tuple): Correctly handle error result.
944 * testsuite/d-demangle-expected: Add testcase.
945
946 * d-demangle.c (dlang_parse_structlit): Correctly handle error result.
947 * testsuite/d-demangle-expected: Add testcase.
948
949 * d-demangle.c (dlang_parse_arrayliteral): Correctly handle error result.
950 * testsuite/d-demangle-expected: Add testcase.
951
952 * d-demangle.c (dlang_parse_integer): Fix stack underflow.
953 * testsuite/d-demangle-expected: Add testcase.
954
955 * cp-demangle (d_print_comp_inner): Guard against a NULL 'typed_name'.
956 * testsuite/demangle-expected: Add testcase.
957
958 * cp-demangle.c (d_encoding): Guard against NULL return values from
959 d_right (dc).
960 * testsuite/demangle-expected: Add testcase.
961
962 2019-04-29 Ben L <bobsayshilol@live.co.uk>
963
964 * cp-demangle.c (d_expression_1): Don't peek ahead unless the current
965 char is valid.
966 * testsuite/demangle-expected: Add testcase.
967
968 2019-04-10 Nick Clifton <nickc@redhat.com>
969
970 PR 89394
971 * cp-demangle.c (cplus_demangle_fill_name): Reject negative
972 lengths.
973 (d_count_templates_scopes): Replace num_templates and num_scopes
974 parameters with a struct d_print_info pointer parameter. Adjust
975 body of the function accordingly. Add recursion counter and check
976 that the recursion limit is not reached.
977 (d_print_init): Pass dpi parameter to d_count_templates_scopes.
978 Reset recursion counter afterwards, unless the recursion limit was
979 reached.
980
48b550c2
JB
9812019-07-13 Joel Brobecker <brobecker@adacore.com>
982
983 * src-release (getver): If $tool/gdbsupport/create-version.sh
984 exists, use that to determine the version number.
985
be74b5b7
AS
9862019-06-21 Andreas Schwab <schwab@linux-m68k.org>
987
988 * src-release.sh (GDB_SUPPORT_DIRS): Add gnulib.
989
73cc7272
TT
9902019-06-14 Tom Tromey <tom@tromey.com>
991
992 * MAINTAINERS: Add gnulib.
993 * gnulib: New directory, move from gdb/gnulib.
994 * configure.ac (host_libs): Add gnulib.
995 * configure: Rebuild.
996 * Makefile.def (host_modules, dependencies): Add gnulib.
997 * Makefile.in: Rebuild.
998
79b377b3
NC
9992019-06-03 Nick Clifton <nickc@redhat.com>
1000
1001 Revert:
1002 2019-05-29 Nick Clifton <nickc@redhat.com>
1003
1004 * configure.ac (noconfigdirs): Add libctf if the target does not use
1005 the ELF file format.
1006 * configure: Regenerate.
1007
e33f2313
NC
10082019-05-29 Nick Clifton <nickc@redhat.com>
1009
1010 * src-release.sh (do_proto_toplev): Add libctf to list of
1011 directories that can be disabled.
1012
90bd5423
NC
10132019-05-29 Nick Clifton <nickc@redhat.com>
1014
1015 * configure.ac (noconfigdirs): Add libctf if the target does not use
1016 the ELF file format.
1017 * configure: Regenerate.
1018
9698cf9b
NA
10192019-05-28 Nick Alcock <nick.alcock@oracle.com>
1020
1021 * Makefile.def (dependencies): configure-libctf depends on all-bfd
1022 and all its deps.
1023 * Makefile.in: Regenerated.
1024
88981b15
NA
10252019-05-28 Nick Alcock <nick.alcock@oracle.com>
1026
1027 * MAINTAINERS: Add libctf.
1028
0e65dfba
NA
10292019-05-28 Nick Alcock <nick.alcock@oracle.com>
1030
1031 * Makefile.def (host_modules): Add libctf.
1032 * Makefile.def (dependencies): Likewise.
1033 libctf depends on zlib, libiberty, and bfd.
1034 * Makefile.in: Regenerated.
1035 * configure.ac (host_libs): Add libctf.
1036 * configure: Regenerated.
1037
2376c370
JM
10382019-05-23 Jose E. Marchesi <jose.marchesi@oracle.com>
1039
1040 * config.guess: Synchronize with config project master sources.
1041 * config.sub: Likewise.
1042 * readline/support/config.guess: Likewise.
1043 * readline/support/config.sub: Likewise.
1044
c1202057
NC
10452019-04-10 Nick Clifton <nickc@redhat.com>
1046
1047 * libiberty: Sync with gcc. Bring in:
1048 2019-04-10 Nick Clifton <nickc@redhat.com>
1049
1050 PR 89394
1051 * cp-demangle.c (cplus_demangle_fill_name): Reject negative
1052 lengths.
1053 (d_count_templates_scopes): Replace num_templates and num_scopes
1054 parameters with a struct d_print_info pointer parameter. Adjust
1055 body of the function accordingly. Add recursion counter and check
1056 that the recursion limit is not reached.
1057 (d_print_init): Pass dpi parameter to d_count_templates_scopes.
1058 Reset recursion counter afterwards, unless the recursion limit was
1059 reached.
1060
f974f26c
NC
10612018-06-24 Nick Clifton <nickc@redhat.com>
1062
1063 2.32 branch created.
1064
d63f2be2
RO
10652019-01-14 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
1066
1067 Merge from GCC:
1068 PR target/88535
1069 * config.guess: Import upstream version 2019-01-03.
1070 * config.sub: Import upstream version 2019-01-01.
1071
1910070b
NC
10722019-01-10 Nick Clifton <nickc@redhat.com>
1073
1074 * libiberty: Sync with gcc. Bring in:
1075 2019-01-09 Sandra Loosemore <sandra@codesourcery.com>
1076
1077 PR other/16615
1078
1079 * cp-demangle.c: Mechanically replace "can not" with "cannot".
1080 * floatformat.c: Likewise.
1081 * strerror.c: Likewise.
1082
1083 2018-12-22 Jason Merrill <jason@redhat.com>
1084
1085 Remove support for demangling GCC 2.x era mangling schemes.
1086 * cplus-dem.c: Remove cplus_mangle_opname, cplus_demangle_opname,
1087 internal_cplus_demangle, and all subroutines.
1088 (libiberty_demanglers): Remove entries for ancient GNU (pre-3.0),
1089 Lucid, ARM, HP, and EDG demangling styles.
1090 (cplus_demangle): Remove 'work' variable. Don't call
1091 internal_cplus_demangle.
1092
69961a84
ДП
10932019-01-03 Дилян Палаузов <dilyan.palauzov@aegee.org>
1094
1095 * configure.ac: Don't configure readline if --with-system-readline is
1096 used.
1097 * configure: Re-generate.
1098
b555fb21
JM
10992018-10-31 Joseph Myers <joseph@codesourcery.com>
1100
1101 Merge from GCC:
1102 PR bootstrap/82856
1103 * multilib.am: New file. From automake.
1104
80ca5f98
SDJ
11052018-09-12 Sergio Durigan Junior <sergiodj@redhat.com>
1106
1107 * src-release.sh (GDB_SUPPORT_DIRS): Add "contrib".
1108
0a8288f7
NC
11092018-07-16 Nick Clifton <nickc@redhat.com>
1110
1111 * src-release.sh (DEVO_SUPPORT): Add test-driver and ar-lib.
1112
26996596
SH
11132018-07-06 Sebastian Huber <sebastian.huber@embedded-brains.de>
1114
1115 * config.sub: Sync with upstream version 2018-07-03.
1116
c5244148
SH
11172018-07-05 Sebastian Huber <sebastian.huber@embedded-brains.de>
1118
1119 * config.guess: Sync with upstream version 2018-06-26.
1120 * config.sub: Sync with upstream version 2018-07-02.
1121
4119873a
AO
11222018-06-29 Alexandre Oliva <oliva@adacore.com>
1123
1124 * configure.ac: Introduce support for @unless/@endunless.
1125 * Makefile.tpl (dep-kind): Rewrite with cond; return
1126 postbootstrap in some cases.
1127 (make-postboot-dep, postboot-targets): New.
1128 (dependencies): Do not output postbootstrap dependencies at
1129 first. Output non-target ones changed for configure to depend
1130 on stage_last @if gcc-bootstrap, and the original deps @unless
1131 gcc-bootstrap.
1132 * configure.in, Makefile.in: Rebuilt.
1133
71300e2c
NC
11342018-06-24 Nick Clifton <nickc@redhat.com>
1135
1136 * configure: Regenerate.
1137
d0ac1c44
SM
11382018-06-19 Simon Marchi <simon.marchi@ericsson.com>
1139
1140 * libtool.m4: Use AC_LANG_SOURCE.
1141 * configure.ac: Remove AC_PREREQ, use AC_LANG_SOURCE.
1142 * README-maintainer-mode: Update version requirements.
1143 * ar-lib: New file.
1144 * test-driver: New file.
1145 * configure: Re-generate.
1146
e0541124
EB
11472018-06-18 Eric Botcazou <ebotcazou@adacore.com>
1148
1149 * Makefile.def (fortran): Add check-target-libgomp-fortran.
1150 * Makefile.tpl (check-target-libgomp-fortran): New phony target.
1151 * Makefile.in: Regenerate.
1152
1153 * configure: Regenerate.
1154
db67d458
SM
11552018-06-18 Simon Marchi <simon.marchi@ericsson.com>
1156
1157 * configure.ac: Sync with GCC, remove MPX-related things.
1158
b5778783
NC
11592018-05-01 Nick Clifton <nickc@redhat.com>
1160
1161 * config.guess: Synchronize with config project master sources.
1162 * config.sub: Likewise.
1163
1063beb5
FT
11642018-05-01 Francois H. Theron <francois.theron@netronome.com>
1165
1166 * configure.ac: Added "nfp" target.
1167 * configure: Regenerate.
1168
b29d2641
MR
11692018-02-13 Maciej W. Rozycki <macro@mips.com>
1170
1171 * configure.ac <wasm32-*-*> (noconfigdirs): Add `ld'.
1172 * configure: Regenerate.
1173
52b2f300
NC
11742018-01-30 Nick Clifton <nickc@redhat.com>
1175
1176 * src-release.sh (do_proto_toplev): Add patterns for more junk files
1177 to delete before creating the tarball.
1178
b431b4ea
NC
11792018-01-29 Nick Clifton <nickc@redhat.com>
1180
1181 * src-release.sh (do_proto_toplev): Strip patch remnant files from
1182 the sources before creating the tarball.
1183
19e2900b
NC
11842018-01-13 Nick Clifton <nickc@redhat.com>
1185
1186 * src-release.sh: Update copyright notice. Change reference to devo
1187 to be a reference to root.
1188
bf41f30d
NC
11892018-01-10 Nick Clifton <nickc@redhat.com>
1190
1191 * config-ml.in: Sync with gcc sources.
1192 * config.guess: Likewise.
1193 * config.sub: Likewise.
1194 * configure.ac: Likewise.
7ec0cd50 1195 * configure: Regenerate.
bf41f30d 1196
863f7a5f
NC
11972017-12-14 Nick Clifton <nickc@redhat.com>
1198
1199 * COPYING.LIBGLOSS: Update address of FSF in copyright notice.
1200
638d9137
SH
12012017-12-12 Stafford Horne <shorne@gmail.com>
1202
1203 * configure.ac: Remove logic adding gdb to noconfigsdirs for or1k.
1204 * configure: Regenerate.
1205
ef87240f
NC
12062017-09-15 Nick Clifton <nickc@redhat.com>
1207
1208 * src-release.sh (LZIPPROG): New define. Provides the name of the
1209 lzip program.
1210 (do_lz): New function. Compresses a tarball using the lzip
1211 program.
1212 (do_compress): Add support for lzip compression.
1213 (usage): Mention -l option.
1214 (build_release): Support -l option to invoke lzip compression.
1215
817b7711
AM
12162017-09-15 Alan Modra <amodra@gmail.com>
1217
1218 * src-release.sh (do_proto_toplev): Revert last patch. Enable or
1219 disable binutils, gas, gdb, gold, gprof, ld, libdecnumber, readline,
1220 and sim depending on $tool and $support_files. Echo configure line.
1221
255300f5 12222017-09-14 Matt Rice <ratmice@gmail.com>
1223
1224 * src-release.sh (do_proto_toplev): Enable gold during release process.
1225
8f0dd45f
AJ
12262017-04-13 Andrew Jenner <andrew@codesourcery.com>
1227
1228 * config.sub: Sync with master version in config project.
1229
2f5f29ca
AJ
12302017-04-03 Andrew Jenner <andrew@codesourcery.com>
1231
1232 * config.sub: Handle ia16 in $basic_machine.
1233
1234 bfd/
1235 * config.bfd: Handle ia16.
1236
1237 gas/
1238 * configure.tgt: Handle ia16.
1239
1240 ld/
1241 * configure.tgt: Handle ia16.
1242
11997a83
NC
12432017-03-22 Nick Clifton <nickc@redhat.com>
1244
1245 * config.sub: Sync with master version in config project.
1246 * config.guess: Likewise.
1247
05a13254
NC
12482017-01-23 Nick Clifton <nickc@redhat.com>
1249
1250 * configure.ac: Update year in copyright notice.
1251 Sync from FSF GCC mainline, bringing in the following patches.
1252 * Makefile.def: Likewise.
1253 * Makefile.tpl: Likewise.
1254 * configure: Regenerate.
1255 * Makefile.in: Regenerate.
1256
1257 2016-12-21 Jakub Jelinek <jakub@redhat.com>
1258
1259 * configure.ac: Don't bootstrap libmpx unless --with-build-config
1260 includes bootstrap-mpx.
1261
1262 2016-12-01 Matthias Klose <doko@ubuntu.com>
1263
1264 * configure.ac: Don't use pkg-config to check for bdw-gc.
1265
1266 2016-11-30 Matthias Klose <doko@ubuntu.com>
1267
1268 * Makefile.def: Remove reference to boehm-gc target module.
1269 * configure.ac: Include pkg.m4, check for --with-target-bdw-gc
1270 options and for the bdw-gc pkg-config module.
1271
1272 2016-11-15 Matthias Klose <doko@ubuntu.com>
1273
1274 * config-ml.in: Remove references to GCJ.
1275 * configure.ac: Likewise.
1276
1277 2016-09-30 Jakub Jelinek <jakub@redhat.com>
1278
1279 * configure.ac: Add target-libffi to target_libraries.
1280 Readd libgcj target disablings, modified to only target-libffi.
1281 Readd target addition of go to unsupported languages.
1282
1283 2016-09-30 Andrew Haley <aph@redhat.com>
1284
1285 * Makefile.def: Remove libjava.
1286 * Makefile.tpl: Likewise.
1287 * configure.ac: Likewise.
1288
1289 2016-09-26 Anton Kolesov <Anton.Kolesov@synopsys.com>
1290
1291 * configure.ac: Disable "sim" directory for arc*-*-*.
1292
1293 2016-09-12 Maciej W. Rozycki <macro@imgtec.com>
1294
1295 * configure.ac: Check for the minimum in-tree MPFR version
1296 handled.
1297
3f66c01b
AM
12982016-12-31 Alan Modra <amodra@gmail.com>
1299
1300 * config.sub: Import from upstream.
1301
da17fe9d
AM
13022016-12-08 Alan Modra <amodra@gmail.com>
1303
1304 * configure: Regenerate.
1305
d5451cd4
JC
13062016-12-02 Josh Conner <joshconner@google.com>
1307
1308 * configure.ac: Add fuchsia to targets that use ELF.
1309 * configure: Regenerated.
1310
5ada5c6f
DE
13112016-11-07 Doug Evans <dje@google.com>
1312
1313 * config.sub: Sync with upstream version 2016-11-03.
1314 git://git.sv.gnu.org/config.git
1315 * config.guess: Sync with upstream version 2016-10-02.
1316
07619d52
SM
13172016-09-27 Simon Marchi <simon.marchi@polymtl.ca>
1318
1319 * .gitignore: Add archives and make stamps.
1320
bedbe19c
YTL
13212016-07-20 Yan-Ting Lin <currygt52@gmail.com>
1322
1323 * configure.ac (nds32*-*-*): Remove entry to enable gdb.
1324 * configure: Regenerated.
1325
9abdce70
WL
13262016-06-28 Walter Lee <walt@tilera.com>
1327
1328 * configure.ac (tilepro-*-*): Add gdb to noconfigdirs.
1329 * configure: Regenerate.
1330
0597bdc4
AM
13312016-05-28 Alan Modra <amodra@gmail.com>
1332
1333 * Makefile.tpl (configure): Depend on m4 files included.
1334 * Makefile.in: Regenerate.
1335
1690f1db
NC
13362016-05-27 Nick Clifton <nickc@redhat.com>
1337
1338 * config.guess (Alpha OSF1): Fix typo introduced during the most
1339 recent synchronization update.
1340
b43b8535
NC
13412016-05-23 Nick Clifton <nickc@redhat.com>
1342
1343 * Import these patches from the gcc mainline:
1344
1345 2016-05-16 Jakub Sejdak <jakub.sejdak@phoesys.com>
1346
1347 * config.guess: Import version 2016-04-02 (newest).
1348 * config.sub: Import version 2016-05-10 (newest).
1349
bb7dc663
NC
13502016-04-19 Nick Clifton <nickc@redhat.com>
1351
1352 * Import this patch from the GCC mainline:
1353
1354 2016-04-13 Segher Boessenkool <segher@kernel.crashing.org>
1355
1356 PR bootstrap/70173
1357 * Makefile.tpl (local-distclean): Delete the libcc1, gnattools,
1358 and gotools directories. Delete the stage_final file.
1359 * Makefile.in: Regenerate.
1360
ea016470
CC
13612016-03-17 Cary Coutant <ccoutant@gmail.com>
1362
1363 * configure.ac: Add mips and s390 to the gold target check.
1364 * configure: Regenerate.
1365
52cf9762
NC
13662016-02-10 Nick Clifton <nickc@redhat.com>
1367
1368 Import these patches from the GCC mainline:
1369
1370 2016-01-12 Andris Pavenis <andris.pavenis@iki.fi>
1371
1372 * configure.ac: Enable LTO for DJGPP
1373 * configure: Regenerate
1374
1375 2016-01-24 Mikhail Maltsev <maltsevm@gmail.com>
1376
1377 PR bootstrap/69329
1378 * Makefile.tpl (BASE_FLAGS_TO_PASS): Add LSAN_OPTIONS.
1379 * Makefile.in: Regenerate.
1380
1381 2016-01-25 Aditya Kumar <aditya.k7@samsung.com>
1382 Sebastian Pop <s.pop@samsung.com>
1383
1384 * Makefile.in: Regenerate.
1385 * Makefile.tpl: Export ISLVER.
1386 * configure: Regenerate.
1387 * config/isl.m4: Detect isl-0.15.
1388
1389 2016-01-29 Sebastian Pop <s.pop@samsung.com>
1390
1391 * config/isl.m4: Add comments about isl-0.16.
1392 * configure: Regenerate.
1393
1985dc2d
L
13942016-01-12 H.J. Lu <hongjiu.lu@intel.com>
1395
1396 Sync with GCC
1397 2015-11-26 David Edelsohn <dje.gcc@gmail.com>
1398
1399 * m4/libtool.m4 (export_symbols_cmds) [AIX]: Add global TLS "L"
1400 symbols.
1401
1402 2016-01-12 Bernd Edlinger <bernd.edlinger@hotmail.de>
ce5e165e
L
1403
1404 PR bootstrap/69134
1405 * Makefile.def (mpfr): Disable assembler.
1406 * Makefile.in: Regenerate.
1407
4849dfd8
NC
14082016-01-11 Nick Clifton <nickc@redhat.com>
1409
1410 Import the following changes from the GCC mainline:
1411
1412 2015-11-13 Tsvetkova Alexandra <aleksandra.tsvetkova@intel.com>
1413
1414 * configure.ac: Enable libmpx by default.
1415 * configure: Regenerated.
1416
1417 2015-11-19 Martin Liska <mliska@suse.cz>
1418
1419 * .gitignore: Add .clang-format to ignored files.
1420 * Makefile.tpl: Add clang-format.
1421 * Makefile.in: Regenerate.
1422
1423 2015-12-01 Andreas Tobler <andreast@gcc.gnu.org>
1424
1425 PR libffi/65726
1426 * Makefile.def (lang_env_dependencies): Make libffi depend
1427 on cxx.
1428 * Makefile.in: Regenerate.
1429
1430 2015-12-02 Ian Lance Taylor <iant@google.com>
1431
1432 PR go/66147
1433 * Makefile.tpl (HOST_EXPORTS): Add XGCC_FLAGS_FOR_TARGET.
1434 * Makefile.in: Regenerate.
1435
1436 2015-12-17 Nathan Sidwell <nathan@acm.org>
1437
1438 * config/isl.m4 (ISL_CHECK_VERSION): Add gmp libs.
1439 * configure: Regenerate.
1440
1441 2015-12-17 Sebastian Pop <s.pop@samsung.com>
1442
1443 * Makefile.in: Replace ISL with isl.
1444 * Makefile.tpl: Same.
1445 * config/isl.m4: Same.
1446 * configure.ac: Same.
1447 * contrib/download_prerequisites: Same.
1448 * configure: Regenerate.
1449
1450 2016-01-01 Ben Elliston <bje@gnu.org>
1451
1452 * config.guess: Import version 2016-01-01.
1453 * config.sub: Likewise.
1454
f075eb5e
TG
14552015-11-20 Tristan Gingold <gingold@adacore.com>
1456
1457 * configure.ac: Add aarch64-*-darwin* and arm-*-darwin*.
1458 * configure: Regenerate.
1459
6c3bc0f8
NC
14602015-10-21 Nick Clifton <nickc@redhat.com>
1461
1462 PR gas/19109
1463 * configure.ac: Note the 'none' is an acceptable argument to
1464 --enable-compressed-debug-sections.
1465 * configure: Regenerate.
1466
edeefb67
L
14672015-10-20 H.J. Lu <hongjiu.lu@intel.com>
1468
1469 PR gas/19109
1470 * configure.ac: Add
1471 --enable-compressed-debug-sections={all,gas,gold,ld}.
1472 * configure: Regenerated.
1473
68996839
NC
14742015-09-30 Nick Clifton <nickc@redhat.com>
1475
1476 Import the following patches from the GCC mainline:
1477
1478 2015-08-23 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
1479
1480 PR libfortran/54572
1481 * Makefile.def: Make libgfortran depend on libbacktrace.
1482 * Makefile.in: Regenerate.
1483
1484 2015-08-12 Tom de Vries <tom@codesourcery.com>
1485
1486 PR other/67092
1487 PR other/67098
1488 * configure.ac: Remove --with_host_libstdcxx support.
1489 * configure: Regenerate.
1490
1491 2015-08-10 Thomas Schwinge <thomas@codesourcery.com>
1492 Jakub Jelinek <jakub@redhat.com>
1493
1494 * configure.ac (noconfigdirs): Don't add "target-libgomp" for target
1495 nvptx*-*-*.
1496 * configure: Regenerate.
1497
5960642a
L
14982015-08-07 H.J. Lu <hongjiu.lu@intel.com>
1499
1500 Sync with GCC
1501 2015-07-28 Ben Elliston <bje@gnu.org>
1502
1503 * config.sub, config.guess: Import from upstream.
1504
016a3251
DD
15052015-08-06 Yaakov Selkowitz <yselkowi@redhat.com>
1506
1507 * Makefile.def (libiconv): Define bootstrap=true.
1508 Mark pdf/html/info as missing.
1509 (configure-gcc): Depend on all-libiconv.
1510 (all-gcc): Ditto.
1511 (configure-libcpp): Ditto.
1512 (all-libcpp): Ditto.
1513 (configure-intl): Ditto.
1514 (all-intl): Ditto.
1515 * Makefile.in: Regenerate.
1516
136bb21f
L
15172015-07-27 H.J. Lu <hongjiu.lu@intel.com>
1518
1519 Sync with GCC
1520 2015-07-24 Michael Darling <darlingm@gmail.com>
1521
1522 PR other/66259
1523 * config-ml.in: Reflects renaming of configure.in to configure.ac
1524 * configure: Likewise
1525 * configure.ac: Likewise
1526
22121df0
L
15272015-07-14 H.J. Lu <hongjiu.lu@intel.com>
1528
1529 * Makefile.in: Regenerated.
1530
1531 Sync with GCC
1532 2015-05-21 Jason Merrill <jason@redhat.com>
1533
1534 * Makefile.tpl: Update comments.
1535
1536 2015-04-22 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
1537
1538 * Makefile.tpl: Remove surplus whitespace throughout.
1539
1540 2015-03-25 Martin Liska <mliska@suse.cz>
1541 Yury Gribov <y.gribov@samsung.com>
1542
1543 * Makefile.tpl: Fix ln source location for vimrc file.
1544
969b1713
L
15452015-07-14 H.J. Lu <hongjiu.lu@intel.com>
1546
1547 Sync with GCC
1548 2015-05-16 James Bowman <james.bowman@ftdichip.com>
1549
1550 * configure.ac: FT32 target added.
1551 * configure: Regenerate.
1552
ce6c656d
L
15532015-07-14 H.J. Lu <hongjiu.lu@intel.com>
1554
1555 Sync with GCC
1556 2015-06-02 Jason Merrill <jason@redhat.com>
1557
1558 PR bootstrap/66319
1559 * configure.ac: Use -std=gnu++98.
1560
1561 2015-05-28 Mike Frysinger <vapier@gentoo.org>
1562
1563 * configure.ac (--vtable-verify): Use AS_HELP_STRING for help.
1564 * configure: Regenerate.
1565
1566 2015-05-11 Paulo Matos <paulo@matos-sorge.com>
1567
1568 * configure.ac: Fix typo.
1569 * configure: Regenerate.
1570
1571 2015-05-03 Matthias Klose <doko@ubuntu.com>
1572
1573 * configure.ac: Match $host configured with triplets.
1574 * configure: Regenerate.
1575
1576 2015-04-17 Jakub Jelinek <jakub@redhat.com>
1577
1578 PR bootstrap/62077
1579 * configure.ac (--enable-stage1-checking): Default to
1580 release,misc,gimple,rtlflag,tree,types if --disable-checking
1581 or --enable-checking is not specified and DEV-PHASE is not
1582 experimental.
1583 * configure: Regenerated.
1584
1585 2015-03-27 Uros Bizjak <ubizjak@gmail.com>
1586
1587 Install back PR target/47230 fix (Revert the revert).
1588
16beab3d
L
15892015-06-30 H.J. Lu <hongjiu.lu@intel.com>
1590
1591 * configure.ac (ospace_frag): Enable for i?86*-*-elfiamcu
1592 target.
1593 * configure: Regenerate.
1594
5569a85f
JDA
15952015-05-13 John David Anglin <dave.anglin@bell.net>
1596
1597 * configure.ac: Disable configuration of GDB for HPUX targets.
1598 * configure: Regenerate.
1599
e81d5d05
L
16002015-05-01 H.J. Lu <hongjiu.lu@intel.com>
1601
1602 PR ld/18355
1603 * Makefile.def: Add extra_configure_flags to host zlib.
1604 * configure.ac (extra_host_zlib_configure_flags): New. Set
1605 to --enable-host-shared When bfd is to be built as shared
1606 library. AC_SUBST.
1607 * Makefile.in: Regenerated.
1608
ec5b9462
HPN
16092015-04-15 Mike Frysinger <vapier@gentoo.org>
1610 Hans-Peter Nilsson <hp@axis.com>
1611
1612 Adjust src-release.sh for sim using the gdb create-version.sh.
a644aa89 1613 * src-release.sh (tar_compress): If there's a fifth parameter,
ec5b9462
HPN
1614 use that in the getver call instead of $tool.
1615 (sim_release): Pass gdb as fifth parameter to tar_compress.
1616 (SIM_SUPPORT_DIRS): Add gdb/common/create-version.sh.
1617
f91ca6bc
IB
16182015-04-14 Max Ostapenko <m.ostapenko@partner.samsung.com>
1619
1620 * Makefile.tpl (EXTRA_HOST_EXPORTS): New variables.
1621 (EXTRA_BOOTSTRAP_FLAGS): Likewise.
1622 (check-[+module+]): Add EXTRA_HOST_EXPORTS and EXTRA_BOOTSTRAP_FLAGS.
1623 * Makefile.in: Regenerate.
1624
cf39cfc5
L
16252015-04-01 H.J. Lu <hongjiu.lu@intel.com>
1626
1627 * configure.ac: Add --with-system-zlib.
1628 * configure: Regenerated.
1629
6ac1079e
L
16302015-03-31 H.J. Lu <hongjiu.lu@intel.com>
1631
1632 * src-release.sh: Don't configure with --with-target-subdir=.
1633 --disable-multilib.
1634
890ba06f
L
16352015-03-31 H.J. Lu <hongjiu.lu@intel.com>
1636
1637 * src-release.sh (DEVO_SUPPORT): Replace src-release with
1638 src-release.sh.
1639
5675acd9
ES
16402015-03-30 Ed Schouten <ed@nuxi.nl>
1641
1642 * config.sub: Update from upstream, to 2015-03-04 version.
1643 * config.guess: Likewise.
1644
d2d67aea
L
16452015-03-30 H.J. Lu <hongjiu.lu@intel.com>
1646
1647 * Makefile.def (dependencies): Add all-zlib to all-bfd.
1648 * Makefile.in: Regenerated.
1649
92c695a1
L
16502015-03-28 H.J. Lu <hongjiu.lu@intel.com>
1651
1652 * src-release.sh (do_proto_toplev): Configure with --target
1653 --with-target-subdir and --disable-multilib.
1654 (BINUTILS_SUPPORT_DIRS): Add zlib.
1655 (GAS_SUPPORT_DIRS): Likewise.
1656 (GDB_SUPPORT_DIRS): Likewise.
1657 (SIM_SUPPORT_DIRS): Likewise.
1658
091021fa
L
16592015-03-17 H.J. Lu <hongjiu.lu@intel.com>
1660
1661 * configure.ac (target_configdirs): Exclude target-zlib if
1662 target-libjava isn't built.
1663 * configure: Regenerated.
1664
5df8a8fc
L
16652015-03-17 H.J. Lu <hongjiu.lu@intel.com>
1666
1667 Sync with GCC
1668 2014-06-13 Thomas Schwinge <thomas@codesourcery.com>
1669
1670 * config-ml.in: Robustify ac_configure_args parsing.
1671
1b6c0831
L
16722015-03-16 H.J. Lu <hongjiu.lu@intel.com>
1673
1674 * Makefile.def: Updated from GCC trunk.
1675 * Makefile.tpl: Likewise.
1676 * configure.ac: Likewise.
1677 * Makefile.in: Regenerated.
1678 * configure: Likewise.
1679
3f8107ab
AM
16802015-01-28 James Bowman <james.bowman@ftdichip.com>
1681
1682 * configure.ac: Add FT32 support.
1683 * configure: Regenerate.
1684
10b8fe5e
AG
16852015-01-12 Anthony Green <green@moxielogic.com>
1686
1687 * configure.ac: Don't disable gprof for moxie.
1688 * configure: Rebuild.
1689
6b91c541
AP
16902015-01-03 Andrew Pinski <apinski@cavium.com>
1691
1692 * Makefile.def (flags_to_pass): Pass OBJCOPY_FOR_TARGET also.
1693 * Makefile.tpl (HOST_EXPORTS): Add OBJCOPY_FOR_TARGET.
1694 (BASE_TARGET_EXPORTS): Add OBJCOPY.
1695 (OBJCOPY_FOR_TARGET): New variable.
1696 (EXTRA_TARGET_FLAGS): Add OBJCOPY.
1697 * Makefile.in: Regenerate.
1698 * configure.ac: Check for already installed target objcopy.
1699 Also GCC_TARGET_TOOL on objcopy.
1700 * configure: Regenerate.
1701
6ba37ab4
HPN
17022015-01-02 Hans-Peter Nilsson <hp@bitrange.com>
1703
1704 * config.sub: Update from upstream, to 2015-01-01 version.
1705 * config.guess: Ditto.
1706
bb5f7690
EB
17072014-12-06 Eric Botcazou <ebotcazou@adacore.com>
1708
1709 * config.sub: Update from upstream config repo.
1710
6e733cce
L
17112014-11-24 H.J. Lu <hongjiu.lu@intel.com>
1712
1713 * libtool.m4: Updated from GCC trunk.
1714
8969c424
JBG
17152014-11-16 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1716
1717 * config.guess: Update from upstream config repo.
1718 * config.sub: Ditto.
1719
37e77caf
JBG
17202014-11-16 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1721
1722 * move-if-change: Update from upstream gnulib.
1723
e3046511
JBG
17242014-11-16 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1725
1726 * compile: Sync with upstream Automake.
1727 * depcomp: Ditto.
1728 * install-sh: Ditto.
1729 * missing: Ditto.
1730 * mkinstalldirs: Ditto.
1731 * ylwrap: Ditto.
1732
3e615393
TG
17332014-10-15 Tristan Gingold <gingold@adacore.com>
1734
1735 * src-release.sh (do_proto_toplev): Configure with --target.
1736
6d26190c
JY
17372014-10-03 Jing Yu <jingyu@google.com>
1738
1739 * configure.ac: Add aarch64 to list of targets that support gold.
1740 * configure: Regenerate.
1741
a9d58c06
AB
17422014-09-12 Andrew Bennett <andrew.bennett@imgtec.com>
1743
1744 * configure.ac: Add mips*-img-elf* target triple.
1745 * configure: Regenerate.
1746
b25b5cef
CJW
17472014-09-06 Kuan-Lin Chen <kuanlinchentw@gmail.com>
1748 * configure: Disable gdb for nds32*-*-* until supported.
1749 * configure.ac: Disable gdb for nds32*-*-* until supported.
1750
f8797b5a
JB
17512014-09-05 Joel Brobecker <brobecker@adacore.com>
1752
1753 * configure: Regenerate.
1754
2536ee9d
WN
17552014-08-27 Will Newton <will.newton@linaro.org>
1756
1757 * src-release.sh: New file.
1758 * src-release: Remove file.
1759
1f995db6
JS
17602014-07-27 Joel Sherrill <joel.sherrill@oarcorp.com>
1761
1762 GDB not supported for or1k*-*-rtems*
1763 * configure.ac (or1k*-*-rtems*): gdb not supported. The ordering
1764 of the stanzas results in this not being caught by or1k*-*-* later.
1765 * configure. Regenerated.
1766
a843ea33
SB
17672014-07-25 Samuel Bronson <naesten@gmail.com>
1768
1769 * .gitattributes: New file for use with git-merge-changelog.
1770
cfbc1a6c
JS
17712014-07-21 Joel Sherrill <joel.sherrill@oarcorp.com>
1772
1773 Disable gdb for or1k*-*-* until supported
1774 * configure.ac (or1k*-*-*): Disable gdb.
1775 * configure: Regenerated.
1776
d9e042ac
SL
17772014-05-14 Sandra Loosemore <sandra@codesourcery.com>
1778
1779 * configure.ac (target_makefile_frag): Set for nios2-*-elf*.
1780 * configure: Regenerated.
1781
201f096f 17822014-03-26 Jakub Jelinek <jakub@redhat.com>
1783
1784 PR sanitizer/56781
1785 * Makefile.def: Set bootstrap=true; for host fixincludes.
1786 * configure.ac: Don't bootstrap host fixincludes unless
1787 --with-build-config=bootstrap-{a,ub}san.
1788 * Makefile.in: Regenerated.
1789 * configure: Regenerated.
1790
730af8ee 17912014-03-21 Jakub Jelinek <jakub@redhat.com>
1792
1793 * configure.ac: Move BUILD_CONFIG set up earlier. Add
1794 --enable-vtable-verify option parsing. Don't add
1795 target-libsanitizer to bootstrap_target_libs unless
1796 --with-build-config=bootstrap-asan or
1797 --with-build-config=bootstrap-ubsan. Don't add target-libvtv
1798 to bootstrap_target_libs unless --enable-vtable-verify.
1799 * configure: Regenerated.
1800
abca8d87 18012014-03-07 Jakub Jelinek <jakub@redhat.com>
1802
1803 PR bootstrap/58572
1804 * Makefile.tpl (POSTSTAGE1_CXX_EXPORT): Use -isystem instead of
1805 -I for libstdc++-v3 includes if $(LEAN).
1806 * Makefile.in: Regenerated.
1807
68d122bb 18082014-02-24 Walter Lee <walt@tilera.com>
1809
1810 * configure.ac (tilepro-*-*) Change to tilepro*-*-*.
1811 (tilegx-*-*): Change to tilegx*-*-*.
1812 * configure: Regenerate.
1813
39d1b2ae
RS
18142014-05-01 Richard Sandiford <rdsandiford@googlemail.com>
1815
1816 * config.sub, config.guess: Import from upstream.
1817
50f80006
EB
18182014-04-04 Eric Botcazou <ebotcazou@adacore.com>
1819
1820 PR bootstrap/60620
72f4393d 1821 * Makefile.def (dependencies): Make gnattools depend on libstdc++-v3.
50f80006
EB
1822 * Makefile.in: Regenerate.
1823
a6305403
YS
18242014-03-28 Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
1825
1826 * Makefile.def (dependencies): Make all-ld depend on all-binutils
1827 for WINDRES_FOR_TARGET in default-manifest.o rule.
1828 * Makefile.in: Regenerate.
1829
62a0f723
RO
18302014-02-04 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
1831
1832 PR target/59788
1833 * ltmain.sh (opt_duplicate_compiler_generated_deps): Enable on
1834 *solaris2*.
1835
530e8392
KB
18362013-12-19 Keven Boell <keven.boell@intel.com>
1837
1838 * cp-namespace.c (cp_lookup_nested_symbol): Enable
1839 nested lookups for fortran modules.
1840 * dwarf2read.c (read_module): Add fortran module to
1841 the symbol table.
1842 (add_partial_symbol, add_partial_module): Add fortran
1843 module to the partial symbol table.
1844 (new_symbol_full): Create full symbol for fortran module.
1845 * f-exp.y (yylex): Add new module domain to be parsed.
1846 * symtab.h: New domain for fortran modules.
1847
7f9b20bb
KB
18482013-12-19 Keven Boell <keven.boell@intel.com>
1849
1850 * f-exp.y (yylex): Add domain array to enable lookup
1851 in multiple domains. Loop over lookup domains and try
1852 to find requested symbol. Add STRUCT_DOMAIN to lookup
1853 domains to be able to query for user defined types.
1854
afc0578d 18552013-12-13 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
1856
1857 * configure.ac: Add user-friendly check for native x86_64-linux
1858 multilibs.
1859 * configure: Regenerate.
1860
f3f51a69
AM
18612013-11-23 Alan Modra <amodra@gmail.com>
1862
1863 * config.sub, config.guess: Import from upstream.
1864
2440009d 18652013-11-07 Thomas Schwinge <thomas@codesourcery.com>
1866
2440009d 1867 * Makefile.in: Regenerate.
1868
e78e02e6 1869 * Makefile.tpl: Fix typo.
1870 * Makefile.in: Regenerate partially.
1871
9aaf2a7e 18722013-11-04 Balaji V. Iyer <balaji.v.iyer@intel.com>
1873
1874 * configure.ac: Added libcilkrts to noconfig list when C++ is not
1875 supported.
1876 * configure: Regenerated.
1877
880b18d1 18782013-10-30 Jason Merrill <jason@redhat.com>
1879
1880 * Makefile.tpl (STAGE1_CONFIGURE_FLAGS): Pass
1881 --disable-build-format-warnings.
1882
522e3d71 18832013-10-29 Balaji V. Iyer <balaji.v.iyer@intel.com>
1884
f3f51a69 1885 * Makefile.def: Add libcilkrts to target_modules. Make libcilkrts
522e3d71 1886 depend on libstdc++ and libgcc.
1887 * configure: Regenerate.
1888 * configure.ac: Added libcilkrts to target binaries. Also, restrict
1889 libcilkrts for POSIX and i*86, and x86_64 architectures.
1890 * Makefile.in: Added libcilkrts related fields to support building it.
1891
cb49a9e1 18922013-10-26 Jeff Law <law@redhat.com>
1893
1894 * Makefile.def (target_modules): Remove libmudflap
1895 (languages): Remove check-target-libmudflap).
1896 * Makefile.in: Rebuilt.
1897 * Makefile.tpl (check-target-libmudflap-c++): Remove.
1898 * configure.ac (target_libraries): Remove target-libmudflap.
1899 Remove checks which disabled libmudflap on some systems.
1900 * configure: Rebuilt.
1901 * libmudflap: Directory removed.
1902
82033c9b
JBG
19032013-10-16 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1904
1905 * configure.ac: Update from GCC.
1906 * configure: Regenerate.
1907
b50d7605
HPN
19082013-10-15 Hans-Peter Nilsson <hp@axis.com>
1909
1910 * src-release (do-proto-toplevel): Support subdir-path-prefixed
1911 files in SUPPORT_FILES.
1912 (SIM_SUPPORT_DIRS): New variable.
1913 (sim.tar.bz2): New rule.
1914
f4cfb980
JBG
19152013-10-08 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1916
1917 * configure.ac: Update from GCC.
1918 * configure: Regenerate.
1919
78b1434c
JJ
19202013-10-01 Jeff Johnston <jjohnstn@redhat.com>
1921
1922 * COPYING.NEWLIB: Update with new copyright.
1923
b3fc79f8
JBG
19242013-09-21 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1925
1926 * configure.ac: Update from GCC.
1927 * configure: Regenerate.
1928
cc9afea3
AM
19292013-09-20 Alan Modra <amodra@gmail.com>
1930
1931 * libtool.m4 (_LT_ENABLE_LOCK <ld -m flags>): Remove non-canonical
1932 ppc host match. Support little-endian powerpc linux hosts.
1933
f006cabd
JB
19342013-08-16 Joel Brobecker <brobecker@adacore.com>
1935
1936 * src-release (VER): When using $(TOOL)/common/create-version.sh,
1937 strip the "-cvs" suffix from the version number if present.
1938
95e43135
JBG
19392013-08-12 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1940
1941 * configure.ac: Sync with GCC repo.
1942 * Makefile.def: Ditto.
1943 * configure: Regenerate.
1944 * Makefile.in: Ditto.
1945
7539e41e
JB
19462013-07-22 Joel Brobecker <brobecker@adacore.com>
1947
1948 * src-release (VER): Use $(TOOL)/common/create-version.sh
1949 if it exists.
1950
e8044f35
RS
19512013-06-22 Richard Sandiford <rdsandiford@googlemail.com>
1952
1953 * configure.ac (mips*-*-bsd*, mips*-*-ultrix*, mips*-*-osf*)
1954 (mips*-*-ecoff*, mips*-*-pe*, mips*-*-irix* [v4 and earlier])
1955 (mips*-*-lnews*, mips*-*-riscos*): Add gas and ld to noconfigdirs.
1956 * configure: Regenerate.
1957
7bab7634
DC
19582013-06-01 George Thomas <george.thomas@atmel.com>
1959
95e43135
JBG
1960 * include/opcode/avr.h: Rename AVR_ISA_XCH to AVR_ISA_RMW. Remove
1961 from AVR_ISA_XMEGA and add new AVR_ISA_XMEGAU
7bab7634 1962
b5364c9e
JJ
19632013-05-06 Sandra Loosemore <sandra@codesourcery.com>
1964
1965 * COPYING.NEWLIB: Add Altera Corporation copyright.
1966
5dad867c
JBG
19672013-04-29 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1968
1969 * config.guess: Update from config repo.
1970 * config.sub: Ditto.
1971
b836cb18
JBG
19722013-04-22 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1973
1974 * Makefile.def: Sync with GCC.
1975 * Makefile.in: Regenerate.
1976
e7d5abf1
JBG
19772013-04-22 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1978
1979 * configure.ac: Sync with GCC.
b836cb18 1980 * configure: Regenerate.
e7d5abf1 1981
4f778543
MF
19822013-03-22 Mike Frysinger <vapier@gentoo.org>
1983
1984 * src-release (VER): Change bfd/configure.in sed to use the new
1985 `bfd/configure --version` output.
1986
f1dd87fc
YZ
19872013-02-15 Yufeng Zhang <yufeng.zhang@arm.com>
1988
1989 * configure.ac: Sync with GCC repo.
1990 * configure: Ditto.
1991
a413f71a
ILT
19922013-02-05 Ian Lance Taylor <iant@google.com>
1993
1994 PR go/55969
1995 * configure.ac: Disable libgo on some systems where it does not
1996 work.
1997 * configure: Rebuild.
1998
3a98824c
AM
19992013-02-05 Alan Modra <amodra@gmail.com>
2000
2001 * configure: Regenerate after syncing config/.
2002
3dae1673
JBG
20032013-01-15 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2004
2005 * configure.ac: Sync with GCC repo.
2006 * configure: Ditto.
2007 * Makefile.def: Ditto.
2008 * Makefile.in: Ditto.
2009
bf51454b
JB
20102013-01-11 Joel Brobecker <brobecker@adacore.com>
2011
2012 Sync with GCC, merge:
2013
2014 2013-01-09 Jason Merrill <jason@redhat.com>
2015
2016 * .gitignore: Import from gdb repository.
2017
c841a2be
JBG
20182013-01-11 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2019
2020 * config.sub: Update from config repo.
2021
d7b9dae9
EB
20222013-01-11 Eric Botcazou <ebotcazou@adacore.com>
2023
2024 * Makefile.tpl (BOOT_ADAFLAGS): Remove -gnata.
2025 * Makefile.in: Regenerate.
2026
861ea9c8
L
20272013-01-09 H.J. Lu <hongjiu.lu@intel.com>
2028
2029 * Makefile.def (configure-gcc): Depend on all-gmp.
2030 (all-gcc): Remove dependency on all-gmp.
2031 * Makefile.in: Regenerated.
2032
ce82b126
JBG
20332013-01-08 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2034
1b4f418d 2035 * config.guess: Update from config repo.
c2e5e6d7 2036 * config.sub: Ditto.
ce82b126 2037
fd62a30d
JJ
20382013-01-07 Jeff Johnston <jjohnstn@redhat.com>
2039
2040 * COPYING.LIBGLOSS: Remove license for mips/lsi33k-stub.h which no longer
2041 exists and replace the new bfin license in its location.
2042
0140d685
L
20432013-01-07 H.J. Lu <hongjiu.lu@intel.com>
2044
2045 PR gas/14899
2046 * Makefile.def (dependencies): Make all-binutils, all-gprof,
2047 all-ld and all-gold depend on all-gas.
2048 * Makefile.in: Regenerated.
2049
c3d399e7
L
20502012-12-29 Ben Elliston <bje@gnu.org>
2051
2052 * config.guess: Update to 2012-12-29 version.
2053 * config.sub: Likewise.
2054
9417cd2f
JBG
20552012-12-20 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2056
2057 * Makefile.def (install-target-libgo): Depend on
2058 install-target-libatomic. Merged from GCC repo.
2059 * Makefile.in: Regenerate.
2060
68dad382
JJ
20612012-12-17 Jeff Johnston <jjohnstn@redhat.com>
2062
2063 * COPYING.LIBGLOSS: Add license for bfin libgloss.
2064
2344b8da
TS
20652012-12-16 Thomas Schwinge <thomas@codesourcery.com>
2066
2067 * configure.ac (ENABLE_GOLD): Consider *-*-gnu* targets ELF.
2068 * configure: Regenerate.
2069
5eb08693
L
20702012-12-11 H.J. Lu <hongjiu.lu@intel.com>
2071
2072 * Makefile.def (target_modules): Add bootstrap=true and
2073 raw_cxx=true to libsanitizer.
2074 * configure.ac (bootstrap_target_libs): Add libsanitizer.
2075 * Makefile.in: Regenerated.
2076 * configure: Likewise.
2077
53ab32d8
JBG
20782012-12-08 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2079
2080 * config.sub: Merge from config repo.
2081
d2489204
JBG
20822012-11-30 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2083
2084 * configure.ac: Merge from GCC.
c2e5e6d7
JBG
2085 * Makefile.tpl: Ditto.
2086 * Makefile.in: Ditto.
2087 * configure: Ditto.
d2489204 2088
c23b5043
JBG
20892012-11-28 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2090
2091 * configure.ac (noconfigdirs): Merge from GCC.
2092 * configure: Regenerate.
2093
1dd1f7f6
JBG
20942012-11-19 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2095
2096 * config.sub (arm): Merge from upstream: Handle armv[6-8] targets.
2097
2bda3143
L
20982012-11-14 Roland McGrath <mcgrathr@google.com>
2099
2100 * configure.ac (ENABLE_GOLD): Consider *-*-nacl* targets ELF.
2101 * configure: Regenerate.
2102
5286fdef
L
21032012-11-13 Richard Henderson <rth@redhat.com>
2104
2105 * configure.ac: Move libsanitizer logic to subdirectory.
2106 * configure: Regenerate.
2107
21082012-11-13 Dodji Seketeli <dodji@redhat.com>
2109
2110 * configure.ac: Enable libsanitizer just on x86 linux for now.
2111 * configure: Re-generate.
2112
21132012-11-13 David Edelsohn <dje.gcc@gmail.com>
2114
2115 * configure.ac: Merge libquadmath sections.
2116 * configure: Regenerate.
2117
21182012-11-12 Wei Mi <wmi@google.com>
2119
2120 * configure.ac: Add libsanitizer to target_libraries.
2121 * Makefile.def: Ditto.
2122 * configure: Regenerate.
2123 * Makefile.in: Regenerate.
2124
f66a9a70
L
21252012-11-03 H.J. Lu <hongjiu.lu@intel.com>
2126
2127 * configure: Regenerated.
2128
21292012-11-03 Robert Mason <rbmj@verizon.net>
2130
2131 * configure.ac: add --disable-libstdcxx configure option
2132 and handle defaulted state only for VxWorks, ARM-wince-pe and AVR.
2133
6d94c122
CV
21342012-10-24 Corinna Vinschen <corinna@vinschen.de>
2135
2136 * configure.ac (FLAGS_FOR_TARGET,target=cygwin): Fix for building
2137 against Mingw64 w32api.
2138 * configure: Regenerate.
2139
a882be68
EB
21402012-10-23 Eric Botcazou <ebotcazou@adacore.com>
2141
2142 PR bootstrap/54820
2143 * configure.ac (have_static_libs): Force 'no' for GCC version < 4.5.
2144 * configure: Regenerate.
2145
b3676d82
EB
21462012-10-22 Eric Botcazou <ebotcazou@adacore.com>
2147
2148 PR bootstrap/54820
2149 * Makefile.tpl (STAGE1_FLAGS_TO_PASS): New variable.
2150 (all-[+prefix+][+module+]): Pass stage1_args to sub-makes.
2151 (all-stage[+id+]-[+prefix+][+module+]): Likewise, if prev is false.
2152 (clean-stage[+id+]-[+prefix+][+module+]): Likewise, if prev is false.
2153 (host_modules): Set stage1_args to STAGE1_FLAGS_TO_PASS.
2154 * Makefile.in: Regenerate.
2155 * configure.ac (have_static_libs): New variable and associated check.
2156 (stage1-ldflags): Move to after stage1_libs and set to -static-libstdc++
2157 -static-libgcc if stage1_libs is empty and have_static_libs is yes.
2158 * configure: Regenerate.
2159
7b0e8ca5
MF
21602012-10-10 David Holsgrove <david.holsgrove@xilinx.com>
2161
2162 * config.guess, config.sub: Include updated version from
2163 config-patches. Adds microblaze little endian support.
2164
8e71395b
L
21652012-09-28 Ian Lance Taylor <iant@google.com>
2166
2167 * Makefile.def: Make all-target-libgo depend on
2168 all-target-libbacktrace.
2169 * Makefile.in: Rebuild.
2170
21712012-09-26 Ian Lance Taylor <iant@google.com>
2172
2173 * Makefile.def: Make all-gcc depend on all-libbacktrace.
2174 * Makefile.in: Rebuild.
2175
21762012-09-06 Diego Novillo <dnovillo@google.com>
2177
2178 * configure.ac: Bump minimum GMP version to 4.2.3.
2179 * configure: Re-generate.
2180
21812012-09-05 Georg-Johann Lay <avr@gjlay.de>
2182
2183 PR target/54461
2184 * configure.ac (noconfigdirs,target=avr-*-*): Add target-newlib,
2185 target-libgloss if not configured --with-avrlibc=no.
2186 * configure: Regenerate.
2187
21882012-09-04 Jason Merrill <jason@redhat.com>
2189
2190 * configure.ac: Fix --enable-languages=all.
2191
21922012-09-03 Richard Guenther <rguenther@suse.de>
2193
2194 PR bootstrap/54138
2195 * configure.ac: Re-organize ISL / CLOOG checks to allow
2196 disabling with either --without-isl or --without-cloog.
2197 * configure: Regenerated.
2198
21992012-09-03 Georg-Johann Lay <avr@gjlay.de>
2200
2201 * configure.ac (noconfigdirs,target=avr): Add target-libquadmath.
2202 * configure: Regenerate.
2203
d09bbf00
SE
22042012-09-21 Steve Ellcey <sellcey@mips.com>
2205
2206 * configure.ac: Add mips*-mti-elf* target.
2207 * configure: Regenerate.
2208
2bf680c4
ILT
22092012-09-19 Ian Lance Taylor <iant@google.com>
2210
2211 * configure.ac (host_libs): Add libbacktrace.
2212 (target_libraries): Add libbacktrace.
2213 * Makefile.def (host_modules): Add libbacktrace.
2214 (target_modules): Likewise.
2215 * configure, Makefile.in: Rebuild.
2216
5c0b3823
WL
22172012-09-15 Jiong Wang <jiwang@tilera.com>
2218
2219 * configure.ac (ENABLE_GOLD): support tilegx*
2220 * configure: rebuild
2221
1488e230
DE
22222012-09-14 David Edelsohn <dje.gcc@gmail.com>
2223
2224 PR target/38607
2225 Merge upstream change.
2226 * libtool.m4 (_LT_COMPILER_PIC): Add -fPIC to GCC and GXX for AIX.
2227
2228 * configure.ac: Add target-libquadmath to noconfigdirs for AIX.
2229 Add libgomp*.o to compare_exclusions for AIX.
2230 * configure: Regenerate.
2231
df6795ce
L
22322012-08-26 H.J. Lu <hongjiu.lu@intel.com>
2233
2234 PR binutils/4970
2235 * Makefile.def (host_modules): Rmove lib_path=.libs from bfd
2236 and opcodes.
2237 * Makefile.in: Regenerated.
2238
7ec59b9e
L
22392012-08-14 Diego Novillo <dnovillo@google.com>
2240
2241 Merge from cxx-conversion branch.
2242
2243 * Makefile.tpl (STAGE[+id+]_CXXFLAGS): Remove
2244 POSTSTAGE1_CONFIGURE_FLAGS.
2245 * Makefile.in: Regenerate.
2246 * configure.ac (ENABLE_BUILD_WITH_CXX): Remove. Update all users.
2247 Force C++ when bootstrapping.
2248 * configure: Regenerate.
2249
22502012-07-06 Richard Guenther <rguenther@suse.de>
2251
2252 * Makefile.def (cloog): Pass $(HOST_GMPINC) and $(HOST_ISLINC)
2253 as CPPFLAGS, pass path to built gmp as LDFLAGS, always use
2254 --with-gmp=system.
2255 * Makefile.in: Regenerated.
2256 * configure: Likewise.
2257
22582012-07-06 Richard Guenther <rguenther@suse.de>
2259
2260 * configure.ac (extra_isl_gmp_configure_flags): Initialize and subst.
2261 * Makefile.def (isl): Use extra_isl_gmp_configure_flags and
2262 supply V=1 as extra_make_flags.
2263 * configure: Regenerated.
2264 * Makefile.in: Likewise.
2265
22662012-07-03 Richard Guenther <rguenther@suse.de>
2267
2268 * Makfile.def (isl): Remove not necessary extra_exports and
2269 extra_make_flags.
2270 (cloog): Use $$CPPFLAGS instead of ${CPPFLAGS}.
2271 * Makefile.in: Regenerated.
2272
22732012-07-03 Richard Guenther <rguenther@suse.de>
2274
2275 * Makefile.def (cloog): Add V=1 to extra_make_flags.
2276 * configure.ac: If either the ISL or the CLooG check failed
2277 do not try to build in-tree versions.
2278 * Makefile.in: Regenerated.
2279 * configure: Regenerated.
2280
22812012-07-02 Richard Guenther <rguenther@suse.de>
2282 Michael Matz <matz@suse.de>
2283 Tobias Grosser <tobias@grosser.es>
2284 Sebastian Pop <sebpop@gmail.com>
2285
2286 * Makefile.def: Add ISL host module, remove PPL host module.
2287 Adjust ClooG host module to use the proper ISL.
2288 * Makefile.tpl: Pass ISL include flags instead of PPL ones.
2289 * configure.ac: Include config/isl.m4. Add ISL host library,
2290 remove PPL. Remove PPL configury, add ISL configury, adjust
2291 ClooG configury.
2292 * Makefile.in: Regenerated.
2293 * configure: Likewise.
2294
22952012-07-02 Richard Guenther <rguenther@suse.de>
2296
2297 Merge from graphite branch
2298 2011-07-21 Tobias Grosser <tobias@grosser.es>
2299
2300 * configure: Regenerated.
2301 * config/cloog.m4: Remove support for CLooG-ppl and CLooG-parma,
2302 both cloog.org and legacy versions. The only supported version will
2303 be CLooG with the isl backend.
2304
2305 2011-07-21 Tobias Grosser <tobias@grosser.es>
2306
2307 * configure: Regenerated.
2308 * configure.ac: Require cloog isl 0.17.0
2309
2310 2011-07-21 Tobias Grosser <tobias@grosser.es>
2311
2312 * configure: Regenerated.
2313 * config/cloog.m4: Do not define CLOOG_ORG
2314
23152012-06-29 Steven Bosscher <steven@gcc.gnu.org>
2316
2317 * configure.ac: Skip C if explicitly selected.
2318 * configure: Regenerate.
2319
23202012-06-28 Christophe Lyon <christophe.lyon@st.com>
2321
2322 * configure.ac (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Make sure
2323 they contain -O2.
2324 * configure: Regenerate.
2325
23262012-06-20 Jason Merrill <jason@redhat.com>
2327
2328 * Makefile.tpl (check-target-libgomp-c++): New.
2329 (check-target-libitm-c++): New.
2330 * Makefile.def (c++): Add them.
2331 * Makefile.in: Regenerate.
2332
23332012-05-16 Olivier Hainque <hainque@adacore.com>
2334
2335 * Makefile.tpl (gcc-no-fixedincludes): Rename into ...
2336 (gcc-install-no-fixedincludes): Now forwarder to local target in gcc/
2337 (install-no-fixedincludes): Adjust accordingly.
2338 * Makefile.in: Regenerate.
2339
23402012-05-09 Nick Clifton <nickc@redhat.com>
2341 Paul Smith <psmith@gnu.org>
2342
2343 PR bootstrap/50461
2344 * configure.ac (mpfr-dir): When using in-tree MPFR sources
2345 allow for the fact that from release v3.1.0 of MPFR the source
2346 files were moved into a src sub-directory.
2347 * configure: Regenerate.
2348
23492012-05-07 Janne Blomqvist <jb@gcc.gnu.org>
2350
2351 * configure.ac: Bump minimum MPFR version to 2.4.0.
2352 * configure: Regenerated.
2353
23542012-05-01 Richard Henderson <rth@redhat.com>
2355
2356 * Makefile.def (libatomic): New target_module.
2357 * configure.ac (target_libraries): Add libatomic.
2358 (noconfigdirs): Check if libatomic is supported.
2359 * Makefile.in, configure: Rebuild.
2360
f87f9c61
L
23612012-05-15 H.J. Lu <hongjiu.lu@intel.com>
2362
2363 Merge upstream change
2364 * libtool.m4 (_LT_ENABLE_LOCK): Support x32.
2365
23662011-11-21 Andreas Tobler <andreast@fgznet.ch>
2367
2368 * libtool.m4: Additional FreeBSD 10 fixes.
2369
68f107fa
AO
23702012-06-28 Christophe Lyon <christophe.lyon@st.com>
2371
2372 * configure.ac (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Make sure
2373 they contain -O2.
2374 * configure: Regenerate.
2375
b9c361e0
JL
23762012-05-14 Catherine Moore <clm@codesourcery.com>
2377
2378 * NEWS: Mention PowerPC VLE port.
2379
9eb322aa
MF
23802012-05-11 Mike Frysinger <vapier@gentoo.org>
2381
2382 * MAINTAINERS (config/): Move to intl/ section.
2383 (compile; depcomp; install-sh; missing; ylwrap): Likewise.
2384
58b1dd21
NC
23852012-05-09 Nick Clifton <nickc@redhat.com>
2386 Paul Smith <psmith@gnu.org>
2387
2388 PR bootstrap/50461
2389 * configure.ac (mpfr-dir): When using in-tree MPFR sources
2390 allow for the fact that from release v3.1.0 of MPFR the source
2391 files were moved into a src sub-directory.
2392 * configure: Regenerate.
2393
2e702c99
RM
23942012-05-02 Roland McGrath <mcgrathr@google.com>
2395
2396 * configure.ac (ENABLE_GOLD): Consider *-*-nacl* targets ELF.
2397 * configure: Regenerate.
2398
d2213593
JB
23992012-04-25 Joel Brobecker <brobecker@adacore.com>
2400
2401 * config.sub: Update to 2012-04-18 version from official repo.
2402
202e2356
NC
24032012-03-19 Tristan Gingold <gingold@adacore.com>
2404
2405 * configure.ac (ia64*-*-*vms*): Add support for ld.
2406 * configure: Regenerate.
2407
2479f722
RO
24082012-03-14 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2409
2410 * configure.ac (enable_libgomp): Remove *-*-irix6*.
2411 (unsupported_languages): Remove mips-sgi-irix6.*.
2412 (noconfigdirs): Don't add ${libgcj} for mips*-*-irix6*.
2413 (with_stabs): Remove.
2414 * configure: Regenerate.
2415
4e97d92b
RO
24162012-03-12 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2417
2418 * configure.ac (enable_libgomp): Remove *-*-osf*.
2419 (with_stabs): Remove alpha*-*-osf*.
2420 * configure: Regenerate.
2421
f9ea6f98
JJ
24222012-03-09 Jeff Johnston <jjohnstn@redhat.com>
2423
2424 * COPYING.NEWLIB: Modify DJ Delorie license to include
2425 modification rights in clause as permitted by DJ Delorie.
2426 * COPYING.LIBGLOSS: Ditto.
2427
48688b3e
JJ
24282012-03-09 Jeff Johnston <jjohnstn@redhat.com>
2429
2430 * COPYING.NEWLIB: Remove two unused licenses.
2431
0945bbee
TG
24322012-03-05 Tristan Gingold <gingold@adacore.com>
2433
2434 * configure.ac: Enable gdb and readline for ia64*-*-*vms*.
2435 * configure: Regenerate.
2436
516be0c5
JJ
24372012-02-21 Joern Rennecke <joern.rennecke@embecosm.com>
2438
2439 * COPYING.NEWLIB: Add Adapteva notice.
2440 * COPYING.LIBGLOSS: Add Adapteva notice.
2441
64b986c0
EB
24422011-12-18 Eric Botcazou <ebotcazou@adacore.com>
2443
2444 * configure: Regenerate.
2445
58cddc18
JJ
24462011-12-15 Jeff Johnston <jjohnstn@redhat.com>
2447
2448 * COPYING.LIBGLOSS: Add GPL with exception license.
2449
b121d7d4
DD
24502011-11-09 Roland McGrath <mcgrathr@google.com>
2451
2452 * configure.ac: Add tool checks for READELF and READELF_FOR_TARGET.
2453 * configure: Rebuild.
2454 * Makefile.def (flags_to_pass): Add READELF_FOR_TARGET.
2455 * Makefile.tpl (READELF, READELF_FOR_TARGET): New variables.
2456 (HOST_EXPORTS): Add READELF, READELF_FOR_TARGET.
2457 (BASE_FLAGS_TO_PASS): Add READELF_FOR_TARGET.
2458 (BASE_TARGET_EXPORTS, EXTRA_HOST_FLAGS, EXTRA_TARGET_FLAGS):
2459 Add READELF.
2460 * Makefile.in: Rebuild.
2461
d32e2926
RH
24622011-11-08 Richard Henderson <rth@redhat.com>
2463
2464 * configure.ac: Test for libitm directory present first.
2465
2466 * configure.ac: Adjust srcdir for running libitm/configure.tgt.
2467
2468 * configure.ac: Test libitm/configure.tgt to disable libitm.
2469 * configure: Rebuild.
2470
98dd765a
RO
24712011-11-02 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2472
2473 * Makefile.tpl (EXTRA_GCC_FLAGS): Remove LIBGCC2_CFLAGS,
2474 LIBGCC2_DEBUG_CFLAGS, LIBGCC2_INCLUDES.
2475 * Makefile.in: Regenerate.
2476
99c513f6
DD
24772011-11-01 DJ Delorie <dj@redhat.com>
2478
2479 * configure.ac (rl78-*-*) New case.
2480 * configure: Regenerate.
2481
ff3ec4ee
DD
24822011-11-01 DJ Delorie <dj@redhat.com>
2483
2484 * config.sub: Update to version 2011-10-29 (added rl78)
2485
c28a9f49
NC
24862011-10-27 Nick Clifton <nickc@redhat.com>
2487
2488 * config.sub: Import these changes from the config project:
2489
a903d6ac 2490 2011-10-08 Joern Rennecke <joern.rennecke@embecosm.com>
c28a9f49
NC
2491 Ben Elliston <bje@gnu.org>
2492
2493 * config.sub (epiphany): New.
2494
2495 2011-09-09 Linas Vepstas <linasvepstas@gmail.com>
2496 Ben Elliston <bje@gnu.org>
2497
9eb322aa 2498 * config.sub (hexagon, hexagon-*): New.
c28a9f49
NC
2499
2500 2011-08-23 Roland McGrath <mcgrathr@google.com>
2501
2502 * config.sub: Rename 32eb to be32, 32el to le32, 64el to le64, and
2503 64eb to be64.
2504
2505 2011-08-16 Roland McGrath <mcgrathr@google.com>
2506
2507 * config.sub (32eb, 32el, 64eb, 64el): New (pseudo-)CPUs.
2508 (nacl): Grok as alias for 32el-unknown-nacl.
2509
860144e4
JB
25102011-08-19 Joel Brobecker <brobecker@adacore.com>
2511
2512 * src-release (GDB_SUPPORT_DIRS): Add 'cpu'.
2513
40ae9136
YQ
25142011-08-14 Yao Qi <yao@codesourcery.com>
2515
2516 Merge from gcc:
2517
2518 2011-08-14 Yao Qi <yao@codesourcery.com>
2519 * configure.ac (tic6x-*-*): Remove gdb from noconfigdirs.
2520 * configure: Regenerate.
2521
ffdd6afc
ILT
25222011-07-26 Ian Lance Taylor <iant@google.com>
2523
2524 Merge from gcc:
2525
2526 2011-07-26 Ian Lance Taylor <iant@google.com>
2527 * configure.ac: Set have_compiler based on whether gcc directory
2528 exists, rather than on whether gcc is in configdirs.
2529 * configure: Rebuild.
2530
2531 2011-07-20 David Edelsohn <dje.gcc@gmail.com>
2532 * Makefile.tpl (POSTSTAGE1_CONFIGURE_FLAGS): Add libsupc++ to
2533 link directories.
2534 * Makefile.in: Rebuild.
2535
2536 2011-07-20 Ian Lance Taylor <iant@google.com>
2537 PR bootstrap/49787
2538 * configure.ac: Move --enable-bootstrap handling earlier in file.
2539 If --enable-bootstrap and either --enable-build-with-cxx or
2540 --enable-build-poststage1-with-cxx, enable C++ automatically.
2541 * configure: Rebuild.
2542
2543 2011-07-19 Ian Lance Taylor <iant@google.com>
2544 * configure.ac: Add --enable-build-poststage1-with-cxx. If set,
2545 make C++ a boot_language. Set and substitute
2546 POSTSTAGE1_CONFIGURE_FLAGS.
2547 * Makefile.tpl (POSTSTAGE1_CONFIGURE_FLAGS): New variable.
2548 (STAGE[+id+]_CONFIGURE_FLAGS): Add $(POSTSTAGE1_CONFIGURE_FLAGS).
2549 * configure, Makefile.in: Rebuild.
2550
2551 2011-07-16 Jason Merrill <jason@redhat.com>
2552 * Makefile.def (language=c++): Add check-c++0x and
2553 check-target-libmudflap-c++.
2554 * Makefile.tpl (check-target-libmudflap-c++): New.
2555 * Makefile.in: Regenerate.
2556
2557 2011-07-16 Matthias Klose <doko@ubuntu.com>
2558 * Makefile.tpl (EXTRA_CONFIGARGS_LIBJAVA): Define.
2559 * Makefile.def (target_modules/libjava): Pass
2560 $(EXTRA_CONFIGARGS_LIBJAVA).
2561 * configure.ac: Pass --disable-static in EXTRA_CONFIGARGS_LIBJAVA,
2562 if not configured with --enable-static-libjava.
2563 * Makefile.in: Regenerate.
2564 * configure: Likewise.
2565
2566 2011-06-22 Hans-Peter Nilsson <hp@axis.com>
2567 PR regression/47836
2568 PR bootstrap/23656
2569 PR other/47733
2570 PR bootstrap/49247
2571 PR c/48825
2572 * configure.ac (target_libraries): Remove target-libiberty.
2573 Remove case-statement setting skipdirs=target-libiberty for
2574 multiple targets. Remove checking target_configdirs and
2575 removing target-libiberty but keeping target-libgcc if
2576 otherwise empty.
2577 * Makefile.def (target_modules): Don't add libiberty.
2578 (dependencies): Remove all traces of target-libiberty.
2579 * configure, Makefile.in: Regenerate.
2580
9ccb86e7
JM
25812011-07-22 Jason Merrill <jason@redhat.com>
2582
2583 * Makefile.def (language=c++): Add check-c++0x and
2584 check-target-libmudflap-c++.
2585 * Makefile.tpl (check-target-libmudflap-c++): New.
2586 * Makefile.in: Regenerate.
2587
090bc50f
RO
25882011-07-18 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2589
2590 * configure: Regenerate.
2591
cff32a7c
RO
25922011-07-07 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2593
2594 PR target/39150
2595 * configure.ac (i[3456789]86-*-solaris2*): Also accept
2596 x86_64-*-solaris2.1[0-9]*.
2597 * configure: Regenerate.
2598
eb4b2452
NC
25992011-06-13 Walter Lee <walt@tilera.com>
2600
2601 * configure.ac (tilepro-*-*) New case.
2602 (tilegx-*-*): Likewise.
2603 * configure: Regenerate.
2604
3c0013bf
NC
26052011-06-06 Nick Clifton <nickc@redhat.com>
2606
2607 * config.sub: Sync from upstream.
2608
91c1f14c
DK
26092011-05-08 Doug Kwan <dougkwan@google.com>
2610
2611 Merge from gcc:
2612
2613 2011-05-08 Doug Kwan <dougkwan@google.com>
2614
2615 * configure.ac: Propagate LDFLAGS_FOR_TARGET.
2616 * configure: Regenerated.
2617 * Makefile.tpl (LDFLAGS_FOR_TARGET): Use LDFLAGS_FOR_TARGET
2618 value from configure.
2619 * Makefile.in: Regenerated.
2620
c7e4b184
JM
26212011-05-05 Joseph Myers <joseph@codesourcery.com>
2622
2623 * configure.ac (alpha*-dec-osf*, i[[3456789]]86-*-rdos*,
2624 sh*-*-pe|mips*-*-pe|arm-wince-pe, sparc-*-sunos4*, *-*-aix*,
2625 *-*-beos*, *-*-chorusos, *-*-dragonfly*, *-*-freebsd*, *-*-linux*
2626 | *-*-gnu* | *-*-k*bsd*-gnu | *-*-kopensolaris*-gnu, *-*-lynxos*,
2627 *-*-mingw*, *-*-netbsd*, *-*-netware*, *-*-tpf*, *-*-uclinux*,
2628 *-*-vxworks*): Disable newlib and libgloss in separate case
2629 statement.
2630 (i[[3456789]]86-*-linux*): Move logic allowing newlib to be built
2631 to separate case statement.
2632 (*-*-chorusos, *-*-dragonfly*, *-*-freebsd*, *-*-netbsd*,
2633 *-*-netware*, *-*-tpf*, *-*-uclinux*, *-*-vxworks*,
2634 alpha*-dec-osf*, alpha*-*-linux*, am33_2.0-*-linux*, sh-*-linux*,
2635 sh*-*-pe|mips*-*-pe|*arm-wince-pe, arm-*-coff, arm-*-elf* |
2636 arm*-*-eabi*, arm*-*-linux-gnueabi, arm*-*-symbianelf*, avr-*-*,
2637 bfin-*-*, cris-*-* | crisv32-*-*, frv-*-*, i[[3456789]]86-*-coff |
2638 i[[3456789]]86-*-elf, i[[3456789]]86-w64-mingw*,
2639 i[[3456789]]86-*-mingw*, x86_64-*-mingw*,
2640 i[[3456789]]86-*-interix*, i[[3456789]]86-*-beos*,
2641 i[[3456789]]86-*-rdos*, m32r-*-*,
2642 m68hc11-*-*|m6811-*-*|m68hc12-*-*|m6812-*-*, m68k-*-elf*, m68*-*-*
2643 | fido-*-*, powerpc-*-aix*, powerpc-*-beos*, powerpc-*-eabi,
2644 powerpc-*-eabi* | powerpcle-*-eabi* | powerpc-*-rtems*,
2645 rs6000-*-lynxos*, rs6000-*-aix*, mips*-*-linux*, sparclet-*-aout*
2646 | sparc86x-*-*, sparc-*-elf*, sparc64-*-elf*, sparclite-*-*,
2647 sparc-*-sunos4*, sparc-*-solaris* | sparc64-*-solaris* |
2648 sparcv9-*-solaris*, *-*-linux* | *-*-gnu* | *-*-k*bsd*-gnu |
2649 *-*-kopensolaris*-gnu, *-*-lynxos*, *-*-*): Don't disable newlib
2650 and libgloss in main case over targets. Remove most empty cases
2651 in main case over targets.
2652 * configure: Regenerate.
2653
7152a690
JM
26542011-05-04 Joseph Myers <joseph@codesourcery.com>
2655
2656 * configure.ac: Remove code setting special library locations for
2657 hppa*64*-*-hpux11*. Remove code setting compiler for
2658 sparc-sun-solaris2*.
2659 * configure: Regenerate.
2660
ff46fb8f
JM
26612011-05-04 Joseph Myers <joseph@codesourcery.com>
2662
2663 * configure.ac: Separate libgloss_dir settings from general case
2664 over targets.
2665 * configure: Regenerate.
2666
82ae827f
JM
26672011-04-28 Joseph Myers <joseph@codesourcery.com>
2668
2669 * configure.ac (*-*-dragonfly*, *-*-freebsd*, *-*-netbsd*,
2670 alpha*-dec-osf*, alpha*-*-linux*, alpha*-*-*, sh-*-linux*,
2671 arm-*-elf* | arm*-*-eabi*, arm*-*-linux-gnueabi, frv-*-*): Remove
2672 cases in libgcj-disabling case statement.
2673 (hppa*64*-*-linux*): Set unsupported_languages instead of
2674 disabling target-zlib.
2675 (hppa*64*-*-*): Restrict case in libgcj-disabling case statement
2676 to hppa*64*-*-hpux*.
2677 (hppa*-*-*): Restrict case in libgcj-disabling case statement to
2678 hppa*-*-hpux*.
2679 (ia64*-*-elf*, ia64*-**-hpux*, i[[3456789]]86-*-elf,
2680 i[[3456789]]86-*-linux*, *-*-cygwin*, i[[3456789]]86-*-interix*,
2681 i[[3456789]]86-*-solaris2*, m32r-*-*, m68k-*-elf*, m68*-*-* |
2682 fido-*-*, powerpc-*-eabi, powerpc-*-eabi* | powerpcle-*-eabi* |
2683 powerpc-*-rtems*, mips*-*-linux*, mips*-*-*, sh-*-* | sh64-*-*,
2684 sparc-*-elf*, sparc64-*-elf*, sparc-*-solaris* |
2685 sparc64-*-solaris* | sparcv9-*-solaris*, *-*-linux* | *-*-gnu* |
2686 *-*-k*bsd*-gnu | *-*-kopensolaris*-gnu, *-*-*): Remove cases in
2687 libgcj-disabling case statement.
2688 * configure: Regenerate.
2689
0827f9a6
JM
26902011-04-28 Joseph Myers <joseph@codesourcery.com>
2691
2692 * configure.ac: Disable Java for targets not supporting libffi.
2693 (*-*-chorusos, *-*-kaos*, am33_2.0-*-linux*, sh*-*-pe|mips*-*-pe):
2694 Remove cases in Java-disabling statement.
2695 (*arm-wince-pe): Change to arm-wince-pe.
2696 (arc-*-*, arm-*-coff, arm-*-pe*, arm-*-riscix*, avr-*-*): Remove
2697 cases in Java-disabling statement.
2698 (bfin-*-*): Don't disable Java again.
2699 (c4x-*-* | tic4x-*-*, tic54x-*-*, cr16-*-*, d10v-*-*, d30v-*-*,
2700 fr30-*-elf*, moxie-*-*, h8300*-*-*, h8500-*-*, hppa1.1-*-osf* |
2701 hppa1.1-*-bsd*, hppa*-*-*elf* | hppa*-*-lites* | hppa*-*-openbsd*,
2702 hppa*-*-pro*, i960-*-*, i[[3456789]]86-*-coff,
2703 i[[3456789]]86-*-pe, i[[3456789]]86-*-sco3.2v5*,
2704 i[[3456789]]86-*-sco*, i[[3456789]]86-*-sysv4*,
2705 i[[3456789]]86-*-beos*, i[[3456789]]86-*-rdos*,
2706 m68hc11-*-*|m6811-*-*|m68hc12-*-*|m6812-*-*): Remove cases in
2707 Java-disabling statement.
2708 (mmix-*-*): Don't disable Java again.
2709 (mt-*-*, powerpc*-*-winnt* | powerpc*-*-pe*, powerpcle-*-solaris*,
2710 powerpc-*-beos*, rs6000-*-lynxos*, rs6000-*-*, m68k-apollo-*,
2711 microblaze*, mips*-sde-elf*, mips*-*-irix5*, mips*-*-bsd*,
2712 sparclet-*-aout* | sparc86x-*-*, sparclite-*-*, sparc-*-sunos4*,
2713 tic6x-*-*, v810-*-*, vax-*-*): Remove cases in Java-disabling
2714 statement.
2715 * configure: Regenerate.
2716
899b04ef
JM
27172011-04-28 Joseph Myers <joseph@codesourcery.com>
2718
2719 Merge from GCC:
2720
2721 2011-04-18 Jack Howarth <howarth@bromo.med.uc.edu>
2722
2723 PR lto/48086
2724 * configure.ac: Re-enable LTO on *-apple-darwin9*.
2725 * configure: Regenerate.
2726
9863d716
JM
27272011-04-28 Joseph Myers <joseph@codesourcery.com>
2728
2729 * configure.ac: Separate cases disabling Java and Java libraries
2730 from general case over targets.
2731 * configure: Regenerate.
2732
a90ef4bf
JM
27332011-04-06 Joseph Myers <joseph@codesourcery.com>
2734
2735 * configure.ac (build_tools): Remove build-byacc.
2736 (host_libs): Remove mmalloc.
2737 (host_tools): Remove byacc make patch prms send-pr ash bash bzip2
2738 autoconf automake libtool diff rcs fileutils shellutils time
2739 textutils wdiff find uudecode hello tar gzip indent recode release
2740 sed perl gawk findutils gettext zip.
2741 (libgcj): Remove target-qthreads.
2742 (target_tools): Remove target-examples target-gperf.
2743 (YACC): Don't handle building byacc.
2744 * configure: Regenerate.
2745 * Makefile.def (ash, autoconf, automake, bash, byacc, bzip2, diff,
2746 dosutils, examples, fileutils, find, findutils, gawk, gettext,
2747 gnuserv, gperf, gzip, hello, indent, libtool, make, mmalloc,
2748 patch, perl, prms, qthreads, rcs, recode, release, sed, send-pr,
2749 shellutils, tar, textutils, time, uudecode, wdiff, zip): Don't
2750 handle building components.
2751 * Makefile.in: Regenerate.
2752
05a02268
RW
27532011-04-05 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
2754
2755 * config.sub: Sync from upstream.
2756
c5f5c3c2
JM
27572011-04-01 Joseph Myers <joseph@codesourcery.com>
2758
2759 * configure.ac (avr-*-*): Add comment about why libssp is disabled.
2760 (microblaze*): Don't disable libssp.
2761 * configure: Regenerate.
2762
f6c1938b
JM
27632011-04-01 Joseph Myers <joseph@codesourcery.com>
2764
2765 * configure.ac: Remove code setting CONFIG_SHELL, config_shell and
2766 moveifchange.
2767 * configure: Regenerate.
2768 * Makefile.tpl: Use @SHELL@ not @config_shell@.
2769 * Makefile.in: Regenerate.
2770
1f111696
JM
27712011-04-01 Joseph Myers <joseph@codesourcery.com>
2772
2773 * configure.ac (*-*-sysv4*): Don't enable libgomp.
2774 (alpha*-*-*vms*, i[[34567]]86-*-sco3.2v5*, mn10300-*-*,
2775 powerpc-*-chorusos*, powerpc*-*-eabi*, powerpc*-*-sysv*,
2776 powerpc*-*-kaos*, s390x-ibm-tpf*, sparc64-*-elf*, v850*-*-*,
2777 xtensa*-*-elf*, *-*-beos*, *-*-elf*, *-*-netware*, *-*-rtems*,
2778 *-*-sysv[[45]]*, *-*-vxworks*, *-wrs-windiss): Remove
2779 md_exec_prefix cases.
2780 * configure: Regenerate.
2781
065a5627
JM
27822011-04-01 Joseph Myers <joseph@codesourcery.com>
2783
2784 * configure.ac: Separate cases disabling target-libssp,
2785 target-libiberty, target-libstdc++-v3 and Fortran from general
2786 case over targets.
2787 * configure: Regenerate.
2788
b2f14e4a
JM
27892011-04-01 Joseph Myers <joseph@codesourcery.com>
2790
2791 * configure.ac (*-*-chorusos): Don't disable libgcj.
2792 (*-*-freebsd[[12]] | *-*-freebsd[[12]].* | *-*-freebsd*aout*):
2793 Remove case.
2794 (*-*-kaos*): Don't disable GCC libraries, zlib or fastjar.
2795 (arm-*-coff): Don't disable libgcj.
2796 (arm*-*-linux-gnueabi): Remove useless assignment.
2797 (arm-*-riscix*): Don't disable libgcj.
2798 (bfin-*-*): Don't enable target-bsp and target-cygmon depending on
2799 configuration.
2800 (c4x-*-* | tic4x-*-*): Don't disable GCC libraries.
2801 (c54x*-*-*): Remove case.
2802 (tic54x-*-*): Don't disable GCC or GCC libraries.
2803 (cris-*-* | crisv32-*-*): Don't handle *-*-aout. Change *-*-elf
2804 to *.
2805 (d10v-*-*): Don't disable GCC libraries.
2806 (d30v-*-*): Don't disable libgcj.
2807 (h8500-*-*): Don't disable GCC libraries.
2808 (i960-*-*): Don't disable libgcj.
2809 (i[[3456789]]86-*-linux*): Don't handle *-*-*libc1*.
2810 (i[[3456789]]86-*-sco3.2v5*, i[[3456789]]86-*-sco*,
2811 i[[3456789]]86-*-sysv4*, i[[3456789]]86-*-beos*): Don't disable
2812 libgcj.
2813 (m68k-*-coff*): Remove case.
2814 (mmix-*-*): Don't disable libgloss on host.
2815 (mn10200-*-*, mn10300-*-*): Remove cases.
2816 (powerpc*-*-winnt* | powerpc*-*-pe*, powerpcle-*-solaris*,
2817 powerpc-*-beos*, m68k-apollo-*, mips*-*-irix5*, mips*-*-bsd*):
2818 Don't disable libgcj.
2819 (romp-*-*): Remove case.
2820 (sparclite-*-*, sparc-*-sunos4*): Don't disable libgcj.
2821 (sparc-*-solaris2.[[0-6]] | sparc-*-solaris2.[[0-6]].*): Remove
2822 case.
2823 (v810-*-*): Don't disable GCC libraries.
2824 (v850*-*-*, vax-*-vms, xtensa*-*-*): Remove cases.
2825 (ip2k-*-*): Don't disable GCC libraries.
2826 * configure: Regenerate.
2827
6a608608
JM
28282011-03-28 Joseph Myers <joseph@codesourcery.com>
2829
2830 * configure.ac (i[[3456789]]86-*-msdosdjgpp*): Don't disable
2831 libffi on host.
2832 (x86_64-*-mingw*, i[[3456789]]86-*-mingw32*): Don't disable newlib
2833 on host.
2834 (c54x*-*-* | tic54x-*-*): Don't disable newlib on host.
2835 * configure: Regenerate.
2836
5b806d27
NC
28372011-03-26 John Marino <binutils@marino.st>
2838
2839 * configure.ac: Add support for *-*-dragonfly*
2840 * configure: Regenerate.
2841
0377a422
JM
28422011-03-25 Joseph Myers <joseph@codesourcery.com>
2843
2844 * configure.ac (native_only): Remove.
2845 (i[[3456789]]86-*-msdosdjgpp*): Don't disable expect dejagnu
2846 send-pr uudecode guile gnuserv on host.
2847 (x86_64-*-mingw*): Don't disable expect dejagnu autoconf automake
2848 send-pr rcs guile perl texinfo libtool on host.
2849 (i[[3456789]]86-*-mingw32*): Don't disable expect dejagnu autoconf
2850 automake send-pr rcs guile perl texinfo libtool on host.
2851 (*-*-cygwin*, *-*-netbsd*): Remove host cases.
2852 (*-*-kaos*): Don't disable target-examples target-gperf on target.
2853 (alpha*-dec-osf*): Don't disable fileutils on target.
2854 (sh*-*-pe|mips*-*-pe|*arm-wince-pe): Don't disable target-examples
2855 texinfo send-pr expect dejagnu on target.
2856 (arm-*-elf* | arm*-*-eabi*, arm*-*-linux-gnueabi): Don't disable
2857 target-qthreads on target.
2858 (hppa*-hp-hpux11*, hppa*-*-*): Don't disable shellutils on target.
2859 (ia64*-*-elf*, ia64*-*-*vms*): Don't disable mmalloc on target.
2860 (i[[3456789]]86-w64-mingw*, i[[3456789]]86-*-mingw*,
2861 x86_64-*-mingw*): Don't disable expect on target.
2862 (*-*-cygwin*): Don't disable target-gperf on target.
2863 (powerpc*-*-winnt* | powerpc*-*-pe*): Don't disable make expect
2864 gnuserv on target.
2865 (powerpcle-*-solaris*): Don't disable make expect gnuserv on
2866 target.
2867 * configure: Regenerate.
2868
2354b38b
JM
28692011-03-25 Joseph Myers <joseph@codesourcery.com>
2870
2871 * configure.ac (target_tools): Remove target-groff.
2872 (native_only): Remove target-groff.
2873 (hppa*64*-*-*): Don't disable byacc.
2874 (i[[3456789]]86-*-mingw32*): Remove commented-out noconfigdirs
2875 setting.
2876 (*-*-kaos*): Don't skip target-librx and target-groff.
2877 (*-*-netware*): Don't skip target-libmudflap.
2878 (*-*-tpf*): Don't skip target-libmudflap.
2879 (sh*-*-pe|mips*-*-pe|*arm-wince-pe): Don't condition configured
2880 directories on the host.
2881 (ia64*-*-*vms*): Don't skip tix.
2882 (sh-*-* | sh64-*-*): Don't condition skipped directories on the
2883 host.
2884 * configure: Regenerate.
2885
28d9b232
PB
28862011-03-24 Paolo Bonzini <pbonzini@redhat.com>
2887
2888 * configure.ac: Remove references to mt-mep, mt-netware,
2889 mt-wince.
2890 * Makefile.def: Add all-utils soft dependencies.
2891 * Makefile.tpl: Remove GDB_NLM_DEPS.
2892 * configure: Regenerate.
2893 * Makefile.in: Regenerate.
2894
dbbe5f95
PB
28952011-03-24 Paolo Bonzini <bonzini@gnu.org>
2896
2897 Sync from GCC:
2898
2899 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2900
2901 * configure.ac: Do not include mh-x86omitfp.
2902 * configure: Regenerate.
2903
2904 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2905
2906 * configure.ac: Remove empty cases.
2907 * configure: Regenerate.
2908
2909 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2910
2911 * Makefile.def: Add dependency from termcap to gdb.
2912 * Makefile.in: Regenerate.
2913
2914 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2915
2916 * configure.ac: Remove all mentions of mh-sysv4 and mh-solaris.
2917 * configure: Regenerate.
2918 * Makefile.def: Remove all mentions of X11_FLAGS_TO_PASS.
2919 * Makefile.tpl: Likewise.
2920 * Makefile.in: Regenerate.
2921
2922 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2923
2924 * configure.ac: Remove all mentions of tentative_cc.
2925 * configure: Regenerate.
2926
2927 2011-03-16 Jack Howarth <howarth@bromo.med.uc.edu>
2928
2929 PR lto/48086
2930 * configure.ac: Re-enable LTO on *-apple-darwin9.
2931 * configure: Regenerate.
2932
3516a403
JM
29332011-03-24 Joseph Myers <joseph@codesourcery.com>
2934
2935 * configure.ac (i[[3456789]]86-*-vsta, i[[3456789]]86-*-go32*,
2936 i[[3456789]]86-*-beos*, powerpc-*-beos*, m68k-hp-hpux*,
2937 m68k-apollo-sysv*, m68k-apollo-bsd*, m88k-dg-dgux*,
2938 m88k-harris-cxux*, m88k-motorola-sysv*, mips*-dec-ultrix*,
2939 mips*-nec-sysv4*, mips*-sgi-irix4*, mips*-*-sysv4*, mips*-*-sysv*,
2940 i370-ibm-opened*, i[[3456789]]86-*-sysv5*, i[[3456789]]86-*-dgux*,
2941 i[[3456789]]86-ncr-sysv4.3*, i[[3456789]]86-ncr-sysv4*,
2942 i[[3456789]]86-*-sco3.2v5*, i[[3456789]]86-*-sco*,
2943 i[[3456789]]86-*-udk*, vax-*-ultrix2*, m68k-sun-sunos*,
2944 hppa*-*-hiux*, *-*-hiux*, rs6000-*-lynxos*, *-*-sysv4*,
2945 *-*-rhapsody*): Remove host cases.
2946 * configure: Regenerate.
2947
93cc359e
JM
29482011-03-24 Joseph Myers <joseph@codesourcery.com>
2949
2950 * configure.ac (ppc*-*-pe): Remove host case.
2951 (strongarm-*-coff | xscale-*-coff, strongarm-*-elf* |
2952 xscale-*-elf*, thumb-*-coff, thumb-*-elf, thumb-*-pe, ep9312-*-elf
2953 | ep9312-*-coff, parisc*64*-*-linux*, ppc*-*-pe): Remove target
2954 cases.
2955 * configure: Regenerate.
2956
29b2c556
JM
29572011-03-24 Joseph Myers <joseph@codesourcery.com>
2958
2959 * config.sub: Update to version 2011-03-23.
2960
f0ff0f90
JM
29612011-03-22 Joseph Myers <joseph@codesourcery.com>
2962
2963 * configure.ac (arm-semi-aof, crx-*-*, parisc*-*-linux*,
2964 i370-*-opened*, i[[3456789]]86-moss-msdos | i[[3456789]]86-*-moss*
2965 | i[[3456789]]86-*-uwin*, mcore-*-pe*): Remove empty cases.
2966 * configure: Regenerate.
2967
782cb41f
JM
29682011-03-22 Joseph Myers <joseph@codesourcery.com>
2969
2970 * config-ml.in: Don't handle arc-*-elf*.
2971 * configure.ac (arc-*-*, crx-*-*, i[[3456789]]86-*-pe,
2972 m68hc11-*-*|m6811-*-*|m68hc12-*-*|m6812-*-*, mcore-*-pe*): Don't
2973 handle GCC libraries.
2974 * configure: Regenerate.
2975
0e8ad34f
RO
29762011-03-21 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2977
2978 PR bootstrap/48120:
2979 * configure.ac (pwllib): Use LIBS instead of LDFLAGS.
2980 Add -lstdc++ -lm to LIBS.
2981 * configure: Regenerate.
2982
5548b4ce
DE
29832011-03-18 David Edelsohn <dje.gcc@gmail.com>
2984
2985 * config.guess: Update to version 2011-02-02
2986 * config.sub: Update to version 2011-02-24
2e702c99 2987
86ed8cf6
SP
29882011-03-03 Sebastian Pop <sebastian.pop@amd.com>
2989
9eb322aa
MF
2990 * configure.ac: Adjust test of with_ppl.
2991 * configure: Regenerated.
86ed8cf6 2992
b123da99
SP
29932011-03-02 Sebastian Pop <sebastian.pop@amd.com>
2994
2995 * configure.ac: Add -lpwl to ppllibs.
2996 * config/cloog.m4: Add -lisl to clooglibs.
2997 * configure: Regenerated.
2998
822ce8ee
RW
29992011-02-13 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3000
3001 Import from Libtool and gnulib:
3002
3003 2011-01-27 Gerald Pfeifer <gerald@pfeifer.com>
3004
3005 Prepare for supporting FreeBSD 10.
3006 * config.rpath: Remove handling of freebsd1* which soon would
3007 match FreeBSD 10.0.
3008
3009 2011-01-20 Gerald Pfeifer <gerald@pfeifer.com> (tiny change)
3010
3011 Remove support for FreeBSD 1.x.
3012 * libtool.m4 (_LT_LINKER_SHLIBS)
3013 (_LT_SYS_DYNAMIC_LINKER): Remove handling of freebsd1* which
3014 soon would incorrectly match FreeBSD 10.0.
3015
dcb5e506
RW
30162011-02-12 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3017
3018 PR binutils/12283
3019 * MAINTAINERS (mkinstalldirs): Comes from Automake.
3020 (move-if-change): Comes from gnulib.
3021 * move-if-change: Import version from gnulib.
3022
8d8eef9a
RW
30232011-02-12 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3024
3025 Sync from GCC:
3026
3027 2011-02-12 Alexandre Oliva <aoliva@redhat.com>
3028
3029 PR lto/47225
3030 * Makefile.def (lto-plugin): Double dash for enable-shared.
3031 (configure-gcc): Depend on all-lto-plugin.
3032 * Makefile.in: Rebuilt.
3033
3034 2011-02-11 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3035
3036 * configure.ac: Remove extra bracket.
3037 * configure: Regenerate.
3038
3039 2011-02-06 Kai Tietz <kai.tietz@onevision.com>
3040
3041 PR lto/47225
3042 * Makefile.def: Add dependency for install-gcc
3043 on install-lto-plugin.
3044 * Makfile.in: Regenerated
3045
3046 2011-01-25 Jakub Jelinek <jakub@redhat.com>
3047
3048 * configure.ac: If with_ppl is no, move setting with_cloog=no
3049 after CLOOG_REQUESTED check.
3050 * configure: Regenerated.
3051
3052 2011-01-25 Sebastian Pop <sebastian.pop@amd.com>
3053
3054 * configure.ac: Call AC_MSG_ERROR when PPL 0.11 is not present and
3055 CLooG has been requested.
3056 * configure: Regenerated.
3057
3058 2011-01-25 Sebastian Pop <sebastian.pop@amd.com>
3059
3060 * configure: Regenerated.
3061 * configure.ac: Check for version 0.11 (or later revision) of PPL.
3062
3063 2011-01-25 Tobias Grosser <grosser@fim.uni-passau.de>
3064
3065 * configure: Regenerated.
3066 * configure.ac: Use CLOOG_CHECK_VERSION(0,16,1).
3067
3068 2011-01-07 Jan Hubicka <jh@suse.cz>
3069
3070 PR lto/47225
3071 * Makefile.in: Regenerate.
3072 * Makefile.def (lto-plugin): Always pass enable-shared to the plugin
3073 configure.
3074
65b4571a
AO
30752011-01-31 Alexandre Oliva <aoliva@redhat.com>
3076
3077 PR libgcj/44341
3078 * configure.ac: Discard --with-* flags for host when configuring
3079 target libraries for cross build.
3080 * configure: Rebuilt.
3081
7837304f
AS
30822011-01-21 Andreas Schwab <schwab@redhat.com>
3083
3084 Sync from GCC:
3085
3086 2011-01-21 Andreas Schwab <schwab@redhat.com>
3087
3088 * configure.ac: Use AS_HELP_STRING throughout.
3089 * configure: Regenerate.
3090
3091 2011-01-18 Jie Zhang <jie.zhang@analog.com>
3092
3093 * configure.ac (bfin-*-*): Remove gdb from noconfigdirs.
3094 * configure: Regenerate.
3095
115ef890
RW
30962010-12-10 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
3097
3098 * ltmain.sh (relink): Use absolute path when hardcoding with -L.
3099
92c9a463
JB
31002011-01-13 Joel Brobecker <brobecker@adacore.com>
3101
3102 * configure.ac: Remove readline, mmalloc, and gdb from noconfigdirs
3103 for ia64-hpux.
3104 * configure: Regenerate.
3105
887ebfb4
RW
31062011-01-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3107
3108 Sync from GCC:
3109 2010-12-22 Hariharan Sandanagobalane <hariharan@picochip.com>
3110
3111 * configure.ac: (picochip): Disable libiberty.
3112 * configure: Regenerate.
3113
04d2c2b2
JJ
31142010-12-18 Jeff Johnston <jjohnstn@redhat.com>
3115
3116 * COPYING.LIBGLOSS: Remove the GPL for fr30 target.
3117
33d23ee8
ILT
31182010-12-10 Ian Lance Taylor <iant@google.com>
3119
3120 PR bootstrap/46819
3121 * configure.ac: For --disable-libgcj clear libgcj_saved.
3122 * configure: Rebuild.
3123
89a1e9c3
PB
31242010-12-10 Tobias Burnus <burnus@net-b.de>
3125
3126 PR fortran/46540
3127 * configure.ac: Add --disable-libquadmath and
3128 --disable-libquadmath-support.
3129 * configure: Regenerate.
3130
ac7bcd26
TG
31312010-12-10 Tristan Gingold <gingold@adacore.com>
3132
3133 * src-release (ETC_SUPPORT): add gnu-oids.texi
3134
d357cef7
HPN
31352010-12-03 Hans-Peter Nilsson <hp@axis.com>
3136
3137 PR libffi/46792
3138 * configure.ac (cris-*-elf, crisv32-*-elf): Disable target-libffi.
3139 * configure: Regenerate.
3140
4f11b223
ILT
31412010-12-02 Ian Lance Taylor <iant@google.com>
3142
3143 * configure.ac: Always set default for poststage1_ldflags to
3144 -static-libstdc++ -static-libgcc.
3145
989abc33
JJ
31462010-12-02 Jeff Johnston <jjohnstn@redhat.com>
3147
3148 * COPYING.NEWLIB: Add National Semiconductor notice.
3149
950386c6
AS
31502010-11-29 Andreas Schwab <schwab@redhat.com>
3151
3152 * configure.ac: Move comment to remove extra space in last argument
3153 of GCC_TARGET_TOOL.
3154
87cda2cf
AO
31552010-11-26 Alexandre Oliva <aoliva@redhat.com>
3156
7d509c83 3157 PR other/46026
87cda2cf
AO
3158 * configure.ac (CXX_FOR_TARGET): Add -funconfigured-libstdc++-v3.
3159 * Makefile.def (CXX_FOR_TARGET): Removed from flags_to_pass.
3160 * Makefile.tpl (CXX_FOR_TARGET_FLAG_TO_PASS): New.
3161 (BASE_FLAGS_TO_PASS): Use it.
3162 * configure: Rebuilt.
3163 * Makefile.in: Rebuilt.
3164
d3b50760
L
31652010-11-23 H.J. Lu <hongjiu.lu@intel.com>
3166
3167 PR binutils/12258
3168 * configure.ac: Correct comments for --enable-gold/--enable-ld.
3169 Properly check default linker.
3170 * configure: Regnerated.
3171
c7791212
NC
31722010-11-23 Matthias Klose <doko@ubuntu.com>
3173
3174 * configure.ac: For --enable-gold, handle value `default' instead of
3175 `both*'. New configure option --{en,dis}able-ld.
3176 * configure: Regenerate.
3177
9e1a94f4
ILT
31782010-11-20 Ian Lance Taylor <iant@google.com>
3179
3180 * configure.ac: Only disable a language library if no language needs
3181 it. Don't let --disable-libgcj uncondtionally disable libffi.
3182 * configure: Rebuild.
3183
ceca0218
PB
31842010-11-20 Paolo Bonzini <bonzini@gnu.org>
3185
3186 * configure: Regenerate.
3187
9b980aa1
RW
31882010-11-20 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3189
3190 PR other/46202
3191 * configure.ac: Fix just-built in-tree STRIP name to be
3192 binutils/strip-new.
3193 * configure: Regenerate.
3194 * Makefile.def (install-strip-gcc, install-strip-binutils)
3195 (install-strip-opcodes, install-strip-ld, install-strip-itcl)
3196 (install-strip-sid): Mirror dependencies on non-strip variants
3197 of these targets on the respective -strip prerequisites.
3198 * Makefile.tpl (install-strip, install-strip-host)
3199 (install-strip-target): New targets.
3200 (install-strip-[+module+], install-strip-target-[+module+]):
3201 New targets.
3202 * Makefile.in: Regenerate.
3203
e552509b
ILT
32042010-11-19 Ian Lance Taylor <iant@google.com>
3205 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3206
3207 * configure.ac: Add target-libgo to target_libraries. Set
3208 and substitute GOC_FOR_BUILD and GOC_FOR_TARGET.
3209 * Makefile.tpl (BUILD_EXPORTS): Add GOC and GOCFLAGS.
3210 (HOST_EXPORTS): Add GOC.
3211 (BASE_TARGET_EXPORTS): Add GOC.
3212 (GOC_FOR_BUILD, GOCFLAGS, GOC_FOR_TARGET): New variables.
3213 (GOCFLAGS_FOR_TARGET): New variable.
3214 (EXTRA_HOST_FLAGS): Add GOC.
3215 (EXTRA_TARGET_FLAGS): Add GOC and GOCFLAGS.
3216 * Makefile.def (target_modules): Add libgo.
3217 (flags_to_pass): Add GOC_FOR_TARGET and GOCFLAGS_FOR_TARGET.
3218 (dependencies): Add dependency from configure-target-libgo to
3219 configure-target-libffi and all-target-libstdc++-v3. Add
3220 dependencies from all-target-libgo to all-target-libffi.
3221 (languages): Add go.
3222 * configure: Rebuild.
3223 * Makefile.in: Rebuild.
3224
32252010-11-19 Ian Lance Taylor <iant@google.com>
3226
3227 * config-ml.in: Add Go support: treat GOC and GOCFLAGS like other
3228 compiler/flag environment variables.
3229
32302010-11-18 Ian Lance Taylor <iant@google.com>
3231
3232 * configure.ac: Check for lang_requires_boot_languages in
3233 config-lang.in files.
3234 * configure: Rebuild.
3235
8c21d9c7
MF
32362010-11-17 Mike Frysinger <vapier@gentoo.org>
3237
3238 * .gitignore: New file.
3239
e552509b
ILT
32402010-11-16 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
3241 Tobias Burnus <burnus@net-b.de>
3242
3243 PR fortran/32049
3244 * Makefile.def: Add libquadmath; build it with language=fortran.
3245 * configure.ac: Add libquadmath.
3246 * Makefile.tpl: Handle multiple libs in check-[+language+].
3247 * Makefile.in: Regenerate.
3248 * configure: Regenerate.
3249
32502010-11-15 Andreas Schwab <schwab@redhat.com>
3251
3252 * configure.ac: Fix spelling in option names.
3253 * configure: Regenerated.
3254
32552010-11-13 Georg-Johann Lay <georgjohann@web.de>
3256
3257 PR bootstrap/39622
3258 * configure.ac (FLAGS_FOR_TARGET): Add include-fixed path.
3259 * configure: Regenerated.
3260
32612010-11-12 Tobias Grosser <grosser@fim.uni-passau.de>
3262
3263 * config/cloog.m4: Add -enable-cloog-backend=(isl|ppl|ppl-legacy) to
3264 define the cloog backend to use. Furthermore, only pass the ppllibs to
3265 the configure checks, if necessary.
3266 * configure: Regenerate.
3267
32682010-11-12 Tobias Grosser <grosser@fim.uni-passau.de>
3269
3270 * config/cloog.m4: Use CLooG predefined macro to check for CLooG PPL.
3271 * configure: regenerate
3272
32732010-11-12 Tobias Grosser <grosser@fim.uni-passau.de>
3274
3275 * config/cloog.m4: Fix typo. verison -> version.
3276 * configure: Regenerate.
3277
32782010-11-12 Tobias Grosser <grosser@fim.uni-passau.de>
3279
3280 * config/cloog.m4: Pass ppl libraries to the CLooG version check.
3281 * configure: Regenerate.
3282
32832010-11-11 Andreas Simbuerger <simbuerg@fim.uni-passau.de>
3284
3285 * configure.ac: Support official CLooG.org versions.
3286 * configure: Regenerate.
3287 * config/cloog.m4: New.
3288
aa291e2d
ME
32892010-11-05 Michael Eager <eager@eagercon.com>
3290
3291 * COPYING.LIBGLOSS: Correct typo in microblaze.
3292 * COPYING.NEWLIB: Same.
3293
e552509b
ILT
32942010-11-04 Iain Sandoe <iains@gcc.gnu.org>
3295
3296 * configure.ac (*-*-darwin*): Use mh-darwin for all Darwin variants.
3297 * configure: Regenerate.
3298
74cea91b
DK
32992010-11-03 Ian Lance Taylor <iant@google.com>
3300 Dave Korn <dave.korn.cygwin@gmail.com>
3301
3302 PR lto/46273
3303 * configure.ac: Remove libelf tests. Build lto-plugin on ELF always
3304 and on other supported platforms whenever LTO is enabled.
3305 * configure: Rebuild.
3306
6d0cd39e
AM
33072010-11-02 Alan Modra <amodra@gmail.com>
3308
3309 PR binutils/12110
3310 * configure.ac: Error when source path contains spaces.
3311 * configure: Regenerate.
3312
18a8530e
ILT
33132010-10-20 Ian Lance Taylor <iant@google.com>
3314
3315 * Makefile.def (target_modules): Set lib_path to src/.libs for
3316 libstdc++-v3 module.
3317 * Makefile.tpl: Fix typo in TARGET_LIB_PATH comment.
3318 * Makefile.in: Rebuild.
3319
6ed3211e
JJ
33202010-10-08 Bernd Schmidt <bernds@codesourcery.com>
3321 Joseph Myers <joseph@codesourcery.com>
3322
3323 * COPYING.LIBGLOSS: Add National Semiconductor and CodeSourcery
3324 notices.
3325 * COPYING.NEWLIB: Add Texas Instruments notice.
3326
a8eb3f0a
DK
33272010-10-07 Dave Korn <dave.korn.cygwin@gmail.com>
3328
3329 * configure.ac (build_lto_plugin): New shell variable.
3330 (--enable-lto): Turn on by default for all non-ELF platforms that
3331 have had LTO support added so far. Set build_lto_plugin appropriately
3332 for both ELF and non-ELF.
3333 (configdirs): Add lto-plugin or not based on build_lto_plugin.
3334 * configure: Regenerate.
3335
4074d5f2
RW
33362010-10-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3337
3338 PR bootstrap/45326
3339 PR bootstrap/45174
3340 * configure.ac: Honor initial values of $build_configargs,
3341 $host_configargs, $target_configargs. Mark the precious, so
3342 environment settings get recorded.
3343 * configure: Regenerate.
3344
29821356
RW
33452010-10-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3346
3347 Sync from GCC:
3348
3349 2010-09-30 Michael Eager <eager@eagercon.com>
3350
3351 * configure.ac (microblaze): Add target-libssp to noconfigdirs.
3352 * configure: Regenerate.
3353
3354 2010-09-21 Iain Sandoe <iains@gcc.gnu.org>
3355
3356 * configure.ac (enable-lto): Add Darwin to the list of supported lto
3357 targets and amend comment.
3358 * configure: Regenerate.
3359
3360 2010-09-03 Jack Howarth <howarth@bromo.med.uc.edu>
3361
3362 * configure.ac: Enable LTO by default on Darwin.
3363 * configure: Regenerate.
3364
3365 2010-07-23 Marc Glisse <marc.glisse@normalesup.org>
3366
3367 PR bootstrap/44455
3368 * configure.ac (extra_mpfr_configure_flags): Copy from
3369 extra_mpc_gmp_configure_flags.
3370 * configure: Re-generated.
3371
57eefe4d
RW
33722010-09-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3373
3374 Sync from GCC:
3375
3376 PR bootstrap/45796
3377 * Makefile.def (info-gcc, dvi-gcc, pdf-gcc, html-gcc):
3378 Depend on all-build-libiberty.
3379 * Makefile.in: Regenerate.
3380
33812010-09-27 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3cac54d2
RW
3382
3383 Sync from GCC:
3384
3385 PR bootstrap/44621
3386 * configure.ac: Fix unportable shell quoting.
3387 * configure: Regenerate.
3388
48bb73dd
RW
33892010-07-26 Naveen.H.S <naveen.S@kpitcummins.com>
3390
3391 * configure.ac: Support all v850 targets.
3392 * configure: Regenerate.
3393
1d14850f
PB
33942010-07-17 Jack Howarth <howarth@bromo.med.uc.edu>
3395
3396 PR target/44862
3397 * Makefile.tpl (POSTSTAGE1_CXX_EXPORT):
3398 Provide -B option to allow for link spec %s substitutions for
3399 libstdc++.a on darwin.
3400 * Makefile.in: Regenerate.
3401
7530c480
AO
34022010-06-10 Alexandre Oliva <aoliva@redhat.com>
3403
3404 * Makefile.def (configure-gcc): Depend on all-libelf.
3405 * Makefile.in: Rebuild.
3406
285d560d
RW
34072010-06-01 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3408
3409 * config.sub, config.guess: Update from upstream sources.
3410
a009f2e7
RW
34112010-06-01 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3412
3413 Sync from GCC:
3414
3415 2010-05-05 Sebastian Pop <sebastian.pop@amd.com>
3416 * configure.ac: Allow all the versions greater than 0.10 of PPL.
3417 * configure: Regenerated.
3418
3419 2010-04-20 Eric Botcazou <ebotcazou@adacore.com>
3420 * configure.ac (BUILD_CONFIG): Redirect output to /dev/null.
3421 * configure: Regenerate.
3422
3423 2010-04-17 Ralf Cors<E9>pius <ralf.corsepius@rtems.org>
3424 * configure.ac (*-*-rtems*): Add target-libiberty to $skipdirs.
3425 * configure: Regenerate.
3426
3427 2010-04-16 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3428 * configure.ac: Check for elf_getshdrstrndx or elf_getshstrndx
3429 separately.
3430 * configure: Regenerate.
3431
3432 2010-04-13 Steve Ellcey <sje@cup.hp.com>
3433 * configure: Regenerate after change to elf.m4.
3434
3435 2010-04-02 Sebastian Pop <sebastian.pop@amd.com>
3436 * configure.ac: Add brackets around AC_TRY_COMPILE alternative.
3437 * configure: Regenerated.
3438
3439 2010-04-02 Sebastian Pop <sebastian.pop@amd.com>
3440 * configure.ac: Print "buggy but acceptable" when CLooG
3441 revision is less than 9.
3442 * configure: Regenerated.
3443
e49e5c92
DK
34442010-05-26 Dave Korn <dave.korn.cygwin@gmail.com>
3445
3446 Merge from gcc:
3447
3448 2010-05-18 Steven Bosscher <steven@gcc.gnu.org>
3449 * configure.ac (--enable-lto): All *-apple-darwin* now support LTO.
3450 * configure: Regenerate.
3451
3452 2010-05-07 Steven Bosscher <steven@gcc.gnu.org>
3453 * configure.ac (--enable-lto): Add x86_64-apple-darwin* as
3454 a platform that supports LTO.
3455 * configure: Regenerate.
3456
3457 2010-04-27 Dave Korn <dave.korn.cygwin@gmail.com>
3458 PR lto/42776
3459 * configure.ac (--enable-lto): Refactor handling so libelf tests
3460 are only performed inside then-clause of ACX_ELF_TARGET_IFELSE,
3461 and allow LTO to be explicitly enabled on non-ELF platforms that
3462 are known to support it inside else-clause.
3463 * configure: Regenerate.
3464
e6de499b
NC
34652010-04-27 Roland McGrath <roland@redhat.com>
3466 H.J. Lu <hongjiu.lu@intel.com>
3467
3468 * configure.ac (--enable-gold): Support both, both/gold and
3469 both/bfd to add gold to configdirs without removing ld.
3470 * configure: Regenerated.
3471
3472 * Makefile.def: Add install-gold dependency to install-ld.
3473 * Makefile.in: Regenerated.
3474
d594eacc
TG
34752010-04-14 Tristan Gingold <gingold@adacore.com>
3476
3477 * configure.ac (alpha*-*-*vms*): Remove ld from noconfigdirs.
3478 * configure: Regenerate.
3479
938d2b74
RW
34802010-04-08 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3481
3482 Merge from gcc:
3483 PR bootstrap/43615
3484 PR bootstrap/43328
3485 Revert:
3486 2010-03-31 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3487 * configure.ac: Do not pass --enable-multilib nor
3488 --disable-multilib in baseargs. Accept explicitly passed
3489 --enable_multilib.
3490 * configure: Regenerate.
3491
a9ef41a7
RW
34922010-03-31 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3493
3494 PR bootstrap/43328
3495 * configure.ac: Do not pass --enable-multilib nor
3496 --disable-multilib in baseargs. Accept explicitly passed
3497 --enable_multilib.
3498 * configure: Regenerate.
3499
619a3713
JM
35002010-03-23 Joseph Myers <joseph@codesourcery.com>
3501
3502 * configure.ac (tic6x-*-*): New case.
3503 * configure: Regenerate.
3504
92f4e989
JM
35052010-03-23 Joseph Myers <joseph@codesourcery.com>
3506
3507 Merge from gcc:
3508 2010-03-19 Jack Howarth <howarth@bromo.med.uc.edu>
3509 PR ada/42554
3510 * configure.ac: Only pass -c to ranlib for darwin9 and earlier.
3511 * configure: Regenerate.
3512
c35a0556
JM
35132010-03-23 Joseph Myers <joseph@codesourcery.com>
3514
3515 * config.sub: Update to version 2010-03-22.
3516 * config.guess: Update to version 2009-12-30.
3517
18fa8f9c
JM
35182010-03-14 Joseph Myers <joseph@codesourcery.com>
3519
3520 Merge from gcc:
3521 2010-01-11 Richard Guenther <rguenther@suse.de>
3522 PR lto/41569
3523 * Makefile.def (all-lto-plugin): Depend on all-gcc.
3524 * Makefile.in: Regenerated.
3525
ba98da75
RO
35262010-03-01 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3527
3528 PR libstdc++/32499
3529 * configure.ac (RANLIB): Default to true.
3530 (STRIP): Likewise.
3531 (RANLIB_FOR_TARGET): Remove superfluous : argument.
3532 * configure: Regenerate.
3533
3994761f
NC
35342010-02-17 Nick Clifton <nickc@redhat.com>
3535
3536 PR 11238
3537 * Makefile.tpl (local-distclean): Also remove config.cache files in
3538 sub-directories as there may not be Makefiles present in the
3539 sub-directories.
792cdb50
NC
3540 * Makefile.tpl: Use "-exec rm {}" rather than "-delete" to delete
3541 the config.cache files found by the find command.
3542
3994761f
NC
3543 * Makefile.in: Regenerate.
3544 * configure.ac: Revert previous delta.
3545 * configure: Regenerate.
3546
01a82011
NC
35472010-02-15 Nick Clifton <nickc@redhat.com>
3548
3549 PR 11238
3550 * configure.ac: Delete config.cache files in sub-directories when
3551 deleting Makefiles.
3552 * configure: Regenerate.
3553
143754cd
NC
35542010-02-15 Nick Clifton <nickc@redhat.com>
3555
3556 * configure.ac: Sync from gcc.
3557 * configure: Regenerate.
3558
a6b5846e
KG
35592010-01-31 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3560
3561 Sync from gcc:
3562 * configure.ac: Add "recommended" version checks for GMP/MPC.
3563 Update recommended GMP/MPFR/MPC versions.
3564 * configure: Regenerate.
3565
2aa2364a
JR
35662010-01-25 Joern Rennecke <amylaar@spamcop.net>
3567
3568 gcc PR libstdc++/36101, gcc PR libstdc++/42813
3569 * configure.ac (bootstrap_target_libs): Make inclusion of
3570 target-libgomp conditional on libgomb being in target_configdirs.
3571 * configure: Regenerate.
3572
d35e937f
JR
35732010-01-23 Joern Rennecke <amylaar@spamcop.net>
3574
3575 gcc PR libstdc++/36101, gcc PR libstdc++/42813
3576 * configure.ac (bootstrap_target_libs): Include target-libgomp.
3577 * configure: Regenerate.
3578
911e63d0
JR
35792010-01-22 Joern Rennecke <amylaar@spamcop.net>
3580
3581 gcc PR libstdc++/36101, gcc PR libstdc++/42813
3582 * configure.ac (target_configdirs): Substitute.
3583 * Makefile.def: Bootstrap target module libgomp.
3584 Add dependency of all-target-libstdc++-v3 on configure-target-libgomp.
3585 * Makefile.tpl (TARGET_CONFIGDIRS): New makefile variable.
3586 (BASE_TARGET_EXPORTS): Export TARGET_CONFIGDIRS.
3587 * configure, Makefile.in: Regenerate.
3588
3725885a
RW
35892009-12-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3590
3591 * libtool.m4: Sync from git Libtool.
3592 * ltmain.sh: Likewise.
3593 * ltoptions.m4: Likewise.
3594 * ltversion.m4: Likewise.
3595 * lt~obsolete.m4: Likewise.
3596
d5f2ee2e 35972010-01-07 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9eb322aa 3598 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
d5f2ee2e
KG
3599
3600 PR bootstrap/42424
3601 * configure.ac: Include libtool m4 files.
9eb322aa 3602 (_LT_CHECK_OBJDIR): Call it.
d5f2ee2e
KG
3603 (extra_mpc_mpfr_configure_flags, extra_mpc_gmp_configure_flags,
3604 gmplibs, ppllibs, clooglibs): Use $lt_cv_objdir.
3725885a 3605
d5f2ee2e
KG
3606 * configure: Regenerate.
3607
f2b2dd91
RW
36082010-01-07 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3609
3610 PR bootstrap/41818
3611 * Makefile.tpl (BASE_TARGET_EXPORTS): Only add TARGET_LIB_PATH
3612 to $(RPATH_ENVVAR) if bootstrapping. Fix typo in comment.
3613 * Makefile.in: Regenerate.
3614
06ca7962
BE
36152009-12-18 Ben Elliston <bje@au.ibm.com>
3616
3617 * config.sub, config.guess: Update from upstream sources.
3618
30a16d7b
JJ
36192009-12-17 Jeff Johnston <jjohnstn@redhat.com>
3620
3621 * COPYING.NEWLIB: Update copyright date.
3622 * COPYING.LIBGLOSS: Ditto.
3623
d9b76ff9
KG
36242009-12-07 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3625
3626 PR middle-end/30447
3627 PR middle-end/30789
3628 PR other/40302
3629
3630 * configure.ac: Require MPC.
3631 * configure: Regenerate.
3632
3633 * configure.ac: Update minimum MPC version to 0.8.
3634 * configure: Regenerate.
3635
e12dec02
PB
36362009-11-20 Paolo Bonzini <bonzini@gnu.org>
3637
3638 * config.guess: Sync with upstream and gcc.
3639 * config.sub: Sync with upstream and gcc.
3640
606a9ca0
AO
36412009-11-16 Alexandre Oliva <aoliva@redhat.com>
3642
3643 * Makefile.def: Restore host and target settings for gmp.
3644 * Makefile.in: Rebuild.
3645
1f53ca9a
AO
36462009-11-16 Alexandre Oliva <aoliva@redhat.com>
3647
3648 * configure.ac: Add libelf to host_libs. Enable in-tree configury
3649 of ppl and cloog. Fix in-tree configury of libelf, skip tests.
3650 Fix portability of test of C++ as bootstrap language. Add
3651 ppl/src/ppl-config.o to the bootstrap compare exclusion list.
3652 * configure: Rebuild.
3653 * Makefile.def: Drop host and target settings from gmp, mpfr, ppl,
3654 and cloog. Fix in-tree ppl configuration. Introduce libelf
3655 in-tree building.
3656 * Makefile.tpl (POSTSTAGE1_CXX_EXPORT): New.
3657 (POSTSTAGE1_HOST_EXPORTS): Use it.
3658 (STAGE[+id+]_CXXFLAGS): New.
3659 (BASE_FLAGS_TO_PASS): Pass it down.
3660 (configure-stage[+id+]-[+prefix+][+module+]): Use it. Add
3661 extra_exports.
3662 (all-stage[+id+]-[+prefix+][+module+]): Likewise.
3663 (configure-[+prefix+][+module+], all-[+prefix+][+module+]): Add
3664 extra_exports.
3665 * Makefile.in: Rebuild.
3666
36672009-11-06 Ozkan Sezer <sezeroz@gmail.com>
3668
3669 * configure.ac (FLAGS_FOR_TARGET): Add -L and -isystem
3670 paths for *-w64-mingw* and x86_64-*mingw*.
3671 * configure: Regenerated.
3672
36732009-10-30 Kai Tietz <kai.tietz@onevision.com>
3674
3675 * configure.ac: Disable target-winsup & co for
3676 x86_64-*-mingw* and *-w64-mingw* targets.
3677 * configure: Regenerated.
3678
36792009-10-23 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3680
3681 * configure.ac (CLooG test): Use = with test.
3682 * configure: Regenerate.
3683
36842009-10-22 Richard Guenther <rguenther@suse.de>
3685
3686 * configure.ac: Do not set LIBS for ppl/cloog checks. Disable
3687 cloog if the ppl version check failed. Move flags saving
3688 before setting in libelf check.
3689 * configure: Regenerate.
3690
36912009-10-21 Richard Guenther <rguenther@suse.de>
3692
3693 * configure.ac: Adjust the ppl and cloog configure to work as
3694 documented. Disable cloog if ppl was disabled. Omit the version
3695 checks if they were disabled.
3696 * configure: Re-generate.
3697
6811fb56
RW
36982009-10-13 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3699
3700 * configure.ac: Add 'lto' to enable_languages, not
3701 new_enable_languages, and only if not already present.
3702 * configure: Regenerate.
3703
700d40ca
ILT
37042009-10-06 Ian Lance Taylor <iant@google.com>
3705
3706 * Makefile.def: check-gold depends upon all-gas.
3707 * Makefile.in: Rebuild.
3708
37092009-10-03 2009-02-05 Rafael Avila de Espindola <espindola@google.com>
3710
3711 * Makefile.def: all-lto-plugin depends on all-libiberty.
3712 set bootstrap=true for lto-plugin.
3713 Add lto-plugin.
3714 * Makefile.in: Regenerate.
3715 * configure.ac (host_libs): Add lto-plugin.
3716 * configure: Regenerate.
3717
37182009-10-03 Diego Novillo <dnovillo@google.com>
3719
3720 * Makefile.tpl (HOST_EXPORTS): Add LIBELFLIBS and LIBELFINC.
3721 (HOST_LIBELFLIBS): Define.
3722 (HOST_LIBELFINC): Define.
3723 * Makefile.in: Regenerate.
3724 * configure.ac: Add --enable-lto.
3725 Add --with-libelf, --with-libelf-include and --with-libelf-lib.
3726 If --enable-lto is used, add 'lto' to new_enable_languages.
3727 If --enable-lto is used and gold is enabled, add
3728 lto-plugin to configdirs.
3729 * configure: Regenerate.
3730
37312009-10-03 Simon Baldwin <simonb@google.com>
3732
3733 * configure.ac: If --with-system-zlib, suppress local zlib and
3734 pass --with-system-zlib to subdir configure scripts.
3735 * configure: Regenerate.
3736
37372009-10-01 Loren J. Rittle <ljrittle@acm.org>
3738 Paolo Bonzini <bonzini@gnu.org>
3739
3740 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Use $$s rather than
3741 $(srcdir).
3742 * Makefile.in: Rebuilt.
3743
c8cb1b3e
PB
37442009-09-29 Paolo Bonzini <bonzini@gnu.org>
3745
3746 Sync from gcc:
3747 2009-09-26 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3748
3749 * configure.ac: Update minimum MPC version to 0.7.
3750 * configure: Regenerate.
3751
30167e0a
NC
37522009-09-25 Nick Clifton <nickc@redhat.com>
3753
3754 * configure.ac: Pass any --cache-file=/dev/null option on to
3755 subconfigures.
3756 * configure: Regenerate.
3757
707a0b5c
NC
37582009-09-23 Nick Clifton <nickc@redhat.com>
3759
3760 * config.sub, config.guess: Update from upstream sources.
3761
700d40ca
ILT
37622009-09-22 Loren J. Rittle <ljrittle@acm.org>
3763
3764 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Remove stray $$r/.
3765 * Makefile.in: Rebuilt.
3766
2fd0b40b
RW
37672009-09-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3768
3769 PR bootstrap/32272
3770 * configure.ac: Error out if $srcdir isn't '.' but contains
3771 host-${host_noncanonical}.
3772 * configure: Regenerate.
3773
4385ad3c
RW
37742009-09-21 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3775
16b1ad29
RW
3776 * configure.ac: If bootstrapping a combined tree with
3777 --enable-gold, require c++ in stage1_languages.
3778 * configure: Regenerate.
3779
f8dc745f
RW
3780 * configure.ac: Also add target_libs of stage1_languages to
3781 bootstrap_target_libs.
3782 * configure: Regenerate.
3783
4385ad3c
RW
3784 * configure.ac: Diagnose --enable-build-with-cxx bootstrap
3785 with --enable-languages not containing c++.
3786 * configure: Regenerate.
3787
df51e4e1
JZ
37882009-09-16 Jie Zhang <jie.zhang@analog.com>
3789
3790 * configure.ac: Disable java and boehm-gc for bfin-*-*.
3791 * configure: Regenerate.
3792
06a51eac
RW
37932009-09-08 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3794
3795 * configure.ac: Do not use $extrasub for replacing @if/@endif
3796 parts in Makefile; instead, use additional arguments to
3797 AC_CONFIG_COMMANDS to do the replacement manually, with several
3798 sed invocations, to avoid HP-UX sed command limits.
3799 * configure: Regenerate.
3800
96655cc4
AO
38012009-09-04 Alexandre Oliva <aoliva@redhat.com>
3802
3803 * configure.ac (with-build-config): Document. Handle without.
3804 Handle missing argument.
3805 * configure: Rebuilt.
3806
38072009-09-03 Alexandre Oliva <aoliva@redhat.com>
3808
3809 * configure.ac (--with-build-config): New. Set BUILD_CONFIG.
3810 Default to bootstrap-debug only if compare-debug works.
3811 * configure: Rebuilt.
3812 * Makefile.tpl: Make BUILD_CONFIG configure-configurable.
3813 * Makefile.in: Rebuilt.
3814
38152009-09-01 Alexandre Oliva <aoliva@redhat.com>
3816
3817 * Makefile.tpl (BUILD_CONFIG): Default to bootstrap-debug.
3818 * Makefile.in: Rebuilt.
3819
8e957354
PB
38202009-09-02 Paolo Bonzini <bonzini@gnu.org>
3821
3822 * Makefile.tpl (AWK): Fix typo.
3823 * Makefile.in: Regenerate.
3824
38252009-09-02 Paolo Bonzini <bonzini@gnu.org>
3826
3827 * configure.ac: Detect awk and sed.
3828 * Makefile.def (flags_to_pass): Add AWK and SED.
3829 * Makefile.tpl (AWK, SED): New.
3830 (BASE_FLAGS_TO_PASS): Add AWK and SED.
3831 * configure: Regenerate.
3832 * Makefile.in: Regenerate.
3833
fb792462
TG
38342009-09-01 Tristan Gingold <gingold@adacore.com>
3835
3836 * setup.com: Ported to Itanium VMS. Can also build using DCL scripts.
3837 Remove logical names.
3838
a69e7d0a
DK
38392009-08-31 Dave Korn <dave.korn.cygwin@gmail.com>
3840
3841 * ltmain.sh (func_normal_abspath): New function.
3842 (func_relative_path): Likewise.
3843 (func_mode_help): Document new -bindir option for link mode.
3844 (func_mode_link): Add new -bindir option, and use it to place
3845 output DLL if specified.
3846
d444d2ba
RW
38472009-08-24 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3848
3849 * configure.ac (AC_PREREQ): Bump to 2.64.
3850
13b7343a
RW
38512009-08-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3852
af542c2e
RW
3853 * README-maintainer-mode: Point directly to upstream locations
3854 for autoconf, automake, libtool, gettext, instead of copies on
3855 sources.redhat.com. Document required versions.
3856 * configure.ac: Do not substitute datarootdir, htmldir,
3857 pdfdir, docdir. Do not process --with-datarootdir,
3858 --with-htmldir, --with-pdfdir, --with-docdir.
3859 * configure: Regenerate.
3860
81ecdfbb
RW
3861 * configure: Regenerate.
3862
13b7343a
RW
3863 * compile: Sync from Automake 1.11.
3864 * depcomp: Likewise.
3865 * install-sh: Likewise.
3866 * missing: Likewise.
3867 * mkinstalldirs: Likewise.
3868 * ylwrap: Likewise.
3869
c1102ce7
RW
38702009-08-19 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3871
34a0f3cf
RW
3872 * configure.ac: Call AC_DISABLE_OPTION_CHECKING.
3873 (baseargs): Add --disable-option-checking.
3874 * configure: Regenerate.
3875
c1102ce7
RW
3876 * Makefile.def (configure-target-libiberty): Depend on
3877 all-binutils and all-ld.
3878 (configure-target-newlib): Likewise.
3879 * Makefile.in: Regenerate.
3880
e8a5fa9c
RW
38812009-08-19 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3882
3883 Sync with GCC, merge:
3884
3885 2009-07-31 Christian Bruel <christian.bruel@st.com>
3886
3887 * configure.ac (sh*-*-elf): Don't add target-libgloss to noconfigdirs.
3888 * configure: Regenerate.
3889
3890 2009-07-06 Ian Lance Taylor <iant@google.com>
3891
3892 * configure.ac: Add missing comma in AC_ARG_WITH(boot-libs).
3893 * configure: Rebuild.
3894
3895 2009-06-26 Steve Ellcey <sje@cup.hp.com>
3896
3897 PR bootstrap/40338
3898 * configure.ac (comparestring): Create new variable.
3899 * Makefile.tpl (comparestring): Use to skip some comparisions.
3900 * configure: Regenerate.
3901 * Makefile.in: Regenerate.
3902
3903 2009-06-23 Ian Lance Taylor <iant@google.com>
3904
3905 * configure.ac: Add --enable-build-with-cxx. When set, add c++ to
3906 boot_languages. Only bootstrap target libraries listed in
3907 target_libs for some boot language. Add --with-stage1-ldflags,
3908 --with-stage1-libs, --with-boot-ldflags, --with-boot-libs. Remove
3909 with_host_libstdcxx from ppllibs. Only add -fkeep-inline-functions
3910 if not building with C++.
3911 * Makefile.def: For target_module libstdc++-v3, set bootstrap=true.
3912 * Makefile.tpl (STAGE1_LDFLAGS, STAGE1_LIBS): New variables.
3913 (POSTSTAGE1_LDFLAGS, POSTSTAGE1_LIBS): New variables.
3914 (HOST_EXPORTS): Add STAGE1_LDFLAGS to LDFLAGS. Export HOST_LIBS.
3915 (POSTSTAGE1_HOST_EXPORTS): Set CXX and CXX_FOR_BUILD. Add
3916 POSTSTAGE1_LDFLAGS to LDFLAGS. Export HOST_LIBS.
3917 (POSTSTAGE1_FLAGS_TO_PASS): Likewise.
3918 * configure, Makefile.in: Rebuild.
3919
3920 2009-06-08 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3921
3922 * configure.ac: Detect MPC in default directory.
3923 * configure: Regenerate.
3924
3925 2009-06-02 Richard Sandiford <r.sandiford@uk.ibm.com>
3926
3927 * configure.ac (powerpc-*-aix*, rs6000-*-aix*): Add target-newlib
3928 to noconfdirs.
3929 * configure: Regenerate.
3930
3931 2009-05-29 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3932
3933 * Makefile.def: Add MPC support and dependencies.
3934 * configure.ac: Likewise. Reorganize GMP/MPFR checks.
3935
3936 * Makefile.in, configure: Regenerate.
3937
3938 2009-05-24 Nicolas Roche <roche@adacore.com>
3939
3940 * Makefile.tpl (compare-target): Skip ./ada/*tools directories.
3941 * Makefile.in: Regenerate.
3942
3943 2009-05-21 Dave Korn <dave.korn.cygwin@gmail.com>
3944
3945 * configure.ac (cygwin noconfigdirs): Remove libgcj.
3946 * configure: Regenerate.
3947
3948 2009-05-07 Dave Korn <dave.korn.cygwin@gmail.com>
3949
3950 * configure.ac ($with_ppl): Default to no if not supplied.
3951 ($with_cloog): Likewise.
3952 configure: Regenerate.
3953
3954 2009-04-24 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3955
3956 PR bootstrap/39739
3957 * configure.ac (extra_mpfr_configure_flags): Set and AC_SUBST.
3958 * Makefile.def (module=mpfr): Use extra_mpfr_configure_flags.
3959
3960 * configure, Makefile.in: Regenerate.
3961
3962 2009-04-14 Jakub Jelinek <jakub@redhat.com>
3963
3964 * configure.ac: Change copyright header to refer to version
3965 3 of the GNU General Public License and to point readers at the
3966 COPYING3 file and the FSF's license web page.
3967 * Makefile.def: Likewise.
3968 * Makefile.tpl: Likewise.
3969 * Makefile.in: Regenerate.
3970
3971 2009-04-09 Jack Howarth <howarth@bromo.med.uc.edu>
3972
3973 * configure.ac: Restore match for darwin9 or later. Use double
3974 brackets since regeneration eats one pair.
3975 * configure: Regenerate.
3976
bf110216
CF
39772009-08-18 Christopher Faylor <me+cygwin@cgf.cx>
3978
3979 * MAINTAINERS: Perform some obvious fixups.
3980
2262bbf4
BE
39812009-08-17 Ben Elliston <bje@au.ibm.com>
3982
3983 * config.sub, config.guess: Update from upstream sources.
3984
25a07265
NC
39852009-08-06 Michael Eager <eager@eagercon.com>
3986
3987 * configure.ac: Add Microblaze target.
3988 * configure: Regenerate.
3989
85bd1942
TG
39902009-07-02 Tristan Gingold <gingold@adacore.com>
3991
3992 * configure.ac: Do not exclude gas for i386-*-darwin.
3993 Add a case for x86_64-*-darwin.
3994 * configure: Regenerate.
3995
f9806fa5
DE
39962009-06-26 Doug Evans <dje@sebabeach.org>
3997
3998 * Makefile.def (host_modules): Add cgen.
3999 * Makefile.in: Regenerate.
4000 * configure.ac (host_tools): Add cgen.
4001 * configure: Regenerate.
4002
6bfb4e30
JJ
40032009-06-17 Michael Eager <eager@eagercon.com>
4004
4005 * COPYING.LIBGLOSS: Add Xilinx license.
4006
8bcf2718
NC
40072009-06-15 Ryan Mansfield <rmansfield@qnx.com>
4008
4009 * configure.ac: Define is_elf for QNX Neutrino targets.
4010 * configure: Regenerate.
4011
04ec0acb
RW
40122009-06-03 Jerome Guitton <guitton@adacore.com>
4013 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4014
9eb322aa
MF
4015 * Makefile.tpl (all): Avoid a trailing backslash.
4016 * Makefile.in: Regenerate.
04ec0acb 4017
7ee5dbeb
BE
40182009-06-03 Ben Elliston <bje@au.ibm.com>
4019
4020 * config.sub, config.guess: Update from upstream sources.
4021
fda13ee8
AO
40222009-06-02 Alexandre Oliva <aoliva@redhat.com>
4023
4024 * Makefile.tpl ([+compare-target+]): Compare all stage
4025 directories, rather than just gcc.
4026 * Makefile.in: Rebuilt.
4027
4a657b0d
DK
40282009-05-28 Doug Kwan <dougkwan@google.com>
4029
4030 * configure.ac: Support gold for target arm*-*-*.
4031 * configure: Regenerate.
4032
07fc31c9
AO
40332009-05-27 Alexandre Oliva <aoliva@redhat.com>
4034
4035 * Makefile.tpl (all): Avoid harmless warning in make all when
4036 gcc-bootstrap is enabled but stage_last does not exist.
4037 * Makefile.in: Rebuilt.
4038
8a7a39ab
TG
40392009-05-25 Tristan Gingold <gingold@adacore.com>
4040
4041 * setup.com: Complete the file with configuration and build.
4042
b5233201
AO
40432009-05-18 Alexandre Oliva <aoliva@redhat.com>
4044
4045 PR other/40159
4046 * Makefile.tpl (all): Don't assume gcc-bootstrap and
4047 gcc-no-bootstrap are mutually exclusive.
4048 * Makefile.in: Rebuilt.
4049
7b6175f9
AO
40502009-05-18 Alexandre Oliva <aoliva@redhat.com>
4051
4052 PR other/40159
4053 * Makefile.tpl (all): Don't end with unconditional success.
4054 * Makefile.in: Rebuilt.
4055
1b05fbbd
AO
40562009-05-12 Alexandre Oliva <aoliva@redhat.com>
4057
4058 PR target/37137
4059 * Makefile.def (flags_to_pass): Remove redundant and incomplete
4060 STAGE1_CFLAGS, STAGE2_CFLAGS, STAGE3_CFLAGS, and STAGE4_CFLAGS.
4061 Add FLAGS_FOR_TARGET and BUILD_CONFIG.
4062 (bootstrap_stage): Remove bootstrap-debug custom stages. Turn
4063 stage_configureflags, stage_cflags and stage_libcflags into
4064 explicit Makefile macros.
4065 * Makefile.tpl (HOST_EXPORTS, EXTRA_HOST_FLAGS): Pass GCJ and
4066 GFORTRAN.
4067 (POSTSTAGE1_HOST_EXPORTS): Add XGCC_FLAGS_FOR_TARGET and TFLAGS to
4068 CC. Set CC_FOR_BUILD from CC.
4069 (BASE_TARGET_EXPORTS, RAW_CXX_TARGET_EXPORTS,
4070 NORMAL_TARGET_EXPORTS): Move SYSROOT_CFLAGS_FOR_TARGET and
4071 DEBUG_PREFIX_CFLAGS_FOR_TARGET from CFLAGS and CXXFLAGS to
4072 XGCC_FLAGS_FOR_TARGET. Add it along with TFLAGS to CC, CXX, GCJ,
4073 and GFORTRAN.
4074 (TFLAGS, STAGE_CFLAGS, STAGE_TFLAGS, STAGE_CONFIGURE_FLAGS): New.
4075 (_LIBCFLAGS): Renamed to _TFLAGS.
4076 (do-compare-debug, do-compare3-debug): Drop.
4077 (CC, GCC_FOR_TARGET, CXX_FOR_TARGET, RAW_CXX_FOR_TARGET,
4078 GCJ_FOR_TARGET, GFORTRAN_FOR_TARGET): Remove FLAGS_FOR_TARGET.
4079 (FLAGS_FOR_TARGET, SYSROOT_CFLAGS_FOR_TARGET,
4080 DEBUG_PREFIX_CFLAGS_FOR_TARGET): Move down.
4081 (XGCC_FLAGS_FOR_TARGET): New.
4082 (BASE_FLAGS_TO_PASS): Pass STAGEid_CFLAGS, STAGEid_TFLAGS and TFLAGS.
4083 (EXTRA_HOST_FLAGS): Pass GCJ and GFORTRAN.
4084 (POSTSTAGE1_FLAGS_TO_PASS): Move SYSROOT_CFLAGS_FOR_TARGET and
4085 DEBUG_PREFIX_CFLAGS_FOR_TARGET from CFLAGS, CXXFLAGS, LIBCFLAGS,
4086 LIBCXXFLAGS to XGCC_FLAGS_FOR_TARGET. Add it along with TFLAGS
4087 to CC, CXX, GCJ, and GFORTRAN. Pass XGCC_FLAGS_FOR_TARGET and
4088 TFLAGS.
4089 (BUILD_CONFIG): Include if requested.
4090 (all): Set TFLAGS on bootstrap.
4091 (configure-stageid-prefixmodule): Pass TFLAGS, adjust FLAGS.
4092 (all-stageid-prefixmodule): Likewise.
4093 (do-clean, distclean-stageid): Set TFLAGS.
4094 (restrap): Fix whitespace.
4095 * Makefile.in: Rebuilt.
4096
dc17c78c
EB
40972009-04-25 Eric Botcazou <ebotcazou@adacore.com>
4098
4099 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Add GNATBIND.
4100 (POSTSTAGE1_FLAGS_TO_PASS): Pick up exported value for GNATBIND.
4101 * Makefile.in: Regenerate.
4102
14324cd7
EZ
41032009-04-24 Eli Zaretskii <eliz@gnu.org>
4104
4105 * config.guess (pc:*:*:*): Return i586-pc-msdosdjgpp, for
4106 consistency with config.sub. (Update from upstream sources.)
4107
f8d5f06c
JM
41082009-04-21 Joseph Myers <joseph@codesourcery.com>
4109
4110 * texinfo/texinfo.tex: Update to version 2009-03-28.05.
4111
0000e2bf
BE
41122009-04-17 Ben Elliston <bje@au.ibm.com>
4113
4114 * config.sub, config.guess: Update from upstream sources.
4115
20135e4c
NC
41162009-04-15 Anthony Green <green@moxielogic.com>
4117
34adf976 4118 * configure.ac: Add moxie support.
20135e4c
NC
4119 * configure: Rebuilt.
4120
ef699244
L
41212009-04-09 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4122
4123 * configure.ac: Bump minimum GMP/MPFR versions to 4.2 and 2.3.1.
4124 * configure: Regenerate.
4125
10ad8ef3
L
41262009-04-09 H.J. Lu <hongjiu.lu@intel.com>
4127
4128 PR gas/10039
4129 * configure.ac: Require texinfo 4.7.
4130 * configure: Regenerated.
4131
c50523ce
L
41322009-04-09 Steve Ellcey <sje@cup.hp.com>
4133
4134 * Makefil.def (languages): New entries.
4135 * Makefile.tpl (check-gcc-*): New generic target.
4136 * Makefile.in: Regenerate.
4137
47afba5f
EZ
41382009-03-27 Eli Zaretskii <eliz@gnu.org>
4139
4140 * djunpack.bat: Use ".." quoting in Sed command, for the sake of
4141 Windows builds of Sed.
4142
dc448a7b
TT
41432009-03-18 Tom Tromey <tromey@redhat.com>
4144
4145 * configure: Rebuild.
4146 * configure.ac (host_libs): Add libiconv.
4147 * Makefile.in: Rebuild.
4148 * Makefile.def (host_modules): Add libiconv.
4149 (configure-gdb, all-gdb): Depend on libiconv.
4150
24741ab2
JB
41512009-03-16 Tristan Gingold <gingold@adacore.com>
4152
4153 * configure.ac: Treat gdb as supported on x86_64-darwin.
4154 * configure: Regenerate.
4155
29383458
JM
41562009-03-16 Joseph Myers <joseph@codesourcery.com>
4157
4158 Merge from GCC:
4159
4160 2009-03-16 Joseph Myers <joseph@codesourcery.com>
4161
4162 * configure.ac (--with-host-libstdcxx): New option.
4163 * configure: Regenerate.
4164
4165 2009-01-29 Robert Millan <rmh@aybabtu.com>
4166
4167 * configure.ac: Recognize GNU/kOpenSolaris (*-*-kopensolaris*-gnu).
4168 * configure: Regenerate.
4169
4170 2009-01-12 Sebastian Pop <sebastian.pop@amd.com>
4171
4172 PR tree-optimization/38515
4173 * configure.ac (cloog-polylib): Removed.
4174 (with_ppl, with_cloog): Test for "no".
4175 * configure: Regenerated.
4176
58e24671
RW
41772009-03-01 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4178
4179 Backport from git Libtool:
4180
4181 2009-01-19 Robert Millan <rmh@aybabtu.com>
4182 Support GNU/kOpenSolaris.
4183 * libltdl/m4/libtool.m4 (_LT_SYS_DYNAMIC_LINKER)
4184 (_LT_CHECK_MAGIC_METHOD, _LT_COMPILER_PIC, _LT_LINKER_SHLIBS)
4185 (_LT_LANG_CXX_CONFIG) [kopensolaris*-gnu]: Recognize
4186 GNU/kOpenSolaris.
4187
314b2e66
AS
41882009-02-05 Andreas Schwab <schwab@suse.de>
4189
4190 * Makefile.tpl (stage_last): Define $r and $s before using
4191 $(RECURSE_FLAGS_TO_PASS).
4192 * Makefile.in: Regenerate
4193
8b700390
JJ
41942009-01-21 Jeff Johnston <jjohnstn@redhat.com>
4195
4196 * COPYING.NEWLIB: Add ARM license.
4197
66775d67
AM
41982009-01-16 Alan Modra <amodra@bigpond.net.au>
4199
4200 * Makefile.def (configure-opcodes): Depend on configure-libiberty.
44893cfb 4201 (all-opcodes): Depend on all-libiberty.
66775d67
AM
4202 * Makefile.in: Regenerate.
4203
19e99079
NC
42042009-01-15 Douglas B Rupp <rupp@gnat.com>
4205
4206 * configure.ac (ia64*-*-*vms*): Add case with no gdb or ld support.
4207 * configure: Regenerate.
4208
22e8c8e0
RW
42092008-12-18 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4210
4211 Backport link test fix from upstream Libtool:
4212
4213 * libltdl.m4 (_LT_SYS_DYNAMIC_LINKER, _LT_LINKER_SHLIBS):
4214 Add cache variables to tests that require the linker to work.
4215 For shlibpath_overrides_runpath, this also changes the semantics
4216 to let the result from the C compiler take precedence.
4217 compiler take precedence.
4218
7d6d7764
BE
42192008-12-02 Ben Elliston <bje@au.ibm.com>
4220
4221 * config.sub, config.guess: Update from upstream sources.
4222
ea8af06e
JJ
42232008-12-17 Jeff Johnston <jjohnstn@redhat.com>
4224
4225 * COPYING.NEWLIB: Updated.
4226 * COPYING.LIBGLOSS: Ditto.
4227
af0771d3
PB
42282008-12-16 Paolo Bonzini <bonzini@gnu.org>
4229
4230 Sync with GCC:
4231
4232 2008-12-12 Sebastian Pop <sebastian.pop@amd.com>
4233
4234 * configure.ac (ppllibs): Add by default the lib flags.
4235 * configure: Regenerate.
4236
4237 2008-12-04 Jack Howarth <howarth@bromo.med.uc.edu>
4238
314b2e66
AS
4239 * configure.ac: Add double brackets on darwin[912].
4240 * configure: Regenerate.
af0771d3
PB
4241
4242 2008-12-02 Jack Howarth <howarth@bromo.med.uc.edu>
4243
314b2e66
AS
4244 * configure.ac: Expand to darwin10 and later.
4245 * configure: Regenerate.
af0771d3 4246
f7c83eac
AS
42472008-12-02 Andreas Schwab <schwab@suse.de>
4248
4249 * Makefile.def: configure-target-boehm-gc depends on
4250 all-target-libstdc++-v3.
4251 * Makefile.in: Regenerate.
4252
bc67ad83
BE
42532008-12-02 Ben Elliston <bje@au.ibm.com>
4254
4255 * config.sub, config.guess: Update from upstream sources.
4256
e28c595f
JM
42572008-11-27 Joseph Myers <joseph@codesourcery.com>
4258
4259 Merge from GCC:
4260
4261 2007-12-02 Matthias Klose <doko@ubuntu.com>
4262
4263 * config-ml.in: Remove 64bit configure tests.
4264
4265 2008-05-14 Rafael Espindola <espindola@google.com>
4266
4267 * config-ml.in: don't handle --enable-shared and --enable-static.
4268
4269 2008-09-02 Sebastian Pop <sebastian.pop@amd.com>
4270 Tobias Grosser <grosser@fim.uni-passau.de>
4271 Jan Sjodin <jan.sjodin@amd.com>
4272 Harsha Jagasia <harsha.jagasia@amd.com>
4273 Dwarakanath Rajagopal <dwarak.rajagopal@amd.com>
4274 Konrad Trifunovic <konrad.trifunovic@inria.fr>
4275 Adrien Eliche <aeliche@isty.uvsq.fr>
4276
4277 Merge from graphite branch.
4278 * configure: Regenerate.
4279 * Makefile.in: Regenerate.
4280 * configure.ac (host_libs): Add ppl and cloog.
4281 Add checks for PPL and CLooG.
4282 * Makefile.def (ppl, cloog): Added modules and dependences.
4283 * Makefile.tpl (PPLLIBS, PPLINC, CLOOGLIBS, CLOOGINC): New.
4284 (HOST_PPLLIBS, HOST_PPLINC, HOST_CLOOGLIBS, HOST_CLOOGINC): New.
4285
4286 2008-09-03 Richard Guenther <rguenther@suse.de>
4287
4288 * configure.ac: Always pass -DCLOOG_PPL_BACKEND to the
4289 cloog test.
4290 * configure: Re-generate.
4291
4292 2008-09-03 Sebastian Pop <sebastian.pop@amd.com>
4293
4294 * configure.ac (--with-cloog-polylib): New.
4295 (--disable-cloog-version-check): New.
4296 (--disable-ppl-version-check): New.
4297 * configure: Re-generate.
4298
4299 2008-09-05 Richard Guenther <rguenther@suse.de>
4300
4301 * configure.ac: Initialize clooglibs to -lcloog.
4302 * configure: Re-generate.
4303
4304 2008-10-13 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4305
4306 * configure.ac (MPFR check): Bump minimum version to 2.3.0 and
4307 recommended version to 2.3.2.
4308
4309 * configure: Regenerate.
4310
4311 2008-10-31 Ben Elliston <bje@au.ibm.com>
4312
4313 * configure.ac (spu-*-*): Remove special case.
4314 * configure: Regenerate.
4315
4316 Complete comment text from GCC version of:
4317
4318 2008-08-31 Aaron W. LaFramboise <aaronavay62@aaronwl.com>
4319
4320 * configure.ac (RPATH_ENVVAR): Use PATH on Windows.
4321 (GCC_SHLIB_SUBDIR): New.
4322 * Makefile.tpl (HOST_LIB_PATH_gcc): Use GCC_SHLIB_SUBDIR.
4323 * configure: Regenerate.
4324 * Makefile.in: Regenerate.
4325
652dec25
TG
43262008-11-27 Tristan Gingold <gingold@adacore.com>
4327
4328 * configure.ac: Build gdb for i?86-*-darwin*
4329 * configure: Regenerated.
4330
7582fb4a
DJ
43312008-11-14 Daniel Jacobowitz <dan@codesourcery.com>
4332
4333 PR bootstrap/38014
4334 PR bootstrap/37923
4335
4336 Revert:
4337
4338 2008-10-24 Daniel Jacobowitz <dan@codesourcery.com>
4339
4340 * Makefile.tpl (HOST_EXPORTS): Correct CPPFLAGS typo.
4341 * Makefile.in: Regenerated.
4342
4343 2008-10-22 Daniel Jacobowitz <dan@codesourcery.com>
4344
4345 PR gdb/921
4346 PR gdb/1646
4347 PR gdb/2175
4348 PR gdb/2176
4349
4350 * Makefile.def (flags_to_pass): Add CPPFLAGS_FOR_BUILD and CPPFLAGS.
4351 * Makefile.tpl (BUILD_EXPORTS): Set CPPFLAGS.
4352 (EXTRA_BUILD_FLAGS): Correct typo. Pass CPPFLAGS.
4353 (HOST_EXPORTS): Pass CPPFLAGS.
4354 (CPPFLAGS_FOR_BUILD, CPPFLAGS, CPPFLAGS_FOR_TARGET): Define.
4355 (LDFLAGS_FOR_TARGET): Initialize from configure script.
4356 (EXTRA_TARGET_FLAGS): Set CPPFLAGS.
4357 * Makefile.in, configure: Regenerated.
4358 * configure.ac: Set CPPFLAGS_FOR_TARGET, LDFLAGS_FOR_TARGET,
4359 and CPPFLAGS_FOR_BUILD.
4360
faee1be2
UW
43612008-10-29 Stefan Schulze Frielinghaus <xxschulz@de.ibm.com>
4362
4363 * configure.ac [spu-*-*]: Do not set skipdirs.
4364 * configure: Re-generate.
4365
b7c2dce4
DJ
43662008-10-24 Daniel Jacobowitz <dan@codesourcery.com>
4367
4368 * Makefile.tpl (HOST_EXPORTS): Correct CPPFLAGS typo.
4369 * Makefile.in: Regenerated.
4370
bb52de30
DJ
43712008-10-22 Daniel Jacobowitz <dan@codesourcery.com>
4372
4373 PR gdb/921
4374 PR gdb/1646
4375 PR gdb/2175
4376 PR gdb/2176
4377
4378 * Makefile.def (flags_to_pass): Add CPPFLAGS_FOR_BUILD and CPPFLAGS.
4379 * Makefile.tpl (BUILD_EXPORTS): Set CPPFLAGS.
4380 (EXTRA_BUILD_FLAGS): Correct typo. Pass CPPFLAGS.
4381 (HOST_EXPORTS): Pass CPPFLAGS.
4382 (CPPFLAGS_FOR_BUILD, CPPFLAGS, CPPFLAGS_FOR_TARGET): Define.
4383 (LDFLAGS_FOR_TARGET): Initialize from configure script.
4384 (EXTRA_TARGET_FLAGS): Set CPPFLAGS.
4385 * Makefile.in, configure: Regenerated.
4386 * configure.ac: Set CPPFLAGS_FOR_TARGET, LDFLAGS_FOR_TARGET,
4387 and CPPFLAGS_FOR_BUILD.
4388
b25062ae
SE
43892008-09-29 Peter O'Gorman <pogma@thewrittenword.com>
4390
4391 * libtool.m4: Update to libtool 2.2.6.
4392 * lt~obsolete.m4: Update to libtool 2.2.6.
4393 * ltmain.sh: Update to libtool 2.2.6.
4394 * ltsugar.m4: Update to libtool 2.2.6.
4395 * ltversion.m4: Update to libtool 2.2.6.
4396 * ltoptions.m4: Update to libtool 2.2.6.
4397 * ltgcc.m4: Update to match changes from libtool 2.2.6.
4398
3bbd2f8f
AL
43992008-08-31 Aaron W. LaFramboise <aaronavay62@aaronwl.com>
4400
4401 * configure.ac (RPATH_ENVVAR): Use PATH on Windows.
4402 (GCC_SHLIB_SUBDIR): New.
4403 * Makefile.tpl (HOST_LIB_PATH_gcc): Use GCC_SHLIB_SUBDIR.
4404 * configure: Regenerate.
4405 * Makefile.in: Regenerate.
4406
b29d32ce
TG
44072008-08-28 Tristan Gingold <gingold@adacore.com>
4408
4409 * configure.ac (powerpc-*-darwin*, i?86-*-darwin*,x86_64-*-darwin9):
4410 Enable bfd, binutils and opcodes.
4411 * configure: Regenerate.
4412
c325a203
DD
44132008-08-16 Nicolas Roche <roche@adacore.com>
4414
4415 * Makefile.tpl: Add BOOT_ADAFLAGS.
4416 * Makefile.in: Regenerate.
4417
e7c8859c
RS
44182008-08-16 Richard Sandiford <rdsandiford@googlemail.com>
4419
4420 * configure.ac (mips*-*-*linux*, mips*-*-gnu*): Use mt-mips-gnu.
4421 * configure: Regenerate.
4422
da888c87
PB
44232008-07-30 Paolo Bonzini <bonzini@gnu.org>
4424
4425 Sync with gcc:
4426 2008-07-30 Paolo Bonzini <bonzini@gnu.org>
4427
f7c83eac
AS
4428 * configure.ac: Add makefile fragments for hpux.
4429 * Makefile.def (flags_to_pass): Add ADA_CFLAGS.
4430 * Makefile.tpl (HOST_EXPORTS): Pass ADA_CFLAGS.
4431 * configure: Regenerate.
4432 * Makefile.in: Regenerate.
da888c87
PB
4433
4434 2008-06-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4435
f7c83eac
AS
4436 * Makefile.tpl ($(srcdir)/configure): Update dependencies.
4437 * Makefile.in: Regenerate.
4438 * configure: Regenerate.
da888c87 4439
944982cf
ILT
44402008-06-18 Ian Lance Taylor <iant@google.com>
4441
662c6704
ILT
4442 * src-release (BINUTILS_SUPPORT_DIRS): Remove mkdep and depcomp.
4443
944982cf
ILT
4444 * src-release (BINUTILS_SUPPORT_DIRS): Add depcomp.
4445
7a283e07
RW
44462008-06-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4447
4448 * configure: Regenerate.
4449
5b553f7e
RW
44502008-06-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4451
4452 * configure.ac: Set TOPLEVEL_CONFIGURE_ARGUMENTS early, when
4453 "$@" is still intact with both Autoconf 2.59 and 2.62.
4454 * configure: Regenerate.
4455
675492f0
RW
44562008-06-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4457
4458 * Makefile.tpl: Fix comment errors.
4459 * Makefile.in: Regenerate.
4460
b018a5d1
JB
44612008-06-13 Julian Brown <julian@codesourcery.com>
4462
4463 * configure.ac (arm*-*-linux-gnueabi): Don't disable building
4464 of libobjc for ARM EABI Linux.
4465 * configure: Regenerate.
4466
310213e8
DE
44672008-06-12 David S. Miller <davem@davemloft.net>
4468 David Edelsohn <edelsohn@gnu.org>
4469
4470 * configure.ac: Add powerpc*-*-* to gold supported targets.
4471 * configure: Regenerate.
4472
6641ce42
JM
44732008-06-08 Joseph Myers <joseph@codesourcery.com>
4474
4475 PR tree-optimization/36218
4476 * Makefile.def (flags_to_pass): Add LDFLAGS_FOR_BUILD.
4477 * Makefile.tpl (EXTRA_BUILD_FLAGS): Define.
4478 (all prefix="build-"): Pass them to build-system sub-makes.
4479 * Makefile.in: Regenerate.
4480
03c2f9e6
DJ
44812008-05-16 Daniel Jacobowitz <dan@codesourcery.com>
4482
4483 * src-release (DEVO_SUPPORT): Add ChangeLog, MAINTAINERS,
4484 README-maintainer-mode, lt~obsolete.m4, ltgcc.m4, depcomp,
4485 mkdep, and compile. Update comments.
4486 (ETC_SUPPORT): Add ChangeLog and update comments.
4487
4538db8b
ILT
44882008-05-11 Ian Lance Taylor <iant@google.com>
4489
4490 * src-release (BINUTILS_SUPPORT_DIRS): Add elfcpp and gold.
4491
266df637
PB
44922008-04-18 Paolo Bonzini <bonzini@gnu.org>
4493
4494 Sync with gcc:
4495 2008-04-18 Paolo Bonzini <bonzini@gnu.org>
4496
4497 PR bootstrap/35457
4498 * configure.ac: Include override.m4.
4499 * configure: Regenerate.
4500
4501 2008-04-18 Paolo Bonzini <bonzini@gnu.org>
4502
f7c83eac
AS
4503 * Makefile.tpl (restrap): Call `make all' using double-colon rules.
4504 * Makefile.in: Regenerate.
266df637
PB
4505
4506 2008-04-11 Eric B. Weddington <eweddington@cso.atmel.com>
4507
f7c83eac
AS
4508 * configure.ac: Do not build libssp for the AVR.
4509 * configure: Regenerate.
266df637 4510
a86a761e
NC
45112008-04-18 Nick Clifton <nickc@redhat.com>
4512
4513 * MAINTAINERS: Replace reference to configure.in with reference to
4514 configure.ac.
4515
52310858
NC
45162008-04-18 M R Swami Reddy <MR.Swami.Reddy@nsc.com>
4517
f7c83eac 4518 * configure.ac (cr16-*-*): Add case for cr16 target and include gdb
52310858 4519 as nonconfigurable directories list.
f7c83eac 4520 * configure: Regenerate.
52310858 4521
f5314dd5
DM
45222008-04-14 David S. Miller <davem@davemloft.net>
4523
4524 * configure.ac: Add sparc*-*-* to gold supported targets.
4525 * configure: Regenerate.
4526
e2208220
BE
45272008-04-14 Ben Elliston <bje@au.ibm.com>
4528
4529 * config.sub, config.guess: Update from upstream sources.
4530
0bb6ea20
HPN
45312008-04-12 Hans-Peter Nilsson <hp@axis.com>
4532
4533 * Makefile.tpl <gcc>: Error early unless at least GNU make 3.80.
4534 * Makefile.in: Regenerate.
4535
e5164e97
ILT
45362008-04-07 Ian Lance Taylor <iant@google.com>
4537
4538 * Makefile.def: check-gold depends upon all-binutils.
4539 * Makefile.in: Regenerate.
4540
e33b51a6
NC
45412008-04-04 Nick Clifton <nickc@redhat.com>
4542
4543 PR binutils/4334
4544 * configure.ac: Run ACX_CHECK_CYGWIN_CAT_WORKS for cygwin hosted
4545 builds.
4546 * configure: Regenerate.
4547
fc5df3ab
NC
45482008-04-04 NightStrike <NightStrike@gmail.com>
4549
4550 PR other/35151
f7c83eac
AS
4551 * configure.ac: Combine rules for mingw32 and mingw64.
4552 * configure: Regenerate.
fc5df3ab 4553
c779bab8
PB
45542008-03-27 Paolo Bonzini <bonzini@gnu.org>
4555
4556 * Makefile.tpl (PICFLAG, PICFLAG_FOR_TARGET): Remove.
4557 * Makefile.in: Regenerate.
4558
93f9b408
ILT
45592008-03-20 Ian Lance Taylor <iant@google.com>
4560
4561 * configure.ac: Add support for --enable-gold.
4562 * Makefile.def: Add gold as a directory like ld.
4563 * configure, Makefile.in: Regenerate.
4564
5746fb46
AK
45652008-03-19 Andreas Krebbel <krebbel1@de.ibm.com>
4566
4567 * opcodes/s390-mkopc.c (s390_opcode_cpu_val): S390_OPCODE_Z10 added.
4568 (s390_cond_extensions): Reduced extensions to the compare related.
4569 (main): z10 cpu type option added.
4570 (expandConditionalJump): Renamed to ...
4571 (insertExpandedMnemonic): ... this.
4572
4573 * opcodes/s390-opc.c: Re-group the operand format makros.
4574 (INSTR_RIE_RRPU, INSTR_RIE_RRP0, INSTR_RIE_RUPI,
4575 INSTR_RIE_R0PI, INSTR_RIE_RUPU, INSTR_RIE_R0PU, INSTR_RIE_R0IU,
4576 INSTR_RIE_R0I0, INSTR_RIE_R0UU, INSTR_RIE_R0U0,
4577 INSTR_RIE_RRUUU, INSTR_RIS_RURDI, INSTR_RIS_R0RDI, INSTR_RIS_RURDU,
4578 INSTR_RIS_R0RDU, INSTR_RRF_U0RR, INSTR_RRF_00RR, INSTR_RRS_RRRDU,
4579 INSTR_RRS_RRRD0, INSTR_RXY_URRD, INSTR_SIY_IRD, INSTR_SIL_RDI,
4580 INSTR_SIL_RDU): New instruction formats added.
4581 (MASK_RIE_RRPU, MASK_RIE_RRP0, MASK_RIE_RUPI, MASK_RIE_R0PI,
4582 MASK_RIE_RUPU, MASK_RIE_R0PU, MASK_RIE_R0IU, MASK_RIE_R0I0,
4583 MASK_RIE_R0UU, MASK_RIE_R0U0, MASK_RIE_RRUUU, MASK_RIS_RURDI,
4584 MASK_RIS_R0RDI, MASK_RIS_RURDU, MASK_RIS_R0RDU, MASK_RRF_U0RR,
4585 MASK_RRF_00RR, MASK_RRS_RRRDU, MASK_RRS_RRRD0, MASK_RXY_URRD,
4586 MASK_SIY_IRD, MASK_SIL_RDI, MASK_SIL_RDU): New instruction format
4587 masks added.
4588 (s390_opformats): New formats added "ris", "rrs", "sil".
4589 * opcodes/s390-opc.txt: Add the conditional jumps with the
4590 extensions removed from automatic expansion in s390-mkopc.c manually.
4591 (asi - trtre): Add new System z10 EC instructions.
4592 * include/opcode/s390.h (s390_opcode_cpu_val): S390_OPCODE_Z10 added.
4593
58c85be7
RW
45942008-03-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4595
4596 * configure.ac: m4_include config/proginstall.m4.
4597 * configure: Regenerate.
4598
78124051
RW
45992008-03-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4600
4601 Backport from upstream Libtool:
f7c83eac 4602
78124051 4603 2007-10-12 Eric Blake <ebb9@byu.net>
f7c83eac 4604
78124051
RW
4605 Deal with Autoconf 2.62's semantic change in m4_append.
4606 * ltsugar.m4 (lt_append): Replace broken versions of
4607 m4_append.
4608 (lt_if_append_uniq): Don't require separator to be overquoted,
4609 and avoid broken m4_append.
4610 (lt_dict_add): Fix typo.
4611 * libtool.m4 (_LT_DECL): Don't overquote separator.
4612
018f1bea
DE
46132008-03-13 David Edelsohn <edelsohn@gnu.org>
4614
4615 * config.rpath: Add AIX 6 support.
4616
5c5f596d
PB
46172008-03-13 Paolo Bonzini <bonzini@gnu.org>
4618
4619 * Makefile.def (stageprofile). Remove -fprofile-generate
4620 from stage_libcflags.
4621 * Makefile.in: Regenerate.
4622
a1f93a5e
BE
46232008-03-13 Ben Elliston <bje@au.ibm.com>
4624
4625 * config.sub, config.guess: Update from upstream sources.
4626
98c3d905
AK
46272008-03-06 Florian Krohm <fkrohm@us.ibm.com>
4628
4629 * s390-opc.c (INSTR_RSL_R0RD): Fix operands.
4630 * s390-opc.txt (cmpsc): Duplicate entry removed.
4631 (dxr, sqdr, sqer, cxfbr, cdfbr, cefbr, lzer, lzdr, lzxr,
4632 cegbr, cdgbr, cxgbr, cegr, cdgr, cxgr, cxfr, cdfr, cefr, fixr, fidr,
4633 fier, cu42, cu41): Fix operand format.
4634
7f6ef0c0
PB
46352008-02-20 Paolo Bonzini <bonzini@gnu.org>
4636
f7c83eac
AS
4637 PR bootstrap/32009
4638 PR bootstrap/32161
4639
4640 * configure.ac (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Compute here.
4641 * configure: Regenerate.
4642
4643 * Makefile.def: Define stage_libcflags for all bootstrap stages.
4644 * Makefile.tpl (BOOT_LIBCFLAGS, STAGE2_LIBCFLAGS, STAGE3_LIBCFLAGS,
4645 STAGE4_LIBCFLAGS): New.
4646 (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Subst from autoconf, without
4647 $(SYSROOT_CFLAGS_FOR_TARGET) and $(DEBUG_PREFIX_CFLAGS_FOR_TARGET).
4648 (BASE_TARGET_EXPORTS): Append them here to C{,XX}FLAGS.
4649 (EXTRA_TARGET_FLAGS): Append them here to {LIB,}C{,XX}FLAGS.
4650 (configure-stage[+id+]-[+prefix+][+module+]): Pass stage_libcflags
4651 for target modules. Don't export LIBCFLAGS.
4652 (all-stage[+id+]-[+prefix+][+module+]): Pass stage_libcflags; pass
4653 $(BASE_FLAGS_TO_PASS) where [+args+] was passed, and [+args+] after
4654 the overridden CFLAGS_FOR_TARGET and CXXFLAGS_FOR_TARGET.
4655 (invocations of `all'): Replace $(TARGET_FLAGS_TO_PASS) with
4656 $(EXTRA_TARGET_FLAGS), $(FLAGS_TO_PASS) with $(EXTRA_HOST_FLAGS).
4657 * Makefile.in: Regenerate.
7f6ef0c0 4658
eaf19029
PB
46592008-02-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4660
4661 PR libgcj/33085
4662 * libtool.m4 (_LT_COMPILER_PIC) [ mingw, cygwin ] <GCJ>:
4663 Do not use -DDLL_EXPORT. Backport from upstream.
4664
680c43e9
NC
46652008-02-14 Nick Clifton <nickc@redhat.com>
4666
4667 Import this patch from gcc:
4668 2008-01-24 David Edelsohn <edelsohn@gnu.org>
4669
4670 * libtool.m4: Backport AIX 6 support from ToT Libtool.
4671
c72b1d96
HPN
46722008-02-02 Hans-Peter Nilsson <hp@axis.com>
4673
4674 * configure.ac: Enable fortran for cris-*-elf and crisv32-*-elf.
4675 * configure: Regenerate.
4676
8b66833e
BW
46772008-01-31 Marc Gauthier <marc@tensilica.com>
4678
4679 * configure.ac (xtensa*-*-*): Recognize processor variants.
4680 * configure: Regenerate.
4681
9cc8ae67
PB
46822008-01-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4683
f7c83eac
AS
4684 PR bootstrap/34922
4685 * configure.ac (PARSE_ARGS): Push suitable setting of
4686 ac_subdirs_all, for `./configure --help=recursive'.
4687 Handle `+' in generic toplevel directory disabling.
4688 * configure: Regenerate.
9cc8ae67 4689
19090595
BE
46902008-01-23 Ben Elliston <bje@au.ibm.com>
4691
4692 * config.sub, config.guess: Update from upstream sources.
4693
9f1e7fd3
BE
46942008-01-08 Ben Elliston <bje@au.ibm.com>
4695
4696 * config.sub, config.guess: Update from upstream sources.
4697
2f959d61
JJ
46982007-12-19 Jeff Johnston <jjohnstn@redhat.com>
4699
4700 * COPYING.LIBGLOSS: Update default copyright.
4701
aa054b85
JJ
47022007-12-19 Jeff Johnston <jjohnstn@redhat.com>
4703
4704 * COPYING.NEWLIB: Update default copyright.
4705
57c53b2b
RS
47062007-12-17 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4707
4708 * configure.ac: Change required MPFR from 2.2.0 -> 2.2.1.
4709 Change recommended MPFR from 2.2.1 > 2.3.0.
4710 * configure: Regenerate.
4711
fee14b60
RS
47122007-12-13 Richard Sandiford <rsandifo@nildram.co.uk>
4713
4714 * Makefile.tpl (CFLAGS_FOR_TARGET): Add -g.
4715 (CXXFLAGS_FOR_TARGET): Add -O2 -g.
4716 * Makefile.in: Regenerate.
4717
c9b68031
DD
47182007-12-10 Andreas Tobler <a.tobler@schweiz.org>
4719
4720 * configure.ac: Enable libjava for x86_64-*-darwin9.
4721 * configure: Regenerate.
4722
ad25e7d5
BE
47232007-12-05 Ben Elliston <bje@au.ibm.com>
4724
4725 * config.sub, config.guess: Update from upstream sources.
4726
6ac84f65
PB
47272007-11-28 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4728
f7c83eac
AS
4729 * config-ml.in: Robustify against white space in absolute file
4730 names.
6ac84f65 4731
f7c83eac
AS
4732 * config-ml.in (multi-clean): Substitute ${Makefile}.
4733 Remove superfluous ${Makefile} in list.
6ac84f65 4734
7b3200f9
DJ
47352007-10-23 Daniel Jacobowitz <dan@codesourcery.com>
4736
4737 * Makefile.def (dependencies): Make configure-gdb depend on
4738 all-intl.
4739 * Makefile.in: Regenerated.
4740
2c133ff9
JJ
47412007-10-15 Patrick Mansfield <patmans@us.ibm.com>
4742
4743 * Makefile.def: To avoid problems running with parallel makes,
4744 build newlib before libgloss so that target specific header
4745 files are availble.
4746 * Makefile.in: Regenerate.
4747
5074315a
DJ
47482007-10-11 Daniel Jacobowitz <dan@codesourcery.com>
4749
4750 * Makefile.def (dependencies): Add all-gdb -> all-libdecnumber.
4751 * Makefile.in: Regenerate.
4752
f5bc1778
DJ
47532007-10-11 Daniel Jacobowitz <dan@codesourcery.com>
4754
4755 * src-release (GDB_SUPPORT_DIRS): Add libdecnumber.
4756 * libdecnumber: New directory, imported from GCC.
4757
c66487f8
NC
47582007-10-08 Mike Frysinger <vapier@gentoo.org>
4759
4760 * configure.ac (CFLAGS_FOR_BUILD, CXXFLAGS_FOR_BUILD,
4761 LDFLAGS_FOR_BUILD): Default them to host flags only for $host = $build.
4762 Set default CXXFLAGS_FOR_BUILD to CXXFLAGS, not CFLAGS. Set default
4763 LDFLAGS_FOR_BUILD to LDFLAGS, not CFLAGS.
4764 * configure: Regenerate.
4765
b5714970
PB
47662007-10-01 Paolo Bonzini <bonzini@gnu.org>
4767
4768 * Makefile.tpl (AR_FOR_BUILD, AS_FOR_BUILD, CXX_FOR_BUILD,
4769 DLLTOOL_FOR_BUILD, GCJ_FOR_BUILD, GFORTRAN_FOR_BUILD,
4770 LDFLAGS_FOR_BUILD, LD_FOR_BUILD, NM_FOR_BUILD, RANLIB_FOR_BUILD,
4771 WINDMC_FOR_BUILD, WINDRES_FOR_BUILD): Use autoconf substitutions.
4772 * configure.ac: Default them to host tools for $host = $build.
4773 Subst them.
4774
4775 * configure: Regenerate.
4776 * Makefile.in: Regenerate.
4777
f3b1e08e
RS
47782007-09-20 Richard Sandiford <rsandifo@nildram.co.uk>
4779
4780 * configure.ac (mipsisa*-*-elfoabi*): New stanza.
4781 * configure: Regenerate.
4782
cff87f51
DD
47832007-09-19 Benjamin Kosnik <bkoz@redhat.com>
4784
4785 * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Move libgomp before
4786 libstdc++.
4787 * Makefile.def: Add libgomp config as a maybe dependency for libstdc++.
4788 * configure: Regenerate.
4789 * Makefile.in: Regenerate.
f7c83eac 4790
625a61cd
AS
47912007-09-17 Andreas Schwab <schwab@suse.de>
4792
4793 * configure.ac: Raise minimum makeinfo version to 4.6.
4794 * configure: Regenerate.
4795
83a3a68b
AM
47962007-09-15 Alan Modra <amodra@bigpond.net.au>
4797
4798 * configure.ac: Correct makeinfo version check.
4799 * configure: Regenerate.
4800
5bd8be13
RS
48012007-09-14 Richard Sandiford <richard@codesourcery.com>
4802
4803 * configure.ac (mips*-sde-elf*): New stanza. Add target-libiberty
4804 to $skipdirs and only disable gprof for newlib. Use the normal
4805 mips*-elf* handling in other respects.
4806 * configure: Regnerate.
4807
5566c1fa
DD
48082007-09-12 David Daney <ddaney@avtrex.com>
4809
4810 * configure.ac: Remove mips64*-*-linux* noconfigdirs section, thus
4811 enabling libgcj.
4812 * configure: Regenerate.
4813
48142007-09-12 Richard Guenther <rguenther@suse.de>
4815
4816 * configure.ac (--enable-stage1-checking): If neither --enable-checking
4817 nor --disable-checking is provided also turn on yes and types
4818 checking for stage1.
4819 * configure: Re-generate.
4820
a18e2996 48212007-09-11 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
84e7906e
AH
4822
4823 PR target/33281
4824 * configure.ac: Use config/mh-mingw on mingw.
4825 * configure: Regenerate.
84e7906e 4826
691bb5a1
DD
48272007-09-10 Rask Ingemann Lambertsen <rask@sygehus.dk>
4828
4829 PR other/32154
4830 * configure.ac: For libgloss targets, point the linker to the linker
4831 script, startup code and simulator library.
4832 * configure: Regenerate.
4833
6d18b86b
AH
48342007-09-09 Andrew Haley <aph@redhat.com>
4835
4836 * configure.ac (noconfigdirs): Remove target-libffi and
a18e2996 4837 target-libjava.
6d18b86b 4838
f00a3165 48392007-08-29 Nick Clifton <nickc@redhat.com>
971aaaa5 4840
f00a3165 4841 * config.sub, config.guess: Update from upstream sources.
971aaaa5 4842
2abc4e65
BE
48432007-08-21 Richard Guenther <rguenther@suse.de>
4844
4845 * configure.ac: Add types checking to stage1 checking flags.
4846 * configure: Regenerate.
4847
8a6ee3ab 48482007-08-18 Paul Brook <paul@codesourcery.com>
f7c83eac 4849 Joseph Myers <joseph@codesourcery.com>
8a6ee3ab
JM
4850
4851 * Makefile.tpl (DEBUG_PREFIX_CFLAGS_FOR_TARGET): New.
4852 (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Include it.
4853 * Makefile.in: Regenerate.
4854 * configure.ac (--with-debug-prefix-map): New.
4855 * configure: Regenerate.
4856
429acdec
RS
48572007-08-17 Richard Sandiford <richard@codesourcery.com>
4858 Nigel Stephens <nigel@mips.com>
4859
429acdec
RS
4860 * configure.ac (mips*-sde-elf*): New stanza. Use config/mt-sde
4861 as target_makefile_frag.
4862 * configure: Regenerate.
4863
8520c408
AO
48642007-08-16 Alexandre Oliva <aoliva@redhat.com>
4865
4866 * Makefile.def (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS):
4867 Add to flags_to_pass. Adjust uses of BOOT_CFLAGS.
4868 (bootstrap2-debug, bootstrap-debug): New bootstrap stages.
4869 * Makefile.tpl (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS): New.
4870 (do-compare, do-compare3, do-compare-debug): New.
4871 ([+compare-target+]): Use them.
4872
48732007-08-16 Alexandre Oliva <aoliva@redhat.com>
4874
4875 * Makefile.def (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS):
4876 Add to flags_to_pass. Adjust uses of BOOT_CFLAGS.
4877 (bootstrap2-debug, bootstrap-debug): New bootstrap stages.
4878 * Makefile.tpl (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS): New.
4879 (do-compare, do-compare3, do-compare-debug): New.
4880 ([+compare-target+]): Use them.
4881
2444379b
BE
48822007-08-13 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4883 Ben Elliston <bje@au.ibm.com>
4884
4885 * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS, baseargs): Pass
4886 --silent if $silent.
4887 * configure: Regenerate.
4888
d6f99447
DJ
48892007-08-12 Daniel Jacobowitz <dan@codesourcery.com>
4890
4891 * src-release (DEVO_SUPPORT): Add COPYING3 and COPYING3.LIB.
4892
bd0aa315
NC
48932007-07-17 Nick Clifton <nickc@redhat.com>
4894
4895 * COPYING3: New file. Contains version 3 of the GNU General
4896 Public License.
4897 * COPYING3.LIB: New file. Contains version 3 of the GNU
4898 Lesser General Public License.
4899
0ebe98fb
BS
49002007-07-11 Bernd Schmidt <bernd.schmidt@analog.com>
4901
4902 * configure.ac: Fix my previous change to really match GCC.
4903 * configure: Regenerate.
4904
521ec477
DD
49052007-07-11 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4906
4907 * configure.ac: Rewrite 'configure --help' strings to look nicer.
4908 * configure: Regenerate.
4909
49102007-07-11 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4911
4912 * configure.ac: Add some missing m4 quotation.
4913 * configure: Regenerate.
4914
0c24b341
NC
49152007-07-09 Kai Tietz <kai.tietz@onevision.com>
4916
f7c83eac
AS
4917 * Makefile.def: Add windmc tool to build.
4918 * Makefile.tpl: Likewise.
4919 * configure.ac: Likewise.
4920 * Makefile.in: Regenerate.
4921 * configure: Regenerate.
0c24b341 4922
a09314d0
L
49232007-07-05 H.J. Lu <hongjiu.lu@intel.com>
4924
4925 * lt~obsolete.m4: New. Import from 20070318 libtool.
4926
7c3e1d12
BS
49272007-06-29 Bernd Schmidt <bernd.schmidt@analog.com>
4928
4929 * configure.ac: Don't add target-libmudflap to noconfigdirs for
4930 uclinux and linux-uclibc targets.
4931 * configure: Regenerate.
4932
a5b3b4dd
DD
49332007-06-28 DJ Delorie <dj@redhat.com>
4934
4935 * configure.ac (arm*-*-linux-gnueabi): Don't build libgloss if we're
4936 not building newlib.
4937 * configure: Regenerated.
f7c83eac 4938
184d813c
DJ
49392007-06-22 Daniel Jacobowitz <dan@codesourcery.com>
4940
4941 * src-release (DEVO_SUPPORT): Correct typos.
4942
31d99776
DJ
49432007-06-18 Daniel Jacobowitz <dan@codesourcery.com>
4944
4945 * Makefile.def: Add dependency from configure-gdb to all-bfd.
4946 * Makefile.in: Regenerated.
4947
e00a73e3
PB
49482007-06-14 Paolo Bonzini <bonzini@gnu.org>
4949
f7c83eac
AS
4950 * Makefile.tpl (cleanstrap): Don't delete the toplevel Makefile.
4951 (distclean-stage[+id+]): Possibly delete stage_last.
4952 * Makefile.in: Regenerate.
e00a73e3 4953
98a1bbc5
BE
49542007-06-07 Ben Elliston <bje@au.ibm.com>
4955
4956 * config.sub, config.guess: Update from upstream sources.
4957
973601e1
BE
49582007-06-07 Ben Elliston <bje@au.ibm.com>
4959
4960 * Makefile.tpl: Fix spelling error.
4961 * Makefile.in: Regenerate.
4962
2038f525
PB
49632007-06-04 Paolo Bonzini <bonzini@gnu.org>
4964
4965 Sync with gcc:
4966 2007-05-30 Jakub Jelinek <jakub@redhat.com>
4967
f7c83eac
AS
4968 PR bootstrap/29382
4969 * configure.ac: Don't use -fkeep-inline-functions for GCC < 3.3.1.
4970 * configure: Rebuilt.
2038f525 4971
f7c5c4b5
PB
49722007-06-01 Steve Ellcey <sje@cup.hp.com>
4973
12a64d4f
L
4974 * libtool.m4 (LT_CMD_MAX_LEN): Try using getconf to set
4975 lt_cv_sys_max_cmd_len.
f7c5c4b5 4976
7ad9660b
PB
49772007-05-31 Paolo Bonzini <bonzini@gnu.org>
4978
4979 * ltgcc.m4: Update from GCC.
4980
0e7ef45c
EC
49812007-05-25 Andreas Tobler <a.tobler@schweiz.org>
4982
12a64d4f 4983 * ltmain.sh: Fix Darwin verstring, remove ${wl}.
0e7ef45c 4984
37ad9514
SE
49852007-05-24 Steve Ellcey <sje@cup.hp.com>
4986
4987 * ltmain.sh: Update from GCC.
4988 * libtool.m4: Update from GCC.
4989 * ltsugar.m4: New. Update from GCC.
4990 * ltversion.m4: New. Update from GCC.
4991 * ltoptions.m4: New. Update from GCC.
4992 * ltconfig: Remove.
4993 * ltcf-c.sh: Remove.
4994 * ltcf-cxx.sh: Remove.
4995 * ltcf-gcj.sh: Remove.
4996 * src-release: Update with new libtool file list.
4997
8ee82aff
PB
49982007-05-16 Paolo Bonzini <bonzini@gnu.org>
4999
5000 * Makefile.def (bootstrap_stage): Replace stage_make_flags with
5001 stage_cflags.
5002 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS, POSTSTAGE1_FLAGS_TO_PASS):
5003 Remove CFLAGS/LIBCFLAGS.
5004 (configure-stage[+id+]-[+prefix+][+module+],
5005 all-stage[+id+]-[+prefix+][+module+]): Pass it from [+stage_cflags+].
5006 * Makefile.in: Regenerate.
5007
149cb58d
SE
50082007-04-14 Steve Ellcey <sje@cup.hp.com>
5009
5010 * config-ml.in: Update from GCC.
5011
91506736
DJ
50122007-04-09 Daniel Jacobowitz <dan@codesourcery.com>
5013
5014 * src-release (do-proto-toplev): Process the support directories before
5015 the tool directory.
5016
ffa8bd48
RS
50172007-03-21 Richard Sandiford <richard@codesourcery.com>
5018
5019 * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Fix m4 quoting
5020 of glob. Quote arguments with single quotes too.
5021 * configure: Regenerate.
5022
a4fd3374
DD
50232007-03-12 Brooks Moses <brooks.moses@codesourcery.com>
5024
5025 * Makefile.def (fixincludes): Remove unneeded "missing" lines.
5026 * Makefile.in: Regenerate
5027
b8025f34
AS
50282007-03-07 Andreas Schwab <schwab@suse.de>
5029
5030 * configure: Regenerate.
5031
a3ca38d2
DD
50322007-03-01 Brooks Moses <brooks.moses@codesourcery.com>
5033
5034 * configure.ac: Add "--with-pdfdir" configure option,
5035 which defines pdfdir variable.
5036 * Makefile.def (target=fixincludes): Add install-pdf to
5037 missing targets.
5038 (recursive_targets): Add install-pdf target.
5039 (flags_to_pass): Add pdfdir.
5040 * Makefile.tpl: Add pdfdir handling, add do-install-pdf
5041 target.
5042 * configure: Regenerate
5043 * Makefile.in: Regenerate
5044
50452007-02-28 Eric Christopher <echristo@apple.com>
5046
5047 Revert:
5048 2006-12-07 Mike Stump <mrs@apple.com>
5049
5050 * Makefile.def (dependencies): Add dependency for
5051 install-target-libssp and install-target-libgomp on
5052 install-gcc.
5053 * Makefile.in: Regenerate.
5054
50552007-02-27 Matt Kraai <kraai@ftbfs.org>
5056
5057 * configure: Regenerate.
5058 * configure.ac: Move statements after variable declarations.
5059
a4708fba
JM
50602007-02-19 Joseph Myers <joseph@codesourcery.com>
5061
5062 * configure.ac: Adjust for loop syntax.
5063 * configure: Regenerate.
5064
9a819804
AO
50652007-02-18 Alexandre Oliva <aoliva@redhat.com>
5066
5067 * configure: Rebuilt.
5068
81ec575a
AO
50692007-02-18 Alexandre Oliva <aoliva@redhat.com>
5070
5071 * configure.ac: Drop multiple occurrences of --enable-languages,
5072 and fix its quoting.
5073 * configure: Rebuilt.
5074
92f01d61 50752007-02-17 Mark Mitchell <mark@codesourcery.com>
f7c83eac
AS
5076 Nathan Sidwell <nathan@codesourcery.com>
5077 Vladimir Prus <vladimir@codesourcery.com
5078 Joseph Myers <joseph@codesourcery.com>
92f01d61
JM
5079
5080 * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Fix quoting.
5081 * configure: Regenerate.
5082
b1299c4e
DJ
50832007-02-13 Daniel Jacobowitz <dan@codesourcery.com>
5084
5085 * configure.ac (target_libraries): Move libgcc before libiberty.
5086 * configure: Regenerated.
5087
18f6b6ee
PB
50882007-02-13 Paolo Bonzini <bonzini@gnu.org>
5089
5090 * configure: Regenerate again?
5091
9c4e9f27
PB
50922007-02-13 Paolo Bonzini <bonzini@gnu.org>
5093
5094 * configure: Reapply PR30748 fix which was lost in the previous commit.
5095
24ff9987
DJ
50962007-02-13 Daniel Jacobowitz <dan@codesourcery.com>
5097 Paolo Bonzini <bonzini@gnu.org>
5098
5099 PR bootstrap/30753
5100 * configure.ac: Remove obsolete build / host tests. Use AC_PROG_CC
5101 unconditionally. Use AC_PROG_CXX. Use ACX_TOOL_DIRS to find $prefix.
5102 * configure: Regenerated.
5103
7df2cd5d
PB
51042007-02-10 Paolo Bonzini <bonzini@gnu.org>
5105
5106 * configure: Regenerate.
5107
b0aaa663
DJ
51082007-02-09 Daniel Jacobowitz <dan@codesourcery.com>
5109
5110 PR bootstrap/30748
5111 * configure.ac: Correct syntax for Solaris ksh.
5112 * configure: Regenerated.
5113
a0323144
PB
51142007-02-09 Paolo Bonzini <bonzini@gnu.org>
5115
5116 * Makefile.def: Sync with GCC.
5117 * Makefile.tpl: Sync with GCC.
5118 * Makefile.in: Regenerate.
5119 * configure: Regenerate.
5120
c6b750e1
DJ
51212007-02-09 Daniel Jacobowitz <dan@codesourcery.com>
5122
5123 * Makefile.tpl (build_alias, host_alias, target_alias): Use
5124 noncanonical equivalents.
5125 * configure.in: Rename to...
5126 * configure.ac: ...this. Update AC_PREREQ. Prevent error for
5127 AS_FOR_TARGET. Set build_noncanonical, host_noncanonical, and
5128 target_noncanonical. Use them. Rewrite removal of configure
5129 arguments for autoconf 2.59. Discard variable settings. Force
5130 program_transform_name for native tools.
5131
5132 * Makefile.in: Regenerated.
5133 * configure: Regenerated with autoconf 2.59.
5134
5135 * src-release (DEVO_SUPPORT, do-proto-toplev): Expect configure.ac.
5136
f3cd89f4
JJ
51372007-02-08 Jeff Johnston <jjohnstn@redhat.com>
5138
5139 * COPYING.LIBGLOSS: Reformat default Red Hat
5140 license to fit within 80 columns.
5141 * COPYING.NEWLIB: Ditto.
5142
4e206d7e
DB
51432007-02-05 Dave Brolley <brolley@redhat.com>
5144
5145 * Contribute the following changes:
5146 2006-11-28 DJ Delorie <dj@redhat.com>
5147
5148 * configure.in: Fix typo for mep's target_makefile_frag.
5149 * configure: Regenerated.
5150
5151 2005-04-22 Richard Sandiford <rsandifo@redhat.com>
5152
5153 * configure.in (mep*): Add -mlibrary to FLAGS_FOR_TARGET.
5154 * configure: Regenerate.
5155
5156 2001-09-19 DJ Delorie <dj@redhat.com>
5157
5158 * configure.in (target_makefile_frag): use mt-mep
5159
5160 2001-06-12 Don Howard <dhoward@redhat.com>
5161
5162 * configure.in: Remove gdb from MeP skip list.
5163
5164 2001-04-05 DJ Delorie <dj@redhat.com>
5165
5166 * configure.in (noconfigdirs): Remove gcc from MeP skip list.
5167
5168 2001-03-20 Ben Elliston <bje@redhat.com>
5169
5170 * configure.in (noconfigdirs): Add gcc and gdb for MeP.
5171
5172 2001-03-19 Ben Elliston <bje@redhat.com>
5173
5174 * config.sub (mep, mep-*): Add.
5175
b2edfdd2
AS
51762007-01-31 Andreas Schwab <schwab@suse.de>
5177
5178 * Makefile.tpl (LDFLAGS): Substitute it.
5179 * Makefile.in: Regenerate.
5180
ceb92e78
PB
51812007-01-11 Paolo Bonzini <bonzini@gnu.org>
5182
5183 * configure.in: Change == to = in test command.
f7c83eac 5184 * configure: Regenerate.
ceb92e78 5185
4b900473 51862007-01-11 Paolo Bonzini <bonzini@gnu.org>
f7c83eac
AS
5187 Nick Clifton <nickc@redhat.com>
5188 Kaveh R. Ghazi <ghazi@caip.rutgets.edu>
5189
5190 * configure.in (build_configargs, host_configargs, target_configargs):
5191 Remove build/host/target parameters.
5192 (host_libs): Add gmp and mpfr.
5193 (GMP tests): Reorganize to allow in-tree GMP/MPFR.
5194 * Makefile.def (gmp, mpfr): New.
5195 (gcc): Remove target.
5196 * Makefile.tpl (build_os, build_vendor, host_os, host_vendor,
5197 target_os, target_vendor): New.
5198 (configure): Add host_alias/target_alias arguments. Adjust invocations.
5199 * configure: Regenerate.
5200 * Makefile.in: Regenerate.
4b900473
PB
5201
52022007-01-11 Matt Fago <fago@earthlink.net>
5203
5204 * configure.in: Try to link to functions only in mpfr 2.2.x
f7c83eac 5205 to improve robustness of configure tests.
4b900473
PB
5206 * configure: Regenerate.
5207
80f6dcbc
NC
52082007-01-08 Kai Tietz <kai.tietz@onevision.com>
5209
5210 * configure.in: Add support for an x86_64-mingw* target.
b1b532dd 5211 * configure: Regenerate.
80f6dcbc 5212
f86e35b8
NC
52132007-01-05 Daniel Jacobowitz <dan@codesourcery.com>
5214
5215 * Makefile.tpl (all-target): Correct @if conditional for target
5216 modules.
5217 * configure.in: Omit libiberty if building only target libgcc.
5218 * configure, Makefile.in: Regenerated.
5219
79fcd0ec
PB
52202007-01-04 Paolo Bonzini <bonzini@gnu.org>
5221
5222 * configure.in: Use DEV-PHASE to detect the default for --enable-werror.
5223 * configure: Regenerate.
5224
6aa8ef82
DJ
52252007-01-03 Daniel Jacobowitz <dan@codesourcery.com>
5226
5227 * Makefile.def (target_modules): Add libgcc.
5228 (lang_env_dependencies): Remove default items. Use no_c and no_gcc.
5229 * Makefile.tpl (clean-target-libgcc): Delete.
5230 (configure-target-[+module+]): Emit --disable-bootstrap dependencies
5231 on gcc even for bootstrapped modules. Rewrite handling of
5232 lang_env_dependencies to loop over target_modules.
5233 * configure.in (target_libraries): Add target-libgcc.
5234 * Makefile.in, configure: Regenerated.
5235
9b134994
PB
52362006-12-29 Paolo Bonzini <bonzini@gnu.org>
5237
5238 Sync with gcc:
5239 2006-12-29 Paolo Bonzini <bonzini@gnu.org>
5240
f7c83eac
AS
5241 * configure.in: Reorganize recognition of languages. Add
5242 --enable-stage1-languages. Show supported languages for the chosen
5243 target rather than all recognized languages.
5244 * configure: Regenerate.
9b134994
PB
5245
5246 2006-12-29 Paolo Bonzini <bonzini@gnu.org>
5247
f7c83eac
AS
5248 * Makefile.tpl (GCC_STRAP_TARGETS, all-prebootstrap): Remove.
5249 * Makefile.in: Regenerate.
9b134994
PB
5250
5251 2006-12-29 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5252
f7c83eac
AS
5253 * configure.in: Warn that MPFR 2.2.0 is buggy.
5254 * configure: Regenerate.
9b134994 5255
8cf39b1b
ILT
52562006-12-27 Ian Lance Taylor <iant@google.com>
5257
5258 * configure.in: When removing Makefiles to force a reconfigure, also
5259 remove prev-DIR*/Makefile.
5260 * configure: Regenerate.
5261
ebff6cd5
KH
52622006-12-23 Kazu Hirata <kazu@codesourcery.com>
5263
5264 * config.bfd: Recognize fido.
5265
8a0d8a5c
PB
52662006-12-19 Paolo Bonzini <bonzini@gnu.org>
5267
5268 Sync with gcc:
5269
5270 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
5271
5272 * configure.in: Remove "$build" case for powerpc-*-darwin* since
5273 it only affects bootstrap and could be tested on "$host" as well.
5274 * configure: Regenerate.
5275 * config/mh-ppc-darwin: Add to the stage1 cflags here.
5276
5277 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
5278
5279 PR bootstrap/29544
5280 * Makefile.def (flags_to_pass): Add STAGE1_CHECKING.
5281 (bootstrap_stage): Add STAGE1_CHECKING to stage1 configure flags,
5282 move here comment from Makefile.tpl.
5283 * Makefile.tpl: Move some definitions higher in the file.
5284 (STAGE1_CHECKING): New.
5285 * configure.in: Add --enable-stage1-checking.
5286 * configure: Regenerate.
5287 * Makefile.in: Regenerate.
5288
5289 2006-12-03 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5290
5291 * configure.in: Update error message for missing GMP/MPFR.
5292
5293 * configure: Regenerate.
5294
5295 2006-12-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5296
5297 * configure.in: Update MPFR version in error message.
5298
5299 * configure: Regenerate.
5300
5301 2006-11-26 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5302
5303 * configure.in (--with-mpfr-dir, --with-gmp-dir): Remove flags.
5304 (--with-mpfr-include, --with-mpfr-lib, --with-gmp-include,
5305 --with-gmp-lib): New flags.
5306
5307 * configure: Regenerate.
5308
790c0838
AM
53092006-12-12 Andreas Tobler <a.tobler@schweiz.org>
5310
5311 PR bootstrap/30134
5312 * configure.in: Correct x86 darwin support for libjava to powerpc
5313 and i?86 only.
5314 * configure: Regenerate.
5315
77d7106f
AM
53162006-12-11 Alan Modra <amodra@bigpond.net.au>
5317
5318 * configure.in: Handle spu makefile frag.
77d7106f
AM
5319 * Makefile.tpl (MAINT): Define
5320 (MAINTAINER_MODE_FALSE, MAINTAINER_MODE_TRUE): Define.
5321 * configure: Regenerate.
5322 * Makefile.in: Regenerate.
5323
0cfa5389
BE
53242006-12-11 Ben Elliston <bje@au.ibm.com>
5325
5326 * config.sub, config.guess: Update from upstream sources.
5327
2839fe5d
BE
53282006-12-11 Ben Elliston <bje@au.ibm.com>
5329
5330 * configure.in: Sync with GCC (spu-*-*).
5331 * configure: Sync with GCC.
5332
b897f5d4
MS
53332006-12-07 Mike Stump <mrs@apple.com>
5334
5335 * Makefile.def (dependencies): Add dependency for
5336 install-target-libssp and install-target-libgomp on
5337 install-gcc.
5338 * Makefile.in: Regenerate.
5339
9daf3993
PB
53402006-11-16 Paolo Bonzini <bonzini@gnu.org>
5341
5342 * Makefile.tpl (clean-target-libgcc): Test for gcc Makefile presence.
5343 (unstage): Test for stage_last presence.
5344
5345 PR bootstrap/29802
5346 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Add HOST_SUBDIR in STAGE_PREFIX.
5347 * Makefile.in: Regenerate.
5348
9dbaa842
DD
53492006-11-14 DJ Delorie <dj@redhat.com>
5350
5351 * Makefile.tpl (clean-stage*): Sync with GCC (clean).
5352 * Makefile.in: Sync with GCC.
5353 * configure.in: Sync with GCC (mpfr, gmp).
5354 * configure: Sync with GCC.
5355
b0cbce8d
JJ
53562006-11-08 Jie Zhang <jie.zhang@analog.com>
5357
5358 * configure.in: Remove target-libgloss from noconfigdirs for
5359 bfin-*-*.
5360 * configure: Regenerated.
5361
44330a94
JJ
53622006-10-27 Jeff Johnston <jjohnstn@redhat.com>
5363
5364 * COPYING.NEWLIB: Add spu license.
7de05dd5 5365 * COPYING.LIBGLOSS: Ditto.
44330a94 5366
56a8fe78
DD
53672006-10-17 Brooks Moses <bmoses@stanford.edu>
5368
5369 * Makefile.def: Added pdf target handling.
5370 * Makefile.tpl: Added pdf target handling.
5371 * Makefile.in: Regenerated.
5372
fbb00ad0
JJ
53732006-10-11 Jeff Johnston <jjohnstn@redhat.com>
5374
5375 * COPYING.NEWLIB: Updated.
5376 * COPYING.LIBGLOSS: Ditto.
5377
6b89cc21
DB
53782006-09-27 Dave Brolley <brolley@redhat.com>
5379
5380 * configure.in (RUNTEST): Look for 'runtest' in the source tree by using
5381 $s instead of $r.
5382 * configure: Regenerated.
5383
17bcf627
BE
53842006-09-26 Ben Elliston <bje@au.ibm.com>
5385
5386 * config.sub, config.guess: Update from upstream sources.
5387
f3529cf1
TS
53882006-09-20 Thiemo Seufer <ths@mips.com>
5389
5390 * configure.in: Remove redundant handling of mips*-dec-bsd*. Likewise
5391 for mipstx39-*-*. Disable libgloss for mips64*-*-linux*.
5392 * configure: Regenerate.
5393
45055374
CV
53942006-08-30 Corinna Vinschen <corinna@vinschen.de>
5395
5396 * configure.in: Never build newlib for a Mingw host.
5397 Never build newlib as Mingw target library.
5398 Test the existence of winsup/cygwin for building a Cygwin newlib,
5399 rather than just winsup.
5400 Add winsup/mingw and winsup/w32api paths to FLAGS_FOR_TARGET if
5401 building a Mingw target.
5402 * configure: Regenerate.
5403
4be041b2 54042006-08-15 Thiemo Seufer <ths@mips.com>
f7c83eac
AS
5405 Nigel Stephens <nigel@mips.com>
5406 David Ung <davidu@mips.com>
4be041b2
TS
5407
5408 * config.sub: Add support for sde as alias of mipsisa32-sde-elf.
5409
1d89b610
PB
54102006-07-25 Paolo Bonzini <bonzini@gnu.org>
5411
5412 Sync from GCC:
5413 2006-07-04 Eric Botcazou <ebotcazou@libertysurf.fr>
5414
f7c83eac
AS
5415 PR bootstrap/18058
5416 * configure.in: Add -fkeep-inline-functions to CFLAGS for stage 1
5417 if the bootstrap compiler is a GCC version that supports it.
5418 * configure: Regenerate.
1d89b610 5419
66a79c16
DJ
54202006-07-22 Daniel Jacobowitz <dan@codesourcery.com>
5421
5422 * configure.in: Allow mingw32 and cygwin targets to build cross-gdb.
5423 * configure: Regenerated.
5424
c1cb7e02
PB
54252006-07-18 Paolo Bonzini <bonzini@gnu.org>
5426
f7c83eac
AS
5427 * Makefile.tpl (configure-stageN-MODULE): Pass --with-build-libsubdir
5428 for stages after the first.
c1cb7e02 5429
7206a0ee
JJ
54302006-07-17 Jakub Jelinek <jakub@redhat.com>
5431
5432 * Makefile.def: Add dependencies for configure-opcodes
5433 on configure-intl and all-opcodes on all-intl.
5434 * Makefile.in: Regenerated.
5435
6816f995
AO
54362006-07-04 Peter O'Gorman <peter@pogma.com>
5437
5438 * ltconfig: chmod 644 before ranlib during install.
5439
3d3adb43
PB
54402006-07-03 Paolo Bonzini <bonzini@gnu.org>
5441
1f3f1bbf 5442 * configure.in: Fix thinkos in previous check-in.
3d3adb43
PB
5443 * configure: Regenerate.
5444
64ce424c
PB
54452006-07-03 Paolo Bonzini <bonzini@gnu.org>
5446
5447 Sync from gcc:
5448
5449 2007-07-03 Paolo Bonzini <bonzini@gnu.org>
5450
5451 PR other/27063
5452 * configure.in: Test subdir_requires and give an appropriate
5453 error message.
5454 * configure: Regenerate.
5455
5456 2006-06-16 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
5457
5458 PR target/27540
5459 * configure.in: Only enable libgomp on IRIX 6.
5460 * configure: Regenerate.
5461
d42c4017
DA
54622006-06-20 David Ayers <d.ayers@inode.at>
5463
5464 PR bootstrap/28072
5465 * configure.in: Add target-boehm-gc to noconfigdirs depending on
5466 whether target-libjava is being configured instead of whether the
5467 java front end is enabled.
5468 * configure: Regenerate.
0e7ef45c 5469
4962c51a
MS
54702006-06-15 Mark Shinwell <shinwell@codesourcery.com>
5471
5472 * include/elf/arm.h: Correct names of R_ARM_LDC_G{0,1,2}
5473 to R_ARM_LDC_SB_G{0,1,2} respectively.
5474
caee866a
PB
54752006-06-15 Paolo Bonzini <bonzini@gnu.org>
5476
5477 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Export CFLAGS and LDFLAGS
5478 too.
5479 * Makefile.in: Regenerate.
5480
363ef840
DA
54812006-06-13 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
5482
5483 Sync from gcc:
5484
5485 2006-06-12 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
5486 * configure.in: Don't enable libgomp on hpux10.
5487 * configure: Rebuilt.
5488
54d1c879
DA
54892006-06-13 David Ayers <d.ayers@inode.at>
5490
5491 Sync from gcc:
5492
5493 2006-06-12 David Ayers <d.ayers@inode.at>
0e7ef45c 5494
54d1c879
DA
5495 PR bootstrap/27963
5496 PR target/19970
0e7ef45c 5497 * configure.in: Remove target-boehm-gc from noconfigdirs where
54d1c879
DA
5498 ${libgcj} is specified.
5499 * configure: Regenerate.
0e7ef45c 5500
a4d8b690
JJ
55012006-06-08 Jeff Johnston <jjohnstn@redhat.com>
5502
5503 Sync from gcc:
5504
5505 2005-01-12 David Edelsohn <edelsohn@gnu.org>
f7c83eac 5506 Andreas Schwab <schwab@suse.de>
a4d8b690
JJ
5507
5508 PR bootstrap/18033
5509 * config-ml.in: Eval option if surrounded by single quotes.
5510
4f0ef2d8
CD
55112006-06-07 Carlos O'Donell <carlos@codesourcery.com>
5512
5513 Sync from gcc:
0e7ef45c 5514
4f0ef2d8 5515 2006-06-06 David Ayers <d.ayers@inode.at>
0e7ef45c 5516
4f0ef2d8
CD
5517 PR libobjc/13946
5518 * Makefile.def: Add dependencies for libobjc which boehm-gc.
5519 * Makefile.in: Regenerate.
5520 * configure.in: Add --enable-objc-gc at toplevel and have it
5521 enable boehm-gc for Objective-C.
5522 Remove target-boehm-gc from libgcj.
5523 Add target-boehm-gc to target_libraries.
5524 Add target-boehm-gc to noconfigdirs where ${libgcj}
5525 is specified.
5526 Assert that boehm-gc is supported when requested for Objective-C.
5527 Only build boehm-gc if needed either for Java or Objective-C.
5528 * configure: Regenerate.
5529
5530 2006-06-05 Paolo Bonzini <bonzini@gnu.org>
0e7ef45c 5531
4f0ef2d8
CD
5532 PR 27674
5533 * Makefile.tpl (configure-[+prefix+][+module+],
5534 all-[+prefix+][+module+]): Depend on stage_current if bootstrapping.
5535 Remove rule to unstage bootstrapped modules.
5536 (stage_current): New.
5537 * Makefile.in: Regenerate.
5538
5539 2006-05-20 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
5540 Andreas Tobler <a.tobler@schweiz.ch>
5541
5542 * configure.in: Enable libgcj for hppa*-hp-hpux11*.
5543 * configure: Rebuilt.
5544
5545 Revert
5546 2006-01-31 Richard Guenther <rguenther@suse.de>
5547 Paolo Bonzini <bonzini@gnu.org>
5548
5549 * Makefile.def (target_modules): Add libgcc-math target module.
5550 * configure.in (target_libraries): Add libgcc-math target library.
5551 (--enable-libgcc-math): New configure switch.
5552 * Makefile.in: Re-generate.
5553 * configure: Re-generate.
5554
c17b816b
JJ
55552006-06-05 Jeff Johnston <jjohnstn@redhat.com>
5556
5557 * config-ml.in: Alter CCASFLAGS to include special
5558 multilib options the same as is done for CFLAGS.
5559
20e95c23
DJ
55602006-05-31 Daniel Jacobowitz <dan@codesourcery.com>
5561
5562 * Makefile.def: Added dependencies from sim and gdb on intl, and
5563 added configure dependencies to everything with an all dependency
5564 on intl.
5565 * gettext.m4: Removed.
5566 * src-release (DEVO_SUPPORT): Don't mention gettext.m4.
5567 (GDB_SUPPORT_DIRS): Add intl.
5568 * Makefile.in: Regenerated.
5569
4bd8ad80
DJ
55702006-05-25 Daniel Jacobowitz <dan@codesourcery.com>
5571
5572 * src-release (DEVO_SUPPORT): Add config.rpath.
5573
c380fdd8
PB
55742006-05-25 Paolo Bonzini <bonzini@gnu.org>
5575
5576 * Makefile.def (bfd, opcodes): Fix lib_path.
5577 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Replace ADAC with ADAFLAGS.
5578 (restrap): Move under "@if gcc-bootstrap". Fix typo.
5579 * Makefile.in: Regenerate.
5580
701628f5
MS
55812006-05-24 Mark Shinwell <shinwell@codesourcery.com>
5582
5583 * configure.in: Enable gprof for cross builds.
5584 * configure: Regenerate.
5585
25aae7f2
DJ
55862006-05-17 Daniel Jacobowitz <dan@codesourcery.com>
5587
5588 * src-release (MAKEINFOFLAGS): Define.
5589 (do-proto-toplev): Pass MAKEINFOFLAGS to submakes.
5590
ea3d1626
BE
55912006-05-14 Ben Elliston <bje@au.ibm.com>
5592
5593 * config.sub, config.guess: Update from upstream sources.
5594
49b9e644
BE
55952006-05-12 Ben Elliston <bje@au.ibm.com>
5596
5597 * config.sub, config.guess: Update from upstream sources.
5598
482dd2f6
DJ
55992006-05-04 Steve Ellcey <sje@cup.hp.com>
5600
5601 * blt, iwidgets, mmalloc: Remove directories.
5602
8b01a5c2
DD
56032006-05-01 DJ Delorie <dj@redhat.com>
5604
641a3af4 5605 * configure.in: Restore CFLAGS if GMP isn't present.
8b01a5c2
DD
5606 * configure: Regenerate.
5607
a481dbb7
DD
56082006-04-18 DJ Delorie <dj@redhat.com>
5609
5610 * configure.in (m32c): Build libstdc++-v3. Pass flags to
5611 reference libgloss so that libssp can be built in a combined
5612 tree.
5613 * configure: Regenerate.
5614
962c9e74
BE
56152006-04-10 Ben Elliston <bje@au.ibm.com>
5616
5617 * contrib: Remove directory.
5618
108a6f8e
CD
56192006-04-06 Carlos O'Donell <carlos@codesourcery.com>
5620
5621 * Makefile.tpl: Add install-html target.
5622 * Makefile.def: Add install-html target.
5623 * Makefile.in: Regenerate.
5624 * configure.in: Add --with-datarootdir, --with-docdir,
5625 and --with-htmldir options.
5626 * configure: Regenerate.
5627
a4ef73e9
BE
56282006-03-31 Ben Elliston <bje@au.ibm.com>
5629
5630 PR binutils/1860
5631 * configure.in: Require makeinfo 4.4 or higher.
5632 * configure: Regenerate.
5633
b37df25a
PB
56342006-03-14 Paolo Bonzini <bonzini@gnu.org>
5635
5636 * Makefile.in: Regenerate.
5637
a6df5a19
PB
56382006-03-14 Paolo Bonzini <bonzini@gnu.org>
5639
5640 Sync with gcc:
5641 2006-03-10 Aldy Hernandez <aldyh@redhat.com>
5642
f7c83eac
AS
5643 * configure.in: Handle --disable-<component> generically.
5644 * configure: Regenerate.
a6df5a19
PB
5645
5646 2006-02-21 Rafael Avila de Espindola <rafael.espindola@gmail.com>
0e7ef45c 5647
f7c83eac
AS
5648 * Makefile.tpl (BUILD_CONFIGDIRS): Remove.
5649 (TARGET_CONFIGDIRS): Remove.
5650 * configure.in: Remove AC_SUBST(target_configdirs).
5651 * Makefile.in, configure: Regenerated.
a6df5a19
PB
5652
5653
65419985
L
56542006-03-01 H.J. Lu <hongjiu.lu@intel.com>
5655
5656 PR libgcj/17311
5657 * ltmain.sh: Don't use "$finalize_rpath" for compile.
5658
c52c6897
PB
56592006-02-20 Paolo Bonzini <bonzini@gnu.org>
5660
5661 PR bootstrap/25670
5662
5663 * Makefile.tpl ([+compare-target+]): Print explanation messages.
5664
5665 * Makefile.def (ADAFLAGS, BOOT_ADAFLAGS, LANGUAGES): New flags_to_pass.
5666 * Makefile.tpl (BASE_FLAGS_TO_PASS): Support optional flags_to_pass.
5667 (EXTRA_GCC_FLAGS): Remove ADAFLAGS, BOOT_ADAFLAGS, LANGUAGES,
5668 BUILD_PREFIX, BUILD_PREFIX_1.
5669 * configure.in: (BUILD_PREFIX, BUILD_PREFIX_1): Don't substitute.
5670
5671 * Makefile.def (bootstrap stage 1): Pass LIBCFLAGS too.
5672 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Override LIBCFLAGS too.
5673
5674 * Makefile.tpl (configure-stage[+id+]-[+prefix+][+module+],
5675 all-stage[+id+]-[+prefix+][+module+], : Use $(current_stage) instead
5676 of `cat stage_current`. Always provide the `r' and `s' variables.
5677 (clean-stage[+id+]-[+prefix+][+module+]): Likewise, and make it into
5678 a single shell execution.
5679 (configure-[+prefix+][+module+], all-[+prefix+][+module+]): For
5680 bootstrapped modules, make the stage1 module if the build was not
5681 started yet, else build the current stage.
5682 (all-host, all-target): Omit bootstrapped modules (if bootstrapping).
5683 (all-build, all-host, all-target, [+make_target+]-host,
5684 [+make_target+]-target): Do not use \-continued lines.
5685 (target modules): Depend on stage_last, not all-gcc, if bootstrapping.
5686 (current_stage, restrap, stage_last): New.
5687
5688 * Makefile.in: Regenerate.
5689 * configure: Regenerate.
5690
b3ded179
PB
56912006-02-14 Paolo Bonzini <bonzini@gnu.org>
5692
5693 Sync from gcc:
5694
5695 2006-01-31 Richard Guenther <rguenther@suse.de>
5696 Paolo Bonzini <bonzini@gnu.org>
5697
f7c83eac
AS
5698 * Makefile.def (target_modules): Add libgcc-math target module.
5699 * configure.in (target_libraries): Add libgcc-math target library.
5700 (--enable-libgcc-math): New configure switch.
5701 * Makefile.in: Re-generate.
5702 * configure: Re-generate.
5703 * libgcc-math: New toplevel directory.
b3ded179
PB
5704
5705 2006-01-18 Richard Henderson <rth@redhat.com>
f7c83eac
AS
5706 Jakub Jelinek <jakub@redhat.com>
5707 Diego Novillo <dnovillo@redhat.com>
b3ded179 5708
f7c83eac
AS
5709 * libgomp: New directory.
5710 * Makefile.def: Add target_module libgomp.
5711 * Makefile.in: Regenerate.
5712 * configure.in (target_libraries): Add target-libgomp.
5713 * configure: Regenerate.
b3ded179 5714
3a35eeb3
PB
57152006-02-14 Paolo Bonzini <bonzini@gnu.org>
5716 Andreas Schwab <schwab@suse.de>
0e7ef45c 5717
3a35eeb3
PB
5718 * configure: Regenerate.
5719
2429c060
PB
57202006-01-16 Paolo Bonzini <bonzini@gnu.org>
5721
5722 * configure.in: Set with_gnu_as, with_gnu_ld, with_newlib earlier.
5723 Set md_exec_prefix. Use ACX_CHECK_INSTALLED_TARGET_TOOL to find
5724 the assembler, linker and binutils.
5725 * configure: Regenerate.
5726
ec49b2b8
NC
57272006-01-16 Nick Clifton <nickc@redhat.com>
5728
49b9e644 5729 * config.sub, config.guess: Sync from config repository.
ec49b2b8 5730
44b2308f
AO
57312006-01-05 Alexandre Oliva <aoliva@redhat.com>
5732
5733 * Makefile.tpl (clean-stage[+id+]-[+prefix+][+module+]): Remove
5734 @ from continuation.
5735 * Makefile.in: Rebuilt.
5736
80911fe1
PB
57372006-01-04 Paolo Bonzini <bonzini@gnu.org>
5738
5739 Sync from gcc:
5740
5741 2006-01-04 Paolo Bonzini <bonzini@gnu.org>
5742
f7c83eac 5743 PR bootstrap/24252
80911fe1 5744
f7c83eac
AS
5745 * Makefile.def (flags_to_pass): Add STAGE1_CFLAGS and STAGE1_LANGUAGES.
5746 * Makefile.tpl (OBJDUMP): New.
5747 (EXTRA_HOST_FLAGS): Add it.
5748 (EXTRA_GCC_FLAGS): Remove flags already specified in flags_to_pass.
80911fe1 5749
f7c83eac
AS
5750 * Makefile.tpl (stage[+id+]-start, stage[+id+]-end): Do not try
5751 to use symbolic links between directories. Avoid race conditions
5752 or make them harmless.
5753 * configure.in: Do not try to use symbolic links between directories.
80911fe1 5754
f7c83eac
AS
5755 * Makefile.def (LEAN): Pass.
5756 * Makefile.tpl (LEAN): Define.
5757 (stage[+id+]-start): Accept that the previous directory does not
5758 exist, if the bootstrap is lean.
5759 (stage[+id+]-bubble): Invoke lean bootstrap commands after
5760 stage[+id+]-start. Use a makefile variable and an `if' instead of a
5761 configure substitution.
5762 ([+compare-target+]): Likewise.
5763 ([+bootstrap-target+]-lean): New.
5764 * configure.in: Remove lean bootstrap support from here.
80911fe1 5765
f7c83eac
AS
5766 * Makefile.in: Regenerate.
5767 * configure: Regenerate.
80911fe1
PB
5768
5769 2006-01-02 Andreas Schwab <schwab@suse.de>
5770
f7c83eac
AS
5771 * configure.in: When reconfiguring remove Makefile in
5772 all stage directories.
5773 * configure: Regenerate.
80911fe1 5774
b59bea8a
NC
57752005-12-27 Leif Ekblad <leif@rdos.net>
5776
5777 * configure.in: Add support for RDOS target.
5778 * configure: Regenerate.
5779
d7730bac
NC
57802005-12-27 Nick Clifton <nickc@redhat.com>
5781
5782 PR binutils/1990
5783 * libtool.m4: Synchronize with version in GCC sources.
5784
c02dabc3
PB
57852005-12-20 Paolo Bonzini <bonzini@gnu.org>
5786
f7c83eac 5787 Revert Ada-related part of the previous change.
c02dabc3 5788
f7c83eac
AS
5789 * Makefile.def (ADAFLAGS, BOOT_ADAFLAGS, ADAFLAGS_FOR_TARGET):
5790 Do not pass.
5791 * Makefile.tpl (BOOT_ADAFLAGS): Do not define.
5792 * Makefile.in: Regenerate.
5793 * configure.in: Do not include mt-ppc-aix target fragment.
5794 * configure: Regenerate.
c02dabc3 5795
f6d183c0
PB
57962005-12-19 Paolo Bonzini <bonzini@gnu.org>
5797
5798 * configure.in: Select appropriate fragments for PowerPC/AIX.
5799 * configure: Regenerate.
5800
5801 * Makefile.def (flags_to_pass): Add ADAFLAGS, BOOT_ADAFLAGS,
5802 BOOT_CFLAGS, BOOT_LDFLAGS.
5803 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Handle BOOT_ADAFLAGS,
5804 BOOT_CFLAGS, BOOT_LDFLAGS.
5805 (TARGET_FLAGS_TO_PASS): Handle ADAFLAGS_FOR_TARGET.
5806 (stage[+id+]-bubble): Pass flags recursively to the comparison target.
5807 (stage): Fail if we cannot complete the work.
5808 * Makefile.in: Regenerate.
5809
f29759fc
JJ
58102005-12-16 Jeff Johnston <jjohnstn@redhat.com>
5811
5812 * COPYING.NEWLIB: Update copyright year for default
5813 copyright.
5814
1f054001
PB
58152005-12-15 Paolo Bonzini <bonzini@gnu.org>
5816
5817 * Makefile.tpl (all, do-[+make_target+], do-check, install,
5818 install-host-nogcc): Don't invoke $(stage) at the end.
5819 * Makefile.in: Regenerate.
5820
0aed8855
PB
58212005-12-14 Paolo Bonzini <bonzini@gnu.org>
5822
5823 * configure.in: Flip the top-level bootstrap switch.
5824 * configure: Regenerate.
5825
5826 Merge from gcc:
5827
5828 2005-12-14 Daniel Jacobowitz <dan@codesourcery.com>
5829
f7c83eac
AS
5830 * Makefile.tpl: Throughout the file, use : $(MAKE) along with
5831 $(stage) and $(unstage).
5832 (EXTRA_TARGET_FLAGS): Correct double-quoting.
5833 (all): Remove stray semicolon.
5834 (local-distclean): Don't handle multilib.tmp and multilib.out.
5835 (install.all): Set $s for consistency.
5836 (configure-[+prefix+][+module+]): Instead of [+deps+], handle
5837 check_multilibs setting. Always make the install directory.
5838 (configure-stage[+id+]-[+prefix+][+module+]): Likewise.
5839 Correct @if/@endif.
5840 (all-stage[+id+]-[+prefix+][+module+]): Correct @if/@endif.
5841 ($(TARGET_SUBDIR)/[+module+]/multilib.out): Remove.
5842 (stage[+id+]-start, stage[+id+]-end): Stage $(TARGET_SUBDIR).
5843 (multilib.out): Remove.
5844 * Makefile.in: Regenerated.
0aed8855
PB
5845
58462005-12-12 Nathan Sidwell <nathan@codesourcery.com>
5847
5848 * config.sub: Replace ms1 arch with mt. Allow ms1 as alias.
5849 * configure.in: Replace ms1 arch with mt.
5850 * configure: Rebuilt.
5851
58522005-12-05 Paolo Bonzini <bonzini@gnu.org>
5853
5854 Sync with gcc:
5855
4970f871
NS
58562005-12-12 Nathan Sidwell <nathan@codesourcery.com>
5857
5858 * config.sub: Replace ms1 arch with mt. Allow ms1 as alias.
5859 * configure.in: Replace ms1 arch with mt.
5860 * configure: Rebuilt.
5861
be01d343
PB
58622005-12-05 Paolo Bonzini <bonzini@gnu.org>
5863
5864 Sync with gcc:
5865
5866 2005-12-05 Paolo Bonzini <bonzini@gnu.org>
5867
f7c83eac
AS
5868 * configure.in (CONFIGURED_BISON, CONFIGURED_YACC, CONFIGURED_M4,
5869 CONFIGURED_FLEX, CONFIGURED_LEX, CONFIGURED_MAKEINFO): Remove
5870 "CONFIGURED_" from the AC_CHECK_PROGS invocation. Move below.
5871 Find in-tree tools if available.
5872 (EXPECT, RUNTEST, LIPO, STRIP): Find them and substitute them.
5873 (CONFIGURED_*_FOR_TARGET): Don't set nor substitute.
5874 (*_FOR_TARGET): Set them with GCC_TARGET_TOOL.
5875 (COMPILER_*_FOR_TARGET): New.
5876 * Makefile.tpl (HOST_EXPORTS): Add *_FOR_TARGET symbols that gcc needs.
5877 (BASE_TARGET_EXPORTS): Use COMPILER_*_FOR_TARGET symbols.
5878 (CONFIGURED_*, USUAL_*): Remove.
5879 (BISON, YACC, FLEX, LEX, M4, MAKEINFO, EXPECT, RUNTEST, LIPO,
5880 STRIP): Use autoconf substitutions.
5881 (COMPILER_AS_FOR_TARGET, COMPILER_LD_FOR_TARGET,
5882 COMPILER_NM_FOR_TARGET): New.
5883 (EXTRA_HOST_FLAGS): Pass LIPO and STRIP.
5884
5885 (all): Make all-host and all-target in parallel.
5886 (do-[+make_target+], do-check, install, [+compare-target+]): Ensure
5887 that $$r and $$s are set before invoking a recursive make.
5888 (stage[+id+]-bubble): Likewise, and invoke the comparison at the end.
5889 ([+bootstrap-target+]): Inline most of the `all' target.
be01d343
PB
5890
5891 2005-11-29 Ben Elliston <bje@au.ibm.com>
5892
f7c83eac
AS
5893 * Makefile.tpl (clean-target-libgcc): Invoke clean-target-libgcc
5894 from the gcc build directory.
5895 * Makefile.in: Regenerate.
be01d343
PB
5896
5897 2005-11-29 Ben Elliston <bje@au.ibm.com>
5898
f7c83eac
AS
5899 * Makefile.def: Add new libdecnumber host_module. Make all-gcc
5900 depend on all-libdecnumber.
5901 * configure.in (host_libs): Include libdecnumber.
5902 * Makefile.in: Regenerate.
5903 * configure: Likewise.
be01d343
PB
5904
5905 2005-11-21 Kean Johnston <jkj@sco.com>
5906
f7c83eac 5907 * config.sub, config.guess: Sync from upstream sources.
be01d343 5908
907be67c
DJ
59092005-11-11 Daniel Jacobowitz <dan@codesourcery.com>
5910
5911 * Makefile.def: Remove gdb dependencies for gdbtk.
5912 * Makefile.tpl (CONFIGURE_GDB_TK, INSTALL_GDB_TK): New variables.
5913 (configure-gdb, install-gdb): New rules.
5914 * configure.in: Set CONFIGURE_GDB_TK and INSTALL_GDB_TK.
5915 * Makefile.in, configure: Regenerated.
5916
e360f423
PB
59172005-10-22 Paolo Bonzini <bonzini@gnu.org>
5918
5919 PR bootstrap/24297
5920 * Makefile.tpl (do-[+make-target+], do-check, install,
5921 stage[+id+]-bubble, [+compare-target+]): Ensure $$r and $$s
5922 are set before recursing.
5923 * Makefile.in: Regenerate.
5924
45d5eb0a
EB
59252005-10-20 Eric Botcazou <ebotcazou@adacore.com>
5926
5927 PR bootstrap/18939
5928 * Makefile.def (gcc) <target>: Fix thinko.
5929 * Makefile.in: Regenerate.
5930
3cf3372e
BS
59312005-10-17 Bernd Schmidt <bernd.schmidt@analog.com>
5932
5933 * configure.in (bfin-*-*): Use test, not brackets, in if statement.
5934 * configure: Regenerate.
5935
bd70a46f
KH
59362005-10-09 Kazu Hirata <kazu@codesourcery.com>
5937
5938 * configure.in (arm-*-linux-gnueabi): Add to noconfigdirs
5939 target-libffi, target-qthreads, target-libjava, and
5940 targetlibobjc.
5941 * configure: Regenerate.
5942
5ae72758
DJ
59432005-10-06 Daniel Jacobowitz <dan@codesourcery.com>
5944
5945 * Makefile.def (flags_to_pass): Add OBJDUMP_FOR_TARGET.
5946 * Makefile.tpl (BASE_TARGET_EXPORTS): Add OBJDUMP.
5947 (OBJDUMP_FOR_TARGET, CONFIGURED_OBJDUMP_FOR_TARGET)
5948 (USUAL_OBJDUMP_FOR_TARGET): New.
5949 (EXTRA_TARGET_FLAGS): Add OBJDUMP.
5950 * configure.in: Check for $OBJDUMP_FOR_TARGET.
274b5ecd 5951 * configure, Makefile.in: Regenerated.
5ae72758 5952
cc96343e
PB
59532005-10-05 Paolo Bonzini <bonzini@gnu.org>
5954
5955 * Makefile.tpl (all) [gcc-no-bootstrap]: Make prebootstrap packages
5956 before other host packages.
5957
f70224b5
PB
59582005-10-05 Paolo Bonzini <bonzini@gnu.org>
5959
5960 PR bootstrap/22340
5961
5962 * configure.in (default_target): Remove.
5963 * Makefile.tpl (all): Do not use prerequisites as subroutines
5964 (all) [gcc-bootstrap]: Bootstrap gcc first if it was not done yet.
5965 (do-[+make_target+], check, install, [+bootstrap_target+]): Do not
5966 use prerequisites as subroutines.
5967 (check-host, check-target): New.
5968 (bootstrap configure & all targets): Do not use stage*-start
5969 if the directory layout is already ok.
5970 (non-bootstrap configure & all targets): Prepend a $(unstage).
5971 (stage[+id+]-bubble): Do that here. Do not use NOTPARALLEL.
5972 (NOTPARALLEL): Remove.
5973 (unstage, stage variables): New variables.
5974 (unstage, stage targets): Simply expand to those variables.
5975
5976 * configure: Regenerate.
5977 * Makefile.in: Regenerate.
5978
c13c918a
JW
59792005-10-04 James E Wilson <wilson@specifix.com>
5980
5981 * Makefile.def (lang_env_dependencies): Add libmudflap.
5982 * Makefile.in: Regenerate.
5983
376a0e54
CM
59842005-10-03 Catherine Moore <clm@cm00re.com>
5985
5986 * configure.in (bfin-*-*): Support bfin.
5987 * configure: Regenerated.
5988
d320aacb
L
59892005-09-30 H.J. Lu <hongjiu.lu@intel.com>
5990
5991 * configure.in (*-*-darwin*): Build bfd, binutils and opcodes.
5992 * configure: Regenerated.
5993
7e0f7140
GK
59942005-09-28 Geoffrey Keating <geoffk@apple.com>
5995
5996 * Makefile.tpl (BASE_TARGET_EXPORTS): Add LIPO, STRIP.
5997 (LIPO_FOR_TARGET): New.
5998 (CONFIGURED_LIPO_FOR_TARGET): New.
5999 (USUAL_LIPO_FOR_TARGET): New.
6000 (STRIP_FOR_TARGET): New.
6001 (CONFIGURED_STRIP_FOR_TARGET): New.
6002 (USUAL_STRIP_FOR_TARGET): New.
6003 * Makefile.def (flags_to_pass): Add LIPO_FOR_TARGET and
6004 STRIP_FOR_TARGET.
6005 * configure.in: Set LIPO_FOR_TARGET, STRIP_FOR_TARGET,
6006 CONFIGURED_LIPO_FOR_TARGET, CONFIGURED_STRIP_FOR_TARGET.
6007 * Makefile.in: Regenerate.
6008 * configure: Regenerate.
0e7ef45c 6009
096f7d00
DE
60102005-09-19 David Edelsohn <edelsohn@gnu.org>
6011
6012 * configure.in (powerpc-*-aix*): Add target-libssp to noconfigdirs.
6013 (rs6000-*-aix*): Same.
6014 * configure: Regenerate.
6015
60162005-09-14 Francois-Xavier Coudert <coudert@clipper.ens.fr>
6017
6018 * configure.in: Recognize f95 in the --enable-languages option,
6019 and substitute it for fortran, issuing a warning.
6020 * configure: Regenerate.
6021
2016dfcc
BE
60222005-09-07 Ben Elliston <bje@au.ibm.com>
6023
6024 Import from Autoconf sources:
6025
6026 2005-09-06 Paul Eggert <eggert@cs.ucla.edu>
6027 * move-if-change: Don't output "$2 is unchanged"; suggested by Ben
6028 Elliston. Handle weird characters correctly.
6029
6dd2fda9
DD
60302005-08-30 Phil Edwards <phil@codesourcery.com>
6031
6032 * configure.in (*-*-vxworks*): Add target-libstdc++-v3 to noconfigdirs.
6033 * configure: Regenerated.
6034
e6db70d4
RE
60352005-08-20 Richard Earnshaw <richard.earnshaw@arm.com>
6036
f7c83eac
AS
6037 * Makefile.def (libssp): Add to lang_env_dependencies.
6038 * Makefile.in: Regenerate.
e6db70d4 6039
e1e3d0f5
CG
60402005-08-17 Christian Groessler <chris@groessler.org>
6041
6042 * Makefile.tpl: (USUAL_CC_FOR_TARGET): Add missing trailing slash.
6043 * Makefile.in: Regenerate.
6044
05cbd757
PB
60452005-08-12 Paolo Bonzini <bonzini@gnu.org>
6046
6047 * configure.in: Replace NCN_STRICT_CHECK_TOOL with
6048 NCN_STRICT_CHECK_TOOLS, and likewise for NCN_STRICT_CHECK_TARGET_TOOLS.
6049 Look for alternate names of the target cc and c++
6050 * configure: Regenerate.
6051
55db4b87
PB
60522005-08-08 Paolo Bonzini <bonzini@gnu.org>
6053
6054 * configure.in (CC_FOR_TARGET, CXX_FOR_TARGET, GCJ_FOR_TARGET,
6055 GCC_FOR_TARGET, RAW_CXX_FOR_TARGET, GFORTRAN_FOR_TARGET): Find
6056 them with NCN_STRICT_CHECK_TARGET_TOOL, like the other target
6057 tools; remove code to manually set them.
6058 (Target tools): Look in the environment for them.
6059 * Makefile.tpl (CC_FOR_TARGET, CXX_FOR_TARGET, GCJ_FOR_TARGET,
6060 GCC_FOR_TARGET, RAW_CXX_FOR_TARGET, GFORTRAN_FOR_TARGET): Redefine.
6061 (AS_FOR_TARGET, LD_FOR_TARGET, NM_FOR_TARGET): Look into gcc
6062 build directory.
6063 (CONFIGURED_CC_FOR_TARGET, CONFIGURED_CXX_FOR_TARGET,
6064 CONFIGURED_GCJ_FOR_TARGET, CONFIGURED_GCC_FOR_TARGET,
6065 CONFIGURED_GFORTRAN_FOR_TARGET, USUAL_CC_FOR_TARGET,
6066 USUAL_CXX_FOR_TARGET, USUAL_GCJ_FOR_TARGET, USUAL_GCC_FOR_TARGET,
6067 USUAL_RAW_CXX_FOR_TARGET, USUAL_GFORTRAN_FOR_TARGET): New.
6068 (CXX_FOR_TARGET_FOR_RECURSIVE_MAKE,
6069 RAW_CXX_FOR_TARGET_FOR_RECURSIVE_MAKE, RECURSE_FLAGS): Delete.
6070 * configure: Regenerate.
6071 * Makefile.in: Regenerate.
6072
414e5532
MM
60732005-07-27 Mark Mitchell <mark@codesourcery.com>
6074
6075 * Makefile.tpl (EXTRA_TARGET_FLAGS): Set LDFLAGS=LDFLAGS_FOR_TARGET.
0e7ef45c 6076 * Makefile.def (flags_to_pass): Add LDFLAGS_FOR_TARGET.
414e5532
MM
6077 * Makefile.in: Regenerated.
6078
a19b6204
MM
60792005-07-26 Mark Mitchell <mark@codesourcery.com>
6080
6081 * Makefile.tpl (SYSROOT_CFLAGS_FOR_TARGET): New variable.
6082 (CFLAGS_FOR_TARGET): Use it.
6083 (CXXFLAGS_FOR_TARGET): Likewise.
6084 * Makefile.in: Regenerated.
6085 * configure.in (--with-build-sysroot): New option.
6086 * configure: Regenerated.
6087
b73aa406
PB
60882005-07-24 Paolo Bonzini <bonzini@gnu.org>
6089
6090 * Makefile.tpl: Wrap install between unstage and stage
6091 * Makefile.in: Regenerate.
6092
6e4d0bcb
KC
60932005-07-16 Kelley Cook <kcook@gcc.gnu.org>
6094
6095 * all files: Update FSF address.
6096
49f58d10
JB
60972005-07-14 Jim Blandy <jimb@redhat.com>
6098
6099 * configure.in: Add cases for Renesas m32c.
6100 * configure: Regenerated.
0e7ef45c 6101
1d9c9cd7
KC
61022005-07-14 Kelley Cook <kcook@gcc.gnu.org>
6103
6104 * COPYING, compile, config-ml.in, config.guess,
6105 config.sub, install-sh, missing, mkinstalldirs,
6106 symlink-tree, ylwrap: Sync from upstream sources.
6107
1587117a
EC
61082005-07-13 Eric Christopher <echristo@redhat.com>
6109
6110 * configure.in: Add toplevel noconfigdir support for tpf.
6111 * configure: Regenerate.
6112
bb780410
DD
61132005-07-11 Jakub Jelinek <jakub@redhat.com>
6114
6115 * Makefile.def (target_modules): Add libssp.
6116 * configure.in (target_libraries): Add target-libssp.
6117 * configure: Rebuilt.
6118 * Makefile.in: Rebuilt.
6119
064d0a7c
PB
61202005-07-11 Paolo Bonzini <bonzini@gnu.org>
6121
6122 PR ada/22340
6123
6124 * Makefile.def: Sync with gcc.
6125 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Fix pasto.
6126 * Makefile.in: Regenerate.
6127
b2edd3b5
AS
61282005-07-07 Andreas Schwab <schwab@suse.de>
6129
6130 * Makefile.def (flags_to_pass): Add CFLAGS_FOR_BUILD.
6131 * Makefile.tpl (EXTRA_GCC_FLAGS): Don't pass CFLAGS_FOR_BUILD here.
6132 * Makefile.in: Regenerated.
6133
5f128533
KH
61342005-07-07 Kazu Hirata <kazu@codesourcery.com>
6135
6136 * configure.in: Add --enable-libssp and --disable-libssp.
6137 * configure: Regenerate with autoconf-2.13.
6138
4e3fc8e5
GK
61392005-07-06 Geoffrey Keating <geoffk@apple.com>
6140
6141 * configure.in: Don't build sim or rda when targetting darwin.
6142 * configure: Regenerate.
6143
c7357d6a
BE
61442005-07-04 Ben Elliston <bje@gnu.org>
6145
6146 * src-release (do-proto-toplev): Remove dejagnu bits.
6147 (DEJAGNU_SUPPORT_DIRS): Remove.
6148 (dejagnu.tar.bz2, dejagnu.tar): Likewise.
6149 (GDBD_SUPPORT_DIRS): Likewise.
6150 (gdb+dejagnu.tar.bz2, gdb+dejagnu.tar): Likewise.
6151 (INSIGHTD_SUPPORT_DIRS): Likewise.
6152 (insight+dejagnu.tar.bz2, insight+dejagnu.tar): Likewise.
6153
61542005-06-30 Ben Elliston <bje@gnu.org>
89b85085
BE
6155
6156 * setup.com (mpw): Remove unused directive.
6157
7d329e61
PB
61582005-06-22 Paolo Bonzini <bonzini@gnu.org>
6159
6160 * Makefile.def (stagefeedback): Come after profile.
6161 Define profiledbootstrap target.
6162 * Makefile.tpl (profiledbootstrap): Remove.
6163 (stageprofile-end): Zap stagefeedback.
6164 (stagefeedback-start): Copy all .gcda files, not only GCC's.
6165 * Makefile.in: Regenerate.
6166
e5fbed21
DD
61672005-06-13 Zack Weinberg <zack@codesourcery.com>
6168
6169 * depcomp: Update from automake CVS. Add 'ia64hp' stanza.
6170 In 'cpp' stanza, support '#line' as well as '# '.
6171
59f7ec45
HPN
61722005-06-07 Hans-Peter Nilsson <hp@axis.com>
6173
6174 * configure.in (unsupported_languages): New macro.
6175 <mmix-knuth-mmixware>: Set unsupported_languages. Name explicit
6176 non-ported target libraries in noconfigdirs.
6177 <cris-*, crisv32-*> Ditto, except for non-aout, non-elf,
6178 non-linux-gnu. Remove libgcj_ex_libffi.
9eb322aa 6179 <lang_frag loop>: Set add_this_lang=no if the language is in
59f7ec45
HPN
6180 unsupported_languages.
6181 * configure: Regenerate.
6182
c10e9ba7
DD
61832005-06-04 Tobias Schl"uter <tobias.schlueter@physik.uni-muenchen.de>
6184
6185 * configure.in: Fix typo in handling of --with-mpfr-dir.
6186 * configure: Regenerate.
6187
20deb2b8
JB
61882005-06-02 Jim Blandy <jimb@redhat.com>
6189
6190 * config.sub: Add cases for the Renesas m32c. (This patch has been
6191 accepted into the master sources.)
6192
cdb9b172 61932005-06-02 Aldy Hernandez <aldyh@redhat.com>
f7c83eac
AS
6194 Michael Snyder <msnyder@redhat.com>
6195 Stan Cox <scox@redhat.com>
cdb9b172 6196
f7c83eac 6197 * configure.in: Set noconfigdirs for ms1.
cdb9b172 6198
f7c83eac 6199 * configure: Regenerate.
cdb9b172 6200
1dc3053f
PB
62012005-05-25 Paolo Bonzini <bonzini@gnu.org>
6202
6203 * Makefile.tpl (stage[+id+]-start): Iterate over target module as well.
6204 (Dependencies): Consider target modules for bootstrap dependencies.
6205 Make target bootstrap modules depend on each stage's gcc.
6206 * Makefile.in: Regenerate.
6207
c60fe18b
PB
62082005-05-20 Paolo Bonzini <bonzini@gnu.org>
6209
6210 * Makefile.def (configure-gcc): Depend on binutils having been built.
6211 (all-gcc): No need to do it here.
6212 * Makefile.in: Regenerate.
6213
27258dd4
PB
62142005-05-19 Paul Brook <paul@codesourcery.com>
6215
0e7ef45c 6216 * configure.in: Rewrite misleading error message when requested
27258dd4
PB
6217 language cannot be built.
6218 * configure: Regenerate.
6219
42ecbf5e
DJ
62202005-05-15 Daniel Jacobowitz <dan@codesourcery.com>
6221
6222 * ylwrap: Import from Automake 1.9.5.
6223
ae380b45
MS
62242005-05-04 Mike Stump <mrs@apple.com>
6225
6226 * configure.in: Always pass --target to target configures as
6227 otherwise rebuilds that do --recheck will fail.
811d3af8 6228 * configure: Rebuilt.
ae380b45 6229
d545f33b
PB
62302005-05-04 Paolo Bonzini <bonzini@gnu.org>
6231
6232 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Rename from
6233 STAGE_HOST_EXPORTS.
6234 (configure, all): Add bootstrap support.
6235 (Host modules, target modules): Pass post-stage1 flags and exports.
6236 (Top-level bootstrap): Remove bootstrap rules, expanded elsewhere.
6237 * Makefile.in: Regenerate.
6238
2faa2958
PB
62392005-04-29 Paolo Bonzini <bonzini@gnu.org>
6240
6241 Sync from gcc:
6242
6243 2005-04-22 Bernd Schmidt <bernd.schmidt@analog.com>
6244
f7c83eac 6245 * config.sub: Update from master copy.
2faa2958
PB
6246
6247 2005-04-19 Hans-Peter Nilsson <hp@axis.com>
6248
f7c83eac
AS
6249 * configure.in <crisv32-*-*, cris-*-*>: New local variable
6250 libgcj_ex_libffi. Have specific match for *-*-linux*. Separate
6251 matches for "*-*-aout" and "*-*-elf". Don't disable libffi for
6252 "*-*-elf" and "*-*-linux*".
6253 * configure: Regenerate.
2faa2958 6254
a7254363
PB
62552005-04-06 Paolo Bonzini <bonzini@gnu.org>
6256
f7c83eac 6257 * Makefile.tpl (BUILD_CONFIGARGS): Include --with-build-subdir.
a7254363
PB
6258 (TARGET_CONFIGARGS): Include --with-target-subdir.
6259 (configure, all): New macros. Use them throughout.
6260
a8637a7d
PB
62612005-04-05 Paolo Bonzini <bonzini@gnu.org>
6262
6263 * Makefile.tpl: Sync with gcc.
6264 * Makefile.in: Regenerate.
6265
dd387d52
JR
62662005-03-30 J"orn Rennecke <joern.rennecke@st.com>
6267
6268 * config/mh-mingw32: Delete.
6269 * configure.in: Don't use it.
6270 * configure: Regenerate.
6271
e90269c8
PB
62722005-03-31 Paolo Bonzini <bonzini@gnu.org>
6273
6274 * Makefile.def (bfd, opcodes, libstdc++-v3, libmudflap): Set lib_path.
6275 * Makefile.tpl (SET_LIB_PATH, REALLY_SET_LIB_PATH): Remove.
6276 (HOST_EXPORTS, STAGE_HOST_EXPORTS, TARGET_EXPORTS): Set $(RPATH_ENVVAR).
6277 (HOST_LIB_PATH): Generate from Makefile.def.
6278 (TARGET_LIB_PATH): Likewise.
6279 (Old bootstrap targets): Include TARGET_LIB_PATH into RPATH_ENVVAR.
6280 * Makefile.in: Regenerate.
6281 * configure.in (set_lib_path, SET_LIB_PATH, SET_GCC_LIB_PATH): Remove.
6282 (RPATH_ENVVAR): Include Darwin case.
6283 * configure: Regenerate.
6284
9a237d9e
PB
62852005-03-25 Paolo Bonzini <bonzini@gnu.org>
6286
6287 * configure.in (RPATH_ENVVAR): Set to DYLD_LIBRARY_PATH on Darwin.
6288 * configure: Regenerate.
6289
479759c8
ZW
62902005-03-21 Zack Weinberg <zack@codesourcery.com>
6291
6292 * Makefile.def: Remove libstdcxx_incdir, libsubdir, gxx_include_dir,
6293 gcc_version, and gcc_version_trigger from set of flags to pass.
6294 * Makefile.tpl: Remove definitions of above variables.
6295 (config.status): Remove dependency on $(gcc_version_trigger).
6296 * Makefile.in: Regenerate.
6297 * configure.in: Do not reference config/gcc-version.m4 nor
6298 config/gxx-include-dir.m4. Do not invoke TL_AC_GCC_VERSION nor
6299 TL_AC_GXX_INCLUDE_DIR. Do not set gcc_version_trigger.
6300 * configure: Regenerate.
6301
4cfaf6d5
DD
63022005-03-16 Manfred Hollstein <manfred.h@gmx.net>
6303 Andrew Pinski <pinskia@physics.uc.edu>
6304
6305 * Makefile.tpl (check-[+module+]): Fix shell statement inside if ... fi.
6306 * Makefile.in: Regenerate.
6307
33a3fb7b
AO
63082005-03-01 Alexandre Oliva <aoliva@redhat.com>
6309
6310 PR libgcj/20160
6311 * ltmain.sh: Avoid creating archives with components that have
6312 duplicate basenames.
6313
2da12f12
PB
63142005-02-28 Andrew Pinski <pinskia@physics.uc.edu>
6315
479759c8
ZW
6316 PR bootstrap/20250
6317 * Makefile.tpl (HOST target installs): Fix copy and pasto, use install
6318 instead of check.
6319 * Makefile.in: Regenerate.
2da12f12 6320
b00612cc
PB
63212005-02-28 Paolo Bonzini <bonzini@gnu.org>
6322
6323 Sync from gcc.
6324
6325 2005-02-28 Paolo Bonzini <bonzini@gnu.org>
6326
6327 PR bootstrap/17383
6328 * Makefile.def (target_modules): Remove "stage", now unnecessary.
6329 * Makefile.tpl (HOST_SUBDIR): New substitution.
6330 (STAGE_HOST_EXPORTS, EXPECT, HOST_LIB_PATH, USUAL_AR_FOR_TARGET,
6331 USUAL_AS_FOR_TARGET, USUAL_DLLTOOL_FOR_TARGET, USUAL_GCC_FOR_TARGET,
6332 USUAL_LD_FOR_TARGET, USUAL_NM_FOR_TARGET, USUAL_OBJDUMP_FOR_TARGET,
6333 USUAL_RANLIB_FOR_TARGET, USUAL_WINDRES_FOR_TARGET): Use it.
6334 (Host modules, Bootstrapped modules): Use it.
6335 (Build modules, Target modules): Do not create symlink trees,
6336 always configure out-of-srcdir.
6337 (distclean): Try removing $(host_subdir) with rm before using rm -rf.
6338 * configure.in (FLAGS_FOR_TARGET, CC_FOR_TARGET, GCJ_FOR_TARGET,
6339 GFORTRAN_FOR_TARGET, CXX_FOR_TARGET, RAW_CXX_FOR_TARGET): Use
6340 $(HOST_SUBDIR). Create a symlink for host_subdir.
6341
6342 * Makefile.in: Regenerate.
6343 * configure: Regenerate.
6344
6345 Merged from libada-gnattools-branch:
6346 2004-11-28 Nathanael Nerode <neroden@gcc.gnu.org>
6347
6348 * Makefile.def: Add gnattools as a module, depending on target-libada.
6349 * Makefile.in: Regenerate.
6350 * configure.in: Include gnattools in host_tools; disable it if ada
6351 is disabled.
6352 * configure: Regenerate.
6353
c3e65f62
NC
63542005-02-23 Nick Clifton <nickc@redhat.com>
6355
6356 * configure: Regenerate.
6357
e4d180c2
NC
63582005-02-22 Paul Schlie <schlie@comcast.net>
6359
6360 * configure.in: Allow darwin targeted ports to build tk, itcl and
6361 libgui.
6362
e3c770b1
EB
63632005-02-21 Eric Botcazou <ebotcazou@libertysurf.fr>
6364
6365 PR libgcj/10353
6366 * configure.in (noconfigdirs) <sparc-*-solaris2.[0-6]>: Add libgcj.
6367 * configure: Regenerate.
6368
9c73618c
AC
63692005-02-08 Andrew Cagney <cagney@gnu.org>
6370
6371 * MAINTAINERS: Delete reference to dejagnu/ and mmalloc/ from the
6372 gdb/ section. Update GDB's URL.
6373
c46f8c51
AC
63742005-01-31 Andrew Cagney <cagney@gnu.org>
6375
6376 * gettext.m4: Only set ENABLE_NLS when gettext is present.
6377
c7e66c6d
HPN
63782005-01-29 Hans-Peter Nilsson <hp@axis.com>
6379
6380 * configure.in (noconfigdirs) <crisv32-*-*>: Match like cris-*-*.
6381 <crisv32-*-*, cris-*-*>: Only disable target-newlib and
6382 target-libgloss when not *-*-elf and *-*-aout.
6383 * configure: Regenerate.
6384
a53bf506
AC
63852005-01-27 Andrew Cagney <cagney@gnu.org>
6386
6387 * gettext.m4: Don't use NONE as a default for CATOBJEXT.
6388
45181ed1
AC
63892005-01-24 Andrew Cagney <cagney@gnu.org>
6390
6391 * gettext.m4: Only fall back to ../intl/ when it's present.
6392
a1e0f4e4
KC
63932005-01-17 Kelley Cook <kcook@gcc.gnu.org>
6394
6395 * install-sh, config.sub: Import from upstream.
6396
63972005-01-17 Kelley Cook <kcook@gcc.gnu.org>
06bcb89d
KC
6398
6399 PR bootstrap/18222
6400 * Makefile.def: Pass CPPFLAGS_FOR_TARGET.
6401 * Makefile.tpl: Define target CPPFLAGS on CPPFLAGS_FOR_TARGET.
6402 * Makefile.in: Regenerate.
6403
c50382e2
PB
64042005-01-03 Paolo Bonzini <bonzini@gnu.org>
6405
6406 Revert 2004-12-28 Makefile changes, a better fix will be
6407 applied to mainline and src after GCC 4.0 branches.
6408
11d07737
PB
64092004-12-28 Paolo Bonzini <bonzini@gnu.org>
6410
6411 PR bootstrap/17383
6412
6413 * Makefile.def (target_modules): Remove stage parameter,
6414 it is always true now.
6415 * Makefile.tpl (configure-build-[+module+],
6416 configure-target-[+module+]): Always build symlink tree
6417 for the directory and for include. BUILD_SUBDIR and
6418 TARGET_SUBDIR cannot be . anymore.
6419 * Makefile.in: Regenerate.
6420
dadfdbe2
DD
64212004-12-25 David Edelsohn <edelsohn@gnu.org>
6422
6423 Revert 2004-12-08 Makefile changes.
6424
dbf85af7
JR
64252004-12-16 Andrew Stubbs <andrew.stubbs@st.com>
6426
6427 * configure.in (sh64-*-*): Reenable gprof.
6428 * configure: Regenerate.
6429
6b8fea99
JB
64302004-12-09 Jim Blandy <jimb@redhat.com>
6431
6432 * MAINTAINERS: List 'depcomp' as part of automake.
6433
7341462c
DE
64342004-12-08 David Edelsohn <edelsohn@gnu.org>
6435
6436 * Makefile.def (flags_to_pass): Add PICFLAG_FOR_TARGET.
6437 * Makefile.tpl (EXTRA_HOST_FLAGS): Add PICFLAG.
6438 (EXTRA_TARGET_FLAGS): Add PICFLAG.
6439 * Makefile.in: Regenerate.
6440
21fde4dc
DD
64412004-12-07 Matt Kraai <kraai@ftbfs.org>
6442
6443 * Makefile.tpl: Generate normal dependencies if the LHS module is
6444 not bootstrapped.
6445 * Makefile.in: Regenerate.
6446
3da796a2
RS
64472004-12-03 Richard Sandiford <rsandifo@redhat.com>
6448
6449 * configure.in: Include config/gxx-include-dir.m4. Use
6450 TL_AC_GXX_INCLUDE_DIR. Remove some now-redundant AC_SUBSTs.
6451 * configure: Regenerate.
6452
73fb7068
RS
64532004-12-03 Richard Sandiford <rsandifo@redhat.com>
6454
6455 * config.if: Delete.
6456 * configure.in: Set libstdcxx_incdir directly.
6457 * configure: Regenerate.
6458 * MAINTAINERS: Remove mention of config.if.
6459 * src-release (DEVO_SUPPORT): Remove config.if.
6460
6c8e6ce9
EC
64612004-12-02 Eric Christopher <echristo@redhat.com>
6462
3b6098f8
EC
6463 * Makefile.tpl (clean-target-libgcc): Add stmp-dirs to list
6464 of things to remove.
6c8e6ce9 6465 * Makefile.in: Regenerate.
479759c8 6466
b8658a2f
RS
64672004-12-02 Richard Sandiford <rsandifo@redhat.com>
6468
6469 * configure.in: Clear gcc_version_trigger if the file doesn't exist.
6470 * configure: Regenerate.
6471
afefada0
RS
64722004-12-02 Richard Sandiford <rsandifo@redhat.com>
6473
6474 * configure.in: Include config/gcc-version.m4. Use TL_AC_GCC_VERSION
6475 to set gcc_version_trigger. Remove some now-redundant AC_SUBSTs.
6476 * configure: Regenerate.
6477
5dcac624
DA
64782004-11-26 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
6479
6480 * configure.in (hppa*-*-linux*): Don't add libgcj to noconfigdirs.
6481 (hppa*64*-*-*): Delete incorrect comment.
6482 * configure: Rebuilt.
6483
57d1eb1a
DD
64842004-11-15 Kelley Cook <kcook@gcc.gnu.org>
6485
6486 * install-sh, compile: Import from automake.
6487
64882004-11-15 Kelley Cook <kcook@gcc.gnu.org>
6489
6490 * config.guess, config.sub: Import from savannnah.
6491
6d389afc
MS
64922004-11-12 Mike Stump <mrs@apple.com>
6493
6494 * Makefile.def: Add html support.
6495 * Makefile.tpl: Likewise.
6496 * Makefile.in: Regenerate.
6497
69e57115
GK
64982004-11-11 Geoffrey Keating <geoffk@apple.com>
6499
6500 PR 18423
6501 * configure.in: Remove all instances of build-fixincludes from
6502 noconfigdirs.
6503 (build_configargs): Supply --target to subdirectories.
6504 * configure: Regenerate.
6505
6506 * Makefile.def: Make gcc install depend on fixincludes install.
6507 * Makefile.in: Regenerate.
6508
ba719b26
HPN
65092004-11-08 Hans-Peter Nilsson <hp@bitrange.com>
6510
6511 * configure.in (noconfigdirs) [mmix-*-*]: Disable
6512 target-libgfortran.
6513 * configure: Regenerate.
6514
c37653e7
DE
65152004-11-07 David Edelsohn <edelsohn@gnu.org>
6516
6517 * config-ml.in: Pass FCFLAGS for multilibs, handle GFORTRAN
6518 like CC.
6519
1eefd493
PB
65202004-11-05 Paolo Bonzini <bonzini@gnu.org>
6521
6522 * Makefile.def (host fixincludes): Specify missing targets.
6523 * Makefile.in: Regenerate.
6524
02b1af09
L
65252004-11-04 H.J. Lu <hongjiu.lu@intel.com>
6526
6527 PR other/17783
6528 * configure.in: Set up LD_LIBRARY_PATH by default for gcc.
6529 * configure: Regenerated.
6530
7f266840
DJ
65312004-11-04 Daniel Jacobowitz <dan@debian.org>
6532
6533 * configure.in (arm-*-oabi*, thumb-*-oabi*): Remove.
6534 * configure: Regenerated.
6535
47444073
AL
65362004-10-28 Eric B. Weddington <ericw@evcohs.com>
6537
6538 PR target/18151
6539 * configure.in (case ${target}): Do not build fixincludes for avr.
6540 * configure: Regenerated.
6541
caeba88f
AL
65422004-10-26 Paolo Bonzini <bonzini@gnu.org>
6543
6544 * configure.in (case ${target}): Do not build fixincludes
6545 on platforms where it is not used.
6546 * configure: Regenerated.
6547
0fdbe983
DJ
65482004-10-23 Daniel Jacobowitz <dan@debian.org>
6549
6550 * configure.in: Use an absolute path to install-sh.
6551 * configure: Regenerated.
6552
1c0f67c1
AC
65532004-10-19 Andrew Cagney <cagney@gnu.org>
6554
6555 * src-release (do-djunpack, do-md5sum): Install the generated file
6556 directly into the proto-toplev/ directory.
479759c8 6557
a9cfce9c
AC
65582004-10-19 Andrew Cagney <cagney@gnu.org>
6559
6560 * src-release (GDB_SUPPORT_DIRS): Remove utils and intl.
6561
ac0fa625
DD
65622004-10-12 Kelley Cook <kcook@gcc.gnu.org>
6563
6564 * configure.in (*-*-cygwin*): Supress warning if newlib not present.
6565 * configure: Regenerate.
6566
d27cc32e
PB
65672004-10-06 Paolo Bonzini <bonzini@gnu.org>
6568
6569 Fix wrong conflict resolution in:
6570
6571 2004-08-16 Paolo Bonzini <bonzini@gnu.org>
6572
6573 * Makefile.in: Regenerate.
6574 * Makefile.tpl (Autogenerated `all-*' targets): Invoke $(TARGET-*)
6575 in the recursive `make', instead of hardwiring `all'.
6576 (Autogenerated TARGET-* variables): New.
6577
1763908f
UW
65782004-10-05 Ulrich Weigand <uweigand@de.ibm.com>
6579
6580 Merged from GCC / libtool upstream:
6581 2004-10-02 P.J. Darcy <darcypj@us.ibm.com>
6582 * ltcf-c.sh (tpf*): Add ld_shlibs=yes.
6583 * ltcf-cxx.sh (tpf*): Likewise.
6584 * ltconfig (tpf*): Add TPF OS configuration support.
6585
0490e016
NC
65862004-09-30 Tomer Levi <Tomer.Levi@nsc.com>
6587
6588 * configure.in: Enable target-libgloss for crx-*-*.
479759c8 6589 * configure: Regenerate.
0490e016 6590
32be62b5
RS
65912004-09-24 Michael Roth <mroth@nessie.de>
6592
6593 * configure.in (--without-headers): Add missing double quotes.
6594 * configure: Regenerate.
6595
6048df60
DD
65962004-09-24 Kelley Cook <kcook@gcc.gnu.org>
6597
6598 * ylwrap: Revert to previous version.
6599
315b3b02
L
66002004-09-23 H.J. Lu <hongjiu.lu@intel.com>
6601
6048df60 6602 PR bootstrap/17369
315b3b02
L
6603 * Makefile.tpl (REALLY_SET_LIB_PATH): Add @SET_GCC_LIB_PATH@.
6604 (HOST_EXPORTS]): Add @SET_GCC_LIB_PATH@. Set and export
6605 SET_GCC_LIB_PATH_CMD.
6606 (BASE_TARGET_EXPORTS): Likewise.
6607 * Makefile.in: Regenerated.
6608
6609 * configure.in (SET_GCC_LIB_PATH): Set and substitute.
6610 * configure: Regenerated.
6611
fe69863c
DD
66122004-09-23 Kelley Cook <kcook@gcc.gnu.org>
6613
6614 * config.guess: New upstream version
6615 * compile, depcomp, install-sh, ylwrap: Likewise.
6616
66172004-09-19 Roger Sayle <roger@eyesopen.com>
6618
6619 * config/mh-x86omitfp: New host makefile fragment. Add
6620 -fomit-frame-pointer to the default BOOT_CFLAGS.
6621 * configure.in: Use it to speed up bootstrap on some IA-32 hosts.
6622 * configure: Regenerate.
6623
66242004-09-15 Andrew Pinski <pinskia@physics.uc.edu>
6625
6626 PR target/11572
6627 * configure.in (*-*-darwin*): Renable libobjc.
6628 * configure: Regenerate.
6629
be75bbe1 66302004-09-09 Daniel Berlin <dberlin@dberlin.org>
479759c8 6631
be75bbe1
DB
6632 * Makefile.def: Remove libbanshee.
6633 * Makefile.tpl: Ditto.
6634 * configure.in: Ditto.
6635 * Makefile.in: Regen.
6636 * configure: Ditto.
6637
1b882a91
PB
66382004-09-07 Paolo Bonzini <bonzini@gnu.org>
6639
6640 * missing: Import latest version from master repository.
6641
eb1352ed
NC
66422004-09-04 Nick Clifton <nickc@redhat.com>
6643
6644 * config.sub: Import latest version from master repository.
6645 * config.guess: Likewise.
6646 This includes these changes:
479759c8 6647
eb1352ed
NC
6648 2004-08-27 Hans-Peter Nilsson <hp@axis.com>
6649
6650 * config.sub: Handle crisv32, alias etraxfs.
6651 * config.guess (crisv32:Linux:*:*): Handle.
6652
6653 2004-08-13 Brad Smith <brad@comstyle.com>
6654
6655 * config.guess (*:OpenBSD:*:*): Remove defunct MIPS machines.
6656 (sgi:OpenBSD:*:*): Emit mips64, not mipseb.
6657
6658 2004-08-11 Paul Eggert <eggert@cs.ucla.edu>
6659
6660 * config.guess (*:Darwin:*:*): If uname -p reports "unknown",
6661 assume the processor is a powerpc. This is because coreutils
6662 uname (at least versions 4.5.7 through 5.2.1) outputs "unknown"
6663 in this case, due to a MacOS X bug that causes
6664 sysctl ((int[]) {CTL_HW, HW_MACHINE_ARCH}, 2, buffer, &bufsize, 0, 0)
6665 to return a negative number.
6666 Problem reported by Petter Reinholdtsen in:
6667 http://lists.gnu.org/archive/html/bug-gnu-utils/2003-02/msg00201.html
6668
6669 2004-07-19 Ben Elliston <bje@gnu.org>
6670
6671 * config.guess (S7501:*:4.0:3.0): Handle NCR System V UNIX machine.
6672
6673 2004-06-24 Ben Elliston <bje@gnu.org>
6674
6675 * config.guess: Update copyright years.
6676 * config.sub: Likewise.
6677
6678 2004-06-22 Robert Millan <robertmh@gnu.org>
6679
6680 * config.guess (*:FreeBSD:*:*): Remove check for glibc (unneeded
6681 since GNU/kFreeBSD systems match *:GNU/*:*:* instead).
6682
6683 2004-06-22 Stanley F. Quayle <stan@stanq.com>
6684
6685 * config.guess (*:*VMS:*:*): New entry. Replaces
6686 Alpha:OpenVMS:*. Recognize and advertise all VMS flavors as dec
6687 manufacturer.
6688
6689 2004-06-22 Ben Elliston <bje@gnu.org>
6690
6691 * config.guess: Cray fixes from Wendy Palm <wendyp@cray.com>.
6692 * config.sub: Likewise.
6693
6694 2004-06-22 Ben Elliston <bje@gnu.org>
6695
6696 Reported by Hans-Peter Nilsson <hp@bitrange.com>:
6697 * config.sub: Correctly handle mmix-knuth and mmix-knuth-mmixware.
6698
6699 2004-06-11 Ben Elliston <bje@gnu.org>
6700
6701 * config.guess (pegasos:OpenBSD:*:*): Remove.
6702
6703 2004-06-11 Ben Elliston <bje@gnu.org>
6704
6705 From Wouter Verhelst <wouter@grep.be>:
6706 * config.guess (M68*:*:R3V[5678]:*): Detect R3V8.
6707
6708 2004-06-11 Ben Elliston <bje@gnu.org>
6709
6710 * config.guess (luna88k:OpenBSD:*:*): New.
6711
6712 2004-03-12 Kazuhiro Inaoka <inaoka.kazuhiro@renesas.com>
6713
6714 * config.guess (m32r*:Linux:*:*): New case.
6715 * config.sub: Handle m32rle.
6716
6717 2004-03-12 Ben Elliston <bje@wasabisystems.com>
6718
6719 From Jens Petersen <petersen@redhat.com>:
6720 * config.sub: Handle sparcv8.
6721
6722 2004-03-03 Ben Elliston <bje@wasabisystems.com>
6723
6724 From Tom Smith <smith@cag.lkg.hp.com>:
6725 * config.guess: Version suffixes are equally significant on Tru64
6726 V4.* and V5.*, so do not ignore them on V5.*. Handle a version
6727 prefix of "P" (patched kernel).
6728
6729 2004-02-23 Tal Agmon <Tal.Agmon@nsc.com>
6730
6731 * config.sub: Add support for National Semiconductor CRX target.
6732
2a3124ca 67332004-09-03 Jan Beulich <jbeulich@novell.com>
479759c8 6734
2a3124ca
RH
6735 * configure.in: Remove target-libstdc++-v3 from noconfigdirs for
6736 *-*-netware, but add target-libmudflap.
6737 Consolidate *-*-netware targets (of which really only i?86 exists)
6738 into a single entry.
6739 * configure: Likewise.
6740
0df3d27f
PB
67412004-09-01 Paolo Bonzini <bonzini@gnu.org>
6742
6743 * Makefile.tpl (sorry): Remove.
6744 (clean-stage[+id+], clean-stage[+id+]-module): New targets.
6745 (cleanstrap targets): Depend on distclean, not distclean-stage1.
6746 (do-clean): Clean per-stage directories too.
6747 (do-distclean): Run distclean-stage1 too.
6748 (.NOTPARALLEL): Enable during toplevel bootstrap.
6749 (stage[+id+]-bubble): Enable parallel execution during
6750 the recursive invocation.
6751 * Makefile.in: Regenerate.
6752
6753 Sync from gcc (moving the Makefile.in change to Makefile.tpl):
6754
6755 2004-08-31 Robert Bowdidge <bowdidge@apple.com>
6756
6757 * Makefile.in: Move BOOT_CFLAGS above host makefile fragment include.
6758 * configure.in: add test for powerpc-*-darwin* to specify makefile frag
6759 * configure: regenerate
479759c8
ZW
6760 * config/mh-ppc-darwin: create file, override BOOT_CFLAGS for
6761 -mdynamic-no-pic
0df3d27f
PB
6762
67632004-08-31 Paolo Bonzini <bonzini@gnu.org>
6764
6765 * Makefile.tpl: Move BOOT_CFLAGS above host makefile fragment
6766 include.
6767 * configure.in: Fix indentation.
6768 * configure: Regenerate.
6769
ee025550
PB
67702004-08-31 Paolo Bonzini <bonzini@gnu.org>
6771
6772 * Makefile.def (build_modules): Add fixincludes.
6773 (dependencies): Make gcc depend on fixincludes.
6774 * configure.in (build_tools): Add fixincludes.
6775 (build_configdirs): Always include build_libs.
6776 * Makefile.in: Regenerate.
6777 * configure: Regenerate.
6778
67792004-08-30 Paolo Bonzini <bonzini@gnu.org>
9cb3fa6f
PB
6780
6781 * Makefile.def (bootstrap stages): Add 'lean' parameter.
6782 * Makefile.tpl (configure-stageN-*, all-stageN-*): Turned into
6783 phony targets; do not generate timestamp files.
6784 (distclean-stageN): Remove references to their timestamp files.
6785 (restageN, touch-stageN): Remove.
6786 (stageN-bubble): Rewritten.
6787 (compare): Support lean bootstraps.
6788 * Makefile.in: Regenerate.
6789
6790 * configure.in: Only warn when bootstrapping but
6791 build != host or build != target. Support lean bootstraps.
6792 * configure: Regenerate.
6793
6794 Sync from gcc:
6795 2004-08-26 Phil Edwards <phil@codesourcery.com>
6796
6797 * configure.in: Give a better error message if GMP/MPFR are missing
6798 and a language needing them has been requested.
6799 * configure: Regenerated.
6800
6801 2004-08-25 Phil Edwards <phil@codesourcery.com>
6802
6803 * configure.in: Print a list of available language front-ends if
6804 a requested one is missing. Tidy stray tab characters.
6805 * configure: Regenerated.
6806
72b2455a
PB
68072004-08-17 Paolo Bonzini <bonzini@gnu.org>
6808
6809 * Makefile.in: Regenerate.
6810 * configure: Regenerate.
6811
6812 * Makefile.def (bootstrap-stage): Rename extra_*_flags to
6813 stage_*_flags.
6814 * Makefile.tpl (configure-[+module+], all-[+module+]): Exit
6815 for bootstrapped modules if toplevel bootstrap is going.
6816 (GCC bootstrap): Generate per-stage targets for all bootstrapped
6817 modules. Adjust for changes in Makefile.def. Enable several
6818 rules even in non-bootstrap mode, just to avoid peppering the
6819 template with unnecessary "@if/@endif gcc-bootstrap" pairs.
6820 (stage-[+prev+]-bubble): Remove.
6821
6822 * Makefile.def (Dependencies): Depend on all-build-bison,
6823 all-build-flex, all-build-byacc, all-build-texinfo, rather
6824 than the host variations.
6825 * Makefile.tpl (BUILD_DIR_PREFIX): Remove. Replace throughout
6826 with BUILD_SUBDIR.
6827 (BISON): Update for recent Bisons.
6828 (YACC): Fix typo.
6829 (cross): Depend on all-build.
6830 (all): Do not depend on all-build.
6831 (prebootstrap): Remove.
6832 (dep-kind): Accept separate prefixes for MODULE and ON variables.
6833 (Prebootstrap dependencies): Add them to the per-stage targets
6834 and to all-prebootstrap.
6835 * configure.in (build_configdirs): Always enable build_tools.
6836 (BUILD_DIR_PREFIX): Remove.
6837
6838 * Makefile.def (gcc): Add target variable.
6839 (gdb, expect, guile, tk, tix): Replace with_x with extra_make_flags.
6840 * Makefile.tpl (Autogenerated `all-*' targets): Invoke $(TARGET-*)
6841 in the recursive `make', instead of hardwiring `all'.
6842 (Autogenerated TARGET-* variables): New.
6843
de0b4a87
JW
68442004-08-17 Robert Millan <robertmh@gnu.org>
6845
6846 * configure.in: In noconfigdirs check, match GNU/k*BSD with GNU/Linux
6847 (instead of FreeBSD).
6848 * configure: Regenerate.
6849
ad681c85
NN
68502004-08-12 Nathanael Nerode <neroden@gcc.gnu.org>
6851
675c6968
NN
6852 * Makefile.def, configure.in, src-release: Remove useless, bogus
6853 references to tix.
6854 * Makefile.in, configure: Regenerate.
6855
ad681c85
NN
6856 * src-release: Stop distributing mmalloc with gdb (which doesn't
6857 use it).
6858 * Makefile.def: GDB doesn't depend on mmalloc anymore.
6859 * Makefile.in: Regenerate.
6860
11b04d1f
DD
68612004-08-09 Mark Mitchell <mark@codesourcery.com>
6862
6863 * configure.in (arm*-*-eabi*): New target.
6864 * configure: Regenerate.
6865
f2420bea
NN
68662004-08-01 Robert Millan <robertmh@gnu.org>
6867
6868 * configure.in: Turn mt-linux into mt-gnu. Use mt-gnu and enable
6869 libmudflap for all GNU-based systems (with Glibc).
6870 * configure: Regenerate.
6871
9e6ce191
PB
68722004-08-06 Paolo Bonzini <bonzini@gnu.org>
6873
6874 * Makefile.def (bfd, opcodes, gcc, zlib): Mark as bootstrap module.
6875 (bison, byacc, flex, texinfo): Do not mark as bootstrap module.
6876 (Dependencies): New section.
6877 * Makefile.tpl (Dependencies): Generate from Makefile.def.
6878 (configure-target-[+module+]): Depend on maybe-all-gcc
6879 (all-prebootstrap): New name of all-bootstrap. Changed throughout.
6880 (toplevel profiledbootstrap): Fix dependencies.
6881 * Makefile.in: Regenerate.
6882
df4a6958
MM
68832004-08-03 Mark Mitchell <mark@codesourcery.com>
6884
6885 * configure.in (arm*-*-symbianelf*): Add ${libgcj} and
6886 target-libiberty to noconfigdirs.
6887
11b04d1f
DD
68882004-08-03 Paul Brook <paul@codesourcery.com>
6889
6890 * configure.in: Check for MPFR as well as GMP.
6891 * configure: Regenerate.
6892
b813574b
PB
68932004-08-03 Paolo Bonzini <bonzini@gnu.org>
6894
6895 * Makefile.def (host-modules): Add gcc.
6896 * Makefile.in: Regenerate.
6897 * Makefile.tpl (sorry): New rule.
6898 (configure-host, all-host, [+make_target+]-host, do-check,
6899 install-host): Do not add gcc as a special case.
6900 (host modules): Add a small special-casing for gcc. Export
6901 extra_make_flags through the environment.
6902 (maybe-configure-gcc, configure-gcc, maybe-all-gcc, all-gcc,
6903 maybe-check-gcc, check-gcc, maybe-install-gcc, install-gcc,
6904 other recursive targets for gcc): Remove.
6905
6906 (all, do-[+make_target+], do-check): Wrap between unstage and stage.
6907 (stage, unstage): New rules.
6908 (stage[+id+]-start, stage[+id+]-end, [+compare-target+],
6909 distclean-stage[+id+]): Use stage_current.
6910 ([+bootstrap-target+], profiledbootstrap): Do not invoke manually
6911 the stage*-start rules.
6912
61edac0c
JW
69132004-07-19 Robert Millan <robertmh@gnu.org>
6914
6915 Synced from gcc:
6916
6917 2004-04-26 Robert Millan <robertmh@gnu.org>
6918
6919 Add patches from libtool CVS.
6920 * libtool.m4: Add kfreebsd*-gnu and knetbsd*-gnu.
6921 * ltconfig: Likewise.
6922 * ltcf-c.sh: Likewise.
6923 * ltcf-cxx.sh: Likewise.
6924 * ltcf-gcj.sh: Likewise.
6925
3e707e94
PB
69262004-07-12 Paolo Bonzini <bonzini@gnu.org>
6927
6928 * configure.in: Add noconfigdirs for crx-*-*.
6929 * configure: Regenerate.
6930
69312004-07-12 Paolo Bonzini <bonzini@gnu.org>
6932
6933 Synced from gcc:
6934
6935 2004-07-09 Loren J. Rittle <ljrittle@acm.org>
6936
6937 * configure.in: Build libmudflap by default on FreeBSD.
6938 * configure: Regenerated.
6939
6940 2004-07-09 Mark Mitchell <mark@codesourcery.com>
6941
6942 * configure.in: Do not build libmudflap by default on non-GNU/Linux
6943 systems.
6944 * configure: Regenerated.
6945
6946 2004-07-08 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
6947
6948 PR target/16344
6949 * Makefile.tpl (profiledbootstrap): Build runtime libraries with
6950 feedback based compiler.
6951 * Makefile.in: Rebuilt.
6952
6953 2004-07-05 Phil Edwards <phil@codesourcery.com>
6954
6955 * configure.in: Do not prepend $srcdir to /dev/null in
6956 makefile fragments.
6957 * configure: Regenerate.
6958
a7ee7660
AO
69592004-07-08 Alexandre Oliva <aoliva@redhat.com>
6960
6961 * Makefile.def (host_modules): Set bootstrap=true for flex.
6962 * Makefile.tpl (all-gcc): Depend on texinfo and flex.
6963 * Makefile.in: Rebuilt.
6964
6a9cf61e
PB
69652004-07-01 Paolo Bonzini <bonzini@gnu.org>
6966
6967 * Makefile.def (build_modules): Add bison, byacc, flex,
6968 m4, texinfo.
6969 (flags_to_pass): Add FLEX.
6970 * Makefile.tpl (BUILD_DIR_PREFIX, BASE_EXPORTS): New.
6971 (BUILD_EXPORTS, HOST_EXPORTS, BASE_TARGET_EXPORTS): Include it.
6972 (DEFAULT_YACC, USUAL_YACC, DEFAULT_LEX, USUAL_LEX, DEFAULT_M4,
6973 DEFAULT_MAKEINFO): Remove.
6974 (CONFIGURED_YACC, CONFIGURED_FLEX, CONFIGURED_BISON,
6975 CONFIGURED_LEX, CONFIGURED_M4, CONFIGURED_MAKEINFO): Substitute.
6976 (YACC, FLEX, BISON, LEX, M4, MAKEINFO): Define to look into
6977 objdir or else use configured tool.
6978 (all-build): New.
6979 (all): Depend on it.
6980 (Build module dependencies): Add.
6981 * Makefile.in: Regenerate.
6982 * configure.in: Better support for multiple build modules,
6983 matching what is done for host/target modules. Do not look
6984 for "plausible" locations of build tools if Canadian cross.
6985 Use autoconf's AC_PROG_CC to find a C compiler. Define
6986 BUILD_DIR_PREFIX. Look for flex, makeinfo and m4.
6987 * configure: Regenerate.
6988
95b6a1f2
PB
69892004-06-22 Paolo Bonzini <bonzini@gnu.org>
6990
6991 * Makefile.tpl (HOST_EXPORTS): Fix pasto.
6992 * Makefile.in: Regenerate.
6993
7ffa0b57
PB
69942004-06-22 Paolo Bonzini <bonzini@gnu.org>
6995
6996 * Makefile.tpl (configure-build-[+module+],
6997 configure-[+module+], configure-target-[+module+]): Pass
6998 [+extra_configure_args+].
6999 (all-build-[+module+], all-[+module+], check-[+module+],
7000 install-[+module+], [+make_target+]-[+module+],
7001 all-target-[+module+], check-target-[+module+],
7002 install-target-[+module+], [+make_target+]-target-[+module+]):
7003 Pass [+extra_make_args+].
7004 (HOST_EXPORTS): Include the former GCC_HOST_EXPORTS.
7005 (GCC_HOST_EXPORTS): Remove.
7006 (configure-gcc, all-gcc, GCC_STRAP_TARGETS, profiledbootstrap,
7007 cross, check-gcc, check-gcc-c++, install-gcc,
7008 gcc-no-fixedincludes, [+make_target+]-gcc, stage[+id+]-bubble):
7009 Replace GCC_HOST_EXPORTS with HOST_EXPORTS.
7010 * Makefile.in: Regenerate.
7011
929ba6e7
CF
70122004-06-21 Christopher Faylor <cgf@alum.bu.edu>
7013
7014 * configure.in: Check for srcdir/winsup rather than build directory
7015 winsup.
7016 * configure: Regenerate.
7017
b76d7de0
CV
70182004-06-17 Corinna Vinschen <vinschen@redhat.com>
7019
7020 * configure.in: Don't build Cygwin native newlib if winsup
7021 directory is missing. Emit warning instead.
7022 * configure: Regenerate.
7023
656fdd47
PB
70242004-06-09 Paolo Bonzini <bonzini@gnu.org>
7025
7026 * Makefile.tpl (touch-stage[+id+]): New.
7027 (restage[+prev+]): Depend on touch-stage[+id+].
7028
7029 * Makefile.tpl (RECURSE_FLAGS_TO_PASS): New.
7030 Use it throughout.
7031
7032 * Makefile.def: Add profile and feedback bootstrap stages.
7033 Remove next field from bootstrap stages.
7034 * Makefile.tpl (LN, LN_S): Substitute.
7035 (stageN-start, stageN-end): Use double-colon rules, to
7036 provide a hook for additional setup commands.
7037 (distclean-stageN-gcc, restageN): Create dependencies from
7038 [+prev+], not from [+next+].
7039 (stageN-bubble): Add commands for successive stages from
7040 [+prev+], using double-colon rules.
7041 (all-stageN-gcc): Fix typo.
7042 (stagefeedback-start, profiledbootstrap): New.
7043 * Makefile.in: Regenerate.
7044 * configure.in: Call ACX_PROG_LN.
7045 * configure: Regenerate.
7046
498d4a71
CF
70472004-06-03 Paolo Bonzini <bonzini@gnu.org>
7048
7049 * configure.in: Fix --enable-bootstrap breakage introduced in trees
7050 without gcc.
7051 * configure: Regenerate.
7052
377d8c42
PB
70532004-06-01 Paolo Bonzini <bonzini@gnu.org>
7054
7055 * Makefile.tpl: Fix typo.
7056 * Makefile.in: Regenerate.
7057
f5f8a794
PB
70582004-06-01 Paolo Bonzini <bonzini@gnu.org>
7059
7060 * configure.in: Remove new- prefix from toplevel
7061 bootstrap targets.
7062 * configure: Regenerate.
7063
f7a4c34f
PB
70642004-06-01 Paolo Bonzini <bonzini@gnu.org>
7065
7066 Merge this patch from the gcc tree:
7067
7068 2004-05-30 Andreas Jaeger <aj@suse.de>
7069 Jim Wilson <wilson@specifixinc.com>
7070
7071 * config-ml.in: Pass FFLAGS and ADAFLAGS for multilibs, handle F77
7072 like CC.
7073
319cab08
PB
70742004-06-01 Paolo Bonzini <bonzini@gnu.org>
7075
7076 * Makefile.tpl (all.normal): Rename to all.
7077 (all): Replace with a rule to pick the default
7078 target from configure.
7079 (all-gcc, configure-gcc): Use conditionals to
7080 do nothing when toplevel bootstrap is going on.
7081 (GCC directory bootstrap) [gcc-bootstrap]: Disable.
7082 (Toplevel bootstrap) [gcc-no-bootstrap]: Disable.
7083 * configure.in: Support --enable-bootstrap.
7084
7085 * Makefile.def: Remove new- prefix from toplevel
7086 bootstrap targets.
7087 * Makefile.tpl: Likewise.
7088
7089 * Makefile.def: Add bootstrap_stage 4. Add bootstrap2
7090 target.
7091
7092 * Makefile.tpl (Toplevel bootstrap): Pass $(BASE_FLAGS_TO_PASS)
7093 $(RECURSE_FLAGS) to recursive invocation of make.
7094
7095 * Makefile.in: Regenerate.
7096 * configure: Regenerate.
7097
88f64edc
DJ
70982004-05-27 Daniel Jacobowitz <dan@debian.org>
7099
7100 * configure.in: Fix sed invocation for GFORTRAN_FOR_TARGET.
7101 * configure: Regenerate.
7102
378fce5b
DD
71032004-05-25 Daniel Jacobowitz <drow@false.org>
7104
7105 * Makefile.tpl (BUILD_EXPORTS, HOST_EXPORTS, GCC_HOST_EXPORTS)
7106 (STAGE_HOST_EXPORTS, BASE_TARGET_EXPORTS, RAW_CXX_TARGET_EXPORTS)
7107 (NORMAL_TARGET_EXPORTS): New macros. Use them in all the recursive
7108 targets.
7109 * Makefile.in: Regenerate.
7110
dfdffa2c
PB
71112005-05-24 Paolo Bonzini <bonzini@gnu.org>
7112
7113 * configure.in: Test the ability to symlink directories.
7114 * configure: Regenerate.
7115
7116 * Makefile.def (bootstrap-stage): New definitions.
7117 * Makefile.tpl (configure-stage1-gcc,
7118 configure-stage2-gcc, configure-stage3-gcc,
7119 all-stage1-gcc, all-stage2-gcc, all-stage3-gcc,
7120 new-bootstrap, new-cleanstrap, new-restage1, new-restage2,
7121 new-restage3, compare): Autogenerate, see Makefile.in
7122 entry for behavioral changes.
7123 (distclean-stage1, new-stage1-start, new-stage1-end,
7124 new-stage1-bubble, distclean-stage2, new-stage2-start,
7125 new-stage2-end, new-stage2-bubble, distclean-stage3,
7126 new-stage3-start, new-stage3-end): New autogenerated targets.
7127 (objext, prebootstrap, BOOT_CFLAGS,
7128 POSTSTAGE1_FLAGS_TO_PASS): Move above the autogenerated
7129 targets.
7130
7131 * Makefile.in: Regenerate.
7132 (distclean-stage1, new-stage1-start, new-stage1-end,
7133 new-stage1-bubble, distclean-stage2, new-stage2-start,
7134 new-stage2-end, new-stage2-bubble, distclean-stage3,
7135 new-stage3-start, new-stage3-end): New targets.
7136 (all-stage1-gcc): Move prebootstrap dependency from here...
7137 (configure-stage1-gcc): ...to here.
7138 (new-bootstrap): Use bubble targets.
7139 (new-cleanstrap, new-restage1, new-restage2, new-restage3):
7140 Use per-stage distclean targets.
7141 (configure-stage1-gcc, configure-stage2-gcc,
7142 configure-stage3-gcc, all-stage1-gcc,
7143 all-stage2-gcc, all-stage3-gcc, new-bootstrap):
7144 Use new-stageN-start to prepare the tree.
7145
04cf1b77
PB
71462004-05-23 Paolo Bonzini <bonzini@gnu.org>
7147
7148 * Makefile.def (host_modules): add libcpp.
7149 * Makefile.tpl: Add dependencies on and for libcpp.
7150 * Makefile.in: Regenerate.
7151 * configure.in: Add libcpp host module.
7152 * configure: Regenerate.
7153
80b200a1
ZW
71542004-05-17 Zack Weinberg <zack@codesourcery.com>
7155
7156 * Makefile.def, Makefile.tpl, configure.in: Remove all mention
7157 of libf2c.
7158 * configure, Makefile.in: Regenerate.
7159
4b1cb4fe
DD
71602004-05-13 Diego Novillo <dnovillo@redhat.com>
7161
7162 Merge from tree-ssa-20020619-branch.
7163
7164 * Makefile.def: Add libbanshee, libmudflap and libgfortran.
7165 * Makefile.tpl (BUILD_CONFIGDIRS): Add libbanshee.
7166 (HOST_GMPLIBS): Define.
7167 (HOST_GMPINC): Define.
7168 (TARGET_LIB_PATH): Add libmudflap.
7169 (GFORTRAN_FOR_TARGET): Define.
7170 (configure-build*): Export GFORTRAN.
7171 (configure-gcc): Export GMPLIBS and GMPINC.
7172 (all-gcc): Add maybe-all-libbanshee.
7173 (configure-target-libgfortran): Define.
7174 * Makefile.in: Regenerate.
7175 * configure.in (host_libs): Add libbanshee.
7176 (target_libraries): Add target-libmudflap and target-libgfortran.
7177 Add --with-libbanshee.
7178 Handle --disable-libmudflap.
7179 (*-*-freebsd*): Use with_gmp.
7180 Add $(libgcj) to noconfigdirs.
7181 * configure: Regenerate.
7182 * depcomp: New file.
7183 * MAINTAINERS: Add tree-ssa maintainers.
7184
71852004-04-28 Paolo Bonzini <bonzini@gnu.org>
7186
7187 * config/acx.m4: Fix fastcompare support for new-bootstrap.
7188 * configure: Regenerate.
7189
b8908782
DD
71902004-04-27 Paolo Bonzini <bonzini@gnu.org>
7191
7192 Revert:
7193 2004-04-26 Paolo Bonzini <bonzini@gnu.org>
7194
7195 * Makefile.def (flags_to_pass): Remove *dir variables that
7196 are passed to the modules via TOPLEVEL_CONFIGURE_ARGUMENTS,
7197 as well as prefix and exec_prefix.
7198 * Makefile.in: Regenerate.
7199
72002004-04-26 Paolo Bonzini <bonzini@gnu.org>
7201
7202 * Makefile.def (host_modules): Mark with the bootstrap
7203 flag packages on which gcc depends.
7204 * Makefile.tpl (all-bootstrap): Use it.
7205 * Makefile.in: Regenerate.
7206
72072004-04-26 Paolo Bonzini <bonzini@gnu.org>
7208
7209 * Makefile.def (flags_to_pass): Remove *dir variables that
7210 are passed to the modules via TOPLEVEL_CONFIGURE_ARGUMENTS,
7211 as well as prefix and exec_prefix.
7212 * Makefile.in: Regenerate.
7213
72142004-04-26 Paolo Bonzini <bonzini@gnu.org>
7215
80b200a1
ZW
7216 * configure.in: Invoke ACX_PROG_CMP_IGNORE_INITIAL.
7217 * configure: Regenerate.
7218 * config/acx.m4: Mutuate ACX_PROG_CMP_IGNORE_INITIAL from gcc.
7219 * gcc/Makefile.tpl (compare): Use the result of the test.
7220 * gcc/Makefile.in: Regenerate.
b8908782
DD
7221
72222004-04-23 Paolo Bonzini <bonzini@gnu.org>
7223
7224 * Makefile.tpl (all-stage1-gcc, all-stage2-gcc, all-stage3-gcc):
7225 Always relocate gcc and prev-gcc to the original names, even
7226 if the build fails.
7227 (new-cleanstrap, new-restage1, new-restage2, new-restage3):
7228 New targets.
7229
0f260896
RO
72302004-04-19 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
7231
7232 * configure.in (mips*-*-irix5*): Enable ld.
7233 * configure: Regenerate.
7234
51860f05
JW
72352004-04-15 James E Wilson <wilson@specifixinc.com>
7236
7237 * Makefile.tpl (configure-[+module+], configure-gcc,
7238 configure-stage1-gcc, configure-stage2-gcc, configure-stage3-gcc):
7239 Set and export LDFLAGS.
7240 * Makefile.in: Regenerate.
7241
54752a6b
NN
72422004-04-09 Nathanael Nerode <neroden@gcc.gnu.org>
7243
7244 PR bootstrap/14871
7245 * Makefile.tpl: If we don't have built-in-tree target tools,
7246 use the ones found by configure rather than hacking around with
7247 program_transform_name.
7248 * configure.in: Give Makefile.tpl the information necessary
7249 to do that.
7250 * Makefile.in: Regenerate.
7251 * configure: Regenerate.
7252
72532004-04-06 Nathanael Nerode <neroden@gcc.gnu.org>
7254
7255 PR bootstrap/14760
7256 * configure.in: When computing baseargs, strip *all* copies of
7257 offending options. Also, don't match/substitute the trailing space,
7258 so that this actually works when two similar options are separated by
7259 only one space.
7260 * configure: Regenerate.
7261
72622004-04-06 David Edelsohn <edelsohn@gnu.org>
7263
80b200a1
ZW
7264 * configure.in (powerpc-*-aix*): Remove target-libada from noconfigdirs.
7265 (rs6000-*-aix*): Same.
7266 * configure: Regenerate.
54752a6b 7267
5e2b61fb
SS
72682004-03-25 Stan Shebs <shebs@apple.com>
7269
7270 Remove MPW support, no longer used.
7271 * mpw-README, mpw-build.in, mpw-config.in, mpw-configure,
7272 mpw-install: Remove files.
7273 * src-release (DEVO_SUPPORT): Remove names of removed files.
7274 * MAINTAINERS: Likewise.
7275
1a6f2dc7
NN
72762004-03-24 Nathanael Nerode <neroden@gcc.gnu.org>
7277
a0049f1b
NN
7278 * Makefile.tpl (top level bootstrap support): Remove now-unneeded
7279 STRICT_WARN, WARN_CFLAGS flags passed down to make.
7280 * Makefile.in: Regenerate.
7281
1a6f2dc7
NN
7282 * configure.in (top level bootstrap support): Rework --enable-werror
7283 to set @stage2_werror_flag@.
7284 * configure: Regenerate.
7285 * Makefile.tpl (top level bootstrap support): Pass
7286 @stage2_werror_flag@ down to configure in stages 2 and 3.
7287 * Makefile.in: Regenerate.
7288
920e3419
NN
72892004-03-23 Nathanael Nerode <neroden@gcc.gnu.org>
7290
7291 * Makefile.tpl (new-bootstrap): Set CC and CC_FOR_BUILD in configure
7292 for stages 2 and 3 as well as in make. As a consequence, remove
7293 OUTPUT_OPTION (now detected by configure) from the flags passed down
7294 to make.
7295 * Makefile.in: Regenerate.
7296
7297 * Makefile.tpl (new-bootstrap): Fix typo.
7298 * Makefile.in: Regenerate.
7299
4fa63067
NN
73002004-03-22 Nathanael Nerode <neroden@gcc.gnu.org>
7301
7302 * Makefile.tpl: Rearrange by moving recursive_targets rules
7303 into their proper sections.
7304 * Makefile.tpl (top level bootstrap support): Move disabling
7305 of coverage flags from 'make' to 'configure'; improve comments.
7306 * Makefile.in: Regenerate.
7307
7308 * Makefile.tpl (experimental top level bootstrap) Move stage1
7309 language setting from all- target to configure- target; disable
7310 intermodule optimization in stage 1; prevent gratuitous rebuilds
7311 of stage 1.
7312 * Makefile.in: Regenerate.
7313 * configure.in: Comma-separate stage 1 language list for top
7314 level bootstrap.
7315 * configure: Regenerate.
7316
7317 * Makefile.tpl: Clean up experimental top level bootstrap support:
7318 note known problems; set CONFIG_SHELL; don't set BUILD_CC; relocate
7319 prev-gcc in configure- targets as well as all- targets.
7320 * Makefile.in: Regenerate.
7321
fb8a10fd
NN
73222004-03-17 Paolo Bonzini <bonzini@gnu.org>
7323
7324 * configure.in: Remove symbolic link section.
7325 * configure: Regenerate.
7326 * Makefile.tpl (links): Remove.
7327 * Makefile.in: Regenerate.
7328
947f426e 73292004-03-15 Paolo Bonzini <bonzini@gnu.org>
80b200a1 7330 Nathanael Nerode <neroden@gcc.gnu.org>
947f426e
NN
7331
7332 * configure.in (DEFAULT_YACC, DEFAULT_M4, DEFAULT_LEX):
80b200a1 7333 Set with AC_CHECK_PROGS.
947f426e
NN
7334 * configure.in: Fix comment typo from last patch.
7335 * configure: Regenerate.
7336
1d39f329
NN
73372004-03-15 Nathanael Nerode <neroden@gcc.gnu.org>
7338
7339 * Makefile.tpl: Introduce experimental top level bootstrap support.
7340 * Makefile.in: Regenerate.
7341 * configure.in: Introduce support for top level bootstrap.
7342 * configure: Regenerate.
7343
4b0ac75d 73442004-03-12 Eric Botcazou <ebotcazou@gcc.gnu.org>
80b200a1 7345 Paolo Bonzini <bonzini@gnu.org>
4b0ac75d
NN
7346
7347 PR bootstrap/14522
7348 * configure.in: Cope with shells that do not support unquoted ^
7349 * configure: Regenerate.
7350
2e70b094 73512004-03-11 Eric Botcazou <ebotcazou@gcc.gnu.org>
80b200a1 7352 Paolo Bonzini <bonzini@gnu.org>
2e70b094
DD
7353
7354 PR bootstrap/14522
7355 * configure.in: Cope with shell that do not support nesting
7356 quotes inside quoted backquote substitutions.
7357 * configure: Regenerate.
7358
73592004-03-10 Andrew Pinski <pinskia@physics.uc.edu>
7360
7361 PR bootstrap/14522
7362 * configure.in: Fix escaping of $.
7363 * configure: Regenerate.
7364
9e07f89d
NN
73652004-03-11 Nathanael Nerode <neroden@gcc.gnu.org>
7366
7367 * configure: Regenerate.
7368
73692004-03-08 Paolo Bonzini <bonzini@gnu.org>
7370
7371 PR ada/14131
7372 Move language detection to the top level.
7373 * configure.in: Find default values for the tools as
7374 soon as possible. Disable ada if GNAT is not found.
7375 Emit error message about missing languages. Expand
7376 --enable-languages=all for the gcc subdirectory.
7377
1712ab83
RS
73782004-03-01 Richard Sandiford <rsandifo@redhat.com>
7379
7380 * configure.in (mips64*-*-linux*): Override mips*-*-linux* case
7381 and disable libgcj.
7382 * configure: Regenerated.
7383
3dee29da
NN
73842004-02-28 Nathanael Nerode <neroden@gcc.gnu.org>
7385
7386 PR bootstrap/7087
7387 * Makefile.tpl: Guard XFOO sed statements better.
7388 * Makefile.tpl: Add dependency for configure-target-libada.
7389 * Makefile.in: Regenerate (incidentally fixes broken
7390 commit when libada-branch was merged).
7391
0558264b
AC
73922004-02-28 Andrew Cagney <cagney@redhat.com>
7393
7394 * src-release (CVS_NAMES): Define.
7395 (do-tar, do-tar): Prune $(CVS_NAMES).
7396
c38f9803
AC
73972004-02-23 Andrew Cagney <cagney@redhat.com>
7398
7399 * texinfo/texinfo.tex: Update from version 2003-02-03.16 to
7400 2004-02-19.09.
7401
55636792
NN
74022004-02-19 Nathanael Nerode <neroden@gcc.gnu.org>
7403
7404 PR bootstrap/11932
7405 * mkinstalldirs, install-sh: Import from automake CVS HEAD.
7406
1e600082
AC
74072004-02-19 Andrew Cagney <cagney@redhat.com>
7408
7409 * config.guess: Update from version 2003-06-12 to 2004-02-16.
7410 * config.sub: Update from version 2003-06-13 to 2004-02-16.
7411
3769cd82
DD
74122004-02-11 David Edelsohn <edelsohn@gnu.org>
7413
7414 * configure.in (powerpc-*-aix*): Add target-libada to noconfigdirs.
7415 (rs6000-*-aix*): Same.
7416 * configure: Regenerate.
7417
a92834c8
DD
74182004-02-11 Kelley Cook <kcook@gcc.gnu.org>
7419
7420 * configure.in (host): Add in missing $noconfigdirs to defines.
7421 * configure: Regenerate.
7422
a2592b1b
DD
74232004-02-10 Arnaud Charlet <charlet@act-europe.fr>,
7424 Nathanael Nerode <neroden@gcc.gnu.org>
7425
7426 PR ada/6637, PR ada/5911
80b200a1 7427 Merge with libada-branch:
a2592b1b
DD
7428 * configure.in, Makefile.tpl, Makefile.def: Add target-libada,
7429 with appropriate dependencies. Add --enable-libada configure switch.
7430 * configure, Makefile.in: Regenerate.
7431
e31d1ea3
DD
74322004-02-05 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
7433
7434 * configure.in: Don't pass --with-stabs on IRIX 5 either.
7435 * configure: Regenerate.
7436
db85f5c0
JJ
74372004-02-02 Jeff Johnston <jjohnstn@redhat.com>
7438
7439 * COPYING.NEWLIB: Update Red Hat license to 2004.
80b200a1 7440
fc434214
DD
74412004-01-23 DJ Delorie <dj@redhat.com>
7442
7443 * Makefile.def (target_modules) [libiberty]: Don't stage.
7444 * Makefile.in: Rebuilt.
7445
ad445c2c 74462004-01-23 Jeff Johnston <jjohnstn@redhat.com>
80b200a1 7447
ad445c2c
JJ
7448 * COPYING.NEWLIB: Update to include copyrights for new
7449 iconv code.
7450
72bbedde
AC
74512004-01-15 Andrew Cagney <cagney@redhat.com>
7452
7453 * src-release: Update copyright year.
7454 (do-proto-toplev): Configure using i686-pc-linux-gnu.
7455 (NEWLIB_SUPPORT_DIRS): Delete macro.
7456 (newlib.tar.bz2): Delete rule.
7457
a6d6062d
DD
74582004-01-14 Loren J. Rittle <ljrittle@acm.org>
7459
7460 * Makefile.def (target_modules) [libtermcap, libiberty, zlib]: Stage.
7461 * Makefile.tpl (configure-target-[+module+]): Support stage.
7462 * Makefile.in: Rebuilt.
7463
f8b73030
MR
74642003-01-14 Maciej W. Rozycki <macro@ds2.pg.gda.pl>
7465
7466 * gettext.m4: Quote names of macros to be defined by AC_DEFUN
7467 throughout.
7468
aff0e9df
NN
74692004-01-04 Nathanael Nerode <neroden@gcc.gnu.org>
7470
bb5dca17
NN
7471 * configure.in: Use ./config.cache, not config.cache.
7472 * configure: Regenerate.
7473 * Makefile.tpl: Special-casing not needed for GCC any more.
7474 * Makefile.in: Regenerate.
7475
82252c06
NN
7476 * configure.in: Don't share a cache file for host dirs.
7477 * configure: Regenerate.
7478
aff0e9df
NN
7479 * config-ml.in: Don't mess with the cache file.
7480
95036d20
NN
74812004-01-03 Nathanael Nerode <neroden@gcc.gnu.org>
7482
ac7b618e
NN
7483 * Makefile.tpl: Make GCC use a separate config.cache.
7484 * Makefile.in: Regenerate.
7485
95036d20
NN
7486 PR bootstrap/11932, PR bootstrap/11933
7487 (I don't know if it will fix either of them, but it relates
7488 to them.)
7489 * configure.in: Don't use shared config.cache for target
7490 directories.
7491 * configure: Regenerate.
7492
08c1856b
DD
74932003-12-31 Roger Sayle <roger@eyesopen.com>
7494
7495 * configure.in (ia64*-*-hpux*): Disable building java libraries.
7496 * configure: Regenerated.
7497
c1968181 74982003-12-21 Bernardo Innocenti <bernie@develer.com>
80b200a1 7499
9eb322aa
MF
7500 * configure.in (*-*-uclinux): Exclude newlib, libgloss and rda.
7501 * configure: Regenerated.
c1968181 7502
10ecffb9
NN
75032003-12-19 Nathanael Nerode <neroden@gcc.gnu.org>
7504
7505 Port change over from GCC:
7506 2003-11-20 Kelley Cook <kcook@gcc.gnu.org>
7507 * Makefile.tpl (BASE_FLAGS_TO_PASS): Pass along CONFIG_SHELL.
7508 (configure-build-[+module+], configure-[+module+]): Likewise.
7509 (configure-target-[+module+], configure-gcc, config.status): Likewise.
7510 * Makefile.in: Regenerate.
7511
f2ab5990
TF
75122003-12-08 Thomas Fitzsimmons <fitzsim@redhat.com>
7513
7514 * configure.in (raw_libstdcxx_flags): Remove the leading space.
7515 * configure: Regenerate.
7516
41a7d11a
JJ
75172003-11-27 Jeff Johnston <jjohnstn@redhat.com>
7518
80b200a1 7519 * COPYING.NEWLIB: Add license info for long long routines added to
41a7d11a
JJ
7520 stdlib.
7521
d9441a1f
DD
75222003-11-14 Arnaud Charlet <charlet@act-europe.fr>
7523
7524 * Makefile.tpl (EXTRA_GCC_FLAGS): Pass BOOT_ADAFLAGS.
7525 * Makefile.in: Regenerate.
7526
3a48a978
DD
75272003-10-20 Phil Edwards <phil@codesourcery.com>
7528
7529 * configure.in (*-*-vxworks): Add target-libiberty to noconfdirs.
7530 * configure: Regenerate.
7531
f0b24077
NN
75322003-10-13 Nathanael Nerode <neroden@gcc.gnu.org>
7533
7534 * Makefile.tpl: Make GCC_FLAGS_TO_PASS a superset of
7535 HOST_FLAGS_TO_PASS.
7536 * Makefile.in: Regenerate.
7537
5fbad20a
DD
75382003-10-05 Mohan Embar <gnustuff@thisiscool.com>
7539
7540 * configure.in: Allow explicit specification of CFLAGS_FOR_BUILD.
7541 * configure: Rebuilt
7542 * Makefile.tpl: Use CFLAGS_FOR_BUILD computed by configure
7543 * Makefile.in: Rebuilt
7544
78be4155
L
75452003-10-03 H.J. Lu <hongjiu.lu@intel.com>
7546
7547 * ltconfig (sys_lib_search_path_spec): Fix a typo for HPUX.
7548
051fcc7a
L
75492003-10-01 Phil Edwards <pme@gcc.gnu.org>
7550
7551 * config-ml.in: Use ac_configure_args directly instead of
7552 ml_arguments. Only set ml_norecursion if --no[-]recursion is
7553 actually seen.
7554
75552003-10-01 Eric Botcazou <ebotcazou@libertysurf.fr>
7556
7557 * config-ml.in: Propagate INSTALL variables.
7558
f27d4f92
DJ
75592003-09-21 Daniel Jacobowitz <drow@mvista.com>
7560
7561 * configure.in: Pass a computed --program-transform-name
7562 to subconfigures.
7563 * configure: Regenerated.
7564
cae4d560
NN
75652003-09-20 Nathanael Nerode <neroden@gcc.gnu.org>
7566
7567 * Makefile.tpl: Don't pass down obsolete ENQUIRE variable.
7568 * Makefile.in: Regenerate.
7569
7570 * Makefile.tpl: Don't pass (unused) DLLTOOL or WINDRES to gcc.
7571 * Makefile.in: Regenerate.
7572
8ff944f6
DJ
75732003-09-17 Daniel Jacobowitz <drow@mvista.com>
7574
7575 * configure.in (TOPLEVEL_CONFIGURE_ARGUMENTS, baseargs): Fix
7576 quoting.
7577 * configure: Regenerated.
7578
d9a35680
MC
75792003-09-12 Michael Chastain <mec@shout.net>
7580
7581 Fix PR gdb/857.
7582 * src-release (do-proto-topleve): Remove junk files
7583 intl/config.cache, intl/config.status,
7584 intl/config.h, intl/stamp-h.
7585
710068b9
AC
75862003-09-14 Andrew Cagney <cagney@redhat.com>
7587
7588 * src-release (dejagnu.tar): New target.
7589 (dejagnu.tar.bz2): Recursively call "gdb-taz" rule.
7590 (do-djunpack): Use $(PACKAGE) for the package name.
7591
e1008165
DD
75922003-09-04 DJ Delorie <dj@redhat.com>
7593
7594 * configure: Regenerate.
7595
21998d12
NC
75962003-09-04 Robert Millan <robertmh@gnu.org>
7597
7598 * configure.in: Match GNU/KFreeBSD with new kfreebsd*-gnu triplet.
80b200a1 7599
ccca4bb3
DD
76002003-09-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
7601
7602 * configure.in: Ensure arguments to sed are properly spaced.
7603 * configure: Regenerate.
7604
ee949b5e
DJ
76052003-08-28 Daniel Jacobowitz <drow@mvista.com>
7606
7607 Merge from gcc:
7608 2003-07-20 Phil Edwards <pme@gcc.gnu.org>
7609 * install-sh: Update to newer upstream versions (associated with
7610 aclocal 1.7).
7611 * missing: Likewise, plus $1Help2man -> $1 typo fix.
7612
75addda2
DJ
76132003-08-27 Daniel Jacobowitz <drow@mvista.com>
7614
7615 * configure.in: Set RAW_CXX_FOR_TARGET if unset.
7616 * configure: Regenerated.
7617
8d2877d8
NN
76182003-08-23 Phil Edwards <pme@gcc.gnu.org>
7619
7620 * configure.in: Use newline instead of semicolon when assuming
7621 shell arguments in a for loop.
7622 * configure: Regenerated.
7623
d2cc0e0d
GK
76242003-08-20 Geoffrey Keating <geoffk@apple.com>
7625
7626 PR 8180
7627 * configure.in: When testing with_libs and with_headers, treat
7628 'no' as unset. Based on a patch by Dan Kegel <dank@kegel.com>.
7629 * configure: Regenerate.
80b200a1 7630
d2cc0e0d
GK
7631 * configure.in (TOPLEVEL_CONFIGURE_ARGUMENTS): Quote properly for
7632 make, shell, etc.
7633 (baseargs): Likewise.
7634 * configure: Regenerate.
7635
04d1ab34
GK
76362003-08-19 Geoffrey Keating <geoffk@apple.com>
7637
7638 * configure.in: Disable libgcj for darwin not on powerpc.
7639 * configure: Rebuild.
7640
ca506da8
MC
76412003-08-15 Michael Chastain <mec@shout.net>
7642
7643 * src-release (do-proto-toplev): Remove junk files
7644 dejagnu/example/calc/config.status,
7645 dejagnu/example/calc/config.log.
7646
a4aa3f49
DD
76472003-08-14 Alexandre Duret-Lutz <adl@gnu.org>
7648
7649 * config-ml.in, symlink-tree: Add license.
7650
ede4fbe4
NN
76512003-08-01 Nathanael Nerode <neroden@gcc.gnu.org>
7652
7653 Merge from gcc:
7654
7655 2003-08-01 Matt Kraai <kraai@alumni.cmu.edu>
7656 * Makefile.tpl (check, check-c++): Express dependencies using
7657 dependencies rather than commands.
7658 * Makefile.in: Regenerate.
7659
7660 2003-07-31 Geoffrey Keating <geoffk@apple.com>
7661 * Makefile.tpl (libsubdir): Use gcc instead of gcc-lib.
7662 * Makefile.in: Update.
7663
970f29af
AC
76642003-08-01 Andrew Cagney <cagney@redhat.com>
7665
7666 * configure.in (noconfigdirs): Do not add GDB when m32r-*-*.
7667 * configure: Ditto.
7668
b2884a0c
DD
76692003-07-30 Andreas Tobler <a.tobler@schweiz.ch>
7670
7671 * configure.in: Enable libgcj for darwin.
7672 * configure: Rebuild.
7673
c07f46a4
NN
76742003-07-29 Nathanael Nerode <neroden@gcc.gnu.org>
7675
7676 * mkinstalldirs: Import autoconf 2.57 / automake 1.7 version.
7677
9175bfc0
NN
76782003-07-27 Nathanael Nerode <neroden@gcc.gnu.org>
7679
7680 * Makefile.tpl: Use 'mkinstalldirs' rather than 'mkdir' when
7681 creating target and build subdirs to build all parent dirs as needed.
7682 * Makefile.in: Rebuild.
7683 * configure.in: Don't build dirs explicitly here.
7684 * configure: Rebuild.
7685
b9abda6a
AO
76862003-07-22 Alexandre Oliva <aoliva@redhat.com>
7687
7688 * Makefile.tpl (all-make): Depend on intl.
7689 * Makefile.in: Rebuilt.
7690
eef8ffd4
NN
76912003-07-16 Nathanael Nerode <neroden@gcc.gnu.org>
7692
7693 * config.if: Remove unused libc_interface determination.
7694
295efaf0
NN
76952003-07-14 Nathanael Nerode <neroden@gcc.gnu.org>
7696
7697 * Makefile.in: Regenerate, correctly this time.
7698
e5c3f801
NN
76992003-07-13 Nathanael Nerode <neroden@gcc.gnu.org>
7700
7701 * Makefile.tpl: Set INSTALL and friends using autoconf. Remove
7702 unused INSTALL_PROGRAM_ARGS.
7703 * configure.in: Use AC_PROG_INSTALL.
7704 * Makefile.in: Regenerate.
7705 * configure: Regenerate.
7706
4a18bd6b
AO
77072003-07-10 Alexandre Oliva <aoliva@redhat.com>
7708
7709 * configure: Rebuilt.
7710 2001-09-26 Alexandre Oliva <aoliva@redhat.com>
7711 * configure.in (noconfigdirs) [am33_2.0-*-linux*]: Don't build
7712 newlib nor libgloss.
7713 Wed May 9 10:07:19 2001 Alexandre Oliva <aoliva@redhat.com>
7714 * configure.in (am33_2.0-*-linux*): Added.
7715
fbd1054d
BW
77162003-07-09 Bob Wilson <bob.wilson@acm.org>
7717
7718 * configure.in: Add ${libgcj} to noconfigdirs for xtensa-*-* targets.
7719 * configure: Regenerate.
7720
b40e3958
L
77212003-07-06 H.J. Lu <hongjiu.lu@intel.com>
7722
7723 * config-ml.in: Replace PWD with PWD_COMMAND.
7724 * Makefile.tpl: Likewise.
7725 * Makefile.in: Regenerated.
7726
4a5be7ba
NN
77272003-06-27 Nathanael Nerode <neroden@gcc.gnu.org>
7728
7729 * configure.in: Clean up config-lang.in handling. Delete
7730 useless assignment to "subdirs".
7731 * configure: Regenerate.
7732
9c14acb8
NN
77332003-06-26 Nathanael Nerode <neroden@gcc.gnu.org>
7734
7735 * configure.in: Rename 'target_libs' to 'target_libraries'.
7736 Remove useless reference to 'target_libs'.
7737 * configure: Regenerate.
7738
8f32e830
KS
77392003-06-23 Keith Seitz <kseitz@sources.redhat.com>
7740
7741 * Makefile.tpl: Add maybe-configure-itcl to configure-gdb.
7742 * Makefile.in: Regenerate.
7743
12f0bd74
NN
77442003-06-23 Nathanael Nerode <neroden@gcc.gnu.org>
7745
7746 * Makefile.def: Introduce flags_to_pass.
7747 * Makefile.tpl: Generate BASE_FLAGS_TO_PASS using it.
7748 * Makefile.in: Regenerate.
7749
b07c2aad
HPN
77502003-06-23 Hans-Peter Nilsson <hp@bitrange.com>
7751
7752 * configure.in (noconfigdirs) <cris-*-*>: Disable target-newlib
7753 and target-libgloss.
7754 <d30v-*-*, fr30-*-*, i960-*-*, m32r-*-*>: Disable gdb.
7755 <h8300*-*-*>: Disable libf2c and ${libgcj}.
69777083 7756 * configure: Regenerate.
b07c2aad 7757
56f25033
DD
77582003-06-17 Benjamin Kosnik <bkoz@redhat.com>
7759
7760 * configure.in: Update testsuite_flags to new location.
7761 * configure. Regenerate.
80b200a1 7762
4ec9a3b2
NN
77632003-06-18 Nathanael Nerode <neroden@gcc.gnu.org>
7764
7765 * Makefile.tpl: Remove BUILD_CC stuff.
7766 * Makefile.in: Regenerate.
7767
059083b1 77682003-06-14 H.J. Lu <hongjiu.lu@intel.com>
80b200a1 7769
059083b1
L
7770 * config.guess: Update to 2003-06-12 version.
7771 * config.sub: Update to 2003-06-13 version.
7772
535b046a
TS
77732003-06-12 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
7774
7775 * MAINTAINERS: Add myself as MIPS co-maintainer.
7776
00c22daa 77772003-06-12 H.J. Lu <hongjiu.lu@intel.com>
80b200a1 7778
00c22daa
L
7779 * config.guess: Update to 2003-06-06 version.
7780 * config.sub: Update to 2003-06-06 version.
7781
1047cb91
DD
77822003-06-11 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
7783
7784 * configure.in: Don't pass --with-stabs for mips*-sgi-irix6*o32.
7785 * configure. Regenerate.
7786
123494c8
NN
77872003-06-10 Nathanael Nerode <neroden@gcc.gnu.org>
7788
1047cb91
DD
7789 * configure.in: Disable serial configure by default.
7790 * configure: Regenerate.
7791 * Makefile.tpl: Abolish .NOTPARALLEL.
7792 * Makefile.in: Regenerate.
7793
7f121bbf
NN
7794 * Makefile.tpl: Replace {build,host,target}_canonical by
7795 {build,host,target}.
7796 * Makefile.in: Regenerate.
7797
123494c8
NN
7798 * Makefile.tpl: Fix stupid pasto.
7799 * Makefile.in: Regenerate.
7800
ec7e0995
NN
78012003-06-09 Nathanael Nerode <neroden@gcc.gnu.org>
7802
7803 * Makefile.tpl: Remove bogus conditional.
7804 * Makefile.in: Regenerate.
7805
27b1cc72
NN
78062003-06-03 Nathanael Nerode <neroden@gcc.gnu.org>
7807
2a4cbe27
NN
7808 * Makefile.tpl: Make 'recursive targets' using autogen rather
7809 than shell loop. Remove duplicate 'clean' targets and false
7810 comments.
7811 * Makefile.def: Add systematic dependencies to 'recursive' targets.
7812 Add systematic method of specifying missing targets in subdirs.
7813 Add copyright boilerplate.
7814 * Makefile.in: Regenerate.
7815 * configure.in: Add 'recursive targets' to maybe list.
7816 * configure: Regenerate.
7817
27b1cc72
NN
7818 * Makefile.tpl: Rename [+target+] to [+make_target+].
7819 * Makefile.def: Rename 'target' to 'make_target'.
7820
01e51bd0
NC
78212003-05-30 Nick Clifton <nickc@redhat.com>
7822
7823 * README-maintainer-mode: Update URL for locating blessed config
7824 tools.
7825
2fd84b42
NC
78262003-05-29 Robert Millan <rmh@debian.org>
7827
7828 * ltconfig: Import this patch and modify for use with current
7829 version of ltconfig:
7830
7831 2003-05-21 Bruno Haible <bruno@clisp.org>
7832
7833 * libtool.m4 (AC_LIBTOOL_SYS_DYNAMIC_LINKER): Add support for
7834 GNU/FreeBSD.
7835
8945c6bb
DD
78362003-05-28 DJ Delorie <dj@redhat.com>
7837
7838 * Makefile.tpl: Make maybe-check-gcc .PHONY.
7839 * Makefile.in: Regenerate.
7840
2f9632a1
JJ
78412003-05-28 Jeff Johnston <jjohnstn@redhat.com>
7842
80b200a1 7843 * COPYING.NEWLIB: Add license info for newlib/libc/sys/linux/stdlib.
2f9632a1 7844
3a12db16 78452003-05-21 DJ Delorie <dj@redhat.com>
80b200a1 7846
3a12db16
DD
7847 * Makefile.tpl (configure-target-libiberty): Depend only on gcc, not
7848 newlib or libgloss.
7849 * Makefile.in: Regenerate.
7850
44482353
DD
78512003-05-21 DJ Delorie <dj@redhat.com>
7852
7853 * Makefile.tpl: Add missing empty maybe-check-gcc target.
7854 * Makefile.in: Regenerate.
7855
fec2c52d
MR
78562003-05-20 Maciej W. Rozycki <macro@ds2.pg.gda.pl>
7857
7858 * configure.in: Use curly braces in the definition of tooldir.
7859 * configure: Regenerate.
7860
16ae0395
NN
78612003-05-19 Nathanael Nerode <neroden@gcc.gnu.org>
7862
7863 * configure.in: Switch more things to use maybe dependencies.
80b200a1 7864 * Makefile.tpl: Switch more things to use maybe dependencies.
16ae0395
NN
7865 Factor out common code from autogen IF statements.
7866 * configure: Regenerate.
7867 * Makefile.in: Regenerate.
7868
ec11bdc6
DD
78692003-05-14 Kelley Cook <kelleycook@wideopenwest.com>
7870
7871 * configure.in: Accept i[3456789]86 for machine type.
7872 * configure: Regenerate.
7873
dd12c3a8
NN
78742003-05-18 Nathanael Nerode <neroden@gcc.gnu.org>
7875
7876 * configure.in: Switch more things to use maybe dependencies.
7877 Rearrange a little. Use GCC_TOPLEV_SUBDIRS.
7878 * configure: Regenerate.
7879 * Makefile.tpl: Switch more things to use maybe dependencies.
7880 * Makefile.in: Regenerate.
7881
cf662e21
AJ
78822003-05-16 Andreas Schwab <schwab@suse.de>
7883
7884 * Makefile.tpl (install-opcodes): Define.
7885 * Makefile.in: Rebuild.
7886
5481b376
AJ
78872003-05-13 Andreas Jaeger <aj@suse.de>
7888
7889 * config.guess: Update to 2003-05-09 version.
7890 * config.sub: Update to 2003-05-09 version.
7891
3959a22a
AJ
78922003-05-13 Michael Eager <eager@mvista.com>
7893
7894 * configure.in: Correct sed script so that options in quotes are not
7895 deleted.
7896 * configure: Rebuild.
7897
564b43e5
CV
78982003-05-12 Corinna Vinschen <corinna@vinschen.de>
7899
7900 * configure.in (FLAGS_FOR_TARGET): Remove $$s/newlib/libc/sys/cygwin
7901 and $$s/newlib/libc/sys/cygwin32 include paths.
7902 * configure: Ditto.
7903
bb947dc9
L
79042003-05-05 H.J. Lu <hjl@gnu.org>
7905
7906 * config-ml.in: Restored from gcc repository.
7907
77f7441a
CD
79082003-05-02 Chris Demetriou <cgd@broadcom.com>
7909
80b200a1
ZW
7910 * Makefile.tpl: Require "makeinfo" from texinfo 4.2 or later.
7911 * Makefile.in: Regenerate.
77f7441a 7912
a26d7085
DJ
79132003-04-27 Daniel Jacobowitz <drow@mvista.com>
7914
7915 * src-release (DEVO_SUPPORT): Add src-release, Makefile.tpl,
7916 and Makefile.def.
7917
e4c4d240
DJ
79182003-04-27 Daniel Jacobowitz <drow@mvista.com>
7919
7920 * Makefile.tpl: Clean $(BUILD_SUBDIR).
7921 * Makefile.in: Regenerated.
7922
62a3fc85
DD
79232003-04-18 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
7924
7925 * Makefile.tpl (MAKEINFOFLAGS): Default to --split-size=5000000.
7926 * Makefile.in: Regenerate.
7927
79282003-04-18 Jakub Jelinek <jakub@redhat.com>
7929
7930 * configure.in (powerpc64*-*-linux*): Remove.
7931 * configure: Rebuilt.
7932
5b474aa8
DD
79332003-04-17 Phil Edwards <pme@gcc.gnu.org>
7934
7935 * Makefile.tpl (GCC_STRAP_TARGETS): New variable containing all the
7936 previous bootstrap targets, plus bubblestrap, quickstrap, cleanstrap,
7937 and restrap.
7938 * Makefile.in: Regenerate.
7939
79402003-04-16 Richard Earnshaw <rearnsha@arm.com>
7941
7942 * configure.in (arm-*-netbsdelf*): Enable building java libraries.
7943 * configure: Regenerated.
7944
bc295afe
AO
79452003-04-11 Alexandre Oliva <aoliva@redhat.com>
7946
7947 * libtool.m4 (lt_cv_deplibs_check_method): Use pass_all on mips*.
7948 * */configure: Rebuilt.
7949
3728fade
NN
79502003-03-14 Nathanael Nerode <neroden@gcc.gnu.org>
7951
7952 * Makefile.tpl: Move .NOEXPORT, MAKEOVERRIDES back down.
7953 * Makefile.in: Regenerate.
7954
ce5b542e
MC
79552003-03-14 Michael Chastain <mec@shout.net>
7956
7957 * Makefile.in: Regenerate with correct Makefile.def.
7958
3db0a37f
NN
79592003-03-12 Nathanael Nerode <neroden@gcc.gnu.org>
7960
7961 * Makefile.tpl: Move .NOEXPORT, MAKEOVERRIDES up. Delete unused
7962 Make macro.
7963 * Makefile.in: Regenerate.
7964 * configure.in: Clean up gxx_include_dir logic.
7965 * configure: Regenerate.
7966
34349c6e
DD
79672003-03-09 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
7968
7969 * configure.in (gxx_include_dir): Fix typo.
7970 * configure: Regenerated.
7971
686c28c9
AC
79722003-03-06 Andrew Cagney <cagney@redhat.com>
7973
7974 * texinfo/texinfo.tex: Import version 2003-02-03.16.
7975
bba45b8b 79762003-03-04 Daniel Jacobowitz <drow@mvista.com>
5481b376 7977
bba45b8b
NN
7978 * configure.in: Include $(build_tooldir)/sys-include in
7979 FLAGS_FOR_TARGET.
7980 * configure: Regenerated.
7981
2683747f
NN
79822003-03-04 Nathanael Nerode <neroden@gcc.gnu.org>
7983
bba45b8b
NN
7984 * Makefile.tpl: Reindent.
7985 * Makefile.in: Regenerate.
7986 * configure.in: Reindent. Don't set unused variables.
7987 * configure: Regenerate.
7988
2683747f
NN
7989 * Makefile.tpl: Always pass down RANLIB.
7990 * Makefile.in: Regenerate.
7991
7992 * Makefile.tpl: Don't set unused enable_shared, enable_threads macros.
7993 * Makefile.in: Regenerate.
7994 * configure.in: Remove unused logic relating to --enable-shared
7995 and --enable-threads. Remove bogus comments. Remove redundant
7996 noconfigdirs.
7997 * configure: Regenerate.
7998
7999 * configure.in: Replace ${libstdcxx_version} by its value.
8000 Remove reference to mh-dgux.
8001 * configure: Regenerate.
8002
50212802
NN
80032003-02-28 Nathanael Nerode <neroden@gcc.gnu.org>
8004
8005 * Makefile.tpl: Rearrange.
8006 * Makefile.in: Regenerate.
8007
a6be7fc6
NC
80082003-02-25 Nick Clifton <nickc@redhat.com>
8009
8010 * configure: Remove site-file supprot - it is obsolete.
8011
f8a495c8
NC
80122003-02-24 Uwe Stieber <uwe@wwws.de>
8013
8014 * configure.in: Add support for kaOS as cross build target system.
8015 * configure: Regenerated.
8016
3decd77d
DD
80172003-02-20 Sean McNeil <sean@blue.mcneil.com>
8018
8019 * Makefile.tpl: Add definition of CPPFLAGS to pass into
8020 configure-target-* as some target builds may require additional
8021 flags for preprocessor tests.
8022 * Makefile.in: Regenerated.
8023
f4ff34a3
AO
80242003-02-19 Alexandre Oliva <aoliva@redhat.com>
8025
8026 * libtool.m4 (LD): Append -melf* option to LD on IRIX with GNU ld.
8027 * ltconfig: Handle it.
8028 * ltcf-cxx.sh: Use with_gnu_ld passed as a shell variable instead of
8029 auto-detecting it.
8030
b7e4a931
AO
80312003-02-19 Alexandre Oliva <aoliva@redhat.com>
8032
8033 * ltcf-cxx.sh: Replace $linker_flags with $compiler_flags wherever
8034 it is used as argument to $CC.
8035 * ltcf-gcj.sh: Likewise.
8036
6b784d9f
AO
80372003-02-19 Alexandre Oliva <aoliva@redhat.com>
8038
8039 * configure.in: Introduce --enable-maintainer-mode.
8040 * configure: Rebuilt.
8041 * Makefile.tpl (Makefile.in, configure): Enable dependencies only
8042 for maintainer mode.
8043 * Makefile.in: Rebuilt.
8044
8bcd8a07
AC
80452003-02-19 Andrew Cagney <ac131313@redhat.com>
8046
8047 * configure: Regenerate using autoconf 2.13.
8048
ee3fd329
AM
80492003-02-19 Alan Modra <amodra@bigpond.net.au>
8050
8051 * config.guess: Import latest version.
8052 * config.sub: Import latest version.
8053
e9e45685
JM
80542003-02-18 Jason Merrill <jason@redhat.com>
8055
8056 * Makefile.tpl (check-c++): Allow parallelism.
8057
859789af
AC
80582003-02-17 Andrew Cagney <ac131313@redhat.com>
8059
8060 * configure: Regenerate using autoconf 000227.
8061
b3f16a9b
GK
80622003-02-15 Geoffrey Keating <geoffk@apple.com>
8063
8064 * configure.in (*-*-darwin*): Rename from powerpc*-*-darwin*,
8065 don't configure target-libobjc.
8066 * configure: Regenerate.
8067
72e60e02
DD
80682003-02-14 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
8069
8070 * Makefile.tpl (RANLIB): Define.
8071 * Makefile.in: Regenerate.
8072
91f0e695
KS
80732003-02-06 Keith R Seitz <keiths@redhat.com>
8074
8075 * Makefile.def: Remove "snavigator", "grep", and "db" modules.
8076 * Makefile.tpl: Remove "all-snavigator" and "all-grep".
8077 * Makefile.in: Regenerated.
8078 * configure.in: Remove all traces of snavigator, db, and grep.
8079 * configure: Regenerated.
8080
122bfa92
FCE
80812003-01-31 Frank Ch. Eigler <fche@redhat.com>
8082
8083 * Makefile.tpl (all-sid): Add libiberty/bfd/opcodes dependencies.
8084 * Makefile.in: Regenerated.
8085
264095c3
AO
80862003-01-30 Alexandre Oliva <aoliva@redhat.com>
8087
8088 * config.if: Copy from GCC.
8089
a84dbcb3
AO
80902003-01-27 Phil Edwards <pme@gcc.gnu.org>
8091
8092 * configure.in: Revert 24Jan change.
8093 * configure: Regenerate.
8094
19618276
NN
80952003-01-23 Nathanael Nerode <neroden@gcc.gnu.org>
8096
8097 * configure.in: Revert previous change.
8098 * configure: Regenerate.
8099
b7f27a92
NN
81002003-01-23 Nathanael Nerode <neroden@gcc.gnu.org>
8101
8102 * configure.in: Make rda native-only.
8103 * configure: Regenerate.
8104
83326456
NN
81052003-01-19 Nathanael Nerode <neroden@gcc.gnu.org>
8106
8107 * configure.in: Add missing \.
8108 * configure: Rebuilt.
8109
5e367fa5
JJ
81102003-01-17 Jakub Jelinek <jakub@redhat.com>
8111
8112 * configure.in (baseargs): Avoid using \| in sed regular
8113 expressions.
8114 * configure: Rebuilt.
8115
e01f337c
JJ
81162003-01-16 Jakub Jelinek <jakub@redhat.com>
8117
8118 * configure.in (baseargs): Remove all supported forms of
8119 --cache-file, --srcdir, --host, --build and --target options
8120 from argument lists.
8121 * configure: Rebuilt.
8122
aa236487
AO
81232003-01-15 Alexandre Oliva <aoliva@redhat.com>
8124
8125 * configure.in (noconfigdirs): Don't skip gas on IRIX 6.
8126 * configure: Rebuilt.
8127
586c0873
NN
81282003-01-09 Nathanael Nerode <neroden@gcc.gnu.org>
8129
8130 * configure.in: Substitute TOPLEVEL_CONFIGURE_ARGUMENTS.
8131 * Makefile.tpl: Pass TOPLEVEL_CONFIGURE_ARGUMENTS to gcc.
8132 * Makefile.in: Regenerate.
8133 * configure: Regenerate.
8134
497f816e
DD
81352003-01-09 Christian Cornelssen <ccorn@cs.tu-berlin.de>
8136
8137 * Makefile.tpl (BASE_FLAGS_TO_PASS): Also pass DESTDIR.
8138 (install-info, dir.info): Prepend $(DESTDIR) to $(infodir).
8139 * Makefile.in: Regenerate.
8140
bfbe5519
AO
81412003-01-09 Alexandre Oliva <aoliva@redhat.com>
8142
8143 * configure.in: Remove Makefile in build, host and target modules
8144 unless configure was run with --no-recursion.
8145 * configure: Rebuilt.
8146
3f234ef5
CD
81472003-01-08 Chris Demetriou <cgd@broadcom.com>
8148
8149 * config.guess: Update to 2003-01-03 version.
8150 * config.sub: Update to 2003-01-03 version.
8151
a3982d48
CF
81522003-01-07 Christopher Faylor <cgf@redhat.com>
8153
8154 * configure: Regenerate with proper autoconf 2.13.
8155
75778ec4
CF
81562003-01-07 Christopher Faylor <cgf@redhat.com>
8157
80b200a1
ZW
8158 * configure.in: Add AC_PREREQ for consistency.
8159 * configure: Regenerate.
75778ec4 8160
c180f501
AC
81612003-01-06 Andrew Cagney <ac131313@redhat.com>
8162
8163 * configure.in (GDB_TK): Add tcl directories conditional on
8164 gdb/gdbtk directory being present.
8165 * configure: Regenerate.
5481b376 8166
46ca2cc2
DA
81672003-01-04 John David Anglin <dave.anglin@nrc.ca>
8168
8169 * configure.in (LD): Improve test for gcc. Try to set LD to the ld used
8170 by gcc if LD is not defined and we are not doing a Canadian Cross.
8171 * configure: Rebuilt.
8172
53dd8dab
DJ
81732003-01-01 Daniel Jacobowitz <drow@mvista.com>
8174
8175 * src-release (ETC_SUPPORT): Add fdl.texi and texi2pod.pl.
8176
50ceb20c
TT
81772002-12-31 Tom Tromey <tromey@redhat.com>
8178
8179 * Makefile.in: Rebuilt.
8180 * Makefile.def (target_modules) [libffi]: Allow installation.
8181
e78b5cfe
AS
81822002-12-31 Andreas Schwab <schwab@suse.de>
8183
8184 * configure.in: Fix use of $program_transform_name.
8185 * configure: Regenerated.
8186
67448102
DJ
81872002-12-30 Daniel Jacobowitz <drow@mvista.com>
8188
8189 * configure.in (baseargs): Don't remove first configure argument.
8190 * configure: Regenerated.
8191
e6bfb94a
AO
81922002-12-29 Alexandre Oliva <aoliva@redhat.com>
8193
8194 * Makefile.tpl (local-distclean): Don't remove...
8195 (multilib.ts): ... this. Moved into...
8196 (multilib.out): ... this. Don't use sub-make.
8197 ($(BUILD_SUBDIR)/[+module+]/Makefile, [+module+]/Makefile,
8198 $(TARGET_SUBDIR)/[+module+]/Makefile, gcc/Makefile): Moved into...
8199 (configure-build-[+module+], configure-[+module+],
8200 configure-target-[+module+], configure-gcc): ... these. Test
8201 for Makefile existence. Drop config.status from dependencies.
8202 * Makefile.in: Rebuilt.
8203 * configure.in: Move gcc-version-trigger to the end of
8204 ac_configure_args. Add comments to maybedep.tmp and
8205 serdep.tmp. Introduce --disable-serial-configure. Remove
8206 nonopt from baseargs, matching and removing corresponding
8207 whitespace while at it.
8208 * configure: Rebuilt.
8209
8f0dfb36
AO
82102002-12-28 Alexandre Oliva <aoliva@redhat.com>
8211
8212 * configure.in (host_configargs): Replace reference to
8213 no-longer-defined buildopts with --build=${build_alias}.
8214 * configure: Rebuilt.
8215
43be203f
AO
82162002-12-28 Alexandre Oliva <aoliva@redhat.com>
8217
8218 * Makefile.tpl ($(NOTPARALLEL)): Move to the end. Bring uses of
8219 program_transform_name to standard idiom.
8220 (AUTOGEN, AUTOCONF): Define.
8221 (Makefile.in): Use $(AUTOGEN).
8222 (Makefile): Depend on config.status, and use autoconf-style rule to
8223 build it. Move original commands to...
8224 (config.status): ... this new target.
8225 (configure): Add $(srcdir). Depend on config/acx.m4. Use
8226 $(AUTOCONF).
8227 * Makefile.in: Rebuilt.
8228
a0da8069
NN
82292002-12-28 Nathanael Nerode <neroden@gcc.gnu.org>
8230
d18f1c9f
NN
8231 * Makefile.tpl: Fix dramatic bustage due to change in
8232 program_transform_name.
8233 * Makefile.in: Regenerate.
8234
8235 * configure.in: Remove unnecessary PATH setting.
8236 * configure: Regnerate.
8237
8238 * configure.in: Don't default to unprefixed tools unless
8239 the native tools will work.
8240 * configure: Regenerate.
8241
a0da8069
NN
8242 * configure.in: Convert to autoconf script. Blow away lots
8243 of now-redundant Makefile fragments.
8244 * configure: Generate using Autoconf.
8245 * Makefile.tpl: Rewrite to reflect autoconfiscation.
8246 * Makefile.in: Regenerate.
8247
c567df0a
NN
82482002-12-27 Nathanael Nerode <neroden@gcc.gnu.org>
8249
5481b376 8250 * configure: Remove unneeded 'export's. Make CC_FOR_TARGET,
c567df0a
NN
8251 CXX_FOR_TARGET, GCJ_FOR_TARGET substituted in configure.in only.
8252
5481b376 8253 * ChangeLog: Move a couple of entries from here to winsup/cygwin,
c567df0a 8254 where they belong.
2c7f9a32 8255
2dabcfb4
AS
82562002-12-24 Andreas Schwab <schwab@suse.de>
8257
8258 * Makefile.tpl (multilib.out): Fix missing space.
8259 * Makefile.in: Regenerate.
8260
1086bc09
NN
82612002-12-23 Nathanael Nerode <neroden@gcc.gnu.org>
8262
8263 * Makefile.tpl: Use shared multilib.out. Use move-if-change for it.
8264 Convert (cd foo; make) to (cd foo && make). Clean up multilib.out.
8265 * Makefile.in: Regenerate.
8266 * configure.in: Remove unnecessary leftovers.
8267
1086bc09
NN
82682002-12-21 Geoffrey Keating <geoffk@apple.com>
8269
8270 * configure.in (extra_ranlibflags_for_target): New variable.
8271 (*-*-darwin): Add -c to ranlib commands.
8272 * configure (tooldir): Handle extra_ranlibflags_for_target.
8273
14e9ca95
JJ
82742002-12-20 Jeff Johnston <jjohnstn@redhat.com>
8275
8276 * COPYING.NEWLIB: Updated.
8277 * COPYING.LIBGLOSS: Ditto.
8278
14c428fb
NN
82792002-12-19 Nathanael Nerode <neroden@gcc.gnu.org>
8280
8281 * Makefile.tpl: Revert HJL's change.
8282 * Makefile.in: Regenerated.
8283 * configure.in: Put build_prefix before $(BUILD_SUBDIR) here, and
8284 always.
8285
313b8244
AS
82862002-12-19 Andreas Schwab <schwab@suse.de>
8287
8288 * Makefile.tpl, configure.in: Substitute libstdcxx_incdir.
8289 * Makefile.in: Regenerate.
8290
efeae3db
L
82912002-12-18 H.J. Lu <hjl@gnu.org>
8292
8293 * Makefile.tpl: Add @build_prefix@ before $(BUILD_SUBDIR).
8294 * Makefile.in: Regenerated.
8295
8296 * configure.in (build_prefix): New. Substitute.
8297
43d92c63
NN
82982002-12-18 Nathanael Nerode <neroden@gcc.gnu.org>
8299
59da4fe6
NN
8300 * Makefile.tpl: Don't let real targets depend on phony targets.
8301 * Makefile.in: Regenerate.
8302
43d92c63
NN
8303 * Makefile.tpl (do-info): Depend on maybe-all-texinfo, not all-texinfo.
8304 * Makefile.in: Regenerate.
8305
b72e6a2d
JM
83062002-12-16 Jason Merrill <jason@redhat.com>
8307
8308 * Makefile.tpl (all-gcc): Use 'make quickstrap' if there was a
8309 previous 'make bootstrap'.
8310 * Makefile.in: Regenerate.
8311
95c72c44
HPN
83122002-12-17 Hans-Peter Nilsson <hp@bitrange.com>
8313
8314 * configure.in (noconfigdirs) [mmix-*-*]: Disable libgloss and gdb.
8315
7d695d07
JM
83162002-12-13 Jason Merrill <jason@redhat.com>
8317
8318 * Makefile.tpl (check-gcc-c++): Renamed from check-c++. Don't run
8319 library tests.
8320 (check-c++): Just depend on it and check-target-libstdc++-v3.
8321 * Makefile.in: Regenerate.
8322
54103d1e
NN
83232002-12-13 Nathanael Nerode <neroden@gcc.gnu.org>
8324
8325 * configure.in, Makefile.tpl, Makefile.def: Remove tclX.
8326 * Makefile.in: Regenerate.
8327
4024f1e1
JJ
83282002-12-12 Jeff Johnston <jjohnstn@redhat.com>
8329
80b200a1
ZW
8330 * COPYING.NEWLIB: Update list of alternate Regent of California
8331 licenses and discuss official revoking of advertising clause.
8332 * COPYING.LIBGLOSS: Ditto.
4024f1e1 8333
7dda0df6
AO
83342002-12-12 Alexandre Oliva <aoliva@redhat.com>
8335
8336 * Makefile.tpl (configure-target-rda): Depend on $(ALL_GCC_C).
8337 * Makefile.in: Rebuilt.
8338
d03be79e 83392002-12-10 Nathanael Nerode <neroden@gcc.gnu.org>
b4a77b47 8340
929293f4
NN
8341 * configure: Fix bug put in by gremlins.
8342
d03be79e
NN
8343 * Makefile.tpl: Substitute more autoconfily.
8344 * configure: Substitute more autoconfily.
8345 * Makefile.in: Regenerate.
8346
83472002-12-08 Andrew Cagney <ac131313@redhat.com>
8348
8349 * Makefile.tpl (all-sim): Depend on maybe-configure-gdb.
8350 * Makefile.in (all-sim): Ditto.
a36d530e
DD
8351
83522002-12-06 DJ Delorie <dj@redhat.com>
8353
8354 * Makefile.tpl: Change configure dependencies to not have real
8355 targets depend on phony targets.
b4a77b47 8356
db1ac78d
NN
83572002-12-05 Nathanael Nerode <neroden@gcc.gnu.org>
8358
bcaf2395
NN
8359 * configure.in: Revert unintentional change.
8360
b4fa093e
NN
8361 * src-release: Configure host subdirs.
8362
db1ac78d
NN
8363 * Makefile.tpl: Change dependency for */multilib.out so that
8364 it works when gcc isn't in the tree.
8365
8366 * configure.in: Substitute more.
8367 * configure: Run subconfigures from the Makefile.
8368 * Makefile.tpl: Run subconfigures from the Makefile; add a few
8369 convenience targets. Make sure gcc isn't rebuilt after bootstrap.
8370
15723a45
NN
83712002-12-03 Nathanael Nerode <neroden@gcc.gnu.org>
8372
e2b9e2dc
NN
8373 * Makefile.tpl: Add targets for configuring host subdirs in Makefile,
8374 and corresponding dependencies.
8375 * Makefile.in: Regenerate.
8376
2af579c4
NN
8377 * configure.in (host_tools): Order binutils, gas and ld for
8378 convenience in running the testsuites.
8379
a2cc058a
NN
8380 * Makefile.tpl: Introduce rules to serialize subconfigure runs.
8381 * Makefile.in: Regenerate.
8382 * configure.in: Introduce rules to serialize subconfigure runs.
8383
15723a45
NN
8384 * configure.in: Introduce BASE_CC_FOR_TARGET.
8385 * Makefile.tpl: Reorganize and comment. Introduce HOST_CONFIGARGS.
8386 Realize configure-build-* targets. Realize configure-target-* targets.
8387 * Makefile.in: Regenerate.
8388
ae831be5
NN
83892002-12-02 Nathanael Nerode <neroden@gcc.gnu.org>
8390
8391 * configure: Move gcc_version_trigger stuff from here...
8392 * configure.in: ...to here.
8393
8394 * configure.in: Separate subconfigure options added by this file from
8395 options given by the user. Add machinery to put args for host
8396 subconfigures into the Makefile.
8397
8398 * Makefile.tpl: Remove 'vault' targets.
8399 * Makefile.tpl: Reorder and comment dependencies.
8400 * Makefile.in: Regenerate.
8401
bbf7c8ac
NN
84022002-11-28 Geoffrey Keating <geoffk@apple.com>
8403
8404 * configure.in: Move host-specific darwin noconfigdirs into
8405 the host-specific section.
8406
930314a4
NN
84072002-12-02 Nathanael Nerode <neroden@gcc.gnu.org>
8408
52d7cdee
NN
8409 * Makefile.tpl: Restore bkorb's style patch, accidentally lost
8410 during replay.
8411 * Makefile.in: Regenerate.
8412
930314a4
NN
8413 (finishing slow-motion replay)
8414 * configure: Remove skip-this-dir support.
8415 * Makefile.tpl: Remove skip-this-dir support.
8416
8417 * Makefile.tpl: Remove leftover support for non-autoconfiscated
8418 subdirectories.
8419 * Makefile.in: Regenerate.
8420
8421 * Makefile.tpl: Strip out useless setting of 'dir'.
8422 * Makefile.in: Regenerate.
5481b376 8423
930314a4
NN
84242002-12-02 Nathanael Nerode <neroden@gcc.gnu.org>
8425
8426 (finishing slow-motion replay)
8427 * configure.in: Fix deeply stupid bug.
8428
8429 * configure.in: Introduce RAW_CXX_FOR_TARGET and simplify embedded
8430 shell code in CXX_FOR_TARGET
8431 * Makefile.def: Introduce raw_cxx.
8432 * Makefile.tpl: Use raw_cxx to select between CXX_FOR_TARGET and
8433 RAW_CXX_FOR_TARGET.
8434 * Makefile.in: Regenerate.
8435
84362002-12-02 Nathanael Nerode <neroden@gcc.gnu.org>
8437
8438 (finishing slow-motion replay)
8439 * Makefile.tpl: Remove unnecessary ifs.
8440 * Makefile.in: Regenerate.
8441
5481b376 8442 * Makefile.tpl: Implement soft dependency machinery. Maybe-ize
930314a4
NN
8443 dependencies. Maybe-ize build-libiberty. Create dummy install
8444 targets for 'no_install' modules.
5481b376 8445 * configure: Move GDB_TK substitution to configure.in. Move
930314a4 8446 build_modules stuff to configure.in.
5481b376 8447 * configure.in: Implement soft dependency machinery. Maybe-ize
930314a4
NN
8448 GDB_TK, rearrange slightly. Move build_modules stuff from configure.
8449 * Makefile.in: Regenerate.
8450
3866be5d
NN
84512002-12-01 Nathanael Nerode <neroden@gcc.gnu.org>
8452
8453 (continuing slow-motion replay)
8454 * Makefile.tpl: Make all-target, install-target behave similarly
8455 to all, install (only hitting configured targets). Eliminate
8456 unused macro defintions.
8457
8458 * Makefile.tpl: Add all-gcc: all-build-libiberty dependency when
8459 build != host.
8460
8461 * Makefile.tpl: Add all-gcc: all-libiberty dependency.
8462
8463 * ltcf-c.sh, ltcf-gcj.sh, Makefile.tpl: Correct BUILD/HOST confusion.
8464
5481b376 8465 * configure.in: Produce lists of subdir targets we're actually
3866be5d
NN
8466 configuring. Remove references to "dosrel".
8467 * Makefile.tpl: Let configure set which subdir targets are hit.
5481b376 8468 Remove install-cross; clean up install; remove ALL. Remove
3866be5d 8469 references to "dosrel". Remove "EXTRA_TARGET_HOST" hackery.
5481b376 8470 Autogenerate host module targets. Remove empty dependency lines
3866be5d
NN
8471 and redundant dependency; rearrange slightly.
8472 * Makefile.def: Add host-side libtermcap, utils.
8473
8474 * Makefile.in: Regenerate.
8475
e393202e
NN
84762002-12-01 Nathanael Nerode <neroden@gcc.gnu.org>
8477
8478 (Continuing slow-motion replay)
8479 * Makefile.def: Add list of recursive targets to autogenerate.
8480 Add build_modules.
8481 * Makefile.tpl: Autogenerate do-* targets. Autogenerate *-target-*
8482 targets. Autogenerate *-build-* targets.
8483 * Makefile.in: Regenerate.
8484
583d52d7
NN
84852002-11-30 Nathanael Nerode <neroden@gcc.gnu.org>
8486
8487 (Continuing slow-motion replay)
8488 * configure: More autoconf-style substitutions.
8489 * Makefile.tpl: More autoconf-style substitutions.
8490 * Makefile.in: Regenerate.
8491
84922002-11-30 Nathanael Nerode <neroden@gcc.gnu.org>
8493
8494 (Continuing slow-motion replay)
8495 * configure: Substitute more variables in a more autoconf-friendly
8496 way. Simplify slightly.
8497 * Makefile.tpl: Make more variables substitutable in an
8498 autoconf-friendly way.
8499 * Makefile.in: Regenerate.
8500
874e38b4
NN
85012002-11-29 Nathanael Nerode <neroden@gcc.gnu.org>
8502
8503 (Continuing slow-motion replay)
8504 * configure.in (v810*): Remove special setting of tools.
8505
8506 * configure: Add support for extra required flags for ar or nm.
8507 * configure.in (aix4.3+): Use above support for target-specific
8508 issues, rather than using config/mt-aix43.
8509
852e5f18
NN
85102002-11-29 Nathanael Nerode <neroden@gcc.gnu.org>
8511
8512 (Starting slow-motion replay merge from gcc 3.4 b-i-b branch)
8513 * configure: Remove 'removing', which doesn't work. Replace $subdir
8514 with . everywhere. Replace $subdirs with ''. Replace $makesrcdir
8515 with $srcdir. Reformat indentation. Substitute some variables
8516 formerly hard-coded in the Makefile for build=host.
8517 * Makefile.tpl: Autogenerate more; make more autoconf-friendly.
8518 * Makefile.def: Autogenerate more.
8519 * Makefile.in: Regenerate.
8520
c9a0d920
DD
85212002-11-13 Bruce Korb <bkorb@gnu.org>
8522
8523 * Makefile.tpl: syntactic cleanup
8524
dd2768ff
KB
85252002-11-04 Kevin Buettner <kevinb@redhat.com>
8526
8527 * Makefile.def (host_modules): Add rda.
8528 * Makefile.in: Regenerate.
8529 * configure.in (target_tool): Add target-rda to list.
8530
1aa8389d
DD
85312002-10-25 Phil Edwards <pme@gcc.gnu.org>
8532
8533 * Makefile.tpl (bootstrap): Add bubblestrap, quickstrap, cleanstrap,
8534 and restrap targets to this rule.
8535 * Makefile.in: Regenerate.
8536
28f46298
HPN
85372002-10-24 Hans-Peter Nilsson <hp@bitrange.com>
8538
8539 * configure.in (i[3456]86-*-linux*): Add check to disable
8540 ${libgcj} for glibc1.
8541
ff72e302
NC
85422002-10-07 Svein E. Seldal <Svein.Seldal@solidas.com>
8543
8544 * configure.in: Add tic4x target.
8545
8607b6c9
NN
85462002-10-03 Nathanael Nerode <neroden@gcc.gnu.org>
8547
8548 * Makefile.tpl: Make SET_LIB_PATH substitution more autoconfy.
8549 * Makefile.tpl: Make RPATH_ENVVAR substitution more autoconfy.
8550 * configure.in: Make SET_LIB_PATH substitution more autoconfy.
8551 * configure.in: Make RPATH_ENVVAR substitution more autoconfy.
8552 * Makefile.in: Regenerate.
8553
f8f61f4a
NN
85542002-10-02 Nathanael Nerode <neroden@gcc.gnu.org>
8555
c86f794b
NN
8556 * Makefile.tpl: Eliminate reference to all-gui, all-libproc.
8557 * Makefile.in: Regenerate.
8558
a9590527
NN
8559 * Makefile.def: Remove order dependency comments.
8560 * Makefile.tpl: Add explicit install-install dependencies.
8561 * Makefile.in: Regenerate.
8562
8412ce72
NN
8563 * Makefile.tpl: Remove material now in src-release. (Finally!)
8564 * Makefile.in: Regenerate.
8565
8b9f37f1
NN
8566 * configure: Restore my original patch by syncing with gcc version.
8567
f8f61f4a
NN
8568 * Bring following over from gcc:
8569
85702002-09-30 Ulrich Weigand <uweigand@de.ibm.com>
8571
8572 * configure.in (s390*-*-linux*): Enable libgcj.
8573
403d9505
NN
85742002-10-02 Nathanael Nerode <neroden@gcc.gnu.org>
8575
8576 * Makefile.in: Regenerate. This really ought to fix things. :sigh:
8577
95f6f383
AM
85782002-10-02 Alan Modra <amodra@bigpond.net.au>
8579
e4673b0a 8580 * configure: Move stray lines back to where they belong.
95f6f383 8581
748503c8
NN
85822002-10-01 Nathanael Nerode <neroden@gcc.gnu.org>
8583
a581b5c3
NN
8584 * Makefile.tpl: Insert configure-target target, for src-release.
8585
c084f5b4
NN
8586 * configure: Finish reverting change which Andrew Cagney started
8587 reverting. Should fix bustage.
8588
7aa673ed 8589 * src-release (BINUTILS_SUPPORT_DIRS): Add cpu directory.
748503c8
NN
8590 * src-release: New file. Contains material for making net
8591 releases for gdb, binutils, et al., formerly in Makefile.in.
8592
82a9b2d9
NC
85932002-09-30 Nick Clifton <nickc@redhat.com>
8594
8595 * cpu: New top level directory. Intended to hold input files for
8596 CGEN which have FSF copyright assignment.
8597 * Makefile.in (BINUTILS_SUPPORT_DIRS): Add cpu directory.
8598
c2463a00
AC
85992002-09-29 Andrew Cagney <ac131313@redhat.com>
8600
8601 Revert below (note that src does not contain Makefile.tpl):
8602 * Makefile.tpl: Make subsituted variables more autoconfy.
8603 * Makefile.in: Regenerate.
8604
f03b4789
NN
86052002-09-29 Nathanael Nerode <neroden@gcc.gnu.org>
8606
c11e16a9
NN
8607 * configure: Revert accidentally applied changes.
8608
f03b4789
NN
8609 * Makefile.tpl: Make more autoconf-friendly.
8610 * Makefile.in: Regenerate.
8611 * configure: Make substitution more autoconf-like.
8612
86132002-09-28 Richard Earnshaw <rearnsha@arm.com>
8614
8615 * configure.in (arm-*-coff, strongarm-*-coff, xscale-*-coff): Use a
8616 single entry to handle all these.
8617 (arm-*-elf, strongarm-*-elf, xscale-*-elf): Likewise. Also enable
8618 libjava on arm-*-elf.
8619
c0292023
GK
86202002-09-27 Geoffrey Keating <geoffk@apple.com>
8621
8622 * configure.in (powerpc-*-darwin*): Don't configure BFD, TK, or the
8623 things that depend on them.
8624
c66d951e
NN
86252002-09-25 Nathanael Nerode <neroden@gcc.gnu.org>
8626
8627 * Makefile.tpl: Make subsituted variables more autoconfy.
8628 * Makefile.in: Regenerate.
8629 * configure: Make seds more autoconfy.
8630
907a7241 86312002-09-25 Nathanael Nerode <neroden@gcc.gnu.org>
58daee98
NN
8632
8633 * Makefile.tpl: Rewrite substituted lines to look autoconfy.
8634 * Makefile.in: Regenerate.
8635 * configure.in: Rewrite sed statements to look autoconfy.
8636
907a7241
NN
8637 * Makefile.tpl: Autogenerate *-target-* lists, dependencies of
8638 all-target-foo on configure-target-foo.
8639 * Makefile.def: Ditto.
8640 * Makefile.in: Rebuild.
8641
405ea7a0
NN
86422002-09-22 Nathanael Nerode <neroden@gcc.gnu.org>
8643
8644 * Makefile.def: New file.
8645 * Makefile.tpl: New file.
8646 * Makefile.in: Generate from Makefile.tpl with 'autogen Makefile.def'.
8647
8648 * configure.in: Minor rearrangement. Simplify tests.
8649
bdc57bfd
JT
86502002-09-23 Jason Thorpe <thorpej@wasabisystems.com>
8651
8652 * configure.in (with_headers): Skip copy if value is "yes".
8653 (with_libs): Likewise.
8654
ae03d6e2
NN
86552002-09-20 Nathanael Nerode <neroden@gcc.gnu.org>
8656
8657 * configure.in (*-*-netbsd*): Use noconfigdirs, not skipdirs.
8658 * configure.in (sh*-*-pe*): Ditto.
8659 * configure.in (mips*-*-pe*): Ditto.
8660 * configure.in (*arm-wince-pe): Ditto.
227d98f5
NN
8661
8662 * configure.in: Rearrange.
8663
707960fe
NC
86642002-09-12 Nick Clifton <nickc@redhat.com>
8665
8666 * Import these changes from the config master repository:
8667
8668 2002-09-05 Svein E. Seldal <Svein.Seldal@solidas.com>
8669
8670 * config.sub: Add tic4x target.
8671
8672 2002-09-03 Ben Elliston <bje@redhat.com>
8673
8674 * config.guess: Detect NSR-D machines for nsr-tandem-nsk.
8675 Reported by <Duncan_Stodart@insession.com>.
8676
36ea319f
JJ
86772002-09-10 Jeff Johnston <jjohnstn@redhat.com>
8678
8679 * COPYING.NEWLIB: More updates.
8680
cf57480a
JJ
86812002-09-09 Jeff Johnston <jjohnstn@redhat.com>
8682
8683 * COPYING.NEWLIB: Update.
8684
fd31a171
AC
86852002-08-23 Andrew Cagney <ac131313@redhat.com>
8686
23b632fc
AC
8687 * texinfo/texinfo.tex: Import version 2002-06-04.06.
8688
fd31a171
AC
8689 * config.guess: Import version 2002-08-23.
8690 * config.sub: Import version 2002-08-22.
8691
a08bafb5
AO
86922002-08-20 Alexandre Oliva <aoliva@redhat.com>
8693
8694 * Makefile.in (GCC_FOR_TARGET): Prepend STAGE_CC_WRAPPER.
8695 * configure.in (CC_FOR_TARGET, GCJ_FOR_TARGET, CXX_FOR_TARGET,
8696 CXX_FOR_TARGET_FOR_RECURSIVE_MAKE): Likewise.
8697
17240c1f
NC
86982002-08-06 Federico G. Schwindt <fgsch@olimpo.com.br>
8699
8700 * configure.in (hppa*-*-openbsd*): Treat like hppa*-*-*elf*.
8701
e70ad0c6
L
87022002-08-04 H.J. Lu (hjl@gnu.org)
8703
8704 * configure.in (mips*-*-linux*): Don't skip target-libffi.
8705
574e6d11
DD
87062002-07-31 Alan Modra <amodra@bigpond.net.au>
8707
8708 * configure.in: Move generic linux case to end. Copy generic
8709 linux noconfigdirs to mips*-*-linux* entry and new
8710 powerpc64*-*-linux* entry. Add target-libffi for the latter.
8711
611e7523
CD
87122002-07-19 Chris Demetriou <cgd@broadcom.com>
8713
8714 * MAINTAINERS: Clarify on config.guess and config.sub, and add
8715 one instance of them which was missed to the list to update.
8716
51759676
CD
87172002-07-16 Chris Demetriou <cgd@broadcom.com>
8718
8719 * config.guess: Update to 2002-07-09 version.
8720 * config.sub: Update to 2002-07-03 version.
8721
7c1f909c
DD
87222002-07-11 Nathanael Nerode <neroden@gcc.gnu.org>
8723
8724 * configure.in: Remove two redundant tests.
8725
d7cf5d30
DD
87262002-07-11 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
8727
8728 * configure.in (mips*-*-irix6*o32): Enable stabs.
8729
c74222f7
DD
87302002-07-08 Nathanael Nerode <neroden@gcc.gnu.org>
8731
5b53c336
DD
8732 * configure.in: Don't build grez.
8733 * Makefile.in: Ditto.
8734
c74222f7
DD
8735 * Makefile.in: Remove references to bsp, cygmon, libstub.
8736 * configure.in: Ditto.
8737
8738 * configure.in: Remove leftover reference to gdbtest.
8739
edd1b227
DD
87402002-07-08 Phil Edwards <pme@gcc.gnu.org>
8741
8742 * configure.in (gxx_include_dir): Change to match versioned
8743 C++ headers if --enable-version-specific-runtime-libs is used.
8744
486186e3
AO
87452002-07-04 Steve Ellcey <sje@cup.hp.com>
8746
8747 * ltcf-cxx.sh (hpux*): Modify to support ia64-*-hpux*.
8748
ff0a3bf8
DD
87492002-07-03 Nathanael Nerode <neroden@gcc.gnu.org>
8750
8751 * configure.in: Make --without-x work.
8752
1dfa8174
NC
87532002-07-03 Nick Clifton <nickc@cambridge.redhat.com>
8754
8755 * contrib: New directory. Created to contain a copy of the
5481b376 8756 texi2pod.pl script so that it is in the same place as the version in
1dfa8174
NC
8757 the FSF GCC sources.
8758
07637366
DD
87592002-07-02 Nathanael Nerode <neroden@gcc.gnu.org>
8760
b6f83f2a
DD
8761 * configure.in: Rearrange target Makefile fragment collection.
8762
07637366
DD
8763 * Makefile.in: Don't try to build gdbtest, tgas, ispell, inet, or
8764 cvs[src].
8765 * configure.in: Ditto.
8766
f48556b1
DD
87672002-07-01 Nathanael Nerode <neroden@gcc.gnu.org>
8768
8769 * Makefile.in: Eliminate 'apache' targets.
8770 * configure.in: Eliminate 'apache' targets.
8771
8772 * configure.in: Eliminate redundant tests. Reorganize.
8773
8774 * Makefile.in: Eliminate last reference to LIBGCC1_TEST.
8775
8776 * config-ml.in: Eliminate references to Cygnus configure.
8777
8778 * Makefile.in: Eliminate references to building emacs.
8779
87802002-07-01 Denis Chertykov <denisc@overta.ru>
8781
8782 * configure.in: Add support for ip2k.
8783
cdb9e2b8
BE
87842002-06-24 Ben Elliston <bje@redhat.com>
8785
8786 * configure.in (host_tools): Remove cgen.
8787
8788 * Makefile.in (all-cgen): Remove; runs from its source directory.
8789 (check-cgen, install-cgen, clean-cgen): Likewise.
8790 (all-opcodes): No not depend on all-cgen.
8791 (all-sim): Likewise.
8792
3558860c
DD
87932002-06-22 Nathanael Nerode <neroden@twcny.rr.com>
8794
8795 * configure.in: Fix AIX configury bug.
8796
e3b0c936
DD
87972002-06-19 Nathanael Nerode <neroden@twcny.rr.com>
8798
cdb9e2b8 8799 * configure.in: Replace ${topsrcdir} with ${srcdir}.
4d5fd396 8800
cdb9e2b8
BE
8801 * configure.in: Move definition of libstdcxx_flags right above
8802 usage, rather than way earlier.
8ee424c0 8803
c712250a
DD
8804 * configure.in: Pull definition of is_cross_compiler earlier.
8805
9ee1a75c
DD
8806 * configure.in: Rearrange a little.
8807
e3b0c936
DD
8808 * configure.in: Remove references to librx.
8809 * Makefile.in: Remove references to librx.
8810
b2bd228e
DD
88112002-06-19 Nathanael Nerode <neroden@twcny.rr.com>
8812
8813 * configure.in: Eliminate ${gasdir} variable.
8814
7cd52483
DB
88152002-06-18 Dave Brolley <brolley@redhat.com>
8816
8817 * configure.in: Add support for frv.
8818 * config.sub: Add support for frv.
8819
6c5e141a
DD
88202002-06-12 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
8821
8822 * Makefile.in (CFLAGS_FOR_TARGET): Add -O2.
8823
0d18b56d
JT
88242002-06-08 Jason Thorpe <thorpej@wasabisystems.com>
8825
8826 * configure.in (vax-*-netbsd*): Re-enable gas.
8827
fd8958d5
DD
88282002-05-31 Nathanael Nerode <neroden@twcny.rr.com>
8829
27f15fdd
DD
8830 * Makefile.in: Replace HOST_PREFIX, HOST_PREFIX_1 with BUILD_PREFIX,
8831 BUILD_PREFIX_1, to correct nomenclature.
8832 * configure: Likewise.
8833
fd8958d5
DD
8834 * Makefile.in: Eliminate version-specific references to tcl8.1, tk8.1.
8835 * configure.in: Eliminate version-specific references to tcl8.1, tk8.1.
8836
0c2442b7
DD
88372002-05-31 Olaf Hering <olh@suse.de>
8838
8839 * config-ml.in: Propogate DESTDIR also.
8840
a3602181
JT
88412002-05-29 Jason Thorpe <thorpej@wasabisystems.com>
8842
8843 * configure.in (vax-*-netbsd*): Don't build gas for this
8844 platform.
8845
c95f53ae
MM
88462002-05-28 Marek Michalkiewicz <marekm@amelek.gda.pl>
8847
8848 * configure.in (noconfigdirs): Don't compile libiberty, libstdcxx
8849 and libgcj for AVR.
8850
1d7c1053
NC
88512002-05-28 Nick Clifton <nickc@cambridge.redhat.com>
8852
8853 * config.sub: Add DLX target.
8854
4b37028f
JT
88552002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
8856
8857 * config.guess: Update to 2002-05-22 version.
8858 * config.sub: Likewise.
8859
d5de0a84
NC
88602002-05-16 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
8861
8862 * Makefile.in: Allow for PWDCMD to override hardcoded pwd.
8863 * config-ml.in: Likewise.
8864 * configure: Likewise.
8865 * configure.in: Likewise.
8866
c92a0210
DD
88672002-05-13 Nathanael Nerode <neroden@twcny.rr.com>
8868
115a77aa
DD
8869 * configure.in: Simplify makefile fragment collection.
8870
8871 * configure.in: Remove code to build emacs.
e99daf2b 8872
91e060aa
DD
8873 * configure.in : Remove --srcdir argument from targargs and buildargs
8874 (it's always overridden in the Makefile anyway). Rearrange a bit.
8875
8876 * configure: Move some logic to configure.in.
8877 * configure.in: Move some logic from configure.
c92a0210 8878
91217342
JJ
88792002-05-07 Jeff Johnston <jjohnstn@redhat.com>
8880
8881 * COPYING.LIBGLOSS: New file.
8882
d3d8a9ee
NC
88832002-05-07 Federico G. Schwindt <fgsch@olimpo.com.br>
8884
8885 * Makefile.in: Honour DESTDIR.
8886
3a036cdc
AO
88872002-05-05 Alexandre Oliva <aoliva@redhat.com>
8888
8889 * configure.in (noconfigdirs): Don't disable libgcj on
8890 sparc64-*-solaris* and sparcv9-*-solaris*.
8891
6d095fe4
AO
88922002-05-03 Alexandre Oliva <aoliva@redhat.com>
8893
8894 * configure.in: Revert 2002-04-18's patch; fixed in libjava.
8895
dac55df9
TF
88962002-05-03 Thomas Fitzsimmons <fitzsim@redhat.com>
8897
8898 * configure.in (FLAGS_FOR_TARGET): Do not add
8899 -B$$r/$(TARGET_SUBDIR)/newlib/ when compiling newlib natively
8900 on i[3456]86-*-linux*.
8901
a018e15b
TF
89022002-05-01 Thomas Fitzsimmons <fitzsim@redhat.com>
8903
8904 * configure.in (noconfigdirs): Replace [ ] with test.
c72f388d
TF
8905
8906 * configure.in (noconfigdirs): Do not add target-newlib if
8907 target == i[3456]86-*-linux*, and host == target.
8908
5f284831
MM
89092002-04-29 Mark Mitchell <mark@codesourcery.com>
8910
8911 * config.guess: Updated to 2002-04-26's version.
8912 * config.sub: Updated to 2002-04-26's version.
8913
33babf59
DD
89142002-04-29 Nathanael Nerode <neroden@doctormoo.dyndns.org>
8915
bd5f7da2
DD
8916 * configure.in: delete reference to absent file
8917
a0c4f3a0
DD
8918 * configure.in: replace '[' with 'test'
8919
66f1ba4f
DD
8920 * configure.in: Eliminate references to gash.
8921 * Makefile.in: Eliminate references to gash.
8922
7c3ab50c
DD
8923 * configure.in: remove useless references to 'pic' makefile fragments.
8924
bbc025f5
DD
8925 * configure.in: (*-*-windows*) Finish removing.
8926
33babf59
DD
8927 * configure.in: Eliminate redundant test for libgui.
8928
d5ec694c
DD
89292002-04-26 Joel Sherrill <joel@OARcorp.com>
8930
8931 * configure.in (h8300*-*-rtems*): Disable libf2c and libgcj.
8932 (sparc-*-elf*, sparc64-*-elf*): Disable libgcj.
8933
57a5346c
DD
89342002-04-19 Nathanael Nerode <neroden@twcny.rr.com>
8935
8936 * configure.in: remove references to dead files
8937
dbf93899
DD
89382002-04-18 Tom Tromey <tromey@redhat.com>
8939
8940 * configure.in: Disallow configuring libgcj when it is already
8941 installed and we're using Solaris 2.8 linker. Do enable libgcj on
8942 Solaris 2.8 by default. For PR libgcj/6158.
8943
26eadf68
DD
89442002-04-17 Nathanael Nerode <neroden@twcny.rr.com>
8945
8946 * configure.in: Move default CC setting out of config/mh-* fragments
8947 directly into here.
8948
a0a2c6c6
DD
89492002-04-17 Nathanael Nerode <neroden@twcny.rr.com>
8950
8951 * configure.in: don't even try to configure or make a subdirectory
8952 if there's no configure script for it.
8953
9972f812
DD
89542002-04-15 Mark Mitchell <mark@codesourcery.com>
8955
8956 * MAINTAINERS: Remove chill maintainers.
8957 * Makefile.in (CHILLFLAGS): Remove.
8958 (CHILL_LIB): Remove.
8959 (TARGET_CONFIGDIRS): Remove libchill.
8960 (CHILL_FOR_TARGET): Remove.
8961 (BASE_FLAGS_TO_PASS): Don't pass CHILLFLAGS, CHILL_FOR_TARGET, or
8962 CHILL_LIB.
8963 (CONFIGURE_TARGET_MODULES): Remove configure-target-libchill.
8964 (CHECK_TARGET_MODULES): Likewise.
8965 (INSTALL_TARGET_MODULES): Likewise.
8966 (CLEAN_TARGET_MODULES): Likewise.
8967 (configure-target-libchill): Remove.
8968 (all-target-libchill): Remove.
8969 * configure.in (target_libs): Remove target-libchill.
8970 Do not compute CHILL_FOR_TARGET.
8971 * libchill: Remove directory.
5481b376 8972
75205f78
DD
89732002-04-15 DJ Delorie <dj@redhat.com>
8974
8975 * Makefile.in, configure.in, configure: Sync with gcc, entries
8976 follow...
8977
89782002-04-08 Tom Tromey <tromey@redhat.com>
8979
8980 * configure.in: Add FLAGS_FOR_TARGET to GCJ_FOR_TARGET.
8981 Fixes PR libgcj/6068.
8982
89832002-03-30 Krister Walfridsson <cato@df.lth.se>
8984
8985 * configure.in (i*86-*-netbsdelf*): Don't disable libgcj.
8986
89872002-03-27 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
8988
8989 * configure.in (alpha*-dec-osf*): Enable libgcj.
8990
89912002-03-24 Nick Clifton <nickc@cambridge.redhat.com>
8992
8993 Fix for: PR bootstrap/3591, target/5676
8994 * configure.in (mcore-pe): Disable the configuration of
8995 libstdc++-v3 since exceptions are not supported.
8996
89972002-03-20 Anthony Green <green@redhat.com>
8998
8999 * configure.in: Enable libgcj for xscale-elf target.
9000
90012002-02-28 Alexandre Oliva <aoliva@redhat.com>
9002
9003 * configure.in (libstdcxx_flags): Don't add libstdc++-v3 flags for
9004 libjava.
9005 (CXX_FOR_TARGET): Explain why -shared-libgcc here.
9006
90072002-02-22 Alexandre Oliva <aoliva@redhat.com>
9008
9009 * configure.in (CXX_FOR_TARGET): Add -shared-libgcc for
9010 libstdc++-v3 and libjava.
9011
90122002-02-11 Adam Megacz <adam@xwt.org>
9013
9014 * gcc/Makefile.in: Removed libstdc++-v3 dependancy for libjava and
9015 boehm-gc
9016
90172002-02-09 Alexandre Oliva <aoliva@redhat.com>
9018
9019 * config.guess: Updated to 2002-01-30's version.
9020 * config.sub: Updated to 2002-02-01's version.
9021 Contribute sh64-elf.
9022 2000-12-01 Alexandre Oliva <aoliva@redhat.com>
9023 * configure.in: Added sh64-*-*.
9024
90252002-01-17 H.J. Lu <hjl@gnu.org>
9026
9027 * Makefile.in (all-fastjar): Also depend on all-libiberty.
9028 (all-target-fastjar): Also depend on all-target-libiberty.
9029
9030Wed Dec 5 07:33:45 2001 Douglas B. Rupp <rupp@gnat.com>
9031
9032 * configure, configure.in: Use temp file for long sed commands.
9033
90342001-11-14 Hans-Peter Nilsson <hp@bitrange.com>
9035
9036 * configure.in (noconfigdirs) [h8300*-*-*, h8500-*-*]: Disable
9037 libf2c.
9038
90392001-11-03 Hans-Peter Nilsson <hp@bitrange.com>
9040
9041 * configure.in (noconfigdirs) [mmix-*-*]: Disable libgcj.
9042
90432001-10-11 Hans-Peter Nilsson <hp@axis.com>
9044
9045 * configure.in (noconfigdirs) [cris-*-*]: Disable libgcj.
9046
90472001-10-02 Joseph S. Myers <jsm28@cam.ac.uk>
9048
9049 * configure: Handle temporary files securely using mkdir.
9050
90512001-09-26 Will Cohen <wcohen@redhat.com>
9052
9053 * configure.in (*-*-linux*): Disable configuration of target-newlib
9054 and target-libgloss.
9055
90562001-09-26 Alexandre Oliva <aoliva@redhat.com>
9057
9058 * Makefile.in (EXTRA_TARGET_FLAGS): Pass RANLIB_FOR_TARGET for
9059 RANLIB.
9060
90612001-08-11 Graham Stott <grahams@redhat.com>
9062
9063 * Makefile.in (check-c++): Add missing semicolon.
9064
90652001-07-25 Andrew Haley <aph@cambridge.redhat.com>
9066
9067 * configure.in (sh-*-linux*): New.
9068
90692001-07-12 Stephane Carrez <Stephane.Carrez@worldnet.fr>
9070
9071 * configure.in (noconfigdirs): Don't compile libiberty, libstdcxx
9072 and libgcj on m68hc11/m68hc12.
9073
90742001-06-27 H.J. Lu (hjl@gnu.org)
9075
9076 * Makefile (CFLAGS_FOR_BUILD): New.
9077 (EXTRA_GCC_FLAGS): Add CFLAGS_FOR_BUILD.
9078
90792001-06-01 Hans-Peter Nilsson <hp@axis.com>
9080
9081 * configure.in (libstdcxx_flags): Do not try to execute
9082 libstdc++-v3/testsuite_flags until it exists.
9083
90842001-05-18 Benjamin Kosnik <bkoz@redhat.com>
9085
9086 * configure.in (libstdcxx_flags): Remove reference to libstdc++.INC.
9087
90882001-05-09 Jeffrey Oldham <oldham@codesourcery.com>
9089
9090 * ltcf-cxx.sh: Add -nostdlib to IRIX 6 archive_cmds.
9091
9092Mon Apr 23 09:15:03 2001 Anthony Green <green@redhat.com>
9093
9094 * configure.in: Move *-chorusos target case to the proper switch.
9095 Disable libgcj.
9096
90972001-04-13 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
9098
9099 * Makefile.in (STAGE1_CFLAGS): Pass down.
9100
91012001-04-13 Alan Modra <amodra@one.net.au>
9102
9103 * config.guess: Add hppa64-linux support. Note for next import that
9104 this is already in the master file.
9105 * configure.in: Likewise. Accept `parisc' alias for `hppa'.
9106
91072001-03-22 Colin Howell <chowell@redhat.com>
9108
9109 * Makefile.in (DO_X): Do not backslash single-quotes in
9110 backquotes (two places).
9111
91122001-03-18 Laurynas Biveinis <lauras@softhome.net>
9113
9114 * Makefile.in (DO_X): Quote nested quotes.
9115
91162001-03-15 Laurynas Biveinis <lauras@softhome.net>
9117
9118 * Makefile.in (DO_X): Use double quotes for quoting
9119 "RANLIB=$${RANLIB}".
9120
91212001-03-09 Nicola Pero <n.pero@mi.flashnet.it>
9122
9123 * configure.in: Only use `lang_requires' for languages athat are
9124 actually enabled.
9125
91262001-03-07 Tom Tromey <tromey@redhat.com>
9127
9128 * configure.in: Allow config-lang.in to set `lang_requires' to list
9129 of other required languages.
9130
91312001-03-06 Laurynas Biveinis <lauras@softhome.net>
9132
9133 * Makefile.in: Remove RANLIB definition. Use RANLIB
9134 in RANLIB_FOR_TARGET, EXTRA_HOST_FLAGS, EXTRA_TARGET_FLAGS,
9135 EXTRA_GCC_FLAGS, $(DO_X) targets only when the RANLIB is set.
9136
91372001-02-28 Benjamin Kosnik <bkoz@redhat.com>
9138 Alexandre Oliva <aoliva@redhat.com>
9139
9140 * Makefile.in (check-c++): Use tabs, not spaces.
9141
91422001-02-19 Benjamin Kosnik <bkoz@redhat.com>
9143
9144 * Makefile.in (check-c++): New rule.
9145
9146 * configure.in (target_libs): Remove libg++.
9147 (noconfigdirs): Remove libg++.
9148 (noconfigdirs): Same.
9149 (noconfigdirs): Same.
9150 (noconfigdirs): Same.
9151
9152 * config-ml.in: Remove libg++ references.
9153
9154 * Makefile.in (TARGET_CONFIGDIRS): Remove libio, libstdc++, libg++.
9155 (ALL_TARGET_MODULES): Same.
9156 (configure-target-libg++): Remove.
9157 (all-target-libg++): Remove.
9158 (configure-target-libio): Remove.
9159 (all-target-libio): Remove.
9160 (check-target-libio): Remove.
9161 (.PHONY): Remove.
9162 (libg++.tar.bz2): Remove.
9163 (all-target-cygmon): Remove libio.
9164 (all-target-libstdc++): Remove.
9165 (configure-target-libstdc++): Remove.
9166 (TARGET_LIB_PATH): Remove libstdc++.
9167 (ALL_GCC_CXX): Remove libstdc++.
9168 (all-target-gperf): Correct.
9169
91702001-02-15 Anthony Green <green@redhat.com>
9171
9172 * configure: Introduce GCJ_FOR_TARGET.
9173 * configure.in: Ditto.
9174 * Makefile.in: Ditto.
9175
91762001-02-08 Chandrakala Chavva <cchavva@redhat.com>
9177
9178 * configure.in: for *-chorusos, don't config target-newlib and
9179 target-libgloss.
9180
91812001-02-04 Mark Mitchell <mark@codesourcery.com>
9182
9183 Remove V2 C++ library.
9184 * configure.in: Remove --enable-libstdcxx_v3 support.
9185
91862001-01-27 Richard Henderson <rth@redhat.com>
9187
9188 * configure.in (target_makefile_frag) [alpha*-*]: Use mt-alphaieee.
9189
91902001-01-26 Tom Tromey <tromey@redhat.com>
9191
9192 * configure.in: Allow libgcj to be built on Sparc Solaris.
9193
91942001-01-23 Bryce McKinlay <bryce@albatross.co.nz>
9195
9196 * configure.in: Enable libgcj on several additional platforms.
9197
91982001-01-22 Bryce McKinlay <bryce@albatross.co.nz>
9199
9200 * configure.in: Enable libgcj for linux targets.
9201
92022001-01-09 Mike Stump <mrs@wrs.com>
9203
9204 * Makefile.in (CONFIGURE_TARGET_MODULES): Pass back configuration
9205 failures of subdirectories.
9206
92072001-01-02 Laurynas Biveinis <lauras@softhome.net>
9208
9209 * configure: handle DOS-style absolute paths.
9210
92112001-01-02 Laurynas Biveinis <lauras@softhome.net>
9212
9213 * configure.in: remove supported directories from $noconfigdirs for DJGPP.
9214
92152000-12-18 Benjamin Kosnik <bkoz@redhat.com>
9216
9217 * Makefile.in (BASE_FLAGS_TO_PASS): Alphabetize.
9218 (libstdcxx_incdir): Pass down.
9219 * config.if: Remove expired bits for cxx_interface, add stub.
9220 (libstdcxx_incdir): Add variable for g++ include directory.
9221 * configure.in (gxx_include_dir): Use it.
9222
92232000-12-15 Andreas Jaeger <aj@suse.de>
9224
9225 * configure.in: Handle lang_dirs.
9226
92272000-12-13 Anthony Green <green@redhat.com>
9228
9229 * configure.in: Disable libgcj for any target not specifically
9230 listed. Disable libgcj for x86 and Alpha Linux until compatible
9231 with g++ abi.
9232
92332000-12-13 Mike Stump <mrs@wrs.com>
9234
9235 * Makefile.in (local-distclean): Also remove fastjar.
9236
92372000-12-10 Anthony Green <green@redhat.com>
9238
9239 * configure.in: Define libgcj. Disable libgcj target libraries for
9240 most targets.
9241
92422000-12-09 Alexandre Petit-Bianco <apbianco@cygnus.com>
9243
9244 * configure.in (target_libs): Revert 2000-12-08 patch.
9245 (noconfigdirs): Added target-libjava.
9246
92472000-12-09 Laurynas Biveinis <lauras@softhome.net>
9248
9249 * Makefile.in: handle DOS-style absolute paths.
9250
92512000-12-08 Alexandre Petit-Bianco <apbianco@cygnus.com>
9252
9253 * Makefile.in (TARGET_CONFIGDIRS): Wrong place. Removed note about
9254 libjava.
9255 * configure.in (target_libs): Removed `target-libjava'.
9256
92572000-12-08 Alexandre Petit-Bianco <apbianco@cygnus.com>
9258
9259 * Makefile.in (TARGET_CONFIGDIRS): Added note about libjava.
9260 (ALL_MODULES): Added fastjar.
9261 (NATIVE_CHECK_MODULES, INSTALL_MODULES, CLEAN_MODULES): Likewise.
9262 (all-target-libjava): all-fastjar replaces all-zip.
9263 (all-fastjar): Added.
9264 (configure-target-fastjar, all-target-fastjar): Likewise.
9265 * configure.in (host_tools): Added fastjar.
9266
92672000-12-07 Mike Stump <mrs@wrs.com>
9268
9269 * Makefile.in (local-distclean): Remove leftover built files.
9270
92712000-11-16 Fred Fish <fnf@be.com>
9272
9273 * configure.in (enable_libstdcxx_v3): Fix typo,
9274 libstd++ -> libstdc++.
9275
92762000-11-13 Joseph S. Myers <jsm28@cam.ac.uk>
9277
9278 * configure: Provide the original toplevel configure arguments
9279 (including $0) to subprocesses in the environment rather than
9280 through gcc/configargs.h.
9281
92822000-11-12 Mark Mitchell <mark@codesourcery.com>
9283
9284 * configure: Turn on libstdc++ V3 by default.
9285
92862000-10-16 Michael Meissner <meissner@redhat.com>
9287
9288 * configure (gcc/configargs.h): Only create if there is a build GCC
9289 directory created.
9290
92912000-10-05 Phil Edwards <pme@gcc.gnu.org>
9292
9293 * configure: Save configure arguments to gcc/configargs.h.
9294
92952000-10-04 Andris Pavenis <pavenis@latnet.lv>
9296
9297 * Makefile.in (bootstrap): avoid recursion if subdir missing
9298 (cross): ditto
9299 (do-proto-toplev): ditto
9300
9301Wed Sep 13 11:11:29 2000 Jeffrey A Law (law@cygnus.com)
9302
9303 * configure.in: Do not build byacc for hppa64. Provide paths to the
9304 X11 libraries for hppa64.
9305
93062000-09-02 Anthony Green <green@cygnus.com>
9307
9308 * Makefile.in (all-gcc): Depend on all-zlib.
9309 (CLEAN_MODULES): Add clean-zlib.
9310 (ALL_MODULES): Add all-zlib.
9311 * configure.in (host_libs): Add zlib.
9312
93132000-08-25 Alexandre Oliva <aoliva@redhat.com>
9314
9315 * configure.in (FLAGS_FOR_TARGET): Use $target_configdirs and
9316 $targargs to tell whether newlib is going to be built.
9317
9318 * configure.in [disable-libstdcxx-v3] (libstdcxx_flags): Search
9319 $$r/TARGET_SUBDIR/libio for _G_config.h.
9320
93212000-08-14 Zack Weinberg <zack@wolery.cumb.org>
9322
9323 * configure.in (libstdcxx_flags): Remove -isystem $$s/libio/stdio.
9324
9325 * configure: Make enable_threads and enable_shared defaults
9326 explicit. Substitute enable_threads into generated Makefiles.
9327 * configure.in: Accept *-*-linux* not just *-*-linux-gnu*.
9328 * libtool.m4: Accept *-*-linux* not just *-*-linux-gnu*.
9329
93302000-08-02 Manfred Hollstein <manfredh@redhat.com>
9331
9332 * configure.in: Re-enable all references to libg++ and librx.
9333
ffb97b2f 93342002-04-09 Loren James Rittle <rittle@labs.mot.com>
5481b376 9335
ffb97b2f
DD
9336 * configure.in: Add *-*-freebsd* configurations.
9337
bbf6e9e3
AC
93382002-04-07 Andrew Cagney <ac131313@redhat.com>
9339
9340 * Makefile.in (do-tar-bz2): Delete rule. Replace with ...
9341 (do-tar, do-bz2): New rules.
9342 (taz): Update. Replace do-tar-bz2 with do-tar and do-bz2.
9343 (gdb-tar): New rule.
9344 (gdb-taz): Rewrite. Use gdb-tar and do-bz2.
9345 (insight_dejagnu.tar): New rule.
9346 (insight.tar): New rule.
9347 (gdb+dejagnu.tar): New rule.
9348 (gdb.tar): New rule.
9349
8f1579c0
AC
93502002-04-07 Andrew Cagney <ac131313@redhat.com>
9351
9352 * MAINTAINERS: Update dejagnu/
9353
ba3c59ab
AO
93542002-03-16 Alexandre Oliva <aoliva@redhat.com>
9355
9356 * ltmain.sh (relink_command): Fix typo in previous change.
9357
6243d5dd
AO
93582002-03-15 Alexandre Oliva <aoliva@redhat.com>
9359
9360 * ltmain.sh (taglist): Initialized. Don't let `CC' tag out of it.
9361 (relink_command): Added --tag flags.
9362 (mode=install): If relinking fails; error out.
9363
80413487
RH
93642002-03-12 Richard Henderson <rth@redhat.com>
9365
9366 * Makefile.in (NOTPARALLEL): New. Use it instead of explicit
9367 .NOTPARALLEL tag.
9368 (do-check): Rename from check.
9369 (check): Allow parallel check.
9370
3daeddf6
RH
93712002-03-11 Richard Henderson <rth@redhat.com>
9372
9373 * Makefile.in (.NOTPARALLEL): Add fake tag.
9374
fad93c55
L
93752002-03-07 H.J. Lu (hjl@gnu.org)
9376
9377 * configure.in: Enable gprof for mips*-*-linux*.
9378
2e8357fc
AO
93792002-02-28 Alexandre Oliva <aoliva@redhat.com>
9380
9381 * configure.in (libstdcxx_flags): Don't add libstdc++-v3 flags for
9382 libjava.
9383 (CXX_FOR_TARGET): Add -shared-libgcc for libstdc++-v3 and libjava.
9384
bd48e1a9
AC
93852002-02-24 Andrew Cagney <ac131313@redhat.com>
9386
9387 * texinfo/texinfo.tex: Update to version 2002-02-14.08.
9388
39121370
DJ
93892002-02-23 Daniel Jacobowitz <drow@mvista.com>
9390
9391 * config.guess: Import from master sources, rev 1.232.
9392 * config.sub: Import from master sources, rev 1.246.
9393
081ff160
AO
93942002-02-23 Alexandre Oliva <aoliva@redhat.com>
9395
9396 * Makefile.in (MAKEINFO): Don't assume makeinfo will be built just
9397 because its Makefile is there; test for the executable instead.
9398
20a5393b
AO
93992002-02-09 Alexandre Oliva <aoliva@redhat.com>
9400
9401 Contribute sh64-elf.
9402 2000-12-01 Alexandre Oliva <aoliva@redhat.com>
9403 * configure.in: Added sh64-*-*.
9404
38135629
JJ
94052002-02-04 Jeff Johnston <jjohnstn@redhat.com>
9406
80413487
RH
9407 * COPYING.NEWLIB: Remove advertising clause from
9408 Berkeley and Red Hat licenses.
38135629 9409
48d19748
MD
94102002-02-01 Mo DeJong <supermo@bayarea.net>
9411
9412 * Makefile.in: Add all-tix to deps for all-snavigator
9413 so that tix is built when building snavigator.
9414
f6e1c110
BE
94152002-02-01 Ben Elliston <bje@redhat.com>
9416
9417 * config.guess: Import from master sources, rev 1.229.
9418 * config.sub: Import from master sources, rev 1.240.
9419
4867be41
DJ
94202002-01-27 Daniel Jacobowitz <drow@mvista.com>
9421
9422 From Steve Ellcey <sje@cup.hp.com>:
9423 * libtool.m4 (HPUX_IA64_MODE): Set to 32 or 64 based on ABI.
9424 (lt_cv_deplibs_check_method, lt_cv_file_magic_cmd,
9425 lt_cv_file_magic_test_file): Set to appropriate values for HP-UX
9426 IA64.
9427 * ltcf-c.sh (archive_cmds, hardcode_*): Ditto.
9428 * ltconfig (shlibpath_*, dynamic_linker, library_names_spec,
9429 soname_spec, sys_lib_search_path_spec): Ditto.
9430
e82380cc
JT
94312002-01-26 Jason Thorpe <thorpej@wasabisystems.com>
9432
9433 * configure.in (*-*-netbsd*): New. Skip target-newlib,
9434 target-libiberty, and target-libgloss. Skip Java-related
9435 libraries if not supported for NetBSD on target CPU.
9436
1319fb9c
NC
94372002-01-23 Nick Clifton <nickc@cambridge.redhat.com>
9438
9439 * configure.in: Import StrongARM and XScale target_configdirs from
9440 FSF GCC version.
9441
b020f6ac
L
94422002-01-16 H.J. Lu (hjl@gnu.org)
9443
9444 * config.guess: Import from master sources, rev 1.225.
9445 * config.sub: Import from master sources, rev 1.238.
9446
9447 * MAINTAINERS: Updated notes on config.guess and config.sub.
9448
a0c1c920
NC
94492002-01-11 Steve Ellcey <sje@cup.hp.com>
9450
9451 * configure.in (ia64*-*-hpux*): New target for IA64 HP-UX,
9452 ld and gdb are not supported.
9453
a9fa5e1f
JJ
94542002-01-07 Jeff Johnston <jjohnstn@redhat.com>
9455
9456 * Change reference to Cygnus Solutions to be Red Hat.
9457
94077108
JJ
94582002-01-07 Jeff Johnston <jjohnstn@redhat.com>
9459
9460 * COPYING.NEWLIB: Update generic copyright date.
9461
05ecd75c
MS
94622002-01-07 Mark Salter <msalter@redhat.com>
9463
9464 * configure.in: Remove target-bsp and target-cygmon from arm builds.
9465 Allow target-libgloss to be built for arm, strongarm, and xscale.
9466
a106bb62
BE
94672002-01-03 Ben Elliston <bje@redhat.com>
9468
9469 * MAINTAINERS: Update URL for config.* scripts.
9470
0e254642
AM
94712001-12-18 Alan Modra <amodra@bigpond.net.au>
9472
9473 * config.sub: Import latest version.
9474 * config.guess: Likewise.
9475
0a0d0041
TF
94762001-12-13 Thomas Fitzsimmons <fitzsim@redhat.com>
9477
9478 * configure.in (FLAGS_FOR_TARGET): Remove -nostdinc and -isystem
9479 options for i[3456]86-pc-linux* native builds.
9480
d932cae7
NC
94812001-12-05 Laurent Guerby <guerby@acm.org>
9482
9483 * MAINTAINERS: gcc adopts symlink-tree, refer more to
80413487 9484 libiberty.
d932cae7
NC
9485
9486 Import this patch from gcc:
5481b376 9487
d932cae7
NC
9488 2000-12-09 Laurynas Biveinis <lauras@softhome.net>
9489
9490 * symlink-tree: handle DOS-style absolute paths.
9491
49b7683b
DD
94922001-11-28 DJ Delorie <dj@redhat.com>
9493 Zack Weinberg <zack@codesourcery.com>
9494
9495 When build != host, create libiberty for the build machine.
9496
9497 * Makefile.in (TARGET_CONFIGARGS, BUILD_CONFIGARGS): Replace
9498 CONFIG_ARGUMENTS.
9499 (ALL_BUILD_MODULES_LIST, BUILD_CONFIGDIRS, BUILD_SUBDIR):
9500 New variables.
9501 (ALL_BUILD_MODULES, CONFIGURE_BUILD_MODULES): New variables
9502 and rules.
9503 (all.normal): Depend on ALL_BUILD_MODULES.
9504 (CONFIGURE_TARGET_MODULES rule): Use TARGET_CONFIGARGS.
9505 (all-build-libiberty): Depend on configure-build-libiberty.
9506
9507 * configure: Calculate and substitute proper value for
9508 ALL_BUILD_MODULES.
9509 * configure.in: Create the build subdirectory.
9510 Calculate and substitute TARGET_CONFIGARGS (formerly
9511 CONFIG_ARGUMENTS); also BUILD_SUBDIR and BUILD_CONFIGARGS (new).
9512
26ef82f4
GK
95132001-11-26 Geoffrey Keating <geoffk@redhat.com>
9514
9515 * config.sub: Update to version 1.232 on subversion.
9516
43e64072
NC
95172001-11-20 Nick Clifton <nickc@cambridge.redhat.com>
9518
9519 * Makefile.in (do-proto-toplev): Use msgfmt to generate .gmo
9520 files from .po files for a distribution.
9521
66f6c0d5
HPN
95222001-11-19 Hans-Peter Nilsson <hp@bitrange.com>
9523
9524 * COPYING.NEWLIB: Mention preserved notice in specific parts.
9525
4a02fdb2
JH
95262001-11-13 Jeff Holcomb <jeffh@redhat.com>
9527
9528 Merged from net gcc:
9529 2001-07-30 Jeff Sturm <jsturm@one-pont.com>
9530 * ltcf-c.sh: Use $objext, not $ac_objext.
9531 2001-07-27 Mark Kettenis <kettenis@gnu.org>
9532 * ltcf-cxx.sh: Add support for GNU.
9533 2001-07-22 Timothy Wall <twall@redhat.com>
9534 * ltcf-c.sh: Don't disable shared libraries for AIX5/IA64. Preserve
9535 default settings if using GNU tools with that configuration.
9536 * ltcf-cxx.sh: Ditto.
9537 * ltcf-gcj.sh: Ditto.
9538 2001-07-21 Michael Chastain <chastain@redhat.com>
9539 * ltconfig: Set max_cmd_len to a maximum of 512Kb, as it seems some
9540 HPUX 11.0 systems have trouble with 1MB. Mark as gcc-local.
9541 * ltmain.sh: Mark as gcc-local.
9542
227b9953
JH
95432001-11-13 Jeff Holcomb <jeffh@redhat.com>
9544
9545 * Makefile.in (all-bison): Revert 2001-10-24.
9546 Don't depend on texinfo.
9547
cbbab8fb
JJ
95482001-11-12 Hans-Peter Nilsson <hp@bitrange.com>
9549
80413487 9550 * COPYING.NEWLIB: Add BSD-style license/copyright blurb for my work.
cbbab8fb 9551
922b2485
DD
95522001-11-08 Phil Edwards <pedwards@disaster.jaj.com>
9553
9554 * configure.in (--enable-languages): Be more permissive about
9555 syntax. Check for empty lists better. Warn about $LANGUAGES.
9556
f08fa01d
HPN
95572001-11-06 Hans-Peter Nilsson <hp@bitrange.com>
9558
9559 * Makefile.in (MAKEINFO): Use "missing" for makeinfo older than 4.0.
9560
fee3da4e
JH
95612001-10-24 Jeff Holcomb <jeffh@redhat.com>
9562
9563 Makefile.in (all-bison): Don't depend on texinfo.
9564
73fb1ef9
AM
95652001-10-03 Alan Modra <amodra@bigpond.net.au>
9566
9567 * gettext.m4: Test po/POTFILES.in exists before trying to read.
9568
373688ac
AO
95692001-09-29 Alexandre Oliva <aoliva@redhat.com>
9570
9571 * Makefile.in (configure-target-gperf): Depend on $(ALL_GCC_CXX).
9572
9c07660b
HPN
95732001-09-28 Hans-Peter Nilsson <hp@axis.com>
9574
9575 * config.sub, config.guess: Import latest from subversions.
9576
3f152009
AO
95772001-09-21 Alexandre Oliva <aoliva@redhat.com>
9578
9579 * Makefile.in (AS_FOR_TARGET, LD_FOR_TARGET,
9580 DLLTOOL_FOR_TARGET, WINDRES_FOR_TARGET, AR_FOR_TARGET,
9581 RANLIB_FOR_TARGET, NM_FOR_TARGET): Don't use double quotes to
9582 avoid quotes nesting problems.
9583 (NATIVE_CHECK_MODULES): Ditto, just for consistency.
9584 (DO_X): Export only variables that are set.
9585
8f6a59e5
BE
95862001-09-19 Ben Elliston <bje@redhat.com>
9587
9588 * configure.in (sparc-sun-solaris2*): Don't use /usr/bin/which on
9589 Solaris when testing for the /usr/ucb/cc compiler; it has incorrect
9590 semantics. Use the shell built-in "type" command instead.
9591
a1ec19fa
TS
95922001-09-15 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
9593
9594 * config.sub: Reverted the earlier change, this version is not the
9595 master file.
9596
4008bd9b
TS
95972001-09-14 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
9598
9599 * config.sub: Change machine triplets from mipsel*-* to mips*el-*.
9600 Add support for mips64.
9601
dd1e52a4
JH
96022001-09-03 Jeff Holcomb <jeffh@redhat.com>
9603
9604 * configure.in: Enable libstdc++-v3 for h8300 targets.
9605
91549d1c
EC
96062001-08-30 Eric Christopher <echristo@redhat.com>
9607 Jason Eckhardt <jle@redhat.com>
9608
9609 * config.sub: Add support for mipsisa32.
9610
cf966cf9
EC
96112001-08-30 Eric Christopher <echristo@redhat.com>
9612
9613 * config.sub, config.guess: Import latest from subversions.
9614
82208dc5
AM
96152001-08-20 Alan Modra <amodra@bigpond.net.au>
9616
9617 * config.sub, config.guess: Import latest from subversions.
9618
4dca8403
DD
96192001-07-26 DJ Delorie <dj@redhat.com>
9620
9621 * MAINTAINERS: Clarify libiberty merge rules and procedures.
9622
1107dce2
AM
96232001-06-19 Alan Modra <amodra@bigpond.net.au>
9624
9625 * Makefile.in: Revert 2001-06-17.
9626 (VER): If AM_INIT_AUTOMAKE uses BFD_VERSION, get version from bfd/.
9627
e09a6604
L
96282001-06-17 H.J. Lu <hjl@gnu.org>
9629
9630 * Makefile.in (gas.tar.bz2): Pass TOOL=bfd PACKAGE=gas to make.
9631 (gas+binutils.tar.bz2): Likewise.
9632 (binutils.tar.bz2): Pass TOOL=bfd PACKAGE=binutils to make.
9633
31a8b634
AC
9634Fri Jun 8 11:14:02 2001 Andrew Cagney <cagney@b1.cygnus.com>
9635
9636 * Makefile.in (VER): When present, extract the version number from
5481b376 9637 the file version.in.
31a8b634 9638
dc70af01
AO
96392001-06-08 Alexandre Oliva <aoliva@redhat.com>, Jeff Sturm <jsturm@one-point.com>
9640
9641 * Makefile.in (AS_FOR_TARGET, LD_FOR_TARGET, NM_FOR_TARGET): If
9642 gcc/xgcc is built, use -print-prog-name to find out the program
9643 name to use.
9644
839bbd8c
AO
96452001-06-04 Mark Mitchell <mark@codesourcery.com>
9646
9647 * ltcf-c.sh (archive_cmds, archive_expsym_cmds) [solaris,
9648 with_gcc]: Use `gcc -shared' to build a shared library.
9649
566e9a30
AO
96502001-06-04 John David Anglin <dave@hiauly1.hia.nrc.ca>
9651
9652 * ltcf-c.sh (archive_cmd) [hpux, with_gcc]: Use gcc to link shared
9653 archives.
9654
e877bb69
AO
96552001-05-28 Simon Patarin <simon.patarin@inria.fr>
9656
9657 * ltcf-cxx.sh (osf3/osf4/osf5): Support creation of C++ shared
9658 libraries when using g++ with native linker.
9659
1605288b
AO
96602001-05-28 Alexandre Oliva <aoliva@redhat.com>
9661
9662 * ltconfig, ltmain.sh: Upgrade to libtool 1.4a 1.641.2.256.
9663
11a383ba
TR
96642001-05-24 Tom Rix <trix@redhat.com>
9665
9666 * configure.in : enable ld for aix
cf966cf9 9667
18611226
AO
96682001-05-22 Alexandre Oliva <aoliva@redhat.com>
9669
9670 * ltcf-cxx.sh (allow_undefined_flag, no_undefined_flag)
9671 [aix4*|aix5*]: Prepend blank.
9672
6be7c12c
AO
96732001-05-20 Alexandre Oliva <aoliva@redhat.com>
9674
9675 * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh, ltcf-cxx.sh,
9676 ltcf-gcj.sh: Upgraded to libtool 1.4a 1.641.2.254. Rebuilt a number
9677 of subdir/configure scripts to use the new libtool.m4.
9678
4ed00bba
L
96792001-05-14 H.J. Lu <hjl@gnu.org>
9680
9681 * config.if (libc_interface): Set to -libc6.2- for cross
9682 compiling to Linux/glibc 2.2.
9683
b1af961c
AO
96842001-05-03 Alexandre Oliva <aoliva@redhat.com>
9685
9686 * configure.in (noconfigdirs) [*-cygwin*, *-mingw*, *-beos]: Disable
9687 libgcj.
9688
5ec3e74e
AO
96892001-04-26 Alexandre Oliva <aoliva@redhat.com>
9690
9691 * configure.in (noconfigdirs): Don't reset it from scratch in the
9692 target case; only append to it.
9693
b3ed1d6b
AO
96942001-04-26 Alexandre Oliva <aoliva@redhat.com>
9695
9696 * configure.in (noconfigdirs) [hppa*-*-*, mips*-*-irix6*,
9697 sparc-*-solaris2.8]: Disable ${libgcj}.
9698
96111c10
AO
96992001-04-25 Alexandre Oliva <aoliva@redhat.com>
9700
9701 * configure.in (libgcj_saved): Copy from $libgcj.
9702 (libgcj): Zero out if --enable-libgcj; add to noconfigdirs is
9703 --disable-libgcj.
9704
b5bf43f2
AO
97052001-04-20 Alexandre Oliva <aoliva@redhat.com>
9706
9707 * ltconfig, ltmain.sh, ltcf-cxx.sh: Upgraded to libtool 1.4a
9708 1.641.2.228.
9709
8cc32590
AO
97102001-04-12 Alexandre Oliva <aoliva@redhat.com>
9711
9712 * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh, ltcf-cxx.sh,
9713 ltcf-gcj.sh: Upgraded to libtool 1.4a 1.641.2.226.
9714
dec0cb0c
AO
97152001-04-01 Alexandre Oliva <aoliva@redhat.com>
9716
9717 * Makefile.in (CXX_FOR_TARGET_FOR_RECURSIVE_MAKE, RECURSE_FLAGS):
9718 New macros.
9719 (bootstrap, cross): Use RECURSE_FLAGS.
9720 * configure.in: Subst CXX_FOR_TARGET_FOR_RECURSIVE_MAKE.
9721
6a9c3886
AO
97222001-03-27 Alexandre Oliva <aoliva@redhat.com>
9723
9724 * configure.in (CXX_FOR_TARGET): Use xgcc for libstdc++-v3.
9725
d4fc7db8
NC
97262001-03-23 Nick Clifton <nickc@redhat.com>
9727
9728 * README-maintainer-mode: Add note about inability to use "make
9729 distclean" in maintainer mode.
9730
7389ff65
AO
97312001-03-22 Alexandre Oliva <aoliva@redhat.com>
9732
9733 Re-installed:
9734 2001-01-02 Laurynas Biveinis <lauras@softhome.net>
9735 * ltcf-c.sh: Clear ac_cv_prog_cc_pic for DJGPP. Do not add
9736 '-DPIC' to ac_cv_prog_cc_pic for DJGPP.
9737 * ltcf-cxx.sh: Likewise.
9738 * ltcf-gcj.sh: Likewise.
9739
b3e0dc8e
PB
97402001-03-22 Philip Blundell <philb@gnu.org>
9741
9742 * config.sub, config.guess: Import latest from subversions.
9743
469b781c
AO
97442001-03-22 Alexandre Oliva <aoliva@redhat.com>
9745
9746 * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh, ltcf-cxx.sh,
9747 ltcf-gcj.sh: Upgraded to libtool 1.4a 1.641.2.198.
9748
b0dad762
MC
97492001-03-20 Michael Chastain <chastain@redhat.com>
9750
9751 * Makefile.in: all-m4 depends on all-texinfo.
9752
c559bb17
AO
97532001-03-08 Alexandre Oliva <aoliva@redhat.com>
9754
9755 * Makefile.in (ALL_GCC, ALL_GCC_C, ALL_GCC_CXX): Set before use.
9756
fef4ae2e
JJ
97572001-02-22 Jeff Johnston <jjohnstn@redhat.com>
9758
9759 * COPYING.NEWLIB: Remove DJ Delorie's address because it is no
9760 longer valid.
9761
8d6dd99d
NC
97622001-02-16 Nick Clifton <nickc@redhat.com>
9763
9764 * configure.in (noconfigdirs): Allow configuration of texinfo
9765 for Cygwin hosts.
9766
a85d7ed0
NC
97672001-02-09 Martin Schwidefsky <schwidefsky@de.ibm.com>
9768
9769 * config.guess: Add linux target for S/390.
9770 * config.sub: Likewise.
9771 * configure.in: Likewise.
9772
51221c5e
DD
97732001-02-06 Ben Elliston <bje@redhat.com>
9774
9775 * configure: Output host type to stdout, not stderr.
9776
9dec4c71
MS
97772001-02-04 Michael Sokolov <msokolov@ivan.Harhan.ORG>
9778
9779 * config.guess: Import from subversions.gnu.org (revision 1.181).
9780 * config.sub: Import from subversions.gnu.org (revision 1.199).
9781
9add9c04
AM
97822001-01-30 Alan Modra <alan@linuxcare.com.au>
9783
9784 * config.guess: Handle hppa64-linux systems.
9785
8679174d
MS
97862001-01-27 Michael Sokolov <msokolov@ivan.Harhan.ORG>
9787
9788 * ltcf-cxx.sh (ac_cv_prog_cc_pic_works, ac_cv_prog_cc_static_works):
9789 Don't unset, it's non-portable and no longer necessary, set to empty
9790 instead.
9791
02d01ed4
MS
97922001-01-27 Michael Sokolov <msokolov@ivan.Harhan.ORG>, Alexandre Oliva <oliva@lsd.ic.unicamp.br>
9793
9794 * ltconfig: Shell portability fix for the tagname validity check.
9795
4cc5853d
MS
97962001-01-27 Michael Sokolov <msokolov@ivan.Harhan.ORG>
9797
9798 * ltcf-cxx.sh: Use parentheses around eval $ac_compile.
9799
7487e485
AO
98002001-01-27 Alexandre Oliva <aoliva@redhat.com>
9801
9802 * ltcf-c.sh (ld_shlibs) [aix5*]: Disable on unknown CPU types.
9803 * ltcf-cxx.sh, ltcf-gcj.sh: Likewise.
9804
f332af52
AO
98052001-01-24 Alexandre Oliva <aoliva@redhat.com>
9806
9807 * ltmain.sh (TAG disable-shared, TAG disable-static): Make sure we
9808 keep at least one of build_libtool_libs or build_old_libs set to
9809 yes.
9810
ef099754
AO
98112001-01-24 Alexandre Oliva <aoliva@redhat.com>
9812
9813 * ltcf-gcj.sh (lt_simple_link_test_code): Remove stray `(0)'.
9814 * libtool.m4 (_AC_LIBTOOL_GCJ): Pass $CPPFLAGS on.
9815
8341f2fc 98162000-11-07 Philip Blundell <pb@futuretv.com>
ebf0fa2e 9817
8341f2fc
AJ
9818 * Makefile.in (ETC_SUPPORT): Also add configbuild.* and configdev.*.
9819
98202000-11-03 Philip Blundell <pb@futuretv.com>
9821
9822 * Makefile.in (ETC_SUPPORT): Add configure.texi and associated info
9823 files.
ebf0fa2e 9824
c320a39f
JJ
98252001-01-15 Jeff Johnston <jjohnstn@redhat.com>
9826
9827 * COPYING.NEWLIB: Put into source repository.
9828
8817b92e
BE
98292001-01-15 Ben Elliston <bje@redhat.com>
9830
9831 * configure.in (host_tools): Add sid.
9832 Always configure cgen.
9833 * Makefile.in (all-sid): New target.
9834 (check-sid, clean-sid, install-sid): Likewise.
9835
35590697
AJ
98362001-01-07 Andreas Jaeger <aj@suse.de>
9837
80413487 9838 * config.sub, config.guess: Update from subversions.
35590697 9839
6ee6cea6
AO
98402000-12-12 Alexandre Oliva <aoliva@redhat.com>
9841
9842 * configure.in: Disable language-specific target libraries for
9843 languages that aren't enabled.
9844
077b8428
NC
98452000-11-24 Nick Clifton <nickc@redhat.com>
9846
9847 * configure.in (xscale-elf): Add target.
9848 (xscale-coff): Add target.
9849 (c4x, c5x, tic54x): Move after ARM targets.
9850
9e28a1ed
AO
98512000-11-23 Alexandre Oliva <aoliva@redhat.com>
9852
9853 * ltcf-gcj.sh: Added file, required by 2000-11-18 merge.
9854
be98a80a
ILT
98552000-11-20 Ian Lance Taylor <ian@zembu.com>
9856
9857 * ltcf-cxx.sh: Added file, required by 2000-11-18 merge.
9858
5cec67bf
AO
98592000-11-18 Alexandre Oliva <aoliva@redhat.com>
9860
9861 * Makefile.in: Merge with GCC and libgcj.
9862 (ALL_GCC_C, ALL_GCC_CXX): New macros. Use them as dependencies of
9863 configure-target-<library> when their configure scripts need the C
9864 or C++ library to have already been built to work properly.
9865 (do_proto_toplev): Set them to an empty string.
9866
d932cae7 98672000-11-18 Alexandre Oliva <aoliva@redhat.com>
0da52010
AO
9868
9869 * Makefile.in (HOST_LIB_PATH, TARGET_LIB_PATH): New macros.
9870 (REALLY_SET_LIB_PATH): Use them.
9871
d932cae7 98722000-11-06 Christopher Faylor <cgf@cygnus.com>
7c6a44d3
CF
9873
9874 * config.sub: Add support for Sun Chorus
9875
8602ff0c
NC
98762000-11-02 Per Lundberg <plundis@chaosdev.org>
9877
9878 * config.sub: Add support for the *-storm-chaos OS.
9879
f9e0997d
NC
98802000-10-30 Stephane Carrez <stcarrez@worldnet.fr>
9881
80413487
RH
9882 * configure.in (noconfigdirs): Don't compile some
9883 of the libraries for 68HC11 & 68hc12 targets.
f9e0997d 9884
d64552c5
AO
98852000-09-30 Alexandre Oliva <aoliva@redhat.com>
9886
9887 * ltconfig, ltmain.sh, libtool.m4: Updated from libtool
9888 multi-language branch, to work around Solaris' /bin/sh bug. Rebuilt
9889 all affected `configure' scripts.
9890
97f60b31
AO
98912000-09-25 Alexandre Oliva <aoliva@redhat.com>
9892
9893 * Makefile.in (DEVO_SUPPORT): Added gettext.m4, libtool.m4 and
9894 ltcf-c.sh.
9895
6e8dd58f
PB
98962000-09-12 Philip Blundell <philb@gnu.org>
9897
9898 * config.sub, config.guess: Update from subversions.
9899
103a2e99
AO
99002000-09-06 Alexandre Oliva <aoliva@redhat.com>
9901
51601921
AO
9902 * Makefile.in (all-zlib): Added dummy target.
9903
103a2e99
AO
9904 * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh: Updated from libtool
9905 multi-language branch.
9906
2809b4b9
AO
99072000-09-05 Alexandre Oliva <aoliva@redhat.com>
9908
9909 * Makefile.in (all-bootstrap): Added all-texinfo and all-zlib.
9910 (bootstrap*): Depend on all-bootstrap.
9911
7450026c
AO
99122000-09-02 Alexandre Oliva <aoliva@redhat.com>, DJ Delorie <dj@redhat.com>
9913
9914 * configure.in (FLAGS_FOR_TARGET): Use -nostdinc even for Canadian
9915 crosses, but add gcc/include to the header search path for them.
9916
6cf86f7f
AO
99172000-08-31 Alexandre Oliva <aoliva@redhat.com>
9918
9919 * ltconfig, ltmain.sh: Updated from libtool multi-language branch.
9920 * libtool.m4, ltcf-c.sh: Copied from libtool multi-language branch.
9921 * gettext.m4: New file, extracted from aclocal.m4.
9922
ce2ea6e3
AO
99232000-08-22 Alexandre Oliva <aoliva@redhat.com>
9924
9925 * config-ml.in (CC, CXX): Avoid trailing whitespace.
9926 (LD_LIBRARY_PATH, SHLIB_PATH): Adjust for multilibs and export to
9927 sub-configures.
9928
9765193e
DE
99292000-08-20 Doug Evans <dje@casey.transmeta.com>
9930
9931 * Makefile.in (ALL_MODULES): Add all-cgen.
9932 (CROSS_CHECK_MODULES,INSTALL_MODULES,CLEAN_MODULES): Similarily.
9933 (all-cgen): New target.
9934 (all-opcodes,all-sim): Depend on all-cgen.
9935 * configure.in (host_tools): Add cgen.
9936 Only configure cgen if --enable-cgen-maint.
9937
d7b32520
AO
99382000-08-17 Alexandre Oliva <aoliva@redhat.com>
9939
9940 * config-ml.in (CC, CXX): Don't introduce a leading space.
9941
e52ef561
AO
99422000-08-16 Alexandre Oliva <aoliva@redhat.com>
9943
9944 * configure.in (libstdcxx_flags): Use
9945 libstdc++-v3/src/libstdc++.INC.
9946
88f9c2a0
AO
99472000-08-15 Alexandre Oliva <aoliva@redhat.com>
9948
9949 * configure.in (libstdcxx_flags): Use libstdc++-v3/src/INCLUDES.
9950
98fbe43f
JM
99512000-08-11 Jason Merrill <jason@redhat.com>
9952
9953 * configure.in (CC_FOR_TARGET, CHILL_FOR_TARGET,
9954 CXX_FOR_TARGET): Add -B$$r/gcc/ here.
9955 (FLAGS_FOR_TARGET): Not here.
9956 (CHILL_FOR_TARGET, CXX_FOR_TARGET): Don't check the list of languages.
9957
279ddab4
DD
99582000-08-07 DJ Delorie <dj@redhat.com>
9959
9960 * configure.in (FLAGS_FOR_TARGET): invert test for xgcc, should mean
9961 "if we're also building gcc, and it's a gcc that will run on the
9962 build machine, we want to use its includes instead of the system's
9963 default includes".
9964
60523a83
AO
99652000-08-03 Alexandre Oliva <aoliva@redhat.com>
9966
24ffec7a
AO
9967 * configure.in (libstdcxx_flags): Don't use `"'.
9968
60523a83
AO
9969 * config-ml.in: Adjust multilib search paths to the
9970 appropriate multilib tree.
9971
daf644b5
AO
99722000-08-02 Alexandre Oliva <aoliva@redhat.com>
9973
9974 * configure.in (CHILL_FOR_TARGET, CXX_FOR_TARGET): Convert blanks to
9975 commas in $LANGUAGES.
9976
63266560
DD
99772000-08-01 Alexandre Oliva <aoliva@redhat.com>
9978
9979 * configure.in (qCXX_FOR_TARGET): Use echo instead of expr.
9980
99812000-07-31 Alexandre Oliva <aoliva@redhat.com>
9982
9983 * configure.in (qCXX_FOR_TARGET): Quote `&' characters in
9984 CXX_FOR_TARGET for sed.
9985
99862000-07-30 Alexandre Oliva <aoliva@redhat.com>
9987
9988 * configure.in (CC_FOR_TARGET, CHILL_FOR_TARGET, CXX_FOR_TARGET):
9989 Do not override if already set in the environment or in configure.
9990 Don't duplicate $(FLAGS_FOR_TARGET) if it already appears in them.
9991 (FLAGS_FOR_TARGET): Don't use host directories on Canadian crosses.
9992
9e449d3e
AO
99932000-07-27 Alexandre Oliva <aoliva@redhat.com>
9994
9995 * Makefile.in (FLAGS_FOR_TARGET): New macro.
9996 (GCC_FOR_TARGET): Use it.
9997 (CC_FOR_TARGET, CXX_FOR_TARGET, CHILL_FOR_TARGET): Now defined...
9998 * configure.in: ... here.
9999 (FLAGS_FOR_TARGET): Define. Add ld build dir to -L path.
10000 (libstdcxx_flags): Define and append to CXX_FOR_TARGET.
10001
8bbd92e0
AO
100022000-07-24 Alexandre Oliva <aoliva@redhat.com>
10003
fd1f87b2
AO
10004 * Makefile.in (configure-target-libf2c): Depend on $(ALL_GCC).
10005 (configure-target-libchill, configure-target-libobjc): Likewise.
10006
8bbd92e0
AO
10007 * configure.in: Use the same cache file for all target libs.
10008 * config-ml.in: But different cache files per multilib variant.
10009
25c6c112
JL
100102000-07-23 Michael Sokolov <msokolov@ivan.Harhan.ORG>
10011
10012 * configure (topsrcdir): Don't use dirname.
10013
ba73c63f
JM
100142000-07-20 Jason Merrill <jason@redhat.com>
10015
10016 * configure.in: Remove all references to libg++ and librx.
10017
10018 * configure, configure.in, Makefile.in: Unify gcc and binutils.
10019
1af08294
HPN
100202000-07-20 Hans-Peter Nilsson <hp@axis.com>
10021
10022 * config.sub: Update to subversions version 2000-07-06.
10023
ba73c63f
JM
100242000-07-12 Andrew Haley <aph@cygnus.com>
10025
10026 * configure.in (host_makefile_frag): Use mh-ia64pic on IA-64 hosts.
10027 (target_makefile_frag): Use mt-ia64pic on IA-64 targets.
10028
100292000-07-07 Phil Edwards <pme@sourceware.cygnus.com>
cffaa281
JL
10030
10031 * symlink-tree: Check number of arguments.
10032
d932cae7 100332000-06-06 Andrew Cagney <cagney@b1.cygnus.com>
ec9914b0
AC
10034
10035 * texinfo/texinfo.tex: Update to version 2000-05-28.15.
10036
ba73c63f
JM
100372000-07-05 Jim Wilson <wilson@cygnus.com>
10038
10039 * Makefile.in (CXX_FOR_TARGET): Add libstdc++ to the library
10040 search path for a g++ extracted from the build tree. This
10041 will allow link tests run by configure scripts in
10042 subdirectories to succeed.
10043
92ee2f86
UC
100442000-07-01 Koundinya K <kk@ddeorg.soft.net>
10045
80413487 10046 * ltconfig: Add support for mips-dde-sysv4.2MP
35590697 10047
23f2f29f
CV
100482000-06-28 Corinna Vinschen <vinschen@cygnus.com>
10049
10050 * ltconfig: Check for host_os beeing one of `cygwin', `mingw' or
10051 `os2'. Force ac_cv_exeext to be ".exe" in that case.
10052
f04f5a67
TW
100532000-06-19 Timothy Wall <twall@cygnus.com>
10054
10055 * configure.in (noconfigdirs): Set noconfigdirs for tic54x target.
10056 * config.sub: Add tic54x target.
10057
11da68be
NC
100582000-06-07 Phillip Thomas <pthomas@suse.de>
10059
10060 * README-maintainer-mode: New file: Contains notes on using
10061 --enable-maintainer-mode with binutils.
10062
d932cae7 100632000-05-29 Andrew Cagney <cagney@b1.cygnus.com>
449f3b6c
AC
10064
10065 * texinfo/texinfo.tex: Update. Version from makeinfo 4.0.
10066
d932cae7 100672000-05-30 Andrew Cagney <cagney@b1.cygnus.com>
ac73857d
AC
10068
10069 * config.sub: Import CVS version 1.167 Tue May 30 09:00:07 2000.
10070 * config.guess: Import CVS version 1.148 Tue May 30 09:00:06 2000
10071
9442cea3
L
1007220000-05-21 H.J. Lu (hjl@gnu.org)
10073
80413487
RH
10074 * Makefile.in (CC_FOR_TARGET): Make sure as/ld in the gcc
10075 directory are used if they exist. Make sure
10076 $(build_tooldir)/include is searched for header files,
10077 $(build_tooldir)/lib/ for library files.
9442cea3 10078 (GCC_FOR_TARGET): Likewise.
80413487 10079 (CXX_FOR_TARGET): Likewise.
9442cea3 10080
d932cae7 100812000-05-18 Jeffrey A Law (law@cygnus.com)
09e90eb4
JL
10082
10083 * configure.in (hppa*64*-*-*): Do build ld for this configuration.
10084
d932cae7 100852000-05-17 Alexandre Oliva <aoliva@cygnus.com>
f4bd37da
AO
10086
10087 * Makefile.in (configure-target-libiberty): Depend on
10088 configure-target-newlib.
10089
ba73c63f
JM
100902000-05-16 Alexandre Oliva <aoliva@cygnus.com>
10091
10092 * configure.in, Makefile.in: Merge all libffi-related
10093 configury stuff from the libgcj tree.
10094
d932cae7 100952000-05-16 Andrew Cagney <cagney@b1.cygnus.com>
82b43a09
AC
10096
10097 Thu Apr 27 11:01:48 2000 Andrew Cagney <cagney@b1.cygnus.com>:
10098 * Makefile.in (do-tar-bz2, do-md5sum): Skip CVS directories.
10099
d932cae7 101002000-05-16 Andrew Cagney <cagney@b1.cygnus.com>
b5a23627
AC
10101
10102 Wed Apr 26 17:03:53 2000 Andrew Cagney <cagney@b1.cygnus.com>:
10103 * Makefile.in (do-djunpack): New target. Update djunpack.bat with
35590697 10104 current version information. Add to proto-toplev directory.
b5a23627
AC
10105 (gdb-taz): Build do-djunpack.
10106
ba73c63f
JM
101072000-05-15 David Edelsohn <edelsohn@gnu.org>
10108
10109 * configure.in: Special case powerpc*-*-aix* target_makefile_frag.
10110
7c86ed39
L
101112000-05-13 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
10112
10113 * ltmain.sh: Preserve in relink_command any environment
10114 variables that may affect the linker behavior.
10115
d932cae7 101162000-05-12 Jeffrey A Law (law@cygnus.com)
640c6684
JL
10117
10118 * config.sub (basic_machine): Recognize hppa64 as a valid cpu type.
10119
d932cae7 101202000-05-10 Jim Wilson <wilson@cygnus.com>
2315914d
JW
10121
10122 * configure.in (ia64*-*-elf*): Add gdb and friends to noconfigdirs.
10123
ed0a91a5
EZ
101242000-05-08 Eli Zaretskii <eliz@is.elta.co.il>
10125
10126 * djunpack.bat: Change the Sed script to replace @V@ in fnchange.lst
80413487 10127 with the version name.
ed0a91a5 10128
ba73c63f 101292000-05-01 Benjamin Kosnik <bkoz@cygnus.com>
6cafa39f 10130
ba73c63f 10131 * config.if: Tweak.
6cafa39f 10132
ba73c63f 101332000-04-23 Eli Zaretskii <eliz@is.elta.co.il>
66156876 10134
ba73c63f 10135 * djunpack.bat: New file.
66156876 10136
d932cae7 101372000-04-19 Andrew Cagney <cagney@b1.cygnus.com>
fd751128
AC
10138
10139 * Makefile.in (taz, gdb-taz, gas.tar.bz2, binutils.tar.bz2,
35590697
AJ
10140 gas+binutils.tar.bz2, libg++.tar.bz2, gnats.tar.bz2, gdb.tar.bz2,
10141 dejagnu.tar.bz2, gdb+dejagnu.tar.bz2, insight.tar.bz2,
10142 insight+dejagnu.tar.bz2, newlib.tar.bz2): Pass MD5PROG to sub-make.
fd751128 10143
ba73c63f
JM
101442000-04-16 Dave Pitts <dpitts@cozx.com>
10145
80413487
RH
10146 * config.sub (case $basic_machine): Change default for "ibm-*"
10147 to "openedition".
ba73c63f 10148
d932cae7 101492000-04-12 Andrew Cagney <cagney@b1.cygnus.com>
b35ece4e
AC
10150
10151 * Makefile.in (gdb-taz): New target. GDB specific archive.
10152 (do-md5sum): New target.
10153 (MD5PROG): Define.
10154 (PACKAGE): Default to TOOL.
10155 (VER): Default to a shell script.
10156 (taz): Rewrite target. Move real work to do-proto-toplev. Include
35590697 10157 md5 checksum generation.
b35ece4e
AC
10158 (do-proto-toplev): New target. Create $(PACKAGE)-$(VER) link.
10159 (do-tar-bz2): Delete creation of $(PACKAGE)-$(VER) link.
10160 (gdb.tar.bz2, dejagnu.tar.bz2, gdb+dejagnu.tar.bz2,
35590697 10161 insight.tar.bz2): Use gdb-taz to create archive.
b35ece4e 10162
d932cae7 101632000-04-07 Andrew Cagney <cagney@b1.cygnus.com>
a2d91340
AC
10164
10165 * configure (warn_cflags): Delete.
10166
ba73c63f 101672000-04-05 Benjamin Kosnik <bkoz@cygnus.com>
80413487 10168 Martin v. Loewis <martin@loewis.home.cs.tu-berlin.de>
3ce7077a 10169
80413487
RH
10170 * configure.in (enable_libstdcxx_v3): Add.
10171 (target_libs): Add bits here to switch between libstdc++-v2 and
10172 libstdc++-v3.
10173 * config.if: And this file too.
10174 * Makefile.in: Add libstdc++-v3 targets.
35590697 10175
ba73c63f
JM
101762000-04-05 Michael Meissner <meissner@redhat.com>
10177
10178 * config.sub (d30v): Add d30v as a basic machine type.
3ce7077a 10179
d332c5ac
JM
101802000-03-29 Jason Merrill <jason@casey.cygnus.com>
10181
10182 * configure.in: -linux-gnu*, not -linux-gnu.
10183
d932cae7 101842000-03-03 Andrew Cagney <cagney@b1.cygnus.com>
6dcbc97b
AC
10185
10186 * Makefile.in (taz): Set PACKAGE to TOOL when not defined.
10187 (do-tar-bz2): Replace TOOL with PACKAGE.
10188 (gdb.tar.bz2): Remove GDBTK from GDB package.
10189 (gdb+dejagnu.tar.bz2, insight.tar.bz2, insight+dejagnu.tar.bz2,
35590697 10190 dejagnu.tar.bz2): New packages.
6dcbc97b 10191
96ce09a7
ILT
101922000-02-27 Andreas Jaeger <aj@suse.de>
10193
10194 * configure.in: Add entry for mips*-*-linux*, move catch all
10195 *-*-*linux* entry below this one.
10196
2031769e
ILT
101972000-02-27 Ian Lance Taylor <ian@zembu.com>
10198
10199 * ltconfig, ltmain.sh: Update to libtool 1.3.4.
10200
4bab746c
NC
102012000-02-24 Nick Clifton <nickc@cygnus.com>
10202
10203 * config.sub: Support an OS of "wince".
10204
d932cae7 102052000-02-24 Andrew Cagney <cagney@b1.cygnus.com>
ada59422
AC
10206
10207 * config.guess, config.sub: Updated to match config's 2000-02-15
35590697 10208 version.
ada59422 10209
5b93d8bb
AM
102102000-02-23 Linas Vepstas <linas@linas.org>
10211
10212 * config.sub: Add support for Linux/IBM 370.
10213 * configure.in: Likewise.
10214
2fb651f6
NC
102152000-02-22 Nick Clifton <nickc@cygnus.com>
10216
10217 * configure.in: Add mips-pe, sh-pe and arm-wince-pe targets.
10218
b8441c25
CF
102192000-02-20 Christopher Faylor <cgf@cygnus.com>
10220
10221 * config.guess: Guess "cygwin" rather than "cygwin32".
10222
d332c5ac
JM
102232000-02-16 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10224
10225 * configure (gcc_version): When setting, narrow search to
10226 lines containing `version_string'.
10227
ba73c63f
JM
102282000-02-15 Denis Chertykov <denisc@overta.ru>
10229
10230 * config.sub: Add support for avr target.
10231
d932cae7 102322000-02-01 Hans-Peter Nilsson <hp@bitrange.com>
ba73c63f
JM
10233
10234 * config.sub: Add mmix-knuth-mmixware.
10235
102362000-01-27 Christopher Faylor <cgf@redhat.com>
10237
10238 * Makefile.in (CC_FOR_TARGET): Add new winsup directory
10239 structure stuff to -L library search.
10240 (CXX_FOR_TARGET): Ditto.
10241 (CROSS_CHECK_MODULES): Fix spelling mistake.
10242
102432000-01-24 Mark Mitchell <mark@codesourcery.com>
10244
10245 * Makefile.in (CXX_FOR_TARGET): Use g++, not xgcc, to invoke
10246 the C++ compiler.
10247
102482000-01-12 Richard Henderson <rth@cygnus.com>
10249
10250 * configure.in: Don't build some bits for beos.
10251
102522000-01-12 Joel Sherrill (joel@OARcorp.com)
10253
10254 * Makefile.in (CC_FOR_TARGET): Use newlib libraries as well
10255 as include files.
10256
91b2c84d
GK
102572000-01-06 Geoff Keating <geoffk@cygnus.com>
10258
10259 * configure.in: Use mt-aix43 to handle *_TARGET defs,
10260 not mh-aix43.
10261
ba73c63f
JM
102621999-12-14 Richard Henderson <rth@cygnus.com>
10263
10264 * config.guess (alpha-osf, alpha-linux): Detect ev67.
10265 * config.sub: Accept alphaev[78], alphaev8.
10266
102671999-12-03 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
10268
10269 * config.guess, config.sub: Update from autoconf.
10270
10271Tue Nov 23 00:57:41 1999 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
10272
10273 * config-ml.in (sparc*-*-*): Disable sparcv9 support if the
10274 necessary libraries are missing.
10275
102761999-10-25 Andreas Schwab <schwab@suse.de>
10277
10278 * configure: Fix quoting inside arguments of eval.
10279
102801999-10-21 Nick Clifton <nickc@cygnus.com>
10281
10282 * config-ml.in: Allow suppression of some ARM multilibs.
10283
10284Tue Sep 7 23:33:57 1999 Linas Vepstas <linas@linas.org>
10285
10286 * config.guess: Add OS/390 match pattern.
10287 * config.sub: Add mvs, openedition targets.
10288 * configure.in (i370-ibm-opened*): New.
10289
ef14edc4
ILT
102901999-09-04 Steve Chamberlain <sac@pobox.com>
10291
10292 * config.sub: Add support for configuring for pj.
10293
afb478e8
NC
102941999-08-31 Nick Clifton <nickc@cygnus.com>
10295
fd6848f6 10296 * config.sub (maybe_os): Add support for configuring for fr30.
afb478e8 10297
ba73c63f 102981999-08-25 Nick Clifton <nickc@cygnus.com>
ceaa7778
NC
10299
10300 * configure.in: Do not configure or build ld for AIX
10301 platforms. ld is known to be broken on these platforms.
10302
ba73c63f
JM
10303Wed Aug 25 01:12:25 1999 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
10304
10305 * config-ml.in: Pass compiler flag corresponding to multidirs to
10306 subdir configures.
10307
c363de44
ILT
103081999-08-09 Ian Lance Taylor <ian@zembu.com>
10309
10310 * Makefile.in (LDFLAGS): Define.
10311
dc8bc5a6
ILT
103121999-08-08 Mumit Khan <khan@xraylith.wisc.edu>
10313
10314 * configure.in (i[3456]-*-mingw32*): Don't put gprof in
10315 noconfigdirs.
10316 (*-*-cygwin*): Likewise.
10317
6ca3858e
ILT
103181999-08-08 Ian Lance Taylor <ian@zembu.com>
10319
71141bb6
ILT
10320 * mkdep: New file.
10321 * Makefile.in (GAS_SUPPORT_DIRS): Add mkdep.
10322 (BINUTILS_SUPPORT_DIRS): Add mkdep.
10323
6ca3858e
ILT
10324 From Eli Zaretskii <eliz@is.elta.co.il>:
10325 * configure (tmpfile): Change cONf$$ to cNf$$ to avoid an overly
10326 long file name when using DJGPP on MS-DOS.
10327
ba73c63f
JM
10328Wed Aug 4 02:07:14 1999 Jeffrey A Law (law@cygnus.com)
10329
10330 * config.sub (vxworks case): Use os=-vxworks, not os=vxworks.
10331
2735a327
AM
103321999-07-30 Alan Modra <alan@spri.levels.unisa.edu.au>
10333
10334 * Makefile.in (check-target-libio): Remove all-target-libstdc++
10335 dependency as this causes "make check" to globally "make all"
10336
ba73c63f
JM
10337Tue Jun 22 23:45:18 1999 Tom Tromey <tromey@cygnus.com>
10338
10339 * configure.in (target_libs): Added target-zlib.
10340 * Makefile.in (ALL_TARGET_MODULES): Added zlib.
10341 (CONFIGURE_TARGET_MODULES): Likewise.
10342 (CHECK_TARGET_MODULES): Likewise.
10343 (INSTALL_TARGET_MODULES): Likewise.
10344 (CLEAN_TARGET_MODULES): Likewise.
10345 (configure-target-zlib): New target.
10346 (all-target-zlib): Likewise.
10347 (all-target-libjava): Depend on all-target-zlib.
10348 (configure-target-libjava): Depend on configure-target-zlib.
10349
10350 * Makefile.in (configure-target-libjava): Depend on
10351 configure-target-newlib.
10352 (configure-target-boehm-gc): New target.
10353 (configure-target-qthreads): New target.
10354
80413487
RH
10355 * configure.in (target_libs): Added target-qthreads.
10356 * Makefile.in (ALL_TARGET_MODULES): Added qthreads.
10357 (CONFIGURE_TARGET_MODULES): Likewise.
10358 (CHECK_TARGET_MODULES): Likewise.
10359 (INSTALL_TARGET_MODULES): Likewise.
10360 (CLEAN_TARGET_MODULES): Likewise.
10361 (all-target-qthreads): New target.
10362 (configure-target-libjava): Depend on configure-target-qthreads.
10363 (all-target-libjava): Depend on all-target-qthreads.
ba73c63f
JM
10364
10365 * Makefile.in (ALL_TARGET_MODULES): Added libjava, boehm-gc.
10366 (CONFIGURE_TARGET_MODULES): Likewise.
10367 (CHECK_TARGET_MODULES): Likewise.
10368 (INSTALL_TARGET_MODULES): Likewise.
10369 (CLEAN_TARGET_MODULES): Likewise.
10370 (all-target-libjava): New target.
10371 (all-target-boehm-gc): Likewise.
10372 * configure.in (target_libs): Added libjava, boehm-gc.
10373
08d836d6
ILT
103741999-07-22 Ian Lance Taylor <ian@zembu.com>
10375
10376 * Makefile.in (binutils.tar.bz2): Don't pass makeall.bat and
10377 configure.bat in SUPPORT_FILES.
10378 (gas+binutils.tar.bz2): Likewise.
10379
10380 * makeall.bat: Remove; obsolete.
10381
8f36e47c
ILT
103821999-07-21 Ian Lance Taylor <ian@zembu.com>
10383
10384 From Mark Elbrecht:
10385 * configure.bat: Remove; obsolete.
10386
56e82f25
ILT
103871999-07-11 Ian Lance Taylor <ian@zembu.com>
10388
10389 * configure: Add -W -Wall to the default CFLAGS when compiling with
10390 gcc.
10391
1001d816
JL
10392Thu Jul 8 12:32:23 1999 John David Anglin <dave@hiauly1.hia.nrc.ca>
10393
10394 * configure.in: Build ld, binutils & gas for hppa*-*-linux-gnu*.
10395
106117aa
MM
103961999-06-30 Mark Mitchell <mark@codesourcery.com>
10397
10398 * configure.in: Build ld on IRIX6.
10399
c376f4ed
ILT
104001999-06-12 Ian Lance Taylor <ian@zembu.com>
10401
10402 * Makefile.in: Change distribution targets to use bzip2 instead of
10403 gzip.
10404 (TEXINFO_SUPPORT): Set to just texinfo/texinfo.tex.
c1b640f7 10405 (taz): Don't use texinfo/gpl.texinfo or texinfo/lgpl.texinfo.
c376f4ed 10406
306b7445
NC
104071999-06-04 Nick Clifton <nickc@cygnus.com>
10408
10409 * config.sub: Add mcore target.
10410
d932cae7 104111999-05-30 Cort Dougan <cort@cs.nmt.edu>
af754d91
RH
10412
10413 * config.guess (ppc-*-linux-gnu): Also use ld emul elf32ppclinux.
10414
d932cae7 104151999-05-25 H.J. Lu (hjl@gnu.org)
ba73c63f
JM
10416
10417 * config.guess (dummy): Changed to $dummy.
10418
6c3175b0
NC
104191999-05-24 Nick Clifton <nickc@cygnus.com>
10420
ba73c63f
JM
10421 * config.sub: Tidied up case statements.
10422
104231999-05-22 Ben Elliston <bje@cygnus.com>
10424
10425 * config.guess: Handle NEC UX/4800. Contributed by Jiro Takabatake
10426 <jiro@din.or.jp>.
10427
10428 * config.guess: Merge with FSF version. Future changes will be
10429 more accurately recorded in this ChangeLog.
10430 * config.sub: Likewise.
10431
d932cae7 104321999-05-20 Stephen L Moshier <moshier@world.std.com>
ba73c63f
JM
10433
10434 * Makefile.in (GCC_FOR_TARGET): Add -I$(build_tooldir)/include.
6c3175b0 10435
252b5132
RH
104361999-04-30 Tom Tromey <tromey@cygnus.com>
10437
10438 * ltmain.sh: [mode link] Always use CC given by ltconfig.
10439
104401999-04-23 Tom Tromey <tromey@cygnus.com>
10441
10442 * ltconfig, ltmain.sh: Update to libtool 1.2f.
10443
104441999-04-20 Drew Moseley <dmoseley@cygnus.com>
10445
10446 * configure.in (noconfigdirs): Don't build libstub for arm-elf targets.
10447 (noconfigdirs): Don't build any bsp stuff for for arm-oabi targets.
10448 Bad merge removed these two changes.
10449
ba73c63f 10450Tue Apr 13 22:50:54 1999 Donn Terry (donn@interix.com)
80b200a1 10451 Martin Heller (Ing.-Buero_Heller@t-online.de)
ba73c63f
JM
10452
10453 * config.guess (interix Alpha): Add.
10454
252b5132
RH
104551999-04-11 Richard Henderson <rth@cygnus.com>
10456
10457 * configure.in (i?86-*-beos*): Do config gperf; don't config
10458 gdb, newlib, or libgloss.
10459
d932cae7 104601999-04-11 Alexandre Oliva <oliva@dcc.unicamp.br>
35590697 10461
ba73c63f
JM
10462 * config-ml.in: On mips*-*-*, if multidirs contains mabi=64, try to
10463 link a trivial program with -mabi=64. If it fails, remove mabi=64
10464 from multidirs.
10465
d932cae7 104661999-04-10 Philipp Thomas (kthomas@gwdg.de)
ba73c63f
JM
10467
10468 * config.sub: Set basic_machine to i586 when target_alias = k6-*.
10469
252b5132
RH
104701999-04-08 Nick Clifton <nickc@cygnus.com>
10471
10472 * config.sub: Add support for mcore targets.
10473
104741999-04-07 Michael Meissner <meissner@cygnus.com>
10475
10476 * configure.in (d30v-*): Use config/mt-d30v as makefile fragment,
10477 not mt-ospace, in order to shut up assembler warning about using
10478 symbols that are named the same as registers.
10479
104801999-04-07 Drew Moseley <dmoseley@cygnus.com>
10481
10482 * Makefile.in (all-target-cygmon): Added all-target-bsp to the
10483 dependency list for all-target-cygmon.
10484
104851999-04-05 Doug Evans <devans@casey.cygnus.com>
10486
10487 * config-ml.in: Check $host, not $target, for selective multilibs.
10488 (arm-*-*): Allow disabling of biendian, h/w fp, 26 bit apcs,
10489 thumb interworking, and underscore prefix multilibs.
10490
104911999-04-04 Ian Lance Taylor <ian@zembu.com>
10492
10493 * missing: Update to version from current automake.
10494
10495Fri Apr 2 15:11:32 1999 H.J. Lu (hjl@gnu.org)
10496
10497 * configure (gxx_include_dir): Removed.
10498
10499 * configure.in (gxx_include_dir): Handle it.
10500 * Makefile.in: Likewise.
10501
105021999-03-29 Gavin Romig-Koch <gavin@cygnus.com>
10503
10504 * config.sub (mips64vr4111,mips64vr4111el) Add.
10505
105061999-03-21 Ben Elliston <bje@cygnus.com>
10507
80413487 10508 * config.guess: Correct typo for detecting ELF on FreeBSD.
252b5132
RH
10509
10510Thu Mar 18 00:17:50 1999 Mark Elbrecht <snowball3@usa.net>
10511
252b5132
RH
10512 * configure.in (pc-msdosdjgpp): Set host_makefile_frag to
10513 config/mh-djgpp.
10514
10515Thu Mar 11 18:37:23 1999 Drew Moseley <dmoseley@cygnus.com>
10516
10517 * Makefile.in (all-target-bsp): Added all-gcc all-binutils and
10518 all-target-newlib to dependency list for all-target-bsp.
10519
10520Thu Mar 11 01:19:31 1999 Mumit Khan <khan@xraylith.wisc.edu>
10521
10522 * config.sub: Add i386-uwin support.
10523 * config.guess: Likewise.
10524
10525Thu Mar 11 01:07:55 1999 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
10526
10527 * configure.in: cleanup, add mh-*pic handling for arm, special
10528 case powerpc*-*-aix*
10529
10530Wed Mar 10 18:35:07 1999 Jeff Johnston <jjohnstn@cygnus.com>
10531
10532 * configure.in (noconfigdirs): Removed target-libgloss so libnosys.a
10533 can be built.
10534
10535Wed Mar 10 17:39:09 1999 Drew Moseley <dmoseley@cygnus.com>
10536
10537 * configure.in: Added bsp support to arm-*-coff and arm-*-elf
35590697 10538 targets.
252b5132
RH
10539
105401999-03-02 Nick Clifton <nickc@cygnus.com>
10541
10542 * config.sub: Rename CYGNUS LOCAL to EGCS LOCAL
10543
d932cae7 105441999-02-28 Geoffrey Noer <noer@cygnus.com>
252b5132
RH
10545
10546 * config.sub: Check for "cygwin*" rather than "cygwin32*"
10547
105481999-02-24 Nick Clifton <nickc@cygnus.com>
10549
10550 * config.sub: Fix typo in arm recognition.
10551
d932cae7 105521999-02-24 Drew Moseley <dmoseley@cygnus.com>
252b5132
RH
10553
10554 * configure.in (noconfigdirs): Changed target_configdirs to
10555 include target-bsp only for m68k-*-elf* and m68k-*-coff*
10556 rather than m68k-*-* since it is not known to work on
10557 m68k-aout. Ditto for arm-*-*oabi.
10558
d932cae7 105591999-02-24 Stan Shebs <shebs@andros.cygnus.com>
252b5132
RH
10560
10561 * configure.in (*-*-windows*): Remove, no longer used.
252b5132
RH
10562
105631999-02-19 Ben Elliston <bje@cygnus.com>
10564
10565 * config.guess: Automatically recognise ELF on FreeBSD. From Niall
10566 Smart and improved by Andrew Cagney.
10567
d932cae7 105681999-02-18 Marc Espie <espie@cvs.openbsd.org>
252b5132
RH
10569
10570 * config.guess: Recognize openbsd-*-hppa.
10571
d932cae7 105721999-02-17 H.J. Lu (hjl@gnu.org)
252b5132
RH
10573
10574 * Makefile.in (REALLY_SET_LIB_PATH): Append $$$(RPATH_ENVVAR)
10575 only if it is not empty.
10576
105771999-02-17 Nick Clifton <nickc@cygnus.com>
10578
10579 Patch from: Scott Bambrough <scottb@corelcomputer.com>
35590697 10580
fd6848f6 10581 * config.guess: Modified to recognize uname's armv* syntax.
252b5132
RH
10582
10583 * config.sub: Modified to recognize uname's armv* syntax.
10584
105851999-02-17 Mark Salter <msalter@cygnus.com>
10586
10587 * configure.in: Added target-bsp for sparclite.
10588
d932cae7 105891999-02-08 Richard Henderson <rth@cygnus.com>
252b5132
RH
10590
10591 * config.sub: Recognize alphapca5[67] and up to alphaev8.
10592
105931999-02-08 Nick Clifton <nickc@cygnus.com>
10594
10595 * configure.in: Add support for strongarm port.
10596 * config.sub: Add support for strongarm target.
10597
d932cae7 105981999-02-07 Mumit Khan <khan@xraylith.wisc.edu>
35590697 10599
252b5132
RH
10600 * configure.in (*-*-cygwin32*): Use config/mh-cygwin instead of
10601 the old name config/mh-cygwin32.
10602 Enable texinfo.
10603
d932cae7 106041999-02-04 Ian Lance Taylor <ian@cygnus.com>
252b5132
RH
10605
10606 * configure.in: Do build ld for ix86 Solaris.
10607
d932cae7 106081999-02-02 Jim Wilson <wilson@cygnus.com>
252b5132
RH
10609
10610 * Makefile.in (EXTRA_GCC_FLAGS): Set AR to $AR instead of
10611 $AR_FOR_TARGET. Likewise for RANLIB.
10612
d932cae7 106131999-02-02 Catherine Moore <clm@cygnus.com>
35590697 10614
80413487
RH
10615 * config.sub (oabi): Recognize.
10616 * configure.in (arm-*-oabi): Handle.
252b5132 10617
d932cae7 106181999-01-30 Robert Lipe (robertlipe@usa.net)
252b5132
RH
10619
10620 * config.guess: Improve detection of i686 on UnixWare 7.
10621
d932cae7 106221999-01-30 Mumit Khan <khan@xraylith.wisc.edu>
252b5132
RH
10623
10624 * config.guess: Add support for i386-pc-interix.
10625 * config.sub: Likewise.
10626 * configure.in: Likewise.
252b5132 10627
d932cae7 106281999-01-18 Christopher Faylor <cgf@cygnus.com>
252b5132
RH
10629
10630 * Makefile.in: Remove unneeded all-target-libio from
10631 from all-target-winsup target since it is now unneeded.
10632 Add all-target-libtermcap in its place since it is now
10633 needed.
10634
d932cae7 106351998-12-30 Christopher Faylor <cgf@cygnus.com>
252b5132
RH
10636
10637 * configure.in: makefile stub for cygwin target is probably
10638 unnecessary. Remove it for now.
252b5132 10639
d932cae7 106401998-12-30 Christopher Faylor <cgf@cygnus.com>
252b5132
RH
10641
10642 * configure.in: libtermcap.a should be built when cygwin is the
10643 target as well as the host.
10644 * config.guess: Allow mixed case in cygwin uname output.
10645 * Makefile.in: Add libtermcap target.
252b5132 10646
d932cae7 106471998-12-23 Jeffrey A Law (law@cygnus.com)
252b5132
RH
10648
10649 * config.sub: Clean up handling of hppa2.0.
10650
d932cae7 106511998-12-22 Rodney Brown (rodneybrown@pmsc.com)
252b5132
RH
10652
10653 * config.guess: Use C code to identify more HP machines.
10654
10655Thu Dec 17 01:22:30 1998 Jeffrey A Law (law@cygnus.com)
10656
10657 * config.sub: Handle hppa2.0.
10658
ba73c63f
JM
10659Tue Dec 15 17:02:58 1998 Bob Manson <manson@charmed.cygnus.com>
10660
10661 * configure.in: Add cygmon for x86-coff and x86-elf. Configure
35590697 10662 cygmon for all sparclite targets, regardless of object format.
ba73c63f
JM
10663
106641998-12-15 Mark Salter <msalter@cygnus.com>
10665
10666 * configure.in: Added target-bsp for several target architectures.
10667
10668 * Makefile.in: Added rules for bsp.
10669
252b5132
RH
10670Fri Dec 4 01:34:02 1998 Jeffrey A Law (law@cygnus.com)
10671
10672 * config.guess: Improve detection of hppa2.0 processors.
10673
10674Fri Dec 4 01:33:05 1998 Niall Smart <nialls@euristix.ie>
10675
10676 * config.guess: Recognize FreeBSD using ELF automatically.
10677
106781998-11-26 Manfred Hollstein <manfred@s-direktnet.de>
10679
10680 * configure (skip-this-dir): Add handling for new shell script, which
10681 might be created by a sub-directory's configure to indicate, this particular
10682 directory is "unwanted".
10683 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): Likewise.
10684
252b5132
RH
10685Wed Nov 18 18:28:45 1998 Geoffrey Noer <noer@cygnus.com>
10686
10687 * ltconfig: import from libtool, after changing libtool to
10688 account for the cygwin name change.
10689
10690Wed Nov 18 18:09:14 1998 Geoffrey Noer <noer@cygnus.com>
10691
10692 * Makefile.in: CC_FOR_TARGET and CXX_FOR_TARGET should also
10693 include newlib/libc/sys/cygwin and newlib/libc/sys/cygwin32.
10694
10695Wed Nov 18 20:13:29 1998 Christopher Faylor <cgf@cygnus.com>
10696
10697 * configure.in: Add libtermcap to list of cygwin dependencies.
10698
d932cae7 106991998-11-17 Geoffrey Noer <noer@cygnus.com>
252b5132 10700
80413487
RH
10701 * Makefile.in: modify CC_FOR_TARGET and CXX_FOR_TARGET so that
10702 they include winsup/include when it's a cygwin target.
252b5132
RH
10703
107041998-11-12 Tom Tromey <tromey@cygnus.com>
10705
10706 * configure.in (host_tools): Added zip.
10707 * Makefile.in (all-target-libjava): Depend on all-zip.
10708 (all-zip): New target.
10709 (ALL_MODULES): Added all-zip.
10710 (NATIVE_CHECK_MODULES): Added check-zip.
10711 (INSTALL_MODULES): Added install-zip.
10712 (CLEAN_MODULES): Added clean-zip.
10713
d932cae7 107141998-11-12 Geoffrey Noer <noer@cygnus.com>
252b5132
RH
10715
10716 * Makefile.in: lose "32" from comment about cygwin.
10717
d932cae7 107181998-11-05 Nick Clifton <nickc@cygnus.com>
252b5132
RH
10719
10720 * configure.in: Use -Os to build target libraries for the fr30.
10721
d932cae7 107221998-11-04 Dave Brolley <brolley@cygnus.com>
252b5132
RH
10723
10724 * config.sub: Add fr30.
10725
d932cae7 107261998-11-02 Geoffrey Noer <noer@cygnus.com>
252b5132 10727
80413487 10728 * configure.in: drop "32" from config/mh-cygwin32. Check
252b5132
RH
10729 cygwin* instead of cygwin32*.
10730 * config.sub: Check cygwin* instead of cygwin32*.
10731
d932cae7 107321998-10-22 Robert Lipe <robertl@dgii.com>
ba73c63f
JM
10733
10734 * config.guess: Match any version of Unixware7.
10735
252b5132
RH
107361998-10-20 Syd Polk <spolk@cygnus.com>
10737
10738 * Makefile.in configure.in: Add the ability to use tcl8.1 and tk8.1
10739 if desired.
10740
d932cae7 107411998-10-18 Jeffrey A Law (law@cygnus.com)
252b5132
RH
10742
10743 * config.if (cxx_interface, libstdcxx_interface): Do not try to set
10744 these if the appropriate directories and files to not exist.
10745
d932cae7 107461998-10-14 Jeffrey A Law (law@cygnus.com)
252b5132
RH
10747
10748 * Makefile.in (DEVO_SUPPORT): Add config.if.
10749
d932cae7 107501998-10-13 Manfred Hollstein <manfred@s-direktnet.de>
ba73c63f
JM
10751
10752 * configure: Add pattern to replace "build_tooldir"'s
10753 definition in the generated Makefile with "tooldir"'s
10754 actual value.
10755
252b5132
RH
10756Tue Oct 13 09:17:06 1998 Jeffrey A Law (law@cygnus.com)
10757
10758 * config.sub: Bring back lost sparcv9.
10759
ba73c63f
JM
10760 * Makefile.in (all-snvavigator): Remove all-flexlm dependency.
10761
10762Mon Oct 12 12:09:44 1998 Jeffrey A Law (law@cygnus.com)
10763
10764 * Makefile.in (CHILL_FOR_TARGET): Mirror recent changes to
10765 CC_FOR_TARGET and friends.
10766
10767Mon Oct 12 12:09:30 1998 Alexandre Oliva <oliva@dcc.unicamp.br>
35590697 10768
ba73c63f
JM
10769 * Makefile.in (build_tooldir): New variable, same as tooldir.
10770 (CC_FOR_TARGET, GCC_FOR_TARGET, CXX_FOR_TARGET): Add
10771 -B$(build_tooldir)/bin/.
10772 (BASE_FLAGS_TO_PASS): Pass build_tooldir down.
10773
252b5132
RH
10774Wed Sep 30 22:20:50 1998 Robert Lipe <robertl@dgii.com>
10775
10776 * config.sub: Add support for i[34567]86-pc-udk.
10777 * configure.in: Likewise.
10778
10779Wed Sep 30 19:23:48 1998 Geoffrey Noer <noer@cygnus.com>
10780
10781 * Makefile.in: add bzip2 package building bits for user
10782 tools module
10783 * configure.in: ditto
10784
ba73c63f
JM
10785Wed Sep 30 03:00:05 1998 Jeffrey A Law (law@cygnus.com)
10786
10787 * Makefile.in (TARGET_CONFIGDIRS): Add libobjc.
10788 (ALL_TARGET_MODULES): Add all-target-libobjc.
10789 (CONFIGURE_TARGET_MODULES, CHECK_TARGET_MODULES): Similarly.
10790 (INSTALL_TARGET_MODULES, CLEAN_TARGET_MODULES): Similarly.
10791 (all-target-libchill): Add dependencies.
10792 * configure.in (target_libs): Add libchill.
35590697 10793
252b5132
RH
107941998-09-30 Manfred Hollstein <manfred@s-direktnet.de>
10795
ba73c63f 10796 * configure.in (target_subdir): Remove duplicate line.
252b5132
RH
10797
10798Tue Sep 29 22:45:41 1998 Felix Lee <flee@cygnus.com>
10799
10800 * Makefile.in (all-automake): fix dependencies.
10801
10802Mon Sep 28 04:04:27 1998 Jeffrey A Law (law@cygnus.com)
10803
10804 * configure.in: Minor cleanups for building in the $(target_alias)
10805 subdir.
10806
108071998-09-22 Jim Wilson <wilson@cygnus.com>
10808
10809 * Makefile.in (bootstrap): Set r and s before make all. Use
10810 BASE_FLAGS_TO_PASS in make all.
10811 (cross): Likewise.
10812
108131998-09-20 Mark Mitchell <mark@markmitchell.com>
10814
10815 * Makefile.in (bootstrap): Pass TARGET_FLAGS_TO_PASS to `make all'.
10816
252b5132
RH
10817Sun Sep 20 00:13:02 1998 Richard Henderson <rth@cygnus.com>
10818
10819 * config.sub: Fix typo in last change.
10820
108211998-09-19 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
10822
10823 * config.sub: Add support for C4x target.
10824 * configure.in: Likewise.
10825
108261998-09-13 David S. Miller <davem@pierdol.cobaltmicro.com>
10827
10828 * config.sub: Recognize sparcv9 just like sparc64.
10829
10830Wed Sep 9 15:44:52 1998 Robert Lipe <robertl@dgii.com>
10831
10832 * config.guess: Match "Pent II" or "PentII" for OpenServer.
10833
10834Tue Sep 8 01:18:39 1998 Jeffrey A Law (law@cygnus.com)
10835
10836 * config.guess: Correctly identify Pentium II sco boxes.
10837
10838 * config.guess: Fix "tr" code. From Weiwen Liu.
10839
10840Sat Sep 5 13:56:52 1998 John Hughes <john@Calva.COM>
10841
10842 * configure.in: Do not assume x86-svr4 or x86-unixware can handle
10843 stabs.
10844
10845Sat Sep 5 02:12:02 1998 Jeffrey A Law (law@cygnus.com)
10846
10847 * Makefile.in (TARGET_CONFIGDIRS): Add libchill.
10848 (ALL_TARGET_MODULES): Add all-target-libchill.
10849 (CONFIGURE_TARGET_MODULES, CHECK_TARGET_MODULES): Similarly.
10850 (INSTALL_TARGET_MODULES, CLEAN_TARGET_MODULES): Similarly.
10851 (all-target-libchill): Add dependencies.
10852 * configure.in (target_libs): Add libchill.
10853
10854Sun Aug 30 22:27:02 1998 Lutz Wohlrab <lutz.wohlrab@informatik.tu-chemnitz.de>
10855
10856 * config.guess: Avoid assumptions about "tr" behaves when
10857 LANG is set to something other than English.
10858
10859Sun Aug 30 22:14:44 1998 H.J. Lu (hjl@gnu.org)
10860
10861 * configure (gxx_include_dir): Changed to
10862 '${prefix}/include/g++'-${libstdcxx_interface}.
10863
10864 * config.if: New to determine the interfaces.
10865
10866Sun Aug 30 21:15:19 1998 Mark Klein (mklein@dis.com)
10867
10868 * config.guess: Detect and handle MPE/IX.
10869 * config.sub: Deal with MPE/IX.
10870
10871Sat Aug 29 14:32:55 1998 David Edelsohn <edelsohn@mhpcc.edu>
10872
10873 * configure.in: Use mh-aix43.
10874
108751998-07-29 Manfred Hollstein <manfred@s-direktnet.de>
10876
10877 * configure: Fix --without/--disable cases for gxx-include-dir.
10878
10879Fri Aug 28 12:28:26 1998 Per Bothner <bothner@cygnus.com>
10880
10881 * mdata-sh: Imported. Needed for automake support.
10882
10883Thu Aug 13 12:49:29 1998 H.J. Lu <hjl@gnu.org>
10884
ba73c63f 10885 * Makefile.in (taz): Try "chmod -R og=u ." before
252b5132
RH
10886 "chmod og=u `find . -print`".
10887
10888Fri Jul 31 09:38:33 1998 Catherine Moore <clm@cygnus.com>
10889
ba73c63f 10890 * configure.in: Add arm-elf and thumb-elf support.
252b5132
RH
10891
10892Mon Jul 27 16:23:58 1998 Doug Evans <devans@canuck.cygnus.com>
10893
10894 * Makefile.in: Undo previous patch.
10895
10896Fri Jul 24 19:55:24 1998 Doug Evans <devans@canuck.cygnus.com>
10897
10898 * Makefile.in (INSTALL_TARGET): Move EXTRA_TARGET_HOST_INSTALL_MODULES
10899 to here ...
10900 (install-no-fixedincludes): and here
10901 (INSTALL_MODULES): ... from here.
10902
10903Fri Jul 24 17:01:42 1998 Ian Lance Taylor <ian@cygnus.com>
10904
10905 * config.sub: Merge with FSF.
10906
10907 * config.guess: Merge with FSF.
10908
10909Fri Jul 24 08:43:36 1998 Doug Evans <devans@canuck.cygnus.com>
10910
10911 * configure (extraconfigdirs): New variable.
10912 (SUBDIRS): Add extraconfigdirs and recurse on them too.
10913 * Makefile.in (all): Move higher in file.
10914 (EXTRA_TARGET_HOST_ALL_MODULES): New variable.
10915 (EXTRA_TARGET_HOST_{INSTALL,CHECK}_MODULES): New variables.
10916 (ALL_MODULES): Add EXTRA_TARGET_HOST_ALL_MODULES.
10917 (CROSS_CHECK_MODULES): Add EXTRA_TARGET_HOST_CHECK_MODULES.
10918 (INSTALL_MODULES): Add EXTRA_TARGET_HOST_INSTALL_MODULES.
10919
109201998-07-23 Brendan Kehoe <brendan@cygnus.com>
10921
10922 * Makefile.in (all-target-libjava): Depend on all-gcc and
10923 all-target-newlib.
10924 (configure-target-libjava): Depend on $(ALL_GCC).
10925
10926Sat Jul 18 14:32:43 CDT 1998 Robert Lipe <robertl@dgii.com>
10927
10928 * config.guess: (*-pc-sco3.2v5) Add detection for Pentium II.
10929 (*-pc-unixware7) Add detection for Pentium II, Pentium Pro.
10930
10931Fri Jul 17 13:30:18 1998 Ian Lance Taylor <ian@cygnus.com>
10932
10933 * ylwrap: Change absolute path checks to check for DOS style path
10934 names.
10935
10936 * ylwrap: Don't use a full path name if the source file is in the
10937 same directory. From hjl@lucon.org (H.J. Lu).
10938
10939 * config-ml.in: Default to being verbose, to match Feb 18 change to
10940 configure.
10941
10942Thu Jul 16 12:29:51 1998 Ian Lance Taylor <ian@cygnus.com>
10943
10944 Brought over from egcs:
10945
10946 Sat Jun 27 22:46:32 1998 Jeffrey A Law (law@cygnus.com)
10947
10948 * configure.in (target_subdir): Set to ${target_alias} instead
10949 of "libraries".
10950
10951 Mon Sep 1 16:45:44 1997 Jim Wilson <wilson@cygnus.com>
10952
10953 * configure.in (target_subdir): Set to libraries if enable_multilib.
10954
10955Wed Jul 15 01:00:54 1998 Ian Lance Taylor <ian@cygnus.com>
10956
10957 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): If there are any
10958 multilibs, force reconfiguration the first time we create
10959 multilib.out in a subdirectory, in case TARGET_SUBDIR is `.'.
10960
10961Tue Jul 14 23:41:03 1998 Ian Lance Taylor <ian@cygnus.com>
10962
10963 * configure.in: Strip any --no option from CONFIG_ARGUMENTS, to
10964 avoid confusion with --no-recursion.
10965
10966Tue Jul 14 15:37:41 1998 Geoffrey Noer <noer@cygnus.com>
10967
10968 * configure.in: Win32 hosts shouldn't use install -x
10969 * install-sh: remove -x option, and special .exe-handling
10970 hack.
10971
10972Tue Jul 14 15:28:41 1998 Richard Henderson <rth@cygnus.com>
10973
10974 * config.guess: Recognize i586-pc-beos.
10975 * configure.in: Don't build some bits for beos.
10976
10977Tue Jul 14 13:22:18 1998 Ian Lance Taylor <ian@cygnus.com>
10978
10979 * configure: If CC is set but CFLAGS is not, and CC is gcc, make
10980 CFLAGS default to -O2.
10981
10982 * ltmain.sh: Add some hacks to make SunOS --enable-shared work
10983 when using GNU ld.
10984
10985Fri Jul 10 13:18:23 1998 Ian Lance Taylor <ian@cygnus.com>
10986
10987 * ltmain.sh: Correct install when using a different shell.
10988
10989Tue Jul 7 15:24:38 1998 Ian Lance Taylor <ian@cygnus.com>
10990
10991 * ltconfig, ltmain.sh: Update to libtool 1.2b.
10992
10993Thu Jul 2 13:57:36 1998 Klaus Kaempf <kkaempf@rmi.de>
10994
10995 * makefile.vms: Update to build binutils/makefile.vms. Add install
10996 target.
10997
10998Wed Jul 1 16:45:21 1998 Ian Lance Taylor <ian@cygnus.com>
10999
11000 * ltconfig: Update to correct AIX handling.
11001
11002Sat Jun 27 22:46:32 1998 Jeffrey A Law (law@cygnus.com)
11003
11004 * Makefile.in (BASE_FLAGS_TO_PASS): Add TARGET_SUBDIR.
11005
11006 * configure.in (target_subdir): Set to ${target_alias} instead
11007 of "libraries".
11008
110091998-06-26 Manfred Hollstein <manfred@s-direktnet.de>
11010
11011 * Makefile.in (BASE_FLAGS_TO_PASS): Add gcc_version_trigger.
11012 (Makefile): Depend on $(gcc_version_trigger).
11013
11014 * configure (gcc_version): Change default initializer to empty
11015 string.
11016 (gcc_version_trigger): New variable; pass this variable down
11017 to subdir configures to enable them checking gcc's version
11018 themselves. Emit make macros for both gcc_version vars.
11019 (topsrcdir): Initialize reliably.
11020 (recursion line): Remove --with-gcc-version=${gcc_version}.
11021
110221998-06-24 Manfred Hollstein <manfred@s-direktnet.de>
11023
11024 * configure (enable_version_specific_runtime_libs): Implement new flag
11025 --enable-version-specific-runtime-libs which installs C++ runtime stuff
11026 in $(libsubdir); emit definition in each generated Makefile.
11027 (gxx_include_dir): Initialize depending on
11028 $enable_version_specific_runtime_libs.
11029
110301998-06-24 Manfred Hollstein <manfred@s-direktnet.de>
11031
11032 * configure (gcc_version): Initialize properly depending on
11033 how and where configure is started.
11034 (recursion line): Pass a --with-gcc-version=${gcc_version}
11035 to configures in subdirs.
11036
11037Wed Jun 24 16:01:59 1998 John Metzler <jmetzler@cygnus.com>
11038
11039 * configure.in (noconfigdirs): Add configure pattern for mips tx39
35590697 11040 cygmon
252b5132
RH
11041
11042Tue Jun 23 22:42:32 1998 Mark Alexander <marka@cygnus.com>
11043
11044 * configure.in: Add cygmon and libstub support for mn10200.
11045
110461998-06-19 Manfred Hollstein <manfred@s-direktnet.de>
11047
11048 * configure (gcc_version): Add new variable describing the
11049 particular gcc version we're building.
11050 * Makefile.in (libsubdir): Add new macro for the directory
11051 in which the compiler finds executables, libraries, etc.
11052 (BASE_FLAGS_TO_PASS): Pass down gcc_version, target_alias
11053 and libsubdir.
11054
11055Fri Jun 19 02:36:59 1998 Alexandre Oliva <oliva@dcc.unicamp.br>
11056
ba73c63f
JM
11057 * Makefile.in (local-clean): Remove *.log.
11058 (warning.log): Built with warn_summary from build.log.
11059 (mail-report.log): Run test_summary.
11060 (mail-report-with-warnings.log): Run test_summary including
11061 warning.log in the report.
252b5132
RH
11062
11063Thu Jun 18 11:26:03 1998 Robert Lipe <robertl@dgii.com>
11064
11065 * config.guess: Detection of Pentium II for *-sco-3.2v5*.
11066
11067Mon Jun 15 14:53:54 1998 Andrew Cagney <cagney@b1.cygnus.com>
11068
11069 * Makefile.in (grep): Grep no longer depends on libiberty.
11070
11071Fri Jun 12 14:03:34 1998 Syd Polk <spolk@cygnus.com>
11072
11073 * Makefile.in: all-snavigator needs all-libgui.
11074
11075Thu Jun 11 19:43:47 1998 Mark Alexander <marka@cygnus.com>
11076
11077 * configure.in: Add cygmon and libstub support for mn10300.
11078
11079Wed Jun 10 11:19:47 1998 Ian Lance Taylor <ian@cygnus.com>
11080
11081 * missing: Update to version from automake 1.3.
11082
11083 * ltmain.sh: On installation, don't get confused if the same name
11084 appears more than once in the list of library names.
11085
11086Wed Jun 3 14:51:42 1998 Ian Lance Taylor <ian@cygnus.com>
11087
11088 * config.sub: Accept m68060 and m5200 as CPU names.
11089
11090Mon Jun 1 17:25:16 1998 Ian Lance Taylor <ian@cygnus.com>
11091
11092 * configure: Use && rather than using -a in test, because odd
11093 strings can confuse test.
11094 * configure.in: Likewise.
11095
11096Thu May 28 19:31:13 1998 Ian Lance Taylor <ian@cygnus.com>
11097
11098 * ltconfig, ltmain.sh: Bring in Visual C++ support.
11099
11100Sat May 23 23:44:13 1998 Alexandre Oliva <oliva@dcc.unicamp.br>
11101
11102 * Makefile.in (boostrap2-lean, bootstrap3-lean,
ba73c63f
JM
11103 bootstrap4-lean): New targets.
11104
11105Mon May 11 23:55:56 1998 Jeffrey A Law (law@cygnus.com)
11106
11107 * mpw-* Delete. Not used.
252b5132
RH
11108
11109Mon May 11 23:11:34 1998 Jeffrey A Law (law@cygnus.com)
11110
11111 * COPYING.LIB: Update FSF address.
11112
11113Fri May 8 01:30:20 1998 Ian Lance Taylor <ian@cygnus.com>
11114
11115 * ltconfig, ltmain.sh: Update to libtool 1.2a.
11116
11117 * Makefile.in (GASB_SUPPORT_DIRS): Remove intl; already included via
11118 GAS_SUPPORT_DIRS.
11119
11120Thu May 7 17:27:35 1998 Ian Lance Taylor <ian@cygnus.com>
11121
11122 * ltconfig, ltmain.sh: Avoid producing a version number if
11123 -version-info was not used.
11124
11125Tue May 5 18:02:24 1998 Ian Lance Taylor <ian@cygnus.com>
11126
11127 * configure.in: Add --with-newlib to CONFIG_ARGUMENTS if we are
11128 building with newlib.
11129
111301998-04-30 Paul Eggert <eggert@twinsun.com>
11131
ba73c63f 11132 * Makefile.in (EXTRA_GCC_FLAGS): Remove backslash at end;
35590697 11133 Solaris `make' causes it to continue to next definition.
252b5132 11134
afb8d725
JM
11135Tue Apr 28 16:24:24 1998 Jason Molenda (crash@bugshack.cygnus.com)
11136
11137 * Makefile.in (install-gdbtk): Call this 'install-gdb' so that
11138 the right GUI libraries and files are installed along with GDB.
11139
252b5132
RH
11140Tue Apr 28 18:11:24 1998 Ian Lance Taylor <ian@cygnus.com>
11141
11142 * configure.in: Change alpha to alpha* in several places.
11143
11144Tue Apr 28 07:42:00 1998 Mark Alexander <marka@cygnus.com>
11145
11146 * config.sub: Recognize sparc86x.
11147
11148Tue Apr 28 07:35:02 1998 Michael Meissner <meissner@cygnus.com>
ba73c63f 11149
252b5132
RH
11150 * configure.in (--enable-target-optspace): Remove debug echo.
11151
11152Thu Apr 23 21:31:16 1998 Jim Wilson <wilson@cygnus.com>
11153
11154 * configure: Set CXXFLAGS from CXXFLAGS, not CFLAGS.
11155
11156Thu Apr 23 12:26:38 1998 Ian Lance Taylor <ian@cygnus.com>
11157
11158 * ltconfig: Update cygwin32 support.
11159
11160 * Makefile.in (GAS_SUPPORT_DIRS): Add intl.
11161 (BINUTILS_SUPPORT_DIRS, GASB_SUPPORT_DIRS): Likewise.
11162 (GDB_SUPPORT_DIRS): Likewise.
11163
11164Wed Apr 22 12:30:10 1998 Michael Meissner <meissner@cygnus.com>
11165
11166 * configure.in (target_makefile_frag): If --enable-target-optspace,
11167 use -Os to compile target libraries rather than -O2. Default to
11168 using -Os for d10v and m32r if --{enable,disable}-target-optspace is
11169 not used.
11170 * configure.in (target_cflags): Ditto for d30v.
11171
11172Tue Apr 21 23:06:54 1998 Tom Tromey <tromey@cygnus.com>
11173
11174 * Makefile.in (all-bfd): Depend on all-intl.
11175 (all-binutils): Likewise.
11176 (all-gas): Likewise.
11177 (all-gprof): Likewise.
11178 (all-ld): Likewise.
11179
252b5132
RH
111801998-04-19 Brendan Kehoe <brendan@cygnus.com>
11181
11182 * configure.in (host_tools): Fix typo, lbtool -> libtool.
11183
11184Fri Apr 17 16:20:42 1998 Ian Lance Taylor <ian@cygnus.com>
11185
11186 * Makefile.in (all-bfd): Depend upon all-libiberty.
11187
11188 * ltconfig, ltmain.sh: Bring in newer cygwin32 support.
11189
11190Fri Apr 17 12:22:22 1998 Bob Manson <manson@charmed.cygnus.com>
11191
11192 * Makefile.in: Add libstub.
11193
11194 * configure.in: Ditto. Build libstub for targets that have cygmon
11195 support.
11196
11197Tue Apr 14 18:01:55 1998 Ian Lance Taylor <ian@cygnus.com>
11198
11199 * configure.in: Don't set PICFLAG on ix86-cygwin32.
11200
11201Tue Apr 14 12:24:45 1998 J. Kean Johnston <jkj@sco.com>
11202
11203 * configure.in: Recognise i[3456]96-*-sysv5* as a valid host, and
11204 use mh-sysv5 if specified. Support gprof on SCO Open Server.
11205
11206Tue Apr 14 11:33:51 1998 Krister Walfridsson <cato@df.lth.se>
11207
11208 * configure: Define DEFAULT_M4 by searching PATH.
11209 * Makfile.in: Use DEFAULT_M4.
11210
11211Mon Apr 13 15:37:24 1998 Ian Lance Taylor <ian@cygnus.com>
11212
11213 * ltconfig: Add cygwin32 support.
11214
11215 * Makefile.in, configure.in: Add libtool as a native only directory
ba73c63f
JM
11216 to configure and build.
11217
11218Sun Apr 12 20:58:46 1998 Jeffrey A Law (law@cygnus.com)
11219
11220 * Makefile.in (INSTALL_MODULES): Remove texinfo.
252b5132
RH
11221
11222Wed Apr 8 13:18:56 1998 Philippe De Muyter <phdm@macqel.be>
11223
11224 * Makefile.in (EXTRA_GCC_FLAGS): XFOO lines shortened.
11225
11226Thu Apr 2 14:48:44 1998 Geoffrey Noer <noer@cygnus.com>
11227
11228 * Makefile.in: add ash make rules
11229 * configure.in: add ash to native_only and host_tools lists
11230
11231Thu Mar 26 12:53:20 1998 Tom Tromey <tromey@cygnus.com>
11232
11233 * Makefile.in (all-gettext, all-intl): New targets.
11234 (ALL_MODULES): Added all-gettext, all-intl.
11235 (CROSS_CHECK_MODULES): Added check-gettext, check-intl.
11236 (INSTALL_MODULES): Added install-gettext, install-intl.
11237 (CLEAN_MODULES): Added clean-gettext, clean-intl.
11238
11239 * configure.in (host_tools): Added gettext.
11240 (native_only): Likewise.
11241 (noconfigdirs) [various cases]: Likewise.
11242 (host_libs): Added intl.
11243
afb8d725
JM
11244Thu Mar 26 15:00:11 1998 Keith Seitz <keiths@onions.cygnus.com>
11245
11246 * configure: Do not disable building gdbtk for cygwin32 hosts.
11247
ba73c63f
JM
11248Wed Mar 25 10:04:18 1998 Nick Clifton <nickc@cygnus.com>
11249
11250 * configure.in: Add thumb-coff target.
11251 * config.sub: Add thumb-coff target.
11252
252b5132
RH
11253Wed Mar 25 11:49:12 1998 Jason Molenda (crash@bugshack.cygnus.com)
11254
11255 * Makefile.in: Revert yesterday's change.
11256 (all-target-winsup): all-target-librx stays out of here.
11257
11258Tue Mar 24 16:58:29 1998 Jason Molenda (crash@bugshack.cygnus.com)
11259
ba73c63f
JM
11260 * Makefile.in (TARGET_CONFIGDIRS, ALL_TARGET_MODULES,
11261 CONFIGURE_TARGET_MODULES, CHECK_TARGET_MODULES,
11262 INSTALL_TARGET_MODULES, CLEAN_TARGET_MODULES, all-target-winsup):
252b5132
RH
11263 Remove references to librx and libg++.
11264
11265Tue Mar 24 18:28:12 1998 Eric Mumpower <nocturne@cygnus.com>
11266
11267 * Makefile.in (BASE_FLAGS_TO_PASS): Pass $(lispdir) down to
11268 recursive makes
11269
11270Tue Mar 24 11:37:45 1998 Ian Lance Taylor <ian@cygnus.com>
11271
11272 * Makefile.in (CC_FOR_TARGET): Use $(TARGET_SUBDIR) when passing -B
11273 for newlib directory.
11274 (CXX_FOR_TARGET): Likewise.
11275
11276Mon Mar 23 11:30:21 1998 Jeffrey A Law (law@cygnus.com)
11277
11278 * ltconfig: Update after libtool/ltconfig.in change for
11279 hpux11.
11280
11281Fri Mar 20 18:51:43 1998 Ian Lance Taylor <ian@cygnus.com>
11282
11283 * ltconfig, ltmain.sh: Update to libtool 1.2.
11284
11285Fri Mar 20 09:32:14 1998 Manfred Hollstein <manfred@s-direktnet.de>
11286
11287 * Makefile.in (install-gcc): Don't specify LANGUAGES here.
11288 (install-gcc-cross): Instead, override LANGUAGES here.
11289
112901998-03-18 Dave Love <d.love@dl.ac.uk>
11291
11292 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): Set CONFIG_SITE to a
11293 non-existent file since /dev/null loses with bash 2.0/autoconf 2.12.
11294
11295Wed Mar 18 09:24:59 1998 Nick Clifton <nickc@cygnus.com>
11296
11297 * configure.in: Add Thumb-pe target.
11298
11299Tue Mar 17 16:59:00 1998 Syd Polk <spolk@cygnus.com>
ba73c63f 11300
252b5132
RH
11301 * Makefile.in - changed sn targets to snavigator
11302 * configure.in - changed sn targets to snavigator
11303
11304Tue Mar 17 10:33:28 1998 Manfred Hollstein <manfred@s-direktnet.de>
11305
11306 * config-ml.in: After building symlink tree call make distclean
11307 if a Makefile got linked into ${ml_dir}/${ml_libdir}; this happens
11308 to be the case for libiberty.
11309
11310Tue Mar 17 10:22:37 1998 H.J. Lu (hjl@gnu.ai.mit.edu)
11311
11312 * configure: When making link, also check the current
11313 directory. The configure scripts may create one.
11314
11315Fri Mar 6 01:02:03 1998 Richard Henderson <rth@cygnus.com>
11316
11317 * config.sub: Accept alphapca56 and alphaev6 properly.
11318
11319Fri Mar 6 00:14:55 1998 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
11320
11321 * configure.in: Revert 3 Jan change for powerpc-linux-gnulibc1.
11322
252b5132
RH
11323Mon Feb 23 15:09:18 1998 Bruno Haible <bruno@linuix.mathematik.uni-karlsruhe.de
11324
80413487 11325 * config.sub (sco5): Fix typo.
252b5132
RH
11326
11327Mon Feb 23 14:46:06 1998 Ian Lance Taylor <ian@cygnus.com>
11328
11329 * Makefile.in (INSTALL_MODULES): Move install-tcl before
11330 install-itcl.
11331 (install-itcl): Remove dependency on install-tcl.
11332
11333Mon Feb 23 09:53:28 1998 Mark Alexander <marka@cygnus.com>
11334
11335 * configure.in: Remove libgloss from noconfigdirs for MN10300.
11336
252b5132
RH
11337Thu Feb 19 13:40:41 1998 Ian Lance Taylor <ian@cygnus.com>
11338
11339 * configure.in: Don't build libgui for a cygwin32 target when not on
11340 a cygwin32 host.
11341
11342Wed Feb 18 12:29:00 1998 Jason Molenda (crash@bugshack.cygnus.com)
11343
11344 * configure (redirect): Set to null, so default behavior of
11345 configure is now --verbose.
11346
113471998-02-16 Dave Love <d.love@dl.ac.uk>
11348
11349 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): Run configure with
11350 CONFIG_SITE=/dev/null to forestall lossage with site configuration.
11351
11352Mon Feb 16 12:23:53 1998 Manfred Hollstein <Manfred.Hollstein@ks.sel.alcatel.de>
11353
11354 * Makefile.in (BASE_FLAGS_TO_PASS, EXTRA_TARGET_FLAGS): Really add
11355 this change to sync Makefile.in with its ChangeLog entries.
11356
11357Thu Feb 12 15:03:08 1998 H.J. Lu <hjl@gnu.org>
11358
11359 * ltmain.sh (mkdir): Check that the directory doesn't exist
11360 before we exit with error, so that we don't get races during
11361 parallel builds.
11362
11363Sat Feb 7 15:19:18 1998 Ian Lance Taylor <ian@cygnus.com>
11364
11365 * ltconfig, ltmain.sh: Update from libtool 1.0i.
11366
11367Fri Feb 6 01:33:52 1998 Manfred Hollstein <manfred@s-direktnet.de>
11368
11369 * Makefile.in (BASE_FLAGS_TO_PASS): Don't pass PICFLAG and
11370 PICFLAG_FOR_TARGET.
11371 (EXTRA_TARGET_FLAGS): Don't pass PICFLAG_FOR_TARGET.
11372
11373 * configure: Emit a definition for the new macro enable_shared
11374 into each Makefile.
11375
252b5132
RH
11376Thu Feb 5 17:01:12 1998 Jason Molenda (crash@bugshack.cygnus.com)
11377
11378 * configure.in (host_tools, native_only): Add libtool.
11379
11380Wed Feb 4 16:53:58 1998 Geoffrey Noer <noer@cygnus.com>
11381
11382 * configure.in: add target-gperf to noconfigdirs for Cygwin32.
11383 Fix typo in ming config comment.
11384
11385Wed Feb 4 18:56:13 1998 Ian Lance Taylor <ian@cygnus.com>
11386
11387 * ltconfig, ltmain.sh: Update from libtool 1.0h.
11388
11389Mon Feb 2 19:38:19 1998 Ian Lance Taylor <ian@cygnus.com>
11390
11391 * config.sub: Add tic30 cases, and map c30 to tic30.
11392
ba73c63f
JM
11393Sun Feb 1 02:40:41 1998 Richard Henderson <rth@cygnus.com>
11394
11395 * Makefile.in (TARGET_CONFIGDIRS): Add libf2c.
11396 (ALL_TARGET_MODULES, CONFIGURE_TARGET_MODULES): Similarly
11397 (CHECK_TARGET_MODULES, INSTALL_TARGET_MODULES): Similarly
11398 (CLEAN_TARGET_MODULES): Similarly
11399 (all-target-libf2c): Add dependences.
35590697 11400 * configure.in (target_libs): Add libf2c.
ba73c63f 11401
252b5132
RH
11402Fri Jan 30 17:18:32 1998 Geoffrey Noer <noer@cygnus.com>
11403
ba73c63f
JM
11404 * configure.in: Remove expect from noconfigdirs when target
11405 is cygwin32. OK to build expect and dejagnu with Canadian
11406 Cross.
252b5132
RH
11407
11408Wed Jan 28 12:58:49 1998 Ian Lance Taylor <ian@cygnus.com>
11409
11410 * configure.in: Do build expect, dejagnu, and cvssrc for a cygwin32
11411 host.
11412
11413 * config.guess: Use ${UNAME_MACHINE} rather than i386 for cygwin32
11414 and mingw32.
11415
11416Wed Jan 28 10:26:37 1998 Manfred Hollstein <manfred@s-direktnet.de>
11417
11418 * Makefile.in (BASE_FLAGS_TO_PASS): Remove passing $(local_prefix)
11419 here as it is not defined in the toplevel Makefile.
11420
11421Tue Jan 27 23:25:06 1998 Manfred Hollstein <manfred@s-direktnet.de>
11422
11423 * configure (package_makefile_rules_frag): New variable, which names
11424 a file with generic rules, ...
11425 Change comment to mention we now have FIVE parts.
11426 * configure: Undo last change.
11427
11428Tue Jan 27 23:15:55 1998 Lassi A. Tuura <lat@iki.fi>
11429
11430 * config.guess: More accurate determination of HP processor types.
11431 * config.sub: More accurate determination of HP processor types.
11432
11433Sat Jan 24 01:59:45 1998 Manfred Hollstein <manfred@s-direktnet.de>
11434
11435 * configure (package_makefile_frag): Move inserting the
11436 ${package_makefile_frag} to where it should be according
11437 to the comment.
11438
ba73c63f 11439Fri Jan 23 00:29:28 1998 Philip Blundell <pb@nexus.co.uk>
252b5132
RH
11440
11441 * config.guess: Add support for Linux/ARM.
11442
11443Thu Jan 22 15:14:01 1998 Fred Fish <fnf@cygnus.com>
11444
11445 * .cvsignore: Remove *-info and *-install since they match
11446 release-info and mpw-install, which we don't want to just ignore.
11447
11448Thu Jan 22 01:38:33 1998 Richard Henderson <rth@cygnus.com>
11449
11450 * configure.in: Revert 3 Jan change for alpha-linux-gnulibc1.
11451
11452Sat Jan 17 21:28:08 1998 Pieter Nagel <pnagel@epiuse.co.za>
11453
11454 * Makefile.in (FLAGS_TO_PASS): Pass down gcc_include_dir and
11455 local_prefix to sub-make invocations.
11456
11457Sat Jan 17 21:04:59 1998 H.J. Lu (hjl@gnu.org)
11458
11459 * configure.in: Check makefile fragments in the source
11460 directory.
11461
11462Fri Jan 16 00:41:37 1998 Alexandre Oliva <oliva@dcc.unicamp.br>
11463
ba73c63f
JM
11464 * configure.in: Check whether host and target makefile
11465 fragments exist before adding them to *_makefile_frag.
252b5132
RH
11466
11467Wed Jan 14 23:39:10 1998 Bob Manson <manson@charmed.cygnus.com>
11468
11469 * configure.in (target_configdirs): Add cygmon for sparc64-elf.
ba73c63f 11470
252b5132
RH
11471Wed Jan 14 12:48:07 1998 Keith Seitz <keiths@pizza.cygnus.com>
11472
11473 * configure.in: Make sure we only replace RPATH_ENVVAR on
11474 lines which begin with RPATH_ENVVAR, i.e. add "^" to the
11475 regexp to sed.
11476
11477 * Makefile.in (BASE_FLAGS_TO_PASS): Pass RRPATH_ENVVAR down
11478 to sub-makes.
11479
114801998-01-13 Lee Iverson (leei@ai.sri.com)
11481
11482 * config-ml.in (multi-do): LDFLAGS must include multilib
11483 designator.
11484
11485Tue Jan 13 01:13:24 1998 Robert Lipe (robertl@dgii.com)
11486
11487 * config.guess: Recognize i[3456]-i586-UnixWare7-sysv5.
11488
11489Sun Jan 4 01:06:55 1998 Mumit Khan <khan@xraylith.wisc.edu>
11490
11491 * config.sub: Add mingw32 support.
11492 * configure.in: Likewise.
252b5132
RH
11493
11494Sat Jan 3 12:11:05 1998 Franz Sirl <franz.sirl-kernel@lauterbach.com>
11495
11496 * configure.in: Finalize support for {alpha|powerpc}*-*-linux-gnulibc1
11497
11498Sun Dec 28 11:28:58 1997 Jeffrey A Law (law@cygnus.com)
11499
11500 * Makefile.in (INSTALL_TARGET): Do install-gcc first.
11501 * configure (gxx_include_dir): Provide a definition for subdirs
11502 which do not use autoconf.
11503
11504Wed Dec 24 22:46:55 1997 Jeffrey A Law (law@cygnus.com)
11505
11506 * config.guess: Sync with egcs. Picks up new alpha support,
11507 BeOS & some additional linux support.
11508
ba73c63f 11509Tue Dec 23 12:44:24 1997 Jeffrey A Law (law@cygnus.com)
252b5132
RH
11510
11511 * config.guess: HP 9000/803 is a PA1.1 machine.
11512
ba73c63f
JM
11513Mon Dec 22 02:39:24 1997 Richard Henderson <rth@cygnus.com>
11514
11515 * configure.in: It's alpha*-...
252b5132
RH
11516
11517Sun Dec 21 16:53:12 1997 H.J. Lu (hjl@gnu.ai.mit.edu)
11518
ba73c63f
JM
11519 * configure.in (host_makefile_frag, target_makefile_frag):
11520 Handle multiple config files.
11521 (alpha-*-linux*): Treat alpha-*-linux* as alpha-*-linux* and
11522 alpha-*-*.
252b5132
RH
11523
11524Thu Dec 18 13:13:03 1997 Doug Evans <devans@canuck.cygnus.com>
11525
11526 * mkdep: New file.
11527
11528Wed Dec 17 09:53:02 1997 Michael Meissner <meissner@cygnus.com>
11529
11530 * configure.in (d30v-*-*): Allow configuring of libide, vmake, etc.
11531
11532Tue Dec 16 17:36:05 1997 Ian Lance Taylor <ian@cygnus.com>
11533
11534 * Makefile.in: Add libgui directory.
11535 (GDB_TK): Add all-libgui.
11536 * configure.in: Add libgui directory.
11537 * configure: Add all-libgui to GDB_TK.
11538
11539Mon Dec 15 16:12:28 1997 Nick Clifton <nickc@cygnus.com>
11540
11541 * config-ml.in (multidirs): Add m32r to multilib list.
11542
11543Fri Dec 12 10:43:31 1997 Brendan Kehoe <brendan@canuck.cygnus.com>
11544
11545 * Makefile.in (all-target-gperf): Change dependency to
11546 all-target-libstdc++.
11547
11548Thu Dec 11 23:30:51 1997 Fred Fish <fnf@ninemoons.com>
11549
11550 * config.guess: Add BeOS support.
11551
11552Wed Dec 10 15:10:38 1997 Ian Lance Taylor <ian@cygnus.com>
11553
11554 Source directory cvs renamed to cvssrc:
11555 * configure.in (host_tools): Change cvs to cvssrc.
11556 (native_only): Likewise.
11557 (noconfigdirs) [various cases]: Likewise.
11558 * Makefile.in (ALL_MODULES): Change all-cvs to all-cvssrc.
11559 (CROSS_CHECK_MODULES): Change check-cvs to check-cvssrc.
11560 (INSTALL_MODULES): Change install-cvs to install-cvssrc.
11561 (CLEAN_MODULES): Change clean-cvs to clean-cvssrc.
11562 (all-cvssrc): Rename target from all-cvs.
11563
11564Wed Dec 3 07:55:59 1997 Jeffrey A Law (law@cygnus.com)
11565
11566 * configure (gxx_include_dir): Fix thinko.
11567
11568Tue Dec 2 10:55:34 1997 Jeffrey A Law (law@cygnus.com)
11569
11570 * Makefile.in (INSTALL_TARGET_CROSS): Define.
11571 (install-cross, install-gcc-cross): New targets.
11572
11573Tue Dec 2 10:08:31 1997 Nick Clifton <nickc@cygnus.com>
11574
11575 * configure.in (noconfigdirs): Add support for Thumb target.
11576
11577 * config.sub (maybe_os): Add support for Thumb target.
11578
11579Sun Nov 30 16:12:27 1997 Bob Manson <manson@charmed.cygnus.com>
11580
11581 * Makefile.in: Add rules for cygmon.
11582
11583 * configure.in: Build cygmon for sparc-elf and sparclite-aout.
11584
11585Thu Nov 27 01:31:30 1997 Jeffrey A Law (law@cygnus.com)
11586
11587 * Makefile.in (INSTALL_TARGET): Do install-gcc first.
11588 * configure (gxx_include_dir): Provide a definition for subdirs
11589 which do not use autoconf.
11590
11591Wed Nov 26 11:53:33 1997 Keith Seitz <keiths@onions.cygnus.com>
11592
11593 * Makefile.in, configure, configure.in, ChangeLog: merge with foundry's
35590697 11594 11/18/97 build
252b5132
RH
11595
11596Wed Nov 26 16:08:50 1997 Jeffrey A Law (law@cygnus.com)
11597
11598 * From Franz Sirl.
11599 * config.guess (powerpc*-*-linux): Handle glibc2 beta release
11600 found on RedHat Linux systems.
11601
11602Fri Nov 21 09:51:01 1997 Jeffrey A Law (law@cygnus.com)
11603
11604 * config.guess (alpha stuff): Merge with FSF to avoid incorrect
11605 guesses.
11606
11607Thu Nov 13 11:38:37 1997 Jeffrey A Law (law@cygnus.com)
11608
11609 * configure.in (i[3456]86-ncr-sysv4.3*): Tweak.
11610
11611Mon Nov 10 15:23:21 1997 H.J. Lu <hjl@gnu.ai.mit.edu>
11612
11613 * ltmain.sh: If mkdir fails, check whether the directory was created
11614 anyhow by some other process.
11615
11616Mon Nov 10 14:38:03 1997 Michael Meissner <meissner@cygnus.com>
11617
11618 * configure.in (d30v-*-*): Configure all directories.
11619
11620Sun Nov 9 17:36:20 1997 Michael Meissner <meissner@cygnus.com>
11621
11622 * configure.in (d30v-*-*): Configure newlib, libiberty directories
11623 for the D30V.
11624
11625Sat Nov 8 14:42:59 1997 Michael Meissner <meissner@cygnus.com>
11626
11627 * configure.in (d30v-*-*): Configure target-libgloss on the D30V.
11628
11629Fri Nov 7 10:34:09 1997 Rob Savoye <rob@darkstar.cygnus.com>
11630
80413487
RH
11631 * include/libiberty.h: Add extern "C" { so it can be used with C++
11632 progrms.
11633 * include/remote-sim.h: Add extern "C" { so it can be used with C++
11634 programs.
252b5132
RH
11635
11636Thu Oct 30 11:09:29 1997 Michael Meissner <meissner@cygnus.com>
11637
11638 * configure.in (d30v-*-*): Configure GCC now.
11639
11640Mon Oct 27 13:17:24 1997 Stan Shebs <shebs@andros.cygnus.com>
11641
11642 * configure.in: Remove a "second pass" of tweaking noconfigdirs,
11643 is no longer needed.
11644
11645Mon Oct 27 12:03:53 1997 Jason Merrill <jason@yorick.cygnus.com>
11646
11647 * Makefile.in: check-target-libio depends on all-target-libstdc++.
11648
11649Sun Oct 26 11:48:27 1997 Manfred Hollstein (manfred@s-direktnet.de)
11650
11651 * Makefile.in (bootstrap-lean): Combined with `normal' bootstrap
11652 targets using "$@" to provide support for similar but not identical
11653 targets without having to duplicate code.
11654
11655Mon Oct 20 15:28:49 1997 Klaus K"ampf <kkaempf@progis.de>
11656
11657 * makefile.vms: Fix to work with DEC C.
11658
11659Tue Oct 7 23:58:57 1997 Gavin Koch <gavin@cygnus.com>
11660
11661 * config.sub: Add mips-tx39-elf to marketing names.
11662
11663Tue Oct 7 14:24:41 1997 Ian Lance Taylor <ian@cygnus.com>
11664
11665 * ltmain.sh: Handle symlinks in generated script.
11666
11667Wed Oct 1 13:11:27 1997 Ian Lance Taylor <ian@cygnus.com>
11668
11669 * configure: Handle autoconf style directory options: --bindir,
11670 --datadir, --includedir, --infodir, --libdir, --libexecdir,
11671 --mandir, --oldincludedir, --sbindir, --sharedstatedir,
11672 --sysconfdir.
11673 * Makefile.in (sbindir, libexecdir, sysconfdir): New variables.
11674 (sharedstatedir, localstatedir, oldincludedir): New variables.
11675 (BASE_FLAGS_TO_PASS): Pass down bindir, datadir, includedir,
11676 infodir, libdir, libexecdir, localstatedir, mandir, oldincludedir,
11677 sbindir, sharedstatedir, and sysconfdir.
11678
11679Mon Sep 29 00:38:08 1997 Aaron Jackson <jackson@negril.msrce.howard.edu>
11680
11681 * Makefile.in (bootstrap-lean): New target.
11682
11683Wed Sep 24 18:06:27 1997 Stu Grossman <grossman@babylon-5.cygnus.com>
11684
11685 * configure.in (d30v): Remove tcl, tk, expect, gdb, itcl, tix, db,
35590697 11686 sn, and gnuserv from noconfigdirs.
252b5132
RH
11687
11688Wed Sep 24 15:18:32 1997 Ian Lance Taylor <ian@cygnus.com>
11689
11690 * ltmain.sh: Tweak shell pattern to avoid bug in NetBSD /bin/sh.
11691
11692Thu Sep 18 23:58:27 1997 Jeffrey A Law (law@cygnus.com)
11693
ba73c63f 11694 * Makefile.in (cross): New target.
252b5132
RH
11695
11696Thu Sep 18 21:43:23 1997 Alexandre Oliva <oliva@dcc.unicamp.br>
ba73c63f 11697 Jeff Law <law@cygnus.com>
252b5132
RH
11698
11699 * Makefile.in (bootstrap2, bootstrap3): New targets.
11700 (all-bootstrap): Remove outdated and confusing target.
11701 (bootstrap, bootstrap2, bootstrap3): Don't pass BOOT_CFLAGS down.
11702
afb8d725
JM
11703Thu Sep 18 15:37:42 1997 Andrew Cagney <cagney@b1.cygnus.com>
11704
11705 * configure (tooldir): enable_gdbtk=YES for cygwin32, NO for
35590697 11706 windows. Consistent with gdb/configure.
afb8d725 11707
252b5132
RH
117081997-09-15 02:37 Ulrich Drepper <drepper@cygnus.com>
11709
252b5132
RH
11710 * configure.in: Name Linux target fragment.
11711
11712 * configure: Rewrite so that project Makefile fragment is inserted
11713 first and appears last in the resulting Makefile.
11714
11715Tue Sep 16 09:55:07 1997 Andrew Cagney <cagney@b1.cygnus.com>
11716
11717 * Makefile.in (install-itcl): Install tcl first.
11718
252b5132 11719Fri Sep 12 16:19:20 1997 Geoffrey Noer <noer@cygnus.com>
ba73c63f 11720
252b5132
RH
11721 * configure.in: remove bison from noconfigdirs for Cygwin32 host
11722
11723Thu Sep 11 16:40:46 1997 H.J. Lu (hjl@gnu.ai.mit.edu)
11724
11725 * Makefile.in (local-distclean): Also remove mh-frag mt-frag.
11726
11727 * configure.in (skipdirs): Add target-librx for Linux.
11728 (alpha-*-linux*): Use config/mh-elfalphapic and config/mt-elfalphapic.
11729
11730Wed Sep 10 21:29:54 1997 Jeffrey A Law (law@cygnus.com)
11731
11732 * Makefile.in (bootstrap): New target.
11733
11734Wed Sep 10 15:19:22 1997 Jeffrey A Law (law@cygnus.com)
11735
11736 * config.sub: Accept 'amigados' for backward compatability.
11737
11738Mon Sep 8 20:46:20 1997 Ian Lance Taylor <ian@cygnus.com>
11739
11740 * config.guess: Merge with FSF.
11741
ba73c63f
JM
11742Sun Sep 7 23:18:32 1997 Fred Fish <fnf@ninemoons.com>
11743
11744 * config.sub: Change 'amigados' to 'amigaos' to match current usage.
11745
252b5132
RH
11746Sun Sep 7 15:55:28 1997 Gavin Koch <gavin@cygnus.com>
11747
11748 * config.sub: Add "marketing-names" patch.
11749
11750Fri Sep 5 16:11:28 1997 Joel Sherrill (joel@OARcorp.com)
11751
80413487 11752 * configure.in (*-*-rtems*): Do not build libgloss for rtems.
252b5132
RH
11753
11754Fri Sep 5 12:27:17 1997 Jeffrey A Law (law@cygnus.com)
11755
11756 * config.sub: Handle v850-elf.
11757
ba73c63f
JM
11758Wed Sep 3 22:01:58 1997 Fred Fish <fnf@ninemoons.com>
11759
11760 * .cvsignore (*-install): Remove.
11761
252b5132
RH
11762Wed Sep 3 12:15:24 1997 Chris Provenzano <proven@cygnus.com>
11763
11764 * ltconfig: Set CONFIG_SHELL in libtool.
11765 * ltmain.sh: Use CONFIG_SHELL instead of /bin/sh
11766
11767Mon Sep 1 16:45:44 1997 Jim Wilson <wilson@cygnus.com>
11768
11769 * configure.in (target_subdir): Set to libraries if enable_multilib.
11770
11771Wed Aug 27 16:15:11 1997 Jim Wilson <wilson@cygnus.com>
11772
11773 * config.guess: Update from gcc directory.
11774
11775Tue Aug 26 16:46:46 1997 Andrew Cagney <cagney@b1.cygnus.com>
11776
11777 * Makefile.in (all-sim): Depends on all-readline.
11778
11779Wed Aug 20 19:57:37 1997 Jason Merrill <jason@yorick.cygnus.com>
11780
11781 * Makefile.in (BISON, YACC): Use $$s.
11782 (all-bison): Depend on all-texinfo.
11783
11784Tue Aug 19 01:41:32 1997 Jason Merrill <jason@yorick.cygnus.com>
11785
11786 * Makefile.in (BISON): Add -L flag.
11787 (YACC): Likewise.
11788
11789Mon Aug 18 11:30:50 1997 Nick Clifton <nickc@cygnus.com>
11790
35590697
AJ
11791 * configure.in (noconfigdirs): Add support for v850e target.
11792
252b5132
RH
11793 * config.sub (maybe_os): Add support for v850e target.
11794
11795Mon Aug 18 11:30:50 1997 Nick Clifton <nickc@cygnus.com>
11796
35590697
AJ
11797 * configure.in (noconfigdirs): Add support for v850ea target.
11798
252b5132
RH
11799 * config.sub (maybe_os): Add support for v850ea target.
11800
11801Mon Aug 18 09:24:06 1997 Gavin Koch <gavin@cygnus.com>
11802
11803 * config.sub: Add mipstx39. Delete r3900.
11804
11805Mon Aug 18 17:20:10 1997 Jason Molenda (crash@godzilla.cygnus.co.jp)
11806
11807 * Makefile.in (all-autoconf): Depends on all-texinfo.
11808
11809Fri Aug 15 23:09:26 1997 Michael Meissner <meissner@cygnus.com>
11810
11811 * config-ml.in ({powerpc,rs6000}*-*-*): Update to current AIX and
11812 eabi targets.
11813
11814Thu Aug 14 14:42:17 1997 Ian Lance Taylor <ian@cygnus.com>
11815
11816 * configure: Get CFLAGS and CXXFLAGS from Makefile, if possible.
11817
11818 * configure: When handling a Canadian Cross, handle YACC as well as
11819 BISON. Just set BISON to bison. When setting YACC, prefer bison.
80413487 11820 * Makefile.in (all-bison): Depend upon all-texinfo.
252b5132
RH
11821
11822Tue Aug 12 20:09:48 1997 Jason Merrill <jason@yorick.cygnus.com>
11823
11824 * Makefile.in (BISON): bison, not byacc or bison -y.
11825 (YACC): bison -y or byacc or yacc.
11826 (various): Add *-bison as appropriate.
11827 (taz): No need to mess with BISON anymore.
11828
11829Tue Aug 12 22:33:08 1997 Ian Lance Taylor <ian@cygnus.com>
11830
11831 * configure: If OSTYPE matches *win32*, try to find a good value for
11832 CONFIG_SHELL.
11833
11834Sun Aug 10 14:41:11 1997 Ian Lance Taylor <ian@cygnus.com>
11835
11836 * Makefile.in (taz): Get the version number from AM_INIT_AUTOMAKE in
11837 configure.in if it is present.
11838
11839Sat Aug 9 00:58:01 1997 Ian Lance Taylor <ian@cygnus.com>
11840
11841 * Makefile.in (LD_FOR_TARGET): Change ld.new to ld-new.
11842
11843Fri Aug 8 16:30:13 1997 Doug Evans <dje@canuck.cygnus.com>
11844
11845 * config.sub: Recognize `arc' cpu.
11846 * configure.in: Likewise.
11847 * config-ml.in: Likewise.
11848
11849Thu Aug 7 11:02:34 1997 Ian Lance Taylor <ian@cygnus.com>
11850
11851 * Makefile.in ($(INSTALL_X11_MODULES)): Depend upon installdirs.
11852
11853Wed Aug 6 16:27:29 1997 Chris Provenzano <proven@cygnus.com>
11854
11855 * configure: Changed sed delimiter from ':' to '|' when
11856 attempting to substitute ${config_shell} for SHELL. On
11857 NT ${config_shell} may contain a ':' in it.
11858
11859Wed Aug 6 12:29:05 1997 Jason Merrill <jason@yorick.cygnus.com>
11860
11861 * Makefile.in (EXTRA_GCC_FLAGS): Fix for non-bash shells.
11862
11863Wed Aug 6 00:42:35 1997 Ian Lance Taylor <ian@cygnus.com>
11864
11865 * Makefile.in (AS_FOR_TARGET): Change as.new to as-new.
11866
11867Tue Aug 5 14:08:51 1997 Ian Lance Taylor <ian@cygnus.com>
11868
11869 * Makefile.in (NM_FOR_TARGET): Change nm.new to nm-new.
11870
11871 * ylwrap: If the program is a relative path, force it to be
11872 absolute.
11873
11874Tue Aug 5 12:12:44 1997 Andrew Cagney <cagney@b1.cygnus.com>
11875
11876 * configure (tooldir): Set BISON to `bison -y' and not just bison.
11877
11878Mon Aug 4 22:59:02 1997 Andrew Cagney <cagney@b1.cygnus.com>
11879
11880 * Makefile.in (CC_FOR_TARGET): When winsup/Makefile present,
35590697
AJ
11881 correctly specify the target build directory $(TARGET_SUBDIR)/winsup
11882 for libraries.
252b5132
RH
11883
11884Mon Aug 4 12:40:24 1997 Jason Merrill <jason@yorick.cygnus.com>
11885
11886 * Makefile.in (EXTRA_GCC_FLAGS): Fix handling of macros with values
35590697 11887 separated by spaces.
252b5132
RH
11888
11889Thu Jul 31 19:49:49 1997 Ian Lance Taylor <ian@cygnus.com>
11890
11891 * ylwrap: New file.
11892 * Makefile.in (DEVO_SUPPORT): Add ylwrap.
11893
11894 * ltmain.sh: Handle /bin/sh at start of install program.
11895
11896 * Makefile.in (DEVO_SUPPORT): Add ltconfig, ltmain.sh, and missing.
11897
11898 * ltconfig, ltmain.sh: New files, from libtool 1.0.
11899 * missing: New file, from automake 1.2.
11900
11901Thu Jul 24 12:57:56 1997 Ian Lance Taylor <ian@cygnus.com>
11902
11903 * Makefile.in: Treat tix like tk, putting it in X11_MODULES. Add
11904 check-tk to CHECK_X11_MODULES.
11905
11906Wed Jul 23 17:03:29 1997 Ian Lance Taylor <ian@cygnus.com>
11907
11908 * config.sub: Merge with FSF.
11909
11910Tue Jul 22 19:08:29 1997 Ian Lance Taylor <ian@cygnus.com>
11911
11912 * config.guess: Merge with FSF.
11913
11914Tue Jul 22 14:50:42 1997 Robert Hoehne <robert.hoehne@Mathematik.TU-Chemnitz.DE>
11915
11916 * configure: Treat msdosdjgpp like go32.
11917 * configure.in: Likewise. Don't remove gprof for go32.
11918
11919 * configure: Change Makefile.tem2 to Makefile.tm2.
11920
11921Mon Jul 21 10:31:26 1997 Stephen Peters <speters@cygnus.com>
11922
11923 * configure.in (noconfigdirs): For alpha-dec-osf*, don't ignore grep.
11924
11925Tue Jul 15 14:33:03 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
11926
11927 * install-sh (chmodcmd): Set to null if the DST directory already
11928 exists. Same as Nov 11th change.
11929
11930Mon Jul 14 11:01:15 1997 Martin M. Hunt <hunt@cygnus.com>
11931
35590697 11932 * configure (GDB_TK): Needs itcl and tix.
252b5132
RH
11933
11934Mon Jul 14 00:32:10 1997 Jason Merrill <jason@yorick.cygnus.com>
11935
11936 * config.guess: Update from FSF.
11937
11938Fri Jul 11 11:57:11 1997 Martin M. Hunt <hunt@cygnus.com>
11939
11940 * Makefile.in (GDB_TK): Depend on itcl and tix.
11941
11942Fri Jul 4 13:25:31 1997 Ian Lance Taylor <ian@cygnus.com>
11943
11944 * Makefile.in (INSTALL_PROGRAM_ARGS): New variable.
11945 (INSTALL_PROGRAM): Use $(INSTALL_PROGRAM_ARGS).
11946 (INSTALL_SCRIPT): New variable.
11947 (BASE_FLAGS_TO_PASS): Pass down INSTALL_SCRIPT.
11948 * configure.in: If host is *-*-cygwin32*, set INSTALL_PROGRAM_ARGS
11949 to -x.
11950 * install-sh: Add support for -x option.
11951
11952Mon Jun 30 15:51:30 1997 Ian Lance Taylor <ian@cygnus.com>
11953
11954 * configure.in, Makefile.in: Treat tix like itcl.
11955
11956Thu Jun 26 13:59:19 1997 Ian Lance Taylor <ian@cygnus.com>
11957
11958 * Makefile.in (WINDRES): New variable.
11959 (WINDRES_FOR_TARGET): New variable.
11960 (BASE_FLAGS_TO_PASS): Add WINDRES_FOR_TARGET.
11961 (EXTRA_HOST_FLAGS): Add WINDRES.
11962 (EXTRA_TARGET_FLAGS): Add WINDRES.
11963 (EXTRA_GCC_FLAGS): Add WINDRES.
11964 ($(DO_X)): Pass down WINDRES.
11965 ($(CONFIGURE_TARGET_MODULES)): Set WINDRES when configuring.
11966 * configure: Treat WINDRES like DLLTOOL, and WINDRES_FOR_TARGET like
11967 DLLTOOL_FOR_TARGET.
11968
11969Wed Jun 25 15:01:26 1997 Felix Lee <flee@cygnus.com>
11970
11971 * configure.in: configure sim before gdb for win32-x-ppc
11972
11973Wed Jun 25 12:18:54 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
11974
11975 Move gperf into the toplevel, from libg++.
11976 * configure.in (target_tools): Add target-gperf.
11977 (native_only): Add target-gperf.
11978 * Makefile.in (all-target-gperf): New target, depend on
11979 all-target-libg++.
11980 (configure-target-gperf): Empty rule.
11981 (ALL_TARGET_MODULES): Add all-target-gperf.
11982 (CONFIGURE_TARGET_MODULES): Add configure-target-gperf.
11983 (CHECK_TARGET_MODULES): Add check-target-gperf.
11984 (INSTALL_TARGET_MODULES): Add install-target-gperf.
11985 (CLEAN_TARGET_MODULES): Add clean-target-gperf.
11986
11987Mon Jun 23 10:51:53 1997 Jeffrey A Law (law@cygnus.com)
35590697 11988
252b5132
RH
11989 * config.sub (mn10200): Recognize new basic machine.
11990
11991Thu Jun 19 14:16:42 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
11992
11993 * configure.in: Don't set ENABLE_MULTILIB, so we'll be passing
11994 --enable-multilib down to subdirs; setting TARGET_SUBDIR was enough.
11995
11996Tue Jun 17 15:31:20 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
11997
11998 * configure.in: If we're building mips-sgi-irix6* native, turn on
11999 ENABLE_MULTILIB and set TARGET_SUBDIR.
12000
12001Tue Jun 17 12:20:59 1997 Tom Tromey <tromey@cygnus.com>
12002
12003 * Makefile.in (all-sn): Depend on all-grep.
12004
12005Mon Jun 16 11:11:10 1997 Ian Lance Taylor <ian@cygnus.com>
12006
12007 * configure.in: Use mh-ppcpic and mt-ppcpic for powerpc*-* targets.
12008
12009 * configure: Set CFLAGS and CXXFLAGS, and substitute them into
12010 Makefile. From Jeff Makey <jeff@cts.com>.
12011 * Makefile.in: Add comment for CFLAGS and CXXFLAGS.
12012
12013 * Makefile.in (DISTBISONFILES): Remove.
12014 (taz): Don't futz with DISTBISONFILES. Change BISON to use
12015 $(DEFAULT_YACC).
12016
12017 * configure.in: Build itl, db, sn, etc., when building for native
35590697 12018 cygwin32.
252b5132
RH
12019
12020 * Makefile.in (LD): New variable.
12021 (EXTRA_HOST_FLAGS): Pass down LD.
12022 ($(DO_X)): Likewise.
12023
12024Mon Jun 16 11:10:35 1997 Philip Blundell <Philip.Blundell@pobox.com>
12025
12026 * Makefile.in (INSTALL): Use $(SHELL) when executing install-sh.
12027
12028Fri Jun 13 10:22:56 1997 Bob Manson <manson@charmed.cygnus.com>
12029
12030 * configure.in (targargs): Strip out any supplied --build argument
35590697 12031 before adding our own. Always add --build.
252b5132
RH
12032
12033Thu Jun 12 21:12:28 1997 Bob Manson <manson@charmed.cygnus.com>
12034
12035 * configure.in (targargs): Pass --build if we're doing
12036 a cross-compile.
12037
12038Fri Jun 6 21:38:40 1997 Rob Savoye <rob@chinadoll.cygnus.com>
12039
ba73c63f 12040 * configure: Use '|' instead of ":" as the separator in
252b5132
RH
12041 sed. Otherwise sed chokes on NT path names with drive
12042 designators. Also look for "?:*" as the leading characters in an
12043 absolute pathname.
12044
12045Mon Jun 2 13:05:20 1997 Gavin Koch <gavin@cygnus.com>
12046
12047 * config.sub: Support for r3900.
12048
12049Wed May 21 17:33:31 1997 Ian Lance Taylor <ian@cygnus.com>
12050
12051 * configure.in: Use install-sh, not install.sh.
12052
12053Wed May 14 16:06:51 1997 Ian Lance Taylor <ian@cygnus.com>
12054
12055 * Makefile.in (taz): Improve check for BISON so it doesn't try to
12056 apply it twice.
12057
12058Fri May 9 17:22:05 1997 Ian Lance Taylor <ian@cygnus.com>
12059
12060 * Makefile.in (INSTALL_MODULES): Put install-opcodes before
12061 install-binutils.
12062
12063Thu May 8 17:29:50 1997 Ian Lance Taylor <ian@cygnus.com>
12064
12065 * Makefile.in: Add automake targets.
12066 * configure.in (host_tools): Add automake.
12067
12068Tue May 6 15:49:52 1997 Ian Lance Taylor <ian@cygnus.com>
12069
12070 * configure: Default CXX to c++, not gcc.
12071 * Makefile.in (CXX): Set to c++, not gcc.
12072 (CXX_FOR_TARGET): When cross, transform c++, not gcc.
12073
12074Thu May 1 10:11:43 1997 Geoffrey Noer <noer@cygnus.com>
12075
12076 * install-sh: try appending a .exe if source file doesn't
12077 exist
12078
12079Wed Apr 30 12:05:36 1997 Jason Merrill <jason@yorick.cygnus.com>
12080
12081 * configure.in: Turn on multilib by default.
12082 (cross_only): Remove target-libiberty.
12083
12084 * Makefile.in (all-gcc): Don't depend on libiberty.
12085
12086Mon Apr 28 18:39:45 1997 Michael Snyder <msnyder@cleaver.cygnus.com>
12087
12088 * config.guess: improve algorithm for recognizing Gnu Hurd x86.
12089
12090Thu Apr 24 19:30:07 1997 Ian Lance Taylor <ian@cygnus.com>
12091
12092 * Makefile.in (DEVO_SUPPORT): Add mpw-install.
12093 (DISTBISONFILES): Add ld/Makefile.in
12094
12095Tue Apr 22 17:17:28 1997 Geoffrey Noer <noer@pizza.cygnus.com>
12096
12097 * configure.in: if target is cygwin32 but host isn't cygwin32,
12098 don't configure gdb tcl tk expect, not just gdb.
12099
12100Mon Apr 21 13:33:39 1997 Tom Tromey <tromey@cygnus.com>
12101
12102 * configure.in: Added gnuserv everywhere sn appears.
12103
12104 * Makefile.in (ALL_MODULES): Added all-gnuserv.
12105 (CROSS_CHECK_MODULES): Added check-gnuserv.
12106 (INSTALL_MODULES): Added install-gnuserv.
12107 (CLEAN_MODULES): Added clean-gnuserv.
12108 (all-gnuserv): New target.
12109
12110Thu Apr 17 13:57:06 1997 Per Fogelstrom <pefo@openbsd.org>
12111
12112 * config.guess: Fixes for MIPS OpenBSD systems.
12113
12114Tue Apr 15 12:21:07 1997 Ian Lance Taylor <ian@cygnus.com>
12115
12116 * Makefile.in (INSTALL_XFORM): Remove.
12117 (BASE_FLAGS_TO_PASS): Remove INSTALL_XFORM.
12118
12119 * mkinstalldirs: New file, copied from automake.
12120 * Makefile.in (installdirs): Rename from install-dirs. Use
12121 mkinstalldirs. Change all users.
12122 (DEVO_SUPPORT): Add mkinstalldirs.
12123
12124Mon Apr 14 11:21:38 1997 Ian Lance Taylor <ian@cygnus.com>
12125
12126 * install-sh: Rename from install.sh.
12127 * Makefile.in (INSTALL): Change install.sh to install-sh.
12128 (DEVO_SUPPORT): Likewise.
12129
12130 * configure: Use ${config_shell} with ${moveifchange}. From Thomas
12131 Graichen <graichen@rzpd.de>.
12132
12133Fri Apr 11 16:37:10 1997 Niklas Hallqvist <niklas@appli.se>
12134
12135 * config.guess: Recognize OpenBSD systems correctly.
12136
12137Fri Apr 11 17:07:04 1997 Jason Molenda (crash@godzilla.cygnus.co.jp)
12138
12139 * README, Makefile.in (ETC_SUPPORT): Remove references to
12140 cfg-paper*, configure.{texi,man,info*}._
12141
12142Sun Apr 6 18:47:57 1997 Andrew Cagney <cagney@kremvax.cygnus.com>
12143
12144 * Makefile.in (all.normal): Ensure that gcc is built after all
12145 the x11 - ie gdb - targets.
12146
12147Tue Apr 1 16:28:50 1997 Klaus Kaempf <kkaempf@progis.de>
12148
12149 * makefile.vms: Don't run conf-a-gas.
12150
12151Mon Mar 31 16:26:55 1997 Joel Sherrill <joel@oarcorp.com>
12152
80413487 12153 * configure.in (hppa1.1-*-rtems*): New target, like hppa-*-*elf*.
252b5132
RH
12154
12155Sun Mar 30 12:38:27 1997 Fred Fish <fnf@cygnus.com>
12156
12157 * configure.in: Remove noconfigdirs case since gdb also
12158 configures and builds for tic80-coff.
12159
12160Fri Mar 28 18:28:52 1997 Ian Lance Taylor <ian@cygnus.com>
12161
12162 * configure: Set cache_file to config.cache.
12163 * Makefile.in (local-distclean): Remove config.cache.
12164
12165Wed Mar 26 18:49:39 1997 Ian Lance Taylor <ian@cygnus.com>
12166
12167 * COPYING: Update FSF address.
12168
12169Wed Mar 26 10:38:25 1997 Michael Meissner <meissner@cygnus.com>
12170
12171 * configure.in (tic80-*-*): Remove G++ libraries and libgloss from
12172 noconfigdirs.
12173
12174Mon Mar 24 15:02:39 1997 Ian Lance Taylor <ian@cygnus.com>
12175
12176 * Makefile.in (install-dirs): Don't crash if prefix, and hence
12177 MAKEDIRS, is empty.
12178
12179Mon Mar 24 12:40:55 1997 Doug Evans <dje@canuck.cygnus.com>
12180
12181 * config.sub: Tweak mn10300 entry.
12182
12183Fri Mar 21 15:35:27 1997 Michael Meissner <meissner@cygnus.com>
12184
12185 * configure.in (host_tools): Put sim before gdb, so gdb's
12186 configure.tgt can determine if the simulator was configured.
12187
12188Sun Mar 16 16:07:08 1997 Fred Fish <fnf@cygnus.com>
12189
12190 * config.sub: Move BeOS $os case to be with other Cygnus
12191 local cases.
12192
12193Sun Mar 16 01:34:55 1997 Martin Hunt <hunt@cygnus.com>
12194
12195 * config.sub: Remove misplaced comment that broke Linux.
12196
12197Sat Mar 15 22:50:15 1997 Fred Fish <fnf@cygnus.com>
12198
12199 * config.sub: Add BeOS support.
12200
12201Mon Mar 10 13:30:11 1997 Tom Tromey <tromey@cygnus.com>
12202
12203 * Makefile.in (CHECK_X11_MODULES): Don't run check-tk.
12204
12205Wed Mar 5 12:09:29 1997 Martin <hunt@cygnus.com>
12206
12207 * configure.in (noconfigdirs): Remove tcl and tk from
12208 noconfigdirs for cygwin32 builds.
12209
12210Fri Feb 28 18:20:15 1997 Fred Fish <fnf@cygnus.com>
12211
12212 * configure.in (tic80-*-*): Remove ld from noconfigdirs.
12213
12214Thu Feb 27 14:57:26 1997 Ken Raeburn <raeburn@cygnus.com>
12215
12216 * Makefile.in (GAS_SUPPORT_DIRS, BINUTILS_SUPPORT_DIRS): Remove
12217 make-all.com, use makefile.vms instead.
12218
12219Tue Feb 25 18:46:14 1997 Stan Shebs <shebs@andros.cygnus.com>
12220
12221 * config.sub: Accept -lnews*.
12222
12223Tue Feb 25 13:19:14 1997 Andrew Cagney <cagney@kremvax.tpgi.com.au>
12224
12225 * configure.in (noconfigdirs): Disable target-newlib,
35590697 12226 target-examples and target-libiberty for d30v.
252b5132
RH
12227
12228Fri Feb 21 17:56:25 1997 Martin M. Hunt <hunt@pizza.cygnus.com>
12229
12230 * configure.in (noconfigdirs): Enable ld for d30v.
12231
12232Fri Feb 21 20:58:51 1997 Michael Meissner <meissner@cygnus.com>
12233
12234 * configure.in (tic80-*-*): Build compiler.
12235
12236Sun Feb 16 15:41:09 1997 Andrew Cagney <cagney@critters.cygnus.com>
12237
12238 * configure.in (d30v-*): Remove sim directory from list of
35590697 12239 unsupported d30v directories
252b5132
RH
12240
12241Tue Feb 18 17:32:42 1997 Martin M. Hunt <hunt@pizza.cygnus.com>
12242
35590697
AJ
12243 * config.sub, configure.in: Add d30v target cpu.
12244
252b5132
RH
12245Thu Feb 13 22:04:44 1997 Klaus Kaempf <kkaempf@progis.de>
12246
12247 * makefile.vms: New file.
12248 * make-all.com: Remove.
12249
12250Wed Feb 12 12:54:18 1997 Jim Wilson <wilson@cygnus.com>
12251
12252 * Makefile.in (EXTRA_GCC_FLAGS): Add LIBGCC2_DEBUG_CFLAGS.
12253
12254Sat Feb 8 20:36:49 1997 Michael Meissner <meissner@cygnus.com>
12255
12256 * Makefile.in (all-itcl): The rule is all-itcl, not all-tcl.
12257
12258Tue Feb 4 11:39:29 1997 Tom Tromey <tromey@cygnus.com>
12259
12260 * Makefile.in (ALL_MODULES): Added all-db.
12261 (CROSS_CHECK_MODULES): Addec check-db.
12262 (INSTALL_MODULES): Added install-db.
12263 (CLEAN_MODULES): Added clean-db.
12264
12265Mon Feb 3 13:29:36 1997 Ian Lance Taylor <ian@cygnus.com>
12266
12267 * config.guess: Merge with latest FSF sources.
12268
12269Tue Jan 28 09:20:37 1997 Tom Tromey <tromey@cygnus.com>
12270
12271 * Makefile.in (ALL_MODULES): Added all-itcl.
12272 (CROSS_CHECK_MODULES): Added check-itcl.
12273 (INSTALL_MODULES): Added install-itcl.
12274 (CLEAN_MODULES): Added clean-itcl.
12275
12276Thu Jan 23 01:44:27 1997 Geoffrey Noer <noer@cygnus.com>
12277
12278 * configure.in: build gdb for mn10200
12279
12280Fri Jan 17 15:32:15 1997 Doug Evans <dje@canuck.cygnus.com>
12281
12282 * Makefile.in (all-target-winsup): Depend on all-target-libio.
12283
12284Mon Jan 13 22:46:54 1997 Michael Meissner <meissner@tiktok.cygnus.com>
12285
12286 * configure.in (tic80-*-*): Turn off most targets right now.
12287
12288Fri Jan 3 16:04:03 1997 Ian Lance Taylor <ian@cygnus.com>
12289
12290 * Makefile.in (MAKEINFO): Check for the existence of the Makefile,
12291 rather than the makeinfo program.
12292 (do-info): Depend upon all-texinfo.
12293
12294Tue Dec 31 16:00:31 1996 Ian Lance Taylor <ian@cygnus.com>
12295
12296 * configure.in: Remove uses of config/mh-linux.
12297
12298 * config.sub, config.guess: Merge with latest FSF sources.
12299
12300Fri Dec 27 23:04:33 1996 Fred Fish <fnf@cygnus.com>
12301
12302 * config.sub (case $basic_machine): Add tic80 entries.
12303
12304Fri Dec 27 12:07:59 1996 Ian Lance Taylor <ian@cygnus.com>
12305
12306 * config.sub, config.guess: Merge with latest FSF sources.
12307
12308Wed Dec 18 22:46:39 1996 Stan Shebs <shebs@andros.cygnus.com>
12309
12310 * mpw-build.in: Build ld before gcc, use NewFolderRecursive.
12311 * mpw-config.in: Test for NewFolderRecursive.
12312 * mpw-install: Use symbolic name for startup filename.
12313 * mpw-README: Add various additional details.
12314
12315Wed Dec 18 13:11:46 1996 Jim Wilson <wilson@cygnus.com>
12316
12317 * configure.in (mips*-sgi-irix6*): Remove binutils from noconfigdirs.
12318
12319Wed Dec 18 10:29:31 1996 Jeffrey A Law (law@cygnus.com)
12320
12321 * configure.in: Do build gcc and the target libraries for
12322 the mn10200.
12323
12324Wed Dec 4 16:53:05 1996 Geoffrey Noer <noer@cygnus.com>
12325
12326 * configure.in: don't avoid building gdb for mn10300 any more
12327 * Makefile.in: double-quote GCC_FOR_TARGET line in EXTRA_GCC_FLAGS
12328 instead of single-quoting it.
12329
12330Tue Dec 3 23:26:50 1996 Jason Merrill <jason@yorick.cygnus.com>
12331
12332 * configure.in: Don't use --with-stabs on IRIX 6.
12333
12334Tue Dec 3 09:05:25 1996 Doug Evans <dje@canuck.cygnus.com>
12335
12336 * configure.in (m32r): Build gdb, libg++ now.
12337
12338Sun Dec 1 00:18:59 1996 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
12339
12340 * configure.in (mips*-sgi-irix6*): Remove gdb and related
12341 directories from noconfigdirs.
12342
12343Tue Nov 26 11:45:33 1996 Kim Knuttila <krk@cygnus.com>
12344
12345 * config.sub (basic_machine): added mips16 configuration
12346
12347Sat Nov 23 19:26:22 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12348
12349 * config.sub: Handle d10v-unknown.
12350
12351Sat Nov 23 10:23:01 1996 Gavin Koch <gavin@cygnus.com>
12352
12353 * config.sub: Handle v850-unknown.
12354
12355Thu Nov 21 16:19:44 1996 Geoffrey Noer <noer@cygnus.com>
12356
12357 * Makefile.in: add findutils
12358 * configure.in: add findutils to list of host_tools
12359
12360Wed Nov 20 10:09:01 1996 Jeffrey A Law (law@cygnus.com)
12361
12362 * config.sub: Handle mn10200 and mn10300.
12363
12364Tue Nov 19 16:35:14 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12365
12366 * configure.in (d10v-*): Do not build librx.
12367
12368Mon Nov 18 13:28:41 1996 Jeffrey A Law (law@cygnus.com)
12369
12370 * configure.in (mn10300): Build everything except gdb & libgloss.
12371
12372Wed Nov 13 14:59:46 1996 Per Bothner <bothner@deneb.cygnus.com>
12373
12374 * config.guess: Patch for Dansk Data Elektronik servers,
12375 from Niels Skou Olsen <nso@dde.dk>.
12376
12377 For ncr, use /bin/uname rather than uname, since GNU uname does not
12378 support -p. Suggested by Mark Mitchell <mmitchell@usa.net>.
12379
12380 Patch for MIPS R4000 running System V,
12381 from Eric S. Raymond <esr@snark.thyrsus.com>.
12382
12383 Fix thinko for nextstep.
12384
12385 Patch for OSF1 in i?86, from Dan Murphy <dlm@osf.org> via Harlan Stenn.
12386
12387 Sat Jun 24 18:58:17 1995 Morten Welinder <terra+@cs.cmu.edu>
12388 * config.guess: Guess mips-dec-mach_bsd4.3.
12389
12390 Thu Oct 10 04:07:04 1996 Harlan Stenn <harlan@pfcs.com>
12391 * config.guess (i?86-ncr-sysv*): Emit just enough of the minor
12392 release numbers.
12393 * config.guess (mips-mips-riscos*): Emit just enough of the
12394 release number.
12395
12396 Tue Oct 8 10:37:22 1996 Frank Vance <fvance@waii.com>
12397 * config.guess (sparc-auspex-sunos*): Added.
12398 (f300-fujitsu-*): Added.
12399
12400 Wed Sep 25 22:00:35 1996 Jeff Woolsey <woolsey@jlw.com>
12401 * config.guess: Recognize a Tadpole as a sparc.
12402
12403Wed Nov 13 00:53:09 1996 David J. MacKenzie <djm@churchy.gnu.ai.mit.edu>
12404
12405 * config.guess: Don't assume that NextStep version is either 2 or
12406 3. NextStep 4 (aka OpenStep 4) has come out now.
12407
12408Mon Nov 11 23:52:03 1996 David J. MacKenzie <djm@churchy.gnu.ai.mit.edu>
12409
12410 * config.guess: Support Cray T90 that reports itself as "CRAY TS".
12411 From Rik Faith <faith@cs.unc.edu>.
12412
12413Fri Nov 8 11:34:58 1996 David J. MacKenzie <djm@geech.gnu.ai.mit.edu>
12414
12415 * config.sub: Contributions from bug-gnu-utils to:
12416 Support plain "hppa" (no version given) architecture, reported by
12417 OpenStep.
12418 OpenBSD like NetBSD.
12419 LynxOs is not a hardware supplier.
12420
12421 * config.guess: Contributions from bug-gnu-utils to add support for:
35590697 12422 OpenBSD like NetBSD.
252b5132
RH
12423 Stratus systems.
12424 More Pyramid systems.
12425 i[n>4]86 Intel chips.
12426 M680[n>4]0 Motorola chips.
12427 Use unknown instead of lynx for hardware manufacturer.
12428
12429Mon Nov 11 10:09:08 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
12430
12431 * install.sh (chmodcmd): Set to null if the DST directory already
12432 exists.
12433
12434Mon Nov 11 10:43:41 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12435
12436 * configure.in (powerpc*-{eabi,elf,linux,rtem,sysv,solaris}*): Do
12437 not use mt-ppc target Makefile fragment any more.
12438
12439Sun Nov 3 19:17:07 1996 Stu Grossman (grossman@critters.cygnus.com)
12440
12441 * configure.in (*-*-windows): Exclude everything but those dirs
12442 needed to build windows.
12443
12444Tue Oct 29 16:41:31 1996 Doug Evans <dje@canuck.cygnus.com>
12445
12446 * Makefile.in (all-target-winsup): Depend on all-target-librx.
12447
12448Mon Oct 28 17:32:46 1996 Stu Grossman (grossman@critters.cygnus.com)
12449
12450 * configure.in: Exclude mmalloc from i386-windows.
252b5132
RH
12451
12452Thu Oct 24 09:22:46 1996 Stu Grossman (grossman@critters.cygnus.com)
12453
12454 * Undo my previous change.
12455
12456Thu Oct 24 12:12:04 1996 Ian Lance Taylor <ian@cygnus.com>
12457
12458 * Makefile.in (EXTRA_GCC_FLAGS): Pass down GCC_FOR_TARGET
12459 unconditionally.
12460 (MAKEOVERRIDES): Define (revert this part of October 18 change).
12461
12462Thu Oct 24 09:02:07 1996 Stu Grossman (grossman@critters.cygnus.com)
12463
12464 * Makefile.in (FLAGS_TO_PASS): Add $(HOST_FLAGS) to allow the
12465 host to add it's own flags.
252b5132
RH
12466
12467Tue Oct 22 15:20:26 1996 Ian Lance Taylor <ian@cygnus.com>
12468
12469 * configure: Handle GCC_FOR_TARGET like CC_FOR_TARGET.
12470
12471Fri Oct 18 13:37:13 1996 Ian Lance Taylor <ian@cygnus.com>
12472
12473 * Makefile.in (CC_FOR_TARGET): Check for xgcc, not Makefile.
12474 (CXX_FOR_TARGET): Likewise.
12475 (GCC_FOR_TARGET): Define.
12476 (BASE_FLAGS_TO_PASS): Remove GCC_FOR_TARGET.
12477 (EXTRA_GCC_FLAGS): Define GCC_FOR_TARGET based on whether
12478 CC_FOR_TARGET was specified on the command line.
12479 (MAKEOVERRIDES): Don't define.
12480
12481Thu Oct 17 10:27:56 1996 Doug Evans <dje@canuck.cygnus.com>
12482
12483 * configure.in (m32r): Fix spelling of libg++ libs.
12484
12485Thu Oct 10 10:37:17 1996 Stan Shebs <shebs@andros.cygnus.com>
12486
12487 * config.sub (-apple*): Remove, now redundant.
12488
12489Thu Oct 10 12:30:54 1996 Ian Lance Taylor <ian@cygnus.com>
12490
12491 * configure: Don't get confused by CPU-VENDOR-linux-gnu.
12492
12493 * configure: Rework yesterday's sed script patch.
12494
12495 * config.sub: Merge with FSF.
12496
12497Wed Oct 9 17:24:59 1996 Per Bothner <bothner@deneb.cygnus.com>
12498
12499 * config.guess: Merge from FSF.
12500
12501 1996-09-12 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
80413487
RH
12502 * config.guess: Use pc instead of unknown, for pc clone systems.
12503 Change linux to linux-gnu.
252b5132
RH
12504
12505 Mon Jul 15 23:51:11 1996 Karl Heuer <kwzh@gnu.ai.mit.edu>
80413487 12506 * config.guess: Avoid non-portable tr syntax.
252b5132
RH
12507
12508Wed Oct 9 06:06:46 1996 Jeffrey A Law (law@cygnus.com)
12509
12510 * test-build.mk (HOLES): Add "xargs" for gdb.
12511
12512 * configure: Avoid hpux10.20 sed bug.
12513
12514Tue Oct 8 08:32:48 1996 Stu Grossman (grossman@critters.cygnus.com)
12515
4bddf3ad 12516 * configure.in: Add support for windows host
252b5132
RH
12517 (that is a build done under the Microsoft build environment).
12518
12519Tue Oct 8 10:39:08 1996 Ian Lance Taylor <ian@cygnus.com>
12520
12521 * Makefile.in: Replace all uses of srcroot with s, to shrink
12522 command line lengths.
12523
12524 Patches from Geoffrey Noer <noer@cygnus.com>:
12525 * configure.in: If configuring for newlib, pass --with-newlib to
12526 subdirectories.
12527 * Makefile.in (CC_FOR_TARGET): If winsup/Makefile exists, pass a
12528 -Bnewlib/ and -Lwinsup to gcc.
12529 (CXX_FOR_TARGET): Likewise.
12530
12531Mon Oct 7 10:59:35 1996 Ian Lance Taylor <ian@cygnus.com>
12532
12533 * Makefile.in (ETC_SUPPORT): Add configure.
12534
12535Fri Oct 4 12:22:58 1996 Angela Marie Thomas (angela@cygnus.com)
12536
35590697 12537 * configure.in: Use config/mh-dgux386 for i[345]86-dg-dgux
252b5132
RH
12538 host configuration file.
12539
12540Thu Oct 3 09:28:25 1996 Jeffrey A Law (law@cygnus.com)
12541
12542 * configure.in: Break mn10x00 support into separate
12543 mn10200 and mn10300 configurations.
12544 * config.sub: Likewise.
12545
12546Wed Oct 2 22:27:52 1996 Jeffrey A Law (law@cygnus.com)
12547
12548 * configure.in: Add lots of stuff to noconfigdirs for
12549 the mn10x00 targets.
12550
12551 * config.sub, configure.in: Add mn10x00 support.
12552
12553Wed Oct 2 15:52:36 1996 Klaus Kaempf <kkaempf@progis.de>
12554
12555 * make-all.com: Call conf-a-gas, not config-a-gas.
12556
12557Tue Oct 1 01:28:41 1996 James G. Smith <jsmith@cygnus.co.uk>
12558
12559 * configure.in (noconfigdirs): Don't build libgloss for arm-coff
35590697 12560 targets.
252b5132
RH
12561
12562Mon Sep 30 14:24:01 1996 Stan Shebs <shebs@andros.cygnus.com>
12563
12564 * mpw-README: Add much more detail for native PowerMac.
12565 * mpw-install: New file.
12566 * mpw-configure: Add --norecursion and --help options.
12567 * mpw-config.in: Translate readme and install files when
12568 copying to objdir.
12569 * mpw-build.in: Don't always depend on byacc and flex.
12570 (install-only-top): New action.
12571
12572Fri Sep 27 17:39:44 1996 Stu Grossman (grossman@critters.cygnus.com)
12573
12574 * configure.in: You can now configure GDB for the v850.
12575
12576Tue Sep 24 19:05:12 1996 Stan Shebs <shebs@andros.cygnus.com>
12577
12578 * configure.in (noconfigdirs): Don't configure any C++ dirs
12579 if targeting D10V.
12580
12581Tue Sep 17 12:15:31 1996 Ian Lance Taylor <ian@cygnus.com>
12582
12583 * config.sub: Recognize mips64vr5000.
12584
12585Mon Sep 16 17:00:52 1996 Ian Lance Taylor <ian@cygnus.com>
12586
12587 * configure.in: Use a single line for host_tools and native_only.
12588
12589Mon Sep 9 12:21:30 1996 Doug Evans <dje@canuck.cygnus.com>
12590
12591 * config.sub, configure.in: Add entries for m32r.
12592
12593Thu Sep 5 13:52:47 1996 Tom Tromey <tromey@creche.cygnus.com>
12594
12595 * Makefile.in (inet-install): Don't run install-gzip.
12596
12597Wed Sep 4 17:26:13 1996 Stu Grossman (grossman@critters.cygnus.com)
12598
12599 * configure.in: Don't config lots of things for *-*-windows*.
12600
12601Sat Aug 31 11:45:57 1996 Stan Shebs <shebs@andros.cygnus.com>
12602
12603 * mpw-config.in: Test for mpw-true, true, and null-command scripts.
12604 (host_libs, host_tools): Copy from configure.in.
12605 * mpw-configure: Don't complain about directories not found.
12606
12607Thu Aug 29 16:44:58 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12608
12609 * configure.in (i[345]86): Recognize i686 for pentium pro.
12610 (i[3456]86-*-dgux*): Use config/mh-sysv for the host configuration
12611 file.
12612
12613 * config.guess (i[345]86): Ditto.
12614
12615Mon Aug 26 18:34:42 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
12616
12617 * configure.in (noconfigdirs): Removed gdb for D10V.
12618
12619Thu Aug 22 17:13:52 1996 Jeffrey A Law (law@cygnus.com)
12620
12621 * configure.in: Remove ld, target-libio, target-libg++, and
12622 target-libstdc++ from noconfigdirs.
12623
12624Wed Aug 21 18:56:38 1996 Fred Fish <fnf@cygnus.com>
12625
12626 * configure: Fix three locations where shell scripts were
12627 being run directly rather than with config_shell.
12628
12629Tue Aug 20 13:08:47 1996 J.T. Conklin <jtc@hippo.cygnus.com>
12630
12631 * configure.in (v850-*-*): Set up initial $noconfigdirs.
12632 * config.sub (basic_machine): Recognize v850.
12633
12634Thu Aug 15 12:19:33 1996 Stan Shebs <shebs@andros.cygnus.com>
12635
12636 * mpw-configure: Handle multiple enable/disable options and
12637 pass them down recursively, handle -c and -s flags appropriately
12638 depending on choice of compiler, add escape mechanism for
12639 quoted arguments to gC.
12640
12641Mon Aug 12 13:15:13 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12642
12643 * configure.in (powerpc*-*-*): For eabi, system V.4, Linux, and
12644 solaris targets, use config/mt-ppc to set C{,XX}FLAGS_FOR_TARGETS
12645 so that -mrelocatable-lib and -mno-eabi are used.
12646
12647 * Makefile.in (CONFIGURE_TARGET_MODULES): If target compiler does
12648 not support --print-multi-lib, don't abort.
12649
252b5132
RH
12650Thu Aug 8 12:18:59 1996 Klaus Kaempf <kkaempf@progis.de>
12651
12652 * make-all.com: Run config-a-gas.
12653 * setup.com: Don't copy subdirectory files around.
12654
12655Tue Jul 30 17:49:31 1996 Brendan Kehoe <brendan@cygnus.com>
12656
12657 * configure.in (*-*-ose): Remove exclusion of libgloss for this
12658 target, it now compiles correctly.
12659
12660Sat Jul 27 15:10:43 1996 Stan Shebs <shebs@andros.cygnus.com>
12661
12662 * mpw-config.in: Generate Mac include for elf/dwarf2.h.
12663
12664Tue Jul 23 10:47:04 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
12665
35590697 12666 * configure.in (d10v-*-*): Remove ld from $noconfigdirs.
252b5132
RH
12667
12668Mon Jul 22 13:28:51 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
12669
12670 * configure.in (native_only): Add prms.
12671
12672Mon Jul 22 12:27:58 1996 Ian Lance Taylor <ian@cygnus.com>
12673
12674 * Makefile.in (GAS_SUPPORT_DIRS): Add make-all.com and setup.com.
12675 (BINUTILS_SUPPORT_DIRS): Likewise.
12676
12677Thu Jul 18 12:55:40 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12678
12679 * configure.in (d10v-*-*): Don't configure ld or gdb until the
12680 d10v support is added.
12681
12682Wed Jul 17 14:33:09 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
12683
12684 * configure.in (d10v-*-*): New target.
12685
12686Mon Jul 15 11:53:00 1996 Jeffrey A Law (law@cygnus.com)
12687
12688 * config.guess (HP 9000/811): Recognize this as a PA1.1
12689 machine.
12690
12691Fri Jul 12 23:21:17 1996 Ken Raeburn <raeburn@cygnus.com>
12692
12693 * Makefile.in (do-tar-gz): New target, split out from tail end of
12694 taz target. Run each command separately, don't use pipes.
12695 (taz): Use it.
12696
12697Fri Jul 12 12:08:04 1996 Stan Shebs <shebs@andros.cygnus.com>
12698
12699 * mpw-configure: Look for g-mpw-make.sed in config/mpw.
12700 * mpw-build.in: No builds should depend on building byacc or flex,
12701 they are assumed to be installed already.
12702
12703Fri Jul 12 09:52:52 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12704
12705 * Makefile.in (CONFIGURE_TARGET_MODULES): Set r environment
12706 variable that CC_FOR_TARGET needs.
12707
12708Thu Jul 11 10:09:45 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12709
12710 * Makefile.in (CONFIGURE_TARGET_MODULES): Determine if the multlib
12711 options have changed since the last time the subdirectory was
12712 configured, and if it has, reconfigure.
12713 (CLEAN_TARGET_MODULES): Delete multilib.out and tmpmulti.out, which
12714 CONFIGURE_TARGET_MODULES uses to remember the old multilib options.
12715
12716Wed Jul 10 18:56:59 1996 Doug Evans <dje@canuck.cygnus.com>
12717
12718 * Makefile.in (ALL_MODULES,CROSS_CHECK_MODULES,INSTALL_MODULES,
12719 CLEAN_MODULES): Add bash.
12720 (all-bash): New target.
12721
12722Mon Jul 8 17:33:14 1996 Jim Wilson <wilson@cygnus.com>
12723
12724 * configure.in (mips-sgi-irix6*): Use mh-irix6 instead of mh-irix5.
12725
12726Mon Jul 1 13:31:35 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12727
12728 * config.sub (basic_machine): Recognize d10v as a valid processor.
12729
12730Fri Jun 28 12:14:35 1996 Stan Shebs <shebs@andros.cygnus.com>
12731
12732 * mpw-configure: Add support for --bindir.
12733 * mpw-build.in: Use a GCC-specific build script for GCC actions.
12734
12735Wed Jun 26 17:20:12 1996 Geoffrey Noer <noer@cygnus.com>
12736
12737 * configure.in: add bash, time, gawk to list of hosttools and things
12738 to only build for native toolchains
12739
12740Tue Jun 25 23:09:03 1996 Jason Molenda (crash@godzilla.cygnus.co.jp)
12741
12742 * Makefile.in (docdir): Remove.
12743
12744Tue Jun 25 19:00:08 1996 Jason Molenda (crash@godzilla.cygnus.co.jp)
12745
12746 * Makefile.in (datadir): Set to $(prefix)/share.
12747
12748Mon Jun 24 23:26:07 1996 Geoffrey Noer <noer@cygnus.com>
12749
12750 * configure.in: build diff and patch for cygwin32-hosted
12751 toolchains.
12752
12753Mon Jun 24 15:01:12 1996 Joel Sherrill <joel@merlin.gcs.redstone.army.mil>
12754
12755 * config.sub: Accept -rtems*.
12756
12757Sun Jun 23 22:41:54 1996 Geoffrey Noer <noer@cygnus.com>
12758
80413487 12759 * configure.in: enable dosrel for cygwin32-hosted builds,
80b200a1
ZW
12760 remove diff from the list of things not buildable
12761 via Canadian Cross
252b5132
RH
12762
12763Sat Jun 22 11:39:01 1996 Jason Merrill <jason@yorick.cygnus.com>
12764
12765 * Makefile.in (TARGET_SUBDIR): Move comment to previous line so we
35590697 12766 don't get ". ".
252b5132
RH
12767
12768Fri Jun 21 17:24:48 1996 Jim Wilson <wilson@cygnus.com>
12769
12770 * configure.in (mips*-sgi-irix6*): Set noconfigdirs appropriately.
12771
12772Thu Jun 20 16:57:40 1996 Ken Raeburn <raeburn@cygnus.com>
12773
12774 * Makefile.in (taz): Handle case where tex3patch didn't even get
12775 checked out. Also, if it was found, put the symlink in a new util
12776 subdirectory.
12777
12778Thu Jun 20 12:20:33 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12779
12780 * config.guess (*:Linux:*:*): Add support for PowerPC Linux.
12781
12782Tue Jun 18 14:24:12 1996 Klaus Kaempf (kkaempf@progis.de)
12783
12784 * config.sub: Recognize -openvms.
12785 * configure.in (alpha*-*-*vms*): Set noconfigdirs.
12786 * make-all.com, setup.com: New files.
12787
12788Mon Jun 17 16:34:46 1996 Jason Merrill <jason@yorick.cygnus.com>
12789
12790 * Makefile.in (taz): tex3patch moved to texinfo/util.
12791
12792Sat Jun 15 17:13:25 1996 Geoffrey Noer <noer@cygnus.com>
12793
afb8d725 12794 * configure: enable_gdbtk=no for cygwin32-hosted toolchains
252b5132
RH
12795 * configure.in: remove make from disable-if-Can-Cross list
12796 enable gdb if ${host} and ${target} are cygwin32
12797
12798Fri Jun 7 18:16:52 1996 Harlan Stenn <harlan@pfcs.com>
12799
12800 * config.guess (i?86-ncr-sysv*): Emit minor release numbers.
12801 Recognize the NCR 4850 machine and NCR Pentium-based platforms.
12802
12803Wed Jun 5 00:09:17 1996 Per Bothner <bothner@wombat.gnu.ai.mit.edu>
12804
12805 * config.guess: Combine mips-mips-riscos cases, and use cpp to
12806 distinguish sysv/svr4/bsd variants.
12807 Based on a patch from Harlan Stenn <harlan@pfcs.com>.
12808
12809Fri Jun 7 14:24:49 1996 Tom Tromey <tromey@creche.cygnus.com>
12810
12811 * configure.in: Added copyright notice.
12812 * move-if-change: Added copyright notice.
12813
12814Thu Jun 6 16:27:05 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12815
12816 * configure.in (powerpcle-*-solaris*): Until we get shared
12817 libraries working, don't build gdb, sim, make, tcl, tk, or
12818 expect.
12819
12820Tue Jun 4 20:41:45 1996 Per Bothner <bothner@deneb.cygnus.com>
12821
12822 * config.guess: Merge with FSF:
12823
12824 Mon Jun 3 08:49:14 1996 Karl Heuer <kwzh@gnu.ai.mit.edu>
12825 * config.guess (*:Linux:*:*): Add guess for sparc-unknown-linux.
12826
12827 Fri May 24 18:34:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
12828 * config.guess (AViiON:dgux:*:*): Fix typo in recognizing mc88110.
12829
12830 Fri Apr 12 20:03:59 1996 Per Bothner <bothner@spiff.gnu.ai.mit.edu>
12831 * config.guess: Combine two OSF1 rules.
12832 Also recognize field test versions. From mjr@zk3.dec.com.
12833 * config.guess (dgux): Use /usr/bin/uname rather than uname,
12834 because GNU uname does not support -p. From pmr@pajato.com.
12835
12836Tue Jun 4 11:07:25 1996 Tom Tromey <tromey@csk3.cygnus.com>
12837
12838 * Makefile.in (MAKEDIRS): Removed $(tooldir).
12839
12840Tue May 28 12:30:50 1996 Stan Shebs <shebs@andros.cygnus.com>
12841
12842 * mpw-README: Document GCCIncludes.
12843
12844Sun May 26 15:16:27 1996 Fred Fish <fnf@cygnus.com>
12845
12846 * configure.in (alpha-*-linux*): Set enable_shared to yes.
12847
12848Tue May 21 15:41:39 1996 Stan Shebs <shebs@andros.cygnus.com>
12849
12850 * mpw-configure: Handle --enable-FOO and --disable-FOO.
12851
12852Mon May 20 10:12:29 1996 Geoffrey Noer <noer@cygnus.com>
12853
12854 * configure.in (*-*-cygwin32): Configure make.
12855
12856Tue May 7 14:19:42 1996 Tom Tromey <tromey@snuffle.cygnus.com>
12857
12858 * Makefile.in (inet-install): Quote value of INSTALL_MODULES.
12859
12860Fri May 3 08:57:17 1996 Tom Tromey <tromey@lisa.cygnus.com>
12861
12862 * Makefile.in (all-inet): Depend on all-perl.
12863
12864 * Makefile.in (inet-install): New target.
12865
12866 * Makefile.in (all-inet): Depend on all-tcl.
12867 (all-inet): Depend on all-send-pr.
12868
12869Tue Apr 30 13:55:51 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12870
12871 * configure.in (powerpcle-*-solaris*): Turn off tk and tcl
12872 temporarily.
12873
12874Thu Apr 25 11:48:20 1996 Ian Lance Taylor <ian@cygnus.com>
12875
12876 * configure.in: Don't configure --with-gnu-ld on AIX.
12877
12878Thu Apr 25 06:33:36 1996 Michael Meissner <meissner@wogglebug.tiac.net>
12879
12880 * configure.in (powerpcle-*-solaris*): Turn off gdb temporarily.
12881
12882Tue Apr 23 09:07:39 1996 Tom Tromey <tromey@creche.cygnus.com>
12883
12884 * Makefile.in (ALL_MODULES): Added all-inet.
12885 (CROSS_CHECK_MODULES): Added check-inet.
12886 (INSTALL_MODULES): Added install-inet.
12887 (CLEAN_MODULES): Added clean-inet.
12888 (all-indent): New target.
12889
12890 * configure.in (host_tools): Added inet.
12891 (native_only): Added inet.
12892 (noconfigdirs): Added inet.
12893
12894Fri Apr 19 15:35:29 1996 Ian Lance Taylor <ian@cygnus.com>
12895
12896 * configure.in: Don't configure libgloss if we are not configuring
12897 newlib.
12898
12899Wed Apr 17 19:30:01 1996 Rob Savoye <rob@chinadoll.cygnus.com>
12900
12901 * configure.in: Don't configure libgloss for unsupported
12902 architectures.
12903
12904Tue Apr 16 11:17:05 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12905
12906 * Makefile.in (CLEAN_MODULES): Add clean-apache.
12907
12908Mon Apr 15 15:09:05 1996 Tom Tromey <tromey@creche.cygnus.com>
12909
12910 * Makefile.in (ALL_MODULES): Include all-apache.
12911 (CROSS_CHECK_MODULES): Include check-apache.
12912 (INSTALL_MODULES): Include install-apache.
12913 (all-apache): New target.
12914
12915 * configure.in: Added apache everywhere perl is seen.
12916
12917Mon Apr 15 14:59:13 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12918
12919 * Makefile.in: Add support for clean-{module} and
12920 clean-target-{module} rules.
12921
12922Wed Apr 10 21:37:41 PDT 1996 Marilyn E. Sander <msander@cygnus.com>
12923
12924 * configure.in (*-*-ose) do not build libgloss.
12925
12926Mon Apr 8 16:16:20 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12927
12928 * config.guess (prep*:SunOS:5.*:*): Turn into
12929 powerpele-unknown-solaris2.
12930
12931Mon Apr 8 14:45:41 1996 Ian Lance Taylor <ian@cygnus.com>
12932
12933 * configure.in: Permit --enable-shared to specify a list of
12934 directories.
12935
12936Fri Apr 5 08:17:57 1996 Jason Molenda (crash@phydeaux.cygnus.com)
12937
12938 * configure.in (host==solaris): Pass only the first word of $CC
12939 to /usr/bin/which when checking if we're using /usr/ccs/bin/cc.
12940
12941Fri Apr 5 03:16:13 1996 Jason Molenda (crash@phydeaux.cygnus.com)
12942
12943 * Makefile.in (BASE_FLAGS_TO_PASS): pass down $(MAKE).
12944
12945Thu Mar 28 14:11:11 1996 Tom Tromey <tromey@creche.cygnus.com>
12946
12947 * Makefile.in (ALL_MODULES): Include all-perl.
12948 (CROSS_CHECK_MODULES): Include check-perl.
12949 (INSTALL_MODULES): Include install-perl.
12950 (ALL_X11_MODULES): Include all-guile.
12951 (CHECK_X11_MODULES): Include check-guile.
12952 (INSTALL_X11_MODULES): Include install-guile.
12953 (all-perl): New target.
12954 (all-guile): New target.
12955
12956 * configure.in (host_tools): Include perl and guile.
12957 (native_only): Include perl and guile.
12958 (noconfigdirs): Don't build guile and perl; no ports have been
12959 done.
12960
12961Tue Mar 26 21:18:50 1996 Andrew Cagney <cagney@kremvax.highland.com.au>
12962
80413487
RH
12963 * configure (--enable-*): Handle quoted option lists such as
12964 --enable-sim-cflags='-g0 -O' better.
252b5132
RH
12965
12966Thu Mar 21 11:53:08 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12967
12968 * Makefile.in ({,inst}all-target): New rule so we can make and
12969 install all of the target directories easily.
12970
12971Wed Mar 20 18:10:57 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
12972
12973 * configure.in: Add missing global flag in sed substitution when
12974 deleting `target-' from ${configdirs}.
12975
12976Thu Mar 14 19:15:06 1996 Ian Lance Taylor <ian@cygnus.com>
12977
12978 * Makefile.in (DO_X): Don't get confused if CC contains `=' in an
12979 option.
12980
12981 * configure.in (mips*-nec-sysvr4*): Use a host_makefile_frag of
12982 config/mh-necv4.
12983
12984 * install.sh: Correct misspelling of transformbasename.
12985
12986 * config.guess: Recognize mips-*-sysv*.
12987
12988Mon Mar 11 15:36:42 1996 Dawn Perchik <dawn@critters.cygnus.com>
12989
12990 * config.sub: Recognize mon960.
12991
12992Sun Mar 10 13:18:38 1996 Ian Lance Taylor <ian@cygnus.com>
12993
12994 * configure: Restore Canadian Cross handling of BISON and LEX,
12995 removed in Feb 20 change.
12996
12997Fri Mar 8 20:07:09 1996 Per Bothner <bothner@kalessin.cygnus.com>
12998
12999 * README: Suggestions from Torbjorn Granlund <tege@matematik.su.se>:
13000 Mention make install. Remove the old copyright date as well the
13001 clumsy and rather pointless copyright on the README file.
13002
13003Fri Mar 8 17:51:35 1996 Ian Lance Taylor <ian@cygnus.com>
13004
13005 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): If there is a
13006 Makefile after running symlink-tree, then run `make distclean' to
13007 avoid clobbering any generated files in srcdir.
13008
13009Tue Mar 5 08:21:44 1996 J.T. Conklin <jtc@rtl.cygnus.com>
13010
13011 * configure.in (m68k-*-netbsd*): Build everything now.
13012
13013Wed Feb 28 12:25:46 1996 Jason Merrill <jason@yorick.cygnus.com>
13014
13015 * Makefile.in (taz): Fix quoting.
13016
13017Tue Feb 27 11:33:57 1996 Doug Evans <dje@charmed.cygnus.com>
13018
13019 * configure.in (sparclet-*-*): Build everything now.
13020
13021Tue Feb 27 14:31:51 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
13022
13023 * configure.in (m68k-*-linux*): New host.
13024
13025Mon Feb 26 14:32:44 1996 Ian Lance Taylor <ian@cygnus.com>
13026
13027 * configure: Check for bison before byacc.
13028
13029Tue Feb 20 23:12:35 1996 Stu Grossman (grossman@critters.cygnus.com)
13030
13031 * Makefile.in configure: Change the way LEX and BISON/YACC are
13032 set. configure now defines DEFAULT_LEX and DEFAULT_YACC by
13033 searching PATH. These are used as fallbacks by Makefile.in if
13034 flex/bison/byacc aren't in objdir.
13035
13036Mon Feb 19 11:45:30 1996 Ian Lance Taylor <ian@cygnus.com>
13037
13038 * Makefile.in: Make everything which depends upon all-bfd also
13039 depend upon all-opcodes, in case --with-commonbfdlib is used.
13040
13041Thu Feb 15 19:50:50 1996 Michael Meissner <meissner@tiktok.cygnus.com>
13042
13043 * configure.in (host *-*-cygwin32): Don't build gdb if we are
13044 building NT native compilers on Unix.
13045
13046Thu Feb 15 17:42:25 1996 Ian Lance Taylor <ian@cygnus.com>
13047
13048 * configure.in: Don't get CC from the host Makefile fragment if we
13049 can find gcc in PATH, or if this is a Canadian Cross. Move the
13050 Solaris test for /usr/ucb/cc to the post target script, just after
13051 the compiler sanity test.
13052
13053Wed Feb 14 16:57:40 1996 Ian Lance Taylor <ian@cygnus.com>
13054
13055 * config.sub: Merge with FSF.
13056
13057Tue Feb 13 14:27:48 1996 Ian Lance Taylor <ian@cygnus.com>
13058
13059 * Makefile.in (RPATH_ENVVAR): New variable.
13060 (REALLY_SET_LIB_PATH): Use it.
13061 * configure.in: On HP/UX, set RPATH_ENVVAR to SHLIB_PATH.
13062
13063Mon Feb 12 15:28:49 1996 Doug Evans <dje@charmed.cygnus.com>
13064
13065 * config.sub, configure.in: Recognize sparclet cpu.
13066
13067Mon Feb 12 15:33:59 1996 Christian Bauernfeind <chrisbfd@theorie3.physik.uni-erlangen.de>
13068
13069 * config.guess: Support m68k-cbm-sysv4.
13070
13071Sat Feb 10 12:06:42 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
13072
13073 * config.guess (*:Linux:*:*): Guess m68k-unknown-linux and
13074 m68k-unknown-linuxaout from linker help string. Put quotes around
13075 $ld_help_string.
13076
13077Thu Dec 7 09:03:24 1995 Tom Horsley <Tom.Horsley@mail.hcsc.com>
13078
13079 * config.guess (powerpc-harris-powerunix): Add guess for port
13080 to new target.
13081
13082Thu Feb 8 15:37:52 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
13083
13084 * config.guess (UNAME_VERSION): Recognize X4.x as an OSF version.
13085
13086Mon Feb 5 16:36:51 1996 Ian Lance Taylor <ian@cygnus.com>
13087
13088 * configure.in: If --enable-shared was used, set SET_LIB_PATH to
13089 $(REALLY_SET_LIB_PATH) in Makefile.
13090 * Makefile.in (SET_LIB_PATH): New variable.
13091 (REALLY_SET_LIB_PATH): New variable.
13092 ($(DO_X)): Use $(SET_LIB_PATH).
13093 (install.all, gcc-no-fixedincludes, $(ALL_MODULES)): Likewise.
13094 ($(NATIVE_CHECK_MODULES), $(CROSS_CHECK_MODULES)): Likewise.
13095 ($(INSTALL_MODULES), $(CONFIGURE_TARGET_MODULES)): Likewise.
13096 ($(ALL_TARGET_MODULES), $(CHECK_TARGET_MODULES)): Likewise.
13097 ($(INSTALL_TARGET_MODULES), $(ALL_X11_MODULES)): Likewise.
13098 ($(CHECK_X11_MODULES), $(INSTALL_X11_MODULES)): Likewise.
13099 (all-gcc, all-bootstrap, check-gcc, install-gcc): Likewise.
13100 (install-dosrel): Likewise.
13101 (all-opcodes): Depend upon all-libiberty.
13102
13103Sun Feb 4 16:51:11 1996 Steve Chamberlain <sac@slash.cygnus.com>
13104
13105 * config.guess (*:CYGWIN*): New
13106
13107Sat Feb 3 10:42:35 1996 Michael Meissner <meissner@tiktok.cygnus.com>
13108
13109 * Makefile.in (all-target-winsup): All all-target-libiberty.
13110
13111Fri Feb 2 17:58:56 1996 Michael Meissner <meissner@tiktok.cygnus.com>
13112
13113 * configure.in (noconfigdirs): Add missing # in front of comment.
13114
13115Thu Feb 1 14:38:13 1996 Geoffrey Noer <noer@cygnus.com>
13116
13117 * configure.in: add second pass to things added to noconfigdirs
13118 so *-gm-magic can exclude libgloss properly.
13119
13120Thu Feb 1 11:10:16 1996 Stan Shebs <shebs@andros.cygnus.com>
13121
13122 * mpw-configure (extralibs_name, rez_name): Set correctly
13123 for MWC68K compiler.
13124
13125 * mpw-README: Add more info on the necessary build tools.
13126
13127Thu Feb 1 10:22:38 1996 Steve Chamberlain <sac@slash.cygnus.com>
13128
13129 * configure.in, config.sub: Recognize cygwin32.
13130
13131Wed Jan 31 14:17:10 1996 Richard Henderson <rth@tamu.edu>
13132
13133 * config.guess, config.sub: Recognize A/UX.
13134
13135Wed Jan 31 13:52:14 1996 Ian Lance Taylor <ian@cygnus.com>
13136
13137 * config.sub: Merge with gcc/config.sub.
13138
13139Thu Jan 25 11:01:10 1996 Raymond Jou <rjou@mexican.cygnus.com>
13140
13141 * mpw-build.in (do-binutils): Add build of stamps.
13142
13143Thu Jan 25 17:05:26 1996 James G. Smith <jsmith@cygnus.co.uk>
13144
13145 * config.sub: Add recognition for mips64vr4100*-* targets.
13146
13147Wed Jan 24 12:47:55 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
13148
13149 * test-build.mk: Add checking of `hpux9' rather than just `hpux'.
13150 Add creation of gconfigargs with `--enable-shared' turned on.
13151 ($(host)-stamp-stage2-configured): Pass $(gconfigargs).
13152 ($(host)-stamp-stage3-configured): Likewise.
13153 (HOLES): Add chatr and ldd.
13154 (i386-ncr-sysv4.3*): Add use of /usr/ccs/bin in the PATH and HOLE_DIRS.
13155
13156Wed Jan 24 20:32:30 1996 Torbjorn Granlund <tege@noisy.matematik.su.se>
13157
13158 * configure: Pass --nfp to recursive configures.
13159
13160Mon Jan 22 10:41:56 1996 Steve Chamberlain <sac@slash.cygnus.com>
13161
13162 * Makefile.in (DLLTOOL): New.
13163 (DLLTOOL_FOR_TARGET): New.
13164 (EXTRA_HOST_FLAGS): Pass down DLLTOOL.
13165 (EXTRA_TARGET_FLAGS): Ditto.
13166 (EXTRA_GCC_FLAGS): Ditto.
13167 (CONFIGURE_TARGET_MODULES): Ditto.
13168 (DO_X): Ditto.
13169 * configure: Add DLLTOOL.
13170
13171Fri Jan 19 13:30:15 1996 Stan Shebs <shebs@andros.cygnus.com>
13172
13173 SCO OpenServer 5 changes from Robert Lipe <robertl@dgii.com>:
13174 * configure.in (i[345]86-*-sco3.2v5*): Use mh-sysv instead of
13175 mh-sco, since old workarounds no longer needed, and don't
13176 build ld, since libraries have weak symbols in COFF.
13177
13178Sun Jan 14 23:01:31 1996 Fred Fish <fnf@cygnus.com>
13179
13180 * Makefile.in (CONFIGURE_TARGET_MODULES): Add missing ';'.
13181
13182Fri Jan 12 15:25:35 1996 Ian Lance Taylor <ian@cygnus.com>
13183
13184 * configure.in: Make sure that ${CC} can be used to compile an
13185 executable.
13186
afb8d725
JM
13187Sat Jan 6 07:23:33 1996 Michael Meissner <meissner@wogglebug.tiac.net>
13188
13189 * Makefile.in (all-gdb): Depend on $(GDB_TK).
13190 * configure (GDB_TK): Set GDB_TK to either "all-tcl all-tk" or
13191 nothing depending on whether gdbtk is being built.
13192
252b5132
RH
13193Wed Jan 3 17:54:41 1996 Doug Evans <dje@canuck.cygnus.com>
13194
13195 * Makefile.in (newlib.tar.gz): Delete building of newlib's info files.
13196
13197Mon Jan 1 19:09:14 1996 Brendan Kehoe <brendan@rtl.cygnus.com>
13198
13199 * configure.in (noconfigdirs): Put ld or gas in this early, if the
13200 user specifically used --with-gnu-ld=no or --with-gnu-as=no.
13201
13202Sat Dec 30 16:08:57 1995 Doug Evans <dje@canuck.cygnus.com>
13203
13204 * config-ml.in: Add support for
13205 --disable-{softfloat,m68881,m68000,m68020} on m68*-*-*.
13206 Simplify setting of multidirs from --disable-foo.
13207
13208Fri Dec 29 07:56:11 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13209
13210 * Makefile.in (EXTRA_GCC_FLAGS): If any of the make variables
13211 LANGUAGES, BOOT_CFLAGS, STMP_FIXPROTO, LIMITS_H_TEST,
13212 LIBGCC1_TEST, LIBGCC2_CFLAGS, LIBGCC2_INCLUDES, and ENQUIRE are
35590697 13213 non-empty, pass them on to the GCC make.
252b5132
RH
13214 (all-bootstrap): New rule that is like all-gcc, except it executes
13215 the GCC bootstrap rule instead of the GCC all rule.
13216
13217Wed Dec 27 15:51:48 1995 Doug Evans <dje@canuck.cygnus.com>
13218
13219 * config-ml.in (ml_realsrcdir): New, to account for ${subdir}.
13220
13221Tue Dec 26 11:45:31 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13222
13223 * config.guess (AViiON:dgux:*:*): Update from FSF to add pentium
13224 DG/UX support.
13225
13226Fri Dec 15 10:01:27 1995 Stan Cox <coxs@dg-rtp.dg.com>
13227
13228 * config.sub (i*86*) Change [345] to [3456]
13229
13230Wed Dec 20 17:41:40 1995 Brendan Kehoe <brendan@lisa.cygnus.com>
13231
13232 * configure.in (noconfigdirs): Add gas or ld if --with-gnu-as=no or
13233 --with-gnu-ld=no.
13234
13235Wed Dec 20 15:15:35 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13236
13237 * config-ml.in (rs6000*, powerpc*): Add switches to control which
13238 AIX multilibs get built.
13239
13240Mon Dec 18 17:55:46 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13241
13242 * configure.in (i386-win32): Don't build expect if we're not
13243 building the tcl subdir.
13244
13245Mon Dec 18 11:47:19 1995 Stan Shebs <shebs@andros.cygnus.com>
13246
13247 * Makefile.in: (configure-target-examples, all-target-examples):
13248 New targets, configure and build example programs.
13249
13250Fri Dec 15 16:13:03 1995 Stan Shebs <shebs@andros.cygnus.com>
13251
13252 * mpw-configure: If an mpw-config.in generated a file mk.sed,
13253 use it as input to sedit the generated MPW makefile.
13254 * mpw-README: Add a suggestion about Gestalt.h.
13255
13256Wed Dec 13 16:43:51 1995 Ian Lance Taylor <ian@cygnus.com>
13257
13258 * config.sub: Accept *-*-ieee*.
13259
13260Tue Dec 12 11:52:57 1995 Ian Lance Taylor <ian@cygnus.com>
13261
13262 * Makefile.in (local-distclean): Remove $(TARGET_SUBDIR). From
13263 Ronald F. Guilmette <rfg@monkeys.com>.
13264
13265Mon Dec 11 15:31:58 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13266
13267 * configure.in (host==powerpc-pe): Add many directories to noconfigdirs
13268 for powerpc-pe native.
13269 (target==i386-win32): add tcl, make to noconfigdirs if canadian cross.
13270 (target==powerpc-pe): duplicate i386-win32 entry.
13271
13272Sat Dec 9 14:58:28 1995 Jim Wilson <wilson@chestnut.cygnus.com>
13273
13274 * configure.in (noconfigdirs): Exclude target-newlib for all versions
13275 of vxworks, not just vxworks5.1.
13276
13277Mon Dec 4 12:05:40 1995 Stan Shebs <shebs@andros.cygnus.com>
13278
13279 * mpw-configure: Add support for exec-prefix.
13280
13281Mon Dec 4 10:22:50 1995 Jeffrey A. Law <law@rtl.cygnus.com>
13282
13283 * config.guess: Recognize HP model 816 machines as having
13284 a PA1.1 processor.
13285
13286Mon Dec 4 12:38:15 1995 Ian Lance Taylor <ian@cygnus.com>
13287
13288 * configure: Ignore new autoconf configure options.
13289
252b5132
RH
13290Thu Nov 30 16:57:33 1995 Per Bothner <bothner@wombat.gnu.ai.mit.edu>
13291
13292 * config.guess: Recognize Pentium under SCO.
13293 From Robert Lipe <robertl@arnet.com>.
13294
13295Wed Nov 29 13:49:08 1995 J.T. Conklin <jtc@rtl.cygnus.com>
13296
13297 * configure.in (noconfigdirs): Disable target-libio on v810-*-*.
252b5132
RH
13298
13299Wed Nov 29 12:12:01 1995 Ian Lance Taylor <ian@cygnus.com>
13300
13301 * configure.in: Don't configure gas for alpha-dec-osf*.
13302
13303Tue Nov 28 17:16:48 1995 Ian Lance Taylor <ian@cygnus.com>
13304
13305 * configure.in: Default to --with-stabs for some targets for which
13306 it makes sense: mips*-*-*, alpha*-*-osf*, i[345]86*-*-sysv4* and
13307 i[345]86*-*-unixware*.
13308
13309Mon Nov 27 13:44:15 1995 Ian Lance Taylor <ian@cygnus.com>
13310
13311 * config-ml.in: Get list of multidirs using gcc --print-multi-lib
13312 rather than basing it on the target. Simplify handling of options
13313 controlling which directories to configure. Remove extraneous
13314 slash in multi-clean target.
13315
13316Fri Nov 24 17:29:29 1995 Doug Evans <dje@deneb.cygnus.com>
13317
13318 * config-ml.in: Prefix more variables with ml_ so they don't collide
13319 with configure's.
13320
13321Wed Nov 22 11:27:02 1995 Ian Lance Taylor <ian@cygnus.com>
13322
13323 * configure: Don't turn -v into --v.
13324
13325Tue Nov 21 16:48:02 1995 Doug Evans <dje@deneb.cygnus.com>
13326
13327 * configure.in (targargs): Fix typo.
13328
13329 * Makefile.in (DEVO_SUPPORT): Add symlink-tree.
13330
13331Tue Nov 21 14:08:28 1995 Ian Lance Taylor <ian@cygnus.com>
13332
13333 * configure.in: Strip --host and --target options from
13334 CONFIG_ARGUMENTS, and always configure for --host only. Add
13335 --with-cross-host option when building with a cross-compiler.
13336 * configure: Canonicalize the arguments put into config.status by
13337 always using `=' for an option with an argument. Pass a presumed
13338 --host or --target explicitly.
13339
13340Fri Nov 17 17:50:30 1995 Stan Shebs <shebs@andros.cygnus.com>
13341
13342 * config.sub: Merge -macos*, -magic*, -pe*, and -win32 cases
13343 into general OS recognition case.
13344
13345Fri Nov 17 17:42:25 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13346
13347 * configure.in (target_configdirs): add target-winsup only
13348 for win32 target systems.
13349
13350Thu Nov 16 14:04:47 1995 Ian Lance Taylor <ian@cygnus.com>
13351
13352 * Makefile.in (all-target-libgloss): Depend upon
13353 configure-target-newlib, since when libgloss is built it looks to
13354 see if the newlib directory exists.
13355
13356Wed Nov 15 14:47:52 1995 Ken Raeburn <raeburn@cygnus.com>
13357
13358 * Makefile.in (DEVO_SUPPORT): Use config-ml.in instead of
13359 cfg-ml-*.in.
13360
13361Wed Nov 15 11:45:23 1995 Ian Lance Taylor <ian@cygnus.com>
13362
13363 * configure: Handle LD and LD_FOR_TARGET when configuring a
13364 Canadian Cross.
13365
252b5132
RH
13366Tue Nov 14 14:56:11 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13367
13368 * configure.in (target_libs): add target-winsup.
13369 (target==i386-win32): add patch diff flex make to $noconfigdirs.
13370 (target==ppcle-pe): remove ld from $noconfigdirs.
13371
13372Tue Nov 14 01:25:50 1995 Doug Evans <dje@canuck.cygnus.com>
13373
13374 * Makefile.in (CONFIGURE_TARGET_MODULES): Pass --with-target-subdir.
13375 Preserve relative path names in $srcdir. Build symlink tree if
13376 configuring cross target dir and srcdir=. (= no VPATH support).
13377 (configure-target-libg++): Depend on configure-target-librx.
13378 * cfg-ml-com.in, cfg-ml-pos.in: Deleted.
13379 * config-ml.in: New file.
13380 * symlink-tree: New file.
13381 * configure: Ensure srcdir="." if that's what it is.
13382
13383Mon Nov 13 12:34:20 1995 Stan Shebs <shebs@andros.cygnus.com>
13384
13385 * mpw-README: Clarify some phrasing, add notes about CodeWarrior
13386 includes and FLEX_SKELETON setting.
13387 * mpw-configure (--with-gnu-ld): New option, controls whether
13388 to use PPCLink or ld with PowerMac GCC.
13389 * mpw-build.in (all-grez, do-grez, install-grez): New targets.
13390 * mpw-config.in: Configure grez if targeting Mac.
13391
13392 * config.sub: Accept pmac and pmac-mpw as names for PowerMacs,
35590697
AJ
13393 accept mpw and mac-mpw as names for m68k Macs, change macos7 to
13394 just macos.
252b5132
RH
13395 * configure.in: Configure grez resource compiler if targeting Mac.
13396 * Makefile.in (all-grez, install-grez): New targets.
13397
13398Wed Nov 8 17:33:51 1995 Jason Merrill <jason@yorick.cygnus.com>
13399
13400 * configure: CXX defaults to gcc, not g++. If we find
35590697 13401 gcc in the path, set CC to gcc -O2.
252b5132
RH
13402
13403Tue Nov 7 15:45:17 1995 Ian Lance Taylor <ian@cygnus.com>
13404
13405 * configure: Default ${build} correctly. Avoid picking up extra
13406 spaces when reading CC and CXX from Makefile. When doing a
13407 Canadian Cross, use plausible default values for numerous
13408 variables.
13409 * configure.in: When doing a Canadian Cross, don't try to
13410 configure tools whose configure script can't handle it.
13411
13412Mon Nov 6 19:32:17 1995 Jim Wilson <wilson@chestnut.cygnus.com>
13413
13414 * cfg-ml-com.in (sh-*-*): Add m2 and ml/m2 to multidirs.
13415
13416Sun Nov 5 00:15:41 1995 Per Bothner <bothner@kalessin.cygnus.com>
13417
13418 * configure: Remove dubious bug reporting address.
13419
13420Fri Nov 3 08:17:54 1995 Per Bothner <bothner@kalessin.cygnus.com>
13421
13422 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): If subdir has
13423 configure script, run that instead of this directory's configure.
13424 In either case, print a message that we're configuring the sub-dir.
13425
13426Thu Nov 2 23:23:36 1995 Per Bothner <bothner@kalessin.cygnus.com>
13427
13428 * configure.in: Before checking for the existence of various files,
13429 use sed to filter out "target-".
13430
13431Thu Nov 2 13:24:56 1995 Ian Lance Taylor <ian@cygnus.com>
13432
13433 * Makefile.in (DO_X): Split rule to decrease command line length
13434 for systems with small ARG_MAX values. From phdm@info.ucl.ac.be
13435 (Philippe De Muyter).
13436
13437Wed Nov 1 15:18:35 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13438
13439 * Makefile.in (all-patch): depend on all-libiberty.
13440
13441Wed Nov 1 12:23:20 1995 Ian Lance Taylor <ian@cygnus.com>
13442
13443 * configure.in: If the only directory in target_configdirs which
13444 actually exists is libiberty, then set target_configdirs to empty,
13445 to avoid trying to build a target libiberty in a gas or gdb
13446 distribution.
13447
13448Tue Oct 31 17:52:39 1995 J.T. Conklin <jtc@slave.cygnus.com>
13449
13450 * configure.in (host_makefile_frag): Use m68k-sun-sunos* instead
35590697
AJ
13451 of m68k-sun-* when selecting mh-sun3 to avoid matching NetBSD/sun3
13452 systems.
252b5132
RH
13453
13454Tue Oct 31 16:57:32 1995 Jim Wilson <wilson@chestnut.cygnus.com>
13455
13456 * configure.in (copy_dirs): Use sys-include instead of include
13457 for --with-headers option.
13458
13459Tue Oct 31 10:29:36 1995 steve chamberlain <sac@slash.cygnus.com>
13460
13461 * Makefile.in, configure.in: Make winsup builds work with
13462 new scheme.
13463
13464Mon Oct 30 18:57:09 1995 Ian Lance Taylor <ian@cygnus.com>
13465
13466 * configure.in: Build the linker on AIX.
13467
13468Mon Oct 30 12:27:16 1995 Per Bothner <bothner@kalessin.cygnus.com>
13469
13470 * Makefile.in (CC_FOR_TARGET, CXX_FOR_TARGET): Add $(TARGET_SUBDIR)
13471 where needed.
13472
13473Mon Oct 30 12:45:25 1995 Doug Evans <dje@cygnus.com>
13474
13475 * Makefile.in (all-gcc): Fix typo.
13476
13477Sat Oct 28 10:27:59 1995 Per Bothner <bothner@kalessin.cygnus.com>
13478
13479 * Makefile.in ($(CHECK_TARGET_MODULES)): Fix typo.
13480
13481Fri Oct 27 23:14:12 1995 Per Bothner <bothner@kalessin.cygnus.com>
13482
13483 * configure.in: Rename libFOO to target-libFOO, and xiberty
13484 to target-xiberty, to provide more flexibility.
13485 (target_subdir): Define. Create if cross.
13486 Set TARGET_SUBDIR in Makefile to ${target_subdir}.
13487 * Makefile.in: Rename all-libFOO -> all-target-libFOO, all-xiberty
13488 -> all-target-libiberty, configure-libFOO -> configure-target-libFOO,
13489 check-libFOO -> check-target-libFOO, etc.
13490 ($(DO_X)): Iterate over TARGET_CONFIGDIRS after SUBDIRS.
13491 ($(CONFIGURE_TARGET_MODULES), $(CHECK_TARGET_MODULES),
13492 $(ALL_TARGET_MODULES), $(INSTALL_TARGET_MODULES)): Update accordingly.
13493 (configure-target-XXX): Depend on $(ALL_GCC), not all-gcc, to
13494 allow ALL_GCC="" to only configure.
13495 (DEVO_SUPPORT): Add cfg-ml-com.in and cfg-ml-pos.in.
13496 (ETC_SUPPORT, ETC_SUPPORT_PFX): Merge; update 'taz' accordingly.
13497 (LIBGXX_SUPPORT_DIRS): Remove xiberty.
13498
13499Sat Oct 28 01:53:49 1995 Ken Raeburn <raeburn@cygnus.com>
13500
13501 * Makefile.in (taz): Build "info" in etc explicitly.
13502
13503Fri Oct 27 09:32:30 1995 Stu Grossman (grossman@cygnus.com)
13504
13505 * configure.in: Make sure that CC is undefined (as opposed to
13506 null) if toplevel/config/mh-{host} doesn't define it. Fixes a
13507 problem with autoconf trying to configure on a host without GCC.
13508
13509Thu Oct 26 22:35:01 1995 Stan Shebs <shebs@andros.cygnus.com>
13510
13511 * mpw-configure: Set host alias from choice of host compiler,
13512 only use generic MPW Makefile sed if present, edit a file
13513 named "hacked_Makefile.in" instead of "Makefile.in" if present.
13514 * mpw-README: Add problem notes about CW6 and CW7.
13515
13516Thu Oct 26 05:45:10 1995 Ken Raeburn <raeburn@kr-pc.cygnus.com>
13517
13518 * Makefile.in (taz): Use ";" instead of ";;".
13519
13520Wed Oct 25 15:18:24 1995 Per Bothner <bothner@kalessin.cygnus.com>
13521
13522 * Makefile.in (taz): Grep for '^diststuff:' or '^info:' in
13523 sub-directory Makefiles, instead of using DISTSTUFFDIRS and
13524 DISTDOCDIRS.
13525 (DISTSTUFFDIRS, DISTDOCDIRS): Removed - no longer used.
13526 (newlib.tar.gz): Don't pass DISTDOCDIRS to recursive make.
13527
13528Wed Oct 25 14:43:55 1995 Per Bothner <bothner@kalessin.cygnus.com>
13529
13530 * Makefile.in (DISTDOCDIRS): Remove ld gprof bnutils gas libg++ gdb
13531 and gnats, because they are now subsumed by DISTSTUFFDIRS.
13532 Move bfd to DISTSTUFFDIRS.
13533
13534Tue Oct 24 18:19:09 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13535
13536 * Makefile.in (X11_LIB): Removed.
13537 (X11_FLAGS_TO_PASS): pass only X11_EXTRA_CFLAGS and X11_EXTRA_LIBS.
13538
13539 * configure.in (host_makefile_frag): mh-aix & mh-sun removed.
13540
13541Sun Oct 22 13:04:42 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13542
13543 * cfg-ml-com.in (powerpc*): Shorten some of the multilib directory
13544 names.
13545
13546Fri Oct 20 18:02:10 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13547
13548 * cfg-ml-com.in (powerpc*-eabi*): Add mcall-aixdesc varients.
13549
13550Thu Oct 19 10:40:57 1995 steve chamberlain <sac@slash.cygnus.com>
13551
13552 * configure.in (i[345]86-*-win32): Always build newlib.
13553 Don't configure cvs, autoconf or texinfo.
13554 * Makefile.in (LD_FOR_TARGET): New.
13555 (BASE_FLAGS_TO_PASS, EXTRA_TARGET_FLAGS, CONFIGURE_TARGET_MODULES):
13556 Pass down LD_FOR_TARGET.
13557
13558Wed Oct 18 15:53:56 1995 steve chamberlain <sac@slash.cygnus.com>
13559
13560 * winsup: New directory.
13561 * Makefile.in: Build winsup.
13562 * configure.in: Winsup is configured when target is win32.
13563 Can only build win32 target GDB when native.
35590697 13564
252b5132
RH
13565Mon Oct 16 09:42:31 1995 Jeffrey A Law (law@cygnus.com)
13566
13567 * config.guess: Recognize HP model 819 machines as having
13568 a PA 1.1 processor.
13569
13570Mon Oct 16 10:49:43 1995 Ian Lance Taylor <ian@cygnus.com>
13571
13572 * configure: Fix sed loop which substitutes for CC and CXX to
13573 avoid bug found in various sed implementations.
13574
13575Wed Oct 11 16:16:20 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13576
13577 * cfg-ml-com.in (powerpc-*-eabisim): Delete separate rule for
13578 simulator. Use standard powerpc-*-eabi*.
13579
13580Mon Oct 9 17:21:56 1995 Ian Lance Taylor <ian@cygnus.com>
13581
13582 * configure.in: Stop putting gas and binutils in noconfigdirs for
13583 powerpc-*-aix* and rs6000-*-*.
13584
13585Mon Oct 9 12:38:40 1995 Michael Meissner <meissner@cygnus.com>
13586
13587 * cfg-ml-com.in (powerpc*-*-eabisim*): Add support for building
13588 -mcall-aixdesc libraries.
13589
13590Fri Oct 6 16:17:57 1995 Ken Raeburn <raeburn@cygnus.com>
13591
13592 Mon Sep 25 22:49:32 1995 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
13593
13594 * config.sub (arm | armel | armeb): Fix shell syntax.
13595
13596Fri Oct 6 14:40:28 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13597
13598 * cfg-ml-com.in ({powerpc,rs6000}-ibm-aix*): Add multilibs for
13599 -msoft-float and -mcpu=common support.
13600 (powerpc*-*-eabisim*): Add support for building -mcall-aix
13601 libraries.
13602
13603Thu Oct 5 13:26:37 1995 Brendan Kehoe <brendan@lisa.cygnus.com>
13604
13605 * configure.in: Allow configuration and build of emacs19 for the alpha.
13606
13607Wed Oct 4 22:05:36 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13608
13609 * configure.in (CC): Get ^CC, not just any old CC, from
13610 ${host_makefile_frag}.
13611
13612Wed Oct 4 21:55:00 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13613
35590697 13614 * configure.in (CC): Try to get CC from
252b5132
RH
13615 ${srcdir}/${host_makefile_frag}, not ${host_makefile_frag}.
13616
13617Wed Oct 4 21:44:12 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13618
13619 * Makefile.in (TARGET_CONFIGDIRS): configure targetdirs
13620 only if it exists in $(srcdir).
13621
13622Wed Oct 4 11:52:31 1995 Ian Lance Taylor <ian@cygnus.com>
13623
13624 * configure: If CC and CXX are not set in the environment, set
13625 them, based on either an existing Makefile or on searching for gcc
13626 in PATH. Substitute for CC and CXX in Makefile.
13627 * configure.in: Remove libm from target_libs. Separate
13628 target_configdirs from configdirs. If CC is not set in
13629 environment, try to get it from a host Makefile fragment. Rewrite
13630 changes of configdirs to use skipdirs instead. A few minor
13631 tweaks. Take directories out of target_configdirs as they are
13632 taken out of configdirs. Remove existing Makefile files from
13633 subdirectories. Substitute for TARGET_CONFIGDIRS and
13634 CONFIG_ARGUMENTS in Makefile.
13635 * Makefile.in (TARGET_CONFIGDIRS): New variable, automatically set
13636 by configure.in.
13637 (CONFIG_ARGUMENTS): Likewise.
13638 (CONFIGURE_TARGET_MODULES): New variable.
13639 ($(DO_X)): Loop over TARGET_CONFIGDIRS as well as SUBDIRS.
13640 ($(CONFIGURE_TARGET_MODULES)): New target.
13641 (configure-libg++, configure-libio): New targets.
13642 (all-libg++): Depend upon configure-libg++.
13643 (all-libio): Depend upon configure-libio.
13644 (configure-libgloss, all-libgloss): New targets.
13645 (configure-libstdc++): New target.
13646 (all-libstdc++): Depend upon configure-libstdc++.
13647 (configure-librx, all-librx): New targets.
13648 (configure-newlib): New target.
13649 (all-newlib): Depend upon configure-newlib
13650 (configure-xiberty): New target.
13651 (all-xiberty): Depend upon configure-xiberty.
13652
13653Sat Sep 30 04:32:59 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13654
13655 * configure.in (host i[345]86-*-win32): Expand the
13656 noconfigdirs again.
13657
13658Thu Sep 28 21:18:49 1995 Stan Shebs <shebs@andros.cygnus.com>
13659
13660 * mpw-configure: Fix sed command file name.
13661
13662Thu Sep 28 17:39:56 1995 steve chamberlain <sac@slash.cygnus.com>
13663
35590697 13664 * configure.in (host i[345]86-*-win32): Reduce the
252b5132
RH
13665 noconfigdirs again.
13666
13667Wed Sep 27 12:24:00 1995 Ian Lance Taylor <ian@cygnus.com>
13668
13669 * configure.in: Don't configure ld and gdb for powerpc*-*-winnt*
13670 or powerpc*-*-pe*, since they are not yet supported.
13671
13672Tue Sep 26 14:30:01 1995 Stan Shebs <shebs@andros.cygnus.com>
13673
13674 Add PowerMac support and many other enhancements.
13675 * mpw-configure: New option --cc to select compiler to use,
13676 paste options set according to --cc into the generated
13677 Makefile, generate the Makefile by sed'ing the Unix Makefile.in
13678 if mpw-make.sed is present.
13679 * mpw-config.in: Don't test for gC1, test for mpw-touch,
13680 add forward includes for PowerPC include files.
13681 * mpw-build.in: Build using Makefile.PPC if present.
13682 (do-byacc, etc): Remove separate version resource builds.
13683 (do-gas): Build "stamps" before "all".
13684 (do-gcc): Build "stamps-h" and "stamps-c" before "all".
13685 * mpw-README: Update to reflect --cc option, PowerMac support,
13686 and recently-reported compatibility problems.
13687
13688Fri Sep 22 12:15:42 1995 Doug Evans <dje@deneb.cygnus.com>
13689
13690 * cfg-ml-com.in (m68*-*-*): Only build multilibs for
13691 embedded m68k systems (-aout, -coff, -elf, -vxworks).
13692 (--with-multilib-top): Pass to recursive invocations.
13693
13694Tue Sep 19 13:51:05 1995 J.T. Conklin <jtc@blues.cygnus.com>
13695
13696 * configure.in (noconfigdirs): Disable libg++ and libstdc++ on
13697 v810-*-*.
13698
13699Mon Sep 18 23:08:26 1995 J.T. Conklin <jtc@rtl.cygnus.com>
13700
13701 * configure.in (noconfigdirs): Disable bfd, binutils, gas, gcc,
13702 gdb, ld and opcodes on v810-*-*.
13703
252b5132
RH
13704Tue Sep 12 18:03:31 1995 Ian Lance Taylor <ian@cygnus.com>
13705
13706 * Makefile.in (DO_X): Change do-realclean to do-maintainer-clean.
13707 (local-maintainer-clean): New target.
13708 (maintainer-clean): New target.
13709 (realclean): Just depend upon maintainer-clean.
13710
13711Fri Sep 8 17:11:14 1995 J.T. Conklin <jtc@rtl.cygnus.com>
13712
13713 * configure.in (noconfigdirs): Disable gdb on m68k-*-netbsd*.
13714
13715Fri Sep 8 16:46:29 1995 Ian Lance Taylor <ian@cygnus.com>
13716
13717 * configure.in: Build ld in mips*-*-bsd* case.
13718
13719Thu Sep 7 20:03:41 1995 Ken Raeburn <raeburn@cygnus.com>
13720
13721 * config.sub: Accept -lites* OS. From Ian Dall.
13722
13723Fri Sep 1 08:06:58 1995 James G. Smith <jsmith@beauty.cygnus.com>
13724
13725 * config.sub: recognise mips64vr4300 and mips64vr4300el as valid
35590697 13726 targets.
252b5132
RH
13727
13728Wed Aug 30 21:06:50 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13729
13730 * configure.in: treat i386-win32 canadian cross the same as
13731 i386-go32 canadian cross.
13732
13733Thu Aug 24 14:53:20 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13734
13735 * cfg-ml-com.in (powerpc*-*-eabisim): Add support for PowerPC
13736 running under the simulator to build a reduced set of libraries.
13737 (powerpc-*-eabiaix): Add fine grained multilib support added to
13738 other powerpc targets yesterday.
13739
13740Wed Aug 23 09:41:56 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13741
13742 * cfg-ml-com.in (powerpc*): Add support for -disable-biendian,
13743 -disable-softfloat, -disable-relocatable, -disable-aix, and
13744 -disable-sysv to control which multilib libraries get built.
13745
13746Thu Aug 17 16:03:41 1995 Ken Raeburn <raeburn@kr-laptop.cygnus.com>
13747
13748 * configure: Add Makefile.tem to list of files to remove in trap
13749 handler.
13750
13751Mon Aug 14 19:27:56 1995 Per Bothner <bothner@kalessin.cygnus.com>
13752
13753 * config.guess (*Linux*): Add missing "exit"s.
13754 Also, need specific check for alpha-unknown-linux (uses COFF).
13755
13756Fri Aug 11 15:38:20 1995 Per Bothner <bothner@kalessin.cygnus.com>
13757
13758 * config.guess: Merge with FSF:
13759
13760 Wed Jun 28 17:57:27 1995 David Edelsohn <edelsohn@mhpcc.edu>
13761 * config.guess (AIX4): More robust release numbering discovery.
13762
13763 Thu Jun 22 19:01:24 1995 Kenneth Stailey (kstailey@eagle.dol-esa.gov)
13764 * config.guess (i386-sequent-ptx): Properly get version number.
13765
13766 Thu Jun 22 18:36:42 1995 Uwe Seimet (seimet@iris1.chemie.uni-kl.de)
13767 * config.guess (mips:*:4*:UMIPS): New case.
13768
13769Mon Aug 7 09:21:35 1995 Doug Evans <dje@canuck.cygnus.com>
13770
13771 * configure.in (i386-go32 host): Fix typo (deja-gnu -> dejagnu).
13772 (i386-win32 host): Likewise. Don't build readline.
13773
afb8d725
JM
13774Sat Aug 5 09:51:49 1995 Fred Fish <fnf@rtl.cygnus.com>
13775
13776 * Makefile.in (GDBTK_SUPPORT_DIRS): Define and pass as part of
13777 SUPPORT_FILES to submakes.
13778
252b5132
RH
13779Fri Aug 4 13:04:36 1995 Fred Fish <fnf@cygnus.com>
13780
13781 * Makefile.in (GDB_SUPPORT_DIRS): Add utils.
13782 (DEVO_SUPPORT): Add mpw-README, mpw-build.in, mpw-config.h and
13783 mpw-configure.
13784
13785Wed Aug 2 16:32:40 1995 Ken Raeburn <raeburn@cygnus.com>
13786
13787 * configure.in (appdirs): Use =, not ==, in test expression when
13788 trying to build the text to print in the warning message for
13789 Solaris users.
13790
13791Mon Jul 31 09:56:18 1995 steve chamberlain <sac@slash.cygnus.com>
13792
13793 * cfg-ml-com.in (z8k-*-coff): Add 'std' multilib build.
13794
13795Fri Jul 28 00:16:31 1995 Jeffrey A. Law <law@rtl.cygnus.com>
13796
13797 * config.guess: Recognize lynx-2.3.
13798
13799Thu Jul 27 15:47:59 1995 steve chamberlain <sac@slash.cygnus.com>
13800
13801 * config.sub (z8ksim): Deleted
13802 (z8k-*-coff): New, this is the one true name of the target.
13803
13804Thu Jul 27 14:33:33 1995 Doug Evans <dje@canuck.cygnus.com>
13805
13806 * cfg-ml-pos.in (dotdot): Work around SunOS sed bug.
13807
13808Thu Jul 27 13:31:05 1995 Fred Fish (fnf@cygnus.com)
13809
13810 * config.guess (*:Linux:*:*): First try asking the linker what the
13811 default object file format is (elf, aout, or coff). Then if this
13812 fails, try previous methods.
13813
13814Thu Jul 27 11:28:17 1995 J.T. Conklin <jtc@rtl.cygnus.com>
13815
13816 * configure.in: Don't build newlib for *-*-vxworks5.1.
13817
13818Thu Jul 27 11:18:47 1995 Brendan Kehoe <brendan@lisa.cygnus.com>
13819
13820 * configure.in: Don't build newlib for a29k-*-vxworks5.1.
13821 * test-build.mk: Add setting of --with-headers for a29k-vxworks5.1.
13822
13823Tue Jul 25 21:25:39 1995 Doug Evans <dje@canuck.cygnus.com>
13824
13825 * cfg-ml-pos.in (MULTITOP): Trim excess trailing "/.".
13826
13827Fri Jul 21 10:41:12 1995 Doug Evans <dje@canuck.cygnus.com>
13828
13829 * cfg-ml-com.in: New file.
13830 * cfg-ml-pos.in: New file.
13831
13832Wed Jul 19 00:37:27 1995 Jeffrey A. Law <law@rtl.cygnus.com>
13833
13834 * COPYING.NEWLIB: Add HP free copyright to list.
13835
13836Tue Jul 18 10:58:51 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13837
13838 * config.sub: Recognize -eabi* for the system, not just -eabi.
13839
13840Mon Jul 3 13:44:51 1995 Steve Chamberlain <sac@slash.cygnus.com>
13841
13842 * Makfile.in (DLLTOOL_FOR_TARGET): New name, pass it down.
13843 * config.sub, configure.in (win32): New target and host.
13844
13845Wed Jun 28 23:57:08 1995 Steve Chamberlain <sac@slash.cygnus.com>
13846
13847 * configure.in: Add i386-pe configuration.
13848
13849Fri Jun 23 14:28:44 1995 Stan Shebs <shebs@andros.cygnus.com>
13850
13851 * mpw-build.in (install): Install GDB after LD.
13852
13853Thu Jun 22 17:10:53 1995 Stan Shebs <shebs@andros.cygnus.com>
13854
13855 * mpw-config.in (elf/mips.h): Always forward-include, needed
13856 for GDB to build.
13857
13858Wed Jun 21 15:17:30 1995 Rob Savoye <rob@darkstar.cygnus.com>
13859
13860 * testsuite: New directory for customer acceptance and whole tool
13861 chain tests.
13862
13863Wed Jun 21 16:50:29 1995 Ken Raeburn <raeburn@cujo.cygnus.com>
13864
13865 * configure: If per-host line isn't found, but AC_OUTPUT is found
13866 and a configure script exists, run it instead.
13867
13868Thu Jun 15 21:09:24 1995 Per Bothner <bothner@kalessin.cygnus.com>
13869
13870 * config.guess: Update from FSF, for alpha-dec-winnt3.5 and Crays.
13871
13872Tue Jun 13 21:43:27 1995 Rob Savoye <rob@darkstar.cygnus.com>
13873
13874 * configure: Set build_{cpu,vendor,os,alias} to host values when
13875 --build isn't specified.
13876
13877Mon Jun 5 18:26:36 1995 Jason Merrill <jason@phydeaux.cygnus.com>
13878
13879 * Makefile.in (PICFLAG, PICFLAG_FOR_TARGET): New macros.
13880 (FLAGS_TO_PASS): Pass them.
13881 (EXTRA_TARGET_FLAGS): Ditto.
13882
252b5132
RH
13883Wed May 31 22:27:42 1995 Jim Wilson <wilson@chestnut.cygnus.com>
13884
13885 * Makefile.in (all-libg++): Depend on all-libstdc++.
13886
13887Thu May 25 22:40:59 1995 J.T. Conklin <jtc@rtl.cygnus.com>
13888
13889 * configure.in (noconfigdirs): Enable all packages for
13890 i386-unknown-netbsd.
13891
13892Sat May 20 13:22:31 1995 Angela Marie Thomas <angela@cirdan.cygnus.com>
13893
13894 * configure.in (noconfigdirs): Don't configure tk for i386-go32
13895 hosted builds (DOS builds)
13896
13897Thu May 18 18:08:49 1995 Ken Raeburn <raeburn@kr-laptop.cygnus.com>
13898
13899 Changes for ARM based on patches from Richard Earnshaw:
13900 * config.sub: Handle armeb and armel.
13901 * configure.in: Omit arm linker only for riscix.
13902
13903Thu May 11 17:23:26 1995 Per Bothner <bothner@kalessin.cygnus.com>
13904
13905 * config.guess: Update from FSF.
13906
13907Tue May 9 15:52:05 1995 Michael Meissner <meissner@cygnus.com>
13908
13909 * config.sub: Recognize powerpcle as the little endian varient of
13910 the PowerPC. Recgonize ppc as a PowerPC variant, and ppcle as a
13911 powerpcle variant. Convert pentium into i586, not i486. Add p5
13912 alias for i586. Map new x86 variants p6, k5, nexgen into i586
13913 temporarily.
13914
13915Tue May 2 16:29:41 1995 Jeff Law (law@snake.cs.utah.edu)
13916
13917 * configure.in (hppa*-*-lites*): Treat like hppa*-*-*elf*.
13918
13919Sun Apr 30 21:38:09 1995 Jeff Law (law@snake.cs.utah.edu)
13920
13921 * config.sub: Accept -lites* as a basic system type.
13922
13923Thu Apr 27 11:33:29 1995 Michael Meissner (meissner@cygnus.com)
13924
13925 * config.guess (*:Linux:*:*): Check for whether the pre-BFD linker is
13926 installed, and if so return linuxoldld as the system name.
13927
13928Wed Apr 26 10:59:02 1995 Jeff Law (law@snake.cs.utah.edu)
13929
13930 * config.guess: Add hppa1.1-hp-lites support.
13931
13932Tue Apr 25 11:08:11 1995 Rob Savoye <rob@darkstar.cygnus.com>
13933
13934 * configure.in: Don't build newlib for m68k-vxworks5.1.
13935
13936Wed Apr 19 17:02:43 1995 Jim Wilson <wilson@chestnut.cygnus.com>
13937
13938 * configure.in (mips-sgi-irix6): Use mh-irix5.
13939
13940Fri Apr 14 15:21:17 1995 Doug Evans <dje@chestnut.cygnus.com>
13941
13942 * Makefile.in (all-gcc): Depend on all-ld (for libgcc1-test).
13943
13944Wed Apr 12 16:06:01 1995 Jason Merrill <jason@phydeaux.cygnus.com>
13945
13946 * test-build.mk: Enable building of shared libraries on IRIX 5 and
80413487 13947 OSF/1. Fix compiler flags.
252b5132
RH
13948 * build-all.mk: Support Linux and OSF/1 3.0. Fix compiler flags.
13949
13950Tue Apr 11 18:55:40 1995 Doug Evans <dje@canuck.cygnus.com>
13951
13952 * configure.in: Recognize --with-newlib.
13953 (sparc-*-sunos4*): Build sim, dejagnu, expect, tcl if cross target.
13954
afb8d725
JM
13955Mon Apr 10 14:38:20 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13956
13957 * Makefile.in: move {all,check,install}-gdb from *_MODULES
13958 to *_X11_MODULES due to gdbtk needing X include files et al.
13959
252b5132
RH
13960Mon Apr 10 11:42:22 1995 Stan Shebs <shebs@andros.cygnus.com>
13961
13962 Merge in support for Mac MPW as a host.
13963 (Old change descriptions retained for informational value.)
13964
13965 * mpw-config.in: Add generic include forwards for cpu-specific
13966 include files in aout and elf directories.
13967
13968 * mpw-configure: Added copyright.
13969 * mpw-config.in: Check for presence of required build tools.
13970 (target_libs): Add newlib.
13971 (target_tools): Add examples.
13972 (Read Me): Generate as "Read Me for MPW" instead.
13973 * mpw-build.in: Base sub-builds on all-foo instead of do-foo.
13974 (all-byacc, do-byacc, all-flex, do-flex, do-newlib): New actions.
13975 (do-gas, do-gcc, do-gdb, do-ld): Build Version.r first.
13976
13977 * mpw-configure: Remove subdir-specific makefile hackery,
13978 delete mk.tmp after using it.
13979
13980 * mpw-build.in (all): Display start and end times.
13981
13982 * mpw-configure (host_canonical): Set.
13983 (target_cpu): Always add to makefiles.
13984 (ARCHDEFS, EMUL): Add to makefile only if nonempty.
13985 (TM_FILE, XM_FILE, NM_FILE): No longer add to makefile.
13986 (mpw-mh-mpw): Look for in srcdir and srcroot.
13987 Use sed instead of mpw-edit-prefix to edit prefix definitions.
13988
13989 * mpw-build.in: (install-only): New target.
13990
13991 * mpw-configure (host_alias, target_alias): Rename from hostalias
13992 and targetalias, add into generated Makefile.
13993 (mk.tmp): If present, add into generated Makefile.
13994 * mpw-build.in (all-gas): Build config.h first before gas proper.
13995
13996 * mpw-configure (config.status): Write only if changed.
13997 * mpw-config.in (readline): Configure it (not built, just used for
13998 definitions).
13999
14000 * mpw-config.in (elf/mips.h): Add a forward include.
14001
14002 * mpw-config.in: Forward-include most .h files in include into
14003 extra-include.
14004 (readline): Don't build.
14005 mpw-build.in (install): Install GDB.
14006
14007 * mpw-configure (prefix, mpw_prefix): Handle it.
14008 * mpw-config.in (mmalloc, readline): Don't configure.
14009 * mpw-build.in (thisscript): Rename to ThisScript.
14010 Use mpw-build instead of BuildProgram everywhere.
14011 (mmalloc, readline): Don't build.
14012 * mpw-README: New file, basic documentation about the MPW port.
14013
14014 * mpw-config.in: Use forward-include to create include files.
14015
14016 * mpw-configure: Add more things to the top of each configured
14017 Makefile, including contents of config/mpw-mh-mpw.
14018 * mpw-config.in (extra-include): Create this directory and fill it
14019 with Posix-like include files when configuring.
14020
14021 * config.sub (apple, mac, mpw): Add various aliases.
14022
14023 * mpw-build.in: New file, top-level build script fragment for MPW.
14024 * mpw-configure: New file, configure script for MPW.
14025 * mpw-config.in: New file, config fragment for MPW.
14026
14027Fri Apr 7 19:33:16 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
14028
14029 * configure.in (host_libs): Remove glob, since it is gone from the
14030 sources.
14031
14032Fri Mar 31 11:36:17 1995 Jason Molenda (crash@phydeaux.cygnus.com)
14033
14034 * Makefile.in: define empty GDB_NLM_DEPS var.
14035
14036 * configure.in(target_makefile_frag): use config/mt-netware
14037 for netware targets.
14038
14039Thu Mar 30 13:51:43 1995 Ian Lance Taylor <ian@cygnus.com>
14040
14041 * config.sub: Merge in recent FSF changes. Remove linux special
14042 cases.
14043
14044Tue Mar 28 14:47:34 1995 Jason Molenda (crash@phydeaux.cygnus.com)
14045
4bddf3ad 14046 Revert this change:
252b5132
RH
14047
14048 Tue Mar 30 10:03:09 1993 Ian Lance Taylor (ian@cygnus.com)
14049
14050 * build-all.mk: Use CC=cc -Xs on Solaris.
14051
252b5132
RH
14052Tue Mar 21 10:43:32 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
14053
14054 * glob/*: Removed. Schauer's 24 Feb 1994 readline change made us
14055 stop using it.
14056 * Makefile.in: Nuke all references to glob subdirectory.
14057
14058Thu Mar 16 13:35:30 1995 Jason Merrill <jason@phydeaux.cygnus.com>
14059
14060 * configure.in: Fix --enable-shared logic in per-host.
14061
14062Mon Mar 13 12:33:15 1995 Ian Lance Taylor <ian@cygnus.com>
14063
14064 * configure.in (*-hp-hpux[78]*): Use mh-hpux8.
14065
14066Mon Mar 6 10:21:58 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
14067
14068 * configure.in (noconfigdirs): Don't build gas on AIX, for
14069 powerpc*-*-aix* as well as for rs6000*-*-aix*.
14070
14071Wed Mar 1 12:51:53 1995 Ian Lance Taylor <ian@cygnus.com>
14072
14073 * configure: Fix --cache-file to work if the file argument is a
14074 relative path.
14075
14076Tue Feb 28 17:36:07 1995 Ian Lance Taylor <ian@cygnus.com>
14077
14078 * configure: If the --cache-file is used, pass it down to
14079 configure in subdirectories.
14080
14081Mon Feb 27 12:52:46 1995 Kung Hsu <kung@mexican.cygnus.com>
14082
14083 * config.sub: add vxworks29k configuration.
14084
14085Fri Feb 10 16:12:26 1995 Ken Raeburn <raeburn@cujo.cygnus.com>
14086
14087 * Makefile.in (taz): Do "diststuff" part quietly.
14088
14089Sun Feb 5 14:16:35 1995 Doug Evans <dje@canuck.cygnus.com>
14090
14091 * config.sub: Mini-merge with gcc/config.sub.
14092
14093Sat Feb 4 12:11:35 1995 Jim Wilson <wilson@chestnut.cygnus.com>
14094
14095 * config.guess (IRIX): Sed - to _.
14096
14097Fri Feb 3 11:54:42 1995 J.T. Conklin <jtc@rtl.cygnus.com>
14098
14099 * Makefile.in (source-vault, binary-vault): New targets.
14100
14101Thu Jan 26 13:00:11 1995 Michael Meissner <meissner@cygnus.com>
14102
14103 * config.sub: Recognize -eabi as a basic system type.
14104
14105Thu Jan 12 13:13:23 1995 Jason Merrill <jason@phydeaux.cygnus.com>
14106
14107 * configure.in (enable_shared stuff): Fix typo.
14108
14109Thu Jan 12 01:36:51 1995 deanm@medulla.LABS.TEK.COM (Dean Messing)
14110
14111 * Makefile.in (BASE_FLAGS_TO_PASS): Fix typo in passing LIBCXXFLAGS*.
14112
14113Wed Jan 11 16:29:53 1995 Jason Merrill <jason@phydeaux.cygnus.com>
14114
14115 * Makefile.in (LIBCXXFLAGS_FOR_TARGET): Add -fno-implicit-templates.
14116
14117Mon Jan 9 12:48:01 1995 Jim Kingdon <kingdon@lioth.cygnus.com>
14118
14119 * configure.in (rs6000-*-*): Don't build gas.
14120
14121Wed Jan 4 23:53:49 1995 Ian Lance Taylor <ian@tweedledumb.cygnus.com>
14122
14123 * Makefile.in: Use /x/x/ instead of /brokensed/brokensed/, to
14124 reduce command line length.
14125 (AS_FOR_TARGET): Check for as.new, not Makefile.
14126 (NM_FOR_TARGET): Check for nm.new, not Makefile.
14127
14128Wed Jan 4 13:02:39 1995 Per Bothner <bothner@kalessin.cygnus.com>
14129
14130 * config.guess: Merge from FSF.
14131
14132Thu Dec 15 17:11:37 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
14133
14134 * configure: Don't use $ when handling program_suffix.
14135
14136Mon Dec 12 12:09:37 1994 Stu Grossman (grossman@cygnus.com)
14137
14138 * configure.in: Configure tk for hppa/hpux.
14139
14140Fri Dec 2 15:55:38 1994 Per Bothner <bothner@kalessin.cygnus.com>
14141
14142 * Makefile.in (LIBGXX_SUPPORT_DIRS): Add libstdc++.
14143
14144Tue Nov 29 19:37:56 1994 Per Bothner <bothner@kalessin.cygnus.com>
14145
14146 * Makefile.in: Move -fno-implicit-template from CXXFLAGS
14147 to LIBCXXFLAGS. Tests are better run without it.
14148
14149Wed Nov 23 10:29:25 1994 Brendan Kehoe (brendan@lisa.cygnus.com)
14150
14151 * Makefile.in (all-ispell): Depend on all-emacs19 instead of all-emacs.
14152
14153Mon Nov 21 11:14:01 1994 J.T. Conklin <jtc@rtl.cygnus.com>
14154
14155 * configure.in (*-*-netware*): Don't configure xiberty.
14156
14157Mon Nov 14 08:49:15 1994 Stu Grossman (grossman@cygnus.com)
14158
14159 * configure.in: Remove tk from native_only list.
14160
14161Fri Nov 11 15:31:26 1994 Bill Cox (bill@rtl.cygnus.com)
14162
14163 * build-all.mk: Add mips-ncd-elf target to sun4 targets
14164 for special NCD build.
14165
14166Mon Nov 7 20:58:17 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
14167
14168 * Makefile.in (DEVO_SUPPORT): Remove configure.bat and
14169 makeall.bat, they're only useful for binutils snapshots.
14170 (binutils.tar.gz, gas+binutils.tar.gz): Add configure.bat and
14171 makeall.bat to specified SUPPORT_FILES.
14172
14173Mon Nov 7 17:25:18 1994 Bill Cox (bill@cirdan.cygnus.com)
14174
14175 * build-all.mk: Add Ericsson targets to sun4 and solaris
14176 hosts. Add BNR's sun4 target to solaris host, so their
14177 build-from-source will be tested in-house first.
14178
14179Sat Nov 5 18:43:30 1994 Jason Merrill (jason@phydeaux.cygnus.com)
14180
14181 * Makefile.in (LIBCFLAGS): New variable.
14182 (CFLAGS_FOR_TARGET): Ditto.
14183 (LIBCFLAGS_FOR_TARGET): Ditto.
14184 (LIBCXXFLAGS): Ditto.
14185 (CXXFLAGS_FOR_TARGET): Ditto.
14186 (LIBCXXFLAGS_FOR_TARGET): Ditto.
14187 (BASE_FLAGS_TO_PASS): Pass them.
14188 (EXTRA_TARGET_FLAGS): Ditto.
14189
4bddf3ad 14190 * configure.in: Support --enable-shared.
252b5132
RH
14191
14192Sat Nov 5 15:44:00 1994 Per Bothner <bothner@kalessin.cygnus.com>
14193
14194 * configure.in (target_libs): Include libstdc++ again.
14195 * config.guess: Update from FSF (for FreeBSD).
14196
14197Thu Nov 3 16:32:30 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
14198
14199 * Makefile.in (DEVO_SUPPORT): Include configure.bat and
14200 makeall.bat.
14201 (DISTDOCDIRS): Add `etc'.
14202 (ETC_SUPPORT_PFX): New variable.
14203 (taz): Include anything from etc starting with a word in
14204 ETC_SUPPORT_PFX.
14205
14206Wed Oct 26 16:19:35 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
14207
14208 * config.sub: Update for recent FSF changes. Remove obsolete
14209 h8300hds entry. Add -windows* and -osx as basic os. Minor
14210 spacing changes.
14211
14212Thu Oct 20 18:41:56 1994 Per Bothner <bothner@kalessin.cygnus.com>
14213
14214 * configure.in (target_libs): Remove libstdc++ for libg++-2.6.1.
14215
14216 * config.guess: Merge with FSF.
14217 * configure.in: Match on i?86-ncr-sysv4.3, not i?86-ncr-sysv43.
14218
14219Thu Oct 20 19:26:56 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
14220
14221 * configure: Since the "trap 0" handler will override the exit
14222 status on many systems, only use it for "exit 1", and make it set
14223 a non-zero exit status; reset it before "exit 0". Also, check
14224 exit status of config.sub, and error out if it failed.
14225
14226Wed Oct 19 18:49:55 1994 Rob Savoye (rob@cygnus.com)
14227
14228 * Makefile.in: (ALL_TARGET_MODULES,INSTALL_TARGET_MODULES) Build
14229 and install libgloss.
14230
14231Tue Oct 18 15:25:24 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
14232
14233 * Makefile.in (all-binutils): Depend upon all-byacc.
14234
14235 * configure.in: Don't build emacs on Irix 5.
14236
14237Mon Oct 17 16:22:12 1994 J.T. Conklin (jtc@phishhead.cygnus.com)
14238
14239 * configure.in (*-*-netware*): Add libio.
14240
14241Thu Oct 13 15:51:20 1994 Jason Merrill (jason@phydeaux.cygnus.com)
14242
14243 * Makefile.in (ALL_TARGET_MODULES): Add libstdc++.
14244 (CHECK_TARGET_MODULES): Ditto.
14245 (INSTALL_TARGET_MODULES): Ditto.
14246 (TARGET_LIBS): Ditto.
14247 (all-libstdc++): Note dependencies.
14248
14249Thu Oct 13 01:43:08 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
14250
14251 * Makefile.in (BINUTILS_SUPPORT_DIRS): Add gas.
14252
14253Tue Oct 11 12:12:29 1994 Jason Merrill (jason@phydeaux.cygnus.com)
14254
14255 * Makefile.in (CXXFLAGS): Use -fno-implicit-templates instead of
14256 -fexternal-templates.
14257
14258 * configure.in (target_libs): Add libstdc++.
14259 (noconfigdirs): Add libstdc++ as appropriate.
14260
14261Thu Oct 6 18:00:54 1994 Per Bothner (bothner@kalessin.cygnus.com)
14262
14263 * config.guess: Update from FSF.
14264
14265Tue Oct 4 12:05:42 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
14266
14267 * configure: Use ${config_shell} when running ${configsub}.
14268
14269Mon Oct 3 14:28:34 1994 Doug Evans <dje@canuck.cygnus.com>
14270
14271 * config.sub: No longer recognize h8300h.
14272
14273Mon Oct 3 12:40:54 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
14274
14275 * config.sub: Remove extraneous differences between config.sub and
14276 gcc/config.sub.
14277
14278Sat Oct 1 00:23:12 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
14279
14280 * Makefile.in (DISTSTUFFDIRS): Add gas.
14281
14282Thu Sep 22 19:04:55 1994 Doug Evans (dje@canuck.cygnus.com)
14283
14284 * COPYING.NEWLIB: New file.
14285
14286Mon Sep 19 18:25:40 1994 Per Bothner (bothner@kalessin.cygnus.com)
14287
14288 * config.guess (HP-UX): Patch from Harlan Stenn
14289 <harlan@landmark.com> to also emit release level.
14290
14291Wed Sep 7 13:15:25 1994 Jim Wilson (wilson@sphagnum.cygnus.com)
14292
14293 * config.guess (sun4*:SunOS:*:*): Change '-JL' to '_JL'.
14294
14295Tue Sep 6 23:23:18 1994 Per Bothner (bothner@kalessin.cygnus.com)
14296
14297 * config.sub: Merge nextstep cleanup from FSF.
14298
14299Mon Sep 5 05:01:30 1994 Ken Raeburn (raeburn@kr-pc.cygnus.com)
14300
14301 * configure.in (arm-*-*): Don't configure ld for this target.
14302
14303Thu Sep 1 09:35:00 1994 J.T. Conklin (jtc@phishhead.cygnus.com)
14304
14305 * configure.in (*-*-netware): don't configure libg++, libio,
14306 librx, or newlib.
14307
14308Wed Aug 31 13:52:08 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14309
14310 * configure.in (alpha-dec-osf*): Use osf*, not osf1*. Don't
14311 configure ld--it works, but it doesn't support shared libraries.
14312
14313Sun Aug 28 18:13:45 1994 Per Bothner (bothner@kalessin.cygnus.com)
14314
14315 * config.guess (*-unknown-freebsd*): Get rid of possible
14316 trailing "(Release)" in version string.
14317 Patch from Paul Richards <paul@isl.cf.ac.uk>.
14318
14319Sat Aug 27 15:00:49 1994 Per Bothner (bothner@kalessin.cygnus.com)
14320
14321 * config.guess: Fix i486-ncr-sysv43 -> i486-ncr-sysv4.3.
14322 Fix type: *-next-neststep -> *-next-nextstep.
14323
14324 * config.guess: Merge from FSF:
14325
14326 Fri Aug 26 18:45:25 1994 Philippe De Muyter (phdm@info.ucl.ac.be)
14327
14328 * config.guess: Recognize powerpc-ibm-aix3.2.5.
14329
14330 Wed Apr 20 06:36:32 1994 Philippe De Muyter (phdm@info.ucl.ac.be)
14331
14332 * config.guess: Recognize UnixWare 1.1 (UNAME_SYSTEM is SYSTEM_V
14333 instead of UNIX_SV for UnixWare 1.0).
14334
14335Sat Aug 27 01:56:30 1994 Stu Grossman (grossman@cygnus.com)
14336
14337 * Makefile.in (all-gdb): Add dependencies on all-gcc and all-ld
14338 to make gdb/nlm/* build after the compiler and linker.
14339
14340Fri Aug 26 14:30:05 1994 Per Bothner (bothner@kalessin.cygnus.com)
14341
14342 * config.guess (netbsd, freebsd, linux): Accept any machine,
14343 not just i[34]86.
14344 (m68k-atari-sysv4): Relocate to match FSF version.
14345
14346 * config.guess: More merges from the FSF:
14347
14348 Add a space before function call or macro invocation.
14349
14350 Tue May 10 16:53:55 1994 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
14351
14352 * config.guess: Add trap cmd to remove dummy.c and dummy when
14353 interrupted.
14354
14355 Wed Apr 20 18:07:13 1994 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
14356
14357 * config.guess (dummy.c): Redirect stderr for `hostinfo' command.
14358 (dummy): Redirect stderr from compilation of dummy.c.
14359
14360 Sat Apr 9 14:59:28 1994 Christian Kranz (kranz@sent5.uni-duisburg.de)
14361
14362 * config.guess: Distinguish between NeXTStep 2.1 and 3.x.
14363
14364Fri Aug 26 13:42:20 1994 Ken Raeburn (raeburn@kr-laptop.cygnus.com)
14365
14366 * configure: Accept and ignore --cache*, for compatibility with
14367 new autoconf.
14368
14369Fri Aug 26 13:05:27 1994 Per Bothner (bothner@kalessin.cygnus.com)
14370
14371 * config.guess: Merge from FSF:
14372
14373 Thu Aug 25 20:28:51 1994 Richard Stallman <rms@mole.gnu.ai.mit.edu>
14374
14375 * config.guess (Pyramid*:OSx*:*:*): New case.
80413487
RH
14376 (PATH): Add /.attbin at end for finding uname.
14377 (dummy.c): Handle i860-alliant-bsd. Follow whitespace conventions.
252b5132
RH
14378
14379 Wed Aug 17 18:21:02 1994 Tor Egge (tegge@pvv.unit.no)
14380
80413487 14381 * config.guess (M88*:DolphinOS:*:*): New case.
252b5132
RH
14382
14383 Thu Aug 11 17:00:13 1994 Stan Cox (coxs@dg-rtp.dg.com)
14384
80413487
RH
14385 * config.guess (AViiON:dgux:*:*): Use TARGET_BINARY_INTERFACE
14386 to select whether to use ELF or COFF.
252b5132
RH
14387
14388 Sun Jul 24 16:20:53 1994 Richard Stallman <rms@mole.gnu.ai.mit.edu>
14389
80413487 14390 * config.guess: Recognize i860-stardent-sysv and i860-unknown-sysv.
252b5132
RH
14391
14392 Sun May 1 10:23:10 1994 Richard Stallman (rms@mole.gnu.ai.mit.edu)
14393
14394 * config.guess: Guess the OS version for HPUX.
14395
14396 Tue Mar 1 21:53:03 1994 Karl Heuer (kwzh@hal.gnu.ai.mit.edu)
14397
14398 * config.guess (UNAME_VERSION): Recognize aix3.2.4 and aix3.2.5.
14399
14400Fri Aug 26 11:19:08 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14401
14402 * configure.in: Recognize --with-headers, --with-libs, and
14403 --without-newlib.
14404 * Makefile.in (all-xiberty): Depend upon all-ld.
14405
14406Wed Aug 24 12:36:50 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14407
14408 * configure.in: Change i[34]86 to i[345]86.
14409
14410Mon Aug 22 10:58:33 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14411
14412 * configure (version): A few more tweaks to help message.
14413
14414Fri Aug 19 12:40:25 1994 Per Bothner (bothner@kalessin.cygnus.com)
14415
14416 * Makefile.in: Remove (for now) librx as a host library,
14417 now that we're building it for target.
14418
14419Fri Aug 19 10:49:17 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14420
14421 * configure: Fix up help message; from karl@owl.hq.ileaf.com
14422 (Karl Berry).
14423
14424Tue Aug 16 16:11:08 1994 Per Bothner (bothner@kalessin.cygnus.com)
14425
14426 * configure.in: Also configure librx.
14427
14428Mon Aug 15 16:51:45 1994 Per Bothner (bothner@kalessin.cygnus.com)
14429
14430 * Makefile.in: Update various rules to reflect that librx
14431 is now needed for libg++.
14432
14433Fri Aug 12 18:07:21 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14434
14435 * config.sub: Accept mips64orion and mips64orionel as a CPU name.
14436
14437Mon Aug 8 11:36:17 1994 Stan Shebs (shebs@andros.cygnus.com)
14438
14439 * configure.in: Configure the examples directory.
14440
14441Thu Aug 4 16:12:36 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14442
14443 * configure: Simplify Jun 2 1994 change.
14444
14445Wed Aug 3 04:58:16 1994 D. V. Henkel-Wallace (gumby@cygnus.com)
14446
14447 * change CC to /usr/latest/bin/gcc for lynx host builds, since
14448 /bin/gcc isn't good enough to build gcc.
14449
14450Wed Jul 27 09:07:14 1994 Fred Fish (fnf@cygnus.com)
14451
14452 * Makefile.in (GDB_SUPPORT_FILES): Remove
14453 (setup-dirs-gdb, gdb.tar.gz, make-gdb.tar.gz): Remove old rules.
14454 (gdb.tar.gz): Add new rule to use standard distribution building
14455 mechanism.
14456
14457Mon Jul 25 11:10:06 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14458
14459 * configure.in: Warn about use of /usr/ucb/cc on Solaris. From
14460 Bill Cox <bill@cygnus.com>.
14461
14462Sat Jul 23 12:19:46 1994 Per Bothner (bothner@kalessin.cygnus.com)
14463
14464 * config.guess: Recognize ISC. Patch from kwzh@gnu.ai.mit.edu.
14465
14466Fri Jul 22 17:53:59 1994 Stu Grossman (grossman@cygnus.com)
14467
14468 * configure: Search current dir first in .gdbinit.
14469
14470Fri Jul 22 11:28:30 1994 Per Bothner (bothner@kalessin.cygnus.com)
14471
14472 * config.sub: Recognize freebsd (merged from gcc config.sub).
14473
14474Thu Jul 21 14:10:52 1994 Per Bothner (bothner@kalessin.cygnus.com)
14475
14476 * config.sub: Refer to NeXT's operating system as nextstep.
14477
14478 * config.sub (case $basic_machine): Re-order the cases, to match
14479 the order in the FSF version (which is mostly alphabethical).
14480 Merge in some additions and changes from the FSF.
14481
14482Sat Jul 16 12:03:08 1994 Stan Shebs (shebs@andros.cygnus.com)
14483
14484 * config.guess: Recognize m68k-atari-sysv4 and m88k-harris-csux7.
14485 * config.sub: Recognize cxux7.
14486 * configure.in: Use mh-cxux for m88k-harris-cxux*.
14487
14488Mon Jul 11 14:37:39 1994 Per Bothner (bothner@kalessin.cygnus.com)
14489
14490 * config.sub: Fix typo powerpc -> powerpc-*.
14491
14492Sat Jul 9 13:03:43 1994 Michael Tiemann (tiemann@blues.cygnus.com)
14493
14494 * Makefile.in: `all-emacs19' depends on `all-byacc'.
14495
14496 * Makefile.in: Add all-emacs19 and install-emacs19 rules (in
14497 parallel with all-emacs and install-emacs). Top-level command
14498 `make all-emacs19 CC=gcc' now behaves as `make all-emacs CC=gcc'.
14499
14500Thu Jun 30 16:53:42 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14501
14502 * test-build.mk ($(host)-stamp-stage2-installed): Remove
14503 $(relbindir)/make before doing ``make install'', and use
14504 $(GNU_MAKE) while doing it. Avoids problem on SunOS with
14505 installing over running make binary.
14506 ($(host)-stamp-stage3-installed): Likewise.
14507
14508Tue Jun 28 13:43:25 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14509
14510 * config.guess: Recognize Mach.
14511
14512Mon Jun 27 16:41:14 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14513
14514 * configure: Check ${exec_prefixoption}, not ${exec_prefix}, to
14515 see whether --exec-prefix was used.
14516
14517Sun Jun 26 21:15:54 1994 Per Bothner (bothner@kalessin.cygnus.com)
14518
14519 * README: Explicitly mention libg++/README. (Zoo's idea.)
14520
14521Tue Jun 21 12:45:55 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14522
14523 * Makefile.in: Add all-librx target similar to all-libproc.
14524
14525Wed Jun 8 23:11:55 1994 Stu Grossman (grossman@cygnus.com)
14526
14527 * config.guess: Rearrange tests for Alpha-OSF1 to properly deal
14528 with post 1.2 uname bogosity.
14529
14530Thu Jun 9 00:27:59 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14531
14532 * configure: Remove temporary files on receipt of a signal.
14533
14534Tue Jun 7 12:06:24 1994 Ian Lance Taylor (ian@cygnus.com)
14535
14536 * configure: If there is a package_makefile_frag, remove
14537 ${subdir}/Makefile.tem after copying it in.
14538
14539Mon Jun 6 21:35:02 1994 D. V. Henkel-Wallace (gumby@cygnus.com)
14540
14541 * build_all.mk: support rs6000 lynx identifies itself as
14542 rs6000-lynx-lynxos2.2.2. Also, use /usr/cygnus/progressive/bin/gcc
14543 since /bin/gcc is too feeble to compile a modern gcc.
14544
14545Mon Jun 6 16:06:34 1994 Karen Christiansen (karen@cirdan.cygnus.com)
14546
14547 * brought devo/test-build.mk update-to-date with progressive/
14548 test-build.mk. Add lynx targets and hppa flag info.
14549
14550Sat Jun 4 17:23:54 1994 Per Bothner (bothner@kalessin.cygnus.com)
14551
14552 * configure.in: Use mh-ncrsvr43. Patch from
14553 Tom McConnell <tmcconne@sedona.intel.com>.
14554
14555Fri Jun 3 17:47:24 1994 Per Bothner (bothner@kalessin.cygnus.com)
14556
14557 * config.guess (i386-unknown-bsdi): No longer need to
14558 check #if defined(__bsdi__) && defined(__i386__).
14559
14560Thu Jun 2 18:56:46 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14561
14562 * configure: Set program_transform_nameoption correctly.
14563
14564Thu Jun 2 10:57:06 1994 Karen Christiansen (karen@cirdan.cygnus.com)
14565
14566 * brought build-all.mk update-to-date with progressive build-all.mk,
14567 added new targets and hppa info.
35590697 14568
252b5132
RH
14569Thu Jun 2 00:12:44 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14570
14571 * configure: If config.guess result is a prefix of the user
14572 specified target, assume a native build and use the user specified
14573 target as the host alias. Remove SunOS patch suffix removal hack.
14574 * configure.in: Remove SunOS patch suffix removal hack.
14575
14576 * Makefile.in (CROSS_CHECK_MODULES): Remove check-flex, since it's
14577 in NATIVE_CHECK_MODULES.
14578
14579Wed Jun 1 10:49:41 1994 Bill Cox (bill@rtl.cygnus.com)
14580
14581 * Makefile.in: Rename HOST_ONLY to NATIVE.
14582 * configure: Delete SunOs patch suffix from host_canonical
14583 and build_canonical variables that are prepended to Makefiles.
14584 * configure.in: Add comments for easier maintenance.
14585
14586Tue May 31 19:39:47 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14587
14588 * Makefile.in: Add all-libproc target similar to all-gui.
14589
14590Tue May 31 17:16:33 1994 Tom Lord (lord@cygnus.com)
14591
14592 * Makefile.in (CHECK_MODULES): split into
14593 HOST_ONLY_CHECK_MODULES and CROSS_CHECK_MODULES.
14594
14595Tue May 31 16:36:36 1994 Paul Eggert (eggert@twinsun.com)
14596
14597 * config.guess (i386-unknown-bsdi): New system to guess.
14598
14599Wed May 25 16:47:10 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14600
14601 * Makefile.in: Add all-gui target (but not yet build by "all").
14602
14603Thu May 26 08:53:19 1994 Bill Cox (bill@rtl.cygnus.com)
14604
14605 * config.sub: Move deletion of patch suffix from here...
14606 * configure.in: To here, at Ian's suggestion. The top-
14607 level scripts might need to know of a patch level.
14608
14609Wed May 25 09:15:54 1994 Bill Cox (bill@rtl.cygnus.com)
14610
14611 * config.sub: Strip off patch suffix so rtl is recognized
14612 as a sunos4.1.3 machine, even though it's been patched.
14613
14614Fri May 20 08:25:49 1994 Steve Chamberlain (sac@deneb.cygnus.com)
14615
14616 * Makefile.in (INSTALL_LAST): Delete.
14617 (INSTALL_DOSREL): New.
14618
14619Thu May 19 17:12:12 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14620
14621 * configure.in: Use ld for i[34]86-*-sysv4* and sparc-*-solaris2*.
14622 Don't set use_gnu_ld to no for *-*-sysv4; that only controls
14623 whether we pass down --with-gnu-ld anyhow.
14624
14625Thu May 19 09:29:12 1994 Steve Chamberlain (sac@cygnus.com)
14626
14627 * Makefile.in (INSTALL_LAST): Change operation so it works
14628 on more flavors of make.
14629 * configure.in (go32): Don't build libg++ or libio.
14630
14631Fri May 13 13:28:34 1994 Steve Chamberlain (sac@cygnus.com)
14632
14633 * Makefile.in (Move HOST_PREFIX_1 and friends up so
14634 they can be overriden by templates.
14635
14636Sat May 7 16:46:44 1994 Steve Chamberlain (sac@cygnus.com)
14637
14638 * configure.in (target==go32): Don't build gdb.
14639 * dosrel: New directory.
14640
14641Fri May 6 14:19:25 1994 Steve Chamberlain (sac@cygnus.com)
14642
14643 * configure.in (host==go32): Configure dosrel too.
14644 * Makefile.in (INTALL_TARGET): Call INSTALL_LAST last.
14645 (HOST_CC, HOST_PREFIX, HOST_PREFIX_1): Undefine, they should
14646 be set by incoming names or templates.
14647 (INSTALL_LAST): New rule.
252b5132
RH
14648
14649Thu May 5 17:35:05 1994 Stan Shebs (shebs@andros.cygnus.com)
14650
14651 * config.sub (sparclitefrw, sparclitefrwcompat): Don't set the os.
14652
14653Thu May 5 20:06:45 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
14654
252b5132
RH
14655 * configure.in (appdirs): New variable. Currently empty, but will
14656 be used in gas distribution. If nonempty, lists a set of
14657 directories at least one of which must get configured, or top
14658 level configuration is considered to have failed.
14659 (rs6000-*-lynxos*): Use new file name.
14660
14661Thu May 5 13:38:36 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14662
14663 Eliminate XTRAFLAGS.
14664 * Makefile.in (CC_FOR_TARGET): If newlib exists, refer to the
14665 newlib include files using -idirafter, and also use -nostdinc.
14666 (CXX_FOR_TARGET): Likewise.
14667 (XTRAFLAGS): Removed.
14668 (BASE_FLAGS_TO_PASS): Remove XTRAFLAGS_FOR_TARGET.
14669 (EXTRA_HOST_FLAGS): Remove XTRAFLAGS.
14670 (EXTRA_TARGET_FLAGS, EXTRA_GCC_FLAGS): Likewise.
14671 ($(DO_X)): Don't pass down XTRAFLAGS.
14672
14673Thu May 5 00:16:36 1994 Ken Raeburn (raeburn@kr-pc.cygnus.com)
14674
14675 * configure.in (mips*-dec-bsd*): New target; do build linker.
14676 (mips*-*-bsd*): New target; don't build linker.
14677
14678Wed May 4 20:10:10 1994 D. V. Henkel-Wallace (gumby@cygnus.com)
14679
14680 * configure.in: support rs6000-*-lynxos* configuration.
14681 support sunos4 as a cross target.
14682
14683 * config.sub: look for lynx*, not lynx since the OS version may
14684 legitimately be part of the name.
14685
14686Tue May 3 21:48:11 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
14687
14688 * configure.in (i[34]86-*-sco*): Move to be with other i386
14689 targets.
14690 (romp-*-*): New target. Skip various binary utilities.
14691 (vax-*-*): New target. Don't build newlib.
14692 (vax-*-vms): Renamed from *-*-vms. Don't build opcodes or newlib.
14693
14694Thu Apr 28 15:03:05 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14695
14696 * configure.in: Only set host_makefile_frag if config
14697 directory exists.
14698
14699Wed Apr 27 12:14:30 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14700
14701 * install.sh: If $dstdir exists, don't check whether each
14702 component does.
14703
14704Tue Apr 26 18:11:33 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14705
14706 * test-build.mk (HOLES): Add sleep; used by rcs/src/conf.sh.
14707
14708Mon Apr 25 15:06:34 1994 Stan Shebs (shebs@andros.cygnus.com)
14709
35590697
AJ
14710 * configure.in (*-*-lynxos*): Don't configure newlib for either
14711 native or cross Lynx.
252b5132
RH
14712
14713Sat Apr 16 11:58:16 1994 Doug Evans (dje@canuck.cygnus.com)
14714
14715 * config.sub (sparc64-elf): Fix os.
14716 (z8k): Remove duplicate.
14717
14718Thu Apr 14 23:33:17 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14719
14720 * Makefile.in (gcc-no-fixedincludes): Touch gcc/include/fixed, not
14721 gcc/stmp-fixproto, to try to prevent fixproto from being run.
14722
14723Wed Apr 13 15:14:52 1994 Bill Cox (bill@cygnus.com)
14724
14725 * configure: Make file links cleanly even if Lynx fails on
80413487 14726 an NFS symlink (at least fail cleanly).
252b5132
RH
14727
14728Mon Apr 11 10:58:56 1994 Jim Wilson (wilson@sphagnum.cygnus.com)
14729
14730 * test-build.mk (CC): For mips-sgi-irix4, change -XNh1500 to
14731 -XNh2000.
14732
14733Sat Apr 9 15:10:45 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14734
14735 * configure: Unknown options are fatal again.
14736
14737Fri Apr 8 12:01:41 1994 David J. Mackenzie (djm@cygnus.com)
14738
14739 * configure: Ignore --x-includes and --x-libraries, for Autoconf
35590697 14740 compatibility.
252b5132
RH
14741
14742Thu Apr 7 17:31:43 1994 Doug Evans (dje@canuck.cygnus.com)
14743
14744 * build-all.mk: Add `clean' target.
14745
14746Wed Apr 6 20:44:56 1994 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
14747
14748 * config.guess: Add SINIX support.
14749 * configure.in: Add mips-*-sysv4* support.
14750
14751Mon Apr 4 17:41:44 1994 Doug Evans (dje@canuck.cygnus.com)
14752
14753 * build-all.mk: Document all useful targets.
14754 If canonhost is sparc-sun-solaris2.3, change it to sparc-sun-solaris2.
14755 If canonhost is mips-sgi-irix4.0.5H, change it to mips-sgi-irix4.
14756
14757Thu Mar 31 04:55:57 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14758
14759 * configure: Support --silent, --quiet.
14760
14761Wed Mar 30 21:37:38 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14762
14763 * configure: Support --disable-FEATURE.
14764
14765Tue Mar 29 19:15:05 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14766
14767 * config.guess: Recognize NCR running SVR4.3.
14768
14769Mon Mar 28 14:55:15 1994 Per Bothner (bothner@kalessin.cygnus.com)
14770
14771 * config.guess: Make BSDI generate i386-unknown-bsd386.
14772 Patch from Paul Eggert <eggert@twinsun.com>.
14773
14774Mon Mar 28 12:54:52 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14775
14776 * configure.in (powerpc-*-aix*): Treat like rs6000-*-*.
14777
14778Sat Mar 26 11:25:48 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14779
14780 * configure: Make unrecognized options give nonfatal warnings
14781 instead of fatal errors, and pass them to any subdirectory
14782 configures in case they recognize them.
14783 Make --x equivalent to --with-x.
14784
14785Fri Mar 25 21:52:10 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14786
14787 * configure: Add --enable-* options. Clean up usage message and
14788 some comments.
14789
14790Thu Mar 24 09:12:53 1994 Doug Evans (dje@canuck.cygnus.com)
14791
14792 * Makefile.in (NM_FOR_TARGET): Build tree version is now nm.new.
14793
14794Sun Mar 20 11:28:22 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
14795
14796 * configure.in (hppa*-*-*): Enable binutils.
14797
14798Sat Mar 19 11:50:16 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14799
14800 * config.sub: Recognize cisco.
14801
14802Fri Mar 18 16:42:32 1994 Jason Merrill (jason@deneb.cygnus.com)
14803
14804 * Makefile.in (CXXFLAGS): Add -fexternal-templates.
14805
14806Tue Mar 15 11:25:55 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14807
14808 * config.guess: about target *-hitachi-hiuxwe2, don't print more
14809 than one configuration name. Add comment.
14810
14811Sun Mar 6 23:13:38 1994 Hisashi MINAMINO (minamino@sra.co.jp)
14812
14813 * config.guess: about target *-hitachi-hiuxwe2, fixed
14814 machine guessing order. [Hitachi's CPU_IS_HP_MC68K
14815 macro is incorrect.]
14816
14817Sun Mar 13 09:10:08 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14818
14819 * Makefile.in (TAGS): Just build TAGS in each subdirectory, rather
14820 than the "make ls" stuff which used to be here.
14821
14822Fri Mar 11 12:52:39 1994 Per Bothner (bothner@kalessin.cygnus.com)
14823
14824 * config.guess: Recognize i[34]86-unknown-freebsd.
14825 From Shawn M Carey <smcarey@rodan.syr.edu>.
14826
14827Thu Mar 3 14:24:21 1994 Per Bothner (bothner@kalessin.cygnus.com)
14828
14829 * configure.in (noconfigdirs for alpha): Remove libg++ and libio.
14830
14831Wed Mar 2 13:28:48 1994 Jim Kingdon (kingdon@deneb.cygnus.com)
14832
14833 * config.guess: Check for ptx.
14834
14835Mon Feb 28 16:46:50 1994 Kung Hsu (kung@mexican.cygnus.com)
14836
14837 * config.sub: Add os9k checking.
14838
14839Thu Feb 24 07:09:04 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
14840
14841 * config.guess: Handle OSF1 running on HPPA processors
14842
14843Fri Feb 18 14:14:00 1994 Ken Raeburn (raeburn@rtl.cygnus.com)
14844
14845 * configure: If subdir configure fails, print out a message with
14846 subdirectory name, in case subdir's configure code didn't identify
14847 itself.
14848
14849Fri Feb 18 12:50:15 1994 Doug Evans (dje@cygnus.com)
14850
14851 * configure.in: Remove embedded newlines from configdirs.
14852 Avoid mismatches of substrings. Fix matching strings at end
14853 of configdirs.
14854
14855Fri Feb 11 15:33:33 1994 Stu Grossman (grossman at cygnus.com)
14856
14857 * config.guess: Add Lynx/rs6000 config support.
14858
14859Tue Feb 8 13:41:09 1994 Ken Raeburn (raeburn@rtl.cygnus.com)
14860
14861 * configure.in (alpha-dec-osf1*, alpha*-*-*): Build gas.
14862
14863Mon Feb 7 15:42:36 1994 Jeffrey A. Law (law@cygnus.com)
14864
14865 * configure.in (hppa*-*-osf*): Treat this just like most other
14866 PA configurations (eg no binutils or ld).
14867 (hppa*-*-*elf*): These configurations have binutils and ld.
14868
14869Sun Feb 6 16:35:07 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
14870
14871 * config.sub (hiux): Fix typo. From m-kasahr@sramhc.sra.co.JP.
14872
14873Sat Feb 5 01:00:33 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14874
14875 * configure.in (rs6000-*-*): Build gas.
14876
14877Wed Feb 2 13:57:57 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
14878
80413487 14879 * Makefile.in: Avoid bug in losing hpux sed.
252b5132
RH
14880
14881Wed Feb 2 14:53:05 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14882
14883 * Makefile.in, test-build.mk: Remove MUNCH_NM; it was only needed
14884 for GDB and GDB has been fixed to not need it.
14885
252b5132
RH
14886Sun Jan 30 17:58:06 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
14887
14888 * config.guess: Recognize vax hosts.
14889
14890Fri Jan 28 15:29:38 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
14891
14892 * configure (while loop): Don't use "break 2" inside case
14893 statement -- the case statement isn't an enclosing loop.
14894
14895Mon Jan 24 18:40:06 1994 Per Bothner (bothner@kalessin.cygnus.com)
14896
14897 * config.guess: Clean up NeXT support, to allow nextstep
14898 on Intel machines. Make OS be nextstep.
14899
14900Sun Jan 23 18:47:22 1994 Richard Kenner (kenner@vlsi1.ultra.nyu.edu)
14901
14902 * config.guess: Add alternate forms for Convex.
14903
14904Thu Jan 20 16:13:41 1994 Stu Grossman (grossman at cygnus.com)
14905
14906 * configure: Completely rewrite option processing. Take
14907 advantage of pattern-matching to avoid invoking test frequently.
14908 Also clean up host and target defaulting logic.
14909
14910Mon Jan 17 15:06:56 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
14911
14912 * Makefile.in: Replace all occurrances of "rootme" with "r" and
14913 "$${rootme}" with "$$r", to increase the likelihood that the do-*
14914 commands (plus user environment) will fit SCO limits.
14915
14916Thu Jan 6 11:20:57 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14917
14918 * configure.in: Don't issue warnings about directories which are
14919 not being configured if -norecursion is set. Correct test for
14920 --with-gnu-as and --with-gnu-ld to not get confused by substring
14921 matches.
14922
14923 * configure.in: Don't build gas for alpha-dec-osf1*.
14924
14925Tue Jan 4 17:10:19 1994 Stu Grossman (grossman at cygnus.com)
14926
14927 * configure: Back out Per's change of 12/19/1993. It changes the
14928 behavior of configure in unexpected and confusing ways.
14929
14930 Also, use different delim char when calculating
14931 program_transform_name so that the name can contain slashes.
14932
14933Sat Jan 1 13:45:31 1994 Rob Savoye (rob@darkstar.cygnus.com)
14934
14935 * configure.in, config.sub: Add support for VSTa micro-kernel.
14936
14937Sat Dec 25 20:00:47 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
14938
14939 * configure.in: Nuke hacks which were used to get a special
14940 version of GAS for HPPA configurations.
14941
14942Sun Dec 19 20:40:44 1993 Per Bothner (bothner@kalessin.cygnus.com)
14943
14944 * configure: If only ${target_alias} is given, use that
14945 as the default for ${host_alias}.
14946 * configure: Add missing back-slashes before nested quotes.
14947
14948Wed Dec 15 18:07:18 1993 david d `zoo' zuhn (zoo@andros.cygnus.com)
14949
14950 * Makefile.in (BASE_FLAGS_TO_PASS): add YACC=$(BISON)
14951
14952Tue Dec 14 21:25:33 1993 Per Bothner (bothner@cygnus.com)
14953
14954 * config.guess: Recognize some Tektronix configurations.
14955 From Kaveh R. Ghazi <ghazi@noc.rutgers.edu>.
14956
14957Sat Dec 11 11:18:00 1993 Steve Chamberlain (sac@thepub.cygnus.com)
14958
14959 * config.sub: Match any flavor of SH.
14960
14961Thu Dec 2 17:16:58 1993 Ken Raeburn (raeburn@cujo.cygnus.com)
14962
14963 * configure.in: Don't try to configure newlib for Alpha.
14964
14965Thu Dec 2 14:35:54 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14966
14967 * configure.in: Don't build ld for Irix 5. Don't build gas,
14968 libg++ or libio for any Alpha target.
14969
14970 * configure.in (mips*-sgi-irix5*): New target; use mh-irix5.
252b5132
RH
14971
14972Wed Dec 1 17:00:33 1993 Jason Merrill (jason@deneb.cygnus.com)
14973
14974 * Makefile.in (GZIPPROG): Renamed from GZIP, which gzip uses for
14975 default arguments -- so it tried to compress itself.
14976
14977Tue Nov 30 13:45:15 1993 david d `zoo' zuhn (zoo@andros.cygnus.com)
14978
14979 * configure.in (notsupp): ensure that a space is always at the end
14980 of the configdirs list, since the grep checks for an explicit space
14981
14982Tue Nov 16 15:04:27 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
14983
14984 * configure.in (target i386-sysv4.2): don't build ld, since static
14985 versions of many libraries are not available.
14986
14987Tue Nov 16 14:28:12 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
14988
14989 * config.guess: Recognize Apollos (using environment variables).
14990 * configure.in: Don't configure ld, binutils, or gprof for Apollo.
14991
14992Thu Nov 11 12:03:50 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
14993
14994 * config.guess: Recognize Sony news mips running newsos.
14995
14996Wed Nov 10 16:57:00 1993 Mark Eichin (eichin@cygnus.com)
14997
14998 * Makefile.in (all-cygnus, build-cygnus): "fi else" needs to be
14999 "fi ; else" for bash.
15000
15001Tue Nov 9 15:54:01 1993 Mark Eichin (eichin@cygnus.com)
15002
15003 * Makefile.in (BASE_FLAGS_TO_PASS): pass SHELL.
15004
15005Fri Nov 5 08:07:27 1993 D. V. Henkel-Wallace (gumby@blues.cygnus.com)
15006
15007 * config.sub: accept unixware as an alias for svr4.2.
15008 Fix some inconsistancies with the gcc version.
15009
15010Fri Nov 5 15:14:12 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15011
15012 * Makefile.in (DISTDOCDIRS): Add gdb.
15013
15014Fri Nov 5 11:59:42 1993 Per Bothner (bothner@kalessin.cygnus.com)
15015
15016 * Makefile.in (DISTDOCDIRS): Add libg++ and libio.
15017
15018Fri Nov 5 10:35:05 1993 Ken Raeburn (raeburn@rover.cygnus.com)
15019
15020 * Makefile.in (taz): Only build "info" in DISTDOCDIRS.
15021 (DISTDOCDIRS): Don't assume libg++ and gdb folks necessarily want
15022 this now.
15023
15024Thu Nov 4 18:58:23 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15025
15026 * config.sub: Accept hiux* as an OS name.
15027
15028 * Makefile.in: Change RUNTEST_FLAGS back to RUNTESTFLAGS per
15029 etc/make-stds.texi. The underscore came from gcc, and dje now
15030 agrees that RUNTESTFLAGS is the correct name.
15031
15032Thu Nov 4 10:49:01 1993 Per Bothner (bothner@kalessin.cygnus.com)
15033
15034 * install.sh: Remove 'set -e'. It makes any conditionals
15035 in the script useless.
15036
15037 * config.guess: Automatically recognize arm-acorn-riscix
15038 Patch from Richard Earnshaw (rwe11@cl.cam.ac.uk).
15039
15040Thu Nov 04 08:08:04 1993 Jeffrey Wheat (cassidy@cygnus.com)
15041
15042 * Makefile.in: Change RUNTESTFLAGS to RUNTEST_FLAGS
15043
15044Wed Nov 3 22:09:46 1993 Ken Raeburn (raeburn@rtl.cygnus.com)
15045
15046 * Makefile.in (DISTDOCDIRS): New variable.
15047 (taz): Edit local Makefile.in sooner, instead of proto-toplev
35590697 15048 Makefile.in later. Build "info" and "dvi" in DISTDOCDIRS.
252b5132
RH
15049
15050Wed Nov 3 21:31:52 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15051
15052 * configure.in (hppa target): check the source directory for the
15053 pagas sub-directory
15054
15055Wed Nov 3 11:12:22 1993 Doug Evans (dje@canuck.cygnus.com)
15056
15057 * config.sub: Allow -aout* and -elf*.
15058
15059Wed Nov 3 11:08:33 1993 Ken Raeburn (raeburn@rtl.cygnus.com)
15060
15061 * configure.in: Don't build ld on i386-solaris2, same as for
15062 sparc-solaris2.
15063
15064Tue Nov 2 14:21:25 1993 Per Bothner (bothner@kalessin.cygnus.com)
15065
15066 * Makefile.in (taz): Add texinfo/lgpl.texinfo (for libg++).
15067
15068Tue Nov 2 13:38:30 1993 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
15069
15070 * configure.in: Configure gdb for alpha.
15071
15072Mon Nov 1 10:42:54 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15073
15074 * Makefile.in (CXXFLAGS): Add -O.
15075
15076Wed Oct 27 10:45:06 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15077
15078 * config.guess: added support for DG Aviion
15079
15080Tue Oct 26 14:37:37 1993 Ken Raeburn (raeburn@rover.cygnus.com)
15081
15082 * configure.in: Produce warning message for subdirectories not
15083 configurable for this host/target combination. Don't try to
15084 configure gdb for vms.
15085
15086Mon Oct 25 11:22:15 1993 Ken Raeburn (raeburn@rover.cygnus.com)
15087
15088 * Makefile.in (taz): Replace "byacc" with "bison -y" in the
15089 appropriate files before making "diststuff".
15090 (DISTBISONFILES): New var: list of files to be edited.
15091 (DISTSTUFFDIRS): Add binutils.
15092
15093Fri Oct 22 20:32:15 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15094
15095 * config.sub: also handle mipsel and mips64el (for little endian mips)
15096
15097Fri Oct 22 07:59:20 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15098
15099 * configure.in: Add * to end of all OS names.
15100
15101Thu Oct 21 11:38:28 1993 Stan Shebs (shebs@rtl.cygnus.com)
15102
15103 * configure.in: Build newlib for LynxOS native.
15104
15105Wed Oct 20 09:56:12 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15106
15107 * config.guess: Add support for delta 88k running SVR3.
15108
15109 * configure.in: Add comment about HP compiler vs. emacs.
15110
15111Tue Oct 19 16:02:22 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15112
15113 * configure.in: don't build ld on solaris2 (not a viable option
15114 due to bugs in getpwnam & getpwuid)
15115
15116Tue Oct 19 15:13:56 1993 Ken Raeburn (raeburn@rtl.cygnus.com)
15117
15118 * configure.in: Accept alpha-dec-osf1*, not just -osf1, since
15119 config.guess will produce a full version number.
15120
15121Tue Oct 19 15:58:01 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
15122
15123 * configure.in: Build linker and binutils for alpha-dec-osf1.
15124
15125Tue Oct 19 11:41:55 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15126
15127 * Makefile.in: Remove -O from CXXFLAGS for consistency with CFLAGS,
15128 and gdb/testsuite/Makefile.in.
15129
15130Sat Oct 9 18:39:07 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15131
15132 * configure.in: recognize mips*- instead of mips-
15133
15134Fri Oct 8 14:15:39 1993 Ken Raeburn (raeburn@cygnus.com)
15135
15136 * config.sub: Accept linux*coff and linux*elf as operating
15137 systems.
15138
15139Thu Oct 7 12:57:19 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
15140
15141 * config.sub: Recognize mips64, and mips3 as an alias for it.
15142
15143Wed Oct 6 13:54:21 1993 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
15144
15145 * configure.in: Remove alpha-dec-osf*, no longer necessary now that
15146 gdb knows how to handle OSF/1 shared libraries.
15147
15148Tue Oct 5 11:55:04 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15149
15150 * configure.in: Recognize hppa*-*-hiux* (currently synonym for hpux).
15151 * config.guess: Recognize Hitachi's HIUX.
15152 * config.sub: Recognize h3050r* and hppahitachi.
15153 Remove redundant cases for hp9k[23]*.
15154
15155Mon Oct 4 16:15:09 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15156
15157 * configure.in: default to '--with-gnu-as' and '--with-gnu-ld'
15158 if gas and ld are in the source tree and are in ${configdirs}.
15159 If ${use_gnu_as} or ${use_gnu_ld} are 'no', then don't set the
ba73c63f 15160 --with options (but still pass them down on the command line,
252b5132
RH
15161 if they were explicitly specified).
15162
15163Fri Sep 24 19:11:13 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15164
15165 * configure: substitute SHELL value in Makefile.in with
15166 ${CONFIG_SHELL}
15167
15168Thu Sep 23 18:05:13 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
15169
15170 * configure.in: Build gas, ld, and binutils for *-*-sysv4* and
15171 *-*-solaris2* targets.
15172
15173Sun Sep 19 17:01:41 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15174
15175 * Makefile.in: define M4, and pass it down to sub-makes;
15176 all-autoconf now depends on all-m4
15177
15178Sat Sep 18 00:38:23 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15179
15180 * Makefile.in ({AR,RANLIB}_FOR_TARGET): make contingent on
15181 presence of {ar,ranlib} instead of a configured directory
15182
15183Wed Sep 15 08:41:44 1993 Jim Kingdon (kingdon@cirdan.cygnus.com)
15184
15185 * config.guess: Accept 34?? as well as 33?? for NCR.
15186
15187Mon Sep 13 12:28:43 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15188
15189 * configure.in: grab mt-hppa for HPPA targets; use 'gas ' instead
15190 of 'gas' in sed commands, since 'gash' is now in the tree as well.
15191
15192Fri Sep 10 11:23:52 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15193
15194 * configure: grab values for $(CC) and $(CXX) from the
15195 environment, so that someone can do "CC=gcc configure; make" and
15196 have it work right (matching the way that autoconf works now)
15197
15198 * configure.in, Makefile.in: add support for gash, the tcl
15199 interface to Galaxy
15200
15201 * config.guess: add NetBSD variants (hp300, x86)
15202
15203Thu Sep 9 16:48:52 1993 Jason Merrill (jason@deneb.cygnus.com)
15204
15205 * install.sh: Support -d option (in the manner of SunOS 4 install,
15206 as it is more deterministic than that of GNU install)
15207 (chmodcmd): Set file to mode 755 by default (should also do default
15208 chgrp and chown, but I don't feel like dealing with that now)
15209
15210Tue Sep 7 11:59:39 1993 Doug Evans (dje@canuck.cygnus.com)
15211
15212 * config.sub: Remove h8300hhms alias.
15213
15214Tue Aug 31 11:00:09 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15215
15216 * configure.in: Match *-*-solaris2* not *-sun-solaris2*.
15217
15218Mon Aug 30 18:29:10 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15219
15220 * Makefile.in (gcc-no-fixedincludes): touch stmp-fixproto as well
15221 as stmp-fixinc
15222
15223Wed Aug 25 16:35:59 1993 K. Richard Pixley (rich@sendai.cygnus.com)
15224
15225 * config.sub: recognize m88110-bug-coff.
15226
15227Tue Aug 24 10:23:24 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15228
15229 * Makefile.in (all-libio): all dependencies on the toolchain used
15230 to build this (gcc, gas, ld, etc)
15231
15232Fri Aug 20 17:24:24 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15233
15234 * config.guess: Deal with OSF/1 1.3 on alpha.
15235
15236Thu Aug 19 11:43:04 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15237
15238 * install.sh: add some 'else true' clauses for portability
15239
15240 * configure.in: don't build libio for h8[35]00-*-* targets
15241
15242Tue Aug 17 19:02:31 1993 Per Bothner (bothner@kalessin.cygnus.com)
15243
15244 * Makefile.in: Add support for new libio.
15245
15246Sun Aug 15 20:48:55 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15247
15248 * install.sh: If one command fails, don't try the rest. Don't try
15249 to remove $dsttmp (via trap) unless we have already created it.
15250 If $src doesn't exist, detect it and exit with an error.
15251
15252 * config.guess: Recognize BSD on hp300.
15253
15254Wed Aug 11 18:35:13 1993 Per Bothner (bothner@kalessin.cygnus.com)
15255
15256 * config.guess: Map (9000/[34]??:HP-UX:*:*) to m68k-hp-hpux.
15257 Bug report from "Hamish (H.I.) Macdonald" <hamish@bnr.ca>.
15258
15259Wed Aug 11 15:37:51 1993 Jason Merrill (jason@deneb.cygnus.com)
15260
15261 * Makefile.in (all-send-pr): depends on all-prms
15262
15263Wed Aug 11 16:56:03 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15264
15265 * config.guess: Fix typo (9000/8??:4.3bsd -> 9000/7??:4.3bsd).
15266
15267Fri Aug 6 14:45:02 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
15268
15269 * config.guess: From michael@mercury.cs.mun.ca (Michael Rendell):
15270 Added test for mips-mips-riscos5.
15271
15272Thu Aug 5 15:45:08 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15273
15274 * configure.in: use mh-hp300 for 68k HP hosts
15275
15276Mon Aug 2 11:56:53 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15277
15278 * configure: add support for CONFIG_SHELL, so that you can use
15279 some alternate shell for evaluating configure scripts
15280
15281Sun Aug 1 11:36:27 1993 Fred Fish (fnf@deneb.cygnus.com)
15282
15283 * Makefile.in (make-gdb.tar.gz): Sed bug reporting address
15284 in configure script to bug-gdb@prep.ai.mit.edu when building
15285 distribution archive.
15286 * Makefile.in (COMPRESS): Remove def.
15287 * Makefile.in (gdb.tar.gz, make-gdb.tar.gz): Renamed from
15288 gdb.tar.Z and make-gdb.tar.Z respectively.
15289 * Makefile.in (make-gdb.tar.gz): Now only build gzip'd archive.
15290 * Makefile.in (make-gdb.tar.gz): Minor changes to move closer
15291 to convergence with 'taz' target in Makefile.in.
15292
15293Fri Jul 30 12:34:57 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15294
15295 * install.sh (dsttmp): use trap to ensure that tmp files go
15296 away on error conditions
15297
15298Wed Jul 28 11:57:36 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15299
15300 * Makefile.in (BASE_FLAGS_TO_PASS): remove LOADLIBES
15301
15302Tue Jul 27 12:43:40 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15303
15304 * Makefile.in (install-dirs): Deal with a prefix like /gnu;
15305 its parent is '/' not ''.
15306
15307 * Makefile.in (DEVO_SUPPORT): Add comments about ChangeLog.
15308
15309Fri Jul 23 09:53:37 1993 Jason Merrill (jason@wahini.cygnus.com)
15310
15311 * configure: if ${newsrcdir}/configure doesn't exist, don't assume
15312 that ${newsrcdir}/configure.in does.
15313
15314Tue Jul 20 11:28:50 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15315
15316 * test-build.mk: support for CONFIG_SHELL
15317
15318Mon Jul 19 21:54:46 1993 Fred Fish (fnf@deneb.cygnus.com)
15319
15320 * config.sub (netware): Add as a basic system type.
15321
15322Wed Jul 14 12:03:11 1993 K. Richard Pixley (rich@sendai.cygnus.com)
15323
15324 * Makefile.in (Makefile): depend on configure.in. Also drop the
15325 $(srcdir)/ from the dependency on Makefile.in.
15326
15327Tue Jul 13 20:10:58 1993 Doug Evans (dje@canuck.cygnus.com)
15328
15329 * config.sub: Recognize h8300hhms as h8300h-hitachi-hms.
15330 (h8300hhms is temporary until multi-libraries are implemented).
15331 * configure.in: Handle h8300h too.
15332
15333Sun Jul 11 17:35:27 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15334
15335 * config.guess: Recognize dpx/2 as m68k-bull-sysv3.
15336
15337Thu Jul 8 18:26:12 1993 John Gilmore (gnu@cygnus.com)
15338
15339 * configure: Remove extraneous output when guessing host type.
15340 * config.guess: Remove extraneous output when guessing using C
15341 compiler rather than uname, or when guessing fails.
15342
15343Wed Jul 7 17:58:14 1993 david d `zoo' zuhn (zoo at rtl.cygnus.com)
15344
15345 * Makefile.in: remove all.cross and install.cross targets
15346
15347 * configure: remove CROSS=-DCROSS_COMPILE and ALL=all.cross
15348 definitions
15349
15350Tue Jul 6 10:39:44 1993 Steve Chamberlain (sac@phydeaux.cygnus.com)
15351
15352 * configure.in (target sh): Build gprof.
15353
15354Thu Jul 1 16:52:56 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15355
15356 * config.sub: change -solaris to -solaris2
15357
15358Thu Jul 1 15:46:16 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15359
15360 * configure.in: Use config/mh-riscos for mips-*-sysv*.
15361
15362Wed Jun 30 09:31:58 1993 Ian Lance Taylor (ian@cygnus.com)
15363
15364 * configure: Correct error message for missing Makefile.in to
15365 print correct directory.
15366
15367Tue Jun 29 13:52:16 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15368
15369 * install.sh: kludge around 386BSD shell bug
15370
15371Tue Jun 29 13:06:49 1993 Per Bothner (bothner@rtl.cygnus.com)
15372
15373 * config.guess: Recognize NeXT.
15374 * config.guess: Recognize i486-ncr-sysv4.
15375 * Makefile.in (taz): rm $(TOOL)-$$VER before linking.
15376
15377Tue Jun 29 12:50:57 1993 Ian Lance Taylor (ian@cygnus.com)
15378
15379 * Makefile.in (MAKEINFOFLAGS): New variable.
15380 (FLAGS_TO_PASS): Pass MAKEINFO as MAKEINFO MAKEINFOFLAGS.
15381 * build-all.mk, test-build.mk: Pass down --no-split as
15382 MAKEINFOFLAGS when hosted on DOS. Compile DOS hosted without -g.
15383
15384Thu Jun 24 13:39:11 1993 Per Bothner (bothner@rtl.cygnus.com)
15385
15386 * Makefile.in (DEVO_SUPPORT): Add COPYING COPYING.LIB install.sh.
15387
15388Wed Jun 23 12:59:21 1993 Per Bothner (bothner@rtl.cygnus.com)
15389
15390 * Makefile.in (libg++.tar.z): New rule.
15391 * Makefile.in (taz): Replace 'configure -rm' by 'make distclean'.
15392 * Makefile.in (taz): Only do a single chmod.
15393
15394Fri Jun 18 12:03:10 1993 david d `zoo' zuhn (zoo at majipoor.cygnus.com)
15395
15396 * install.sh: don't use dirname anymore (replaced with sed usage)
15397
15398Thu Jun 17 18:43:42 1993 Fred Fish (fnf@cygnus.com)
15399
15400 * Makefile.in: Change extension for gzip'd files from '.z' to
15401 '.gz' per new FSF standard usage.
15402
15403Thu Jun 17 16:58:50 1993 david d `zoo' zuhn (zoo at majipoor.cygnus.com)
15404
15405 * configure: put quotes around the final value of program_transform_name
15406
15407Tue Jun 15 16:48:51 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15408
15409 * Makefile.in: new install.sh support; update install-info rules
15410
15411Wed Jun 9 12:31:34 1993 Ian Lance Taylor (ian@cygnus.com)
15412
15413 * configure.in: Build diff for crosses, but not for go32 host.
15414
15415 * configure.in: Build gprof only for native, and don't build it
15416 for mips-*-*, rs6000-*-*, or i[34]86-*-sco*.
15417
15418Mon Jun 7 13:12:11 1993 david d `zoo' zuhn (zoo at deneb.cygnus.com)
15419
15420 * configure.in: don't build gas,ld,binutils on for *-*-sysv4
15421
15422Mon Jun 7 11:40:11 1993 Brendan Kehoe (brendan@lisa.cygnus.com)
15423
15424 * configure.in (host_tools): Add prms.
15425
15426Fri Jun 4 13:30:42 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15427
15428 * Makefile.in: install gcc, do installation of $(INSTALL_MODULES)
15429 with $(FLAGS_TO_PASS) on the command line
15430
15431 * config.sub: Recognize lynx and lynxos
15432
15433Fri Jun 4 10:59:56 1993 Ian Lance Taylor (ian@cygnus.com)
15434
15435 * config.sub: Accept -ecoff*, not just -ecoff.
15436
15437Thu Jun 3 17:38:54 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15438
15439 * Makefile.in (taz): Use .gz suffix instead of .z.
15440 (binutils.tar.gz, gas+binutils.tar.gz, gas.tar.gz): Fixed target
15441 names.
15442
15443Thu Jun 3 00:27:06 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15444
15445 * Makefile.in (vault-install): add an 'else true' (for Ultrix)
15446
15447Wed Jun 2 18:19:16 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15448
15449 * Makefile.in (install-no-fixedincludes): install gcc last, so
15450 that rebuilds that might happen during 'make install' don't get
15451 bogus gcc include files
15452
15453Wed Jun 2 16:14:10 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15454
15455 Change from Utah for HPPA support:
15456 * config.guess: Recognize hppa1.x-hp-bsd.
15457
15458Wed Jun 2 11:53:33 1993 Per Bothner (bothner@rtl.cygnus.com)
15459
15460 * config.guess: Add support for Motorola Delta 68k, up to r3v7.
15461 Patch from pot@fly.cnuce.cnr.it (Francesco Potorti`).
15462
15463Tue Jun 1 17:48:42 1993 Rob Savoye (rob at darkstar.cygnus.com)
15464
15465 * config.sub: Add support for rom68k and bug boot monitors.
15466
15467Mon May 31 09:36:37 1993 Jim Kingdon (kingdon@cygnus.com)
15468
15469 * Makefile.in: Make all-opcodes depend on all-bfd.
15470
15471Thu May 27 08:05:31 1993 Ian Lance Taylor (ian@cygnus.com)
15472
15473 * config.guess: Added special check for i[34]86-univel-sysv4*.
15474
15475Wed May 26 16:33:40 1993 Ian Lance Taylor (ian@cygnus.com)
15476
15477 * config.guess: For i[34]86-unknown-sysv4 use UNAME_MACHINE for
15478 the processor rather than assuming i486.
15479
15480Wed May 26 09:40:18 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15481
15482 * config.guess: Recognize SunOS6 as Solaris3.
15483
15484Tue May 25 23:03:11 1993 Per Bothner (bothner@cygnus.com)
15485
15486 * config.guess: Fix typo. Avoid #elif (not in K&R 1).
15487 Recognize SunOS 5.* only (and not [6-9].*) as being Solaris2.
15488
15489Tue May 25 12:44:18 1993 Ian Lance Taylor (ian@cygnus.com)
15490
15491 * build-all.mk (all-cross): New target for Canadian Cross.
15492 Added Q2 go32 targets.
15493 * test-build.mk: Configure go32 cross sparclite-aout and
15494 mips-idt-ecoff -with-gnu-ld. Moved build binary directory from
15495 PARTIAL_HOLE_DIRS to BUILD_HOLES_DIRS.
15496
15497Mon May 24 15:30:06 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15498
15499 * configure.in: fix Alpha GDB typo; also, don't build DejaGnu for
15500 GO32 hosted toolchains
15501
15502Mon May 24 14:18:41 1993 Rob Savoye (rob at darkstar.cygnus.com)
15503
15504 * configure: change so "-exec-prefix" gets passed down rather
15505 than "-exec_prefix" so autoconf generated Makefiles get the
15506 exec_prefix set right.
15507
15508Fri May 21 10:42:25 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15509
15510 * config.guess: get the Solaris2 minor version number
15511
15512 * Makefile.in: add standards.texi and make-stds.texi to ETC_SUPPORT
15513
15514Fri May 21 06:20:52 1993 Brendan Kehoe (brendan@lisa.cygnus.com)
15515
15516 * config.guess: Recognize some Sequent platforms.
15517
15518Thu May 20 14:33:48 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15519
15520 * Makefile.in: added the vault-install target
15521
15522 * configure.in: actually use the Sun3 makefile fragment that's in
15523 config, also added the release dir to configdirs
15524
15525Thu May 20 14:19:18 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15526
15527 * Makefile.in (taz): Fix modes on stuff in $(TOOL) dir also.
15528
15529Tue May 18 20:26:41 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15530
15531 * configure.in: remove some program from Alpha targetted toolchains
15532
15533Tue May 18 15:23:19 1993 Ken Raeburn (raeburn@cygnus.com)
15534
15535 * Makefile.in (DISTSTUFFDIRS): Renamed from PROTODIRS. Add ld and
15536 gprof.
15537 (taz): Run "make diststuff" in those directories instead of "make
15538 proto-dir". Look for "VERSION=" only at start of line in subdir
15539 Makefile. Use "gzip -9" for compression.
15540 (TEXINFO_SUPPORT, DIST_SUPPORT, BINUTILS_SUPPORT_DIRS): New vars.
15541 (binutils.tar.z): New target.
15542
15543Mon May 17 17:01:15 1993 Ken Raeburn (raeburn@deneb.cygnus.com)
15544
15545 * Makefile.in (taz): Include gpl.texinfo.
15546
15547Fri May 14 06:48:38 1993 Ken Raeburn (raeburn@deneb.cygnus.com)
15548
15549 * Makefile.in (setup-dirs): Merged into "taz" target.
15550 (taz): Only do `proto-dir' stuff if a directory is actually needed
15551 for this target.
15552
15553Wed May 12 13:09:44 1993 Ian Lance Taylor (ian@cygnus.com)
15554
15555 * Makefile.in (MUNCH_NM): New variable, defined to be $(NM).
15556 (FLAGS_TO_PASS): Pass down MUNCH_NM.
15557 (HOST_CC, HOST_PREFIX, HOST_PREFIX_1): New variables.
15558 (EXTRA_GCC_FLAGS): Pass down HOST_* variables.
15559 (gcc-no-fixedincludes): Correct for current gcc Makefile.
15560
15561Tue May 11 10:14:25 1993 Fred Fish (fnf@cygnus.com)
15562
15563 * Makefile.in (make-gdb.tar.Z): Add configure, config.guess,
15564 config.sub, and move-if-change to gdb testsuite distribution
15565 archive, so the testsuite can be extracted, configured, and
15566 run separately from the gdb distribution. Blow away the Chill
15567 tests that require a Chill compiled executable, since GNU Chill
15568 is not yet publically available.
15569
15570Mon May 10 17:22:26 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15571
15572 * test-build.mk: set environment variables in a single command,
15573 instead of a list of assignments and exports
15574
15575 * config.guess: recognize Alpha/OSF1 systems
15576
15577Mon May 10 14:55:51 1993 K. Richard Pixley (rich@rtl.cygnus.com)
15578
15579 * configure: Change help message to prefer --options rather than
15580 -options.
15581
15582Mon May 10 05:58:35 1993 Ken Raeburn (raeburn@kr-pc.cygnus.com)
15583
15584 * config.sub: Convergent Tech. "miniframe" uses m68010, sez
15585 zippy@ecst.csuchico.edu.
15586 * config.guess: Recognize miniframe.
15587
15588Sun May 9 17:47:57 1993 Rob Savoye (rob at darkstar.cygnus.com)
15589
9eb322aa
MF
15590 * Makefile.in: Use srcroot to find runtest rather than rootme.
15591 Pass RUNTESTFLAGS and EXPECT down in BASE_FLAGS_TO_PASS.
252b5132
RH
15592
15593Fri May 7 14:55:59 1993 Ian Lance Taylor (ian@cygnus.com)
15594
15595 * test-build.mk: Extensive additions to support building on a
15596 machine other than the host.
15597
15598Wed May 5 08:35:04 1993 Ken Raeburn (raeburn@deneb.cygnus.com)
15599
15600 * configure (tooldir): Fix for i386-aix again.
15601
15602Mon May 3 19:00:27 1993 Per Bothner (bothner@cygnus.com)
15603
15604 * configure, Makefile.in: Change definition of $(tooldir)
15605 to match the FSF.
15606
15607Fri Apr 30 15:55:21 1993 Fred Fish (fnf@cygnus.com)
15608
15609 * config.guess: Recognize i[34]86/SVR4.
15610
15611Fri Apr 30 15:52:46 1993 Steve Chamberlain (sac@thepub.cygnus.com)
15612
15613 * Makefile.in (all-gdb): gdb depends on sim.
15614
15615Thu Apr 29 23:30:48 1993 Fred Fish (fnf@cygnus.com)
15616
15617 * Makefile.in (gdb.tar.Z): Make prototype gdb testsuite directory
15618 at the same time we make the prototype gdb directory.
15619 * Makefile.in (make-gdb.tar.Z): Make the testsuite distribution
15620 files at the same time as the gdb base release distribution.
15621
15622Thu Apr 29 12:50:37 1993 Ian Lance Taylor (ian@cygnus.com)
15623
15624 * Makefile.in (check): Use individual check targets rather than
15625 DO_X rule.
15626 (check-gcc): Added.
15627
15628Thu Apr 29 09:50:07 1993 Jim Kingdon (kingdon@cygnus.com)
15629
15630 * config.sub: Use sysv3.2 not sysv32 for canonical OS
15631 for System V release 3.2.
15632
15633Thu Apr 29 10:33:22 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15634
15635 * config.sub: Recognize hppaosf.
15636 * configure.in: Do configure ld/binutils/gas for it.
15637
15638Tue Apr 27 06:25:34 1993 Ken Raeburn (raeburn@kr-pc.cygnus.com)
15639
15640 * configure (tooldir): Alter syntax used to set this, for systems
15641 where "\$" isn't handled right, like i386-aix.
15642
15643Thu Apr 22 08:17:35 1993 Ian Lance Taylor (ian@cygnus.com)
15644
15645 * configure: Pass program-transform-name, not
15646 program_transform_name, to recursive configures.
15647
15648Thu Apr 22 02:58:21 1993 Ken Raeburn (raeburn@cygnus.com)
15649
15650 * Makefile.in (gas+binutils.tar.z): New rule for building snapshots
15651 of gas+ld+binutils.
15652
15653Mon Apr 19 17:41:30 1993 Per Bothner (bothner@cygnus.com)
15654
15655 * config.guess: Recognize AIX3.2 as distinct from 3.1.
15656
15657Sat Apr 17 17:19:50 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15658
15659 * configure.in: rename m88k-motorola-m88kbcs to m88k-motorola-sysv
15660
252b5132
RH
15661Tue Apr 13 16:52:16 1993 Brendan Kehoe (brendan@lisa.cygnus.com)
15662
15663 * Makefile.in (PRMS): Set back to all-prms.
15664
15665Sat Apr 10 12:04:07 1993 Ian Lance Taylor (ian@cygnus.com)
15666
15667 * test-build.mk: Pass -with-gnu-as for known MIPS native and MIPS
15668 targets, rather than for MIPS hosts.
15669
15670Fri Apr 9 13:51:06 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15671
15672 * configure.in: add comment for --with-x default values
15673
15674 * config.guess: handle Motorola Delta88 box for SVR3 and SVR4.
15675
15676 * Makefile.in: add check-* targets for each of the directories in
15677 the tree. Add a definition of RUNTEST that will use the one we
15678 just built, if it exists. Pass this down via FLAGS_TO_PASS.
15679
15680Thu Apr 8 09:21:30 1993 Ian Lance Taylor (ian@cygnus.com)
15681
15682 * configure.in: Removed obsolete references to bfd_target and
15683 target_makefile_frag.
15684
15685 * build-all.mk: Set assorted targets for Q2.
15686 * config.sub: Recognize z8k-sim and h8300-hms.
15687 * test-build.mk: Really don't pass host to configure.
15688 (HOLES): Added uname.
15689
15690Wed Apr 7 15:48:19 1993 Ian Lance Taylor (ian@cygnus.com)
15691
15692 * configure: Handle an empty program-prefix, program-suffix or
15693 program-transform-name correctly.
15694
15695Tue Apr 6 13:48:41 1993 Ian Lance Taylor (ian@cygnus.com)
15696
15697 * build-all.mk: -G 8 no longer required for MIPS targets.
15698 * test-build.mk: Don't pass host argument to configure; make it
15699 guess.
15700
15701Tue Apr 6 10:36:53 1993 Fred Fish (fnf@cygnus.com)
15702
15703 * Makefile.in (gdb.tar.Z): Fix for building gzip'd distribution.
15704 * Makefile.in (COMPRESS): New macro, like GZIP.
15705
15706Fri Apr 2 09:02:31 1993 Ian Lance Taylor (ian@cygnus.com)
15707
15708 * test-build.mk: Use -with-gnu-as for mips-sgi-irix4 as well.
15709
15710 * build-all.mk: Set GCC to gcc -O -G 8 for MIPS targets, since gcc
15711 with gas currently defaults to -G 0.
15712
15713Thu Apr 1 08:25:42 1993 Ian Lance Taylor (ian@cygnus.com)
15714
15715 * Makefile.in (all-flex): flex depends on byacc.
15716
15717 * build-all.mk: If host not specified, use config.guess. Pass TAG
15718 to test-build.mk as RELEASE_TAG.
15719 * test-build.mk (configargs): New variable containing arguments to
15720 pass to configure. Set to -with-gnu-as on mips-dec-ultrix.
15721 (FLAGS_TO_PASS): Pass down RELEASE_TAG.
15722
15723 * config.guess: Use /bin/uname when checking -X argument on SCO,
15724 to avoid invoking GNU uname which doesn't understand -X.
15725
15726 * test-build.mk: Don't use /usr/unsupported/bin/as on AIX.
15727
15728 * configure.in: Build gas for mips-*-*.
15729
15730Wed Mar 31 21:20:58 1993 K. Richard Pixley (rich@rtl.cygnus.com)
15731
15732 * Makefile.in (all.normal): insert missing backslash.
15733
15734Wed Mar 31 12:31:56 1993 Ian Lance Taylor (ian@cygnus.com)
15735
4bddf3ad 15736 * build-all.mk: Bump -XNh value to 1500 to match gcc requirements.
252b5132
RH
15737
15738 * Makefile.in: Complete overhaul to merge many almost identical
15739 targets.
15740
15741Tue Mar 30 20:17:01 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15742
15743 * Makefile.in (setup-dirs-gdb): Renamed from setup-dirs.
15744 (gdb.tar.Z): Adjusted.
15745
15746 * Makefile.in (setup-dirs, taz): New targets; should be general
15747 enough to adapt for gdb sometime. Build only .z file.
15748 (gas.tar.z): New target.
15749
15750Tue Mar 30 10:03:09 1993 Ian Lance Taylor (ian@cygnus.com)
15751
15752 * build-all.mk: Use CC=cc -Xs on Solaris.
15753
252b5132
RH
15754Thu Mar 25 15:14:30 1993 Fred Fish (fnf@cygnus.com)
15755
15756 * Makefile.in: Incorporate changes suggested by wilson@cygnus.com
15757 for handling BISON for FSF releases.
15758
15759Thu Mar 25 06:19:48 1993 Ken Raeburn (raeburn@kr-pc.cygnus.com)
15760
15761 * configure: Actually implement the change zoo just documented.
15762
15763Wed Mar 24 13:02:44 1993 david d `zoo' zuhn (zoo at poseidon.cygnus.com)
15764
15765 * configure: when using config.guess, only set target_alias when
15766 it's not already been set (ie, on the command line)
15767
15768Mon Mar 22 23:07:39 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15769
15770 * Makefile.in: add installcheck target, set PRMS to install-prms
15771
15772Sun Mar 21 16:46:12 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15773
15774 * configure: add support for package_makefile_fragment, handle the
15775 case where a directory has a configure.in file but no Makefile.in
15776 more gracefully (with an actual understandable error message, even);
15777 add support for --without (and add this to the usage message); also
15778 explicitly add a --host=${host_alias} to the command line when
15779 config.guess is used
15780
15781Sun Mar 21 12:11:58 1993 Jim Wilson (wilson@sphagnum.cygnus.com)
15782
15783 * configure: Must use both --host and --target in recursive calls.
15784
15785Thu Mar 18 12:31:35 1993 Ian Lance Taylor (ian@cygnus.com)
15786
15787 * Makefile.in: Change deja-gnu to dejagnu.
15788
15789Mon Mar 15 15:44:35 1993 Ian Lance Taylor (ian@cygnus.com)
15790
15791 * configure.in (h8300-*-*, h8500-*-*): Don't build libg++.
15792
15793Fri Mar 12 18:30:14 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15794
15795 * configure.in: canonicalize all instances to *-*-solaris2*,
15796 also strip out a number of tools to not build for go32 host
15797
15798Wed Mar 10 12:08:27 1993 K. Richard Pixley (rich@rtl.cygnus.com)
15799
15800 * config.guess: add GPL.
15801
15802 * Makefile.in, config.guess, config.sub, configure: bump
15803 copyrights to 93.
15804
15805Wed Mar 10 07:12:48 1993 Ian Lance Taylor (ian@cygnus.com)
15806
15807 * Makefile.in (do-info): Removed obsolete check for existence of
15808 localenv file.
15809
15810 * Makefile.in (MAKEOVERRIDES): Define to be empty.
15811
15812Wed Mar 10 03:11:56 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15813
15814 * Makefile.in: a couple of 'else true' for decstation,
15815 support for TclX
15816
15817 * configure.in: configure tclX too; don't remove Tk on RS/6000 anymore
15818
15819Tue Mar 9 16:06:12 1993 K. Richard Pixley (rich@cygnus.com)
15820
15821 * Makefile.in (setup-dirs): change invocation of make to $(MAKE).
15822
15823Mon Mar 8 14:52:11 1993 Ken Raeburn (raeburn@cambridge)
15824
15825 * config.guess: Recognize i386-ibm-aix (PS/2).
15826 * configure.in: Use config/mh-aix386 file for it.
15827
15828Mon Mar 8 11:12:43 1993 Ian Lance Taylor (ian@cygnus.com)
15829
15830 * Makefile.in (GCC_FOR_TARGET): Eliminated definition; use
15831 CC_FOR_TARGET instead.
15832 (BASE_FLAGS_TO_PASS): Pass GCC_FOR_TARGET=$(CC_FOR_TARGET).
15833
15834Wed Mar 3 16:00:28 1993 Steve Chamberlain (sac@ok.cygnus.com)
15835
15836 * Makefile.in: Add sim to list of directories sent with gdb
15837
15838Wed Mar 3 11:42:39 1993 Ken Raeburn (raeburn@cygnus.com)
15839
15840 * configure.in: Put back mips-dec-bsd* case.
15841
15842Tue Mar 2 21:15:58 1993 Fred Fish (fnf@cygnus.com)
15843
15844 (Ultrix 2.2 support from Michael Rendell <michael@mercury.cs.mun.ca>)
15845 * configure.in (vax-*-ultrix2*): Add Ultrix 2.2 triplet.
15846 * config.guess: Change 'VAX*:ULTRIX:*:*' to 'VAX*:ULTRIX*:*:*'.
252b5132
RH
15847
15848Tue Mar 2 18:11:03 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15849
15850 * configure.in: remove no-op mips-dec-bsd* in "case $target"
15851
15852 * Makefile.in (dir.info): only run gen-info-dir if it exists,
15853 (install-info): install dir.info only if it exists,
15854 (all-expect, install-expect): pass along X11_FLAGS_TO_PASS
15855
15856Tue Mar 2 09:01:30 1993 Ken Raeburn (raeburn@cygnus.com)
15857
15858 * configure.in: For vms target, skip bfd, ld, binutils. Do build
15859 gas for mips-dec-bsd.
15860
15861Tue Mar 2 08:35:24 1993 Ian Lance Taylor (ian@cygnus.com)
15862
15863 * configure (makesrcdir): If ${srcdir} is relative and not ".",
15864 and ${subdir} is not ".", set makesrcdir based on ${invsubdir}.
15865
15866Tue Feb 23 14:18:28 1993 Mike Werner (mtw@poseidon.cygnus.com)
15867
15868 * configure.in: Added "dejagnu" to hosttools list.
15869
15870Mon Feb 22 23:28:38 1993 Per Bothner (bothner@rtl.cygnus.com)
15871
15872 * config.sub, configure.in, config.guess: Add support
15873 for Bosx, an AIX variant from Bull.
15874 Patches from F.Pierresteguy@frcl.bull.fr.
15875
15876Sun Feb 21 11:15:22 1993 Mike Werner (mtw@poseidon.cygnus.com)
15877
15878 * devo/dejagnu: Initial creation of devo/dejagnu.
15879 Migrated dejagnu testcases and support files for testing software
15880 tools to reside as subdirectories, currently called "testsuite",
15881 within the directory of the software tool. Migrated all programs,
15882 support libraries, etc. beloging to dejagnu proper from
15883 devo/deja-gnu to devo/dejagnu. These files were moved "as is"
15884 with no modifications. The changes to these files which will
15885 allow them to configure, build, and execute properly will be made
15886 in a future update.
15887
15888Fri Feb 19 20:19:39 1993 Brendan Kehoe (brendan@lisa.cygnus.com)
15889
15890 * Makefile.in: Change send_pr to send-pr.
15891 * configure.in: Likewise.
15892 * send_pr: Renamed directory to send-pr.
15893
15894Fri Feb 19 19:00:13 1993 Per Bothner (bothner@cygnus.com)
15895
15896 * Makefile.in: Add some extra semi-colons (needed if SHELL=bash).
15897
15898Fri Feb 19 00:59:33 1993 John Gilmore (gnu@cygnus.com)
15899
15900 * README: Update for gdb-4.8 release.
15901 * Makefile.in (gdb.tar.Z): Add texinfo/tex3patch. Build
15902 gdb-xxx.tar.z (gzip'd) file also.
15903
15904Thu Feb 18 09:16:17 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15905
15906 * Makefile.in: make all-diff depend on all-libiberty
15907
15908Tue Feb 16 16:06:31 1993 K. Richard Pixley (rich@cygnus.com)
15909
15910 * config.guess: add vax-ultrix in the spirit of mips-ultrix.
15911
15912Tue Feb 16 05:57:15 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15913
15914 * configure.in, Makefile.in: add hello, tar, gzip, recode, indent
15915
15916Tue Feb 16 00:58:20 1993 John Gilmore (gnu@cygnus.com)
15917
15918 * Makefile.in (DEVO_SUPPORT): Remove etc directory
15919 (ETC_SUPPORT): Only add the files GDB wants from etc/.
15920 (gdb.tar.Z): Use ETC_SUPPORT. Use byacc when building the file.
15921
15922Thu Feb 11 20:14:28 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15923
15924 * Makefile.in: makeinfo binary is in a new location
15925
15926Tue Feb 9 12:42:27 1993 Ian Lance Taylor (ian@cygnus.com)
15927
15928 * config.sub: Accept -ecoff as an OS.
15929
15930 * Makefile.in: Various changes to eliminate a level of make
15931 recursion and reduce the required command line length.
15932 (BASE_FLAGS_TO_PASS): New variable holding flags passed to all
15933 sub-makes.
15934 (EXTRA_HOST_FLAGS, EXTRA_TARGET_FLAGS, EXTRA_GCC_FLAGS): New
15935 variables holding settings for specific sub-makes.
15936 (FLAGS_TO_PASS, TARGET_FLAGS_TO_PASS, GCC_FLAGS_TO_PASS): Rewrote
15937 in terms of BASE_FLAGS_TO_PASS.
15938 (TARGET_LIBS): New variable listing directories which use
15939 TARGET_FLAGS_TO_PASS.
15940 (subdir_do): Eliminated.
15941 (do-*): New set of targets to replace subdir_do.
15942 (various): All targets which used subdir_do now depend on do-*.
15943 (local-clean): Renamed from do_clean.
15944 (local-distclean): New target, dependency of distclean and
15945 realclean.
15946 (install-info): Don't create directories. Depend on dir.info
15947 rather than calling make recursively.
15948 (install-dir.info): Eliminated.
15949 (install-info-dirs): Create all info directories here.
15950 (dir.info): Depend upon do-install-info.
15951
15952 * test-build.mk (HOLES): Added false.
15953
15954Sat Feb 6 14:05:09 1993 Per Bothner (bothner@rtl.cygnus.com)
15955
15956 * config.guess: Recognize BSDI and BSDJ (Jolitz 386bsd).
15957
15958Thu Feb 4 20:49:18 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15959
15960 * Makefile.in (info): remove dependency on all-texinfo. The
15961 problem was really in texinfo/C, not at this level.
15962
15963Thu Feb 4 13:38:41 1993 Ian Lance Taylor (ian@cygnus.com)
15964
15965 * Makefile.in (info): Added dependency on all-texinfo (PR 2112).
15966
15967Thu Feb 4 01:50:53 1993 John Gilmore (gnu@cygnus.com)
15968
15969 * Makefile.in (make-gdb.tar.Z): Change BISON to 'bison -y' for
15970 GDB releases.
15971
15972Wed Feb 3 17:22:16 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15973
15974 * configure: Include srcdir in message about target of link not
15975 being found. Don't convert `-' to `_' in `with' options being
15976 passed to subdirs.
15977
15978Tue Feb 2 18:57:59 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15979
15980 * configure.in: add uudecode to host_tools
15981
15982 * Makefile.in: added {all,install}-uudecode targets, added them to
15983 the appropriate lists
15984
15985Tue Feb 2 11:45:53 1993 Ian Lance Taylor (ian@cygnus.com)
15986
15987 * Makefile.in (all-gcc): Added dependency on all-gas.
15988
15989 * configure.in (mips-*-*): Build ld and binutils.
15990
15991Mon Feb 1 12:35:41 1993 K. Richard Pixley (rich@rtl.cygnus.com)
15992
15993 * configure: check return code from mkdir, print error message and
15994 exit on failure.
15995
15996Sat Jan 30 16:40:28 1993 John Gilmore (gnu@cygnus.com)
15997
15998 * Makefile.in (make-gdb.tar.Z): New location for texinfo.tex.
15999
16000Thu Jan 28 15:09:59 1993 Ian Lance Taylor (ian@cygnus.com)
16001
16002 * test-build.mk (HOLES): Added tar, cpio and uudecode.
16003
16004Wed Jan 27 16:50:32 1993 Jim Wilson (wilson@sphagnum.cygnus.com)
16005
16006 * config.sub (h8500): Recognize this as a cpu type.
16007
16008Sat Jan 23 20:32:01 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16009
16010 * configure: source directory missing is no longer a warning
16011
16012 * configure.in: recognize irix[34]* instead of irix[34]
16013
16014 * Makefile.in: define and pass down X11_LIB
16015
252b5132
RH
16016Sat Jan 23 13:49:40 1993 Per Bothner (bothner@cygnus.com)
16017
16018 * guess-systype: Renamed to ...
16019 * config.guess: ... by popular request.
16020 * configure.in, Makefile.in: Update accordingly.
16021
16022Thu Jan 21 12:20:55 1993 Per Bothner (bothner@cygnus.com)
16023
16024 * guess-systype: Patches from John Eaton <jwe@che.utexas.edu>:
16025 + Add Convex, Cray/Unicos, and Encore/Multimax support.
16026 + Execute ./dummy instead of assuming . is in PATH.
16027
16028Tue Jan 19 17:18:06 1993 Per Bothner (bothner@cygnus.com)
16029
16030 * guess-systype: New shell script. Attempts to guess the
16031 canonical host name of the executing host.
16032 Only a few hosts are supported so far.
16033 * configure: Call guess-systype if no host is specified.
16034
16035Tue Jan 19 08:26:07 1993 Ian Lance Taylor (ian@cygnus.com)
16036
16037 * Makefile.in (gcc-no-fixedincludes): Made to work with current
16038 gcc Makefile.
16039
16040
16041Fri Jan 15 10:27:02 1993 Ian Lance Taylor (ian@cygnus.com)
16042
16043 * Makefile.in (GCC_FLAGS_TO_PASS): New variable.
16044 (all-gcc, install-gcc, subdir_do): Use it.
16045
16046Wed Jan 13 17:06:45 1993 Jim Wilson (wilson@sphagnum.cygnus.com)
16047
16048 * Makefile.in: Rename uninstalled gcc driver from gcc to xgcc.
16049
16050Wed Jan 6 20:29:16 1993 Mike Werner (mtw@rtl.cygnus.com)
16051
16052 * Makefile.in: Removed explicit setting of SUBDIRS. SUBDIRS is now
16053 set exclusively by configure, using configure.in .
16054
16055Wed Jan 6 13:44:11 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16056
16057 * test-build.mk: set $PATH for all builds
16058
16059 * Makefile.in: pass TARGET_FLAGS_TO_PASS for xiberty and libm
16060
16061Wed Jan 6 11:02:10 1993 Fred Fish (fnf@cygnus.com)
16062
16063 * Makefile.in (GCC_FOR_TARGET): Supply a default that matches
16064 the one used in gcc/Makefile.in, so that a null expansion doesn't
16065 override the one needed to build gcc with a native cc.
16066
16067
16068Tue Jan 5 07:55:12 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
16069
16070 * configure: Accept -with arguments.
16071
16072Sun Jan 3 15:15:09 1993 Steve Chamberlain (sac@thepub.cygnus.com)
16073
16074 * Makefile.in: added h8300sim
16075
16076Tue Dec 29 15:06:00 1992 Ian Lance Taylor (ian@cygnus.com)
16077
252b5132
RH
16078 * build-all.mk: If canonhost is i386-unknown-sco3.2v4, change it
16079 to i386-sco3.2v4. Set TARGETS and CFLAGS for i386-sco3.2v4.
16080 (all-cygnus, native, build-cygnus): Make
16081 $(canonhost)-stamp-3stage-done, not $(host)....
16082 * test-build.mk (stamp-3stage-compared): Use tail +10c for
16083 i386-sco3.2v4. Added else true to if command.
16084
16085Mon Dec 28 12:08:56 1992 Ken Raeburn (raeburn@cygnus.com)
16086
16087 * config.sub: (from FSF) Sequent uses a BSD-like OS.
16088
16089Mon Dec 28 08:32:06 1992 Minh Tran-Le (mtranle@paris.intellicorp.com)
16090
16091 * configure.in (i[34]86-*-isc*): added; uses mh-sysv.
16092
16093Thu Dec 24 17:26:24 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16094
16095 * configure.in: don't remove binutils from Solaris builds
16096
16097Thu Dec 24 14:08:38 1992 david d`zoo' zuhn (zoo@cygnus.com)
16098
16099 * Makefile.in: get rid of earlier definitions for *clean,
16100 also handle the recursive info rule better
16101
16102Thu Dec 24 12:40:21 1992 Per Bothner (bothner@rtl.cygnus.com)
16103
16104 * Makefile.in (mostlyclean, distclean, realclean): Fix to
16105 do more-or-less the right thing.
16106
16107Wed Dec 16 10:25:31 1992 Ian Lance Taylor (ian@cygnus.com)
16108
16109 * Makefile.in: Add lines defining CC and CXX, and use CXX rather
16110 than gcc in definitions of CXX_FOR_BUILD and CXX_FOR_TARGET.
16111
16112Tue Dec 15 00:34:32 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16113
16114 * Makefile.in: change all $(host_cpu)-$(host_vendor)-$(host_os) to
16115 $(host_canonical).
16116
16117 * configure.in: split the configdirs list into 4 categories (native
16118 v. cross, library v. tool) and handle the cross-only and native-
16119 only in more reasonable (and correct!) way.
16120
16121Mon Dec 14 17:04:22 1992 Stu Grossman (grossman at cygnus.com)
16122
16123 * configure.in (hppa*-*-*): Don't remove bfd and gdb from
16124 configdirs anymore.
16125
16126Sun Dec 13 00:37:26 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16127
16128 * Makefile.in: extensive cleanup:: removed all of the explicit
16129 clean-* targets, collapsed many wrappers around subdir_do into
16130 one, added additional targets to satisfy standards.texi, deleted
16131 some old targets, some changes for consistency
16132
16133Fri Dec 11 20:18:02 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16134
16135 * configure.in: handle some programs as cross-only, and others as
16136 native only
16137
16138 * test-build.mk: handle partial holes in a more generic manner
16139
16140 * Makefile.in: m4 depends on libiberty
16141
252b5132
RH
16142Thu Dec 3 21:52:11 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16143
16144 * configure.in: add m4, textutils, fileutils, sed, shellutils,
16145 time, wdiff, and find to configdirs
16146
16147 * Makefile.in: all, clean, and install rules for the new programs
16148 added to configure.in
16149
16150Mon Nov 30 14:54:34 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16151
16152 * configure.in: use mh-sun for all *-sun-* hosts
16153
252b5132
RH
16154Fri Nov 27 18:35:54 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16155
16156 * Makefile.in: define flags for X11 include files and library file
16157 locations, pass them down to the programs that need this info
16158
16159 * build-all.mk: added a 'native' target, to 3stage the native toolchain
16160
252b5132
RH
16161Sun Nov 22 18:59:13 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16162
16163 * configure.in: start building libg++ for HP-UX targets
16164
16165Wed Nov 18 19:33:11 1992 John Gilmore (gnu@cygnus.com)
16166
16167 * README: Update references to files moved into etc/.
16168
16169Sun Nov 15 09:36:08 1992 Fred Fish (fnf@cygnus.com)
16170
16171 * config.sub (i386sol2, i486sol2): i[34]86-unknown-solaris2.
16172 * configure.in (i[34]86-*-solaris2*): Use config/mh-sysv4.
16173
16174Thu Nov 12 08:50:42 1992 Ian Lance Taylor (ian@cygnus.com)
16175
16176 * configure: accept dash as well as underscore in long option
16177 names for FSF compatibility.
16178
16179Wed Nov 11 08:04:37 1992 Ian Lance Taylor (ian@cygnus.com)
16180
16181 * config.sub: added -sco3.2v4 support from FSF.
16182
16183Sun Nov 8 21:14:30 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16184
16185 * configure.in: expand the section that adds or removes
16186 directories from the list of programs to build, to handle native
16187 vs. cross in addition to host v. native
16188
16189Sat Nov 7 18:52:27 1992 Per Bothner (bothner@rtl.cygnus.com)
16190
16191 * Makefile.in: Replace C++ in macro names with CXX.
16192 This is less likely to break ...
16193
16194Sat Nov 7 15:16:58 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16195
16196 * test-build.mk: add -w to GNU_MAKE
16197
16198Fri Nov 6 23:10:37 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16199
16200 * config.sub: remove 'sparc'-->'sparc-sun' default transformation,
16201 add 'sparc' to list of recognized cpus. This needed to make
16202 'sparc-aout' expand to 'sparc-unknown-aout' instead of 'sparc-sun-aout'.
16203 Delete some redundant ose68 variants. Recognize -wrs as an os,
16204 then changes that into $CPU-wrs-vxworks.
16205
16206 * configure.in: remove most references to gdbtest, regularize
16207 target based program removal
16208
16209 * test-build.mk: import from p3 tree (many fixes and changes)
16210
16211Fri Nov 6 20:59:00 1992 david d `zoo' zuhn (zoo@cygnus.com)
16212
16213 * Makefile.in: added rules to handle tcl, tk, and expect
16214
16215 * configure.in: handle those directories if they exist
16216
16217Thu Nov 5 14:35:41 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16218
16219 * config.sub: removed bogus hppabsd and hppahpux names, since
16220 "hppa" is not a valid cpu (hppa1.1 or hppa1.0 are, though)
16221
16222Thu Oct 29 00:12:41 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16223
16224 * Makefile.in: all-gcc now depends on all-binutils. all-libg++
16225 depends upon all-xiberty
16226
16227 * Makefile.in: changes from p3, including:
16228
16229 Thu Oct 8 15:00:17 1992 Ian Lance Taylor (ian@cygnus.com)
16230
16231 * Makefile.in (XTRAFLAGS): include newlib directories if
16232 newlib/Makefile exists, rather than if host != target.
16233
16234 Fri Sep 25 13:41:52 1992 Ian Lance Taylor (ian@cygnus.com)
16235
16236 * Makefile.in: added -nostdinc to XTRAFLAGS if we are using gcc
16237 from the same source tree and not building a cross-compiler. This
16238 matters for the libg++ configuration if reconfiguring a tree that
16239 has already been installed.
16240
16241 Thu Sep 10 10:35:51 1992 Ian Lance Taylor (ian@cygnus.com)
16242
16243 * Makefile.in: added -I for newlib/targ-include to XTRAFLAGS, to
16244 pick up the machine and system specific header files.
16245
16246 * Makefile.in: added AS_FOR_TARGET, passed down in
16247 TARGET_FLAGS_TO_PASS. Added CC_FOR_BUILD, which is intended to be
16248 the C compiler to use to create programs which are run in the
16249 build environment, set it to default to $(CC), and passed it down
16250 in FLAGS_TO_PASS and TARGET_FLAGS_TO_PASS.
16251
16252 Mon Sep 7 22:34:42 1992 Ian Lance Taylor (ian@cirdan.cygnus.com)
16253
16254 * Makefile.in: add $(host) = $(target) tests back to *_FOR_TARGET.
16255 We need them for unusual native builds, like systems without
16256 ranlib.
16257
16258 * configure: also define $(host_canonical) and
80413487
RH
16259 $(target_canonical), which are the full, canonical names for the
16260 given host and target
252b5132
RH
16261
16262Sun Nov 1 16:38:17 1992 Per Bothner (bothner@cygnus.com)
16263
16264 * Makefile.in: Added separate definitions for C++.
16265
16266Fri Oct 30 11:37:52 1992 Fred Fish (fnf@cygnus.com)
16267
16268 * configure.in (configdirs): Add deja-gnu.
16269
16270Fri Oct 23 00:39:18 1992 John Gilmore (gnu@cygnus.com)
16271
16272 * README: Update for configure.texi and gdb-4.7 release.
16273
16274Wed Oct 21 21:54:27 1992 John Gilmore (gnu@cygnus.com)
16275
16276 * Makefile.in: Move "all" target to top of file.
16277 Previously, first target was ".PHONY" which caused BSD4.4 make
16278 to build .PHONY when make was run without arguments.
16279
16280Mon Oct 19 01:17:54 1992 John Gilmore (gnu@cygnus.com)
16281
16282 * Makefile.in: Add COPYING.LIB to GDB releases, now that there's
16283 Library-copylefted code in libiberty.
16284
16285Tue Oct 13 01:22:32 1992 John Gilmore (gnu@cygnus.com)
16286
16287 * config.sub: Replace m68kmote with plain old m68k.
16288
16289Fri Oct 9 03:14:24 1992 John Gilmore (gnu@cygnus.com)
16290
16291 * Makefile.in: Remove space from blank line, avoid Make complaints.
16292
16293Thu Oct 8 18:41:45 1992 Ken Raeburn (raeburn@cygnus.com)
16294
16295 * config.sub: Complain if no argument is given. Added support for
16296 386bsd as OS and target alias.
16297
16298Thu Oct 8 15:07:22 1992 Ian Lance Taylor (ian@cygnus.com)
16299
16300 * Makefile.in (XTRAFLAGS): include newlib directories if
16301 newlib/Makefile exists, rather than if host != target.
16302
16303Mon Oct 5 03:00:09 1992 Mark Eichin (eichin at tweedledumber.cygnus.com)
16304
16305 * config.sub: recognize sparclite-wrs-vxworks.
16306
16307 * Makefile.in (install-xiberty): added *-xiberty make rules (from
16308 p3.) Added clean-xiberty to clean.
16309
16310Thu Oct 1 17:59:19 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16311
16312 * configure.in: use *-*-* instead of nested cases for host and target
16313
16314Tue Sep 29 14:11:18 1992 Ian Lance Taylor (ian@cygnus.com)
16315
16316 * Makefile.in: added -nostdinc to XTRAFLAGS if we are using gcc
16317 from the same source tree and not building a cross-compiler. This
16318 matters for the libg++ configuration if reconfiguring a tree that
16319 has already been installed.
16320
16321Sep 20 08:53:10 1992 Fred Fish (fnf@cygnus.com)
16322
16323 * config.sub (i486v/i486v4): Merge in from FSF version.
16324
16325Fri Sep 18 00:32:00 1992 Mark Eichin (eichin@cygnus.com)
16326
16327 * configure: only set PWD if it is already set.
16328
16329Thu Sep 17 23:05:53 1992 Mark Eichin (eichin@cygnus.com)
16330
16331 * configure: just set PWD=`pwd` at the top, since Ultrix sh
16332 doesn't have unset and all success paths (and most error paths)
16333 out set it anyway. (Note: should change all uses of ${PWD=`pwd`}
16334 to just ${PWD} to avoid confusion.)
16335
16336Tue Sep 15 16:00:54 1992 Ian Lance Taylor (ian@cygnus.com)
16337
16338 * configure: always set $(tooldir) to $(libdir)/$(target_alias),
16339 even for a native compilation.
16340
16341Tue Sep 15 02:22:56 1992 John Gilmore (gnu@cygnus.com)
16342
16343 Changes to make the gdb.tar.Z rule work better.
16344
16345 * Makefile.in (GDB_SUPPORT_DIRS): Add opcodes.
16346 (DEVO_SUPPORT): Add configure.texi.
16347 (bfd-ilrt.tar.Z): Remove ancient rule.
16348
16349Thu Sep 10 10:43:19 1992 Ian Lance Taylor (ian@cygnus.com)
16350
16351 * Makefile.in: added -I for newlib/targ-include to XTRAFLAGS, to
16352 pick up the machine and system specific header files.
16353
16354 * configure.in, config.sub: added new target m68010-adobe-scout,
16355 with alias of adobe68k. Changed configure.in to check for
16356 -scout before -sco* to avoid a false match.
16357
16358 * Makefile.in: added AS_FOR_TARGET, passed down in
16359 TARGET_FLAGS_TO_PASS. Added CC_FOR_BUILD, which is intended to be
16360 the C compiler to use to create programs which are run in the
16361 build environment, set it to default to $(CC), and passed it down
16362 in FLAGS_TO_PASS and TARGET_FLAGS_TO_PASS.
16363
16364Wed Sep 9 12:21:42 1992 Ian Lance Taylor (ian@cygnus.com)
16365
16366 * Makefile.in: added TARGET_FLAGS_TO_PASS, CC_FOR_TARGET,
16367 AR_FOR_TARGET, RANLIB_FOR_TARGET, NM_FOR_TARGET. Pass
16368 TARGET_FLAGS_TO_PASS, which defines CC, AR, RANLIB and NM as the
16369 FOR_TARGET variants, to newlib and libg++.
16370
16371Tue Sep 8 17:28:30 1992 Ken Raeburn (raeburn@cambridge.cygnus.com)
16372
16373 * Makefile.in (all-gas, all-gdb): Require all-opcodes to be built
16374 first.
16375
16376Wed Sep 2 02:50:05 1992 John Gilmore (gnu@cygnus.com)
16377
16378 * config.sub: Accept `elf' as an environment.
16379
16380Tue Sep 1 15:48:30 1992 Steve Chamberlain (sac@thepub.cygnus.com)
16381
16382 * Makefile.in (all-opcodes): cd into the right directory
16383
16384Sun Aug 30 21:12:11 1992 Ian Lance Taylor (ian@cygnus.com)
16385
16386 * configure: added -program_transform_name option, used as
16387 argument to sed when installing programs.
16388 configure.texi: added documentation for -program_prefix,
16389 -program_suffix and -program_transform_name.
16390
16391Thu Aug 27 21:59:44 1992 John Gilmore (gnu@cygnus.com)
16392
16393 * config.sub: Accept i486 where i386 ok.
16394
16395Thu Aug 27 13:04:42 1992 Brendan Kehoe (brendan@rtl.cygnus.com)
16396
16397 * config.sub: accept we32k
16398
16399Mon Aug 24 14:05:14 1992 Ian Lance Taylor (ian@cygnus.com)
16400
35590697 16401 * config.sub, configure.in: accept OSE68000 and OSE68k.
252b5132
RH
16402
16403 * Makefile.in: don't create all directories for ``make install'';
16404 let the subdirectories create the ones they need.
16405
16406Tue Aug 11 23:13:17 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16407
80413487 16408 * COPYING: new file, GPL v2
252b5132
RH
16409
16410Tue Aug 4 01:12:43 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16411
16412 * Makefile.in: use the new gen-info-dir, which needs a template
16413 argument (which also lives in texinfo)
16414
16415 * configure.texi, standards.texi: fix INFO-DIR-ENTRY
16416
252b5132
RH
16417Mon Aug 3 00:34:17 1992 Fred Fish (fnf@cygnus.com)
16418
16419 * config.sub (ncr3000): Change i386 to i486.
16420
16421Thu Jul 23 00:12:17 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16422
16423 * Makefile.in: add install-rcs, install-grep to
16424 install-no-fixedincludes, removed install-bison and install-libgcc
16425
16426Tue Jul 21 01:01:50 1992 david d `zoo' zuhn (zoo@cygnus.com)
16427
16428 * configure.in: grab the HPUX makefile fragment if on HPUX
16429
16430Mon Jul 20 11:02:09 1992 D. V. Henkel-Wallace (gumby@cygnus.com)
16431
16432 * Makefile.in: eradicate bison spoor (ditto libgcc).
16433 configure.in: recognise m68{k,000}-ericsson-OSE.
16434 es1800 is alias for m68k-ericsson-OSE
16435
16436Sun Jul 19 17:49:02 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16437
16438 * configure.in: rearrange the parts that remove programs from
16439 configdirs, based now on HOST==TARGET or by canonical triple.
16440
16441Fri Jul 17 22:52:49 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16442
16443 * test-build.mk: recurse explicitly with -f test-build.mk when
16444 appropriate. predicate stage3 and comparison on the existence
16445 of gcc. That is, if gcc isn't around, we aren't three-staging.
16446 On very clean, also remove ...stamp-co. Build in-place before
16447 doing other builds.
16448
16449Thu Jul 16 18:33:09 1992 Steve Chamberlain (sac@thepub.cygnus.com)
16450
16451 * Makefile.in, configure.in: add tgas
16452
16453Thu Jul 16 16:05:28 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16454
16455 * Makefile.in: a number of changes merged in from progressive.
16456
16457 * configure.in: add libm.
16458
16459 * .cvsignore: ignore some stuff that comes from test-build.mk.
16460
252b5132
RH
16461Tue Jul 7 00:24:52 1992 Fred Fish (fnf@cygnus.com)
16462
16463 * config.sub: Add es1800 (m68k-ericsson-es1800).
16464
16465Tue Jun 30 20:24:41 1992 D. V. Henkel-Wallace (gumby@cygnus.com)
16466
16467 * configure: Add program_suffix (parallel to program_prefix)
16468 * Makefile.in: adjust directory-creating script for losing decstation
16469
16470Mon Jun 22 23:43:48 1992 Per Bothner (bothner@cygnus.com)
16471
16472 * configure: Minor $subdir-related fixes.
16473
16474Mon Jun 22 18:30:26 1992 Steve Chamberlain (sac@thepub.cygnus.com)
16475
16476 * configure: fix various problems with propogating
16477 makefile_target_frag in subdirs.
16478 * configure.in: config libgcc if its there
16479
16480Fri Jun 19 15:19:40 1992 Stu Grossman (grossman at cygnus.com)
16481
16482 * config.sub: HPPA merge.
16483
252b5132
RH
16484Sun Jun 14 10:29:19 1992 John Gilmore (gnu at cygnus.com)
16485
16486 * Makefile.in: Replace all-bison with all-byacc in all
16487 dependency lines for other tools (which now use byacc).
16488
16489Fri Jun 12 22:21:57 1992 John Gilmore (gnu at cygnus.com)
16490
16491 * config.sub: Add sun4sol2 => sparc-sun-solaris2.
16492
252b5132
RH
16493Thu Jun 4 12:07:32 1992 Mark Eichin (eichin@cygnus.com)
16494
16495 * Makefile.in: make gprof rules similar to byacc rules (instead of
16496 vestigal $(unsubdir) that didn't work...)
16497
16498Thu Jun 4 00:37:05 1992 Per Bothner (bothner@rtl.cygnus.com)
16499
16500 * config.sub: Add support for Linux.
16501 * Makefile.in: Use $(FLAGS_TO_PASS) more consistently
16502 (at least for libg++).
16503
16504Tue Jun 02 20:03:00 1992 david d `zoo' zuhn (zoo@cygnus.com)
16505
16506 * configure.texi: fix doc for the -nfp option to configure
16507
16508Tue Jun 2 17:20:52 1992 Michael Tiemann (tiemann@cygnus.com)
16509
16510 * Makefile.in (all-binutils): ar needs flex, so depend on all-flex.
16511
16512Sun May 31 15:04:08 1992 Mark Eichin (eichin at cygnus.com)
16513
16514 * config.sub: changed [^-]+ to [^-][^-]* so that it works under
16515 Sun sed. (BSD 4.3 sed doesn't handle [^-]+ either.)
16516 * configure.in: added solaris* host_makefile_frag hook.
16517
16518Sun May 31 01:10:34 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16519
16520 * config.sub: changed recognition of m68000 so that various
16521 m68k types can be specified via m680[01234]0
16522
16523Sat May 30 21:01:06 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16524
16525 * config.sub (basic_machine): fix sed so that '-foo' isn't
16526 completely substituted out while .+'-foo' loses the '-foo'
16527
16528Wed May 27 23:18:52 1992 Michael Tiemann (tiemann@rtl.cygnus.com)
16529
16530 * config.sub ($os): Add -aout.
16531
16532Fri May 22 14:00:02 1992 Per Bothner (bothner@cygnus.com)
16533
16534 * configure: If host_makefile_frag is absolute, don't
16535 prefix ${invsubdir} (relevant to libg++ auto-configure).
16536
16537Thu May 21 18:00:09 1992 Michael Tiemann (tiemann@rtl.cygnus.com)
16538
16539 * Makefile.in (tooldir): Define it.
16540 (all-ld): Depend on all-flex.
16541
16542Sun May 10 21:45:59 1992 Per Bothner (bothner@rtl.cygnus.com)
16543
16544 * Makefile.in (check): Fix libg++ special case.
16545
16546Fri May 8 08:31:41 1992 K. Richard Pixley (rich@cygnus.com)
16547
16548 * configure: do not bury `pwd` into config.status, thus do fewer
16549 pwd's.
16550
16551 * configure: print the "Building in" message only when building in
16552 other than "." AND verbose.
16553
16554 * configure: remove -s, rework -v to better accomodate guested
16555 configures.
16556
16557 * standards.texi: updated to 3 may, fixed librid <-> libdir typo.
16558
16559Fri May 1 18:00:50 1992 K. Richard Pixley (rich@cygnus.com)
16560
16561 * Makefile.in: macroize flags passed on recursion. remove
16562 fileutils.
16563
16564Thu Apr 30 08:56:20 1992 K. Richard Pixley (rich@cygnus.com)
16565
16566 * configure: get makesrcdir right for subdirs deeper than 1.
16567
16568 * Makefile.in: pass INSTALL, INSTALL_DATA, INSTALL_PROGRAM on
16569 install.
16570
16571Fri Apr 24 15:51:51 1992 K. Richard Pixley (rich@cygnus.com)
16572
16573 * Makefile.in: don't print subdir_do or recursion lines.
16574
16575Fri Apr 24 15:22:04 1992 K. Richard Pixley (rich@cygnus.com)
16576
16577 * standards.texi: added menu item.
16578
16579 * Makefile.in: build and install standards.info.
16580
16581 * standards.texi: new file.
16582
16583Wed Apr 22 18:06:55 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16584
16585 * configure: test for and move config.status pieces from
16586 ${subdir}/.
16587
16588Wed Apr 22 14:38:34 1992 Fred Fish (fnf@cygnus.com)
16589
252b5132
RH
16590 * configure: Test for existance of files before trying to mv
16591 them, to avoid numerous non-existance messages.
16592
16593Tue Apr 21 12:31:33 1992 K. Richard Pixley (rich@cygnus.com)
16594
16595 * configure: correct final line of config.status.
16596
16597 * configure: patch from eggert. Avoids a protection problem if
16598 the original Makefile.in is read only.
16599
16600 * configure: use move-if-change from gcc to create config.status.
16601 Some makefiles depend on config.status to tell if a directory
16602 has been reconfigured for a different host. This change
16603 prevents those directories from remaking everything in the case
16604 where the reconfig was only intended to rebuild a Makefile.
16605
16606 * configure: test for config.sub with "config.sub sun4" rather
16607 than "config.sub ${host_alias}". Otherwise we can't tell a bad
16608 host alias from a missing config.sub.
16609
16610Mon Apr 20 18:16:36 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16611
16612 * Makefile.in: explicitly pass CFLAGS on recursion. no longer pass
16613 MINUS_G (this can be done with CFLAGS). Default CFLAGS to -g.
16614
16615Fri Apr 17 18:27:51 1992 Per Bothner (bothner@cygnus.com)
16616
16617 * configure: mkdir ${subdir} as needed.
16618
16619Wed Apr 15 17:37:22 1992 K. Richard Pixley (rich@cygnus.com)
16620
16621 * Makefile.in,configure.in: added autoconf.
16622
16623Wed Apr 15 17:27:34 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16624
16625 * Makefile.in: no longer pass against on recursion.
16626
16627 * Makefile.in: added .NOEXPORT: so that stray makefile_frag
16628 definitions are not inherited.
16629
16630 * configure: correct makesrcdir when subdir is .
16631
16632Tue Apr 14 11:56:09 1992 Per Bothner (bothner@cygnus.com)
16633
16634 * configure: Add support for 'subdirs' variable, which is
16635 like 'configdirs', except that configure doesn't re-invoke
16636 itself for subdirs, it just creates a Makefile for each subdir.
16637 * configure.texi: Document subdirs.
16638
16639Mon Apr 13 18:50:16 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16640
16641 * configure.in: added flex to configdirs
16642
16643Mon Apr 13 18:43:55 1992 K. Richard Pixley (rich@cygnus.com)
16644
16645 * Makefile.in: remove clean-stamps from clean.
16646
16647Sat Apr 11 03:52:03 1992 John Gilmore (gnu at cygnus.com)
16648
16649 * configure.in: Add gdbtest to configdirs.
16650
16651Fri Apr 10 23:11:49 1992 Fred Fish (fnf@cygnus.com)
16652
16653 * Makefile.in (MINUS_G): Add macro, default to -g, pass on
16654 to recursive makes.
16655 * configure.in: Recognize new ncr3000 config.
16656
16657Wed Apr 8 23:08:12 1992 K. Richard Pixley (rich@cygnus.com)
16658
16659 * Makefile.in, configure.in: removed references to gdbm.
16660
16661Tue Apr 7 16:48:20 1992 Per Bothner (bothner@cygnus.com)
16662
16663 * config.sub: Don't canonicalize os value
16664 newsos* to bsd (readline needs to check for newsos).
16665 (This fix was earlier made Jan 31, but got re-broken.)
16666
16667Mon Apr 6 14:34:08 1992 Stu Grossman (grossman at cygnus.com)
16668
16669 * configure.in: sco is an os, not a vendor!
16670
16671 * configure: Quote $( better. Keep various shells happy.
16672
16673Tue Mar 31 16:32:57 1992 K. Richard Pixley (rich@cygnus.com)
16674
16675 * Makefile.in: eliminate stamp-files.
16676
16677Mon Mar 30 22:20:23 1992 K. Richard Pixley (rich@cygnus.com)
16678
16679 * Makefile.in: add send_pr. remove "force" from .stmp-gprof rule.
16680 Supress echoing of all the "if [ -d ... $(MAKE)" lines.
16681
16682Wed Mar 25 15:20:04 1992 Stu Grossman (grossman@cygnus.com)
16683
16684 * config.sub: fix iris/iris3.
16685
16686Wed Mar 25 10:34:19 1992 K. Richard Pixley (rich@cygnus.com)
16687
16688 * configure: re-add -rm.
16689
16690Tue Mar 24 23:50:16 1992 K. Richard Pixley (rich@cygnus.com)
16691
16692 * Maskefile.in: add .stmp-rcs to all.
16693
16694 * configure.in: remove gas from rs6000 build, use aix host fragment.
16695
16696Mon Mar 23 19:43:35 1992 K. Richard Pixley (rich@cygnus.com)
16697
16698 * configure: pass down site_option during recursion.
16699
16700Thu Mar 19 16:49:36 1992 Stu Grossman (grossman at cygnus.com)
16701
16702 * Makefile.in (all.cross): Add .stmp-bfd .stmp-readline.
16703
16704Wed Mar 18 15:29:33 1992 Mike Stump (mrs@cygnus.com)
16705
16706 * configure: Change exec_prefix so that it really defaults to prefix.
16707
16708Sat Mar 14 17:20:38 1992 Fred Fish (fnf@cygnus.com)
16709
16710 * Makefile.in, configure.in: Add support for mmalloc library.
16711
16712Fri Mar 13 18:44:18 1992 K. Richard Pixley (rich@cygnus.com)
16713
16714 * Makefile.in: add stmp dependencies for a few more things.
16715
16716Thu Mar 12 04:56:24 1992 K. Richard Pixley (rich@cygnus.com)
16717
16718 * configure: adjusted error message on objdir/srcdir configure
16719 collision, per john's suggestion.
16720
16721 * Makefile.in: add libiberty stmp to all and all.cross.
16722
16723Wed Mar 11 02:07:52 1992 K. Richard Pixley (rich@cygnus.com)
16724
16725 * Makefile.in: remove force dependencies, add grep to all.
16726
16727Tue Mar 10 21:49:18 1992 K. Richard Pixley (rich@mars.cygnus.com)
16728
16729 * Makefile.in: drop flex. make stamp files work.
16730
16731 * configure: added test for conflicting configuration in srcdir,
16732 remove trailing slashes from srcdir. Otherwise emacs gdb mode
16733 gets cranky. use relative paths for configure and srcdir
16734 whenever possible. Send some error messages to stderr that were
16735 going to stdout.
16736
16737Tue Mar 10 18:01:55 1992 Per Bothner (bothner@cygnus.com)
16738
16739 * Makefile.in: Fix libg++ rule to check for gcc directory
16740 before using gcc/gcc. Also pass XTRAFLAGS.
16741
16742Thu Mar 5 21:45:07 1992 K. Richard Pixley (rich@sendai)
16743
16744 * Makefile.in: added stmp-files so that directories aren't polled
16745 when they are already built.
16746
16747 * configure.texi: fixed a node pointer problem.
16748
16749Thu Mar 5 12:05:58 1992 Stu Grossman (grossman at cygnus.com)
16750
4bddf3ad 16751 * config.sub configure.in gdb/configure.in
252b5132
RH
16752 gdb/mips-tdep.c gdb/mipsread.c gdb/procfs.c gdb/signame.h
16753 gdb/tm-irix3.h gdb/tm-mips.h gdb/xm-irix4.h gdb/config/mt-irix3
16754 gdb/config/mh-irix4 texinfo/configure.in: Port to SGI Irix-4.x.
16755
16756Wed Mar 4 02:57:46 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16757
16758 * configure: -recurring becomes -silent. corrected help message
16759 for -site= option.
16760
16761 * Makefile.in: mkdir $(exec_prefix) and $(tooldir).
16762
16763Tue Mar 3 14:51:21 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16764
16765 * configure: when building Makefile for crosses, replace
16766 tooldir and program_prefix. default srcdir from location of
16767 config.sub. remove "for host in hosts" and "for target in
16768 targets" loops.
16769
16770Wed Feb 26 19:48:25 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16771
16772 * Makefile.in: Do not pass bindir or mandir to cvs.
16773
16774Wed Feb 26 18:04:40 1992 K. Richard Pixley (rich@cygnus.com)
16775
16776 * Makefile.in, configure.in: removed traces of namesubdir,
16777 -subdirs, $(subdir), $(unsubdir), some rcs triggers. Forced
16778 copyrights to '92, changed some from Cygnus to FSF.
16779
16780 * configure.texi: remove most references to multiple hosts,
16781 multiple targets, subdirs, etc.
16782
16783 * configure.man: removed rcsid. reference config.sub not
16784 config.subr.
16785
16786 * Makefile.in: mkdir $(infodir) on install-info.
16787
16788Wed Feb 19 15:41:13 1992 John Gilmore (gnu at cygnus.com)
16789
16790 * configure.texi: Explain better about .gdbinit and about
16791 the environment that configure.in sections run in.
16792
16793Fri Feb 7 07:55:00 1992 John Gilmore (gnu at cygnus.com)
16794
16795 * configure.in: Ultrix is only a decstation if it's a MIPS.
16796
16797Fri Jan 31 21:54:51 1992 John Gilmore (gnu at cygnus.com)
16798
16799 * README: DOC.configure => cfg-paper.texi.
16800
16801Fri Jan 31 21:48:18 1992 Stu Grossman (grossman at cygnus.com)
16802
16803 * config.sub (near case $os): Don't convert newsos* to bsd!
16804
16805Fri Jan 31 02:27:32 1992 John Gilmore (gnu at cygnus.com)
16806
16807 * Makefile.in: Reinstall change from gdb-4.3 that reduces
16808 the number of copies of COPYING that go into the GDB tar file.
16809
16810Thu Jan 30 16:17:30 1992 Stu Grossman (grossman at cygnus.com)
16811
4bddf3ad 16812 * bfd/configure.in, gdb/config/mh-i386sco,
252b5132
RH
16813 gdb/config/mt-i386v32, gdb/configure.in, readline/configure.in:
16814 Fix SCO configuration stuff.
16815
16816Tue Jan 28 23:51:07 1992 Per Bothner (bothner at cygnus.com)
16817
16818 * Makefile.in: For libg++, make sure the -I pointing
16819 to the gcc directory goes *after* all the libg++-local -I flags.
16820 Also, move just-gcc dependency from just-libg++ to all-libg++.
16821
16822Tue Jan 28 12:56:24 1992 Stu Grossman (grossman at cygnus.com)
16823
16824 * configure: Change -x to -f to keep Ultrix /bin/test happy.
16825
16826Sat Jan 18 17:45:11 1992 Stu Grossman (grossman at cygnus.com)
16827
16828 * Makefile.in (make-gdb.tar.Z): Remove texinfo targets.
16829
16830Sat Jan 18 17:03:21 1992 Fred Fish (fnf at cygnus.com)
16831
16832 * config.sub: Add stratus configuration frags. Also
16833 submitted to FSF.
16834
16835Sat Jan 18 15:35:29 1992 Stu Grossman (grossman at cygnus.com)
16836
16837 * Makefile.in (DEV_SUPPORT): add configure.man.
16838
16839 * config.sub(Decode manufacturer-specific): add -none*.
16840
16841Fri Jan 17 17:58:05 1992 Stu Grossman (grossman at cygnus.com)
16842
16843 * Makefile.in: remove form feeds to make Sun's make happy.
16844 (DEVO_SUPPORT): DOC.configure => cfg-paper.texi.
16845
16846Sat Jan 4 16:11:44 1992 John Gilmore (gnu at cygnus.com)
16847
16848 * Makefile.in (AR_FLAGS): Make quieter.
16849
16850Thu Jan 2 22:57:12 1992 John Gilmore (gnu at cygnus.com)
16851
16852 * configure.in: Add libg++.
16853 * configure: When verbose, don't output the command line at each
16854 level; it will be unremarkably the same as the previous version,
16855 which will be the same as what the user typed.
16856
16857Fri Dec 27 16:26:47 1991 K. Richard Pixley (rich at cygnus.com)
16858
16859 * configure.in, Makefile.in: fix clean-info, add flex. add
16860 fileutils.
16861
16862 * configure: be less sensitive to spaces in Makefile.in. Do not
16863 look for sources in "..". Doing so breaks subdirectories that
16864 might have their own configure. If a subdir has it's own
16865 configure script, use it.
16866
16867Thu Dec 26 16:30:26 1991 K. Richard Pixley (rich at cygnus.com)
16868
16869 * cfg-paper.texi: some changes suggested by rms.
16870
16871Thu Dec 26 10:13:36 1991 Fred Fish (fnf at cygnus.com)
16872
16873 * config.sub: Merge in some small additions from the FSF version,
16874 taken from the gcc distribution, to bring the Cygnus and FSF
16875 versions into closer sync.
16876
16877Fri Dec 20 11:34:18 1991 Fred Fish (fnf at cygnus.com)
16878
16879 * configure.in: Changed svr4 references to sysv4.
16880
16881Thu Dec 19 15:54:29 1991 K. Richard Pixley (rich at cygnus.com)
16882
16883 * configure: added -V for version number option.
16884
16885Wed Dec 18 15:39:34 1991 K. Richard Pixley (rich at cygnus.com)
16886
16887 * DOC.configure, cfg-paper.texi: revised, updated, and texinfo'd.
16888 renamed from DOC.configure to cfg-paper.texi.
16889
16890Mon Dec 16 23:05:19 1991 K. Richard Pixley (rich at rtl.cygnus.com)
16891
16892 * configure, config.subr, config.sub: config.subr is now
16893 config.sub again.
16894
16895Fri Dec 13 01:17:06 1991 K. Richard Pixley (rich at cygnus.com)
16896
16897 * configure.texi: new file, in progress.
16898
16899 * Makefile.in: build info file and install the man page for
16900 configure.
16901
16902 * configure.man: new file, first cut.
16903
16904 * configure: find config.subr again now that configuration "none"
16905 has gone. removed all traces of the -ansi option. removed all
16906 traces of the -languages option.
16907
16908 * config.subr: resync from rms.
16909
d932cae7 169101991-12-11 K. Richard Pixley (rich at rtl.cygnus.com)
252b5132
RH
16911
16912 * configure, config.sub, config.subr: merge config.sub into
16913 config.subr, call the result config.subr, remove config.sub, use
16914 config.subr.
16915
16916 * Makefile.in: revised install for dir.info.
16917
d932cae7 169181991-12-10 K. Richard Pixley (rich at rtl.cygnus.com)
252b5132
RH
16919
16920 * configure.in: add decstation host makefile frag.
16921
16922 * Makefile.in: BISON now bison -y again. also install-gcc on
16923 install. clean-gdbm on clean. infodir belongs in datadir.
16924 Make directories for info install. Build dir.info here then
16925 install it.
16926
d932cae7 169271991-12-09 K. Richard Pixley (rich at rtl.cygnus.com)
252b5132
RH
16928
16929 * Makefile.in: fix for bad directory tests.
16930
d932cae7 169311991-12-07 K. Richard Pixley (rich at rtl.cygnus.com)
252b5132
RH
16932
16933 * configure: \{1,2\} appears to be a sysv'ism. Use a different
16934 regexp. -srcdir relative was being handled incorrectly.
16935
16936 * Makefile.in: unwrapped some for loops so that parallel makes
16937 work again and so one can focus one's attention on a particular
16938 package.
16939
d932cae7 169401991-12-06 K. Richard Pixley (rich at rtl.cygnus.com)
252b5132
RH
16941
16942 * configure: added PWD as a stand in for `pwd` (for speed). use
16943 elif wherever possible. make -srcdir work without -objdir.
16944 -objdir= commented out.
16945
d932cae7 169461991-12-05 K. Richard Pixley (rich at rtl.cygnus.com)
252b5132
RH
16947
16948 * configure: +options become --options. -subdirs commented out.
16949 added -host, -datadir. Renamed -destdir to -prefix. Comment in
16950 Makefile now at top of generated Makefile. Removed cvs log
16951 entries. added -srcdir. create .gdbinit only if there is one
16952 in ${srcdir}.
16953
16954 * Makefile.in: idestdir and ddestdir go away. Added copyrights
16955 and shift gpl to v2. Added ChangeLog if it didn't exist. docdir
16956 and mandir now keyed off datadir by default.
16957
d932cae7 169581991-11-22 K. Richard Pixley (rich at rtl.cygnus.com)
252b5132
RH
16959
16960 * Freshly created ChangeLog.
16961
16962\f
16963Local Variables:
16964mode: change-log
16965left-margin: 8
16966fill-column: 76
16967version-control: never
16968End: