12022-10-10 Nick Clifton <nickc@redhat.com> 2 3 * src-release.sh: Add "-r <date>" option to create reproducible 4 tarballs based upon a fixed timestamp of <date>. 5 * binutils/README-how-to-make-a-release: Add a line showing how to 6 use -r <date> when creating a binutils release. 7 82022-10-04 Nick Clifton <nickc@redhat.com> 9 10 * README-maintainer-mode: Add a minimum version of dejagnu 11 requirement. 12 132022-09-08 Nick Clifton <nickc@redhat.com> 14 15 * README-maintainer-mode: Update minimum version of gettext 16 required. 17 182022-07-08 Nick Clifton <nickc@redhat.com> 19 20 * 2.39 branch created. 21 222022-07-04 Nick Clifton <nickc@redhat.com> 23 24 * libiberty: Synchronize with GCC. Bring in: 25 2022-07-01 Nick Clifton <nickc@redhat.com> 26 27 PR demangler/105039 28 * rust-demangle.c (demangle_const): Add recursion limit. 29 30 2022-06-26 Simon Marchi <simon.marchi@efficios.com> 31 32 * configure.ac: Add AC_CONFIG_MACRO_DIRS call. 33 * configure: Re-generate. 34 352022-04-12 Nick Clifton <nickc@redhat.com> 36 37 * zlib: Rebase to the 1.2.12 release. 38 392022-04-08 Simon Marchi <simon.marchi@efficios.com> 40 41 * configure.ac: Add AC_SUBST(PKG_CONFIG_PATH). 42 * configure: Re-generate. 43 * Makefile.tpl (HOST_EXPORTS): Pass PKG_CONFIG_PATH. 44 (PKG_CONFIG_PATH): New. 45 * Makefile.in: Re-generate. 46 472022-03-15 Jose E. Marchesi <jose.marchesi@oracle.com> 48 49 * gprofng/src/gp-collect-app.cc (collect::check_args): Use 50 fallthrough comment instead of attribute. 51 522022-03-11 Vladimir Mezentsev <vladimir.mezentsev@oracle.com> 53 54 * Makefile.def: Add gprofng module. 55 * configure.ac: Add --enable-gprofng option. 56 * src-release.sh: Add gprofng. 57 * Makefile.in: Regenerate. 58 * configure: Regenerate. 59 * gprofng: New directory. 60 612022-01-22 Nick Clifton <nickc@redhat.com> 62 63 * 2.38 release branch created. 64 652022-01-17 Nick Clifton <nickc@redhat.com> 66 67 Update config.[guess|sub] from upstream: 68 69 2022-01-09 Idan Horowitz <idan.horowitz@gmail.com> 70 71 config.guess: recognize SerenityOS 72 * config.guess (*:SerenityOS:*:*): Recognize. 73 (timestamp): Update. 74 75 2022-01-03 Bernhard Voelker <mail@bernhard-voelker.de> 76 77 Fix GPLv3 license headers to use a comma instead of semicolon 78 See: https://www.gnu.org/licenses/gpl-3.0.html#howto 79 80 Update license headers automatically using the following script: 81 82 $ git grep -l 'Foundation; either version 3' \ 83 | xargs sed -i '/Foundation; either version 3/ s/n; e/n, e/' 84 85 * config.guess: Adjust via the above command. 86 (timestamp): Update. 87 * config.sub: Likewise. 88 * doc/config.guess.1: Regenerate. 89 * doc/config.sub.1: Likewise. 90 91 2022-01-01 Dmitry V. Levin <ldv@altlinux.org> 92 93 Update copyright years 94 * config.guess: Update copyright years. 95 * config.sub: Likewise. 96 97 2021-12-25 Dmitry V. Levin <ldv@altlinux.org> 98 99 config.sub: alias armh to armv7l 100 ALT uses armh as an alias for armv7l-alt-linux-gnueabihf since 2012. 101 102 * config.sub (armh-unknown|armh-alt): Set cpu, vendor, and basic_os. 103 (timestamp): Update. 104 105 2021-12-24 Dmitry V. Levin <ldv@altlinux.org> 106 107 config.sub: alias aarch64le to aarch64 108 Apparently, QNX reports aarch64 as aarch64le on little-endian machines. 109 110 * config.sub (aarch64le-*): Set cpu to aarch64. 111 (timestamp): Update. 112 113 2021-12-13 Dmitry V. Levin <ldv@altlinux.org> 114 115 config.sub: fix typo in timestamp 116 * config.sub: Fix timestamp. 117 118 2021-11-30 Andreas F. Borchert <github@andreas-borchert.de> 119 120 config.guess: x86_64-pc-solaris2.11 is not properly recognized 121 config.guess guesses Solaris 11 to run on a 32-bit platform 122 despite Solaris 11 no longer supporting any 32-bit platform. 123 124 See the following code at lines 434 to 445: 125 126 | SUN_ARCH=i386 127 | # If there is a compiler, see if it is configured for 64-bit objects. 128 | # Note that the Sun cc does not turn __LP64__ into 1 like gcc does. 129 | # This test works for both compilers. 130 | if test "$CC_FOR_BUILD" != no_compiler_found; then 131 | if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \ 132 | (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \ 133 | grep IS_64BIT_ARCH >/dev/null 134 | then 135 | SUN_ARCH=x86_64 136 | fi 137 | fi 138 139 If "cc" is installed, i.e. the Oracle Studio compiler, this one is 140 chosen for $CC_FOR_BUILD. This compiler, the gcc provided by Oracle 141 and also gcc bootstrapped from sources on that platform with a default 142 configuration will by default generate 32-bit binaries -- even on 143 a 64-bit platform. And __amd64 will not be defined for compilations 144 targeting a 32-bit platform. This is different from the corresponding 145 behaviour on GNU/Linux systems where the local platform is targeted by 146 default. 147 148 Thus, as long as you do not add "-m64" or if you have a custom-built 149 gcc which defaults to 64 bit, you will get 32-bit binaries on Solaris 150 despite living on a 64-bit platform. 151 152 * config.guess (i86pc:SunOS:5.*:* || i86xen:SunOS:5.*:*): Adapt the 153 test by adding the "-m64" flag. This will work properly for Solaris 154 10 as well (the last Solaris release that supported x86 32-bit 155 platforms). 156 157 2021-10-27 Jordi Sanfeliu <jordi@fibranet.cat> 158 159 Recognize Fiwix 160 $ make check 161 cd testsuite && bash config-guess.sh && rm uname 162 PASS: config.guess checks (137 tests) 163 cd testsuite && bash config-sub.sh 164 PASS: config.sub checks (882 tests) 165 PASS: config.sub idempotency checks (819 tests) 166 PASS: config.sub canonicalise each config.guess testcase (137 tests) 167 168 * config.guess (i*86:Fiwix:*:*): Recognize. 169 * config.sub (fiwix*): Likewise. 170 171 2021-10-18 Kinshuk Dua <kinshukdua@gmail.com> 172 173 config.sub: Fix typo in comment 174 Fixes: 5e531d391852a54e7fab2d8ff55625fca514b305 175 176 2021-08-14 Nick Bowler <nbowler@draconx.ca> 177 178 config.sub: work around command assignment bug in some shells 179 When combining variable assignments with a shell command, some older 180 shells (notably heirloom-sh and presumably also Solaris 10 /bin/sh) 181 have a bug which causes the assignment to alter the current execution 182 environment whenever the command is a shell built-in. For example: 183 184 % dash -c 'x=good; x=bad echo >/dev/null; echo $x' 185 good 186 187 % jsh -c 'x=good; x=bad echo >/dev/null; echo $x' 188 bad 189 190 The config.sub script contains a few commands of the form: 191 192 IFS=- read ... 193 194 which triggers this bug, causing the IFS assignment to persist for the 195 remainder of the script. This can cause misbehaviour in certain cases, 196 for example: 197 198 % jsh config.sub i386-linux-gnu 199 config.sub: test: unknown operator gnu 200 201 % jsh config.sub i386-gnu/linux 202 sed: can't read s|gnu/linux|gnu|: No such file or directory 203 Invalid configuration `i386-gnu/linux': OS `' not recognized 204 205 * config.sub: Save and restore IFS explicitly to avoid shell bugs. 206 * doc/config.sub.1: Regenerate. 207 208 2021-08-04 Jeremy Soller <jackpot51@gmail.com> 209 210 config.sub: add Linux Relibc Target 211 $ make check 212 cd testsuite && bash config-guess.sh && rm uname 213 PASS: config.guess checks (136 tests) 214 cd testsuite && bash config-sub.sh 215 PASS: config.sub checks (881 tests) 216 PASS: config.sub idempotency checks (818 tests) 217 PASS: config.sub canonicalise each config.guess testcase (136 tests) 218 219 * config.sub (relibc*): Recognize. 220 * doc/config.sub.1: Regenerate. 221 * testsuite/config-sub.data (x86_64-linux-relibc): New test. 222 223 2021-07-06 Stephanos Ioannidis <root@stephanos.io> 224 225 config.sub: add Zephyr RTOS support 226 This adds the Zephyr RTOS targets in preparation for implementing the 227 Zephyr RTOS-specific toolchain support. 228 229 $ make check 230 cd testsuite && bash config-guess.sh && rm uname 231 PASS: config.guess checks (136 tests) 232 cd testsuite && bash config-sub.sh 233 PASS: config.sub checks (880 tests) 234 PASS: config.sub idempotency checks (817 tests) 235 PASS: config.sub canonicalise each config.guess testcase (136 tests) 236 237 * config.sub (zephyr*): Recognize. 238 * doc/config.sub.1: Regenerate. 239 * testsuite/config-sub.data: Add testcases for *-zephyr. 240 241 2021-07-03 Ozkan Sezer <sezero@users.sourceforge.net> 242 243 config.sub: disable shellcheck SC2006 / SC2268 warnings 244 This is in line with the recent config.guess change in commit 245 12fcf67c9108f4c4b581eaa302088782f0ee40ea 246 247 * config.sub (shellcheck disable): Add SC2006,SC2268. 248 249 Suggested-by: Jacob Bachmeyer <jcb@gnu.org> 250 251 2021-07-03 Ozkan Sezer <sezero@users.sourceforge.net> 252 253 config.sub: normalize the quoting in the `echo FOO | sed ...` 254 Some cases quote the argument to echo and some do not. At runtime 255 it probably does not matter because the substituted values will never 256 contain whitespace, but quoting them all would make shellcheck more 257 useful. 258 259 * config.sub: Consistently quote the argument of echo. 260 * doc/config.sub.1: Regenerate. 261 262 Suggested-by: Jacob Bachmeyer <jcb@gnu.org> 263 264 2021-07-02 Ozkan Sezer <sezero@users.sourceforge.net> 265 266 config.sub: replace POSIX $( ) with classic ` ` throughout 267 This is in line with the recent config.guess change in commit 268 d70c4fa934de164178054c3a60aaa0024ed07c91. 269 270 The patch was generated using patch-6.gawk script introduced in that 271 commit. 272 273 * config.sub: Revert POSIX command substitutions to classic form. 274 275 2021-06-04 Vineet Gupta <Vineet.Gupta1@synopsys.com> 276 277 Recognize arc32 278 This is the 32-bit variant of ARCv3 ISA (which is not compatible with the 279 32-bit ARCv2 ISA) 280 281 | make check 282 | cd testsuite && bash config-guess.sh && rm uname 283 | PASS: config.guess checks (136 tests) 284 | cd testsuite && bash config-sub.sh 285 | PASS: config.sub checks (864 tests) 286 | PASS: config.sub idempotency checks (801 tests) 287 | PASS: config.sub canonicalise each config.guess testcase (136 tests) 288 289 * config.guess (arc32:Linux:*:*): Recognize. 290 * config.sub (arc32): Likewise. 291 292 2021-05-27 Jacob Bachmeyer <jcb@gnu.org> 293 294 Remove automatic patch generators 295 These tools have served their purposes and need not be kept outside of 296 the repository history any longer. This patch as a diff also collects 297 the contents of the various tools in one convenient place. 298 299 * patch-1.gawk: Remove. 300 * patch-3.gawk: Likewise. 301 * patch-6.gawk: Likewise. 302 303 2021-05-26 Jacob Bachmeyer <jcb@gnu.org> 304 305 config.guess: manual fixups after previous automatic patch 306 The tool could not handle command substitutions that span lines, but 307 fortunately there were only two such substitutions in the script. 308 309 The test for which universe is active on Pyramid is rewritten into a 310 case block because it was the only use of a command substitution as an 311 argument to the test command, which would require quoting. 312 313 * config.guess: Rewrite "if" for Pyramid systems to "case". 314 315 2021-05-26 Jacob Bachmeyer <jcb@gnu.org> 316 317 config.guess: replace POSIX $( ) with classic ` ` throughout 318 The previous replacement of backticks with POSIX command substitutions 319 was ill-considered and illogical: this script recognizes many archaic 320 machine types that probably never had POSIX shells, therefore it needs 321 to be able to run successfully under pre-POSIX shells. 322 323 This patch was generated using the included GNU Awk program. 324 325 * config.guess: Revert POSIX command substitutions to classic form. 326 * patch-6.gawk: Store the tool that produced the automated patch. 327 328 2021-05-26 Jacob Bachmeyer <jcb@gnu.org> 329 330 config.guess: manual fixup after previous automated patches 331 This patch provides the special handling for the GNU system. As these 332 were two small and unique edits, they were not included in the scripts. 333 334 This patch also cleans up other minor issues that must be addressed 335 before reverting to classic command substitutions and updates 336 "shellcheck" directives to account for changes in this script and the 337 change in "shellcheck" towards reporting individual portability issues. 338 339 2021-05-26 Jacob Bachmeyer <jcb@gnu.org> 340 341 config.guess: automatic fixups after previous automated patch 342 This patch was generated using the following command: 343 344 sed -i config.guess \ 345 -e '/="[^"]\+"\(-\|$\)/s/="\([^"([:space:])]\+\)"/=\1/' \ 346 -e '/="[^"]\+"[[:alnum:]]/s/="\$\([^([:space:])]\+\)"/=${\1}/' \ 347 -e \ 348 '/\$(echo[^|]\+|/s/\([^[:space:]]\)[[:space:]]*|[[:space:]]*sed/\1 | sed/g' 349 350 * config.guess: Remove unneeded quotes in other variable assignments, 351 standardize spacing for "echo ... | sed" substitutions. 352 353 2021-05-26 Jacob Bachmeyer <jcb@gnu.org> 354 355 config.guess: remove unneeded quotes and factor command substitutions 356 This is further cleanup and simplifies some constructs that can confuse 357 Emacs' syntax highlighting while generally reducing required quoting. 358 359 This patch was generated using the included GNU Awk program. 360 361 * config.guess: Remove unneeded variable quotes and factor out command 362 substitutions when setting GUESS. 363 * patch-3.gawk: Store the tool that produced the automated patch. 364 365 2021-05-25 Jacob Bachmeyer <jcb@gnu.org> 366 367 config.guess: manual fixups after previous automatic patch 368 * config.guess: Adjust a few "leftover" cases that the tool could not 369 easily recognize and fixes comment indentation in a few other special 370 cases. 371 372 2021-05-25 Jacob Bachmeyer <jcb@gnu.org> 373 374 config.guess: use intermediate variable with uname results 375 This will allow quoting to be significantly simplified in another 376 pass through the file. 377 378 This patch was generated using the included GNU Awk program. 379 380 * config.guess: Use GUESS variable to hold results of uname analysis. 381 * patch-1.gawk: Store the tool that produced the automated patch. 382 383 2021-05-25 Jacob Bachmeyer <jcb@gnu.org> 384 385 config.guess: introduce intermediate variable with uname results 386 This will allow quoting to be significantly simplified in another 387 pass through the file. 388 389 * config.guess: Introduce GUESS variable to hold results of uname analysis. 390 391 2021-05-24 Dmitry V. Levin <ldv@altlinux.org> 392 393 config.guess: fix shellcheck warning SC2154 394 While, according to Plan 9 documentation, the environment variable 395 $cputype is set to the name of the kernel's CPU's architecture, 396 shellcheck warns that cputype is referenced but not assigned. 397 Be on the safe side and do not use cputype if it is not defined 398 or empty. 399 400 * config.guess (*:Plan9:*:*): Fix shellcheck warning SC2154. 401 402 2021-05-24 Dmitry V. Levin <ldv@altlinux.org> 403 404 config.guess: remove redundant quotes in case commands 405 According to the GNU Autoconf Portable Shell Programming manual, 406 the Bourne shell does not systematically split variables and back-quoted 407 expressions, in particular on the right-hand side of assignments and in 408 the argument of 'case'. 409 410 The change is made automatically using the following command: 411 $ sed -E -i 's/(\<case )"(\$[^"]+)"( in\>)/\1\2\3/' config.guess 412 413 * config.guess: Simplify case commands by removing quotes around the 414 argument. 415 416 Suggested-by: Jacob Bachmeyer <jcb@gnu.org> 417 418 2021-05-24 Dmitry V. Levin <ldv@altlinux.org> 419 420 config.guess: simplify exit status workaround on alphaev67-dec-osf5.1 421 Commit 29865ea8a5622cdd80b7a69a0afa78004b4cd311 introduced an exit trap 422 reset before exiting to avoid a spurious non-zero exit status on 423 alphaev67-dec-osf5.1. Simplify that code a bit by moving the exit trap 424 reset around. 425 426 * config.guess (alpha:OSF1:*:*): Reset exit trap earlier. 427 * doc/config.guess.1: Regenerate. 428 4292021-10-29 Eli Zaretskii <eliz@gnu.org> 430 431 * gdb/doc/gdb.texinfo (Command Options): (Data): Document 432 '-memory-tag-violations'. Update the example. 433 4342021-09-28 Andrew Burgess <andrew.burgess@embecosm.com> 435 436 * src-release.sh (GDB_SUPPPORT_DIRS): Add libbacktrace. 437 4382021-09-27 Nick Alcock <nick.alcock@oracle.com> 439 440 PR libctf/27967 441 * libtool.m4 (LT_PATH_NM): Try BSDization flags with a user-provided 442 NM, if there is one. Run nm on itself, not on /dev/null, to avoid 443 errors from nms that refuse to work on non-regular files. Remove 444 other workarounds for this problem. Strip out blank lines from the 445 nm output. 446 4472021-09-27 Nick Alcock <nick.alcock@oracle.com> 448 449 PR libctf/27967 450 * libtool.m4 (lt_cv_sys_global_symbol_pipe): Augment symcode for 451 Solaris 11. 452 4532021-07-03 Nick Clifton <nickc@redhat.com> 454 455 * 2.37 release branch created. 456 4572021-07-03 Nick Clifton <nickc@redhat.com> 458 459 * libiberty: Sync with gcc. Bring in: 460 2021-06-30 Gerald Pfeifer <gerald@pfeifer.com> 461 462 * make-temp-file.c (usrtmp): Remove. 463 (choose_tmpdir): Remove use of usrtmp. 464 465 2021-06-28 Indu Bhagat <indu.bhagat@oracle.com> 466 467 * simple-object.c (handle_lto_debug_sections): Copy over .BTF section. 468 469 2021-06-28 Indu Bhagat <indu.bhagat@oracle.com> 470 David Faust <david.faust@oracle.com> 471 Jose E. Marchesi <jose.marchesi@oracle.com> 472 Weimin Pan <weimin.pan@oracle.com> 473 474 * simple-object.c (handle_lto_debug_sections): Copy over .ctf 475 sections. 476 477 2021-06-05 John David Anglin <danglin@gcc.gnu.org> 478 479 PR target/100734 480 * configure.ac: Use libiberty snprintf and vsnprintf on 481 hppa*-*-hpux*. 482 * configure: Regenerate. 483 484 2021-05-06 Tom Tromey <tom@tromey.com> 485 486 * hashtab.c (htab_eq_string): New function. 487 488 2021-05-04 Eric Botcazou <ebotcazou@adacore.com> 489 490 * configure.ac: Make test for variables more robust. 491 * configure: Regenerate. 492 493 2021-05-03 H.J. Lu <hjl.tools@gmail.com> 494 495 PR bootstrap/99703 496 * configure: Regenerated. 497 498 2021-04-21 Andreas Schwab <schwab@linux-m68k.org> 499 500 PR demangler/100177 501 * rust-demangle.c (demangle_const_char): Properly print the 502 character value. 503 504 2021-03-31 Patrick Palka <ppalka@redhat.com> 505 506 PR c++/88115 507 * cp-demangle.c (d_dump, d_make_comp, d_expression_1) 508 (d_count_templates_scopes): Handle DEMANGLE_COMPONENT_VENDOR_EXPR. 509 (d_print_comp_inner): Likewise. 510 <case DEMANGLE_COMPONENT_EXTENDED_OPERATOR>: Revert r11-4926 511 change. 512 <case DEMANGLE_COMPONENT_UNARY>: Likewise. 513 * testsuite/demangle-expected: Adjust __alignof__ tests. 514 515 2021-03-16 Nick Clifton <nickc@redhat.com> 516 517 * sha1.c (sha1_process_bytes): Use memmove in place of memcpy. 518 519 2021-02-20 Mike Frysinger <vapier@gentoo.org> 520 521 * Makefile.in (ACLOCAL, ACLOCAL_AMFLAGS, $(srcdir)/aclocal.m4): Define. 522 (configure_deps): Rename to ... 523 (aclocal_deps): ... this. Replace aclocal.m4 with acinclude.m4. 524 ($(srcdir)/configure): Replace $(configure_deps) with 525 $(srcdir)/aclocal.m4. 526 * aclocal.m4: Move libiberty macros to acinclude.m4, then regenerate. 527 * acinclude.m4: New file. 528 * configure: Regenerate. 529 530 2021-02-19 Ayush Mittal <ayush.m@samsung.com> 531 532 * argv.c (expandargv): free allocated buffer if read fails. 533 534 2021-02-01 Martin Sebor <msebor@redhat.com> 535 536 * dyn-string.c (dyn_string_insert_cstr): Use memcpy instead of strncpy 537 to avoid -Wstringop-truncation. 538 5392021-05-29 Mike Frysinger <vapier@gentoo.org> 540 541 * configure.ac: Add gnulib to configdirs for sim. 542 * configure: Regenerate. 543 5442021-05-24 Maciej W. Rozycki <macro@orcam.me.uk> 545 546 * MAINTAINERS: Update path to readline config.{sub,guess} files. 547 5482021-05-24 Maciej W. Rozycki <macro@orcam.me.uk> 549 550 * config.guess: Import from upstream. 551 * config.sub: Likewise. 552 5532021-05-18 Mike Frysinger <vapier@gentoo.org> 554 555 * Makefile.def: Add configure-sim dependency on all-gnulib. 556 * Makefile.in: Regenerated. 557 5582021-05-04 Nick Clifton <nickc@redhat.com> 559 560 * configure.ac (AC_PROG_CC): Replace with AC_PROG_CC_C99. 561 * configure: Regenerate. 562 5632021-03-18 Nick Alcock <nick.alcock@oracle.com> 564 565 PR libctf/27482 566 * Makefile.def: Add install-bfd dependencies for install-libctf and 567 install-ld, and install-strip-bfd dependencies for 568 install-strip-libctf and install-strip-ld; move the install-ld 569 dependency on install-libctf to join it. 570 * Makefile.in: Regenerated. 571 5722021-03-12 Mike Frysinger <vapier@gentoo.org> 573 574 * Makefile.def: Remove all-sim dependency on configure-gdb. 575 * Makefile.in: Regenerated. 576 5772021-02-28 H.J. Lu <hongjiu.lu@intel.com> 578 579 PR binutils/26766 580 * Makefile.tpl (PGO_BUILD_TRAINING_FLAGS_TO_PASS): Add 581 PGO_BUILD_TRAINING=yes. 582 (PGO_BUILD_TRAINING_MFLAGS): New. 583 (all): Pass $(PGO_BUILD_TRAINING_MFLAGS) to the PGO build. 584 5852021-02-09 Alan Modra <amodra@gmail.com> 586 587 * configure.ac: Delete arm*-*-symbianelf* entry. 588 * configure: Regenerate. 589 5902021-01-26 Nick Alcock <nick.alcock@oracle.com> 591 592 * Makefile.def: Add install-libctf dependency to install-ld. 593 * Makefile.in: Regenerated. 594 5952021-01-12 Mike Frysinger <vapier@gentoo.org> 596 597 * src-release.sh (do_proto_toplev): Rewrite indentation. 598 5992021-01-11 H.J. Lu <hongjiu.lu@intel.com> 600 601 PR binutils/26766 602 * configure.ac: 603 * configure: Regenerated. 604 6052021-01-11 H.J. Lu <hongjiu.lu@intel.com> 606 607 PR ld/27173 608 * configure: Regenerated. 609 * libtool.m4 (_LT_CMD_OLD_ARCHIVE): Check if AR works with 610 --plugin and rc before enabling --plugin. 611 6122021-01-09 H.J. Lu <hongjiu.lu@intel.com> 613 614 PR binutils/26766 615 * Makefile.tpl (BUILD_CFLAGS): New. 616 (CFLAGS): Append $(BUILD_CFLAGS). 617 (CXXFLAGS): Likewise. 618 (PGO_BUILD_GEN_FLAGS_TO_PASS): New. 619 (PGO_BUILD_TRAINING_CFLAGS): Likewise. 620 (PGO_BUILD_TRAINING_CXXFLAGS): Likewise. 621 (PGO_BUILD_TRAINING_FLAGS_TO_PASS): Likewise. 622 (PGO_BUILD_TRAINING_MFLAGS): Likewise. 623 (PGO_BUILD_USE_FLAGS_TO_PASS): Likewise. 624 (PGO-TRAINING-TARGETS): Likewise. 625 (PGO_BUILD_TRAINING): Likewise. 626 (all): Add '+' to the command line for recursive make. Support 627 the PGO build. 628 * configure.ac: Add --enable-pgo-build[=lto]. 629 AC_SUBST PGO_BUILD_GEN_CFLAGS, PGO_BUILD_USE_CFLAGS and 630 PGO_BUILD_LTO_CFLAGS. Enable the PGO build in Makefile. 631 * Makefile.in: Regenerated. 632 * configure: Likewise. 633 6342021-01-09 H.J. Lu <hongjiu.lu@intel.com> 635 636 * Makefile.tpl (AR): Add @AR_PLUGIN_OPTION@ 637 (RANLIB): Add @RANLIB_PLUGIN_OPTION@. 638 * configure.ac: Include config/gcc-plugin.m4. 639 AC_SUBST AR_PLUGIN_OPTION and RANLIB_PLUGIN_OPTION. 640 * libtool.m4 (_LT_CMD_OLD_ARCHIVE): Pass --plugin to AR and 641 RANLIB if possible. 642 * Makefile.in: Regenerated. 643 * configure: Likewise. 644 6452021-01-09 Nick Clifton <nickc@redhat.com> 646 647 * 2.36 release branch crated. 648 6492021-01-07 Samuel Thibault <samuel.thibault@gnu.org> 650 651 * libtool.m4: Match gnu* along with other GNU systems. 652 6532021-01-07 Alan Modra <amodra@gmail.com> 654 655 * config.sub: Accept OS of eabi* and gnueabi*. 656 6572021-01-05 Nick Alcock <nick.alcock@oracle.com> 658 659 * Makefile.def (libctf): No longer no_check. Checking depends on 660 all-ld. 661 * Makefile.in: Regenerated. 662 6632021-01-05 Nick Clifton <nickc@redhat.com> 664 665 * libiberty: Sync with gcc. Bring in: 666 2021-01-04 Martin Liska <mliska@suse.cz> 667 668 * strverscmp.c: Convert to utf8 from iso8859. 669 670 2020-12-22 Jason Merrill <jason@redhat.com> 671 672 PR c++/67343 673 * cp-demangle.h (struct d_info): Add unresolved_name_state. 674 * cp-demangle.c (d_prefix): Add subst parm. 675 (d_nested_name): Pass it. 676 (d_unresolved_name): Split out from... 677 (d_expression_1): ...here. 678 (d_demangle_callback): Maybe retry with old sr mangling. 679 * testsuite/demangle-expected: Add test. 680 681 2020-12-21 Jason Merrill <jason@redhat.com> 682 683 * cp-demangle.c (d_expression_1): Recognize qualified-id 684 on RHS of dt/pt. 685 * testsuite/demangle-expected: Add test. 686 687 2020-12-21 Jason Merrill <jason@redhat.com> 688 689 * cp-demangle.c (d_unqualified_name): Clear is_expression. 690 * testsuite/demangle-expected: Add tests. 691 692 2020-11-25 Matthew Malcomson <matthew.malcomson@arm.com> 693 694 * configure: Regenerate. 695 * configure.ac: Avoid using sanitizer. 696 697 2020-11-13 Eduard-Mihai Burtescu <eddyb@lyken.rs> 698 699 * rust-demangle.c (struct rust_demangler): Add 700 skipping_printing and bound_lifetime_depth fields. 701 (eat): Add (v0-only). 702 (parse_integer_62): Add (v0-only). 703 (parse_opt_integer_62): Add (v0-only). 704 (parse_disambiguator): Add (v0-only). 705 (struct rust_mangled_ident): Add punycode{,_len} fields. 706 (parse_ident): Support v0 identifiers. 707 (print_str): Respect skipping_printing. 708 (print_uint64): Add (v0-only). 709 (print_uint64_hex): Add (v0-only). 710 (print_ident): Respect skipping_printing, 711 Support v0 identifiers. 712 (print_lifetime_from_index): Add (v0-only). 713 (demangle_binder): Add (v0-only). 714 (demangle_path): Add (v0-only). 715 (demangle_generic_arg): Add (v0-only). 716 (demangle_type): Add (v0-only). 717 (demangle_path_maybe_open_generics): Add (v0-only). 718 (demangle_dyn_trait): Add (v0-only). 719 (demangle_const): Add (v0-only). 720 (demangle_const_uint): Add (v0-only). 721 (basic_type): Add (v0-only). 722 (rust_demangle_callback): Support v0 symbols. 723 * testsuite/rust-demangle-expected: Add v0 testcases. 724 725 2020-11-13 Seija Kijin <doremylover456@gmail.com> 726 727 * strstr.c (strstr): Make implementation ANSI/POSIX compliant. 728 729 2020-11-11 Patrick Palka <ppalka@redhat.com> 730 731 PR c++/88115 732 * cp-demangle.c (d_print_comp_inner) 733 <case DEMANGLE_COMPONENT_EXTENDED_OPERATOR>: Don't print the 734 "operator " prefix for __alignof__. 735 <case DEMANGLE_COMPONENT_UNARY>: Always print parens around the 736 operand of __alignof__. 737 * testsuite/demangle-expected: Test demangling for __alignof__. 738 739 2020-11-09 Christophe Lyon <christophe.lyon@linaro.org> 740 741 * pex-win32.c (pex_win32_exec_child): Initialize orig_err. 742 743 2020-10-06 Martin Liska <mliska@suse.cz> 744 745 PR lto/97290 746 * simple-object-elf.c (simple_object_elf_copy_lto_debug_sections): 747 Use sh_link of a .symtab_shndx section. 748 7492021-01-05 Alan Modra <amodra@gmail.com> 750 751 * config.guess: Import from upstream. 752 * config.sub: Likewise. 753 7542020-12-16 Martin Liska <mliska@suse.cz> 755 Tom de Vries <tdevries@suse.de> 756 757 * gdb/debuginfod-support.c (struct user_data): Remove has_printed 758 field. Add meter field. 759 (progressfn): Print progress using meter. 760 7612020-12-02 Enze Li <lienze2010@hotmail.com> 762 763 * .gitignore: Add gnu global outputs. 764 7652020-12-02 Simon Marchi <simon.marchi@polymtl.ca> 766 767 * .gitignore: Sync with gcc. 768 7692020-10-26 Andreas Rammhold <andreas@rammhold.de> 770 771 * src-release.sh: Use sha256sum instead of md5sum. 772 7732020-10-14 Andrew Burgess <andrew.burgess@embecosm.com> 774 775 * Makefile.in: Rebuild. 776 * Makefile.def: Make distclean-gnulib depend on distclean-gdb and 777 distclean-gdbserver. 778 7792020-07-24 Aaron Merey <amerey@redhat.com> 780 781 * configure: Rebuild. 782 * configure.ac: Remove AC_DEBUGINFOD. 783 7842020-07-04 Nick Clifton <nickc@redhat.com> 785 786 Binutils 2.35 branch created. 787 7882020-04-21 Stephen Casner <casner@acm.org> 789 790 PR 25830 791 * configure.ac (noconfigdirs): Exclude gdb & gprof for pdp11. 792 * configure: Rebuild. 793 7942020-03-12 Tom Tromey <tom@tromey.com> 795 796 * Makefile.in: Rebuild. 797 * Makefile.def (gdbserver): Depend on gdbsupport. 798 7992020-03-12 Tom Tromey <tom@tromey.com> 800 801 * Makefile.in: Rebuild. 802 * Makefile.def (gdbsupport): Don't depend on bfd. 803 8042020-03-12 Tom Tromey <tom@tromey.com> 805 806 * Makefile.in: Rebuild. 807 * Makefile.def (gdbsupport): Depend on intl. 808 8092020-02-17 Tom Tromey <tom@tromey.com> 810 811 * configure: Rebuild. 812 * configure.ac (configdirs): Add gnulib and gdbsupport when building 813 gdbserver. 814 8152020-02-14 Tom Tromey <tom@tromey.com> 816 817 * Makefile.in: Rebuild. 818 * Makefile.def: Make gdbserver require gnulib and libiberty. 819 8202020-02-07 Tom Tromey <tom@tromey.com> 821 Pedro Alves <palves@redhat.com> 822 823 * src-release.sh (GDB_SUPPORT_DIRS): Add gdbserver. 824 * gdbserver: New directory, moved from gdb/gdbserver. 825 * configure.ac (host_tools): Add gdbserver. 826 Only build gdbserver on certain systems. 827 * Makefile.in, configure: Rebuild. 828 * Makefile.def (host_modules, dependencies): Add gdbserver. 829 * MAINTAINERS: Add gdbserver. 830 8312020-01-28 Sergio Durigan Junior <sergiodj@redhat.com> 832 833 * src-release.sh (getver): Look for gdbsupport's 834 create-version.sh script at the current directory if tool is 835 "gdb". 836 8372020-01-19 Simon Marchi <simon.marchi@polymtl.ca> 838 839 * remote-sim.c (gdbsim_target::wait): Return 840 sim_data->remote_sim_ptid instead of inferior_ptid. 841 8422020-01-18 Nick Clifton <nickc@redhat.com> 843 844 Binutils 2.34 branch created. 845 8462020-01-18 Nick Clifton <nickc@redhat.com> 847 848 Synchronize top level configure files with master version: 849 850 2020-01-01 Ben Elliston <bje@gnu.org> 851 852 * config.guess: Update copyright years. 853 * config.sub: Likewise. 854 855 2019-12-21 Ben Elliston <bje@gnu.org> 856 857 * config.guess (set_cc_for_build): Prevent multiple calls by 858 checking if $tmp is already set. We can't check CC_FOR_BUILD as 859 the user may set it externally. Thanks to Torbjörn Granlund for 860 the bug report. 861 862 2019-12-21 Torbjörn Granlund <tg@gmplib.org> 863 864 * config.guess (alpha:Linux:*:*): Guard against missing 865 /proc/cpuinfo by redirecting standard error to /dev/null. 866 867 2019-09-12 Daniel Bittman <danielbittman1@gmail.com> 868 869 * config.guess (*:Twizzler:*:*): New. 870 * config.sub (-twizzler*): New. 871 872 2019-07-24 Ben Elliston <bje@gnu.org> 873 874 * config.guess (mips:OSF1:*.*): Whitespace cleanup. 875 876 2019-06-30 Ben Elliston <bje@gnu.org> 877 878 * config.sub (case $os): Match nsk* and powerunix. Don't later 879 match nsk* and set os=nsk which removes the OS version number. 880 881 2019-06-30 Ben Elliston <bje@gnu.org> 882 883 * config.sub: Recognise os108*. 884 885 2019-06-26 Ben Elliston <bje@gnu.org> 886 887 * config.sub (hp300): Set $os to hpux. 888 889 2019-06-26 Ben Elliston <bje@gnu.org> 890 891 * config.sub (vsta): Move into alphabetical order. 892 893 2019-06-10 Ben Elliston <bje@gnu.org> 894 895 * config.guess (*:OS108:*:*): Recognise new OS. 896 897 2019-05-28 Ben Elliston <bje@gnu.org> 898 899 * config.guess (*:Darwin:*:*): Run xcode-select to determine if a 900 system compiler is installed. If not, do not run set_cc_for_build, 901 as the default cc will open a dialog box asking to install 902 Xcode. If no C compiler is available, guess based on uname -p and 903 uname -m. 904 905 2019-05-28 Ben Elliston <bje@gnu.org> 906 907 * config.guess (*:Darwin:*:*): Simplify UNAME_PROCESSOR. 908 9092020-01-17 Simon Marchi <simon.marchi@efficios.com> 910 911 * Makefile.def: Add dependencies of all-gdbsupport on all-bfd. 912 * Makefile.in: Re-generate. 913 9142020-01-14 Tom Tromey <tom@tromey.com> 915 916 * src-release.sh (GDB_SUPPORT_DIRS): Add gdbsupport. 917 * MAINTAINERS: Add gdbsupport. 918 * configure: Rebuild. 919 * configure.ac (configdirs): Add gdbsupport. 920 * gdbsupport: New directory, move from gdb/gdbsupport. 921 * Makefile.def (host_modules, dependencies): Add gnulib. 922 * Makefile.in: Rebuild. 923 9242020-01-09 Aaron Merey <amerey@redhat.com> 925 926 * config/debuginfod.m4: New file. Add macro AC_DEBUGINFOD. Adds 927 new configure option --with-debuginfod. 928 * configure: Regenerate. 929 * configure.ac: Call AC_DEBUGINFOD. 930 9312019-12-26 Christian Biesinger <cbiesinger@google.com> 932 933 * .gitignore: Add perf.data and perf.data.old. 934 9352019-10-17 Sergio Durigan Junior <sergiodj@redhat.com> 936 937 * src-release.sh (GDB_SUPPORT_DIRS): Add libctf. 938 9392019-10-17 Alan Modra <amodra@gmail.com> 940 941 PR 29 942 * src-release.sh (getver): Replace "head -1" with "head -n 1". 943 9442019-07-30 Nick Alcock <nick.alcock@oracle.com> 945 946 * Makefile.def (host_modules): libctf is no longer no_install. 947 * Makefile.in: Regenerated. 948 9492019-07-13 Nick Alcock <nick.alcock@oracle.com> 950 951 * Makefile.def (dependencies): all-ld depends on all-libctf. 952 * Makefile.in: Regenerated. 953 9542019-09-09 Phil Blundell <pb@pbcl.net> 955 956 binutils 2.33 branch created 957 9582019-08-19 Tom Tromey <tom@tromey.com> 959 960 * configure: Rebuild. 961 * configure.ac: Add --with-static-standard-libraries. 962 9632019-08-09 Nick Clifton <nickc@redhat.com> 964 965 * libiberty: Sync with gcc. Bring in: 966 2019-08-08 Martin Liska <mliska@suse.cz> 967 968 PR bootstrap/91352 969 * lrealpath.c (is_valid_fd): New function. 970 971 2019-07-24 Martin Liska <mliska@suse.cz> 972 973 PR lto/91228 974 * simple-object-elf.c (simple_object_elf_copy_lto_debug_sections): 975 Find first '\0' starting from gnu_lto + 1. 976 977 2019-07-12 Ren Kimura <rkx1209dev@gmail.com> 978 979 * simple-object-elf.c (simple_object_elf_match): Check zero value shstrndx. 980 This fixes a Bug 90924. 981 982 2019-07-22 Martin Liska <mliska@suse.cz> 983 984 * simple-object-elf.c (simple_object_elf_copy_lto_debug_sections): 985 Do not search for gnu_lto_v1, but search for first '\0'. 986 987 2019-07-18 Eduard-Mihai Burtescu <eddyb@lyken.rs> 988 989 * cplus-dem.c: Include rust-demangle.h. 990 * rust-demangle.c: Include rust-demangle.h. 991 * rust-demangle.h: New file. 992 993 2019-05-31 Michael Forney <mforney@mforney.org> 994 995 * cp-demangle.c: Don't define CP_DYNAMIC_ARRAYS if __STDC_NO_VLA__ 996 is non-zero. 997 998 2019-04-30 Ben L <bobsayshilol@live.co.uk> 999 1000 * d-demangle.c (dlang_parse_assocarray): Correctly handle error result. 1001 * testsuite/d-demangle-expected: Add testcase. 1002 1003 * d-demangle.c (dlang_parse_tuple): Correctly handle error result. 1004 * testsuite/d-demangle-expected: Add testcase. 1005 1006 * d-demangle.c (dlang_parse_structlit): Correctly handle error result. 1007 * testsuite/d-demangle-expected: Add testcase. 1008 1009 * d-demangle.c (dlang_parse_arrayliteral): Correctly handle error result. 1010 * testsuite/d-demangle-expected: Add testcase. 1011 1012 * d-demangle.c (dlang_parse_integer): Fix stack underflow. 1013 * testsuite/d-demangle-expected: Add testcase. 1014 1015 * cp-demangle (d_print_comp_inner): Guard against a NULL 'typed_name'. 1016 * testsuite/demangle-expected: Add testcase. 1017 1018 * cp-demangle.c (d_encoding): Guard against NULL return values from 1019 d_right (dc). 1020 * testsuite/demangle-expected: Add testcase. 1021 1022 2019-04-29 Ben L <bobsayshilol@live.co.uk> 1023 1024 * cp-demangle.c (d_expression_1): Don't peek ahead unless the current 1025 char is valid. 1026 * testsuite/demangle-expected: Add testcase. 1027 1028 2019-04-10 Nick Clifton <nickc@redhat.com> 1029 1030 PR 89394 1031 * cp-demangle.c (cplus_demangle_fill_name): Reject negative 1032 lengths. 1033 (d_count_templates_scopes): Replace num_templates and num_scopes 1034 parameters with a struct d_print_info pointer parameter. Adjust 1035 body of the function accordingly. Add recursion counter and check 1036 that the recursion limit is not reached. 1037 (d_print_init): Pass dpi parameter to d_count_templates_scopes. 1038 Reset recursion counter afterwards, unless the recursion limit was 1039 reached. 1040 10412019-07-13 Joel Brobecker <brobecker@adacore.com> 1042 1043 * src-release (getver): If $tool/gdbsupport/create-version.sh 1044 exists, use that to determine the version number. 1045 10462019-06-21 Andreas Schwab <schwab@linux-m68k.org> 1047 1048 * src-release.sh (GDB_SUPPORT_DIRS): Add gnulib. 1049 10502019-06-14 Tom Tromey <tom@tromey.com> 1051 1052 * MAINTAINERS: Add gnulib. 1053 * gnulib: New directory, move from gdb/gnulib. 1054 * configure.ac (host_libs): Add gnulib. 1055 * configure: Rebuild. 1056 * Makefile.def (host_modules, dependencies): Add gnulib. 1057 * Makefile.in: Rebuild. 1058 10592019-06-03 Nick Clifton <nickc@redhat.com> 1060 1061 Revert: 1062 2019-05-29 Nick Clifton <nickc@redhat.com> 1063 1064 * configure.ac (noconfigdirs): Add libctf if the target does not use 1065 the ELF file format. 1066 * configure: Regenerate. 1067 10682019-05-29 Nick Clifton <nickc@redhat.com> 1069 1070 * src-release.sh (do_proto_toplev): Add libctf to list of 1071 directories that can be disabled. 1072 10732019-05-29 Nick Clifton <nickc@redhat.com> 1074 1075 * configure.ac (noconfigdirs): Add libctf if the target does not use 1076 the ELF file format. 1077 * configure: Regenerate. 1078 10792019-05-28 Nick Alcock <nick.alcock@oracle.com> 1080 1081 * Makefile.def (dependencies): configure-libctf depends on all-bfd 1082 and all its deps. 1083 * Makefile.in: Regenerated. 1084 10852019-05-28 Nick Alcock <nick.alcock@oracle.com> 1086 1087 * MAINTAINERS: Add libctf. 1088 10892019-05-28 Nick Alcock <nick.alcock@oracle.com> 1090 1091 * Makefile.def (host_modules): Add libctf. 1092 * Makefile.def (dependencies): Likewise. 1093 libctf depends on zlib, libiberty, and bfd. 1094 * Makefile.in: Regenerated. 1095 * configure.ac (host_libs): Add libctf. 1096 * configure: Regenerated. 1097 10982019-05-23 Jose E. Marchesi <jose.marchesi@oracle.com> 1099 1100 * config.guess: Synchronize with config project master sources. 1101 * config.sub: Likewise. 1102 * readline/support/config.guess: Likewise. 1103 * readline/support/config.sub: Likewise. 1104 11052019-04-10 Nick Clifton <nickc@redhat.com> 1106 1107 * libiberty: Sync with gcc. Bring in: 1108 2019-04-10 Nick Clifton <nickc@redhat.com> 1109 1110 PR 89394 1111 * cp-demangle.c (cplus_demangle_fill_name): Reject negative 1112 lengths. 1113 (d_count_templates_scopes): Replace num_templates and num_scopes 1114 parameters with a struct d_print_info pointer parameter. Adjust 1115 body of the function accordingly. Add recursion counter and check 1116 that the recursion limit is not reached. 1117 (d_print_init): Pass dpi parameter to d_count_templates_scopes. 1118 Reset recursion counter afterwards, unless the recursion limit was 1119 reached. 1120 11212018-06-24 Nick Clifton <nickc@redhat.com> 1122 1123 2.32 branch created. 1124 11252019-01-14 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> 1126 1127 Merge from GCC: 1128 PR target/88535 1129 * config.guess: Import upstream version 2019-01-03. 1130 * config.sub: Import upstream version 2019-01-01. 1131 11322019-01-10 Nick Clifton <nickc@redhat.com> 1133 1134 * libiberty: Sync with gcc. Bring in: 1135 2019-01-09 Sandra Loosemore <sandra@codesourcery.com> 1136 1137 PR other/16615 1138 1139 * cp-demangle.c: Mechanically replace "can not" with "cannot". 1140 * floatformat.c: Likewise. 1141 * strerror.c: Likewise. 1142 1143 2018-12-22 Jason Merrill <jason@redhat.com> 1144 1145 Remove support for demangling GCC 2.x era mangling schemes. 1146 * cplus-dem.c: Remove cplus_mangle_opname, cplus_demangle_opname, 1147 internal_cplus_demangle, and all subroutines. 1148 (libiberty_demanglers): Remove entries for ancient GNU (pre-3.0), 1149 Lucid, ARM, HP, and EDG demangling styles. 1150 (cplus_demangle): Remove 'work' variable. Don't call 1151 internal_cplus_demangle. 1152 11532019-01-03 Дилян Палаузов <dilyan.palauzov@aegee.org> 1154 1155 * configure.ac: Don't configure readline if --with-system-readline is 1156 used. 1157 * configure: Re-generate. 1158 11592018-10-31 Joseph Myers <joseph@codesourcery.com> 1160 1161 Merge from GCC: 1162 PR bootstrap/82856 1163 * multilib.am: New file. From automake. 1164 11652018-09-12 Sergio Durigan Junior <sergiodj@redhat.com> 1166 1167 * src-release.sh (GDB_SUPPORT_DIRS): Add "contrib". 1168 11692018-07-16 Nick Clifton <nickc@redhat.com> 1170 1171 * src-release.sh (DEVO_SUPPORT): Add test-driver and ar-lib. 1172 11732018-07-06 Sebastian Huber <sebastian.huber@embedded-brains.de> 1174 1175 * config.sub: Sync with upstream version 2018-07-03. 1176 11772018-07-05 Sebastian Huber <sebastian.huber@embedded-brains.de> 1178 1179 * config.guess: Sync with upstream version 2018-06-26. 1180 * config.sub: Sync with upstream version 2018-07-02. 1181 11822018-06-29 Alexandre Oliva <oliva@adacore.com> 1183 1184 * configure.ac: Introduce support for @unless/@endunless. 1185 * Makefile.tpl (dep-kind): Rewrite with cond; return 1186 postbootstrap in some cases. 1187 (make-postboot-dep, postboot-targets): New. 1188 (dependencies): Do not output postbootstrap dependencies at 1189 first. Output non-target ones changed for configure to depend 1190 on stage_last @if gcc-bootstrap, and the original deps @unless 1191 gcc-bootstrap. 1192 * configure.in, Makefile.in: Rebuilt. 1193 11942018-06-24 Nick Clifton <nickc@redhat.com> 1195 1196 * configure: Regenerate. 1197 11982018-06-19 Simon Marchi <simon.marchi@ericsson.com> 1199 1200 * libtool.m4: Use AC_LANG_SOURCE. 1201 * configure.ac: Remove AC_PREREQ, use AC_LANG_SOURCE. 1202 * README-maintainer-mode: Update version requirements. 1203 * ar-lib: New file. 1204 * test-driver: New file. 1205 * configure: Re-generate. 1206 12072018-06-18 Eric Botcazou <ebotcazou@adacore.com> 1208 1209 * Makefile.def (fortran): Add check-target-libgomp-fortran. 1210 * Makefile.tpl (check-target-libgomp-fortran): New phony target. 1211 * Makefile.in: Regenerate. 1212 1213 * configure: Regenerate. 1214 12152018-06-18 Simon Marchi <simon.marchi@ericsson.com> 1216 1217 * configure.ac: Sync with GCC, remove MPX-related things. 1218 12192018-05-01 Nick Clifton <nickc@redhat.com> 1220 1221 * config.guess: Synchronize with config project master sources. 1222 * config.sub: Likewise. 1223 12242018-05-01 Francois H. Theron <francois.theron@netronome.com> 1225 1226 * configure.ac: Added "nfp" target. 1227 * configure: Regenerate. 1228 12292018-02-13 Maciej W. Rozycki <macro@mips.com> 1230 1231 * configure.ac <wasm32-*-*> (noconfigdirs): Add `ld'. 1232 * configure: Regenerate. 1233 12342018-01-30 Nick Clifton <nickc@redhat.com> 1235 1236 * src-release.sh (do_proto_toplev): Add patterns for more junk files 1237 to delete before creating the tarball. 1238 12392018-01-29 Nick Clifton <nickc@redhat.com> 1240 1241 * src-release.sh (do_proto_toplev): Strip patch remnant files from 1242 the sources before creating the tarball. 1243 12442018-01-13 Nick Clifton <nickc@redhat.com> 1245 1246 * src-release.sh: Update copyright notice. Change reference to devo 1247 to be a reference to root. 1248 12492018-01-10 Nick Clifton <nickc@redhat.com> 1250 1251 * config-ml.in: Sync with gcc sources. 1252 * config.guess: Likewise. 1253 * config.sub: Likewise. 1254 * configure.ac: Likewise. 1255 * configure: Regenerate. 1256 12572017-12-14 Nick Clifton <nickc@redhat.com> 1258 1259 * COPYING.LIBGLOSS: Update address of FSF in copyright notice. 1260 12612017-12-12 Stafford Horne <shorne@gmail.com> 1262 1263 * configure.ac: Remove logic adding gdb to noconfigsdirs for or1k. 1264 * configure: Regenerate. 1265 12662017-09-15 Nick Clifton <nickc@redhat.com> 1267 1268 * src-release.sh (LZIPPROG): New define. Provides the name of the 1269 lzip program. 1270 (do_lz): New function. Compresses a tarball using the lzip 1271 program. 1272 (do_compress): Add support for lzip compression. 1273 (usage): Mention -l option. 1274 (build_release): Support -l option to invoke lzip compression. 1275 12762017-09-15 Alan Modra <amodra@gmail.com> 1277 1278 * src-release.sh (do_proto_toplev): Revert last patch. Enable or 1279 disable binutils, gas, gdb, gold, gprof, ld, libdecnumber, readline, 1280 and sim depending on $tool and $support_files. Echo configure line. 1281 12822017-09-14 Matt Rice <ratmice@gmail.com> 1283 1284 * src-release.sh (do_proto_toplev): Enable gold during release process. 1285 12862017-04-13 Andrew Jenner <andrew@codesourcery.com> 1287 1288 * config.sub: Sync with master version in config project. 1289 12902017-04-03 Andrew Jenner <andrew@codesourcery.com> 1291 1292 * config.sub: Handle ia16 in $basic_machine. 1293 1294 bfd/ 1295 * config.bfd: Handle ia16. 1296 1297 gas/ 1298 * configure.tgt: Handle ia16. 1299 1300 ld/ 1301 * configure.tgt: Handle ia16. 1302 13032017-03-22 Nick Clifton <nickc@redhat.com> 1304 1305 * config.sub: Sync with master version in config project. 1306 * config.guess: Likewise. 1307 13082017-01-23 Nick Clifton <nickc@redhat.com> 1309 1310 * configure.ac: Update year in copyright notice. 1311 Sync from FSF GCC mainline, bringing in the following patches. 1312 * Makefile.def: Likewise. 1313 * Makefile.tpl: Likewise. 1314 * configure: Regenerate. 1315 * Makefile.in: Regenerate. 1316 1317 2016-12-21 Jakub Jelinek <jakub@redhat.com> 1318 1319 * configure.ac: Don't bootstrap libmpx unless --with-build-config 1320 includes bootstrap-mpx. 1321 1322 2016-12-01 Matthias Klose <doko@ubuntu.com> 1323 1324 * configure.ac: Don't use pkg-config to check for bdw-gc. 1325 1326 2016-11-30 Matthias Klose <doko@ubuntu.com> 1327 1328 * Makefile.def: Remove reference to boehm-gc target module. 1329 * configure.ac: Include pkg.m4, check for --with-target-bdw-gc 1330 options and for the bdw-gc pkg-config module. 1331 1332 2016-11-15 Matthias Klose <doko@ubuntu.com> 1333 1334 * config-ml.in: Remove references to GCJ. 1335 * configure.ac: Likewise. 1336 1337 2016-09-30 Jakub Jelinek <jakub@redhat.com> 1338 1339 * configure.ac: Add target-libffi to target_libraries. 1340 Readd libgcj target disablings, modified to only target-libffi. 1341 Readd target addition of go to unsupported languages. 1342 1343 2016-09-30 Andrew Haley <aph@redhat.com> 1344 1345 * Makefile.def: Remove libjava. 1346 * Makefile.tpl: Likewise. 1347 * configure.ac: Likewise. 1348 1349 2016-09-26 Anton Kolesov <Anton.Kolesov@synopsys.com> 1350 1351 * configure.ac: Disable "sim" directory for arc*-*-*. 1352 1353 2016-09-12 Maciej W. Rozycki <macro@imgtec.com> 1354 1355 * configure.ac: Check for the minimum in-tree MPFR version 1356 handled. 1357 13582016-12-31 Alan Modra <amodra@gmail.com> 1359 1360 * config.sub: Import from upstream. 1361 13622016-12-08 Alan Modra <amodra@gmail.com> 1363 1364 * configure: Regenerate. 1365 13662016-12-02 Josh Conner <joshconner@google.com> 1367 1368 * configure.ac: Add fuchsia to targets that use ELF. 1369 * configure: Regenerated. 1370 13712016-11-07 Doug Evans <dje@google.com> 1372 1373 * config.sub: Sync with upstream version 2016-11-03. 1374 git://git.sv.gnu.org/config.git 1375 * config.guess: Sync with upstream version 2016-10-02. 1376 13772016-09-27 Simon Marchi <simon.marchi@polymtl.ca> 1378 1379 * .gitignore: Add archives and make stamps. 1380 13812016-07-20 Yan-Ting Lin <currygt52@gmail.com> 1382 1383 * configure.ac (nds32*-*-*): Remove entry to enable gdb. 1384 * configure: Regenerated. 1385 13862016-06-28 Walter Lee <walt@tilera.com> 1387 1388 * configure.ac (tilepro-*-*): Add gdb to noconfigdirs. 1389 * configure: Regenerate. 1390 13912016-05-28 Alan Modra <amodra@gmail.com> 1392 1393 * Makefile.tpl (configure): Depend on m4 files included. 1394 * Makefile.in: Regenerate. 1395 13962016-05-27 Nick Clifton <nickc@redhat.com> 1397 1398 * config.guess (Alpha OSF1): Fix typo introduced during the most 1399 recent synchronization update. 1400 14012016-05-23 Nick Clifton <nickc@redhat.com> 1402 1403 * Import these patches from the gcc mainline: 1404 1405 2016-05-16 Jakub Sejdak <jakub.sejdak@phoesys.com> 1406 1407 * config.guess: Import version 2016-04-02 (newest). 1408 * config.sub: Import version 2016-05-10 (newest). 1409 14102016-04-19 Nick Clifton <nickc@redhat.com> 1411 1412 * Import this patch from the GCC mainline: 1413 1414 2016-04-13 Segher Boessenkool <segher@kernel.crashing.org> 1415 1416 PR bootstrap/70173 1417 * Makefile.tpl (local-distclean): Delete the libcc1, gnattools, 1418 and gotools directories. Delete the stage_final file. 1419 * Makefile.in: Regenerate. 1420 14212016-03-17 Cary Coutant <ccoutant@gmail.com> 1422 1423 * configure.ac: Add mips and s390 to the gold target check. 1424 * configure: Regenerate. 1425 14262016-02-10 Nick Clifton <nickc@redhat.com> 1427 1428 Import these patches from the GCC mainline: 1429 1430 2016-01-12 Andris Pavenis <andris.pavenis@iki.fi> 1431 1432 * configure.ac: Enable LTO for DJGPP 1433 * configure: Regenerate 1434 1435 2016-01-24 Mikhail Maltsev <maltsevm@gmail.com> 1436 1437 PR bootstrap/69329 1438 * Makefile.tpl (BASE_FLAGS_TO_PASS): Add LSAN_OPTIONS. 1439 * Makefile.in: Regenerate. 1440 1441 2016-01-25 Aditya Kumar <aditya.k7@samsung.com> 1442 Sebastian Pop <s.pop@samsung.com> 1443 1444 * Makefile.in: Regenerate. 1445 * Makefile.tpl: Export ISLVER. 1446 * configure: Regenerate. 1447 * config/isl.m4: Detect isl-0.15. 1448 1449 2016-01-29 Sebastian Pop <s.pop@samsung.com> 1450 1451 * config/isl.m4: Add comments about isl-0.16. 1452 * configure: Regenerate. 1453 14542016-01-12 H.J. Lu <hongjiu.lu@intel.com> 1455 1456 Sync with GCC 1457 2015-11-26 David Edelsohn <dje.gcc@gmail.com> 1458 1459 * m4/libtool.m4 (export_symbols_cmds) [AIX]: Add global TLS "L" 1460 symbols. 1461 1462 2016-01-12 Bernd Edlinger <bernd.edlinger@hotmail.de> 1463 1464 PR bootstrap/69134 1465 * Makefile.def (mpfr): Disable assembler. 1466 * Makefile.in: Regenerate. 1467 14682016-01-11 Nick Clifton <nickc@redhat.com> 1469 1470 Import the following changes from the GCC mainline: 1471 1472 2015-11-13 Tsvetkova Alexandra <aleksandra.tsvetkova@intel.com> 1473 1474 * configure.ac: Enable libmpx by default. 1475 * configure: Regenerated. 1476 1477 2015-11-19 Martin Liska <mliska@suse.cz> 1478 1479 * .gitignore: Add .clang-format to ignored files. 1480 * Makefile.tpl: Add clang-format. 1481 * Makefile.in: Regenerate. 1482 1483 2015-12-01 Andreas Tobler <andreast@gcc.gnu.org> 1484 1485 PR libffi/65726 1486 * Makefile.def (lang_env_dependencies): Make libffi depend 1487 on cxx. 1488 * Makefile.in: Regenerate. 1489 1490 2015-12-02 Ian Lance Taylor <iant@google.com> 1491 1492 PR go/66147 1493 * Makefile.tpl (HOST_EXPORTS): Add XGCC_FLAGS_FOR_TARGET. 1494 * Makefile.in: Regenerate. 1495 1496 2015-12-17 Nathan Sidwell <nathan@acm.org> 1497 1498 * config/isl.m4 (ISL_CHECK_VERSION): Add gmp libs. 1499 * configure: Regenerate. 1500 1501 2015-12-17 Sebastian Pop <s.pop@samsung.com> 1502 1503 * Makefile.in: Replace ISL with isl. 1504 * Makefile.tpl: Same. 1505 * config/isl.m4: Same. 1506 * configure.ac: Same. 1507 * contrib/download_prerequisites: Same. 1508 * configure: Regenerate. 1509 1510 2016-01-01 Ben Elliston <bje@gnu.org> 1511 1512 * config.guess: Import version 2016-01-01. 1513 * config.sub: Likewise. 1514 15152015-11-20 Tristan Gingold <gingold@adacore.com> 1516 1517 * configure.ac: Add aarch64-*-darwin* and arm-*-darwin*. 1518 * configure: Regenerate. 1519 15202015-10-21 Nick Clifton <nickc@redhat.com> 1521 1522 PR gas/19109 1523 * configure.ac: Note the 'none' is an acceptable argument to 1524 --enable-compressed-debug-sections. 1525 * configure: Regenerate. 1526 15272015-10-20 H.J. Lu <hongjiu.lu@intel.com> 1528 1529 PR gas/19109 1530 * configure.ac: Add 1531 --enable-compressed-debug-sections={all,gas,gold,ld}. 1532 * configure: Regenerated. 1533 15342015-09-30 Nick Clifton <nickc@redhat.com> 1535 1536 Import the following patches from the GCC mainline: 1537 1538 2015-08-23 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org> 1539 1540 PR libfortran/54572 1541 * Makefile.def: Make libgfortran depend on libbacktrace. 1542 * Makefile.in: Regenerate. 1543 1544 2015-08-12 Tom de Vries <tom@codesourcery.com> 1545 1546 PR other/67092 1547 PR other/67098 1548 * configure.ac: Remove --with_host_libstdcxx support. 1549 * configure: Regenerate. 1550 1551 2015-08-10 Thomas Schwinge <thomas@codesourcery.com> 1552 Jakub Jelinek <jakub@redhat.com> 1553 1554 * configure.ac (noconfigdirs): Don't add "target-libgomp" for target 1555 nvptx*-*-*. 1556 * configure: Regenerate. 1557 15582015-08-07 H.J. Lu <hongjiu.lu@intel.com> 1559 1560 Sync with GCC 1561 2015-07-28 Ben Elliston <bje@gnu.org> 1562 1563 * config.sub, config.guess: Import from upstream. 1564 15652015-08-06 Yaakov Selkowitz <yselkowi@redhat.com> 1566 1567 * Makefile.def (libiconv): Define bootstrap=true. 1568 Mark pdf/html/info as missing. 1569 (configure-gcc): Depend on all-libiconv. 1570 (all-gcc): Ditto. 1571 (configure-libcpp): Ditto. 1572 (all-libcpp): Ditto. 1573 (configure-intl): Ditto. 1574 (all-intl): Ditto. 1575 * Makefile.in: Regenerate. 1576 15772015-07-27 H.J. Lu <hongjiu.lu@intel.com> 1578 1579 Sync with GCC 1580 2015-07-24 Michael Darling <darlingm@gmail.com> 1581 1582 PR other/66259 1583 * config-ml.in: Reflects renaming of configure.in to configure.ac 1584 * configure: Likewise 1585 * configure.ac: Likewise 1586 15872015-07-14 H.J. Lu <hongjiu.lu@intel.com> 1588 1589 * Makefile.in: Regenerated. 1590 1591 Sync with GCC 1592 2015-05-21 Jason Merrill <jason@redhat.com> 1593 1594 * Makefile.tpl: Update comments. 1595 1596 2015-04-22 Bernhard Reutner-Fischer <aldot@gcc.gnu.org> 1597 1598 * Makefile.tpl: Remove surplus whitespace throughout. 1599 1600 2015-03-25 Martin Liska <mliska@suse.cz> 1601 Yury Gribov <y.gribov@samsung.com> 1602 1603 * Makefile.tpl: Fix ln source location for vimrc file. 1604 16052015-07-14 H.J. Lu <hongjiu.lu@intel.com> 1606 1607 Sync with GCC 1608 2015-05-16 James Bowman <james.bowman@ftdichip.com> 1609 1610 * configure.ac: FT32 target added. 1611 * configure: Regenerate. 1612 16132015-07-14 H.J. Lu <hongjiu.lu@intel.com> 1614 1615 Sync with GCC 1616 2015-06-02 Jason Merrill <jason@redhat.com> 1617 1618 PR bootstrap/66319 1619 * configure.ac: Use -std=gnu++98. 1620 1621 2015-05-28 Mike Frysinger <vapier@gentoo.org> 1622 1623 * configure.ac (--vtable-verify): Use AS_HELP_STRING for help. 1624 * configure: Regenerate. 1625 1626 2015-05-11 Paulo Matos <paulo@matos-sorge.com> 1627 1628 * configure.ac: Fix typo. 1629 * configure: Regenerate. 1630 1631 2015-05-03 Matthias Klose <doko@ubuntu.com> 1632 1633 * configure.ac: Match $host configured with triplets. 1634 * configure: Regenerate. 1635 1636 2015-04-17 Jakub Jelinek <jakub@redhat.com> 1637 1638 PR bootstrap/62077 1639 * configure.ac (--enable-stage1-checking): Default to 1640 release,misc,gimple,rtlflag,tree,types if --disable-checking 1641 or --enable-checking is not specified and DEV-PHASE is not 1642 experimental. 1643 * configure: Regenerated. 1644 1645 2015-03-27 Uros Bizjak <ubizjak@gmail.com> 1646 1647 Install back PR target/47230 fix (Revert the revert). 1648 16492015-06-30 H.J. Lu <hongjiu.lu@intel.com> 1650 1651 * configure.ac (ospace_frag): Enable for i?86*-*-elfiamcu 1652 target. 1653 * configure: Regenerate. 1654 16552015-05-13 John David Anglin <dave.anglin@bell.net> 1656 1657 * configure.ac: Disable configuration of GDB for HPUX targets. 1658 * configure: Regenerate. 1659 16602015-05-01 H.J. Lu <hongjiu.lu@intel.com> 1661 1662 PR ld/18355 1663 * Makefile.def: Add extra_configure_flags to host zlib. 1664 * configure.ac (extra_host_zlib_configure_flags): New. Set 1665 to --enable-host-shared When bfd is to be built as shared 1666 library. AC_SUBST. 1667 * Makefile.in: Regenerated. 1668 16692015-04-15 Mike Frysinger <vapier@gentoo.org> 1670 Hans-Peter Nilsson <hp@axis.com> 1671 1672 Adjust src-release.sh for sim using the gdb create-version.sh. 1673 * src-release.sh (tar_compress): If there's a fifth parameter, 1674 use that in the getver call instead of $tool. 1675 (sim_release): Pass gdb as fifth parameter to tar_compress. 1676 (SIM_SUPPORT_DIRS): Add gdb/common/create-version.sh. 1677 16782015-04-14 Max Ostapenko <m.ostapenko@partner.samsung.com> 1679 1680 * Makefile.tpl (EXTRA_HOST_EXPORTS): New variables. 1681 (EXTRA_BOOTSTRAP_FLAGS): Likewise. 1682 (check-[+module+]): Add EXTRA_HOST_EXPORTS and EXTRA_BOOTSTRAP_FLAGS. 1683 * Makefile.in: Regenerate. 1684 16852015-04-01 H.J. Lu <hongjiu.lu@intel.com> 1686 1687 * configure.ac: Add --with-system-zlib. 1688 * configure: Regenerated. 1689 16902015-03-31 H.J. Lu <hongjiu.lu@intel.com> 1691 1692 * src-release.sh: Don't configure with --with-target-subdir=. 1693 --disable-multilib. 1694 16952015-03-31 H.J. Lu <hongjiu.lu@intel.com> 1696 1697 * src-release.sh (DEVO_SUPPORT): Replace src-release with 1698 src-release.sh. 1699 17002015-03-30 Ed Schouten <ed@nuxi.nl> 1701 1702 * config.sub: Update from upstream, to 2015-03-04 version. 1703 * config.guess: Likewise. 1704 17052015-03-30 H.J. Lu <hongjiu.lu@intel.com> 1706 1707 * Makefile.def (dependencies): Add all-zlib to all-bfd. 1708 * Makefile.in: Regenerated. 1709 17102015-03-28 H.J. Lu <hongjiu.lu@intel.com> 1711 1712 * src-release.sh (do_proto_toplev): Configure with --target 1713 --with-target-subdir and --disable-multilib. 1714 (BINUTILS_SUPPORT_DIRS): Add zlib. 1715 (GAS_SUPPORT_DIRS): Likewise. 1716 (GDB_SUPPORT_DIRS): Likewise. 1717 (SIM_SUPPORT_DIRS): Likewise. 1718 17192015-03-17 H.J. Lu <hongjiu.lu@intel.com> 1720 1721 * configure.ac (target_configdirs): Exclude target-zlib if 1722 target-libjava isn't built. 1723 * configure: Regenerated. 1724 17252015-03-17 H.J. Lu <hongjiu.lu@intel.com> 1726 1727 Sync with GCC 1728 2014-06-13 Thomas Schwinge <thomas@codesourcery.com> 1729 1730 * config-ml.in: Robustify ac_configure_args parsing. 1731 17322015-03-16 H.J. Lu <hongjiu.lu@intel.com> 1733 1734 * Makefile.def: Updated from GCC trunk. 1735 * Makefile.tpl: Likewise. 1736 * configure.ac: Likewise. 1737 * Makefile.in: Regenerated. 1738 * configure: Likewise. 1739 17402015-01-28 James Bowman <james.bowman@ftdichip.com> 1741 1742 * configure.ac: Add FT32 support. 1743 * configure: Regenerate. 1744 17452015-01-12 Anthony Green <green@moxielogic.com> 1746 1747 * configure.ac: Don't disable gprof for moxie. 1748 * configure: Rebuild. 1749 17502015-01-03 Andrew Pinski <apinski@cavium.com> 1751 1752 * Makefile.def (flags_to_pass): Pass OBJCOPY_FOR_TARGET also. 1753 * Makefile.tpl (HOST_EXPORTS): Add OBJCOPY_FOR_TARGET. 1754 (BASE_TARGET_EXPORTS): Add OBJCOPY. 1755 (OBJCOPY_FOR_TARGET): New variable. 1756 (EXTRA_TARGET_FLAGS): Add OBJCOPY. 1757 * Makefile.in: Regenerate. 1758 * configure.ac: Check for already installed target objcopy. 1759 Also GCC_TARGET_TOOL on objcopy. 1760 * configure: Regenerate. 1761 17622015-01-02 Hans-Peter Nilsson <hp@bitrange.com> 1763 1764 * config.sub: Update from upstream, to 2015-01-01 version. 1765 * config.guess: Ditto. 1766 17672014-12-06 Eric Botcazou <ebotcazou@adacore.com> 1768 1769 * config.sub: Update from upstream config repo. 1770 17712014-11-24 H.J. Lu <hongjiu.lu@intel.com> 1772 1773 * libtool.m4: Updated from GCC trunk. 1774 17752014-11-16 Jan-Benedict Glaw <jbglaw@lug-owl.de> 1776 1777 * config.guess: Update from upstream config repo. 1778 * config.sub: Ditto. 1779 17802014-11-16 Jan-Benedict Glaw <jbglaw@lug-owl.de> 1781 1782 * move-if-change: Update from upstream gnulib. 1783 17842014-11-16 Jan-Benedict Glaw <jbglaw@lug-owl.de> 1785 1786 * compile: Sync with upstream Automake. 1787 * depcomp: Ditto. 1788 * install-sh: Ditto. 1789 * missing: Ditto. 1790 * mkinstalldirs: Ditto. 1791 * ylwrap: Ditto. 1792 17932014-10-15 Tristan Gingold <gingold@adacore.com> 1794 1795 * src-release.sh (do_proto_toplev): Configure with --target. 1796 17972014-10-03 Jing Yu <jingyu@google.com> 1798 1799 * configure.ac: Add aarch64 to list of targets that support gold. 1800 * configure: Regenerate. 1801 18022014-09-12 Andrew Bennett <andrew.bennett@imgtec.com> 1803 1804 * configure.ac: Add mips*-img-elf* target triple. 1805 * configure: Regenerate. 1806 18072014-09-06 Kuan-Lin Chen <kuanlinchentw@gmail.com> 1808 * configure: Disable gdb for nds32*-*-* until supported. 1809 * configure.ac: Disable gdb for nds32*-*-* until supported. 1810 18112014-09-05 Joel Brobecker <brobecker@adacore.com> 1812 1813 * configure: Regenerate. 1814 18152014-08-27 Will Newton <will.newton@linaro.org> 1816 1817 * src-release.sh: New file. 1818 * src-release: Remove file. 1819 18202014-07-27 Joel Sherrill <joel.sherrill@oarcorp.com> 1821 1822 GDB not supported for or1k*-*-rtems* 1823 * configure.ac (or1k*-*-rtems*): gdb not supported. The ordering 1824 of the stanzas results in this not being caught by or1k*-*-* later. 1825 * configure. Regenerated. 1826 18272014-07-25 Samuel Bronson <naesten@gmail.com> 1828 1829 * .gitattributes: New file for use with git-merge-changelog. 1830 18312014-07-21 Joel Sherrill <joel.sherrill@oarcorp.com> 1832 1833 Disable gdb for or1k*-*-* until supported 1834 * configure.ac (or1k*-*-*): Disable gdb. 1835 * configure: Regenerated. 1836 18372014-05-14 Sandra Loosemore <sandra@codesourcery.com> 1838 1839 * configure.ac (target_makefile_frag): Set for nios2-*-elf*. 1840 * configure: Regenerated. 1841 18422014-03-26 Jakub Jelinek <jakub@redhat.com> 1843 1844 PR sanitizer/56781 1845 * Makefile.def: Set bootstrap=true; for host fixincludes. 1846 * configure.ac: Don't bootstrap host fixincludes unless 1847 --with-build-config=bootstrap-{a,ub}san. 1848 * Makefile.in: Regenerated. 1849 * configure: Regenerated. 1850 18512014-03-21 Jakub Jelinek <jakub@redhat.com> 1852 1853 * configure.ac: Move BUILD_CONFIG set up earlier. Add 1854 --enable-vtable-verify option parsing. Don't add 1855 target-libsanitizer to bootstrap_target_libs unless 1856 --with-build-config=bootstrap-asan or 1857 --with-build-config=bootstrap-ubsan. Don't add target-libvtv 1858 to bootstrap_target_libs unless --enable-vtable-verify. 1859 * configure: Regenerated. 1860 18612014-03-07 Jakub Jelinek <jakub@redhat.com> 1862 1863 PR bootstrap/58572 1864 * Makefile.tpl (POSTSTAGE1_CXX_EXPORT): Use -isystem instead of 1865 -I for libstdc++-v3 includes if $(LEAN). 1866 * Makefile.in: Regenerated. 1867 18682014-02-24 Walter Lee <walt@tilera.com> 1869 1870 * configure.ac (tilepro-*-*) Change to tilepro*-*-*. 1871 (tilegx-*-*): Change to tilegx*-*-*. 1872 * configure: Regenerate. 1873 18742014-05-01 Richard Sandiford <rdsandiford@googlemail.com> 1875 1876 * config.sub, config.guess: Import from upstream. 1877 18782014-04-04 Eric Botcazou <ebotcazou@adacore.com> 1879 1880 PR bootstrap/60620 1881 * Makefile.def (dependencies): Make gnattools depend on libstdc++-v3. 1882 * Makefile.in: Regenerate. 1883 18842014-03-28 Yaakov Selkowitz <yselkowitz@users.sourceforge.net> 1885 1886 * Makefile.def (dependencies): Make all-ld depend on all-binutils 1887 for WINDRES_FOR_TARGET in default-manifest.o rule. 1888 * Makefile.in: Regenerate. 1889 18902014-02-04 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> 1891 1892 PR target/59788 1893 * ltmain.sh (opt_duplicate_compiler_generated_deps): Enable on 1894 *solaris2*. 1895 18962013-12-19 Keven Boell <keven.boell@intel.com> 1897 1898 * cp-namespace.c (cp_lookup_nested_symbol): Enable 1899 nested lookups for fortran modules. 1900 * dwarf2read.c (read_module): Add fortran module to 1901 the symbol table. 1902 (add_partial_symbol, add_partial_module): Add fortran 1903 module to the partial symbol table. 1904 (new_symbol_full): Create full symbol for fortran module. 1905 * f-exp.y (yylex): Add new module domain to be parsed. 1906 * symtab.h: New domain for fortran modules. 1907 19082013-12-19 Keven Boell <keven.boell@intel.com> 1909 1910 * f-exp.y (yylex): Add domain array to enable lookup 1911 in multiple domains. Loop over lookup domains and try 1912 to find requested symbol. Add STRUCT_DOMAIN to lookup 1913 domains to be able to query for user defined types. 1914 19152013-12-13 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org> 1916 1917 * configure.ac: Add user-friendly check for native x86_64-linux 1918 multilibs. 1919 * configure: Regenerate. 1920 19212013-11-23 Alan Modra <amodra@gmail.com> 1922 1923 * config.sub, config.guess: Import from upstream. 1924 19252013-11-07 Thomas Schwinge <thomas@codesourcery.com> 1926 1927 * Makefile.in: Regenerate. 1928 1929 * Makefile.tpl: Fix typo. 1930 * Makefile.in: Regenerate partially. 1931 19322013-11-04 Balaji V. Iyer <balaji.v.iyer@intel.com> 1933 1934 * configure.ac: Added libcilkrts to noconfig list when C++ is not 1935 supported. 1936 * configure: Regenerated. 1937 19382013-10-30 Jason Merrill <jason@redhat.com> 1939 1940 * Makefile.tpl (STAGE1_CONFIGURE_FLAGS): Pass 1941 --disable-build-format-warnings. 1942 19432013-10-29 Balaji V. Iyer <balaji.v.iyer@intel.com> 1944 1945 * Makefile.def: Add libcilkrts to target_modules. Make libcilkrts 1946 depend on libstdc++ and libgcc. 1947 * configure: Regenerate. 1948 * configure.ac: Added libcilkrts to target binaries. Also, restrict 1949 libcilkrts for POSIX and i*86, and x86_64 architectures. 1950 * Makefile.in: Added libcilkrts related fields to support building it. 1951 19522013-10-26 Jeff Law <law@redhat.com> 1953 1954 * Makefile.def (target_modules): Remove libmudflap 1955 (languages): Remove check-target-libmudflap). 1956 * Makefile.in: Rebuilt. 1957 * Makefile.tpl (check-target-libmudflap-c++): Remove. 1958 * configure.ac (target_libraries): Remove target-libmudflap. 1959 Remove checks which disabled libmudflap on some systems. 1960 * configure: Rebuilt. 1961 * libmudflap: Directory removed. 1962 19632013-10-16 Jan-Benedict Glaw <jbglaw@lug-owl.de> 1964 1965 * configure.ac: Update from GCC. 1966 * configure: Regenerate. 1967 19682013-10-15 Hans-Peter Nilsson <hp@axis.com> 1969 1970 * src-release (do-proto-toplevel): Support subdir-path-prefixed 1971 files in SUPPORT_FILES. 1972 (SIM_SUPPORT_DIRS): New variable. 1973 (sim.tar.bz2): New rule. 1974 19752013-10-08 Jan-Benedict Glaw <jbglaw@lug-owl.de> 1976 1977 * configure.ac: Update from GCC. 1978 * configure: Regenerate. 1979 19802013-10-01 Jeff Johnston <jjohnstn@redhat.com> 1981 1982 * COPYING.NEWLIB: Update with new copyright. 1983 19842013-09-21 Jan-Benedict Glaw <jbglaw@lug-owl.de> 1985 1986 * configure.ac: Update from GCC. 1987 * configure: Regenerate. 1988 19892013-09-20 Alan Modra <amodra@gmail.com> 1990 1991 * libtool.m4 (_LT_ENABLE_LOCK <ld -m flags>): Remove non-canonical 1992 ppc host match. Support little-endian powerpc linux hosts. 1993 19942013-08-16 Joel Brobecker <brobecker@adacore.com> 1995 1996 * src-release (VER): When using $(TOOL)/common/create-version.sh, 1997 strip the "-cvs" suffix from the version number if present. 1998 19992013-08-12 Jan-Benedict Glaw <jbglaw@lug-owl.de> 2000 2001 * configure.ac: Sync with GCC repo. 2002 * Makefile.def: Ditto. 2003 * configure: Regenerate. 2004 * Makefile.in: Ditto. 2005 20062013-07-22 Joel Brobecker <brobecker@adacore.com> 2007 2008 * src-release (VER): Use $(TOOL)/common/create-version.sh 2009 if it exists. 2010 20112013-06-22 Richard Sandiford <rdsandiford@googlemail.com> 2012 2013 * configure.ac (mips*-*-bsd*, mips*-*-ultrix*, mips*-*-osf*) 2014 (mips*-*-ecoff*, mips*-*-pe*, mips*-*-irix* [v4 and earlier]) 2015 (mips*-*-lnews*, mips*-*-riscos*): Add gas and ld to noconfigdirs. 2016 * configure: Regenerate. 2017 20182013-06-01 George Thomas <george.thomas@atmel.com> 2019 2020 * include/opcode/avr.h: Rename AVR_ISA_XCH to AVR_ISA_RMW. Remove 2021 from AVR_ISA_XMEGA and add new AVR_ISA_XMEGAU 2022 20232013-05-06 Sandra Loosemore <sandra@codesourcery.com> 2024 2025 * COPYING.NEWLIB: Add Altera Corporation copyright. 2026 20272013-04-29 Jan-Benedict Glaw <jbglaw@lug-owl.de> 2028 2029 * config.guess: Update from config repo. 2030 * config.sub: Ditto. 2031 20322013-04-22 Jan-Benedict Glaw <jbglaw@lug-owl.de> 2033 2034 * Makefile.def: Sync with GCC. 2035 * Makefile.in: Regenerate. 2036 20372013-04-22 Jan-Benedict Glaw <jbglaw@lug-owl.de> 2038 2039 * configure.ac: Sync with GCC. 2040 * configure: Regenerate. 2041 20422013-03-22 Mike Frysinger <vapier@gentoo.org> 2043 2044 * src-release (VER): Change bfd/configure.in sed to use the new 2045 `bfd/configure --version` output. 2046 20472013-02-15 Yufeng Zhang <yufeng.zhang@arm.com> 2048 2049 * configure.ac: Sync with GCC repo. 2050 * configure: Ditto. 2051 20522013-02-05 Ian Lance Taylor <iant@google.com> 2053 2054 PR go/55969 2055 * configure.ac: Disable libgo on some systems where it does not 2056 work. 2057 * configure: Rebuild. 2058 20592013-02-05 Alan Modra <amodra@gmail.com> 2060 2061 * configure: Regenerate after syncing config/. 2062 20632013-01-15 Jan-Benedict Glaw <jbglaw@lug-owl.de> 2064 2065 * configure.ac: Sync with GCC repo. 2066 * configure: Ditto. 2067 * Makefile.def: Ditto. 2068 * Makefile.in: Ditto. 2069 20702013-01-11 Joel Brobecker <brobecker@adacore.com> 2071 2072 Sync with GCC, merge: 2073 2074 2013-01-09 Jason Merrill <jason@redhat.com> 2075 2076 * .gitignore: Import from gdb repository. 2077 20782013-01-11 Jan-Benedict Glaw <jbglaw@lug-owl.de> 2079 2080 * config.sub: Update from config repo. 2081 20822013-01-11 Eric Botcazou <ebotcazou@adacore.com> 2083 2084 * Makefile.tpl (BOOT_ADAFLAGS): Remove -gnata. 2085 * Makefile.in: Regenerate. 2086 20872013-01-09 H.J. Lu <hongjiu.lu@intel.com> 2088 2089 * Makefile.def (configure-gcc): Depend on all-gmp. 2090 (all-gcc): Remove dependency on all-gmp. 2091 * Makefile.in: Regenerated. 2092 20932013-01-08 Jan-Benedict Glaw <jbglaw@lug-owl.de> 2094 2095 * config.guess: Update from config repo. 2096 * config.sub: Ditto. 2097 20982013-01-07 Jeff Johnston <jjohnstn@redhat.com> 2099 2100 * COPYING.LIBGLOSS: Remove license for mips/lsi33k-stub.h which no longer 2101 exists and replace the new bfin license in its location. 2102 21032013-01-07 H.J. Lu <hongjiu.lu@intel.com> 2104 2105 PR gas/14899 2106 * Makefile.def (dependencies): Make all-binutils, all-gprof, 2107 all-ld and all-gold depend on all-gas. 2108 * Makefile.in: Regenerated. 2109 21102012-12-29 Ben Elliston <bje@gnu.org> 2111 2112 * config.guess: Update to 2012-12-29 version. 2113 * config.sub: Likewise. 2114 21152012-12-20 Jan-Benedict Glaw <jbglaw@lug-owl.de> 2116 2117 * Makefile.def (install-target-libgo): Depend on 2118 install-target-libatomic. Merged from GCC repo. 2119 * Makefile.in: Regenerate. 2120 21212012-12-17 Jeff Johnston <jjohnstn@redhat.com> 2122 2123 * COPYING.LIBGLOSS: Add license for bfin libgloss. 2124 21252012-12-16 Thomas Schwinge <thomas@codesourcery.com> 2126 2127 * configure.ac (ENABLE_GOLD): Consider *-*-gnu* targets ELF. 2128 * configure: Regenerate. 2129 21302012-12-11 H.J. Lu <hongjiu.lu@intel.com> 2131 2132 * Makefile.def (target_modules): Add bootstrap=true and 2133 raw_cxx=true to libsanitizer. 2134 * configure.ac (bootstrap_target_libs): Add libsanitizer. 2135 * Makefile.in: Regenerated. 2136 * configure: Likewise. 2137 21382012-12-08 Jan-Benedict Glaw <jbglaw@lug-owl.de> 2139 2140 * config.sub: Merge from config repo. 2141 21422012-11-30 Jan-Benedict Glaw <jbglaw@lug-owl.de> 2143 2144 * configure.ac: Merge from GCC. 2145 * Makefile.tpl: Ditto. 2146 * Makefile.in: Ditto. 2147 * configure: Ditto. 2148 21492012-11-28 Jan-Benedict Glaw <jbglaw@lug-owl.de> 2150 2151 * configure.ac (noconfigdirs): Merge from GCC. 2152 * configure: Regenerate. 2153 21542012-11-19 Jan-Benedict Glaw <jbglaw@lug-owl.de> 2155 2156 * config.sub (arm): Merge from upstream: Handle armv[6-8] targets. 2157 21582012-11-14 Roland McGrath <mcgrathr@google.com> 2159 2160 * configure.ac (ENABLE_GOLD): Consider *-*-nacl* targets ELF. 2161 * configure: Regenerate. 2162 21632012-11-13 Richard Henderson <rth@redhat.com> 2164 2165 * configure.ac: Move libsanitizer logic to subdirectory. 2166 * configure: Regenerate. 2167 21682012-11-13 Dodji Seketeli <dodji@redhat.com> 2169 2170 * configure.ac: Enable libsanitizer just on x86 linux for now. 2171 * configure: Re-generate. 2172 21732012-11-13 David Edelsohn <dje.gcc@gmail.com> 2174 2175 * configure.ac: Merge libquadmath sections. 2176 * configure: Regenerate. 2177 21782012-11-12 Wei Mi <wmi@google.com> 2179 2180 * configure.ac: Add libsanitizer to target_libraries. 2181 * Makefile.def: Ditto. 2182 * configure: Regenerate. 2183 * Makefile.in: Regenerate. 2184 21852012-11-03 H.J. Lu <hongjiu.lu@intel.com> 2186 2187 * configure: Regenerated. 2188 21892012-11-03 Robert Mason <rbmj@verizon.net> 2190 2191 * configure.ac: add --disable-libstdcxx configure option 2192 and handle defaulted state only for VxWorks, ARM-wince-pe and AVR. 2193 21942012-10-24 Corinna Vinschen <corinna@vinschen.de> 2195 2196 * configure.ac (FLAGS_FOR_TARGET,target=cygwin): Fix for building 2197 against Mingw64 w32api. 2198 * configure: Regenerate. 2199 22002012-10-23 Eric Botcazou <ebotcazou@adacore.com> 2201 2202 PR bootstrap/54820 2203 * configure.ac (have_static_libs): Force 'no' for GCC version < 4.5. 2204 * configure: Regenerate. 2205 22062012-10-22 Eric Botcazou <ebotcazou@adacore.com> 2207 2208 PR bootstrap/54820 2209 * Makefile.tpl (STAGE1_FLAGS_TO_PASS): New variable. 2210 (all-[+prefix+][+module+]): Pass stage1_args to sub-makes. 2211 (all-stage[+id+]-[+prefix+][+module+]): Likewise, if prev is false. 2212 (clean-stage[+id+]-[+prefix+][+module+]): Likewise, if prev is false. 2213 (host_modules): Set stage1_args to STAGE1_FLAGS_TO_PASS. 2214 * Makefile.in: Regenerate. 2215 * configure.ac (have_static_libs): New variable and associated check. 2216 (stage1-ldflags): Move to after stage1_libs and set to -static-libstdc++ 2217 -static-libgcc if stage1_libs is empty and have_static_libs is yes. 2218 * configure: Regenerate. 2219 22202012-10-10 David Holsgrove <david.holsgrove@xilinx.com> 2221 2222 * config.guess, config.sub: Include updated version from 2223 config-patches. Adds microblaze little endian support. 2224 22252012-09-28 Ian Lance Taylor <iant@google.com> 2226 2227 * Makefile.def: Make all-target-libgo depend on 2228 all-target-libbacktrace. 2229 * Makefile.in: Rebuild. 2230 22312012-09-26 Ian Lance Taylor <iant@google.com> 2232 2233 * Makefile.def: Make all-gcc depend on all-libbacktrace. 2234 * Makefile.in: Rebuild. 2235 22362012-09-06 Diego Novillo <dnovillo@google.com> 2237 2238 * configure.ac: Bump minimum GMP version to 4.2.3. 2239 * configure: Re-generate. 2240 22412012-09-05 Georg-Johann Lay <avr@gjlay.de> 2242 2243 PR target/54461 2244 * configure.ac (noconfigdirs,target=avr-*-*): Add target-newlib, 2245 target-libgloss if not configured --with-avrlibc=no. 2246 * configure: Regenerate. 2247 22482012-09-04 Jason Merrill <jason@redhat.com> 2249 2250 * configure.ac: Fix --enable-languages=all. 2251 22522012-09-03 Richard Guenther <rguenther@suse.de> 2253 2254 PR bootstrap/54138 2255 * configure.ac: Re-organize ISL / CLOOG checks to allow 2256 disabling with either --without-isl or --without-cloog. 2257 * configure: Regenerated. 2258 22592012-09-03 Georg-Johann Lay <avr@gjlay.de> 2260 2261 * configure.ac (noconfigdirs,target=avr): Add target-libquadmath. 2262 * configure: Regenerate. 2263 22642012-09-21 Steve Ellcey <sellcey@mips.com> 2265 2266 * configure.ac: Add mips*-mti-elf* target. 2267 * configure: Regenerate. 2268 22692012-09-19 Ian Lance Taylor <iant@google.com> 2270 2271 * configure.ac (host_libs): Add libbacktrace. 2272 (target_libraries): Add libbacktrace. 2273 * Makefile.def (host_modules): Add libbacktrace. 2274 (target_modules): Likewise. 2275 * configure, Makefile.in: Rebuild. 2276 22772012-09-15 Jiong Wang <jiwang@tilera.com> 2278 2279 * configure.ac (ENABLE_GOLD): support tilegx* 2280 * configure: rebuild 2281 22822012-09-14 David Edelsohn <dje.gcc@gmail.com> 2283 2284 PR target/38607 2285 Merge upstream change. 2286 * libtool.m4 (_LT_COMPILER_PIC): Add -fPIC to GCC and GXX for AIX. 2287 2288 * configure.ac: Add target-libquadmath to noconfigdirs for AIX. 2289 Add libgomp*.o to compare_exclusions for AIX. 2290 * configure: Regenerate. 2291 22922012-08-26 H.J. Lu <hongjiu.lu@intel.com> 2293 2294 PR binutils/4970 2295 * Makefile.def (host_modules): Rmove lib_path=.libs from bfd 2296 and opcodes. 2297 * Makefile.in: Regenerated. 2298 22992012-08-14 Diego Novillo <dnovillo@google.com> 2300 2301 Merge from cxx-conversion branch. 2302 2303 * Makefile.tpl (STAGE[+id+]_CXXFLAGS): Remove 2304 POSTSTAGE1_CONFIGURE_FLAGS. 2305 * Makefile.in: Regenerate. 2306 * configure.ac (ENABLE_BUILD_WITH_CXX): Remove. Update all users. 2307 Force C++ when bootstrapping. 2308 * configure: Regenerate. 2309 23102012-07-06 Richard Guenther <rguenther@suse.de> 2311 2312 * Makefile.def (cloog): Pass $(HOST_GMPINC) and $(HOST_ISLINC) 2313 as CPPFLAGS, pass path to built gmp as LDFLAGS, always use 2314 --with-gmp=system. 2315 * Makefile.in: Regenerated. 2316 * configure: Likewise. 2317 23182012-07-06 Richard Guenther <rguenther@suse.de> 2319 2320 * configure.ac (extra_isl_gmp_configure_flags): Initialize and subst. 2321 * Makefile.def (isl): Use extra_isl_gmp_configure_flags and 2322 supply V=1 as extra_make_flags. 2323 * configure: Regenerated. 2324 * Makefile.in: Likewise. 2325 23262012-07-03 Richard Guenther <rguenther@suse.de> 2327 2328 * Makfile.def (isl): Remove not necessary extra_exports and 2329 extra_make_flags. 2330 (cloog): Use $$CPPFLAGS instead of ${CPPFLAGS}. 2331 * Makefile.in: Regenerated. 2332 23332012-07-03 Richard Guenther <rguenther@suse.de> 2334 2335 * Makefile.def (cloog): Add V=1 to extra_make_flags. 2336 * configure.ac: If either the ISL or the CLooG check failed 2337 do not try to build in-tree versions. 2338 * Makefile.in: Regenerated. 2339 * configure: Regenerated. 2340 23412012-07-02 Richard Guenther <rguenther@suse.de> 2342 Michael Matz <matz@suse.de> 2343 Tobias Grosser <tobias@grosser.es> 2344 Sebastian Pop <sebpop@gmail.com> 2345 2346 * Makefile.def: Add ISL host module, remove PPL host module. 2347 Adjust ClooG host module to use the proper ISL. 2348 * Makefile.tpl: Pass ISL include flags instead of PPL ones. 2349 * configure.ac: Include config/isl.m4. Add ISL host library, 2350 remove PPL. Remove PPL configury, add ISL configury, adjust 2351 ClooG configury. 2352 * Makefile.in: Regenerated. 2353 * configure: Likewise. 2354 23552012-07-02 Richard Guenther <rguenther@suse.de> 2356 2357 Merge from graphite branch 2358 2011-07-21 Tobias Grosser <tobias@grosser.es> 2359 2360 * configure: Regenerated. 2361 * config/cloog.m4: Remove support for CLooG-ppl and CLooG-parma, 2362 both cloog.org and legacy versions. The only supported version will 2363 be CLooG with the isl backend. 2364 2365 2011-07-21 Tobias Grosser <tobias@grosser.es> 2366 2367 * configure: Regenerated. 2368 * configure.ac: Require cloog isl 0.17.0 2369 2370 2011-07-21 Tobias Grosser <tobias@grosser.es> 2371 2372 * configure: Regenerated. 2373 * config/cloog.m4: Do not define CLOOG_ORG 2374 23752012-06-29 Steven Bosscher <steven@gcc.gnu.org> 2376 2377 * configure.ac: Skip C if explicitly selected. 2378 * configure: Regenerate. 2379 23802012-06-28 Christophe Lyon <christophe.lyon@st.com> 2381 2382 * configure.ac (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Make sure 2383 they contain -O2. 2384 * configure: Regenerate. 2385 23862012-06-20 Jason Merrill <jason@redhat.com> 2387 2388 * Makefile.tpl (check-target-libgomp-c++): New. 2389 (check-target-libitm-c++): New. 2390 * Makefile.def (c++): Add them. 2391 * Makefile.in: Regenerate. 2392 23932012-05-16 Olivier Hainque <hainque@adacore.com> 2394 2395 * Makefile.tpl (gcc-no-fixedincludes): Rename into ... 2396 (gcc-install-no-fixedincludes): Now forwarder to local target in gcc/ 2397 (install-no-fixedincludes): Adjust accordingly. 2398 * Makefile.in: Regenerate. 2399 24002012-05-09 Nick Clifton <nickc@redhat.com> 2401 Paul Smith <psmith@gnu.org> 2402 2403 PR bootstrap/50461 2404 * configure.ac (mpfr-dir): When using in-tree MPFR sources 2405 allow for the fact that from release v3.1.0 of MPFR the source 2406 files were moved into a src sub-directory. 2407 * configure: Regenerate. 2408 24092012-05-07 Janne Blomqvist <jb@gcc.gnu.org> 2410 2411 * configure.ac: Bump minimum MPFR version to 2.4.0. 2412 * configure: Regenerated. 2413 24142012-05-01 Richard Henderson <rth@redhat.com> 2415 2416 * Makefile.def (libatomic): New target_module. 2417 * configure.ac (target_libraries): Add libatomic. 2418 (noconfigdirs): Check if libatomic is supported. 2419 * Makefile.in, configure: Rebuild. 2420 24212012-05-15 H.J. Lu <hongjiu.lu@intel.com> 2422 2423 Merge upstream change 2424 * libtool.m4 (_LT_ENABLE_LOCK): Support x32. 2425 24262011-11-21 Andreas Tobler <andreast@fgznet.ch> 2427 2428 * libtool.m4: Additional FreeBSD 10 fixes. 2429 24302012-06-28 Christophe Lyon <christophe.lyon@st.com> 2431 2432 * configure.ac (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Make sure 2433 they contain -O2. 2434 * configure: Regenerate. 2435 24362012-05-14 Catherine Moore <clm@codesourcery.com> 2437 2438 * NEWS: Mention PowerPC VLE port. 2439 24402012-05-11 Mike Frysinger <vapier@gentoo.org> 2441 2442 * MAINTAINERS (config/): Move to intl/ section. 2443 (compile; depcomp; install-sh; missing; ylwrap): Likewise. 2444 24452012-05-09 Nick Clifton <nickc@redhat.com> 2446 Paul Smith <psmith@gnu.org> 2447 2448 PR bootstrap/50461 2449 * configure.ac (mpfr-dir): When using in-tree MPFR sources 2450 allow for the fact that from release v3.1.0 of MPFR the source 2451 files were moved into a src sub-directory. 2452 * configure: Regenerate. 2453 24542012-05-02 Roland McGrath <mcgrathr@google.com> 2455 2456 * configure.ac (ENABLE_GOLD): Consider *-*-nacl* targets ELF. 2457 * configure: Regenerate. 2458 24592012-04-25 Joel Brobecker <brobecker@adacore.com> 2460 2461 * config.sub: Update to 2012-04-18 version from official repo. 2462 24632012-03-19 Tristan Gingold <gingold@adacore.com> 2464 2465 * configure.ac (ia64*-*-*vms*): Add support for ld. 2466 * configure: Regenerate. 2467 24682012-03-14 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> 2469 2470 * configure.ac (enable_libgomp): Remove *-*-irix6*. 2471 (unsupported_languages): Remove mips-sgi-irix6.*. 2472 (noconfigdirs): Don't add ${libgcj} for mips*-*-irix6*. 2473 (with_stabs): Remove. 2474 * configure: Regenerate. 2475 24762012-03-12 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> 2477 2478 * configure.ac (enable_libgomp): Remove *-*-osf*. 2479 (with_stabs): Remove alpha*-*-osf*. 2480 * configure: Regenerate. 2481 24822012-03-09 Jeff Johnston <jjohnstn@redhat.com> 2483 2484 * COPYING.NEWLIB: Modify DJ Delorie license to include 2485 modification rights in clause as permitted by DJ Delorie. 2486 * COPYING.LIBGLOSS: Ditto. 2487 24882012-03-09 Jeff Johnston <jjohnstn@redhat.com> 2489 2490 * COPYING.NEWLIB: Remove two unused licenses. 2491 24922012-03-05 Tristan Gingold <gingold@adacore.com> 2493 2494 * configure.ac: Enable gdb and readline for ia64*-*-*vms*. 2495 * configure: Regenerate. 2496 24972012-02-21 Joern Rennecke <joern.rennecke@embecosm.com> 2498 2499 * COPYING.NEWLIB: Add Adapteva notice. 2500 * COPYING.LIBGLOSS: Add Adapteva notice. 2501 25022011-12-18 Eric Botcazou <ebotcazou@adacore.com> 2503 2504 * configure: Regenerate. 2505 25062011-12-15 Jeff Johnston <jjohnstn@redhat.com> 2507 2508 * COPYING.LIBGLOSS: Add GPL with exception license. 2509 25102011-11-09 Roland McGrath <mcgrathr@google.com> 2511 2512 * configure.ac: Add tool checks for READELF and READELF_FOR_TARGET. 2513 * configure: Rebuild. 2514 * Makefile.def (flags_to_pass): Add READELF_FOR_TARGET. 2515 * Makefile.tpl (READELF, READELF_FOR_TARGET): New variables. 2516 (HOST_EXPORTS): Add READELF, READELF_FOR_TARGET. 2517 (BASE_FLAGS_TO_PASS): Add READELF_FOR_TARGET. 2518 (BASE_TARGET_EXPORTS, EXTRA_HOST_FLAGS, EXTRA_TARGET_FLAGS): 2519 Add READELF. 2520 * Makefile.in: Rebuild. 2521 25222011-11-08 Richard Henderson <rth@redhat.com> 2523 2524 * configure.ac: Test for libitm directory present first. 2525 2526 * configure.ac: Adjust srcdir for running libitm/configure.tgt. 2527 2528 * configure.ac: Test libitm/configure.tgt to disable libitm. 2529 * configure: Rebuild. 2530 25312011-11-02 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> 2532 2533 * Makefile.tpl (EXTRA_GCC_FLAGS): Remove LIBGCC2_CFLAGS, 2534 LIBGCC2_DEBUG_CFLAGS, LIBGCC2_INCLUDES. 2535 * Makefile.in: Regenerate. 2536 25372011-11-01 DJ Delorie <dj@redhat.com> 2538 2539 * configure.ac (rl78-*-*) New case. 2540 * configure: Regenerate. 2541 25422011-11-01 DJ Delorie <dj@redhat.com> 2543 2544 * config.sub: Update to version 2011-10-29 (added rl78) 2545 25462011-10-27 Nick Clifton <nickc@redhat.com> 2547 2548 * config.sub: Import these changes from the config project: 2549 2550 2011-10-08 Joern Rennecke <joern.rennecke@embecosm.com> 2551 Ben Elliston <bje@gnu.org> 2552 2553 * config.sub (epiphany): New. 2554 2555 2011-09-09 Linas Vepstas <linasvepstas@gmail.com> 2556 Ben Elliston <bje@gnu.org> 2557 2558 * config.sub (hexagon, hexagon-*): New. 2559 2560 2011-08-23 Roland McGrath <mcgrathr@google.com> 2561 2562 * config.sub: Rename 32eb to be32, 32el to le32, 64el to le64, and 2563 64eb to be64. 2564 2565 2011-08-16 Roland McGrath <mcgrathr@google.com> 2566 2567 * config.sub (32eb, 32el, 64eb, 64el): New (pseudo-)CPUs. 2568 (nacl): Grok as alias for 32el-unknown-nacl. 2569 25702011-08-19 Joel Brobecker <brobecker@adacore.com> 2571 2572 * src-release (GDB_SUPPORT_DIRS): Add 'cpu'. 2573 25742011-08-14 Yao Qi <yao@codesourcery.com> 2575 2576 Merge from gcc: 2577 2578 2011-08-14 Yao Qi <yao@codesourcery.com> 2579 * configure.ac (tic6x-*-*): Remove gdb from noconfigdirs. 2580 * configure: Regenerate. 2581 25822011-07-26 Ian Lance Taylor <iant@google.com> 2583 2584 Merge from gcc: 2585 2586 2011-07-26 Ian Lance Taylor <iant@google.com> 2587 * configure.ac: Set have_compiler based on whether gcc directory 2588 exists, rather than on whether gcc is in configdirs. 2589 * configure: Rebuild. 2590 2591 2011-07-20 David Edelsohn <dje.gcc@gmail.com> 2592 * Makefile.tpl (POSTSTAGE1_CONFIGURE_FLAGS): Add libsupc++ to 2593 link directories. 2594 * Makefile.in: Rebuild. 2595 2596 2011-07-20 Ian Lance Taylor <iant@google.com> 2597 PR bootstrap/49787 2598 * configure.ac: Move --enable-bootstrap handling earlier in file. 2599 If --enable-bootstrap and either --enable-build-with-cxx or 2600 --enable-build-poststage1-with-cxx, enable C++ automatically. 2601 * configure: Rebuild. 2602 2603 2011-07-19 Ian Lance Taylor <iant@google.com> 2604 * configure.ac: Add --enable-build-poststage1-with-cxx. If set, 2605 make C++ a boot_language. Set and substitute 2606 POSTSTAGE1_CONFIGURE_FLAGS. 2607 * Makefile.tpl (POSTSTAGE1_CONFIGURE_FLAGS): New variable. 2608 (STAGE[+id+]_CONFIGURE_FLAGS): Add $(POSTSTAGE1_CONFIGURE_FLAGS). 2609 * configure, Makefile.in: Rebuild. 2610 2611 2011-07-16 Jason Merrill <jason@redhat.com> 2612 * Makefile.def (language=c++): Add check-c++0x and 2613 check-target-libmudflap-c++. 2614 * Makefile.tpl (check-target-libmudflap-c++): New. 2615 * Makefile.in: Regenerate. 2616 2617 2011-07-16 Matthias Klose <doko@ubuntu.com> 2618 * Makefile.tpl (EXTRA_CONFIGARGS_LIBJAVA): Define. 2619 * Makefile.def (target_modules/libjava): Pass 2620 $(EXTRA_CONFIGARGS_LIBJAVA). 2621 * configure.ac: Pass --disable-static in EXTRA_CONFIGARGS_LIBJAVA, 2622 if not configured with --enable-static-libjava. 2623 * Makefile.in: Regenerate. 2624 * configure: Likewise. 2625 2626 2011-06-22 Hans-Peter Nilsson <hp@axis.com> 2627 PR regression/47836 2628 PR bootstrap/23656 2629 PR other/47733 2630 PR bootstrap/49247 2631 PR c/48825 2632 * configure.ac (target_libraries): Remove target-libiberty. 2633 Remove case-statement setting skipdirs=target-libiberty for 2634 multiple targets. Remove checking target_configdirs and 2635 removing target-libiberty but keeping target-libgcc if 2636 otherwise empty. 2637 * Makefile.def (target_modules): Don't add libiberty. 2638 (dependencies): Remove all traces of target-libiberty. 2639 * configure, Makefile.in: Regenerate. 2640 26412011-07-22 Jason Merrill <jason@redhat.com> 2642 2643 * Makefile.def (language=c++): Add check-c++0x and 2644 check-target-libmudflap-c++. 2645 * Makefile.tpl (check-target-libmudflap-c++): New. 2646 * Makefile.in: Regenerate. 2647 26482011-07-18 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> 2649 2650 * configure: Regenerate. 2651 26522011-07-07 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> 2653 2654 PR target/39150 2655 * configure.ac (i[3456789]86-*-solaris2*): Also accept 2656 x86_64-*-solaris2.1[0-9]*. 2657 * configure: Regenerate. 2658 26592011-06-13 Walter Lee <walt@tilera.com> 2660 2661 * configure.ac (tilepro-*-*) New case. 2662 (tilegx-*-*): Likewise. 2663 * configure: Regenerate. 2664 26652011-06-06 Nick Clifton <nickc@redhat.com> 2666 2667 * config.sub: Sync from upstream. 2668 26692011-05-08 Doug Kwan <dougkwan@google.com> 2670 2671 Merge from gcc: 2672 2673 2011-05-08 Doug Kwan <dougkwan@google.com> 2674 2675 * configure.ac: Propagate LDFLAGS_FOR_TARGET. 2676 * configure: Regenerated. 2677 * Makefile.tpl (LDFLAGS_FOR_TARGET): Use LDFLAGS_FOR_TARGET 2678 value from configure. 2679 * Makefile.in: Regenerated. 2680 26812011-05-05 Joseph Myers <joseph@codesourcery.com> 2682 2683 * configure.ac (alpha*-dec-osf*, i[[3456789]]86-*-rdos*, 2684 sh*-*-pe|mips*-*-pe|arm-wince-pe, sparc-*-sunos4*, *-*-aix*, 2685 *-*-beos*, *-*-chorusos, *-*-dragonfly*, *-*-freebsd*, *-*-linux* 2686 | *-*-gnu* | *-*-k*bsd*-gnu | *-*-kopensolaris*-gnu, *-*-lynxos*, 2687 *-*-mingw*, *-*-netbsd*, *-*-netware*, *-*-tpf*, *-*-uclinux*, 2688 *-*-vxworks*): Disable newlib and libgloss in separate case 2689 statement. 2690 (i[[3456789]]86-*-linux*): Move logic allowing newlib to be built 2691 to separate case statement. 2692 (*-*-chorusos, *-*-dragonfly*, *-*-freebsd*, *-*-netbsd*, 2693 *-*-netware*, *-*-tpf*, *-*-uclinux*, *-*-vxworks*, 2694 alpha*-dec-osf*, alpha*-*-linux*, am33_2.0-*-linux*, sh-*-linux*, 2695 sh*-*-pe|mips*-*-pe|*arm-wince-pe, arm-*-coff, arm-*-elf* | 2696 arm*-*-eabi*, arm*-*-linux-gnueabi, arm*-*-symbianelf*, avr-*-*, 2697 bfin-*-*, cris-*-* | crisv32-*-*, frv-*-*, i[[3456789]]86-*-coff | 2698 i[[3456789]]86-*-elf, i[[3456789]]86-w64-mingw*, 2699 i[[3456789]]86-*-mingw*, x86_64-*-mingw*, 2700 i[[3456789]]86-*-interix*, i[[3456789]]86-*-beos*, 2701 i[[3456789]]86-*-rdos*, m32r-*-*, 2702 m68hc11-*-*|m6811-*-*|m68hc12-*-*|m6812-*-*, m68k-*-elf*, m68*-*-* 2703 | fido-*-*, powerpc-*-aix*, powerpc-*-beos*, powerpc-*-eabi, 2704 powerpc-*-eabi* | powerpcle-*-eabi* | powerpc-*-rtems*, 2705 rs6000-*-lynxos*, rs6000-*-aix*, mips*-*-linux*, sparclet-*-aout* 2706 | sparc86x-*-*, sparc-*-elf*, sparc64-*-elf*, sparclite-*-*, 2707 sparc-*-sunos4*, sparc-*-solaris* | sparc64-*-solaris* | 2708 sparcv9-*-solaris*, *-*-linux* | *-*-gnu* | *-*-k*bsd*-gnu | 2709 *-*-kopensolaris*-gnu, *-*-lynxos*, *-*-*): Don't disable newlib 2710 and libgloss in main case over targets. Remove most empty cases 2711 in main case over targets. 2712 * configure: Regenerate. 2713 27142011-05-04 Joseph Myers <joseph@codesourcery.com> 2715 2716 * configure.ac: Remove code setting special library locations for 2717 hppa*64*-*-hpux11*. Remove code setting compiler for 2718 sparc-sun-solaris2*. 2719 * configure: Regenerate. 2720 27212011-05-04 Joseph Myers <joseph@codesourcery.com> 2722 2723 * configure.ac: Separate libgloss_dir settings from general case 2724 over targets. 2725 * configure: Regenerate. 2726 27272011-04-28 Joseph Myers <joseph@codesourcery.com> 2728 2729 * configure.ac (*-*-dragonfly*, *-*-freebsd*, *-*-netbsd*, 2730 alpha*-dec-osf*, alpha*-*-linux*, alpha*-*-*, sh-*-linux*, 2731 arm-*-elf* | arm*-*-eabi*, arm*-*-linux-gnueabi, frv-*-*): Remove 2732 cases in libgcj-disabling case statement. 2733 (hppa*64*-*-linux*): Set unsupported_languages instead of 2734 disabling target-zlib. 2735 (hppa*64*-*-*): Restrict case in libgcj-disabling case statement 2736 to hppa*64*-*-hpux*. 2737 (hppa*-*-*): Restrict case in libgcj-disabling case statement to 2738 hppa*-*-hpux*. 2739 (ia64*-*-elf*, ia64*-**-hpux*, i[[3456789]]86-*-elf, 2740 i[[3456789]]86-*-linux*, *-*-cygwin*, i[[3456789]]86-*-interix*, 2741 i[[3456789]]86-*-solaris2*, m32r-*-*, m68k-*-elf*, m68*-*-* | 2742 fido-*-*, powerpc-*-eabi, powerpc-*-eabi* | powerpcle-*-eabi* | 2743 powerpc-*-rtems*, mips*-*-linux*, mips*-*-*, sh-*-* | sh64-*-*, 2744 sparc-*-elf*, sparc64-*-elf*, sparc-*-solaris* | 2745 sparc64-*-solaris* | sparcv9-*-solaris*, *-*-linux* | *-*-gnu* | 2746 *-*-k*bsd*-gnu | *-*-kopensolaris*-gnu, *-*-*): Remove cases in 2747 libgcj-disabling case statement. 2748 * configure: Regenerate. 2749 27502011-04-28 Joseph Myers <joseph@codesourcery.com> 2751 2752 * configure.ac: Disable Java for targets not supporting libffi. 2753 (*-*-chorusos, *-*-kaos*, am33_2.0-*-linux*, sh*-*-pe|mips*-*-pe): 2754 Remove cases in Java-disabling statement. 2755 (*arm-wince-pe): Change to arm-wince-pe. 2756 (arc-*-*, arm-*-coff, arm-*-pe*, arm-*-riscix*, avr-*-*): Remove 2757 cases in Java-disabling statement. 2758 (bfin-*-*): Don't disable Java again. 2759 (c4x-*-* | tic4x-*-*, tic54x-*-*, cr16-*-*, d10v-*-*, d30v-*-*, 2760 fr30-*-elf*, moxie-*-*, h8300*-*-*, h8500-*-*, hppa1.1-*-osf* | 2761 hppa1.1-*-bsd*, hppa*-*-*elf* | hppa*-*-lites* | hppa*-*-openbsd*, 2762 hppa*-*-pro*, i960-*-*, i[[3456789]]86-*-coff, 2763 i[[3456789]]86-*-pe, i[[3456789]]86-*-sco3.2v5*, 2764 i[[3456789]]86-*-sco*, i[[3456789]]86-*-sysv4*, 2765 i[[3456789]]86-*-beos*, i[[3456789]]86-*-rdos*, 2766 m68hc11-*-*|m6811-*-*|m68hc12-*-*|m6812-*-*): Remove cases in 2767 Java-disabling statement. 2768 (mmix-*-*): Don't disable Java again. 2769 (mt-*-*, powerpc*-*-winnt* | powerpc*-*-pe*, powerpcle-*-solaris*, 2770 powerpc-*-beos*, rs6000-*-lynxos*, rs6000-*-*, m68k-apollo-*, 2771 microblaze*, mips*-sde-elf*, mips*-*-irix5*, mips*-*-bsd*, 2772 sparclet-*-aout* | sparc86x-*-*, sparclite-*-*, sparc-*-sunos4*, 2773 tic6x-*-*, v810-*-*, vax-*-*): Remove cases in Java-disabling 2774 statement. 2775 * configure: Regenerate. 2776 27772011-04-28 Joseph Myers <joseph@codesourcery.com> 2778 2779 Merge from GCC: 2780 2781 2011-04-18 Jack Howarth <howarth@bromo.med.uc.edu> 2782 2783 PR lto/48086 2784 * configure.ac: Re-enable LTO on *-apple-darwin9*. 2785 * configure: Regenerate. 2786 27872011-04-28 Joseph Myers <joseph@codesourcery.com> 2788 2789 * configure.ac: Separate cases disabling Java and Java libraries 2790 from general case over targets. 2791 * configure: Regenerate. 2792 27932011-04-06 Joseph Myers <joseph@codesourcery.com> 2794 2795 * configure.ac (build_tools): Remove build-byacc. 2796 (host_libs): Remove mmalloc. 2797 (host_tools): Remove byacc make patch prms send-pr ash bash bzip2 2798 autoconf automake libtool diff rcs fileutils shellutils time 2799 textutils wdiff find uudecode hello tar gzip indent recode release 2800 sed perl gawk findutils gettext zip. 2801 (libgcj): Remove target-qthreads. 2802 (target_tools): Remove target-examples target-gperf. 2803 (YACC): Don't handle building byacc. 2804 * configure: Regenerate. 2805 * Makefile.def (ash, autoconf, automake, bash, byacc, bzip2, diff, 2806 dosutils, examples, fileutils, find, findutils, gawk, gettext, 2807 gnuserv, gperf, gzip, hello, indent, libtool, make, mmalloc, 2808 patch, perl, prms, qthreads, rcs, recode, release, sed, send-pr, 2809 shellutils, tar, textutils, time, uudecode, wdiff, zip): Don't 2810 handle building components. 2811 * Makefile.in: Regenerate. 2812 28132011-04-05 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> 2814 2815 * config.sub: Sync from upstream. 2816 28172011-04-01 Joseph Myers <joseph@codesourcery.com> 2818 2819 * configure.ac (avr-*-*): Add comment about why libssp is disabled. 2820 (microblaze*): Don't disable libssp. 2821 * configure: Regenerate. 2822 28232011-04-01 Joseph Myers <joseph@codesourcery.com> 2824 2825 * configure.ac: Remove code setting CONFIG_SHELL, config_shell and 2826 moveifchange. 2827 * configure: Regenerate. 2828 * Makefile.tpl: Use @SHELL@ not @config_shell@. 2829 * Makefile.in: Regenerate. 2830 28312011-04-01 Joseph Myers <joseph@codesourcery.com> 2832 2833 * configure.ac (*-*-sysv4*): Don't enable libgomp. 2834 (alpha*-*-*vms*, i[[34567]]86-*-sco3.2v5*, mn10300-*-*, 2835 powerpc-*-chorusos*, powerpc*-*-eabi*, powerpc*-*-sysv*, 2836 powerpc*-*-kaos*, s390x-ibm-tpf*, sparc64-*-elf*, v850*-*-*, 2837 xtensa*-*-elf*, *-*-beos*, *-*-elf*, *-*-netware*, *-*-rtems*, 2838 *-*-sysv[[45]]*, *-*-vxworks*, *-wrs-windiss): Remove 2839 md_exec_prefix cases. 2840 * configure: Regenerate. 2841 28422011-04-01 Joseph Myers <joseph@codesourcery.com> 2843 2844 * configure.ac: Separate cases disabling target-libssp, 2845 target-libiberty, target-libstdc++-v3 and Fortran from general 2846 case over targets. 2847 * configure: Regenerate. 2848 28492011-04-01 Joseph Myers <joseph@codesourcery.com> 2850 2851 * configure.ac (*-*-chorusos): Don't disable libgcj. 2852 (*-*-freebsd[[12]] | *-*-freebsd[[12]].* | *-*-freebsd*aout*): 2853 Remove case. 2854 (*-*-kaos*): Don't disable GCC libraries, zlib or fastjar. 2855 (arm-*-coff): Don't disable libgcj. 2856 (arm*-*-linux-gnueabi): Remove useless assignment. 2857 (arm-*-riscix*): Don't disable libgcj. 2858 (bfin-*-*): Don't enable target-bsp and target-cygmon depending on 2859 configuration. 2860 (c4x-*-* | tic4x-*-*): Don't disable GCC libraries. 2861 (c54x*-*-*): Remove case. 2862 (tic54x-*-*): Don't disable GCC or GCC libraries. 2863 (cris-*-* | crisv32-*-*): Don't handle *-*-aout. Change *-*-elf 2864 to *. 2865 (d10v-*-*): Don't disable GCC libraries. 2866 (d30v-*-*): Don't disable libgcj. 2867 (h8500-*-*): Don't disable GCC libraries. 2868 (i960-*-*): Don't disable libgcj. 2869 (i[[3456789]]86-*-linux*): Don't handle *-*-*libc1*. 2870 (i[[3456789]]86-*-sco3.2v5*, i[[3456789]]86-*-sco*, 2871 i[[3456789]]86-*-sysv4*, i[[3456789]]86-*-beos*): Don't disable 2872 libgcj. 2873 (m68k-*-coff*): Remove case. 2874 (mmix-*-*): Don't disable libgloss on host. 2875 (mn10200-*-*, mn10300-*-*): Remove cases. 2876 (powerpc*-*-winnt* | powerpc*-*-pe*, powerpcle-*-solaris*, 2877 powerpc-*-beos*, m68k-apollo-*, mips*-*-irix5*, mips*-*-bsd*): 2878 Don't disable libgcj. 2879 (romp-*-*): Remove case. 2880 (sparclite-*-*, sparc-*-sunos4*): Don't disable libgcj. 2881 (sparc-*-solaris2.[[0-6]] | sparc-*-solaris2.[[0-6]].*): Remove 2882 case. 2883 (v810-*-*): Don't disable GCC libraries. 2884 (v850*-*-*, vax-*-vms, xtensa*-*-*): Remove cases. 2885 (ip2k-*-*): Don't disable GCC libraries. 2886 * configure: Regenerate. 2887 28882011-03-28 Joseph Myers <joseph@codesourcery.com> 2889 2890 * configure.ac (i[[3456789]]86-*-msdosdjgpp*): Don't disable 2891 libffi on host. 2892 (x86_64-*-mingw*, i[[3456789]]86-*-mingw32*): Don't disable newlib 2893 on host. 2894 (c54x*-*-* | tic54x-*-*): Don't disable newlib on host. 2895 * configure: Regenerate. 2896 28972011-03-26 John Marino <binutils@marino.st> 2898 2899 * configure.ac: Add support for *-*-dragonfly* 2900 * configure: Regenerate. 2901 29022011-03-25 Joseph Myers <joseph@codesourcery.com> 2903 2904 * configure.ac (native_only): Remove. 2905 (i[[3456789]]86-*-msdosdjgpp*): Don't disable expect dejagnu 2906 send-pr uudecode guile gnuserv on host. 2907 (x86_64-*-mingw*): Don't disable expect dejagnu autoconf automake 2908 send-pr rcs guile perl texinfo libtool on host. 2909 (i[[3456789]]86-*-mingw32*): Don't disable expect dejagnu autoconf 2910 automake send-pr rcs guile perl texinfo libtool on host. 2911 (*-*-cygwin*, *-*-netbsd*): Remove host cases. 2912 (*-*-kaos*): Don't disable target-examples target-gperf on target. 2913 (alpha*-dec-osf*): Don't disable fileutils on target. 2914 (sh*-*-pe|mips*-*-pe|*arm-wince-pe): Don't disable target-examples 2915 texinfo send-pr expect dejagnu on target. 2916 (arm-*-elf* | arm*-*-eabi*, arm*-*-linux-gnueabi): Don't disable 2917 target-qthreads on target. 2918 (hppa*-hp-hpux11*, hppa*-*-*): Don't disable shellutils on target. 2919 (ia64*-*-elf*, ia64*-*-*vms*): Don't disable mmalloc on target. 2920 (i[[3456789]]86-w64-mingw*, i[[3456789]]86-*-mingw*, 2921 x86_64-*-mingw*): Don't disable expect on target. 2922 (*-*-cygwin*): Don't disable target-gperf on target. 2923 (powerpc*-*-winnt* | powerpc*-*-pe*): Don't disable make expect 2924 gnuserv on target. 2925 (powerpcle-*-solaris*): Don't disable make expect gnuserv on 2926 target. 2927 * configure: Regenerate. 2928 29292011-03-25 Joseph Myers <joseph@codesourcery.com> 2930 2931 * configure.ac (target_tools): Remove target-groff. 2932 (native_only): Remove target-groff. 2933 (hppa*64*-*-*): Don't disable byacc. 2934 (i[[3456789]]86-*-mingw32*): Remove commented-out noconfigdirs 2935 setting. 2936 (*-*-kaos*): Don't skip target-librx and target-groff. 2937 (*-*-netware*): Don't skip target-libmudflap. 2938 (*-*-tpf*): Don't skip target-libmudflap. 2939 (sh*-*-pe|mips*-*-pe|*arm-wince-pe): Don't condition configured 2940 directories on the host. 2941 (ia64*-*-*vms*): Don't skip tix. 2942 (sh-*-* | sh64-*-*): Don't condition skipped directories on the 2943 host. 2944 * configure: Regenerate. 2945 29462011-03-24 Paolo Bonzini <pbonzini@redhat.com> 2947 2948 * configure.ac: Remove references to mt-mep, mt-netware, 2949 mt-wince. 2950 * Makefile.def: Add all-utils soft dependencies. 2951 * Makefile.tpl: Remove GDB_NLM_DEPS. 2952 * configure: Regenerate. 2953 * Makefile.in: Regenerate. 2954 29552011-03-24 Paolo Bonzini <bonzini@gnu.org> 2956 2957 Sync from GCC: 2958 2959 2011-03-24 Paolo Bonzini <bonzini@gnu.org> 2960 2961 * configure.ac: Do not include mh-x86omitfp. 2962 * configure: Regenerate. 2963 2964 2011-03-24 Paolo Bonzini <bonzini@gnu.org> 2965 2966 * configure.ac: Remove empty cases. 2967 * configure: Regenerate. 2968 2969 2011-03-24 Paolo Bonzini <bonzini@gnu.org> 2970 2971 * Makefile.def: Add dependency from termcap to gdb. 2972 * Makefile.in: Regenerate. 2973 2974 2011-03-24 Paolo Bonzini <bonzini@gnu.org> 2975 2976 * configure.ac: Remove all mentions of mh-sysv4 and mh-solaris. 2977 * configure: Regenerate. 2978 * Makefile.def: Remove all mentions of X11_FLAGS_TO_PASS. 2979 * Makefile.tpl: Likewise. 2980 * Makefile.in: Regenerate. 2981 2982 2011-03-24 Paolo Bonzini <bonzini@gnu.org> 2983 2984 * configure.ac: Remove all mentions of tentative_cc. 2985 * configure: Regenerate. 2986 2987 2011-03-16 Jack Howarth <howarth@bromo.med.uc.edu> 2988 2989 PR lto/48086 2990 * configure.ac: Re-enable LTO on *-apple-darwin9. 2991 * configure: Regenerate. 2992 29932011-03-24 Joseph Myers <joseph@codesourcery.com> 2994 2995 * configure.ac (i[[3456789]]86-*-vsta, i[[3456789]]86-*-go32*, 2996 i[[3456789]]86-*-beos*, powerpc-*-beos*, m68k-hp-hpux*, 2997 m68k-apollo-sysv*, m68k-apollo-bsd*, m88k-dg-dgux*, 2998 m88k-harris-cxux*, m88k-motorola-sysv*, mips*-dec-ultrix*, 2999 mips*-nec-sysv4*, mips*-sgi-irix4*, mips*-*-sysv4*, mips*-*-sysv*, 3000 i370-ibm-opened*, i[[3456789]]86-*-sysv5*, i[[3456789]]86-*-dgux*, 3001 i[[3456789]]86-ncr-sysv4.3*, i[[3456789]]86-ncr-sysv4*, 3002 i[[3456789]]86-*-sco3.2v5*, i[[3456789]]86-*-sco*, 3003 i[[3456789]]86-*-udk*, vax-*-ultrix2*, m68k-sun-sunos*, 3004 hppa*-*-hiux*, *-*-hiux*, rs6000-*-lynxos*, *-*-sysv4*, 3005 *-*-rhapsody*): Remove host cases. 3006 * configure: Regenerate. 3007 30082011-03-24 Joseph Myers <joseph@codesourcery.com> 3009 3010 * configure.ac (ppc*-*-pe): Remove host case. 3011 (strongarm-*-coff | xscale-*-coff, strongarm-*-elf* | 3012 xscale-*-elf*, thumb-*-coff, thumb-*-elf, thumb-*-pe, ep9312-*-elf 3013 | ep9312-*-coff, parisc*64*-*-linux*, ppc*-*-pe): Remove target 3014 cases. 3015 * configure: Regenerate. 3016 30172011-03-24 Joseph Myers <joseph@codesourcery.com> 3018 3019 * config.sub: Update to version 2011-03-23. 3020 30212011-03-22 Joseph Myers <joseph@codesourcery.com> 3022 3023 * configure.ac (arm-semi-aof, crx-*-*, parisc*-*-linux*, 3024 i370-*-opened*, i[[3456789]]86-moss-msdos | i[[3456789]]86-*-moss* 3025 | i[[3456789]]86-*-uwin*, mcore-*-pe*): Remove empty cases. 3026 * configure: Regenerate. 3027 30282011-03-22 Joseph Myers <joseph@codesourcery.com> 3029 3030 * config-ml.in: Don't handle arc-*-elf*. 3031 * configure.ac (arc-*-*, crx-*-*, i[[3456789]]86-*-pe, 3032 m68hc11-*-*|m6811-*-*|m68hc12-*-*|m6812-*-*, mcore-*-pe*): Don't 3033 handle GCC libraries. 3034 * configure: Regenerate. 3035 30362011-03-21 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> 3037 3038 PR bootstrap/48120: 3039 * configure.ac (pwllib): Use LIBS instead of LDFLAGS. 3040 Add -lstdc++ -lm to LIBS. 3041 * configure: Regenerate. 3042 30432011-03-18 David Edelsohn <dje.gcc@gmail.com> 3044 3045 * config.guess: Update to version 2011-02-02 3046 * config.sub: Update to version 2011-02-24 3047 30482011-03-03 Sebastian Pop <sebastian.pop@amd.com> 3049 3050 * configure.ac: Adjust test of with_ppl. 3051 * configure: Regenerated. 3052 30532011-03-02 Sebastian Pop <sebastian.pop@amd.com> 3054 3055 * configure.ac: Add -lpwl to ppllibs. 3056 * config/cloog.m4: Add -lisl to clooglibs. 3057 * configure: Regenerated. 3058 30592011-02-13 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> 3060 3061 Import from Libtool and gnulib: 3062 3063 2011-01-27 Gerald Pfeifer <gerald@pfeifer.com> 3064 3065 Prepare for supporting FreeBSD 10. 3066 * config.rpath: Remove handling of freebsd1* which soon would 3067 match FreeBSD 10.0. 3068 3069 2011-01-20 Gerald Pfeifer <gerald@pfeifer.com> (tiny change) 3070 3071 Remove support for FreeBSD 1.x. 3072 * libtool.m4 (_LT_LINKER_SHLIBS) 3073 (_LT_SYS_DYNAMIC_LINKER): Remove handling of freebsd1* which 3074 soon would incorrectly match FreeBSD 10.0. 3075 30762011-02-12 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> 3077 3078 PR binutils/12283 3079 * MAINTAINERS (mkinstalldirs): Comes from Automake. 3080 (move-if-change): Comes from gnulib. 3081 * move-if-change: Import version from gnulib. 3082 30832011-02-12 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> 3084 3085 Sync from GCC: 3086 3087 2011-02-12 Alexandre Oliva <aoliva@redhat.com> 3088 3089 PR lto/47225 3090 * Makefile.def (lto-plugin): Double dash for enable-shared. 3091 (configure-gcc): Depend on all-lto-plugin. 3092 * Makefile.in: Rebuilt. 3093 3094 2011-02-11 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> 3095 3096 * configure.ac: Remove extra bracket. 3097 * configure: Regenerate. 3098 3099 2011-02-06 Kai Tietz <kai.tietz@onevision.com> 3100 3101 PR lto/47225 3102 * Makefile.def: Add dependency for install-gcc 3103 on install-lto-plugin. 3104 * Makfile.in: Regenerated 3105 3106 2011-01-25 Jakub Jelinek <jakub@redhat.com> 3107 3108 * configure.ac: If with_ppl is no, move setting with_cloog=no 3109 after CLOOG_REQUESTED check. 3110 * configure: Regenerated. 3111 3112 2011-01-25 Sebastian Pop <sebastian.pop@amd.com> 3113 3114 * configure.ac: Call AC_MSG_ERROR when PPL 0.11 is not present and 3115 CLooG has been requested. 3116 * configure: Regenerated. 3117 3118 2011-01-25 Sebastian Pop <sebastian.pop@amd.com> 3119 3120 * configure: Regenerated. 3121 * configure.ac: Check for version 0.11 (or later revision) of PPL. 3122 3123 2011-01-25 Tobias Grosser <grosser@fim.uni-passau.de> 3124 3125 * configure: Regenerated. 3126 * configure.ac: Use CLOOG_CHECK_VERSION(0,16,1). 3127 3128 2011-01-07 Jan Hubicka <jh@suse.cz> 3129 3130 PR lto/47225 3131 * Makefile.in: Regenerate. 3132 * Makefile.def (lto-plugin): Always pass enable-shared to the plugin 3133 configure. 3134 31352011-01-31 Alexandre Oliva <aoliva@redhat.com> 3136 3137 PR libgcj/44341 3138 * configure.ac: Discard --with-* flags for host when configuring 3139 target libraries for cross build. 3140 * configure: Rebuilt. 3141 31422011-01-21 Andreas Schwab <schwab@redhat.com> 3143 3144 Sync from GCC: 3145 3146 2011-01-21 Andreas Schwab <schwab@redhat.com> 3147 3148 * configure.ac: Use AS_HELP_STRING throughout. 3149 * configure: Regenerate. 3150 3151 2011-01-18 Jie Zhang <jie.zhang@analog.com> 3152 3153 * configure.ac (bfin-*-*): Remove gdb from noconfigdirs. 3154 * configure: Regenerate. 3155 31562010-12-10 John David Anglin <dave.anglin@nrc-cnrc.gc.ca> 3157 3158 * ltmain.sh (relink): Use absolute path when hardcoding with -L. 3159 31602011-01-13 Joel Brobecker <brobecker@adacore.com> 3161 3162 * configure.ac: Remove readline, mmalloc, and gdb from noconfigdirs 3163 for ia64-hpux. 3164 * configure: Regenerate. 3165 31662011-01-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> 3167 3168 Sync from GCC: 3169 2010-12-22 Hariharan Sandanagobalane <hariharan@picochip.com> 3170 3171 * configure.ac: (picochip): Disable libiberty. 3172 * configure: Regenerate. 3173 31742010-12-18 Jeff Johnston <jjohnstn@redhat.com> 3175 3176 * COPYING.LIBGLOSS: Remove the GPL for fr30 target. 3177 31782010-12-10 Ian Lance Taylor <iant@google.com> 3179 3180 PR bootstrap/46819 3181 * configure.ac: For --disable-libgcj clear libgcj_saved. 3182 * configure: Rebuild. 3183 31842010-12-10 Tobias Burnus <burnus@net-b.de> 3185 3186 PR fortran/46540 3187 * configure.ac: Add --disable-libquadmath and 3188 --disable-libquadmath-support. 3189 * configure: Regenerate. 3190 31912010-12-10 Tristan Gingold <gingold@adacore.com> 3192 3193 * src-release (ETC_SUPPORT): add gnu-oids.texi 3194 31952010-12-03 Hans-Peter Nilsson <hp@axis.com> 3196 3197 PR libffi/46792 3198 * configure.ac (cris-*-elf, crisv32-*-elf): Disable target-libffi. 3199 * configure: Regenerate. 3200 32012010-12-02 Ian Lance Taylor <iant@google.com> 3202 3203 * configure.ac: Always set default for poststage1_ldflags to 3204 -static-libstdc++ -static-libgcc. 3205 32062010-12-02 Jeff Johnston <jjohnstn@redhat.com> 3207 3208 * COPYING.NEWLIB: Add National Semiconductor notice. 3209 32102010-11-29 Andreas Schwab <schwab@redhat.com> 3211 3212 * configure.ac: Move comment to remove extra space in last argument 3213 of GCC_TARGET_TOOL. 3214 32152010-11-26 Alexandre Oliva <aoliva@redhat.com> 3216 3217 PR other/46026 3218 * configure.ac (CXX_FOR_TARGET): Add -funconfigured-libstdc++-v3. 3219 * Makefile.def (CXX_FOR_TARGET): Removed from flags_to_pass. 3220 * Makefile.tpl (CXX_FOR_TARGET_FLAG_TO_PASS): New. 3221 (BASE_FLAGS_TO_PASS): Use it. 3222 * configure: Rebuilt. 3223 * Makefile.in: Rebuilt. 3224 32252010-11-23 H.J. Lu <hongjiu.lu@intel.com> 3226 3227 PR binutils/12258 3228 * configure.ac: Correct comments for --enable-gold/--enable-ld. 3229 Properly check default linker. 3230 * configure: Regnerated. 3231 32322010-11-23 Matthias Klose <doko@ubuntu.com> 3233 3234 * configure.ac: For --enable-gold, handle value `default' instead of 3235 `both*'. New configure option --{en,dis}able-ld. 3236 * configure: Regenerate. 3237 32382010-11-20 Ian Lance Taylor <iant@google.com> 3239 3240 * configure.ac: Only disable a language library if no language needs 3241 it. Don't let --disable-libgcj uncondtionally disable libffi. 3242 * configure: Rebuild. 3243 32442010-11-20 Paolo Bonzini <bonzini@gnu.org> 3245 3246 * configure: Regenerate. 3247 32482010-11-20 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> 3249 3250 PR other/46202 3251 * configure.ac: Fix just-built in-tree STRIP name to be 3252 binutils/strip-new. 3253 * configure: Regenerate. 3254 * Makefile.def (install-strip-gcc, install-strip-binutils) 3255 (install-strip-opcodes, install-strip-ld, install-strip-itcl) 3256 (install-strip-sid): Mirror dependencies on non-strip variants 3257 of these targets on the respective -strip prerequisites. 3258 * Makefile.tpl (install-strip, install-strip-host) 3259 (install-strip-target): New targets. 3260 (install-strip-[+module+], install-strip-target-[+module+]): 3261 New targets. 3262 * Makefile.in: Regenerate. 3263 32642010-11-19 Ian Lance Taylor <iant@google.com> 3265 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> 3266 3267 * configure.ac: Add target-libgo to target_libraries. Set 3268 and substitute GOC_FOR_BUILD and GOC_FOR_TARGET. 3269 * Makefile.tpl (BUILD_EXPORTS): Add GOC and GOCFLAGS. 3270 (HOST_EXPORTS): Add GOC. 3271 (BASE_TARGET_EXPORTS): Add GOC. 3272 (GOC_FOR_BUILD, GOCFLAGS, GOC_FOR_TARGET): New variables. 3273 (GOCFLAGS_FOR_TARGET): New variable. 3274 (EXTRA_HOST_FLAGS): Add GOC. 3275 (EXTRA_TARGET_FLAGS): Add GOC and GOCFLAGS. 3276 * Makefile.def (target_modules): Add libgo. 3277 (flags_to_pass): Add GOC_FOR_TARGET and GOCFLAGS_FOR_TARGET. 3278 (dependencies): Add dependency from configure-target-libgo to 3279 configure-target-libffi and all-target-libstdc++-v3. Add 3280 dependencies from all-target-libgo to all-target-libffi. 3281 (languages): Add go. 3282 * configure: Rebuild. 3283 * Makefile.in: Rebuild. 3284 32852010-11-19 Ian Lance Taylor <iant@google.com> 3286 3287 * config-ml.in: Add Go support: treat GOC and GOCFLAGS like other 3288 compiler/flag environment variables. 3289 32902010-11-18 Ian Lance Taylor <iant@google.com> 3291 3292 * configure.ac: Check for lang_requires_boot_languages in 3293 config-lang.in files. 3294 * configure: Rebuild. 3295 32962010-11-17 Mike Frysinger <vapier@gentoo.org> 3297 3298 * .gitignore: New file. 3299 33002010-11-16 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org> 3301 Tobias Burnus <burnus@net-b.de> 3302 3303 PR fortran/32049 3304 * Makefile.def: Add libquadmath; build it with language=fortran. 3305 * configure.ac: Add libquadmath. 3306 * Makefile.tpl: Handle multiple libs in check-[+language+]. 3307 * Makefile.in: Regenerate. 3308 * configure: Regenerate. 3309 33102010-11-15 Andreas Schwab <schwab@redhat.com> 3311 3312 * configure.ac: Fix spelling in option names. 3313 * configure: Regenerated. 3314 33152010-11-13 Georg-Johann Lay <georgjohann@web.de> 3316 3317 PR bootstrap/39622 3318 * configure.ac (FLAGS_FOR_TARGET): Add include-fixed path. 3319 * configure: Regenerated. 3320 33212010-11-12 Tobias Grosser <grosser@fim.uni-passau.de> 3322 3323 * config/cloog.m4: Add -enable-cloog-backend=(isl|ppl|ppl-legacy) to 3324 define the cloog backend to use. Furthermore, only pass the ppllibs to 3325 the configure checks, if necessary. 3326 * configure: Regenerate. 3327 33282010-11-12 Tobias Grosser <grosser@fim.uni-passau.de> 3329 3330 * config/cloog.m4: Use CLooG predefined macro to check for CLooG PPL. 3331 * configure: regenerate 3332 33332010-11-12 Tobias Grosser <grosser@fim.uni-passau.de> 3334 3335 * config/cloog.m4: Fix typo. verison -> version. 3336 * configure: Regenerate. 3337 33382010-11-12 Tobias Grosser <grosser@fim.uni-passau.de> 3339 3340 * config/cloog.m4: Pass ppl libraries to the CLooG version check. 3341 * configure: Regenerate. 3342 33432010-11-11 Andreas Simbuerger <simbuerg@fim.uni-passau.de> 3344 3345 * configure.ac: Support official CLooG.org versions. 3346 * configure: Regenerate. 3347 * config/cloog.m4: New. 3348 33492010-11-05 Michael Eager <eager@eagercon.com> 3350 3351 * COPYING.LIBGLOSS: Correct typo in microblaze. 3352 * COPYING.NEWLIB: Same. 3353 33542010-11-04 Iain Sandoe <iains@gcc.gnu.org> 3355 3356 * configure.ac (*-*-darwin*): Use mh-darwin for all Darwin variants. 3357 * configure: Regenerate. 3358 33592010-11-03 Ian Lance Taylor <iant@google.com> 3360 Dave Korn <dave.korn.cygwin@gmail.com> 3361 3362 PR lto/46273 3363 * configure.ac: Remove libelf tests. Build lto-plugin on ELF always 3364 and on other supported platforms whenever LTO is enabled. 3365 * configure: Rebuild. 3366 33672010-11-02 Alan Modra <amodra@gmail.com> 3368 3369 PR binutils/12110 3370 * configure.ac: Error when source path contains spaces. 3371 * configure: Regenerate. 3372 33732010-10-20 Ian Lance Taylor <iant@google.com> 3374 3375 * Makefile.def (target_modules): Set lib_path to src/.libs for 3376 libstdc++-v3 module. 3377 * Makefile.tpl: Fix typo in TARGET_LIB_PATH comment. 3378 * Makefile.in: Rebuild. 3379 33802010-10-08 Bernd Schmidt <bernds@codesourcery.com> 3381 Joseph Myers <joseph@codesourcery.com> 3382 3383 * COPYING.LIBGLOSS: Add National Semiconductor and CodeSourcery 3384 notices. 3385 * COPYING.NEWLIB: Add Texas Instruments notice. 3386 33872010-10-07 Dave Korn <dave.korn.cygwin@gmail.com> 3388 3389 * configure.ac (build_lto_plugin): New shell variable. 3390 (--enable-lto): Turn on by default for all non-ELF platforms that 3391 have had LTO support added so far. Set build_lto_plugin appropriately 3392 for both ELF and non-ELF. 3393 (configdirs): Add lto-plugin or not based on build_lto_plugin. 3394 * configure: Regenerate. 3395 33962010-10-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> 3397 3398 PR bootstrap/45326 3399 PR bootstrap/45174 3400 * configure.ac: Honor initial values of $build_configargs, 3401 $host_configargs, $target_configargs. Mark the precious, so 3402 environment settings get recorded. 3403 * configure: Regenerate. 3404 34052010-10-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> 3406 3407 Sync from GCC: 3408 3409 2010-09-30 Michael Eager <eager@eagercon.com> 3410 3411 * configure.ac (microblaze): Add target-libssp to noconfigdirs. 3412 * configure: Regenerate. 3413 3414 2010-09-21 Iain Sandoe <iains@gcc.gnu.org> 3415 3416 * configure.ac (enable-lto): Add Darwin to the list of supported lto 3417 targets and amend comment. 3418 * configure: Regenerate. 3419 3420 2010-09-03 Jack Howarth <howarth@bromo.med.uc.edu> 3421 3422 * configure.ac: Enable LTO by default on Darwin. 3423 * configure: Regenerate. 3424 3425 2010-07-23 Marc Glisse <marc.glisse@normalesup.org> 3426 3427 PR bootstrap/44455 3428 * configure.ac (extra_mpfr_configure_flags): Copy from 3429 extra_mpc_gmp_configure_flags. 3430 * configure: Re-generated. 3431 34322010-09-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> 3433 3434 Sync from GCC: 3435 3436 PR bootstrap/45796 3437 * Makefile.def (info-gcc, dvi-gcc, pdf-gcc, html-gcc): 3438 Depend on all-build-libiberty. 3439 * Makefile.in: Regenerate. 3440 34412010-09-27 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> 3442 3443 Sync from GCC: 3444 3445 PR bootstrap/44621 3446 * configure.ac: Fix unportable shell quoting. 3447 * configure: Regenerate. 3448 34492010-07-26 Naveen.H.S <naveen.S@kpitcummins.com> 3450 3451 * configure.ac: Support all v850 targets. 3452 * configure: Regenerate. 3453 34542010-07-17 Jack Howarth <howarth@bromo.med.uc.edu> 3455 3456 PR target/44862 3457 * Makefile.tpl (POSTSTAGE1_CXX_EXPORT): 3458 Provide -B option to allow for link spec %s substitutions for 3459 libstdc++.a on darwin. 3460 * Makefile.in: Regenerate. 3461 34622010-06-10 Alexandre Oliva <aoliva@redhat.com> 3463 3464 * Makefile.def (configure-gcc): Depend on all-libelf. 3465 * Makefile.in: Rebuild. 3466 34672010-06-01 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> 3468 3469 * config.sub, config.guess: Update from upstream sources. 3470 34712010-06-01 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> 3472 3473 Sync from GCC: 3474 3475 2010-05-05 Sebastian Pop <sebastian.pop@amd.com> 3476 * configure.ac: Allow all the versions greater than 0.10 of PPL. 3477 * configure: Regenerated. 3478 3479 2010-04-20 Eric Botcazou <ebotcazou@adacore.com> 3480 * configure.ac (BUILD_CONFIG): Redirect output to /dev/null. 3481 * configure: Regenerate. 3482 3483 2010-04-17 Ralf Cors<E9>pius <ralf.corsepius@rtems.org> 3484 * configure.ac (*-*-rtems*): Add target-libiberty to $skipdirs. 3485 * configure: Regenerate. 3486 3487 2010-04-16 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> 3488 * configure.ac: Check for elf_getshdrstrndx or elf_getshstrndx 3489 separately. 3490 * configure: Regenerate. 3491 3492 2010-04-13 Steve Ellcey <sje@cup.hp.com> 3493 * configure: Regenerate after change to elf.m4. 3494 3495 2010-04-02 Sebastian Pop <sebastian.pop@amd.com> 3496 * configure.ac: Add brackets around AC_TRY_COMPILE alternative. 3497 * configure: Regenerated. 3498 3499 2010-04-02 Sebastian Pop <sebastian.pop@amd.com> 3500 * configure.ac: Print "buggy but acceptable" when CLooG 3501 revision is less than 9. 3502 * configure: Regenerated. 3503 35042010-05-26 Dave Korn <dave.korn.cygwin@gmail.com> 3505 3506 Merge from gcc: 3507 3508 2010-05-18 Steven Bosscher <steven@gcc.gnu.org> 3509 * configure.ac (--enable-lto): All *-apple-darwin* now support LTO. 3510 * configure: Regenerate. 3511 3512 2010-05-07 Steven Bosscher <steven@gcc.gnu.org> 3513 * configure.ac (--enable-lto): Add x86_64-apple-darwin* as 3514 a platform that supports LTO. 3515 * configure: Regenerate. 3516 3517 2010-04-27 Dave Korn <dave.korn.cygwin@gmail.com> 3518 PR lto/42776 3519 * configure.ac (--enable-lto): Refactor handling so libelf tests 3520 are only performed inside then-clause of ACX_ELF_TARGET_IFELSE, 3521 and allow LTO to be explicitly enabled on non-ELF platforms that 3522 are known to support it inside else-clause. 3523 * configure: Regenerate. 3524 35252010-04-27 Roland McGrath <roland@redhat.com> 3526 H.J. Lu <hongjiu.lu@intel.com> 3527 3528 * configure.ac (--enable-gold): Support both, both/gold and 3529 both/bfd to add gold to configdirs without removing ld. 3530 * configure: Regenerated. 3531 3532 * Makefile.def: Add install-gold dependency to install-ld. 3533 * Makefile.in: Regenerated. 3534 35352010-04-14 Tristan Gingold <gingold@adacore.com> 3536 3537 * configure.ac (alpha*-*-*vms*): Remove ld from noconfigdirs. 3538 * configure: Regenerate. 3539 35402010-04-08 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> 3541 3542 Merge from gcc: 3543 PR bootstrap/43615 3544 PR bootstrap/43328 3545 Revert: 3546 2010-03-31 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> 3547 * configure.ac: Do not pass --enable-multilib nor 3548 --disable-multilib in baseargs. Accept explicitly passed 3549 --enable_multilib. 3550 * configure: Regenerate. 3551 35522010-03-31 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> 3553 3554 PR bootstrap/43328 3555 * configure.ac: Do not pass --enable-multilib nor 3556 --disable-multilib in baseargs. Accept explicitly passed 3557 --enable_multilib. 3558 * configure: Regenerate. 3559 35602010-03-23 Joseph Myers <joseph@codesourcery.com> 3561 3562 * configure.ac (tic6x-*-*): New case. 3563 * configure: Regenerate. 3564 35652010-03-23 Joseph Myers <joseph@codesourcery.com> 3566 3567 Merge from gcc: 3568 2010-03-19 Jack Howarth <howarth@bromo.med.uc.edu> 3569 PR ada/42554 3570 * configure.ac: Only pass -c to ranlib for darwin9 and earlier. 3571 * configure: Regenerate. 3572 35732010-03-23 Joseph Myers <joseph@codesourcery.com> 3574 3575 * config.sub: Update to version 2010-03-22. 3576 * config.guess: Update to version 2009-12-30. 3577 35782010-03-14 Joseph Myers <joseph@codesourcery.com> 3579 3580 Merge from gcc: 3581 2010-01-11 Richard Guenther <rguenther@suse.de> 3582 PR lto/41569 3583 * Makefile.def (all-lto-plugin): Depend on all-gcc. 3584 * Makefile.in: Regenerated. 3585 35862010-03-01 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> 3587 3588 PR libstdc++/32499 3589 * configure.ac (RANLIB): Default to true. 3590 (STRIP): Likewise. 3591 (RANLIB_FOR_TARGET): Remove superfluous : argument. 3592 * configure: Regenerate. 3593 35942010-02-17 Nick Clifton <nickc@redhat.com> 3595 3596 PR 11238 3597 * Makefile.tpl (local-distclean): Also remove config.cache files in 3598 sub-directories as there may not be Makefiles present in the 3599 sub-directories. 3600 * Makefile.tpl: Use "-exec rm {}" rather than "-delete" to delete 3601 the config.cache files found by the find command. 3602 3603 * Makefile.in: Regenerate. 3604 * configure.ac: Revert previous delta. 3605 * configure: Regenerate. 3606 36072010-02-15 Nick Clifton <nickc@redhat.com> 3608 3609 PR 11238 3610 * configure.ac: Delete config.cache files in sub-directories when 3611 deleting Makefiles. 3612 * configure: Regenerate. 3613 36142010-02-15 Nick Clifton <nickc@redhat.com> 3615 3616 * configure.ac: Sync from gcc. 3617 * configure: Regenerate. 3618 36192010-01-31 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> 3620 3621 Sync from gcc: 3622 * configure.ac: Add "recommended" version checks for GMP/MPC. 3623 Update recommended GMP/MPFR/MPC versions. 3624 * configure: Regenerate. 3625 36262010-01-25 Joern Rennecke <amylaar@spamcop.net> 3627 3628 gcc PR libstdc++/36101, gcc PR libstdc++/42813 3629 * configure.ac (bootstrap_target_libs): Make inclusion of 3630 target-libgomp conditional on libgomb being in target_configdirs. 3631 * configure: Regenerate. 3632 36332010-01-23 Joern Rennecke <amylaar@spamcop.net> 3634 3635 gcc PR libstdc++/36101, gcc PR libstdc++/42813 3636 * configure.ac (bootstrap_target_libs): Include target-libgomp. 3637 * configure: Regenerate. 3638 36392010-01-22 Joern Rennecke <amylaar@spamcop.net> 3640 3641 gcc PR libstdc++/36101, gcc PR libstdc++/42813 3642 * configure.ac (target_configdirs): Substitute. 3643 * Makefile.def: Bootstrap target module libgomp. 3644 Add dependency of all-target-libstdc++-v3 on configure-target-libgomp. 3645 * Makefile.tpl (TARGET_CONFIGDIRS): New makefile variable. 3646 (BASE_TARGET_EXPORTS): Export TARGET_CONFIGDIRS. 3647 * configure, Makefile.in: Regenerate. 3648 36492009-12-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> 3650 3651 * libtool.m4: Sync from git Libtool. 3652 * ltmain.sh: Likewise. 3653 * ltoptions.m4: Likewise. 3654 * ltversion.m4: Likewise. 3655 * lt~obsolete.m4: Likewise. 3656 36572010-01-07 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> 3658 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org> 3659 3660 PR bootstrap/42424 3661 * configure.ac: Include libtool m4 files. 3662 (_LT_CHECK_OBJDIR): Call it. 3663 (extra_mpc_mpfr_configure_flags, extra_mpc_gmp_configure_flags, 3664 gmplibs, ppllibs, clooglibs): Use $lt_cv_objdir. 3665 3666 * configure: Regenerate. 3667 36682010-01-07 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> 3669 3670 PR bootstrap/41818 3671 * Makefile.tpl (BASE_TARGET_EXPORTS): Only add TARGET_LIB_PATH 3672 to $(RPATH_ENVVAR) if bootstrapping. Fix typo in comment. 3673 * Makefile.in: Regenerate. 3674 36752009-12-18 Ben Elliston <bje@au.ibm.com> 3676 3677 * config.sub, config.guess: Update from upstream sources. 3678 36792009-12-17 Jeff Johnston <jjohnstn@redhat.com> 3680 3681 * COPYING.NEWLIB: Update copyright date. 3682 * COPYING.LIBGLOSS: Ditto. 3683 36842009-12-07 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> 3685 3686 PR middle-end/30447 3687 PR middle-end/30789 3688 PR other/40302 3689 3690 * configure.ac: Require MPC. 3691 * configure: Regenerate. 3692 3693 * configure.ac: Update minimum MPC version to 0.8. 3694 * configure: Regenerate. 3695 36962009-11-20 Paolo Bonzini <bonzini@gnu.org> 3697 3698 * config.guess: Sync with upstream and gcc. 3699 * config.sub: Sync with upstream and gcc. 3700 37012009-11-16 Alexandre Oliva <aoliva@redhat.com> 3702 3703 * Makefile.def: Restore host and target settings for gmp. 3704 * Makefile.in: Rebuild. 3705 37062009-11-16 Alexandre Oliva <aoliva@redhat.com> 3707 3708 * configure.ac: Add libelf to host_libs. Enable in-tree configury 3709 of ppl and cloog. Fix in-tree configury of libelf, skip tests. 3710 Fix portability of test of C++ as bootstrap language. Add 3711 ppl/src/ppl-config.o to the bootstrap compare exclusion list. 3712 * configure: Rebuild. 3713 * Makefile.def: Drop host and target settings from gmp, mpfr, ppl, 3714 and cloog. Fix in-tree ppl configuration. Introduce libelf 3715 in-tree building. 3716 * Makefile.tpl (POSTSTAGE1_CXX_EXPORT): New. 3717 (POSTSTAGE1_HOST_EXPORTS): Use it. 3718 (STAGE[+id+]_CXXFLAGS): New. 3719 (BASE_FLAGS_TO_PASS): Pass it down. 3720 (configure-stage[+id+]-[+prefix+][+module+]): Use it. Add 3721 extra_exports. 3722 (all-stage[+id+]-[+prefix+][+module+]): Likewise. 3723 (configure-[+prefix+][+module+], all-[+prefix+][+module+]): Add 3724 extra_exports. 3725 * Makefile.in: Rebuild. 3726 37272009-11-06 Ozkan Sezer <sezeroz@gmail.com> 3728 3729 * configure.ac (FLAGS_FOR_TARGET): Add -L and -isystem 3730 paths for *-w64-mingw* and x86_64-*mingw*. 3731 * configure: Regenerated. 3732 37332009-10-30 Kai Tietz <kai.tietz@onevision.com> 3734 3735 * configure.ac: Disable target-winsup & co for 3736 x86_64-*-mingw* and *-w64-mingw* targets. 3737 * configure: Regenerated. 3738 37392009-10-23 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> 3740 3741 * configure.ac (CLooG test): Use = with test. 3742 * configure: Regenerate. 3743 37442009-10-22 Richard Guenther <rguenther@suse.de> 3745 3746 * configure.ac: Do not set LIBS for ppl/cloog checks. Disable 3747 cloog if the ppl version check failed. Move flags saving 3748 before setting in libelf check. 3749 * configure: Regenerate. 3750 37512009-10-21 Richard Guenther <rguenther@suse.de> 3752 3753 * configure.ac: Adjust the ppl and cloog configure to work as 3754 documented. Disable cloog if ppl was disabled. Omit the version 3755 checks if they were disabled. 3756 * configure: Re-generate. 3757 37582009-10-13 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> 3759 3760 * configure.ac: Add 'lto' to enable_languages, not 3761 new_enable_languages, and only if not already present. 3762 * configure: Regenerate. 3763 37642009-10-06 Ian Lance Taylor <iant@google.com> 3765 3766 * Makefile.def: check-gold depends upon all-gas. 3767 * Makefile.in: Rebuild. 3768 37692009-10-03 2009-02-05 Rafael Avila de Espindola <espindola@google.com> 3770 3771 * Makefile.def: all-lto-plugin depends on all-libiberty. 3772 set bootstrap=true for lto-plugin. 3773 Add lto-plugin. 3774 * Makefile.in: Regenerate. 3775 * configure.ac (host_libs): Add lto-plugin. 3776 * configure: Regenerate. 3777 37782009-10-03 Diego Novillo <dnovillo@google.com> 3779 3780 * Makefile.tpl (HOST_EXPORTS): Add LIBELFLIBS and LIBELFINC. 3781 (HOST_LIBELFLIBS): Define. 3782 (HOST_LIBELFINC): Define. 3783 * Makefile.in: Regenerate. 3784 * configure.ac: Add --enable-lto. 3785 Add --with-libelf, --with-libelf-include and --with-libelf-lib. 3786 If --enable-lto is used, add 'lto' to new_enable_languages. 3787 If --enable-lto is used and gold is enabled, add 3788 lto-plugin to configdirs. 3789 * configure: Regenerate. 3790 37912009-10-03 Simon Baldwin <simonb@google.com> 3792 3793 * configure.ac: If --with-system-zlib, suppress local zlib and 3794 pass --with-system-zlib to subdir configure scripts. 3795 * configure: Regenerate. 3796 37972009-10-01 Loren J. Rittle <ljrittle@acm.org> 3798 Paolo Bonzini <bonzini@gnu.org> 3799 3800 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Use $$s rather than 3801 $(srcdir). 3802 * Makefile.in: Rebuilt. 3803 38042009-09-29 Paolo Bonzini <bonzini@gnu.org> 3805 3806 Sync from gcc: 3807 2009-09-26 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> 3808 3809 * configure.ac: Update minimum MPC version to 0.7. 3810 * configure: Regenerate. 3811 38122009-09-25 Nick Clifton <nickc@redhat.com> 3813 3814 * configure.ac: Pass any --cache-file=/dev/null option on to 3815 subconfigures. 3816 * configure: Regenerate. 3817 38182009-09-23 Nick Clifton <nickc@redhat.com> 3819 3820 * config.sub, config.guess: Update from upstream sources. 3821 38222009-09-22 Loren J. Rittle <ljrittle@acm.org> 3823 3824 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Remove stray $$r/. 3825 * Makefile.in: Rebuilt. 3826 38272009-09-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> 3828 3829 PR bootstrap/32272 3830 * configure.ac: Error out if $srcdir isn't '.' but contains 3831 host-${host_noncanonical}. 3832 * configure: Regenerate. 3833 38342009-09-21 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> 3835 3836 * configure.ac: If bootstrapping a combined tree with 3837 --enable-gold, require c++ in stage1_languages. 3838 * configure: Regenerate. 3839 3840 * configure.ac: Also add target_libs of stage1_languages to 3841 bootstrap_target_libs. 3842 * configure: Regenerate. 3843 3844 * configure.ac: Diagnose --enable-build-with-cxx bootstrap 3845 with --enable-languages not containing c++. 3846 * configure: Regenerate. 3847 38482009-09-16 Jie Zhang <jie.zhang@analog.com> 3849 3850 * configure.ac: Disable java and boehm-gc for bfin-*-*. 3851 * configure: Regenerate. 3852 38532009-09-08 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> 3854 3855 * configure.ac: Do not use $extrasub for replacing @if/@endif 3856 parts in Makefile; instead, use additional arguments to 3857 AC_CONFIG_COMMANDS to do the replacement manually, with several 3858 sed invocations, to avoid HP-UX sed command limits. 3859 * configure: Regenerate. 3860 38612009-09-04 Alexandre Oliva <aoliva@redhat.com> 3862 3863 * configure.ac (with-build-config): Document. Handle without. 3864 Handle missing argument. 3865 * configure: Rebuilt. 3866 38672009-09-03 Alexandre Oliva <aoliva@redhat.com> 3868 3869 * configure.ac (--with-build-config): New. Set BUILD_CONFIG. 3870 Default to bootstrap-debug only if compare-debug works. 3871 * configure: Rebuilt. 3872 * Makefile.tpl: Make BUILD_CONFIG configure-configurable. 3873 * Makefile.in: Rebuilt. 3874 38752009-09-01 Alexandre Oliva <aoliva@redhat.com> 3876 3877 * Makefile.tpl (BUILD_CONFIG): Default to bootstrap-debug. 3878 * Makefile.in: Rebuilt. 3879 38802009-09-02 Paolo Bonzini <bonzini@gnu.org> 3881 3882 * Makefile.tpl (AWK): Fix typo. 3883 * Makefile.in: Regenerate. 3884 38852009-09-02 Paolo Bonzini <bonzini@gnu.org> 3886 3887 * configure.ac: Detect awk and sed. 3888 * Makefile.def (flags_to_pass): Add AWK and SED. 3889 * Makefile.tpl (AWK, SED): New. 3890 (BASE_FLAGS_TO_PASS): Add AWK and SED. 3891 * configure: Regenerate. 3892 * Makefile.in: Regenerate. 3893 38942009-09-01 Tristan Gingold <gingold@adacore.com> 3895 3896 * setup.com: Ported to Itanium VMS. Can also build using DCL scripts. 3897 Remove logical names. 3898 38992009-08-31 Dave Korn <dave.korn.cygwin@gmail.com> 3900 3901 * ltmain.sh (func_normal_abspath): New function. 3902 (func_relative_path): Likewise. 3903 (func_mode_help): Document new -bindir option for link mode. 3904 (func_mode_link): Add new -bindir option, and use it to place 3905 output DLL if specified. 3906 39072009-08-24 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> 3908 3909 * configure.ac (AC_PREREQ): Bump to 2.64. 3910 39112009-08-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> 3912 3913 * README-maintainer-mode: Point directly to upstream locations 3914 for autoconf, automake, libtool, gettext, instead of copies on 3915 sources.redhat.com. Document required versions. 3916 * configure.ac: Do not substitute datarootdir, htmldir, 3917 pdfdir, docdir. Do not process --with-datarootdir, 3918 --with-htmldir, --with-pdfdir, --with-docdir. 3919 * configure: Regenerate. 3920 3921 * configure: Regenerate. 3922 3923 * compile: Sync from Automake 1.11. 3924 * depcomp: Likewise. 3925 * install-sh: Likewise. 3926 * missing: Likewise. 3927 * mkinstalldirs: Likewise. 3928 * ylwrap: Likewise. 3929 39302009-08-19 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> 3931 3932 * configure.ac: Call AC_DISABLE_OPTION_CHECKING. 3933 (baseargs): Add --disable-option-checking. 3934 * configure: Regenerate. 3935 3936 * Makefile.def (configure-target-libiberty): Depend on 3937 all-binutils and all-ld. 3938 (configure-target-newlib): Likewise. 3939 * Makefile.in: Regenerate. 3940 39412009-08-19 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> 3942 3943 Sync with GCC, merge: 3944 3945 2009-07-31 Christian Bruel <christian.bruel@st.com> 3946 3947 * configure.ac (sh*-*-elf): Don't add target-libgloss to noconfigdirs. 3948 * configure: Regenerate. 3949 3950 2009-07-06 Ian Lance Taylor <iant@google.com> 3951 3952 * configure.ac: Add missing comma in AC_ARG_WITH(boot-libs). 3953 * configure: Rebuild. 3954 3955 2009-06-26 Steve Ellcey <sje@cup.hp.com> 3956 3957 PR bootstrap/40338 3958 * configure.ac (comparestring): Create new variable. 3959 * Makefile.tpl (comparestring): Use to skip some comparisions. 3960 * configure: Regenerate. 3961 * Makefile.in: Regenerate. 3962 3963 2009-06-23 Ian Lance Taylor <iant@google.com> 3964 3965 * configure.ac: Add --enable-build-with-cxx. When set, add c++ to 3966 boot_languages. Only bootstrap target libraries listed in 3967 target_libs for some boot language. Add --with-stage1-ldflags, 3968 --with-stage1-libs, --with-boot-ldflags, --with-boot-libs. Remove 3969 with_host_libstdcxx from ppllibs. Only add -fkeep-inline-functions 3970 if not building with C++. 3971 * Makefile.def: For target_module libstdc++-v3, set bootstrap=true. 3972 * Makefile.tpl (STAGE1_LDFLAGS, STAGE1_LIBS): New variables. 3973 (POSTSTAGE1_LDFLAGS, POSTSTAGE1_LIBS): New variables. 3974 (HOST_EXPORTS): Add STAGE1_LDFLAGS to LDFLAGS. Export HOST_LIBS. 3975 (POSTSTAGE1_HOST_EXPORTS): Set CXX and CXX_FOR_BUILD. Add 3976 POSTSTAGE1_LDFLAGS to LDFLAGS. Export HOST_LIBS. 3977 (POSTSTAGE1_FLAGS_TO_PASS): Likewise. 3978 * configure, Makefile.in: Rebuild. 3979 3980 2009-06-08 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> 3981 3982 * configure.ac: Detect MPC in default directory. 3983 * configure: Regenerate. 3984 3985 2009-06-02 Richard Sandiford <r.sandiford@uk.ibm.com> 3986 3987 * configure.ac (powerpc-*-aix*, rs6000-*-aix*): Add target-newlib 3988 to noconfdirs. 3989 * configure: Regenerate. 3990 3991 2009-05-29 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> 3992 3993 * Makefile.def: Add MPC support and dependencies. 3994 * configure.ac: Likewise. Reorganize GMP/MPFR checks. 3995 3996 * Makefile.in, configure: Regenerate. 3997 3998 2009-05-24 Nicolas Roche <roche@adacore.com> 3999 4000 * Makefile.tpl (compare-target): Skip ./ada/*tools directories. 4001 * Makefile.in: Regenerate. 4002 4003 2009-05-21 Dave Korn <dave.korn.cygwin@gmail.com> 4004 4005 * configure.ac (cygwin noconfigdirs): Remove libgcj. 4006 * configure: Regenerate. 4007 4008 2009-05-07 Dave Korn <dave.korn.cygwin@gmail.com> 4009 4010 * configure.ac ($with_ppl): Default to no if not supplied. 4011 ($with_cloog): Likewise. 4012 configure: Regenerate. 4013 4014 2009-04-24 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> 4015 4016 PR bootstrap/39739 4017 * configure.ac (extra_mpfr_configure_flags): Set and AC_SUBST. 4018 * Makefile.def (module=mpfr): Use extra_mpfr_configure_flags. 4019 4020 * configure, Makefile.in: Regenerate. 4021 4022 2009-04-14 Jakub Jelinek <jakub@redhat.com> 4023 4024 * configure.ac: Change copyright header to refer to version 4025 3 of the GNU General Public License and to point readers at the 4026 COPYING3 file and the FSF's license web page. 4027 * Makefile.def: Likewise. 4028 * Makefile.tpl: Likewise. 4029 * Makefile.in: Regenerate. 4030 4031 2009-04-09 Jack Howarth <howarth@bromo.med.uc.edu> 4032 4033 * configure.ac: Restore match for darwin9 or later. Use double 4034 brackets since regeneration eats one pair. 4035 * configure: Regenerate. 4036 40372009-08-18 Christopher Faylor <me+cygwin@cgf.cx> 4038 4039 * MAINTAINERS: Perform some obvious fixups. 4040 40412009-08-17 Ben Elliston <bje@au.ibm.com> 4042 4043 * config.sub, config.guess: Update from upstream sources. 4044 40452009-08-06 Michael Eager <eager@eagercon.com> 4046 4047 * configure.ac: Add Microblaze target. 4048 * configure: Regenerate. 4049 40502009-07-02 Tristan Gingold <gingold@adacore.com> 4051 4052 * configure.ac: Do not exclude gas for i386-*-darwin. 4053 Add a case for x86_64-*-darwin. 4054 * configure: Regenerate. 4055 40562009-06-26 Doug Evans <dje@sebabeach.org> 4057 4058 * Makefile.def (host_modules): Add cgen. 4059 * Makefile.in: Regenerate. 4060 * configure.ac (host_tools): Add cgen. 4061 * configure: Regenerate. 4062 40632009-06-17 Michael Eager <eager@eagercon.com> 4064 4065 * COPYING.LIBGLOSS: Add Xilinx license. 4066 40672009-06-15 Ryan Mansfield <rmansfield@qnx.com> 4068 4069 * configure.ac: Define is_elf for QNX Neutrino targets. 4070 * configure: Regenerate. 4071 40722009-06-03 Jerome Guitton <guitton@adacore.com> 4073 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> 4074 4075 * Makefile.tpl (all): Avoid a trailing backslash. 4076 * Makefile.in: Regenerate. 4077 40782009-06-03 Ben Elliston <bje@au.ibm.com> 4079 4080 * config.sub, config.guess: Update from upstream sources. 4081 40822009-06-02 Alexandre Oliva <aoliva@redhat.com> 4083 4084 * Makefile.tpl ([+compare-target+]): Compare all stage 4085 directories, rather than just gcc. 4086 * Makefile.in: Rebuilt. 4087 40882009-05-28 Doug Kwan <dougkwan@google.com> 4089 4090 * configure.ac: Support gold for target arm*-*-*. 4091 * configure: Regenerate. 4092 40932009-05-27 Alexandre Oliva <aoliva@redhat.com> 4094 4095 * Makefile.tpl (all): Avoid harmless warning in make all when 4096 gcc-bootstrap is enabled but stage_last does not exist. 4097 * Makefile.in: Rebuilt. 4098 40992009-05-25 Tristan Gingold <gingold@adacore.com> 4100 4101 * setup.com: Complete the file with configuration and build. 4102 41032009-05-18 Alexandre Oliva <aoliva@redhat.com> 4104 4105 PR other/40159 4106 * Makefile.tpl (all): Don't assume gcc-bootstrap and 4107 gcc-no-bootstrap are mutually exclusive. 4108 * Makefile.in: Rebuilt. 4109 41102009-05-18 Alexandre Oliva <aoliva@redhat.com> 4111 4112 PR other/40159 4113 * Makefile.tpl (all): Don't end with unconditional success. 4114 * Makefile.in: Rebuilt. 4115 41162009-05-12 Alexandre Oliva <aoliva@redhat.com> 4117 4118 PR target/37137 4119 * Makefile.def (flags_to_pass): Remove redundant and incomplete 4120 STAGE1_CFLAGS, STAGE2_CFLAGS, STAGE3_CFLAGS, and STAGE4_CFLAGS. 4121 Add FLAGS_FOR_TARGET and BUILD_CONFIG. 4122 (bootstrap_stage): Remove bootstrap-debug custom stages. Turn 4123 stage_configureflags, stage_cflags and stage_libcflags into 4124 explicit Makefile macros. 4125 * Makefile.tpl (HOST_EXPORTS, EXTRA_HOST_FLAGS): Pass GCJ and 4126 GFORTRAN. 4127 (POSTSTAGE1_HOST_EXPORTS): Add XGCC_FLAGS_FOR_TARGET and TFLAGS to 4128 CC. Set CC_FOR_BUILD from CC. 4129 (BASE_TARGET_EXPORTS, RAW_CXX_TARGET_EXPORTS, 4130 NORMAL_TARGET_EXPORTS): Move SYSROOT_CFLAGS_FOR_TARGET and 4131 DEBUG_PREFIX_CFLAGS_FOR_TARGET from CFLAGS and CXXFLAGS to 4132 XGCC_FLAGS_FOR_TARGET. Add it along with TFLAGS to CC, CXX, GCJ, 4133 and GFORTRAN. 4134 (TFLAGS, STAGE_CFLAGS, STAGE_TFLAGS, STAGE_CONFIGURE_FLAGS): New. 4135 (_LIBCFLAGS): Renamed to _TFLAGS. 4136 (do-compare-debug, do-compare3-debug): Drop. 4137 (CC, GCC_FOR_TARGET, CXX_FOR_TARGET, RAW_CXX_FOR_TARGET, 4138 GCJ_FOR_TARGET, GFORTRAN_FOR_TARGET): Remove FLAGS_FOR_TARGET. 4139 (FLAGS_FOR_TARGET, SYSROOT_CFLAGS_FOR_TARGET, 4140 DEBUG_PREFIX_CFLAGS_FOR_TARGET): Move down. 4141 (XGCC_FLAGS_FOR_TARGET): New. 4142 (BASE_FLAGS_TO_PASS): Pass STAGEid_CFLAGS, STAGEid_TFLAGS and TFLAGS. 4143 (EXTRA_HOST_FLAGS): Pass GCJ and GFORTRAN. 4144 (POSTSTAGE1_FLAGS_TO_PASS): Move SYSROOT_CFLAGS_FOR_TARGET and 4145 DEBUG_PREFIX_CFLAGS_FOR_TARGET from CFLAGS, CXXFLAGS, LIBCFLAGS, 4146 LIBCXXFLAGS to XGCC_FLAGS_FOR_TARGET. Add it along with TFLAGS 4147 to CC, CXX, GCJ, and GFORTRAN. Pass XGCC_FLAGS_FOR_TARGET and 4148 TFLAGS. 4149 (BUILD_CONFIG): Include if requested. 4150 (all): Set TFLAGS on bootstrap. 4151 (configure-stageid-prefixmodule): Pass TFLAGS, adjust FLAGS. 4152 (all-stageid-prefixmodule): Likewise. 4153 (do-clean, distclean-stageid): Set TFLAGS. 4154 (restrap): Fix whitespace. 4155 * Makefile.in: Rebuilt. 4156 41572009-04-25 Eric Botcazou <ebotcazou@adacore.com> 4158 4159 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Add GNATBIND. 4160 (POSTSTAGE1_FLAGS_TO_PASS): Pick up exported value for GNATBIND. 4161 * Makefile.in: Regenerate. 4162 41632009-04-24 Eli Zaretskii <eliz@gnu.org> 4164 4165 * config.guess (pc:*:*:*): Return i586-pc-msdosdjgpp, for 4166 consistency with config.sub. (Update from upstream sources.) 4167 41682009-04-21 Joseph Myers <joseph@codesourcery.com> 4169 4170 * texinfo/texinfo.tex: Update to version 2009-03-28.05. 4171 41722009-04-17 Ben Elliston <bje@au.ibm.com> 4173 4174 * config.sub, config.guess: Update from upstream sources. 4175 41762009-04-15 Anthony Green <green@moxielogic.com> 4177 4178 * configure.ac: Add moxie support. 4179 * configure: Rebuilt. 4180 41812009-04-09 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> 4182 4183 * configure.ac: Bump minimum GMP/MPFR versions to 4.2 and 2.3.1. 4184 * configure: Regenerate. 4185 41862009-04-09 H.J. Lu <hongjiu.lu@intel.com> 4187 4188 PR gas/10039 4189 * configure.ac: Require texinfo 4.7. 4190 * configure: Regenerated. 4191 41922009-04-09 Steve Ellcey <sje@cup.hp.com> 4193 4194 * Makefil.def (languages): New entries. 4195 * Makefile.tpl (check-gcc-*): New generic target. 4196 * Makefile.in: Regenerate. 4197 41982009-03-27 Eli Zaretskii <eliz@gnu.org> 4199 4200 * djunpack.bat: Use ".." quoting in Sed command, for the sake of 4201 Windows builds of Sed. 4202 42032009-03-18 Tom Tromey <tromey@redhat.com> 4204 4205 * configure: Rebuild. 4206 * configure.ac (host_libs): Add libiconv. 4207 * Makefile.in: Rebuild. 4208 * Makefile.def (host_modules): Add libiconv. 4209 (configure-gdb, all-gdb): Depend on libiconv. 4210 42112009-03-16 Tristan Gingold <gingold@adacore.com> 4212 4213 * configure.ac: Treat gdb as supported on x86_64-darwin. 4214 * configure: Regenerate. 4215 42162009-03-16 Joseph Myers <joseph@codesourcery.com> 4217 4218 Merge from GCC: 4219 4220 2009-03-16 Joseph Myers <joseph@codesourcery.com> 4221 4222 * configure.ac (--with-host-libstdcxx): New option. 4223 * configure: Regenerate. 4224 4225 2009-01-29 Robert Millan <rmh@aybabtu.com> 4226 4227 * configure.ac: Recognize GNU/kOpenSolaris (*-*-kopensolaris*-gnu). 4228 * configure: Regenerate. 4229 4230 2009-01-12 Sebastian Pop <sebastian.pop@amd.com> 4231 4232 PR tree-optimization/38515 4233 * configure.ac (cloog-polylib): Removed. 4234 (with_ppl, with_cloog): Test for "no". 4235 * configure: Regenerated. 4236 42372009-03-01 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> 4238 4239 Backport from git Libtool: 4240 4241 2009-01-19 Robert Millan <rmh@aybabtu.com> 4242 Support GNU/kOpenSolaris. 4243 * libltdl/m4/libtool.m4 (_LT_SYS_DYNAMIC_LINKER) 4244 (_LT_CHECK_MAGIC_METHOD, _LT_COMPILER_PIC, _LT_LINKER_SHLIBS) 4245 (_LT_LANG_CXX_CONFIG) [kopensolaris*-gnu]: Recognize 4246 GNU/kOpenSolaris. 4247 42482009-02-05 Andreas Schwab <schwab@suse.de> 4249 4250 * Makefile.tpl (stage_last): Define $r and $s before using 4251 $(RECURSE_FLAGS_TO_PASS). 4252 * Makefile.in: Regenerate 4253 42542009-01-21 Jeff Johnston <jjohnstn@redhat.com> 4255 4256 * COPYING.NEWLIB: Add ARM license. 4257 42582009-01-16 Alan Modra <amodra@bigpond.net.au> 4259 4260 * Makefile.def (configure-opcodes): Depend on configure-libiberty. 4261 (all-opcodes): Depend on all-libiberty. 4262 * Makefile.in: Regenerate. 4263 42642009-01-15 Douglas B Rupp <rupp@gnat.com> 4265 4266 * configure.ac (ia64*-*-*vms*): Add case with no gdb or ld support. 4267 * configure: Regenerate. 4268 42692008-12-18 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> 4270 4271 Backport link test fix from upstream Libtool: 4272 4273 * libltdl.m4 (_LT_SYS_DYNAMIC_LINKER, _LT_LINKER_SHLIBS): 4274 Add cache variables to tests that require the linker to work. 4275 For shlibpath_overrides_runpath, this also changes the semantics 4276 to let the result from the C compiler take precedence. 4277 compiler take precedence. 4278 42792008-12-02 Ben Elliston <bje@au.ibm.com> 4280 4281 * config.sub, config.guess: Update from upstream sources. 4282 42832008-12-17 Jeff Johnston <jjohnstn@redhat.com> 4284 4285 * COPYING.NEWLIB: Updated. 4286 * COPYING.LIBGLOSS: Ditto. 4287 42882008-12-16 Paolo Bonzini <bonzini@gnu.org> 4289 4290 Sync with GCC: 4291 4292 2008-12-12 Sebastian Pop <sebastian.pop@amd.com> 4293 4294 * configure.ac (ppllibs): Add by default the lib flags. 4295 * configure: Regenerate. 4296 4297 2008-12-04 Jack Howarth <howarth@bromo.med.uc.edu> 4298 4299 * configure.ac: Add double brackets on darwin[912]. 4300 * configure: Regenerate. 4301 4302 2008-12-02 Jack Howarth <howarth@bromo.med.uc.edu> 4303 4304 * configure.ac: Expand to darwin10 and later. 4305 * configure: Regenerate. 4306 43072008-12-02 Andreas Schwab <schwab@suse.de> 4308 4309 * Makefile.def: configure-target-boehm-gc depends on 4310 all-target-libstdc++-v3. 4311 * Makefile.in: Regenerate. 4312 43132008-12-02 Ben Elliston <bje@au.ibm.com> 4314 4315 * config.sub, config.guess: Update from upstream sources. 4316 43172008-11-27 Joseph Myers <joseph@codesourcery.com> 4318 4319 Merge from GCC: 4320 4321 2007-12-02 Matthias Klose <doko@ubuntu.com> 4322 4323 * config-ml.in: Remove 64bit configure tests. 4324 4325 2008-05-14 Rafael Espindola <espindola@google.com> 4326 4327 * config-ml.in: don't handle --enable-shared and --enable-static. 4328 4329 2008-09-02 Sebastian Pop <sebastian.pop@amd.com> 4330 Tobias Grosser <grosser@fim.uni-passau.de> 4331 Jan Sjodin <jan.sjodin@amd.com> 4332 Harsha Jagasia <harsha.jagasia@amd.com> 4333 Dwarakanath Rajagopal <dwarak.rajagopal@amd.com> 4334 Konrad Trifunovic <konrad.trifunovic@inria.fr> 4335 Adrien Eliche <aeliche@isty.uvsq.fr> 4336 4337 Merge from graphite branch. 4338 * configure: Regenerate. 4339 * Makefile.in: Regenerate. 4340 * configure.ac (host_libs): Add ppl and cloog. 4341 Add checks for PPL and CLooG. 4342 * Makefile.def (ppl, cloog): Added modules and dependences. 4343 * Makefile.tpl (PPLLIBS, PPLINC, CLOOGLIBS, CLOOGINC): New. 4344 (HOST_PPLLIBS, HOST_PPLINC, HOST_CLOOGLIBS, HOST_CLOOGINC): New. 4345 4346 2008-09-03 Richard Guenther <rguenther@suse.de> 4347 4348 * configure.ac: Always pass -DCLOOG_PPL_BACKEND to the 4349 cloog test. 4350 * configure: Re-generate. 4351 4352 2008-09-03 Sebastian Pop <sebastian.pop@amd.com> 4353 4354 * configure.ac (--with-cloog-polylib): New. 4355 (--disable-cloog-version-check): New. 4356 (--disable-ppl-version-check): New. 4357 * configure: Re-generate. 4358 4359 2008-09-05 Richard Guenther <rguenther@suse.de> 4360 4361 * configure.ac: Initialize clooglibs to -lcloog. 4362 * configure: Re-generate. 4363 4364 2008-10-13 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> 4365 4366 * configure.ac (MPFR check): Bump minimum version to 2.3.0 and 4367 recommended version to 2.3.2. 4368 4369 * configure: Regenerate. 4370 4371 2008-10-31 Ben Elliston <bje@au.ibm.com> 4372 4373 * configure.ac (spu-*-*): Remove special case. 4374 * configure: Regenerate. 4375 4376 Complete comment text from GCC version of: 4377 4378 2008-08-31 Aaron W. LaFramboise <aaronavay62@aaronwl.com> 4379 4380 * configure.ac (RPATH_ENVVAR): Use PATH on Windows. 4381 (GCC_SHLIB_SUBDIR): New. 4382 * Makefile.tpl (HOST_LIB_PATH_gcc): Use GCC_SHLIB_SUBDIR. 4383 * configure: Regenerate. 4384 * Makefile.in: Regenerate. 4385 43862008-11-27 Tristan Gingold <gingold@adacore.com> 4387 4388 * configure.ac: Build gdb for i?86-*-darwin* 4389 * configure: Regenerated. 4390 43912008-11-14 Daniel Jacobowitz <dan@codesourcery.com> 4392 4393 PR bootstrap/38014 4394 PR bootstrap/37923 4395 4396 Revert: 4397 4398 2008-10-24 Daniel Jacobowitz <dan@codesourcery.com> 4399 4400 * Makefile.tpl (HOST_EXPORTS): Correct CPPFLAGS typo. 4401 * Makefile.in: Regenerated. 4402 4403 2008-10-22 Daniel Jacobowitz <dan@codesourcery.com> 4404 4405 PR gdb/921 4406 PR gdb/1646 4407 PR gdb/2175 4408 PR gdb/2176 4409 4410 * Makefile.def (flags_to_pass): Add CPPFLAGS_FOR_BUILD and CPPFLAGS. 4411 * Makefile.tpl (BUILD_EXPORTS): Set CPPFLAGS. 4412 (EXTRA_BUILD_FLAGS): Correct typo. Pass CPPFLAGS. 4413 (HOST_EXPORTS): Pass CPPFLAGS. 4414 (CPPFLAGS_FOR_BUILD, CPPFLAGS, CPPFLAGS_FOR_TARGET): Define. 4415 (LDFLAGS_FOR_TARGET): Initialize from configure script. 4416 (EXTRA_TARGET_FLAGS): Set CPPFLAGS. 4417 * Makefile.in, configure: Regenerated. 4418 * configure.ac: Set CPPFLAGS_FOR_TARGET, LDFLAGS_FOR_TARGET, 4419 and CPPFLAGS_FOR_BUILD. 4420 44212008-10-29 Stefan Schulze Frielinghaus <xxschulz@de.ibm.com> 4422 4423 * configure.ac [spu-*-*]: Do not set skipdirs. 4424 * configure: Re-generate. 4425 44262008-10-24 Daniel Jacobowitz <dan@codesourcery.com> 4427 4428 * Makefile.tpl (HOST_EXPORTS): Correct CPPFLAGS typo. 4429 * Makefile.in: Regenerated. 4430 44312008-10-22 Daniel Jacobowitz <dan@codesourcery.com> 4432 4433 PR gdb/921 4434 PR gdb/1646 4435 PR gdb/2175 4436 PR gdb/2176 4437 4438 * Makefile.def (flags_to_pass): Add CPPFLAGS_FOR_BUILD and CPPFLAGS. 4439 * Makefile.tpl (BUILD_EXPORTS): Set CPPFLAGS. 4440 (EXTRA_BUILD_FLAGS): Correct typo. Pass CPPFLAGS. 4441 (HOST_EXPORTS): Pass CPPFLAGS. 4442 (CPPFLAGS_FOR_BUILD, CPPFLAGS, CPPFLAGS_FOR_TARGET): Define. 4443 (LDFLAGS_FOR_TARGET): Initialize from configure script. 4444 (EXTRA_TARGET_FLAGS): Set CPPFLAGS. 4445 * Makefile.in, configure: Regenerated. 4446 * configure.ac: Set CPPFLAGS_FOR_TARGET, LDFLAGS_FOR_TARGET, 4447 and CPPFLAGS_FOR_BUILD. 4448 44492008-09-29 Peter O'Gorman <pogma@thewrittenword.com> 4450 4451 * libtool.m4: Update to libtool 2.2.6. 4452 * lt~obsolete.m4: Update to libtool 2.2.6. 4453 * ltmain.sh: Update to libtool 2.2.6. 4454 * ltsugar.m4: Update to libtool 2.2.6. 4455 * ltversion.m4: Update to libtool 2.2.6. 4456 * ltoptions.m4: Update to libtool 2.2.6. 4457 * ltgcc.m4: Update to match changes from libtool 2.2.6. 4458 44592008-08-31 Aaron W. LaFramboise <aaronavay62@aaronwl.com> 4460 4461 * configure.ac (RPATH_ENVVAR): Use PATH on Windows. 4462 (GCC_SHLIB_SUBDIR): New. 4463 * Makefile.tpl (HOST_LIB_PATH_gcc): Use GCC_SHLIB_SUBDIR. 4464 * configure: Regenerate. 4465 * Makefile.in: Regenerate. 4466 44672008-08-28 Tristan Gingold <gingold@adacore.com> 4468 4469 * configure.ac (powerpc-*-darwin*, i?86-*-darwin*,x86_64-*-darwin9): 4470 Enable bfd, binutils and opcodes. 4471 * configure: Regenerate. 4472 44732008-08-16 Nicolas Roche <roche@adacore.com> 4474 4475 * Makefile.tpl: Add BOOT_ADAFLAGS. 4476 * Makefile.in: Regenerate. 4477 44782008-08-16 Richard Sandiford <rdsandiford@googlemail.com> 4479 4480 * configure.ac (mips*-*-*linux*, mips*-*-gnu*): Use mt-mips-gnu. 4481 * configure: Regenerate. 4482 44832008-07-30 Paolo Bonzini <bonzini@gnu.org> 4484 4485 Sync with gcc: 4486 2008-07-30 Paolo Bonzini <bonzini@gnu.org> 4487 4488 * configure.ac: Add makefile fragments for hpux. 4489 * Makefile.def (flags_to_pass): Add ADA_CFLAGS. 4490 * Makefile.tpl (HOST_EXPORTS): Pass ADA_CFLAGS. 4491 * configure: Regenerate. 4492 * Makefile.in: Regenerate. 4493 4494 2008-06-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> 4495 4496 * Makefile.tpl ($(srcdir)/configure): Update dependencies. 4497 * Makefile.in: Regenerate. 4498 * configure: Regenerate. 4499 45002008-06-18 Ian Lance Taylor <iant@google.com> 4501 4502 * src-release (BINUTILS_SUPPORT_DIRS): Remove mkdep and depcomp. 4503 4504 * src-release (BINUTILS_SUPPORT_DIRS): Add depcomp. 4505 45062008-06-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> 4507 4508 * configure: Regenerate. 4509 45102008-06-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> 4511 4512 * configure.ac: Set TOPLEVEL_CONFIGURE_ARGUMENTS early, when 4513 "$@" is still intact with both Autoconf 2.59 and 2.62. 4514 * configure: Regenerate. 4515 45162008-06-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> 4517 4518 * Makefile.tpl: Fix comment errors. 4519 * Makefile.in: Regenerate. 4520 45212008-06-13 Julian Brown <julian@codesourcery.com> 4522 4523 * configure.ac (arm*-*-linux-gnueabi): Don't disable building 4524 of libobjc for ARM EABI Linux. 4525 * configure: Regenerate. 4526 45272008-06-12 David S. Miller <davem@davemloft.net> 4528 David Edelsohn <edelsohn@gnu.org> 4529 4530 * configure.ac: Add powerpc*-*-* to gold supported targets. 4531 * configure: Regenerate. 4532 45332008-06-08 Joseph Myers <joseph@codesourcery.com> 4534 4535 PR tree-optimization/36218 4536 * Makefile.def (flags_to_pass): Add LDFLAGS_FOR_BUILD. 4537 * Makefile.tpl (EXTRA_BUILD_FLAGS): Define. 4538 (all prefix="build-"): Pass them to build-system sub-makes. 4539 * Makefile.in: Regenerate. 4540 45412008-05-16 Daniel Jacobowitz <dan@codesourcery.com> 4542 4543 * src-release (DEVO_SUPPORT): Add ChangeLog, MAINTAINERS, 4544 README-maintainer-mode, lt~obsolete.m4, ltgcc.m4, depcomp, 4545 mkdep, and compile. Update comments. 4546 (ETC_SUPPORT): Add ChangeLog and update comments. 4547 45482008-05-11 Ian Lance Taylor <iant@google.com> 4549 4550 * src-release (BINUTILS_SUPPORT_DIRS): Add elfcpp and gold. 4551 45522008-04-18 Paolo Bonzini <bonzini@gnu.org> 4553 4554 Sync with gcc: 4555 2008-04-18 Paolo Bonzini <bonzini@gnu.org> 4556 4557 PR bootstrap/35457 4558 * configure.ac: Include override.m4. 4559 * configure: Regenerate. 4560 4561 2008-04-18 Paolo Bonzini <bonzini@gnu.org> 4562 4563 * Makefile.tpl (restrap): Call `make all' using double-colon rules. 4564 * Makefile.in: Regenerate. 4565 4566 2008-04-11 Eric B. Weddington <eweddington@cso.atmel.com> 4567 4568 * configure.ac: Do not build libssp for the AVR. 4569 * configure: Regenerate. 4570 45712008-04-18 Nick Clifton <nickc@redhat.com> 4572 4573 * MAINTAINERS: Replace reference to configure.in with reference to 4574 configure.ac. 4575 45762008-04-18 M R Swami Reddy <MR.Swami.Reddy@nsc.com> 4577 4578 * configure.ac (cr16-*-*): Add case for cr16 target and include gdb 4579 as nonconfigurable directories list. 4580 * configure: Regenerate. 4581 45822008-04-14 David S. Miller <davem@davemloft.net> 4583 4584 * configure.ac: Add sparc*-*-* to gold supported targets. 4585 * configure: Regenerate. 4586 45872008-04-14 Ben Elliston <bje@au.ibm.com> 4588 4589 * config.sub, config.guess: Update from upstream sources. 4590 45912008-04-12 Hans-Peter Nilsson <hp@axis.com> 4592 4593 * Makefile.tpl <gcc>: Error early unless at least GNU make 3.80. 4594 * Makefile.in: Regenerate. 4595 45962008-04-07 Ian Lance Taylor <iant@google.com> 4597 4598 * Makefile.def: check-gold depends upon all-binutils. 4599 * Makefile.in: Regenerate. 4600 46012008-04-04 Nick Clifton <nickc@redhat.com> 4602 4603 PR binutils/4334 4604 * configure.ac: Run ACX_CHECK_CYGWIN_CAT_WORKS for cygwin hosted 4605 builds. 4606 * configure: Regenerate. 4607 46082008-04-04 NightStrike <NightStrike@gmail.com> 4609 4610 PR other/35151 4611 * configure.ac: Combine rules for mingw32 and mingw64. 4612 * configure: Regenerate. 4613 46142008-03-27 Paolo Bonzini <bonzini@gnu.org> 4615 4616 * Makefile.tpl (PICFLAG, PICFLAG_FOR_TARGET): Remove. 4617 * Makefile.in: Regenerate. 4618 46192008-03-20 Ian Lance Taylor <iant@google.com> 4620 4621 * configure.ac: Add support for --enable-gold. 4622 * Makefile.def: Add gold as a directory like ld. 4623 * configure, Makefile.in: Regenerate. 4624 46252008-03-19 Andreas Krebbel <krebbel1@de.ibm.com> 4626 4627 * opcodes/s390-mkopc.c (s390_opcode_cpu_val): S390_OPCODE_Z10 added. 4628 (s390_cond_extensions): Reduced extensions to the compare related. 4629 (main): z10 cpu type option added. 4630 (expandConditionalJump): Renamed to ... 4631 (insertExpandedMnemonic): ... this. 4632 4633 * opcodes/s390-opc.c: Re-group the operand format makros. 4634 (INSTR_RIE_RRPU, INSTR_RIE_RRP0, INSTR_RIE_RUPI, 4635 INSTR_RIE_R0PI, INSTR_RIE_RUPU, INSTR_RIE_R0PU, INSTR_RIE_R0IU, 4636 INSTR_RIE_R0I0, INSTR_RIE_R0UU, INSTR_RIE_R0U0, 4637 INSTR_RIE_RRUUU, INSTR_RIS_RURDI, INSTR_RIS_R0RDI, INSTR_RIS_RURDU, 4638 INSTR_RIS_R0RDU, INSTR_RRF_U0RR, INSTR_RRF_00RR, INSTR_RRS_RRRDU, 4639 INSTR_RRS_RRRD0, INSTR_RXY_URRD, INSTR_SIY_IRD, INSTR_SIL_RDI, 4640 INSTR_SIL_RDU): New instruction formats added. 4641 (MASK_RIE_RRPU, MASK_RIE_RRP0, MASK_RIE_RUPI, MASK_RIE_R0PI, 4642 MASK_RIE_RUPU, MASK_RIE_R0PU, MASK_RIE_R0IU, MASK_RIE_R0I0, 4643 MASK_RIE_R0UU, MASK_RIE_R0U0, MASK_RIE_RRUUU, MASK_RIS_RURDI, 4644 MASK_RIS_R0RDI, MASK_RIS_RURDU, MASK_RIS_R0RDU, MASK_RRF_U0RR, 4645 MASK_RRF_00RR, MASK_RRS_RRRDU, MASK_RRS_RRRD0, MASK_RXY_URRD, 4646 MASK_SIY_IRD, MASK_SIL_RDI, MASK_SIL_RDU): New instruction format 4647 masks added. 4648 (s390_opformats): New formats added "ris", "rrs", "sil". 4649 * opcodes/s390-opc.txt: Add the conditional jumps with the 4650 extensions removed from automatic expansion in s390-mkopc.c manually. 4651 (asi - trtre): Add new System z10 EC instructions. 4652 * include/opcode/s390.h (s390_opcode_cpu_val): S390_OPCODE_Z10 added. 4653 46542008-03-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> 4655 4656 * configure.ac: m4_include config/proginstall.m4. 4657 * configure: Regenerate. 4658 46592008-03-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> 4660 4661 Backport from upstream Libtool: 4662 4663 2007-10-12 Eric Blake <ebb9@byu.net> 4664 4665 Deal with Autoconf 2.62's semantic change in m4_append. 4666 * ltsugar.m4 (lt_append): Replace broken versions of 4667 m4_append. 4668 (lt_if_append_uniq): Don't require separator to be overquoted, 4669 and avoid broken m4_append. 4670 (lt_dict_add): Fix typo. 4671 * libtool.m4 (_LT_DECL): Don't overquote separator. 4672 46732008-03-13 David Edelsohn <edelsohn@gnu.org> 4674 4675 * config.rpath: Add AIX 6 support. 4676 46772008-03-13 Paolo Bonzini <bonzini@gnu.org> 4678 4679 * Makefile.def (stageprofile). Remove -fprofile-generate 4680 from stage_libcflags. 4681 * Makefile.in: Regenerate. 4682 46832008-03-13 Ben Elliston <bje@au.ibm.com> 4684 4685 * config.sub, config.guess: Update from upstream sources. 4686 46872008-03-06 Florian Krohm <fkrohm@us.ibm.com> 4688 4689 * s390-opc.c (INSTR_RSL_R0RD): Fix operands. 4690 * s390-opc.txt (cmpsc): Duplicate entry removed. 4691 (dxr, sqdr, sqer, cxfbr, cdfbr, cefbr, lzer, lzdr, lzxr, 4692 cegbr, cdgbr, cxgbr, cegr, cdgr, cxgr, cxfr, cdfr, cefr, fixr, fidr, 4693 fier, cu42, cu41): Fix operand format. 4694 46952008-02-20 Paolo Bonzini <bonzini@gnu.org> 4696 4697 PR bootstrap/32009 4698 PR bootstrap/32161 4699 4700 * configure.ac (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Compute here. 4701 * configure: Regenerate. 4702 4703 * Makefile.def: Define stage_libcflags for all bootstrap stages. 4704 * Makefile.tpl (BOOT_LIBCFLAGS, STAGE2_LIBCFLAGS, STAGE3_LIBCFLAGS, 4705 STAGE4_LIBCFLAGS): New. 4706 (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Subst from autoconf, without 4707 $(SYSROOT_CFLAGS_FOR_TARGET) and $(DEBUG_PREFIX_CFLAGS_FOR_TARGET). 4708 (BASE_TARGET_EXPORTS): Append them here to C{,XX}FLAGS. 4709 (EXTRA_TARGET_FLAGS): Append them here to {LIB,}C{,XX}FLAGS. 4710 (configure-stage[+id+]-[+prefix+][+module+]): Pass stage_libcflags 4711 for target modules. Don't export LIBCFLAGS. 4712 (all-stage[+id+]-[+prefix+][+module+]): Pass stage_libcflags; pass 4713 $(BASE_FLAGS_TO_PASS) where [+args+] was passed, and [+args+] after 4714 the overridden CFLAGS_FOR_TARGET and CXXFLAGS_FOR_TARGET. 4715 (invocations of `all'): Replace $(TARGET_FLAGS_TO_PASS) with 4716 $(EXTRA_TARGET_FLAGS), $(FLAGS_TO_PASS) with $(EXTRA_HOST_FLAGS). 4717 * Makefile.in: Regenerate. 4718 47192008-02-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> 4720 4721 PR libgcj/33085 4722 * libtool.m4 (_LT_COMPILER_PIC) [ mingw, cygwin ] <GCJ>: 4723 Do not use -DDLL_EXPORT. Backport from upstream. 4724 47252008-02-14 Nick Clifton <nickc@redhat.com> 4726 4727 Import this patch from gcc: 4728 2008-01-24 David Edelsohn <edelsohn@gnu.org> 4729 4730 * libtool.m4: Backport AIX 6 support from ToT Libtool. 4731 47322008-02-02 Hans-Peter Nilsson <hp@axis.com> 4733 4734 * configure.ac: Enable fortran for cris-*-elf and crisv32-*-elf. 4735 * configure: Regenerate. 4736 47372008-01-31 Marc Gauthier <marc@tensilica.com> 4738 4739 * configure.ac (xtensa*-*-*): Recognize processor variants. 4740 * configure: Regenerate. 4741 47422008-01-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> 4743 4744 PR bootstrap/34922 4745 * configure.ac (PARSE_ARGS): Push suitable setting of 4746 ac_subdirs_all, for `./configure --help=recursive'. 4747 Handle `+' in generic toplevel directory disabling. 4748 * configure: Regenerate. 4749 47502008-01-23 Ben Elliston <bje@au.ibm.com> 4751 4752 * config.sub, config.guess: Update from upstream sources. 4753 47542008-01-08 Ben Elliston <bje@au.ibm.com> 4755 4756 * config.sub, config.guess: Update from upstream sources. 4757 47582007-12-19 Jeff Johnston <jjohnstn@redhat.com> 4759 4760 * COPYING.LIBGLOSS: Update default copyright. 4761 47622007-12-19 Jeff Johnston <jjohnstn@redhat.com> 4763 4764 * COPYING.NEWLIB: Update default copyright. 4765 47662007-12-17 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> 4767 4768 * configure.ac: Change required MPFR from 2.2.0 -> 2.2.1. 4769 Change recommended MPFR from 2.2.1 > 2.3.0. 4770 * configure: Regenerate. 4771 47722007-12-13 Richard Sandiford <rsandifo@nildram.co.uk> 4773 4774 * Makefile.tpl (CFLAGS_FOR_TARGET): Add -g. 4775 (CXXFLAGS_FOR_TARGET): Add -O2 -g. 4776 * Makefile.in: Regenerate. 4777 47782007-12-10 Andreas Tobler <a.tobler@schweiz.org> 4779 4780 * configure.ac: Enable libjava for x86_64-*-darwin9. 4781 * configure: Regenerate. 4782 47832007-12-05 Ben Elliston <bje@au.ibm.com> 4784 4785 * config.sub, config.guess: Update from upstream sources. 4786 47872007-11-28 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> 4788 4789 * config-ml.in: Robustify against white space in absolute file 4790 names. 4791 4792 * config-ml.in (multi-clean): Substitute ${Makefile}. 4793 Remove superfluous ${Makefile} in list. 4794 47952007-10-23 Daniel Jacobowitz <dan@codesourcery.com> 4796 4797 * Makefile.def (dependencies): Make configure-gdb depend on 4798 all-intl. 4799 * Makefile.in: Regenerated. 4800 48012007-10-15 Patrick Mansfield <patmans@us.ibm.com> 4802 4803 * Makefile.def: To avoid problems running with parallel makes, 4804 build newlib before libgloss so that target specific header 4805 files are availble. 4806 * Makefile.in: Regenerate. 4807 48082007-10-11 Daniel Jacobowitz <dan@codesourcery.com> 4809 4810 * Makefile.def (dependencies): Add all-gdb -> all-libdecnumber. 4811 * Makefile.in: Regenerate. 4812 48132007-10-11 Daniel Jacobowitz <dan@codesourcery.com> 4814 4815 * src-release (GDB_SUPPORT_DIRS): Add libdecnumber. 4816 * libdecnumber: New directory, imported from GCC. 4817 48182007-10-08 Mike Frysinger <vapier@gentoo.org> 4819 4820 * configure.ac (CFLAGS_FOR_BUILD, CXXFLAGS_FOR_BUILD, 4821 LDFLAGS_FOR_BUILD): Default them to host flags only for $host = $build. 4822 Set default CXXFLAGS_FOR_BUILD to CXXFLAGS, not CFLAGS. Set default 4823 LDFLAGS_FOR_BUILD to LDFLAGS, not CFLAGS. 4824 * configure: Regenerate. 4825 48262007-10-01 Paolo Bonzini <bonzini@gnu.org> 4827 4828 * Makefile.tpl (AR_FOR_BUILD, AS_FOR_BUILD, CXX_FOR_BUILD, 4829 DLLTOOL_FOR_BUILD, GCJ_FOR_BUILD, GFORTRAN_FOR_BUILD, 4830 LDFLAGS_FOR_BUILD, LD_FOR_BUILD, NM_FOR_BUILD, RANLIB_FOR_BUILD, 4831 WINDMC_FOR_BUILD, WINDRES_FOR_BUILD): Use autoconf substitutions. 4832 * configure.ac: Default them to host tools for $host = $build. 4833 Subst them. 4834 4835 * configure: Regenerate. 4836 * Makefile.in: Regenerate. 4837 48382007-09-20 Richard Sandiford <rsandifo@nildram.co.uk> 4839 4840 * configure.ac (mipsisa*-*-elfoabi*): New stanza. 4841 * configure: Regenerate. 4842 48432007-09-19 Benjamin Kosnik <bkoz@redhat.com> 4844 4845 * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Move libgomp before 4846 libstdc++. 4847 * Makefile.def: Add libgomp config as a maybe dependency for libstdc++. 4848 * configure: Regenerate. 4849 * Makefile.in: Regenerate. 4850 48512007-09-17 Andreas Schwab <schwab@suse.de> 4852 4853 * configure.ac: Raise minimum makeinfo version to 4.6. 4854 * configure: Regenerate. 4855 48562007-09-15 Alan Modra <amodra@bigpond.net.au> 4857 4858 * configure.ac: Correct makeinfo version check. 4859 * configure: Regenerate. 4860 48612007-09-14 Richard Sandiford <richard@codesourcery.com> 4862 4863 * configure.ac (mips*-sde-elf*): New stanza. Add target-libiberty 4864 to $skipdirs and only disable gprof for newlib. Use the normal 4865 mips*-elf* handling in other respects. 4866 * configure: Regnerate. 4867 48682007-09-12 David Daney <ddaney@avtrex.com> 4869 4870 * configure.ac: Remove mips64*-*-linux* noconfigdirs section, thus 4871 enabling libgcj. 4872 * configure: Regenerate. 4873 48742007-09-12 Richard Guenther <rguenther@suse.de> 4875 4876 * configure.ac (--enable-stage1-checking): If neither --enable-checking 4877 nor --disable-checking is provided also turn on yes and types 4878 checking for stage1. 4879 * configure: Re-generate. 4880 48812007-09-11 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org> 4882 4883 PR target/33281 4884 * configure.ac: Use config/mh-mingw on mingw. 4885 * configure: Regenerate. 4886 48872007-09-10 Rask Ingemann Lambertsen <rask@sygehus.dk> 4888 4889 PR other/32154 4890 * configure.ac: For libgloss targets, point the linker to the linker 4891 script, startup code and simulator library. 4892 * configure: Regenerate. 4893 48942007-09-09 Andrew Haley <aph@redhat.com> 4895 4896 * configure.ac (noconfigdirs): Remove target-libffi and 4897 target-libjava. 4898 48992007-08-29 Nick Clifton <nickc@redhat.com> 4900 4901 * config.sub, config.guess: Update from upstream sources. 4902 49032007-08-21 Richard Guenther <rguenther@suse.de> 4904 4905 * configure.ac: Add types checking to stage1 checking flags. 4906 * configure: Regenerate. 4907 49082007-08-18 Paul Brook <paul@codesourcery.com> 4909 Joseph Myers <joseph@codesourcery.com> 4910 4911 * Makefile.tpl (DEBUG_PREFIX_CFLAGS_FOR_TARGET): New. 4912 (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Include it. 4913 * Makefile.in: Regenerate. 4914 * configure.ac (--with-debug-prefix-map): New. 4915 * configure: Regenerate. 4916 49172007-08-17 Richard Sandiford <richard@codesourcery.com> 4918 Nigel Stephens <nigel@mips.com> 4919 4920 * configure.ac (mips*-sde-elf*): New stanza. Use config/mt-sde 4921 as target_makefile_frag. 4922 * configure: Regenerate. 4923 49242007-08-16 Alexandre Oliva <aoliva@redhat.com> 4925 4926 * Makefile.def (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS): 4927 Add to flags_to_pass. Adjust uses of BOOT_CFLAGS. 4928 (bootstrap2-debug, bootstrap-debug): New bootstrap stages. 4929 * Makefile.tpl (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS): New. 4930 (do-compare, do-compare3, do-compare-debug): New. 4931 ([+compare-target+]): Use them. 4932 49332007-08-16 Alexandre Oliva <aoliva@redhat.com> 4934 4935 * Makefile.def (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS): 4936 Add to flags_to_pass. Adjust uses of BOOT_CFLAGS. 4937 (bootstrap2-debug, bootstrap-debug): New bootstrap stages. 4938 * Makefile.tpl (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS): New. 4939 (do-compare, do-compare3, do-compare-debug): New. 4940 ([+compare-target+]): Use them. 4941 49422007-08-13 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> 4943 Ben Elliston <bje@au.ibm.com> 4944 4945 * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS, baseargs): Pass 4946 --silent if $silent. 4947 * configure: Regenerate. 4948 49492007-08-12 Daniel Jacobowitz <dan@codesourcery.com> 4950 4951 * src-release (DEVO_SUPPORT): Add COPYING3 and COPYING3.LIB. 4952 49532007-07-17 Nick Clifton <nickc@redhat.com> 4954 4955 * COPYING3: New file. Contains version 3 of the GNU General 4956 Public License. 4957 * COPYING3.LIB: New file. Contains version 3 of the GNU 4958 Lesser General Public License. 4959 49602007-07-11 Bernd Schmidt <bernd.schmidt@analog.com> 4961 4962 * configure.ac: Fix my previous change to really match GCC. 4963 * configure: Regenerate. 4964 49652007-07-11 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> 4966 4967 * configure.ac: Rewrite 'configure --help' strings to look nicer. 4968 * configure: Regenerate. 4969 49702007-07-11 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> 4971 4972 * configure.ac: Add some missing m4 quotation. 4973 * configure: Regenerate. 4974 49752007-07-09 Kai Tietz <kai.tietz@onevision.com> 4976 4977 * Makefile.def: Add windmc tool to build. 4978 * Makefile.tpl: Likewise. 4979 * configure.ac: Likewise. 4980 * Makefile.in: Regenerate. 4981 * configure: Regenerate. 4982 49832007-07-05 H.J. Lu <hongjiu.lu@intel.com> 4984 4985 * lt~obsolete.m4: New. Import from 20070318 libtool. 4986 49872007-06-29 Bernd Schmidt <bernd.schmidt@analog.com> 4988 4989 * configure.ac: Don't add target-libmudflap to noconfigdirs for 4990 uclinux and linux-uclibc targets. 4991 * configure: Regenerate. 4992 49932007-06-28 DJ Delorie <dj@redhat.com> 4994 4995 * configure.ac (arm*-*-linux-gnueabi): Don't build libgloss if we're 4996 not building newlib. 4997 * configure: Regenerated. 4998 49992007-06-22 Daniel Jacobowitz <dan@codesourcery.com> 5000 5001 * src-release (DEVO_SUPPORT): Correct typos. 5002 50032007-06-18 Daniel Jacobowitz <dan@codesourcery.com> 5004 5005 * Makefile.def: Add dependency from configure-gdb to all-bfd. 5006 * Makefile.in: Regenerated. 5007 50082007-06-14 Paolo Bonzini <bonzini@gnu.org> 5009 5010 * Makefile.tpl (cleanstrap): Don't delete the toplevel Makefile. 5011 (distclean-stage[+id+]): Possibly delete stage_last. 5012 * Makefile.in: Regenerate. 5013 50142007-06-07 Ben Elliston <bje@au.ibm.com> 5015 5016 * config.sub, config.guess: Update from upstream sources. 5017 50182007-06-07 Ben Elliston <bje@au.ibm.com> 5019 5020 * Makefile.tpl: Fix spelling error. 5021 * Makefile.in: Regenerate. 5022 50232007-06-04 Paolo Bonzini <bonzini@gnu.org> 5024 5025 Sync with gcc: 5026 2007-05-30 Jakub Jelinek <jakub@redhat.com> 5027 5028 PR bootstrap/29382 5029 * configure.ac: Don't use -fkeep-inline-functions for GCC < 3.3.1. 5030 * configure: Rebuilt. 5031 50322007-06-01 Steve Ellcey <sje@cup.hp.com> 5033 5034 * libtool.m4 (LT_CMD_MAX_LEN): Try using getconf to set 5035 lt_cv_sys_max_cmd_len. 5036 50372007-05-31 Paolo Bonzini <bonzini@gnu.org> 5038 5039 * ltgcc.m4: Update from GCC. 5040 50412007-05-25 Andreas Tobler <a.tobler@schweiz.org> 5042 5043 * ltmain.sh: Fix Darwin verstring, remove ${wl}. 5044 50452007-05-24 Steve Ellcey <sje@cup.hp.com> 5046 5047 * ltmain.sh: Update from GCC. 5048 * libtool.m4: Update from GCC. 5049 * ltsugar.m4: New. Update from GCC. 5050 * ltversion.m4: New. Update from GCC. 5051 * ltoptions.m4: New. Update from GCC. 5052 * ltconfig: Remove. 5053 * ltcf-c.sh: Remove. 5054 * ltcf-cxx.sh: Remove. 5055 * ltcf-gcj.sh: Remove. 5056 * src-release: Update with new libtool file list. 5057 50582007-05-16 Paolo Bonzini <bonzini@gnu.org> 5059 5060 * Makefile.def (bootstrap_stage): Replace stage_make_flags with 5061 stage_cflags. 5062 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS, POSTSTAGE1_FLAGS_TO_PASS): 5063 Remove CFLAGS/LIBCFLAGS. 5064 (configure-stage[+id+]-[+prefix+][+module+], 5065 all-stage[+id+]-[+prefix+][+module+]): Pass it from [+stage_cflags+]. 5066 * Makefile.in: Regenerate. 5067 50682007-04-14 Steve Ellcey <sje@cup.hp.com> 5069 5070 * config-ml.in: Update from GCC. 5071 50722007-04-09 Daniel Jacobowitz <dan@codesourcery.com> 5073 5074 * src-release (do-proto-toplev): Process the support directories before 5075 the tool directory. 5076 50772007-03-21 Richard Sandiford <richard@codesourcery.com> 5078 5079 * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Fix m4 quoting 5080 of glob. Quote arguments with single quotes too. 5081 * configure: Regenerate. 5082 50832007-03-12 Brooks Moses <brooks.moses@codesourcery.com> 5084 5085 * Makefile.def (fixincludes): Remove unneeded "missing" lines. 5086 * Makefile.in: Regenerate 5087 50882007-03-07 Andreas Schwab <schwab@suse.de> 5089 5090 * configure: Regenerate. 5091 50922007-03-01 Brooks Moses <brooks.moses@codesourcery.com> 5093 5094 * configure.ac: Add "--with-pdfdir" configure option, 5095 which defines pdfdir variable. 5096 * Makefile.def (target=fixincludes): Add install-pdf to 5097 missing targets. 5098 (recursive_targets): Add install-pdf target. 5099 (flags_to_pass): Add pdfdir. 5100 * Makefile.tpl: Add pdfdir handling, add do-install-pdf 5101 target. 5102 * configure: Regenerate 5103 * Makefile.in: Regenerate 5104 51052007-02-28 Eric Christopher <echristo@apple.com> 5106 5107 Revert: 5108 2006-12-07 Mike Stump <mrs@apple.com> 5109 5110 * Makefile.def (dependencies): Add dependency for 5111 install-target-libssp and install-target-libgomp on 5112 install-gcc. 5113 * Makefile.in: Regenerate. 5114 51152007-02-27 Matt Kraai <kraai@ftbfs.org> 5116 5117 * configure: Regenerate. 5118 * configure.ac: Move statements after variable declarations. 5119 51202007-02-19 Joseph Myers <joseph@codesourcery.com> 5121 5122 * configure.ac: Adjust for loop syntax. 5123 * configure: Regenerate. 5124 51252007-02-18 Alexandre Oliva <aoliva@redhat.com> 5126 5127 * configure: Rebuilt. 5128 51292007-02-18 Alexandre Oliva <aoliva@redhat.com> 5130 5131 * configure.ac: Drop multiple occurrences of --enable-languages, 5132 and fix its quoting. 5133 * configure: Rebuilt. 5134 51352007-02-17 Mark Mitchell <mark@codesourcery.com> 5136 Nathan Sidwell <nathan@codesourcery.com> 5137 Vladimir Prus <vladimir@codesourcery.com 5138 Joseph Myers <joseph@codesourcery.com> 5139 5140 * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Fix quoting. 5141 * configure: Regenerate. 5142 51432007-02-13 Daniel Jacobowitz <dan@codesourcery.com> 5144 5145 * configure.ac (target_libraries): Move libgcc before libiberty. 5146 * configure: Regenerated. 5147 51482007-02-13 Paolo Bonzini <bonzini@gnu.org> 5149 5150 * configure: Regenerate again? 5151 51522007-02-13 Paolo Bonzini <bonzini@gnu.org> 5153 5154 * configure: Reapply PR30748 fix which was lost in the previous commit. 5155 51562007-02-13 Daniel Jacobowitz <dan@codesourcery.com> 5157 Paolo Bonzini <bonzini@gnu.org> 5158 5159 PR bootstrap/30753 5160 * configure.ac: Remove obsolete build / host tests. Use AC_PROG_CC 5161 unconditionally. Use AC_PROG_CXX. Use ACX_TOOL_DIRS to find $prefix. 5162 * configure: Regenerated. 5163 51642007-02-10 Paolo Bonzini <bonzini@gnu.org> 5165 5166 * configure: Regenerate. 5167 51682007-02-09 Daniel Jacobowitz <dan@codesourcery.com> 5169 5170 PR bootstrap/30748 5171 * configure.ac: Correct syntax for Solaris ksh. 5172 * configure: Regenerated. 5173 51742007-02-09 Paolo Bonzini <bonzini@gnu.org> 5175 5176 * Makefile.def: Sync with GCC. 5177 * Makefile.tpl: Sync with GCC. 5178 * Makefile.in: Regenerate. 5179 * configure: Regenerate. 5180 51812007-02-09 Daniel Jacobowitz <dan@codesourcery.com> 5182 5183 * Makefile.tpl (build_alias, host_alias, target_alias): Use 5184 noncanonical equivalents. 5185 * configure.in: Rename to... 5186 * configure.ac: ...this. Update AC_PREREQ. Prevent error for 5187 AS_FOR_TARGET. Set build_noncanonical, host_noncanonical, and 5188 target_noncanonical. Use them. Rewrite removal of configure 5189 arguments for autoconf 2.59. Discard variable settings. Force 5190 program_transform_name for native tools. 5191 5192 * Makefile.in: Regenerated. 5193 * configure: Regenerated with autoconf 2.59. 5194 5195 * src-release (DEVO_SUPPORT, do-proto-toplev): Expect configure.ac. 5196 51972007-02-08 Jeff Johnston <jjohnstn@redhat.com> 5198 5199 * COPYING.LIBGLOSS: Reformat default Red Hat 5200 license to fit within 80 columns. 5201 * COPYING.NEWLIB: Ditto. 5202 52032007-02-05 Dave Brolley <brolley@redhat.com> 5204 5205 * Contribute the following changes: 5206 2006-11-28 DJ Delorie <dj@redhat.com> 5207 5208 * configure.in: Fix typo for mep's target_makefile_frag. 5209 * configure: Regenerated. 5210 5211 2005-04-22 Richard Sandiford <rsandifo@redhat.com> 5212 5213 * configure.in (mep*): Add -mlibrary to FLAGS_FOR_TARGET. 5214 * configure: Regenerate. 5215 5216 2001-09-19 DJ Delorie <dj@redhat.com> 5217 5218 * configure.in (target_makefile_frag): use mt-mep 5219 5220 2001-06-12 Don Howard <dhoward@redhat.com> 5221 5222 * configure.in: Remove gdb from MeP skip list. 5223 5224 2001-04-05 DJ Delorie <dj@redhat.com> 5225 5226 * configure.in (noconfigdirs): Remove gcc from MeP skip list. 5227 5228 2001-03-20 Ben Elliston <bje@redhat.com> 5229 5230 * configure.in (noconfigdirs): Add gcc and gdb for MeP. 5231 5232 2001-03-19 Ben Elliston <bje@redhat.com> 5233 5234 * config.sub (mep, mep-*): Add. 5235 52362007-01-31 Andreas Schwab <schwab@suse.de> 5237 5238 * Makefile.tpl (LDFLAGS): Substitute it. 5239 * Makefile.in: Regenerate. 5240 52412007-01-11 Paolo Bonzini <bonzini@gnu.org> 5242 5243 * configure.in: Change == to = in test command. 5244 * configure: Regenerate. 5245 52462007-01-11 Paolo Bonzini <bonzini@gnu.org> 5247 Nick Clifton <nickc@redhat.com> 5248 Kaveh R. Ghazi <ghazi@caip.rutgets.edu> 5249 5250 * configure.in (build_configargs, host_configargs, target_configargs): 5251 Remove build/host/target parameters. 5252 (host_libs): Add gmp and mpfr. 5253 (GMP tests): Reorganize to allow in-tree GMP/MPFR. 5254 * Makefile.def (gmp, mpfr): New. 5255 (gcc): Remove target. 5256 * Makefile.tpl (build_os, build_vendor, host_os, host_vendor, 5257 target_os, target_vendor): New. 5258 (configure): Add host_alias/target_alias arguments. Adjust invocations. 5259 * configure: Regenerate. 5260 * Makefile.in: Regenerate. 5261 52622007-01-11 Matt Fago <fago@earthlink.net> 5263 5264 * configure.in: Try to link to functions only in mpfr 2.2.x 5265 to improve robustness of configure tests. 5266 * configure: Regenerate. 5267 52682007-01-08 Kai Tietz <kai.tietz@onevision.com> 5269 5270 * configure.in: Add support for an x86_64-mingw* target. 5271 * configure: Regenerate. 5272 52732007-01-05 Daniel Jacobowitz <dan@codesourcery.com> 5274 5275 * Makefile.tpl (all-target): Correct @if conditional for target 5276 modules. 5277 * configure.in: Omit libiberty if building only target libgcc. 5278 * configure, Makefile.in: Regenerated. 5279 52802007-01-04 Paolo Bonzini <bonzini@gnu.org> 5281 5282 * configure.in: Use DEV-PHASE to detect the default for --enable-werror. 5283 * configure: Regenerate. 5284 52852007-01-03 Daniel Jacobowitz <dan@codesourcery.com> 5286 5287 * Makefile.def (target_modules): Add libgcc. 5288 (lang_env_dependencies): Remove default items. Use no_c and no_gcc. 5289 * Makefile.tpl (clean-target-libgcc): Delete. 5290 (configure-target-[+module+]): Emit --disable-bootstrap dependencies 5291 on gcc even for bootstrapped modules. Rewrite handling of 5292 lang_env_dependencies to loop over target_modules. 5293 * configure.in (target_libraries): Add target-libgcc. 5294 * Makefile.in, configure: Regenerated. 5295 52962006-12-29 Paolo Bonzini <bonzini@gnu.org> 5297 5298 Sync with gcc: 5299 2006-12-29 Paolo Bonzini <bonzini@gnu.org> 5300 5301 * configure.in: Reorganize recognition of languages. Add 5302 --enable-stage1-languages. Show supported languages for the chosen 5303 target rather than all recognized languages. 5304 * configure: Regenerate. 5305 5306 2006-12-29 Paolo Bonzini <bonzini@gnu.org> 5307 5308 * Makefile.tpl (GCC_STRAP_TARGETS, all-prebootstrap): Remove. 5309 * Makefile.in: Regenerate. 5310 5311 2006-12-29 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> 5312 5313 * configure.in: Warn that MPFR 2.2.0 is buggy. 5314 * configure: Regenerate. 5315 53162006-12-27 Ian Lance Taylor <iant@google.com> 5317 5318 * configure.in: When removing Makefiles to force a reconfigure, also 5319 remove prev-DIR*/Makefile. 5320 * configure: Regenerate. 5321 53222006-12-23 Kazu Hirata <kazu@codesourcery.com> 5323 5324 * config.bfd: Recognize fido. 5325 53262006-12-19 Paolo Bonzini <bonzini@gnu.org> 5327 5328 Sync with gcc: 5329 5330 2006-12-19 Paolo Bonzini <bonzini@gnu.org> 5331 5332 * configure.in: Remove "$build" case for powerpc-*-darwin* since 5333 it only affects bootstrap and could be tested on "$host" as well. 5334 * configure: Regenerate. 5335 * config/mh-ppc-darwin: Add to the stage1 cflags here. 5336 5337 2006-12-19 Paolo Bonzini <bonzini@gnu.org> 5338 5339 PR bootstrap/29544 5340 * Makefile.def (flags_to_pass): Add STAGE1_CHECKING. 5341 (bootstrap_stage): Add STAGE1_CHECKING to stage1 configure flags, 5342 move here comment from Makefile.tpl. 5343 * Makefile.tpl: Move some definitions higher in the file. 5344 (STAGE1_CHECKING): New. 5345 * configure.in: Add --enable-stage1-checking. 5346 * configure: Regenerate. 5347 * Makefile.in: Regenerate. 5348 5349 2006-12-03 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> 5350 5351 * configure.in: Update error message for missing GMP/MPFR. 5352 5353 * configure: Regenerate. 5354 5355 2006-12-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> 5356 5357 * configure.in: Update MPFR version in error message. 5358 5359 * configure: Regenerate. 5360 5361 2006-11-26 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> 5362 5363 * configure.in (--with-mpfr-dir, --with-gmp-dir): Remove flags. 5364 (--with-mpfr-include, --with-mpfr-lib, --with-gmp-include, 5365 --with-gmp-lib): New flags. 5366 5367 * configure: Regenerate. 5368 53692006-12-12 Andreas Tobler <a.tobler@schweiz.org> 5370 5371 PR bootstrap/30134 5372 * configure.in: Correct x86 darwin support for libjava to powerpc 5373 and i?86 only. 5374 * configure: Regenerate. 5375 53762006-12-11 Alan Modra <amodra@bigpond.net.au> 5377 5378 * configure.in: Handle spu makefile frag. 5379 * Makefile.tpl (MAINT): Define 5380 (MAINTAINER_MODE_FALSE, MAINTAINER_MODE_TRUE): Define. 5381 * configure: Regenerate. 5382 * Makefile.in: Regenerate. 5383 53842006-12-11 Ben Elliston <bje@au.ibm.com> 5385 5386 * config.sub, config.guess: Update from upstream sources. 5387 53882006-12-11 Ben Elliston <bje@au.ibm.com> 5389 5390 * configure.in: Sync with GCC (spu-*-*). 5391 * configure: Sync with GCC. 5392 53932006-12-07 Mike Stump <mrs@apple.com> 5394 5395 * Makefile.def (dependencies): Add dependency for 5396 install-target-libssp and install-target-libgomp on 5397 install-gcc. 5398 * Makefile.in: Regenerate. 5399 54002006-11-16 Paolo Bonzini <bonzini@gnu.org> 5401 5402 * Makefile.tpl (clean-target-libgcc): Test for gcc Makefile presence. 5403 (unstage): Test for stage_last presence. 5404 5405 PR bootstrap/29802 5406 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Add HOST_SUBDIR in STAGE_PREFIX. 5407 * Makefile.in: Regenerate. 5408 54092006-11-14 DJ Delorie <dj@redhat.com> 5410 5411 * Makefile.tpl (clean-stage*): Sync with GCC (clean). 5412 * Makefile.in: Sync with GCC. 5413 * configure.in: Sync with GCC (mpfr, gmp). 5414 * configure: Sync with GCC. 5415 54162006-11-08 Jie Zhang <jie.zhang@analog.com> 5417 5418 * configure.in: Remove target-libgloss from noconfigdirs for 5419 bfin-*-*. 5420 * configure: Regenerated. 5421 54222006-10-27 Jeff Johnston <jjohnstn@redhat.com> 5423 5424 * COPYING.NEWLIB: Add spu license. 5425 * COPYING.LIBGLOSS: Ditto. 5426 54272006-10-17 Brooks Moses <bmoses@stanford.edu> 5428 5429 * Makefile.def: Added pdf target handling. 5430 * Makefile.tpl: Added pdf target handling. 5431 * Makefile.in: Regenerated. 5432 54332006-10-11 Jeff Johnston <jjohnstn@redhat.com> 5434 5435 * COPYING.NEWLIB: Updated. 5436 * COPYING.LIBGLOSS: Ditto. 5437 54382006-09-27 Dave Brolley <brolley@redhat.com> 5439 5440 * configure.in (RUNTEST): Look for 'runtest' in the source tree by using 5441 $s instead of $r. 5442 * configure: Regenerated. 5443 54442006-09-26 Ben Elliston <bje@au.ibm.com> 5445 5446 * config.sub, config.guess: Update from upstream sources. 5447 54482006-09-20 Thiemo Seufer <ths@mips.com> 5449 5450 * configure.in: Remove redundant handling of mips*-dec-bsd*. Likewise 5451 for mipstx39-*-*. Disable libgloss for mips64*-*-linux*. 5452 * configure: Regenerate. 5453 54542006-08-30 Corinna Vinschen <corinna@vinschen.de> 5455 5456 * configure.in: Never build newlib for a Mingw host. 5457 Never build newlib as Mingw target library. 5458 Test the existence of winsup/cygwin for building a Cygwin newlib, 5459 rather than just winsup. 5460 Add winsup/mingw and winsup/w32api paths to FLAGS_FOR_TARGET if 5461 building a Mingw target. 5462 * configure: Regenerate. 5463 54642006-08-15 Thiemo Seufer <ths@mips.com> 5465 Nigel Stephens <nigel@mips.com> 5466 David Ung <davidu@mips.com> 5467 5468 * config.sub: Add support for sde as alias of mipsisa32-sde-elf. 5469 54702006-07-25 Paolo Bonzini <bonzini@gnu.org> 5471 5472 Sync from GCC: 5473 2006-07-04 Eric Botcazou <ebotcazou@libertysurf.fr> 5474 5475 PR bootstrap/18058 5476 * configure.in: Add -fkeep-inline-functions to CFLAGS for stage 1 5477 if the bootstrap compiler is a GCC version that supports it. 5478 * configure: Regenerate. 5479 54802006-07-22 Daniel Jacobowitz <dan@codesourcery.com> 5481 5482 * configure.in: Allow mingw32 and cygwin targets to build cross-gdb. 5483 * configure: Regenerated. 5484 54852006-07-18 Paolo Bonzini <bonzini@gnu.org> 5486 5487 * Makefile.tpl (configure-stageN-MODULE): Pass --with-build-libsubdir 5488 for stages after the first. 5489 54902006-07-17 Jakub Jelinek <jakub@redhat.com> 5491 5492 * Makefile.def: Add dependencies for configure-opcodes 5493 on configure-intl and all-opcodes on all-intl. 5494 * Makefile.in: Regenerated. 5495 54962006-07-04 Peter O'Gorman <peter@pogma.com> 5497 5498 * ltconfig: chmod 644 before ranlib during install. 5499 55002006-07-03 Paolo Bonzini <bonzini@gnu.org> 5501 5502 * configure.in: Fix thinkos in previous check-in. 5503 * configure: Regenerate. 5504 55052006-07-03 Paolo Bonzini <bonzini@gnu.org> 5506 5507 Sync from gcc: 5508 5509 2007-07-03 Paolo Bonzini <bonzini@gnu.org> 5510 5511 PR other/27063 5512 * configure.in: Test subdir_requires and give an appropriate 5513 error message. 5514 * configure: Regenerate. 5515 5516 2006-06-16 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> 5517 5518 PR target/27540 5519 * configure.in: Only enable libgomp on IRIX 6. 5520 * configure: Regenerate. 5521 55222006-06-20 David Ayers <d.ayers@inode.at> 5523 5524 PR bootstrap/28072 5525 * configure.in: Add target-boehm-gc to noconfigdirs depending on 5526 whether target-libjava is being configured instead of whether the 5527 java front end is enabled. 5528 * configure: Regenerate. 5529 55302006-06-15 Mark Shinwell <shinwell@codesourcery.com> 5531 5532 * include/elf/arm.h: Correct names of R_ARM_LDC_G{0,1,2} 5533 to R_ARM_LDC_SB_G{0,1,2} respectively. 5534 55352006-06-15 Paolo Bonzini <bonzini@gnu.org> 5536 5537 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Export CFLAGS and LDFLAGS 5538 too. 5539 * Makefile.in: Regenerate. 5540 55412006-06-13 John David Anglin <dave.anglin@nrc-cnrc.gc.ca> 5542 5543 Sync from gcc: 5544 5545 2006-06-12 John David Anglin <dave.anglin@nrc-cnrc.gc.ca> 5546 * configure.in: Don't enable libgomp on hpux10. 5547 * configure: Rebuilt. 5548 55492006-06-13 David Ayers <d.ayers@inode.at> 5550 5551 Sync from gcc: 5552 5553 2006-06-12 David Ayers <d.ayers@inode.at> 5554 5555 PR bootstrap/27963 5556 PR target/19970 5557 * configure.in: Remove target-boehm-gc from noconfigdirs where 5558 ${libgcj} is specified. 5559 * configure: Regenerate. 5560 55612006-06-08 Jeff Johnston <jjohnstn@redhat.com> 5562 5563 Sync from gcc: 5564 5565 2005-01-12 David Edelsohn <edelsohn@gnu.org> 5566 Andreas Schwab <schwab@suse.de> 5567 5568 PR bootstrap/18033 5569 * config-ml.in: Eval option if surrounded by single quotes. 5570 55712006-06-07 Carlos O'Donell <carlos@codesourcery.com> 5572 5573 Sync from gcc: 5574 5575 2006-06-06 David Ayers <d.ayers@inode.at> 5576 5577 PR libobjc/13946 5578 * Makefile.def: Add dependencies for libobjc which boehm-gc. 5579 * Makefile.in: Regenerate. 5580 * configure.in: Add --enable-objc-gc at toplevel and have it 5581 enable boehm-gc for Objective-C. 5582 Remove target-boehm-gc from libgcj. 5583 Add target-boehm-gc to target_libraries. 5584 Add target-boehm-gc to noconfigdirs where ${libgcj} 5585 is specified. 5586 Assert that boehm-gc is supported when requested for Objective-C. 5587 Only build boehm-gc if needed either for Java or Objective-C. 5588 * configure: Regenerate. 5589 5590 2006-06-05 Paolo Bonzini <bonzini@gnu.org> 5591 5592 PR 27674 5593 * Makefile.tpl (configure-[+prefix+][+module+], 5594 all-[+prefix+][+module+]): Depend on stage_current if bootstrapping. 5595 Remove rule to unstage bootstrapped modules. 5596 (stage_current): New. 5597 * Makefile.in: Regenerate. 5598 5599 2006-05-20 John David Anglin <dave.anglin@nrc-cnrc.gc.ca> 5600 Andreas Tobler <a.tobler@schweiz.ch> 5601 5602 * configure.in: Enable libgcj for hppa*-hp-hpux11*. 5603 * configure: Rebuilt. 5604 5605 Revert 5606 2006-01-31 Richard Guenther <rguenther@suse.de> 5607 Paolo Bonzini <bonzini@gnu.org> 5608 5609 * Makefile.def (target_modules): Add libgcc-math target module. 5610 * configure.in (target_libraries): Add libgcc-math target library. 5611 (--enable-libgcc-math): New configure switch. 5612 * Makefile.in: Re-generate. 5613 * configure: Re-generate. 5614 56152006-06-05 Jeff Johnston <jjohnstn@redhat.com> 5616 5617 * config-ml.in: Alter CCASFLAGS to include special 5618 multilib options the same as is done for CFLAGS. 5619 56202006-05-31 Daniel Jacobowitz <dan@codesourcery.com> 5621 5622 * Makefile.def: Added dependencies from sim and gdb on intl, and 5623 added configure dependencies to everything with an all dependency 5624 on intl. 5625 * gettext.m4: Removed. 5626 * src-release (DEVO_SUPPORT): Don't mention gettext.m4. 5627 (GDB_SUPPORT_DIRS): Add intl. 5628 * Makefile.in: Regenerated. 5629 56302006-05-25 Daniel Jacobowitz <dan@codesourcery.com> 5631 5632 * src-release (DEVO_SUPPORT): Add config.rpath. 5633 56342006-05-25 Paolo Bonzini <bonzini@gnu.org> 5635 5636 * Makefile.def (bfd, opcodes): Fix lib_path. 5637 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Replace ADAC with ADAFLAGS. 5638 (restrap): Move under "@if gcc-bootstrap". Fix typo. 5639 * Makefile.in: Regenerate. 5640 56412006-05-24 Mark Shinwell <shinwell@codesourcery.com> 5642 5643 * configure.in: Enable gprof for cross builds. 5644 * configure: Regenerate. 5645 56462006-05-17 Daniel Jacobowitz <dan@codesourcery.com> 5647 5648 * src-release (MAKEINFOFLAGS): Define. 5649 (do-proto-toplev): Pass MAKEINFOFLAGS to submakes. 5650 56512006-05-14 Ben Elliston <bje@au.ibm.com> 5652 5653 * config.sub, config.guess: Update from upstream sources. 5654 56552006-05-12 Ben Elliston <bje@au.ibm.com> 5656 5657 * config.sub, config.guess: Update from upstream sources. 5658 56592006-05-04 Steve Ellcey <sje@cup.hp.com> 5660 5661 * blt, iwidgets, mmalloc: Remove directories. 5662 56632006-05-01 DJ Delorie <dj@redhat.com> 5664 5665 * configure.in: Restore CFLAGS if GMP isn't present. 5666 * configure: Regenerate. 5667 56682006-04-18 DJ Delorie <dj@redhat.com> 5669 5670 * configure.in (m32c): Build libstdc++-v3. Pass flags to 5671 reference libgloss so that libssp can be built in a combined 5672 tree. 5673 * configure: Regenerate. 5674 56752006-04-10 Ben Elliston <bje@au.ibm.com> 5676 5677 * contrib: Remove directory. 5678 56792006-04-06 Carlos O'Donell <carlos@codesourcery.com> 5680 5681 * Makefile.tpl: Add install-html target. 5682 * Makefile.def: Add install-html target. 5683 * Makefile.in: Regenerate. 5684 * configure.in: Add --with-datarootdir, --with-docdir, 5685 and --with-htmldir options. 5686 * configure: Regenerate. 5687 56882006-03-31 Ben Elliston <bje@au.ibm.com> 5689 5690 PR binutils/1860 5691 * configure.in: Require makeinfo 4.4 or higher. 5692 * configure: Regenerate. 5693 56942006-03-14 Paolo Bonzini <bonzini@gnu.org> 5695 5696 * Makefile.in: Regenerate. 5697 56982006-03-14 Paolo Bonzini <bonzini@gnu.org> 5699 5700 Sync with gcc: 5701 2006-03-10 Aldy Hernandez <aldyh@redhat.com> 5702 5703 * configure.in: Handle --disable-<component> generically. 5704 * configure: Regenerate. 5705 5706 2006-02-21 Rafael Avila de Espindola <rafael.espindola@gmail.com> 5707 5708 * Makefile.tpl (BUILD_CONFIGDIRS): Remove. 5709 (TARGET_CONFIGDIRS): Remove. 5710 * configure.in: Remove AC_SUBST(target_configdirs). 5711 * Makefile.in, configure: Regenerated. 5712 5713 57142006-03-01 H.J. Lu <hongjiu.lu@intel.com> 5715 5716 PR libgcj/17311 5717 * ltmain.sh: Don't use "$finalize_rpath" for compile. 5718 57192006-02-20 Paolo Bonzini <bonzini@gnu.org> 5720 5721 PR bootstrap/25670 5722 5723 * Makefile.tpl ([+compare-target+]): Print explanation messages. 5724 5725 * Makefile.def (ADAFLAGS, BOOT_ADAFLAGS, LANGUAGES): New flags_to_pass. 5726 * Makefile.tpl (BASE_FLAGS_TO_PASS): Support optional flags_to_pass. 5727 (EXTRA_GCC_FLAGS): Remove ADAFLAGS, BOOT_ADAFLAGS, LANGUAGES, 5728 BUILD_PREFIX, BUILD_PREFIX_1. 5729 * configure.in: (BUILD_PREFIX, BUILD_PREFIX_1): Don't substitute. 5730 5731 * Makefile.def (bootstrap stage 1): Pass LIBCFLAGS too. 5732 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Override LIBCFLAGS too. 5733 5734 * Makefile.tpl (configure-stage[+id+]-[+prefix+][+module+], 5735 all-stage[+id+]-[+prefix+][+module+], : Use $(current_stage) instead 5736 of `cat stage_current`. Always provide the `r' and `s' variables. 5737 (clean-stage[+id+]-[+prefix+][+module+]): Likewise, and make it into 5738 a single shell execution. 5739 (configure-[+prefix+][+module+], all-[+prefix+][+module+]): For 5740 bootstrapped modules, make the stage1 module if the build was not 5741 started yet, else build the current stage. 5742 (all-host, all-target): Omit bootstrapped modules (if bootstrapping). 5743 (all-build, all-host, all-target, [+make_target+]-host, 5744 [+make_target+]-target): Do not use \-continued lines. 5745 (target modules): Depend on stage_last, not all-gcc, if bootstrapping. 5746 (current_stage, restrap, stage_last): New. 5747 5748 * Makefile.in: Regenerate. 5749 * configure: Regenerate. 5750 57512006-02-14 Paolo Bonzini <bonzini@gnu.org> 5752 5753 Sync from gcc: 5754 5755 2006-01-31 Richard Guenther <rguenther@suse.de> 5756 Paolo Bonzini <bonzini@gnu.org> 5757 5758 * Makefile.def (target_modules): Add libgcc-math target module. 5759 * configure.in (target_libraries): Add libgcc-math target library. 5760 (--enable-libgcc-math): New configure switch. 5761 * Makefile.in: Re-generate. 5762 * configure: Re-generate. 5763 * libgcc-math: New toplevel directory. 5764 5765 2006-01-18 Richard Henderson <rth@redhat.com> 5766 Jakub Jelinek <jakub@redhat.com> 5767 Diego Novillo <dnovillo@redhat.com> 5768 5769 * libgomp: New directory. 5770 * Makefile.def: Add target_module libgomp. 5771 * Makefile.in: Regenerate. 5772 * configure.in (target_libraries): Add target-libgomp. 5773 * configure: Regenerate. 5774 57752006-02-14 Paolo Bonzini <bonzini@gnu.org> 5776 Andreas Schwab <schwab@suse.de> 5777 5778 * configure: Regenerate. 5779 57802006-01-16 Paolo Bonzini <bonzini@gnu.org> 5781 5782 * configure.in: Set with_gnu_as, with_gnu_ld, with_newlib earlier. 5783 Set md_exec_prefix. Use ACX_CHECK_INSTALLED_TARGET_TOOL to find 5784 the assembler, linker and binutils. 5785 * configure: Regenerate. 5786 57872006-01-16 Nick Clifton <nickc@redhat.com> 5788 5789 * config.sub, config.guess: Sync from config repository. 5790 57912006-01-05 Alexandre Oliva <aoliva@redhat.com> 5792 5793 * Makefile.tpl (clean-stage[+id+]-[+prefix+][+module+]): Remove 5794 @ from continuation. 5795 * Makefile.in: Rebuilt. 5796 57972006-01-04 Paolo Bonzini <bonzini@gnu.org> 5798 5799 Sync from gcc: 5800 5801 2006-01-04 Paolo Bonzini <bonzini@gnu.org> 5802 5803 PR bootstrap/24252 5804 5805 * Makefile.def (flags_to_pass): Add STAGE1_CFLAGS and STAGE1_LANGUAGES. 5806 * Makefile.tpl (OBJDUMP): New. 5807 (EXTRA_HOST_FLAGS): Add it. 5808 (EXTRA_GCC_FLAGS): Remove flags already specified in flags_to_pass. 5809 5810 * Makefile.tpl (stage[+id+]-start, stage[+id+]-end): Do not try 5811 to use symbolic links between directories. Avoid race conditions 5812 or make them harmless. 5813 * configure.in: Do not try to use symbolic links between directories. 5814 5815 * Makefile.def (LEAN): Pass. 5816 * Makefile.tpl (LEAN): Define. 5817 (stage[+id+]-start): Accept that the previous directory does not 5818 exist, if the bootstrap is lean. 5819 (stage[+id+]-bubble): Invoke lean bootstrap commands after 5820 stage[+id+]-start. Use a makefile variable and an `if' instead of a 5821 configure substitution. 5822 ([+compare-target+]): Likewise. 5823 ([+bootstrap-target+]-lean): New. 5824 * configure.in: Remove lean bootstrap support from here. 5825 5826 * Makefile.in: Regenerate. 5827 * configure: Regenerate. 5828 5829 2006-01-02 Andreas Schwab <schwab@suse.de> 5830 5831 * configure.in: When reconfiguring remove Makefile in 5832 all stage directories. 5833 * configure: Regenerate. 5834 58352005-12-27 Leif Ekblad <leif@rdos.net> 5836 5837 * configure.in: Add support for RDOS target. 5838 * configure: Regenerate. 5839 58402005-12-27 Nick Clifton <nickc@redhat.com> 5841 5842 PR binutils/1990 5843 * libtool.m4: Synchronize with version in GCC sources. 5844 58452005-12-20 Paolo Bonzini <bonzini@gnu.org> 5846 5847 Revert Ada-related part of the previous change. 5848 5849 * Makefile.def (ADAFLAGS, BOOT_ADAFLAGS, ADAFLAGS_FOR_TARGET): 5850 Do not pass. 5851 * Makefile.tpl (BOOT_ADAFLAGS): Do not define. 5852 * Makefile.in: Regenerate. 5853 * configure.in: Do not include mt-ppc-aix target fragment. 5854 * configure: Regenerate. 5855 58562005-12-19 Paolo Bonzini <bonzini@gnu.org> 5857 5858 * configure.in: Select appropriate fragments for PowerPC/AIX. 5859 * configure: Regenerate. 5860 5861 * Makefile.def (flags_to_pass): Add ADAFLAGS, BOOT_ADAFLAGS, 5862 BOOT_CFLAGS, BOOT_LDFLAGS. 5863 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Handle BOOT_ADAFLAGS, 5864 BOOT_CFLAGS, BOOT_LDFLAGS. 5865 (TARGET_FLAGS_TO_PASS): Handle ADAFLAGS_FOR_TARGET. 5866 (stage[+id+]-bubble): Pass flags recursively to the comparison target. 5867 (stage): Fail if we cannot complete the work. 5868 * Makefile.in: Regenerate. 5869 58702005-12-16 Jeff Johnston <jjohnstn@redhat.com> 5871 5872 * COPYING.NEWLIB: Update copyright year for default 5873 copyright. 5874 58752005-12-15 Paolo Bonzini <bonzini@gnu.org> 5876 5877 * Makefile.tpl (all, do-[+make_target+], do-check, install, 5878 install-host-nogcc): Don't invoke $(stage) at the end. 5879 * Makefile.in: Regenerate. 5880 58812005-12-14 Paolo Bonzini <bonzini@gnu.org> 5882 5883 * configure.in: Flip the top-level bootstrap switch. 5884 * configure: Regenerate. 5885 5886 Merge from gcc: 5887 5888 2005-12-14 Daniel Jacobowitz <dan@codesourcery.com> 5889 5890 * Makefile.tpl: Throughout the file, use : $(MAKE) along with 5891 $(stage) and $(unstage). 5892 (EXTRA_TARGET_FLAGS): Correct double-quoting. 5893 (all): Remove stray semicolon. 5894 (local-distclean): Don't handle multilib.tmp and multilib.out. 5895 (install.all): Set $s for consistency. 5896 (configure-[+prefix+][+module+]): Instead of [+deps+], handle 5897 check_multilibs setting. Always make the install directory. 5898 (configure-stage[+id+]-[+prefix+][+module+]): Likewise. 5899 Correct @if/@endif. 5900 (all-stage[+id+]-[+prefix+][+module+]): Correct @if/@endif. 5901 ($(TARGET_SUBDIR)/[+module+]/multilib.out): Remove. 5902 (stage[+id+]-start, stage[+id+]-end): Stage $(TARGET_SUBDIR). 5903 (multilib.out): Remove. 5904 * Makefile.in: Regenerated. 5905 59062005-12-12 Nathan Sidwell <nathan@codesourcery.com> 5907 5908 * config.sub: Replace ms1 arch with mt. Allow ms1 as alias. 5909 * configure.in: Replace ms1 arch with mt. 5910 * configure: Rebuilt. 5911 59122005-12-05 Paolo Bonzini <bonzini@gnu.org> 5913 5914 Sync with gcc: 5915 59162005-12-12 Nathan Sidwell <nathan@codesourcery.com> 5917 5918 * config.sub: Replace ms1 arch with mt. Allow ms1 as alias. 5919 * configure.in: Replace ms1 arch with mt. 5920 * configure: Rebuilt. 5921 59222005-12-05 Paolo Bonzini <bonzini@gnu.org> 5923 5924 Sync with gcc: 5925 5926 2005-12-05 Paolo Bonzini <bonzini@gnu.org> 5927 5928 * configure.in (CONFIGURED_BISON, CONFIGURED_YACC, CONFIGURED_M4, 5929 CONFIGURED_FLEX, CONFIGURED_LEX, CONFIGURED_MAKEINFO): Remove 5930 "CONFIGURED_" from the AC_CHECK_PROGS invocation. Move below. 5931 Find in-tree tools if available. 5932 (EXPECT, RUNTEST, LIPO, STRIP): Find them and substitute them. 5933 (CONFIGURED_*_FOR_TARGET): Don't set nor substitute. 5934 (*_FOR_TARGET): Set them with GCC_TARGET_TOOL. 5935 (COMPILER_*_FOR_TARGET): New. 5936 * Makefile.tpl (HOST_EXPORTS): Add *_FOR_TARGET symbols that gcc needs. 5937 (BASE_TARGET_EXPORTS): Use COMPILER_*_FOR_TARGET symbols. 5938 (CONFIGURED_*, USUAL_*): Remove. 5939 (BISON, YACC, FLEX, LEX, M4, MAKEINFO, EXPECT, RUNTEST, LIPO, 5940 STRIP): Use autoconf substitutions. 5941 (COMPILER_AS_FOR_TARGET, COMPILER_LD_FOR_TARGET, 5942 COMPILER_NM_FOR_TARGET): New. 5943 (EXTRA_HOST_FLAGS): Pass LIPO and STRIP. 5944 5945 (all): Make all-host and all-target in parallel. 5946 (do-[+make_target+], do-check, install, [+compare-target+]): Ensure 5947 that $$r and $$s are set before invoking a recursive make. 5948 (stage[+id+]-bubble): Likewise, and invoke the comparison at the end. 5949 ([+bootstrap-target+]): Inline most of the `all' target. 5950 5951 2005-11-29 Ben Elliston <bje@au.ibm.com> 5952 5953 * Makefile.tpl (clean-target-libgcc): Invoke clean-target-libgcc 5954 from the gcc build directory. 5955 * Makefile.in: Regenerate. 5956 5957 2005-11-29 Ben Elliston <bje@au.ibm.com> 5958 5959 * Makefile.def: Add new libdecnumber host_module. Make all-gcc 5960 depend on all-libdecnumber. 5961 * configure.in (host_libs): Include libdecnumber. 5962 * Makefile.in: Regenerate. 5963 * configure: Likewise. 5964 5965 2005-11-21 Kean Johnston <jkj@sco.com> 5966 5967 * config.sub, config.guess: Sync from upstream sources. 5968 59692005-11-11 Daniel Jacobowitz <dan@codesourcery.com> 5970 5971 * Makefile.def: Remove gdb dependencies for gdbtk. 5972 * Makefile.tpl (CONFIGURE_GDB_TK, INSTALL_GDB_TK): New variables. 5973 (configure-gdb, install-gdb): New rules. 5974 * configure.in: Set CONFIGURE_GDB_TK and INSTALL_GDB_TK. 5975 * Makefile.in, configure: Regenerated. 5976 59772005-10-22 Paolo Bonzini <bonzini@gnu.org> 5978 5979 PR bootstrap/24297 5980 * Makefile.tpl (do-[+make-target+], do-check, install, 5981 stage[+id+]-bubble, [+compare-target+]): Ensure $$r and $$s 5982 are set before recursing. 5983 * Makefile.in: Regenerate. 5984 59852005-10-20 Eric Botcazou <ebotcazou@adacore.com> 5986 5987 PR bootstrap/18939 5988 * Makefile.def (gcc) <target>: Fix thinko. 5989 * Makefile.in: Regenerate. 5990 59912005-10-17 Bernd Schmidt <bernd.schmidt@analog.com> 5992 5993 * configure.in (bfin-*-*): Use test, not brackets, in if statement. 5994 * configure: Regenerate. 5995 59962005-10-09 Kazu Hirata <kazu@codesourcery.com> 5997 5998 * configure.in (arm-*-linux-gnueabi): Add to noconfigdirs 5999 target-libffi, target-qthreads, target-libjava, and 6000 targetlibobjc. 6001 * configure: Regenerate. 6002 60032005-10-06 Daniel Jacobowitz <dan@codesourcery.com> 6004 6005 * Makefile.def (flags_to_pass): Add OBJDUMP_FOR_TARGET. 6006 * Makefile.tpl (BASE_TARGET_EXPORTS): Add OBJDUMP. 6007 (OBJDUMP_FOR_TARGET, CONFIGURED_OBJDUMP_FOR_TARGET) 6008 (USUAL_OBJDUMP_FOR_TARGET): New. 6009 (EXTRA_TARGET_FLAGS): Add OBJDUMP. 6010 * configure.in: Check for $OBJDUMP_FOR_TARGET. 6011 * configure, Makefile.in: Regenerated. 6012 60132005-10-05 Paolo Bonzini <bonzini@gnu.org> 6014 6015 * Makefile.tpl (all) [gcc-no-bootstrap]: Make prebootstrap packages 6016 before other host packages. 6017 60182005-10-05 Paolo Bonzini <bonzini@gnu.org> 6019 6020 PR bootstrap/22340 6021 6022 * configure.in (default_target): Remove. 6023 * Makefile.tpl (all): Do not use prerequisites as subroutines 6024 (all) [gcc-bootstrap]: Bootstrap gcc first if it was not done yet. 6025 (do-[+make_target+], check, install, [+bootstrap_target+]): Do not 6026 use prerequisites as subroutines. 6027 (check-host, check-target): New. 6028 (bootstrap configure & all targets): Do not use stage*-start 6029 if the directory layout is already ok. 6030 (non-bootstrap configure & all targets): Prepend a $(unstage). 6031 (stage[+id+]-bubble): Do that here. Do not use NOTPARALLEL. 6032 (NOTPARALLEL): Remove. 6033 (unstage, stage variables): New variables. 6034 (unstage, stage targets): Simply expand to those variables. 6035 6036 * configure: Regenerate. 6037 * Makefile.in: Regenerate. 6038 60392005-10-04 James E Wilson <wilson@specifix.com> 6040 6041 * Makefile.def (lang_env_dependencies): Add libmudflap. 6042 * Makefile.in: Regenerate. 6043 60442005-10-03 Catherine Moore <clm@cm00re.com> 6045 6046 * configure.in (bfin-*-*): Support bfin. 6047 * configure: Regenerated. 6048 60492005-09-30 H.J. Lu <hongjiu.lu@intel.com> 6050 6051 * configure.in (*-*-darwin*): Build bfd, binutils and opcodes. 6052 * configure: Regenerated. 6053 60542005-09-28 Geoffrey Keating <geoffk@apple.com> 6055 6056 * Makefile.tpl (BASE_TARGET_EXPORTS): Add LIPO, STRIP. 6057 (LIPO_FOR_TARGET): New. 6058 (CONFIGURED_LIPO_FOR_TARGET): New. 6059 (USUAL_LIPO_FOR_TARGET): New. 6060 (STRIP_FOR_TARGET): New. 6061 (CONFIGURED_STRIP_FOR_TARGET): New. 6062 (USUAL_STRIP_FOR_TARGET): New. 6063 * Makefile.def (flags_to_pass): Add LIPO_FOR_TARGET and 6064 STRIP_FOR_TARGET. 6065 * configure.in: Set LIPO_FOR_TARGET, STRIP_FOR_TARGET, 6066 CONFIGURED_LIPO_FOR_TARGET, CONFIGURED_STRIP_FOR_TARGET. 6067 * Makefile.in: Regenerate. 6068 * configure: Regenerate. 6069 60702005-09-19 David Edelsohn <edelsohn@gnu.org> 6071 6072 * configure.in (powerpc-*-aix*): Add target-libssp to noconfigdirs. 6073 (rs6000-*-aix*): Same. 6074 * configure: Regenerate. 6075 60762005-09-14 Francois-Xavier Coudert <coudert@clipper.ens.fr> 6077 6078 * configure.in: Recognize f95 in the --enable-languages option, 6079 and substitute it for fortran, issuing a warning. 6080 * configure: Regenerate. 6081 60822005-09-07 Ben Elliston <bje@au.ibm.com> 6083 6084 Import from Autoconf sources: 6085 6086 2005-09-06 Paul Eggert <eggert@cs.ucla.edu> 6087 * move-if-change: Don't output "$2 is unchanged"; suggested by Ben 6088 Elliston. Handle weird characters correctly. 6089 60902005-08-30 Phil Edwards <phil@codesourcery.com> 6091 6092 * configure.in (*-*-vxworks*): Add target-libstdc++-v3 to noconfigdirs. 6093 * configure: Regenerated. 6094 60952005-08-20 Richard Earnshaw <richard.earnshaw@arm.com> 6096 6097 * Makefile.def (libssp): Add to lang_env_dependencies. 6098 * Makefile.in: Regenerate. 6099 61002005-08-17 Christian Groessler <chris@groessler.org> 6101 6102 * Makefile.tpl: (USUAL_CC_FOR_TARGET): Add missing trailing slash. 6103 * Makefile.in: Regenerate. 6104 61052005-08-12 Paolo Bonzini <bonzini@gnu.org> 6106 6107 * configure.in: Replace NCN_STRICT_CHECK_TOOL with 6108 NCN_STRICT_CHECK_TOOLS, and likewise for NCN_STRICT_CHECK_TARGET_TOOLS. 6109 Look for alternate names of the target cc and c++ 6110 * configure: Regenerate. 6111 61122005-08-08 Paolo Bonzini <bonzini@gnu.org> 6113 6114 * configure.in (CC_FOR_TARGET, CXX_FOR_TARGET, GCJ_FOR_TARGET, 6115 GCC_FOR_TARGET, RAW_CXX_FOR_TARGET, GFORTRAN_FOR_TARGET): Find 6116 them with NCN_STRICT_CHECK_TARGET_TOOL, like the other target 6117 tools; remove code to manually set them. 6118 (Target tools): Look in the environment for them. 6119 * Makefile.tpl (CC_FOR_TARGET, CXX_FOR_TARGET, GCJ_FOR_TARGET, 6120 GCC_FOR_TARGET, RAW_CXX_FOR_TARGET, GFORTRAN_FOR_TARGET): Redefine. 6121 (AS_FOR_TARGET, LD_FOR_TARGET, NM_FOR_TARGET): Look into gcc 6122 build directory. 6123 (CONFIGURED_CC_FOR_TARGET, CONFIGURED_CXX_FOR_TARGET, 6124 CONFIGURED_GCJ_FOR_TARGET, CONFIGURED_GCC_FOR_TARGET, 6125 CONFIGURED_GFORTRAN_FOR_TARGET, USUAL_CC_FOR_TARGET, 6126 USUAL_CXX_FOR_TARGET, USUAL_GCJ_FOR_TARGET, USUAL_GCC_FOR_TARGET, 6127 USUAL_RAW_CXX_FOR_TARGET, USUAL_GFORTRAN_FOR_TARGET): New. 6128 (CXX_FOR_TARGET_FOR_RECURSIVE_MAKE, 6129 RAW_CXX_FOR_TARGET_FOR_RECURSIVE_MAKE, RECURSE_FLAGS): Delete. 6130 * configure: Regenerate. 6131 * Makefile.in: Regenerate. 6132 61332005-07-27 Mark Mitchell <mark@codesourcery.com> 6134 6135 * Makefile.tpl (EXTRA_TARGET_FLAGS): Set LDFLAGS=LDFLAGS_FOR_TARGET. 6136 * Makefile.def (flags_to_pass): Add LDFLAGS_FOR_TARGET. 6137 * Makefile.in: Regenerated. 6138 61392005-07-26 Mark Mitchell <mark@codesourcery.com> 6140 6141 * Makefile.tpl (SYSROOT_CFLAGS_FOR_TARGET): New variable. 6142 (CFLAGS_FOR_TARGET): Use it. 6143 (CXXFLAGS_FOR_TARGET): Likewise. 6144 * Makefile.in: Regenerated. 6145 * configure.in (--with-build-sysroot): New option. 6146 * configure: Regenerated. 6147 61482005-07-24 Paolo Bonzini <bonzini@gnu.org> 6149 6150 * Makefile.tpl: Wrap install between unstage and stage 6151 * Makefile.in: Regenerate. 6152 61532005-07-16 Kelley Cook <kcook@gcc.gnu.org> 6154 6155 * all files: Update FSF address. 6156 61572005-07-14 Jim Blandy <jimb@redhat.com> 6158 6159 * configure.in: Add cases for Renesas m32c. 6160 * configure: Regenerated. 6161 61622005-07-14 Kelley Cook <kcook@gcc.gnu.org> 6163 6164 * COPYING, compile, config-ml.in, config.guess, 6165 config.sub, install-sh, missing, mkinstalldirs, 6166 symlink-tree, ylwrap: Sync from upstream sources. 6167 61682005-07-13 Eric Christopher <echristo@redhat.com> 6169 6170 * configure.in: Add toplevel noconfigdir support for tpf. 6171 * configure: Regenerate. 6172 61732005-07-11 Jakub Jelinek <jakub@redhat.com> 6174 6175 * Makefile.def (target_modules): Add libssp. 6176 * configure.in (target_libraries): Add target-libssp. 6177 * configure: Rebuilt. 6178 * Makefile.in: Rebuilt. 6179 61802005-07-11 Paolo Bonzini <bonzini@gnu.org> 6181 6182 PR ada/22340 6183 6184 * Makefile.def: Sync with gcc. 6185 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Fix pasto. 6186 * Makefile.in: Regenerate. 6187 61882005-07-07 Andreas Schwab <schwab@suse.de> 6189 6190 * Makefile.def (flags_to_pass): Add CFLAGS_FOR_BUILD. 6191 * Makefile.tpl (EXTRA_GCC_FLAGS): Don't pass CFLAGS_FOR_BUILD here. 6192 * Makefile.in: Regenerated. 6193 61942005-07-07 Kazu Hirata <kazu@codesourcery.com> 6195 6196 * configure.in: Add --enable-libssp and --disable-libssp. 6197 * configure: Regenerate with autoconf-2.13. 6198 61992005-07-06 Geoffrey Keating <geoffk@apple.com> 6200 6201 * configure.in: Don't build sim or rda when targetting darwin. 6202 * configure: Regenerate. 6203 62042005-07-04 Ben Elliston <bje@gnu.org> 6205 6206 * src-release (do-proto-toplev): Remove dejagnu bits. 6207 (DEJAGNU_SUPPORT_DIRS): Remove. 6208 (dejagnu.tar.bz2, dejagnu.tar): Likewise. 6209 (GDBD_SUPPORT_DIRS): Likewise. 6210 (gdb+dejagnu.tar.bz2, gdb+dejagnu.tar): Likewise. 6211 (INSIGHTD_SUPPORT_DIRS): Likewise. 6212 (insight+dejagnu.tar.bz2, insight+dejagnu.tar): Likewise. 6213 62142005-06-30 Ben Elliston <bje@gnu.org> 6215 6216 * setup.com (mpw): Remove unused directive. 6217 62182005-06-22 Paolo Bonzini <bonzini@gnu.org> 6219 6220 * Makefile.def (stagefeedback): Come after profile. 6221 Define profiledbootstrap target. 6222 * Makefile.tpl (profiledbootstrap): Remove. 6223 (stageprofile-end): Zap stagefeedback. 6224 (stagefeedback-start): Copy all .gcda files, not only GCC's. 6225 * Makefile.in: Regenerate. 6226 62272005-06-13 Zack Weinberg <zack@codesourcery.com> 6228 6229 * depcomp: Update from automake CVS. Add 'ia64hp' stanza. 6230 In 'cpp' stanza, support '#line' as well as '# '. 6231 62322005-06-07 Hans-Peter Nilsson <hp@axis.com> 6233 6234 * configure.in (unsupported_languages): New macro. 6235 <mmix-knuth-mmixware>: Set unsupported_languages. Name explicit 6236 non-ported target libraries in noconfigdirs. 6237 <cris-*, crisv32-*> Ditto, except for non-aout, non-elf, 6238 non-linux-gnu. Remove libgcj_ex_libffi. 6239 <lang_frag loop>: Set add_this_lang=no if the language is in 6240 unsupported_languages. 6241 * configure: Regenerate. 6242 62432005-06-04 Tobias Schl"uter <tobias.schlueter@physik.uni-muenchen.de> 6244 6245 * configure.in: Fix typo in handling of --with-mpfr-dir. 6246 * configure: Regenerate. 6247 62482005-06-02 Jim Blandy <jimb@redhat.com> 6249 6250 * config.sub: Add cases for the Renesas m32c. (This patch has been 6251 accepted into the master sources.) 6252 62532005-06-02 Aldy Hernandez <aldyh@redhat.com> 6254 Michael Snyder <msnyder@redhat.com> 6255 Stan Cox <scox@redhat.com> 6256 6257 * configure.in: Set noconfigdirs for ms1. 6258 6259 * configure: Regenerate. 6260 62612005-05-25 Paolo Bonzini <bonzini@gnu.org> 6262 6263 * Makefile.tpl (stage[+id+]-start): Iterate over target module as well. 6264 (Dependencies): Consider target modules for bootstrap dependencies. 6265 Make target bootstrap modules depend on each stage's gcc. 6266 * Makefile.in: Regenerate. 6267 62682005-05-20 Paolo Bonzini <bonzini@gnu.org> 6269 6270 * Makefile.def (configure-gcc): Depend on binutils having been built. 6271 (all-gcc): No need to do it here. 6272 * Makefile.in: Regenerate. 6273 62742005-05-19 Paul Brook <paul@codesourcery.com> 6275 6276 * configure.in: Rewrite misleading error message when requested 6277 language cannot be built. 6278 * configure: Regenerate. 6279 62802005-05-15 Daniel Jacobowitz <dan@codesourcery.com> 6281 6282 * ylwrap: Import from Automake 1.9.5. 6283 62842005-05-04 Mike Stump <mrs@apple.com> 6285 6286 * configure.in: Always pass --target to target configures as 6287 otherwise rebuilds that do --recheck will fail. 6288 * configure: Rebuilt. 6289 62902005-05-04 Paolo Bonzini <bonzini@gnu.org> 6291 6292 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Rename from 6293 STAGE_HOST_EXPORTS. 6294 (configure, all): Add bootstrap support. 6295 (Host modules, target modules): Pass post-stage1 flags and exports. 6296 (Top-level bootstrap): Remove bootstrap rules, expanded elsewhere. 6297 * Makefile.in: Regenerate. 6298 62992005-04-29 Paolo Bonzini <bonzini@gnu.org> 6300 6301 Sync from gcc: 6302 6303 2005-04-22 Bernd Schmidt <bernd.schmidt@analog.com> 6304 6305 * config.sub: Update from master copy. 6306 6307 2005-04-19 Hans-Peter Nilsson <hp@axis.com> 6308 6309 * configure.in <crisv32-*-*, cris-*-*>: New local variable 6310 libgcj_ex_libffi. Have specific match for *-*-linux*. Separate 6311 matches for "*-*-aout" and "*-*-elf". Don't disable libffi for 6312 "*-*-elf" and "*-*-linux*". 6313 * configure: Regenerate. 6314 63152005-04-06 Paolo Bonzini <bonzini@gnu.org> 6316 6317 * Makefile.tpl (BUILD_CONFIGARGS): Include --with-build-subdir. 6318 (TARGET_CONFIGARGS): Include --with-target-subdir. 6319 (configure, all): New macros. Use them throughout. 6320 63212005-04-05 Paolo Bonzini <bonzini@gnu.org> 6322 6323 * Makefile.tpl: Sync with gcc. 6324 * Makefile.in: Regenerate. 6325 63262005-03-30 J"orn Rennecke <joern.rennecke@st.com> 6327 6328 * config/mh-mingw32: Delete. 6329 * configure.in: Don't use it. 6330 * configure: Regenerate. 6331 63322005-03-31 Paolo Bonzini <bonzini@gnu.org> 6333 6334 * Makefile.def (bfd, opcodes, libstdc++-v3, libmudflap): Set lib_path. 6335 * Makefile.tpl (SET_LIB_PATH, REALLY_SET_LIB_PATH): Remove. 6336 (HOST_EXPORTS, STAGE_HOST_EXPORTS, TARGET_EXPORTS): Set $(RPATH_ENVVAR). 6337 (HOST_LIB_PATH): Generate from Makefile.def. 6338 (TARGET_LIB_PATH): Likewise. 6339 (Old bootstrap targets): Include TARGET_LIB_PATH into RPATH_ENVVAR. 6340 * Makefile.in: Regenerate. 6341 * configure.in (set_lib_path, SET_LIB_PATH, SET_GCC_LIB_PATH): Remove. 6342 (RPATH_ENVVAR): Include Darwin case. 6343 * configure: Regenerate. 6344 63452005-03-25 Paolo Bonzini <bonzini@gnu.org> 6346 6347 * configure.in (RPATH_ENVVAR): Set to DYLD_LIBRARY_PATH on Darwin. 6348 * configure: Regenerate. 6349 63502005-03-21 Zack Weinberg <zack@codesourcery.com> 6351 6352 * Makefile.def: Remove libstdcxx_incdir, libsubdir, gxx_include_dir, 6353 gcc_version, and gcc_version_trigger from set of flags to pass. 6354 * Makefile.tpl: Remove definitions of above variables. 6355 (config.status): Remove dependency on $(gcc_version_trigger). 6356 * Makefile.in: Regenerate. 6357 * configure.in: Do not reference config/gcc-version.m4 nor 6358 config/gxx-include-dir.m4. Do not invoke TL_AC_GCC_VERSION nor 6359 TL_AC_GXX_INCLUDE_DIR. Do not set gcc_version_trigger. 6360 * configure: Regenerate. 6361 63622005-03-16 Manfred Hollstein <manfred.h@gmx.net> 6363 Andrew Pinski <pinskia@physics.uc.edu> 6364 6365 * Makefile.tpl (check-[+module+]): Fix shell statement inside if ... fi. 6366 * Makefile.in: Regenerate. 6367 63682005-03-01 Alexandre Oliva <aoliva@redhat.com> 6369 6370 PR libgcj/20160 6371 * ltmain.sh: Avoid creating archives with components that have 6372 duplicate basenames. 6373 63742005-02-28 Andrew Pinski <pinskia@physics.uc.edu> 6375 6376 PR bootstrap/20250 6377 * Makefile.tpl (HOST target installs): Fix copy and pasto, use install 6378 instead of check. 6379 * Makefile.in: Regenerate. 6380 63812005-02-28 Paolo Bonzini <bonzini@gnu.org> 6382 6383 Sync from gcc. 6384 6385 2005-02-28 Paolo Bonzini <bonzini@gnu.org> 6386 6387 PR bootstrap/17383 6388 * Makefile.def (target_modules): Remove "stage", now unnecessary. 6389 * Makefile.tpl (HOST_SUBDIR): New substitution. 6390 (STAGE_HOST_EXPORTS, EXPECT, HOST_LIB_PATH, USUAL_AR_FOR_TARGET, 6391 USUAL_AS_FOR_TARGET, USUAL_DLLTOOL_FOR_TARGET, USUAL_GCC_FOR_TARGET, 6392 USUAL_LD_FOR_TARGET, USUAL_NM_FOR_TARGET, USUAL_OBJDUMP_FOR_TARGET, 6393 USUAL_RANLIB_FOR_TARGET, USUAL_WINDRES_FOR_TARGET): Use it. 6394 (Host modules, Bootstrapped modules): Use it. 6395 (Build modules, Target modules): Do not create symlink trees, 6396 always configure out-of-srcdir. 6397 (distclean): Try removing $(host_subdir) with rm before using rm -rf. 6398 * configure.in (FLAGS_FOR_TARGET, CC_FOR_TARGET, GCJ_FOR_TARGET, 6399 GFORTRAN_FOR_TARGET, CXX_FOR_TARGET, RAW_CXX_FOR_TARGET): Use 6400 $(HOST_SUBDIR). Create a symlink for host_subdir. 6401 6402 * Makefile.in: Regenerate. 6403 * configure: Regenerate. 6404 6405 Merged from libada-gnattools-branch: 6406 2004-11-28 Nathanael Nerode <neroden@gcc.gnu.org> 6407 6408 * Makefile.def: Add gnattools as a module, depending on target-libada. 6409 * Makefile.in: Regenerate. 6410 * configure.in: Include gnattools in host_tools; disable it if ada 6411 is disabled. 6412 * configure: Regenerate. 6413 64142005-02-23 Nick Clifton <nickc@redhat.com> 6415 6416 * configure: Regenerate. 6417 64182005-02-22 Paul Schlie <schlie@comcast.net> 6419 6420 * configure.in: Allow darwin targeted ports to build tk, itcl and 6421 libgui. 6422 64232005-02-21 Eric Botcazou <ebotcazou@libertysurf.fr> 6424 6425 PR libgcj/10353 6426 * configure.in (noconfigdirs) <sparc-*-solaris2.[0-6]>: Add libgcj. 6427 * configure: Regenerate. 6428 64292005-02-08 Andrew Cagney <cagney@gnu.org> 6430 6431 * MAINTAINERS: Delete reference to dejagnu/ and mmalloc/ from the 6432 gdb/ section. Update GDB's URL. 6433 64342005-01-31 Andrew Cagney <cagney@gnu.org> 6435 6436 * gettext.m4: Only set ENABLE_NLS when gettext is present. 6437 64382005-01-29 Hans-Peter Nilsson <hp@axis.com> 6439 6440 * configure.in (noconfigdirs) <crisv32-*-*>: Match like cris-*-*. 6441 <crisv32-*-*, cris-*-*>: Only disable target-newlib and 6442 target-libgloss when not *-*-elf and *-*-aout. 6443 * configure: Regenerate. 6444 64452005-01-27 Andrew Cagney <cagney@gnu.org> 6446 6447 * gettext.m4: Don't use NONE as a default for CATOBJEXT. 6448 64492005-01-24 Andrew Cagney <cagney@gnu.org> 6450 6451 * gettext.m4: Only fall back to ../intl/ when it's present. 6452 64532005-01-17 Kelley Cook <kcook@gcc.gnu.org> 6454 6455 * install-sh, config.sub: Import from upstream. 6456 64572005-01-17 Kelley Cook <kcook@gcc.gnu.org> 6458 6459 PR bootstrap/18222 6460 * Makefile.def: Pass CPPFLAGS_FOR_TARGET. 6461 * Makefile.tpl: Define target CPPFLAGS on CPPFLAGS_FOR_TARGET. 6462 * Makefile.in: Regenerate. 6463 64642005-01-03 Paolo Bonzini <bonzini@gnu.org> 6465 6466 Revert 2004-12-28 Makefile changes, a better fix will be 6467 applied to mainline and src after GCC 4.0 branches. 6468 64692004-12-28 Paolo Bonzini <bonzini@gnu.org> 6470 6471 PR bootstrap/17383 6472 6473 * Makefile.def (target_modules): Remove stage parameter, 6474 it is always true now. 6475 * Makefile.tpl (configure-build-[+module+], 6476 configure-target-[+module+]): Always build symlink tree 6477 for the directory and for include. BUILD_SUBDIR and 6478 TARGET_SUBDIR cannot be . anymore. 6479 * Makefile.in: Regenerate. 6480 64812004-12-25 David Edelsohn <edelsohn@gnu.org> 6482 6483 Revert 2004-12-08 Makefile changes. 6484 64852004-12-16 Andrew Stubbs <andrew.stubbs@st.com> 6486 6487 * configure.in (sh64-*-*): Reenable gprof. 6488 * configure: Regenerate. 6489 64902004-12-09 Jim Blandy <jimb@redhat.com> 6491 6492 * MAINTAINERS: List 'depcomp' as part of automake. 6493 64942004-12-08 David Edelsohn <edelsohn@gnu.org> 6495 6496 * Makefile.def (flags_to_pass): Add PICFLAG_FOR_TARGET. 6497 * Makefile.tpl (EXTRA_HOST_FLAGS): Add PICFLAG. 6498 (EXTRA_TARGET_FLAGS): Add PICFLAG. 6499 * Makefile.in: Regenerate. 6500 65012004-12-07 Matt Kraai <kraai@ftbfs.org> 6502 6503 * Makefile.tpl: Generate normal dependencies if the LHS module is 6504 not bootstrapped. 6505 * Makefile.in: Regenerate. 6506 65072004-12-03 Richard Sandiford <rsandifo@redhat.com> 6508 6509 * configure.in: Include config/gxx-include-dir.m4. Use 6510 TL_AC_GXX_INCLUDE_DIR. Remove some now-redundant AC_SUBSTs. 6511 * configure: Regenerate. 6512 65132004-12-03 Richard Sandiford <rsandifo@redhat.com> 6514 6515 * config.if: Delete. 6516 * configure.in: Set libstdcxx_incdir directly. 6517 * configure: Regenerate. 6518 * MAINTAINERS: Remove mention of config.if. 6519 * src-release (DEVO_SUPPORT): Remove config.if. 6520 65212004-12-02 Eric Christopher <echristo@redhat.com> 6522 6523 * Makefile.tpl (clean-target-libgcc): Add stmp-dirs to list 6524 of things to remove. 6525 * Makefile.in: Regenerate. 6526 65272004-12-02 Richard Sandiford <rsandifo@redhat.com> 6528 6529 * configure.in: Clear gcc_version_trigger if the file doesn't exist. 6530 * configure: Regenerate. 6531 65322004-12-02 Richard Sandiford <rsandifo@redhat.com> 6533 6534 * configure.in: Include config/gcc-version.m4. Use TL_AC_GCC_VERSION 6535 to set gcc_version_trigger. Remove some now-redundant AC_SUBSTs. 6536 * configure: Regenerate. 6537 65382004-11-26 John David Anglin <dave.anglin@nrc-cnrc.gc.ca> 6539 6540 * configure.in (hppa*-*-linux*): Don't add libgcj to noconfigdirs. 6541 (hppa*64*-*-*): Delete incorrect comment. 6542 * configure: Rebuilt. 6543 65442004-11-15 Kelley Cook <kcook@gcc.gnu.org> 6545 6546 * install-sh, compile: Import from automake. 6547 65482004-11-15 Kelley Cook <kcook@gcc.gnu.org> 6549 6550 * config.guess, config.sub: Import from savannnah. 6551 65522004-11-12 Mike Stump <mrs@apple.com> 6553 6554 * Makefile.def: Add html support. 6555 * Makefile.tpl: Likewise. 6556 * Makefile.in: Regenerate. 6557 65582004-11-11 Geoffrey Keating <geoffk@apple.com> 6559 6560 PR 18423 6561 * configure.in: Remove all instances of build-fixincludes from 6562 noconfigdirs. 6563 (build_configargs): Supply --target to subdirectories. 6564 * configure: Regenerate. 6565 6566 * Makefile.def: Make gcc install depend on fixincludes install. 6567 * Makefile.in: Regenerate. 6568 65692004-11-08 Hans-Peter Nilsson <hp@bitrange.com> 6570 6571 * configure.in (noconfigdirs) [mmix-*-*]: Disable 6572 target-libgfortran. 6573 * configure: Regenerate. 6574 65752004-11-07 David Edelsohn <edelsohn@gnu.org> 6576 6577 * config-ml.in: Pass FCFLAGS for multilibs, handle GFORTRAN 6578 like CC. 6579 65802004-11-05 Paolo Bonzini <bonzini@gnu.org> 6581 6582 * Makefile.def (host fixincludes): Specify missing targets. 6583 * Makefile.in: Regenerate. 6584 65852004-11-04 H.J. Lu <hongjiu.lu@intel.com> 6586 6587 PR other/17783 6588 * configure.in: Set up LD_LIBRARY_PATH by default for gcc. 6589 * configure: Regenerated. 6590 65912004-11-04 Daniel Jacobowitz <dan@debian.org> 6592 6593 * configure.in (arm-*-oabi*, thumb-*-oabi*): Remove. 6594 * configure: Regenerated. 6595 65962004-10-28 Eric B. Weddington <ericw@evcohs.com> 6597 6598 PR target/18151 6599 * configure.in (case ${target}): Do not build fixincludes for avr. 6600 * configure: Regenerated. 6601 66022004-10-26 Paolo Bonzini <bonzini@gnu.org> 6603 6604 * configure.in (case ${target}): Do not build fixincludes 6605 on platforms where it is not used. 6606 * configure: Regenerated. 6607 66082004-10-23 Daniel Jacobowitz <dan@debian.org> 6609 6610 * configure.in: Use an absolute path to install-sh. 6611 * configure: Regenerated. 6612 66132004-10-19 Andrew Cagney <cagney@gnu.org> 6614 6615 * src-release (do-djunpack, do-md5sum): Install the generated file 6616 directly into the proto-toplev/ directory. 6617 66182004-10-19 Andrew Cagney <cagney@gnu.org> 6619 6620 * src-release (GDB_SUPPORT_DIRS): Remove utils and intl. 6621 66222004-10-12 Kelley Cook <kcook@gcc.gnu.org> 6623 6624 * configure.in (*-*-cygwin*): Supress warning if newlib not present. 6625 * configure: Regenerate. 6626 66272004-10-06 Paolo Bonzini <bonzini@gnu.org> 6628 6629 Fix wrong conflict resolution in: 6630 6631 2004-08-16 Paolo Bonzini <bonzini@gnu.org> 6632 6633 * Makefile.in: Regenerate. 6634 * Makefile.tpl (Autogenerated `all-*' targets): Invoke $(TARGET-*) 6635 in the recursive `make', instead of hardwiring `all'. 6636 (Autogenerated TARGET-* variables): New. 6637 66382004-10-05 Ulrich Weigand <uweigand@de.ibm.com> 6639 6640 Merged from GCC / libtool upstream: 6641 2004-10-02 P.J. Darcy <darcypj@us.ibm.com> 6642 * ltcf-c.sh (tpf*): Add ld_shlibs=yes. 6643 * ltcf-cxx.sh (tpf*): Likewise. 6644 * ltconfig (tpf*): Add TPF OS configuration support. 6645 66462004-09-30 Tomer Levi <Tomer.Levi@nsc.com> 6647 6648 * configure.in: Enable target-libgloss for crx-*-*. 6649 * configure: Regenerate. 6650 66512004-09-24 Michael Roth <mroth@nessie.de> 6652 6653 * configure.in (--without-headers): Add missing double quotes. 6654 * configure: Regenerate. 6655 66562004-09-24 Kelley Cook <kcook@gcc.gnu.org> 6657 6658 * ylwrap: Revert to previous version. 6659 66602004-09-23 H.J. Lu <hongjiu.lu@intel.com> 6661 6662 PR bootstrap/17369 6663 * Makefile.tpl (REALLY_SET_LIB_PATH): Add @SET_GCC_LIB_PATH@. 6664 (HOST_EXPORTS]): Add @SET_GCC_LIB_PATH@. Set and export 6665 SET_GCC_LIB_PATH_CMD. 6666 (BASE_TARGET_EXPORTS): Likewise. 6667 * Makefile.in: Regenerated. 6668 6669 * configure.in (SET_GCC_LIB_PATH): Set and substitute. 6670 * configure: Regenerated. 6671 66722004-09-23 Kelley Cook <kcook@gcc.gnu.org> 6673 6674 * config.guess: New upstream version 6675 * compile, depcomp, install-sh, ylwrap: Likewise. 6676 66772004-09-19 Roger Sayle <roger@eyesopen.com> 6678 6679 * config/mh-x86omitfp: New host makefile fragment. Add 6680 -fomit-frame-pointer to the default BOOT_CFLAGS. 6681 * configure.in: Use it to speed up bootstrap on some IA-32 hosts. 6682 * configure: Regenerate. 6683 66842004-09-15 Andrew Pinski <pinskia@physics.uc.edu> 6685 6686 PR target/11572 6687 * configure.in (*-*-darwin*): Renable libobjc. 6688 * configure: Regenerate. 6689 66902004-09-09 Daniel Berlin <dberlin@dberlin.org> 6691 6692 * Makefile.def: Remove libbanshee. 6693 * Makefile.tpl: Ditto. 6694 * configure.in: Ditto. 6695 * Makefile.in: Regen. 6696 * configure: Ditto. 6697 66982004-09-07 Paolo Bonzini <bonzini@gnu.org> 6699 6700 * missing: Import latest version from master repository. 6701 67022004-09-04 Nick Clifton <nickc@redhat.com> 6703 6704 * config.sub: Import latest version from master repository. 6705 * config.guess: Likewise. 6706 This includes these changes: 6707 6708 2004-08-27 Hans-Peter Nilsson <hp@axis.com> 6709 6710 * config.sub: Handle crisv32, alias etraxfs. 6711 * config.guess (crisv32:Linux:*:*): Handle. 6712 6713 2004-08-13 Brad Smith <brad@comstyle.com> 6714 6715 * config.guess (*:OpenBSD:*:*): Remove defunct MIPS machines. 6716 (sgi:OpenBSD:*:*): Emit mips64, not mipseb. 6717 6718 2004-08-11 Paul Eggert <eggert@cs.ucla.edu> 6719 6720 * config.guess (*:Darwin:*:*): If uname -p reports "unknown", 6721 assume the processor is a powerpc. This is because coreutils 6722 uname (at least versions 4.5.7 through 5.2.1) outputs "unknown" 6723 in this case, due to a MacOS X bug that causes 6724 sysctl ((int[]) {CTL_HW, HW_MACHINE_ARCH}, 2, buffer, &bufsize, 0, 0) 6725 to return a negative number. 6726 Problem reported by Petter Reinholdtsen in: 6727 http://lists.gnu.org/archive/html/bug-gnu-utils/2003-02/msg00201.html 6728 6729 2004-07-19 Ben Elliston <bje@gnu.org> 6730 6731 * config.guess (S7501:*:4.0:3.0): Handle NCR System V UNIX machine. 6732 6733 2004-06-24 Ben Elliston <bje@gnu.org> 6734 6735 * config.guess: Update copyright years. 6736 * config.sub: Likewise. 6737 6738 2004-06-22 Robert Millan <robertmh@gnu.org> 6739 6740 * config.guess (*:FreeBSD:*:*): Remove check for glibc (unneeded 6741 since GNU/kFreeBSD systems match *:GNU/*:*:* instead). 6742 6743 2004-06-22 Stanley F. Quayle <stan@stanq.com> 6744 6745 * config.guess (*:*VMS:*:*): New entry. Replaces 6746 Alpha:OpenVMS:*. Recognize and advertise all VMS flavors as dec 6747 manufacturer. 6748 6749 2004-06-22 Ben Elliston <bje@gnu.org> 6750 6751 * config.guess: Cray fixes from Wendy Palm <wendyp@cray.com>. 6752 * config.sub: Likewise. 6753 6754 2004-06-22 Ben Elliston <bje@gnu.org> 6755 6756 Reported by Hans-Peter Nilsson <hp@bitrange.com>: 6757 * config.sub: Correctly handle mmix-knuth and mmix-knuth-mmixware. 6758 6759 2004-06-11 Ben Elliston <bje@gnu.org> 6760 6761 * config.guess (pegasos:OpenBSD:*:*): Remove. 6762 6763 2004-06-11 Ben Elliston <bje@gnu.org> 6764 6765 From Wouter Verhelst <wouter@grep.be>: 6766 * config.guess (M68*:*:R3V[5678]:*): Detect R3V8. 6767 6768 2004-06-11 Ben Elliston <bje@gnu.org> 6769 6770 * config.guess (luna88k:OpenBSD:*:*): New. 6771 6772 2004-03-12 Kazuhiro Inaoka <inaoka.kazuhiro@renesas.com> 6773 6774 * config.guess (m32r*:Linux:*:*): New case. 6775 * config.sub: Handle m32rle. 6776 6777 2004-03-12 Ben Elliston <bje@wasabisystems.com> 6778 6779 From Jens Petersen <petersen@redhat.com>: 6780 * config.sub: Handle sparcv8. 6781 6782 2004-03-03 Ben Elliston <bje@wasabisystems.com> 6783 6784 From Tom Smith <smith@cag.lkg.hp.com>: 6785 * config.guess: Version suffixes are equally significant on Tru64 6786 V4.* and V5.*, so do not ignore them on V5.*. Handle a version 6787 prefix of "P" (patched kernel). 6788 6789 2004-02-23 Tal Agmon <Tal.Agmon@nsc.com> 6790 6791 * config.sub: Add support for National Semiconductor CRX target. 6792 67932004-09-03 Jan Beulich <jbeulich@novell.com> 6794 6795 * configure.in: Remove target-libstdc++-v3 from noconfigdirs for 6796 *-*-netware, but add target-libmudflap. 6797 Consolidate *-*-netware targets (of which really only i?86 exists) 6798 into a single entry. 6799 * configure: Likewise. 6800 68012004-09-01 Paolo Bonzini <bonzini@gnu.org> 6802 6803 * Makefile.tpl (sorry): Remove. 6804 (clean-stage[+id+], clean-stage[+id+]-module): New targets. 6805 (cleanstrap targets): Depend on distclean, not distclean-stage1. 6806 (do-clean): Clean per-stage directories too. 6807 (do-distclean): Run distclean-stage1 too. 6808 (.NOTPARALLEL): Enable during toplevel bootstrap. 6809 (stage[+id+]-bubble): Enable parallel execution during 6810 the recursive invocation. 6811 * Makefile.in: Regenerate. 6812 6813 Sync from gcc (moving the Makefile.in change to Makefile.tpl): 6814 6815 2004-08-31 Robert Bowdidge <bowdidge@apple.com> 6816 6817 * Makefile.in: Move BOOT_CFLAGS above host makefile fragment include. 6818 * configure.in: add test for powerpc-*-darwin* to specify makefile frag 6819 * configure: regenerate 6820 * config/mh-ppc-darwin: create file, override BOOT_CFLAGS for 6821 -mdynamic-no-pic 6822 68232004-08-31 Paolo Bonzini <bonzini@gnu.org> 6824 6825 * Makefile.tpl: Move BOOT_CFLAGS above host makefile fragment 6826 include. 6827 * configure.in: Fix indentation. 6828 * configure: Regenerate. 6829 68302004-08-31 Paolo Bonzini <bonzini@gnu.org> 6831 6832 * Makefile.def (build_modules): Add fixincludes. 6833 (dependencies): Make gcc depend on fixincludes. 6834 * configure.in (build_tools): Add fixincludes. 6835 (build_configdirs): Always include build_libs. 6836 * Makefile.in: Regenerate. 6837 * configure: Regenerate. 6838 68392004-08-30 Paolo Bonzini <bonzini@gnu.org> 6840 6841 * Makefile.def (bootstrap stages): Add 'lean' parameter. 6842 * Makefile.tpl (configure-stageN-*, all-stageN-*): Turned into 6843 phony targets; do not generate timestamp files. 6844 (distclean-stageN): Remove references to their timestamp files. 6845 (restageN, touch-stageN): Remove. 6846 (stageN-bubble): Rewritten. 6847 (compare): Support lean bootstraps. 6848 * Makefile.in: Regenerate. 6849 6850 * configure.in: Only warn when bootstrapping but 6851 build != host or build != target. Support lean bootstraps. 6852 * configure: Regenerate. 6853 6854 Sync from gcc: 6855 2004-08-26 Phil Edwards <phil@codesourcery.com> 6856 6857 * configure.in: Give a better error message if GMP/MPFR are missing 6858 and a language needing them has been requested. 6859 * configure: Regenerated. 6860 6861 2004-08-25 Phil Edwards <phil@codesourcery.com> 6862 6863 * configure.in: Print a list of available language front-ends if 6864 a requested one is missing. Tidy stray tab characters. 6865 * configure: Regenerated. 6866 68672004-08-17 Paolo Bonzini <bonzini@gnu.org> 6868 6869 * Makefile.in: Regenerate. 6870 * configure: Regenerate. 6871 6872 * Makefile.def (bootstrap-stage): Rename extra_*_flags to 6873 stage_*_flags. 6874 * Makefile.tpl (configure-[+module+], all-[+module+]): Exit 6875 for bootstrapped modules if toplevel bootstrap is going. 6876 (GCC bootstrap): Generate per-stage targets for all bootstrapped 6877 modules. Adjust for changes in Makefile.def. Enable several 6878 rules even in non-bootstrap mode, just to avoid peppering the 6879 template with unnecessary "@if/@endif gcc-bootstrap" pairs. 6880 (stage-[+prev+]-bubble): Remove. 6881 6882 * Makefile.def (Dependencies): Depend on all-build-bison, 6883 all-build-flex, all-build-byacc, all-build-texinfo, rather 6884 than the host variations. 6885 * Makefile.tpl (BUILD_DIR_PREFIX): Remove. Replace throughout 6886 with BUILD_SUBDIR. 6887 (BISON): Update for recent Bisons. 6888 (YACC): Fix typo. 6889 (cross): Depend on all-build. 6890 (all): Do not depend on all-build. 6891 (prebootstrap): Remove. 6892 (dep-kind): Accept separate prefixes for MODULE and ON variables. 6893 (Prebootstrap dependencies): Add them to the per-stage targets 6894 and to all-prebootstrap. 6895 * configure.in (build_configdirs): Always enable build_tools. 6896 (BUILD_DIR_PREFIX): Remove. 6897 6898 * Makefile.def (gcc): Add target variable. 6899 (gdb, expect, guile, tk, tix): Replace with_x with extra_make_flags. 6900 * Makefile.tpl (Autogenerated `all-*' targets): Invoke $(TARGET-*) 6901 in the recursive `make', instead of hardwiring `all'. 6902 (Autogenerated TARGET-* variables): New. 6903 69042004-08-17 Robert Millan <robertmh@gnu.org> 6905 6906 * configure.in: In noconfigdirs check, match GNU/k*BSD with GNU/Linux 6907 (instead of FreeBSD). 6908 * configure: Regenerate. 6909 69102004-08-12 Nathanael Nerode <neroden@gcc.gnu.org> 6911 6912 * Makefile.def, configure.in, src-release: Remove useless, bogus 6913 references to tix. 6914 * Makefile.in, configure: Regenerate. 6915 6916 * src-release: Stop distributing mmalloc with gdb (which doesn't 6917 use it). 6918 * Makefile.def: GDB doesn't depend on mmalloc anymore. 6919 * Makefile.in: Regenerate. 6920 69212004-08-09 Mark Mitchell <mark@codesourcery.com> 6922 6923 * configure.in (arm*-*-eabi*): New target. 6924 * configure: Regenerate. 6925 69262004-08-01 Robert Millan <robertmh@gnu.org> 6927 6928 * configure.in: Turn mt-linux into mt-gnu. Use mt-gnu and enable 6929 libmudflap for all GNU-based systems (with Glibc). 6930 * configure: Regenerate. 6931 69322004-08-06 Paolo Bonzini <bonzini@gnu.org> 6933 6934 * Makefile.def (bfd, opcodes, gcc, zlib): Mark as bootstrap module. 6935 (bison, byacc, flex, texinfo): Do not mark as bootstrap module. 6936 (Dependencies): New section. 6937 * Makefile.tpl (Dependencies): Generate from Makefile.def. 6938 (configure-target-[+module+]): Depend on maybe-all-gcc 6939 (all-prebootstrap): New name of all-bootstrap. Changed throughout. 6940 (toplevel profiledbootstrap): Fix dependencies. 6941 * Makefile.in: Regenerate. 6942 69432004-08-03 Mark Mitchell <mark@codesourcery.com> 6944 6945 * configure.in (arm*-*-symbianelf*): Add ${libgcj} and 6946 target-libiberty to noconfigdirs. 6947 69482004-08-03 Paul Brook <paul@codesourcery.com> 6949 6950 * configure.in: Check for MPFR as well as GMP. 6951 * configure: Regenerate. 6952 69532004-08-03 Paolo Bonzini <bonzini@gnu.org> 6954 6955 * Makefile.def (host-modules): Add gcc. 6956 * Makefile.in: Regenerate. 6957 * Makefile.tpl (sorry): New rule. 6958 (configure-host, all-host, [+make_target+]-host, do-check, 6959 install-host): Do not add gcc as a special case. 6960 (host modules): Add a small special-casing for gcc. Export 6961 extra_make_flags through the environment. 6962 (maybe-configure-gcc, configure-gcc, maybe-all-gcc, all-gcc, 6963 maybe-check-gcc, check-gcc, maybe-install-gcc, install-gcc, 6964 other recursive targets for gcc): Remove. 6965 6966 (all, do-[+make_target+], do-check): Wrap between unstage and stage. 6967 (stage, unstage): New rules. 6968 (stage[+id+]-start, stage[+id+]-end, [+compare-target+], 6969 distclean-stage[+id+]): Use stage_current. 6970 ([+bootstrap-target+], profiledbootstrap): Do not invoke manually 6971 the stage*-start rules. 6972 69732004-07-19 Robert Millan <robertmh@gnu.org> 6974 6975 Synced from gcc: 6976 6977 2004-04-26 Robert Millan <robertmh@gnu.org> 6978 6979 Add patches from libtool CVS. 6980 * libtool.m4: Add kfreebsd*-gnu and knetbsd*-gnu. 6981 * ltconfig: Likewise. 6982 * ltcf-c.sh: Likewise. 6983 * ltcf-cxx.sh: Likewise. 6984 * ltcf-gcj.sh: Likewise. 6985 69862004-07-12 Paolo Bonzini <bonzini@gnu.org> 6987 6988 * configure.in: Add noconfigdirs for crx-*-*. 6989 * configure: Regenerate. 6990 69912004-07-12 Paolo Bonzini <bonzini@gnu.org> 6992 6993 Synced from gcc: 6994 6995 2004-07-09 Loren J. Rittle <ljrittle@acm.org> 6996 6997 * configure.in: Build libmudflap by default on FreeBSD. 6998 * configure: Regenerated. 6999 7000 2004-07-09 Mark Mitchell <mark@codesourcery.com> 7001 7002 * configure.in: Do not build libmudflap by default on non-GNU/Linux 7003 systems. 7004 * configure: Regenerated. 7005 7006 2004-07-08 John David Anglin <dave.anglin@nrc-cnrc.gc.ca> 7007 7008 PR target/16344 7009 * Makefile.tpl (profiledbootstrap): Build runtime libraries with 7010 feedback based compiler. 7011 * Makefile.in: Rebuilt. 7012 7013 2004-07-05 Phil Edwards <phil@codesourcery.com> 7014 7015 * configure.in: Do not prepend $srcdir to /dev/null in 7016 makefile fragments. 7017 * configure: Regenerate. 7018 70192004-07-08 Alexandre Oliva <aoliva@redhat.com> 7020 7021 * Makefile.def (host_modules): Set bootstrap=true for flex. 7022 * Makefile.tpl (all-gcc): Depend on texinfo and flex. 7023 * Makefile.in: Rebuilt. 7024 70252004-07-01 Paolo Bonzini <bonzini@gnu.org> 7026 7027 * Makefile.def (build_modules): Add bison, byacc, flex, 7028 m4, texinfo. 7029 (flags_to_pass): Add FLEX. 7030 * Makefile.tpl (BUILD_DIR_PREFIX, BASE_EXPORTS): New. 7031 (BUILD_EXPORTS, HOST_EXPORTS, BASE_TARGET_EXPORTS): Include it. 7032 (DEFAULT_YACC, USUAL_YACC, DEFAULT_LEX, USUAL_LEX, DEFAULT_M4, 7033 DEFAULT_MAKEINFO): Remove. 7034 (CONFIGURED_YACC, CONFIGURED_FLEX, CONFIGURED_BISON, 7035 CONFIGURED_LEX, CONFIGURED_M4, CONFIGURED_MAKEINFO): Substitute. 7036 (YACC, FLEX, BISON, LEX, M4, MAKEINFO): Define to look into 7037 objdir or else use configured tool. 7038 (all-build): New. 7039 (all): Depend on it. 7040 (Build module dependencies): Add. 7041 * Makefile.in: Regenerate. 7042 * configure.in: Better support for multiple build modules, 7043 matching what is done for host/target modules. Do not look 7044 for "plausible" locations of build tools if Canadian cross. 7045 Use autoconf's AC_PROG_CC to find a C compiler. Define 7046 BUILD_DIR_PREFIX. Look for flex, makeinfo and m4. 7047 * configure: Regenerate. 7048 70492004-06-22 Paolo Bonzini <bonzini@gnu.org> 7050 7051 * Makefile.tpl (HOST_EXPORTS): Fix pasto. 7052 * Makefile.in: Regenerate. 7053 70542004-06-22 Paolo Bonzini <bonzini@gnu.org> 7055 7056 * Makefile.tpl (configure-build-[+module+], 7057 configure-[+module+], configure-target-[+module+]): Pass 7058 [+extra_configure_args+]. 7059 (all-build-[+module+], all-[+module+], check-[+module+], 7060 install-[+module+], [+make_target+]-[+module+], 7061 all-target-[+module+], check-target-[+module+], 7062 install-target-[+module+], [+make_target+]-target-[+module+]): 7063 Pass [+extra_make_args+]. 7064 (HOST_EXPORTS): Include the former GCC_HOST_EXPORTS. 7065 (GCC_HOST_EXPORTS): Remove. 7066 (configure-gcc, all-gcc, GCC_STRAP_TARGETS, profiledbootstrap, 7067 cross, check-gcc, check-gcc-c++, install-gcc, 7068 gcc-no-fixedincludes, [+make_target+]-gcc, stage[+id+]-bubble): 7069 Replace GCC_HOST_EXPORTS with HOST_EXPORTS. 7070 * Makefile.in: Regenerate. 7071 70722004-06-21 Christopher Faylor <cgf@alum.bu.edu> 7073 7074 * configure.in: Check for srcdir/winsup rather than build directory 7075 winsup. 7076 * configure: Regenerate. 7077 70782004-06-17 Corinna Vinschen <vinschen@redhat.com> 7079 7080 * configure.in: Don't build Cygwin native newlib if winsup 7081 directory is missing. Emit warning instead. 7082 * configure: Regenerate. 7083 70842004-06-09 Paolo Bonzini <bonzini@gnu.org> 7085 7086 * Makefile.tpl (touch-stage[+id+]): New. 7087 (restage[+prev+]): Depend on touch-stage[+id+]. 7088 7089 * Makefile.tpl (RECURSE_FLAGS_TO_PASS): New. 7090 Use it throughout. 7091 7092 * Makefile.def: Add profile and feedback bootstrap stages. 7093 Remove next field from bootstrap stages. 7094 * Makefile.tpl (LN, LN_S): Substitute. 7095 (stageN-start, stageN-end): Use double-colon rules, to 7096 provide a hook for additional setup commands. 7097 (distclean-stageN-gcc, restageN): Create dependencies from 7098 [+prev+], not from [+next+]. 7099 (stageN-bubble): Add commands for successive stages from 7100 [+prev+], using double-colon rules. 7101 (all-stageN-gcc): Fix typo. 7102 (stagefeedback-start, profiledbootstrap): New. 7103 * Makefile.in: Regenerate. 7104 * configure.in: Call ACX_PROG_LN. 7105 * configure: Regenerate. 7106 71072004-06-03 Paolo Bonzini <bonzini@gnu.org> 7108 7109 * configure.in: Fix --enable-bootstrap breakage introduced in trees 7110 without gcc. 7111 * configure: Regenerate. 7112 71132004-06-01 Paolo Bonzini <bonzini@gnu.org> 7114 7115 * Makefile.tpl: Fix typo. 7116 * Makefile.in: Regenerate. 7117 71182004-06-01 Paolo Bonzini <bonzini@gnu.org> 7119 7120 * configure.in: Remove new- prefix from toplevel 7121 bootstrap targets. 7122 * configure: Regenerate. 7123 71242004-06-01 Paolo Bonzini <bonzini@gnu.org> 7125 7126 Merge this patch from the gcc tree: 7127 7128 2004-05-30 Andreas Jaeger <aj@suse.de> 7129 Jim Wilson <wilson@specifixinc.com> 7130 7131 * config-ml.in: Pass FFLAGS and ADAFLAGS for multilibs, handle F77 7132 like CC. 7133 71342004-06-01 Paolo Bonzini <bonzini@gnu.org> 7135 7136 * Makefile.tpl (all.normal): Rename to all. 7137 (all): Replace with a rule to pick the default 7138 target from configure. 7139 (all-gcc, configure-gcc): Use conditionals to 7140 do nothing when toplevel bootstrap is going on. 7141 (GCC directory bootstrap) [gcc-bootstrap]: Disable. 7142 (Toplevel bootstrap) [gcc-no-bootstrap]: Disable. 7143 * configure.in: Support --enable-bootstrap. 7144 7145 * Makefile.def: Remove new- prefix from toplevel 7146 bootstrap targets. 7147 * Makefile.tpl: Likewise. 7148 7149 * Makefile.def: Add bootstrap_stage 4. Add bootstrap2 7150 target. 7151 7152 * Makefile.tpl (Toplevel bootstrap): Pass $(BASE_FLAGS_TO_PASS) 7153 $(RECURSE_FLAGS) to recursive invocation of make. 7154 7155 * Makefile.in: Regenerate. 7156 * configure: Regenerate. 7157 71582004-05-27 Daniel Jacobowitz <dan@debian.org> 7159 7160 * configure.in: Fix sed invocation for GFORTRAN_FOR_TARGET. 7161 * configure: Regenerate. 7162 71632004-05-25 Daniel Jacobowitz <drow@false.org> 7164 7165 * Makefile.tpl (BUILD_EXPORTS, HOST_EXPORTS, GCC_HOST_EXPORTS) 7166 (STAGE_HOST_EXPORTS, BASE_TARGET_EXPORTS, RAW_CXX_TARGET_EXPORTS) 7167 (NORMAL_TARGET_EXPORTS): New macros. Use them in all the recursive 7168 targets. 7169 * Makefile.in: Regenerate. 7170 71712005-05-24 Paolo Bonzini <bonzini@gnu.org> 7172 7173 * configure.in: Test the ability to symlink directories. 7174 * configure: Regenerate. 7175 7176 * Makefile.def (bootstrap-stage): New definitions. 7177 * Makefile.tpl (configure-stage1-gcc, 7178 configure-stage2-gcc, configure-stage3-gcc, 7179 all-stage1-gcc, all-stage2-gcc, all-stage3-gcc, 7180 new-bootstrap, new-cleanstrap, new-restage1, new-restage2, 7181 new-restage3, compare): Autogenerate, see Makefile.in 7182 entry for behavioral changes. 7183 (distclean-stage1, new-stage1-start, new-stage1-end, 7184 new-stage1-bubble, distclean-stage2, new-stage2-start, 7185 new-stage2-end, new-stage2-bubble, distclean-stage3, 7186 new-stage3-start, new-stage3-end): New autogenerated targets. 7187 (objext, prebootstrap, BOOT_CFLAGS, 7188 POSTSTAGE1_FLAGS_TO_PASS): Move above the autogenerated 7189 targets. 7190 7191 * Makefile.in: Regenerate. 7192 (distclean-stage1, new-stage1-start, new-stage1-end, 7193 new-stage1-bubble, distclean-stage2, new-stage2-start, 7194 new-stage2-end, new-stage2-bubble, distclean-stage3, 7195 new-stage3-start, new-stage3-end): New targets. 7196 (all-stage1-gcc): Move prebootstrap dependency from here... 7197 (configure-stage1-gcc): ...to here. 7198 (new-bootstrap): Use bubble targets. 7199 (new-cleanstrap, new-restage1, new-restage2, new-restage3): 7200 Use per-stage distclean targets. 7201 (configure-stage1-gcc, configure-stage2-gcc, 7202 configure-stage3-gcc, all-stage1-gcc, 7203 all-stage2-gcc, all-stage3-gcc, new-bootstrap): 7204 Use new-stageN-start to prepare the tree. 7205 72062004-05-23 Paolo Bonzini <bonzini@gnu.org> 7207 7208 * Makefile.def (host_modules): add libcpp. 7209 * Makefile.tpl: Add dependencies on and for libcpp. 7210 * Makefile.in: Regenerate. 7211 * configure.in: Add libcpp host module. 7212 * configure: Regenerate. 7213 72142004-05-17 Zack Weinberg <zack@codesourcery.com> 7215 7216 * Makefile.def, Makefile.tpl, configure.in: Remove all mention 7217 of libf2c. 7218 * configure, Makefile.in: Regenerate. 7219 72202004-05-13 Diego Novillo <dnovillo@redhat.com> 7221 7222 Merge from tree-ssa-20020619-branch. 7223 7224 * Makefile.def: Add libbanshee, libmudflap and libgfortran. 7225 * Makefile.tpl (BUILD_CONFIGDIRS): Add libbanshee. 7226 (HOST_GMPLIBS): Define. 7227 (HOST_GMPINC): Define. 7228 (TARGET_LIB_PATH): Add libmudflap. 7229 (GFORTRAN_FOR_TARGET): Define. 7230 (configure-build*): Export GFORTRAN. 7231 (configure-gcc): Export GMPLIBS and GMPINC. 7232 (all-gcc): Add maybe-all-libbanshee. 7233 (configure-target-libgfortran): Define. 7234 * Makefile.in: Regenerate. 7235 * configure.in (host_libs): Add libbanshee. 7236 (target_libraries): Add target-libmudflap and target-libgfortran. 7237 Add --with-libbanshee. 7238 Handle --disable-libmudflap. 7239 (*-*-freebsd*): Use with_gmp. 7240 Add $(libgcj) to noconfigdirs. 7241 * configure: Regenerate. 7242 * depcomp: New file. 7243 * MAINTAINERS: Add tree-ssa maintainers. 7244 72452004-04-28 Paolo Bonzini <bonzini@gnu.org> 7246 7247 * config/acx.m4: Fix fastcompare support for new-bootstrap. 7248 * configure: Regenerate. 7249 72502004-04-27 Paolo Bonzini <bonzini@gnu.org> 7251 7252 Revert: 7253 2004-04-26 Paolo Bonzini <bonzini@gnu.org> 7254 7255 * Makefile.def (flags_to_pass): Remove *dir variables that 7256 are passed to the modules via TOPLEVEL_CONFIGURE_ARGUMENTS, 7257 as well as prefix and exec_prefix. 7258 * Makefile.in: Regenerate. 7259 72602004-04-26 Paolo Bonzini <bonzini@gnu.org> 7261 7262 * Makefile.def (host_modules): Mark with the bootstrap 7263 flag packages on which gcc depends. 7264 * Makefile.tpl (all-bootstrap): Use it. 7265 * Makefile.in: Regenerate. 7266 72672004-04-26 Paolo Bonzini <bonzini@gnu.org> 7268 7269 * Makefile.def (flags_to_pass): Remove *dir variables that 7270 are passed to the modules via TOPLEVEL_CONFIGURE_ARGUMENTS, 7271 as well as prefix and exec_prefix. 7272 * Makefile.in: Regenerate. 7273 72742004-04-26 Paolo Bonzini <bonzini@gnu.org> 7275 7276 * configure.in: Invoke ACX_PROG_CMP_IGNORE_INITIAL. 7277 * configure: Regenerate. 7278 * config/acx.m4: Mutuate ACX_PROG_CMP_IGNORE_INITIAL from gcc. 7279 * gcc/Makefile.tpl (compare): Use the result of the test. 7280 * gcc/Makefile.in: Regenerate. 7281 72822004-04-23 Paolo Bonzini <bonzini@gnu.org> 7283 7284 * Makefile.tpl (all-stage1-gcc, all-stage2-gcc, all-stage3-gcc): 7285 Always relocate gcc and prev-gcc to the original names, even 7286 if the build fails. 7287 (new-cleanstrap, new-restage1, new-restage2, new-restage3): 7288 New targets. 7289 72902004-04-19 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> 7291 7292 * configure.in (mips*-*-irix5*): Enable ld. 7293 * configure: Regenerate. 7294 72952004-04-15 James E Wilson <wilson@specifixinc.com> 7296 7297 * Makefile.tpl (configure-[+module+], configure-gcc, 7298 configure-stage1-gcc, configure-stage2-gcc, configure-stage3-gcc): 7299 Set and export LDFLAGS. 7300 * Makefile.in: Regenerate. 7301 73022004-04-09 Nathanael Nerode <neroden@gcc.gnu.org> 7303 7304 PR bootstrap/14871 7305 * Makefile.tpl: If we don't have built-in-tree target tools, 7306 use the ones found by configure rather than hacking around with 7307 program_transform_name. 7308 * configure.in: Give Makefile.tpl the information necessary 7309 to do that. 7310 * Makefile.in: Regenerate. 7311 * configure: Regenerate. 7312 73132004-04-06 Nathanael Nerode <neroden@gcc.gnu.org> 7314 7315 PR bootstrap/14760 7316 * configure.in: When computing baseargs, strip *all* copies of 7317 offending options. Also, don't match/substitute the trailing space, 7318 so that this actually works when two similar options are separated by 7319 only one space. 7320 * configure: Regenerate. 7321 73222004-04-06 David Edelsohn <edelsohn@gnu.org> 7323 7324 * configure.in (powerpc-*-aix*): Remove target-libada from noconfigdirs. 7325 (rs6000-*-aix*): Same. 7326 * configure: Regenerate. 7327 73282004-03-25 Stan Shebs <shebs@apple.com> 7329 7330 Remove MPW support, no longer used. 7331 * mpw-README, mpw-build.in, mpw-config.in, mpw-configure, 7332 mpw-install: Remove files. 7333 * src-release (DEVO_SUPPORT): Remove names of removed files. 7334 * MAINTAINERS: Likewise. 7335 73362004-03-24 Nathanael Nerode <neroden@gcc.gnu.org> 7337 7338 * Makefile.tpl (top level bootstrap support): Remove now-unneeded 7339 STRICT_WARN, WARN_CFLAGS flags passed down to make. 7340 * Makefile.in: Regenerate. 7341 7342 * configure.in (top level bootstrap support): Rework --enable-werror 7343 to set @stage2_werror_flag@. 7344 * configure: Regenerate. 7345 * Makefile.tpl (top level bootstrap support): Pass 7346 @stage2_werror_flag@ down to configure in stages 2 and 3. 7347 * Makefile.in: Regenerate. 7348 73492004-03-23 Nathanael Nerode <neroden@gcc.gnu.org> 7350 7351 * Makefile.tpl (new-bootstrap): Set CC and CC_FOR_BUILD in configure 7352 for stages 2 and 3 as well as in make. As a consequence, remove 7353 OUTPUT_OPTION (now detected by configure) from the flags passed down 7354 to make. 7355 * Makefile.in: Regenerate. 7356 7357 * Makefile.tpl (new-bootstrap): Fix typo. 7358 * Makefile.in: Regenerate. 7359 73602004-03-22 Nathanael Nerode <neroden@gcc.gnu.org> 7361 7362 * Makefile.tpl: Rearrange by moving recursive_targets rules 7363 into their proper sections. 7364 * Makefile.tpl (top level bootstrap support): Move disabling 7365 of coverage flags from 'make' to 'configure'; improve comments. 7366 * Makefile.in: Regenerate. 7367 7368 * Makefile.tpl (experimental top level bootstrap) Move stage1 7369 language setting from all- target to configure- target; disable 7370 intermodule optimization in stage 1; prevent gratuitous rebuilds 7371 of stage 1. 7372 * Makefile.in: Regenerate. 7373 * configure.in: Comma-separate stage 1 language list for top 7374 level bootstrap. 7375 * configure: Regenerate. 7376 7377 * Makefile.tpl: Clean up experimental top level bootstrap support: 7378 note known problems; set CONFIG_SHELL; don't set BUILD_CC; relocate 7379 prev-gcc in configure- targets as well as all- targets. 7380 * Makefile.in: Regenerate. 7381 73822004-03-17 Paolo Bonzini <bonzini@gnu.org> 7383 7384 * configure.in: Remove symbolic link section. 7385 * configure: Regenerate. 7386 * Makefile.tpl (links): Remove. 7387 * Makefile.in: Regenerate. 7388 73892004-03-15 Paolo Bonzini <bonzini@gnu.org> 7390 Nathanael Nerode <neroden@gcc.gnu.org> 7391 7392 * configure.in (DEFAULT_YACC, DEFAULT_M4, DEFAULT_LEX): 7393 Set with AC_CHECK_PROGS. 7394 * configure.in: Fix comment typo from last patch. 7395 * configure: Regenerate. 7396 73972004-03-15 Nathanael Nerode <neroden@gcc.gnu.org> 7398 7399 * Makefile.tpl: Introduce experimental top level bootstrap support. 7400 * Makefile.in: Regenerate. 7401 * configure.in: Introduce support for top level bootstrap. 7402 * configure: Regenerate. 7403 74042004-03-12 Eric Botcazou <ebotcazou@gcc.gnu.org> 7405 Paolo Bonzini <bonzini@gnu.org> 7406 7407 PR bootstrap/14522 7408 * configure.in: Cope with shells that do not support unquoted ^ 7409 * configure: Regenerate. 7410 74112004-03-11 Eric Botcazou <ebotcazou@gcc.gnu.org> 7412 Paolo Bonzini <bonzini@gnu.org> 7413 7414 PR bootstrap/14522 7415 * configure.in: Cope with shell that do not support nesting 7416 quotes inside quoted backquote substitutions. 7417 * configure: Regenerate. 7418 74192004-03-10 Andrew Pinski <pinskia@physics.uc.edu> 7420 7421 PR bootstrap/14522 7422 * configure.in: Fix escaping of $. 7423 * configure: Regenerate. 7424 74252004-03-11 Nathanael Nerode <neroden@gcc.gnu.org> 7426 7427 * configure: Regenerate. 7428 74292004-03-08 Paolo Bonzini <bonzini@gnu.org> 7430 7431 PR ada/14131 7432 Move language detection to the top level. 7433 * configure.in: Find default values for the tools as 7434 soon as possible. Disable ada if GNAT is not found. 7435 Emit error message about missing languages. Expand 7436 --enable-languages=all for the gcc subdirectory. 7437 74382004-03-01 Richard Sandiford <rsandifo@redhat.com> 7439 7440 * configure.in (mips64*-*-linux*): Override mips*-*-linux* case 7441 and disable libgcj. 7442 * configure: Regenerated. 7443 74442004-02-28 Nathanael Nerode <neroden@gcc.gnu.org> 7445 7446 PR bootstrap/7087 7447 * Makefile.tpl: Guard XFOO sed statements better. 7448 * Makefile.tpl: Add dependency for configure-target-libada. 7449 * Makefile.in: Regenerate (incidentally fixes broken 7450 commit when libada-branch was merged). 7451 74522004-02-28 Andrew Cagney <cagney@redhat.com> 7453 7454 * src-release (CVS_NAMES): Define. 7455 (do-tar, do-tar): Prune $(CVS_NAMES). 7456 74572004-02-23 Andrew Cagney <cagney@redhat.com> 7458 7459 * texinfo/texinfo.tex: Update from version 2003-02-03.16 to 7460 2004-02-19.09. 7461 74622004-02-19 Nathanael Nerode <neroden@gcc.gnu.org> 7463 7464 PR bootstrap/11932 7465 * mkinstalldirs, install-sh: Import from automake CVS HEAD. 7466 74672004-02-19 Andrew Cagney <cagney@redhat.com> 7468 7469 * config.guess: Update from version 2003-06-12 to 2004-02-16. 7470 * config.sub: Update from version 2003-06-13 to 2004-02-16. 7471 74722004-02-11 David Edelsohn <edelsohn@gnu.org> 7473 7474 * configure.in (powerpc-*-aix*): Add target-libada to noconfigdirs. 7475 (rs6000-*-aix*): Same. 7476 * configure: Regenerate. 7477 74782004-02-11 Kelley Cook <kcook@gcc.gnu.org> 7479 7480 * configure.in (host): Add in missing $noconfigdirs to defines. 7481 * configure: Regenerate. 7482 74832004-02-10 Arnaud Charlet <charlet@act-europe.fr>, 7484 Nathanael Nerode <neroden@gcc.gnu.org> 7485 7486 PR ada/6637, PR ada/5911 7487 Merge with libada-branch: 7488 * configure.in, Makefile.tpl, Makefile.def: Add target-libada, 7489 with appropriate dependencies. Add --enable-libada configure switch. 7490 * configure, Makefile.in: Regenerate. 7491 74922004-02-05 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> 7493 7494 * configure.in: Don't pass --with-stabs on IRIX 5 either. 7495 * configure: Regenerate. 7496 74972004-02-02 Jeff Johnston <jjohnstn@redhat.com> 7498 7499 * COPYING.NEWLIB: Update Red Hat license to 2004. 7500 75012004-01-23 DJ Delorie <dj@redhat.com> 7502 7503 * Makefile.def (target_modules) [libiberty]: Don't stage. 7504 * Makefile.in: Rebuilt. 7505 75062004-01-23 Jeff Johnston <jjohnstn@redhat.com> 7507 7508 * COPYING.NEWLIB: Update to include copyrights for new 7509 iconv code. 7510 75112004-01-15 Andrew Cagney <cagney@redhat.com> 7512 7513 * src-release: Update copyright year. 7514 (do-proto-toplev): Configure using i686-pc-linux-gnu. 7515 (NEWLIB_SUPPORT_DIRS): Delete macro. 7516 (newlib.tar.bz2): Delete rule. 7517 75182004-01-14 Loren J. Rittle <ljrittle@acm.org> 7519 7520 * Makefile.def (target_modules) [libtermcap, libiberty, zlib]: Stage. 7521 * Makefile.tpl (configure-target-[+module+]): Support stage. 7522 * Makefile.in: Rebuilt. 7523 75242003-01-14 Maciej W. Rozycki <macro@ds2.pg.gda.pl> 7525 7526 * gettext.m4: Quote names of macros to be defined by AC_DEFUN 7527 throughout. 7528 75292004-01-04 Nathanael Nerode <neroden@gcc.gnu.org> 7530 7531 * configure.in: Use ./config.cache, not config.cache. 7532 * configure: Regenerate. 7533 * Makefile.tpl: Special-casing not needed for GCC any more. 7534 * Makefile.in: Regenerate. 7535 7536 * configure.in: Don't share a cache file for host dirs. 7537 * configure: Regenerate. 7538 7539 * config-ml.in: Don't mess with the cache file. 7540 75412004-01-03 Nathanael Nerode <neroden@gcc.gnu.org> 7542 7543 * Makefile.tpl: Make GCC use a separate config.cache. 7544 * Makefile.in: Regenerate. 7545 7546 PR bootstrap/11932, PR bootstrap/11933 7547 (I don't know if it will fix either of them, but it relates 7548 to them.) 7549 * configure.in: Don't use shared config.cache for target 7550 directories. 7551 * configure: Regenerate. 7552 75532003-12-31 Roger Sayle <roger@eyesopen.com> 7554 7555 * configure.in (ia64*-*-hpux*): Disable building java libraries. 7556 * configure: Regenerated. 7557 75582003-12-21 Bernardo Innocenti <bernie@develer.com> 7559 7560 * configure.in (*-*-uclinux): Exclude newlib, libgloss and rda. 7561 * configure: Regenerated. 7562 75632003-12-19 Nathanael Nerode <neroden@gcc.gnu.org> 7564 7565 Port change over from GCC: 7566 2003-11-20 Kelley Cook <kcook@gcc.gnu.org> 7567 * Makefile.tpl (BASE_FLAGS_TO_PASS): Pass along CONFIG_SHELL. 7568 (configure-build-[+module+], configure-[+module+]): Likewise. 7569 (configure-target-[+module+], configure-gcc, config.status): Likewise. 7570 * Makefile.in: Regenerate. 7571 75722003-12-08 Thomas Fitzsimmons <fitzsim@redhat.com> 7573 7574 * configure.in (raw_libstdcxx_flags): Remove the leading space. 7575 * configure: Regenerate. 7576 75772003-11-27 Jeff Johnston <jjohnstn@redhat.com> 7578 7579 * COPYING.NEWLIB: Add license info for long long routines added to 7580 stdlib. 7581 75822003-11-14 Arnaud Charlet <charlet@act-europe.fr> 7583 7584 * Makefile.tpl (EXTRA_GCC_FLAGS): Pass BOOT_ADAFLAGS. 7585 * Makefile.in: Regenerate. 7586 75872003-10-20 Phil Edwards <phil@codesourcery.com> 7588 7589 * configure.in (*-*-vxworks): Add target-libiberty to noconfdirs. 7590 * configure: Regenerate. 7591 75922003-10-13 Nathanael Nerode <neroden@gcc.gnu.org> 7593 7594 * Makefile.tpl: Make GCC_FLAGS_TO_PASS a superset of 7595 HOST_FLAGS_TO_PASS. 7596 * Makefile.in: Regenerate. 7597 75982003-10-05 Mohan Embar <gnustuff@thisiscool.com> 7599 7600 * configure.in: Allow explicit specification of CFLAGS_FOR_BUILD. 7601 * configure: Rebuilt 7602 * Makefile.tpl: Use CFLAGS_FOR_BUILD computed by configure 7603 * Makefile.in: Rebuilt 7604 76052003-10-03 H.J. Lu <hongjiu.lu@intel.com> 7606 7607 * ltconfig (sys_lib_search_path_spec): Fix a typo for HPUX. 7608 76092003-10-01 Phil Edwards <pme@gcc.gnu.org> 7610 7611 * config-ml.in: Use ac_configure_args directly instead of 7612 ml_arguments. Only set ml_norecursion if --no[-]recursion is 7613 actually seen. 7614 76152003-10-01 Eric Botcazou <ebotcazou@libertysurf.fr> 7616 7617 * config-ml.in: Propagate INSTALL variables. 7618 76192003-09-21 Daniel Jacobowitz <drow@mvista.com> 7620 7621 * configure.in: Pass a computed --program-transform-name 7622 to subconfigures. 7623 * configure: Regenerated. 7624 76252003-09-20 Nathanael Nerode <neroden@gcc.gnu.org> 7626 7627 * Makefile.tpl: Don't pass down obsolete ENQUIRE variable. 7628 * Makefile.in: Regenerate. 7629 7630 * Makefile.tpl: Don't pass (unused) DLLTOOL or WINDRES to gcc. 7631 * Makefile.in: Regenerate. 7632 76332003-09-17 Daniel Jacobowitz <drow@mvista.com> 7634 7635 * configure.in (TOPLEVEL_CONFIGURE_ARGUMENTS, baseargs): Fix 7636 quoting. 7637 * configure: Regenerated. 7638 76392003-09-12 Michael Chastain <mec@shout.net> 7640 7641 Fix PR gdb/857. 7642 * src-release (do-proto-topleve): Remove junk files 7643 intl/config.cache, intl/config.status, 7644 intl/config.h, intl/stamp-h. 7645 76462003-09-14 Andrew Cagney <cagney@redhat.com> 7647 7648 * src-release (dejagnu.tar): New target. 7649 (dejagnu.tar.bz2): Recursively call "gdb-taz" rule. 7650 (do-djunpack): Use $(PACKAGE) for the package name. 7651 76522003-09-04 DJ Delorie <dj@redhat.com> 7653 7654 * configure: Regenerate. 7655 76562003-09-04 Robert Millan <robertmh@gnu.org> 7657 7658 * configure.in: Match GNU/KFreeBSD with new kfreebsd*-gnu triplet. 7659 76602003-09-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> 7661 7662 * configure.in: Ensure arguments to sed are properly spaced. 7663 * configure: Regenerate. 7664 76652003-08-28 Daniel Jacobowitz <drow@mvista.com> 7666 7667 Merge from gcc: 7668 2003-07-20 Phil Edwards <pme@gcc.gnu.org> 7669 * install-sh: Update to newer upstream versions (associated with 7670 aclocal 1.7). 7671 * missing: Likewise, plus $1Help2man -> $1 typo fix. 7672 76732003-08-27 Daniel Jacobowitz <drow@mvista.com> 7674 7675 * configure.in: Set RAW_CXX_FOR_TARGET if unset. 7676 * configure: Regenerated. 7677 76782003-08-23 Phil Edwards <pme@gcc.gnu.org> 7679 7680 * configure.in: Use newline instead of semicolon when assuming 7681 shell arguments in a for loop. 7682 * configure: Regenerated. 7683 76842003-08-20 Geoffrey Keating <geoffk@apple.com> 7685 7686 PR 8180 7687 * configure.in: When testing with_libs and with_headers, treat 7688 'no' as unset. Based on a patch by Dan Kegel <dank@kegel.com>. 7689 * configure: Regenerate. 7690 7691 * configure.in (TOPLEVEL_CONFIGURE_ARGUMENTS): Quote properly for 7692 make, shell, etc. 7693 (baseargs): Likewise. 7694 * configure: Regenerate. 7695 76962003-08-19 Geoffrey Keating <geoffk@apple.com> 7697 7698 * configure.in: Disable libgcj for darwin not on powerpc. 7699 * configure: Rebuild. 7700 77012003-08-15 Michael Chastain <mec@shout.net> 7702 7703 * src-release (do-proto-toplev): Remove junk files 7704 dejagnu/example/calc/config.status, 7705 dejagnu/example/calc/config.log. 7706 77072003-08-14 Alexandre Duret-Lutz <adl@gnu.org> 7708 7709 * config-ml.in, symlink-tree: Add license. 7710 77112003-08-01 Nathanael Nerode <neroden@gcc.gnu.org> 7712 7713 Merge from gcc: 7714 7715 2003-08-01 Matt Kraai <kraai@alumni.cmu.edu> 7716 * Makefile.tpl (check, check-c++): Express dependencies using 7717 dependencies rather than commands. 7718 * Makefile.in: Regenerate. 7719 7720 2003-07-31 Geoffrey Keating <geoffk@apple.com> 7721 * Makefile.tpl (libsubdir): Use gcc instead of gcc-lib. 7722 * Makefile.in: Update. 7723 77242003-08-01 Andrew Cagney <cagney@redhat.com> 7725 7726 * configure.in (noconfigdirs): Do not add GDB when m32r-*-*. 7727 * configure: Ditto. 7728 77292003-07-30 Andreas Tobler <a.tobler@schweiz.ch> 7730 7731 * configure.in: Enable libgcj for darwin. 7732 * configure: Rebuild. 7733 77342003-07-29 Nathanael Nerode <neroden@gcc.gnu.org> 7735 7736 * mkinstalldirs: Import autoconf 2.57 / automake 1.7 version. 7737 77382003-07-27 Nathanael Nerode <neroden@gcc.gnu.org> 7739 7740 * Makefile.tpl: Use 'mkinstalldirs' rather than 'mkdir' when 7741 creating target and build subdirs to build all parent dirs as needed. 7742 * Makefile.in: Rebuild. 7743 * configure.in: Don't build dirs explicitly here. 7744 * configure: Rebuild. 7745 77462003-07-22 Alexandre Oliva <aoliva@redhat.com> 7747 7748 * Makefile.tpl (all-make): Depend on intl. 7749 * Makefile.in: Rebuilt. 7750 77512003-07-16 Nathanael Nerode <neroden@gcc.gnu.org> 7752 7753 * config.if: Remove unused libc_interface determination. 7754 77552003-07-14 Nathanael Nerode <neroden@gcc.gnu.org> 7756 7757 * Makefile.in: Regenerate, correctly this time. 7758 77592003-07-13 Nathanael Nerode <neroden@gcc.gnu.org> 7760 7761 * Makefile.tpl: Set INSTALL and friends using autoconf. Remove 7762 unused INSTALL_PROGRAM_ARGS. 7763 * configure.in: Use AC_PROG_INSTALL. 7764 * Makefile.in: Regenerate. 7765 * configure: Regenerate. 7766 77672003-07-10 Alexandre Oliva <aoliva@redhat.com> 7768 7769 * configure: Rebuilt. 7770 2001-09-26 Alexandre Oliva <aoliva@redhat.com> 7771 * configure.in (noconfigdirs) [am33_2.0-*-linux*]: Don't build 7772 newlib nor libgloss. 7773 Wed May 9 10:07:19 2001 Alexandre Oliva <aoliva@redhat.com> 7774 * configure.in (am33_2.0-*-linux*): Added. 7775 77762003-07-09 Bob Wilson <bob.wilson@acm.org> 7777 7778 * configure.in: Add ${libgcj} to noconfigdirs for xtensa-*-* targets. 7779 * configure: Regenerate. 7780 77812003-07-06 H.J. Lu <hongjiu.lu@intel.com> 7782 7783 * config-ml.in: Replace PWD with PWD_COMMAND. 7784 * Makefile.tpl: Likewise. 7785 * Makefile.in: Regenerated. 7786 77872003-06-27 Nathanael Nerode <neroden@gcc.gnu.org> 7788 7789 * configure.in: Clean up config-lang.in handling. Delete 7790 useless assignment to "subdirs". 7791 * configure: Regenerate. 7792 77932003-06-26 Nathanael Nerode <neroden@gcc.gnu.org> 7794 7795 * configure.in: Rename 'target_libs' to 'target_libraries'. 7796 Remove useless reference to 'target_libs'. 7797 * configure: Regenerate. 7798 77992003-06-23 Keith Seitz <kseitz@sources.redhat.com> 7800 7801 * Makefile.tpl: Add maybe-configure-itcl to configure-gdb. 7802 * Makefile.in: Regenerate. 7803 78042003-06-23 Nathanael Nerode <neroden@gcc.gnu.org> 7805 7806 * Makefile.def: Introduce flags_to_pass. 7807 * Makefile.tpl: Generate BASE_FLAGS_TO_PASS using it. 7808 * Makefile.in: Regenerate. 7809 78102003-06-23 Hans-Peter Nilsson <hp@bitrange.com> 7811 7812 * configure.in (noconfigdirs) <cris-*-*>: Disable target-newlib 7813 and target-libgloss. 7814 <d30v-*-*, fr30-*-*, i960-*-*, m32r-*-*>: Disable gdb. 7815 <h8300*-*-*>: Disable libf2c and ${libgcj}. 7816 * configure: Regenerate. 7817 78182003-06-17 Benjamin Kosnik <bkoz@redhat.com> 7819 7820 * configure.in: Update testsuite_flags to new location. 7821 * configure. Regenerate. 7822 78232003-06-18 Nathanael Nerode <neroden@gcc.gnu.org> 7824 7825 * Makefile.tpl: Remove BUILD_CC stuff. 7826 * Makefile.in: Regenerate. 7827 78282003-06-14 H.J. Lu <hongjiu.lu@intel.com> 7829 7830 * config.guess: Update to 2003-06-12 version. 7831 * config.sub: Update to 2003-06-13 version. 7832 78332003-06-12 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de> 7834 7835 * MAINTAINERS: Add myself as MIPS co-maintainer. 7836 78372003-06-12 H.J. Lu <hongjiu.lu@intel.com> 7838 7839 * config.guess: Update to 2003-06-06 version. 7840 * config.sub: Update to 2003-06-06 version. 7841 78422003-06-11 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> 7843 7844 * configure.in: Don't pass --with-stabs for mips*-sgi-irix6*o32. 7845 * configure. Regenerate. 7846 78472003-06-10 Nathanael Nerode <neroden@gcc.gnu.org> 7848 7849 * configure.in: Disable serial configure by default. 7850 * configure: Regenerate. 7851 * Makefile.tpl: Abolish .NOTPARALLEL. 7852 * Makefile.in: Regenerate. 7853 7854 * Makefile.tpl: Replace {build,host,target}_canonical by 7855 {build,host,target}. 7856 * Makefile.in: Regenerate. 7857 7858 * Makefile.tpl: Fix stupid pasto. 7859 * Makefile.in: Regenerate. 7860 78612003-06-09 Nathanael Nerode <neroden@gcc.gnu.org> 7862 7863 * Makefile.tpl: Remove bogus conditional. 7864 * Makefile.in: Regenerate. 7865 78662003-06-03 Nathanael Nerode <neroden@gcc.gnu.org> 7867 7868 * Makefile.tpl: Make 'recursive targets' using autogen rather 7869 than shell loop. Remove duplicate 'clean' targets and false 7870 comments. 7871 * Makefile.def: Add systematic dependencies to 'recursive' targets. 7872 Add systematic method of specifying missing targets in subdirs. 7873 Add copyright boilerplate. 7874 * Makefile.in: Regenerate. 7875 * configure.in: Add 'recursive targets' to maybe list. 7876 * configure: Regenerate. 7877 7878 * Makefile.tpl: Rename [+target+] to [+make_target+]. 7879 * Makefile.def: Rename 'target' to 'make_target'. 7880 78812003-05-30 Nick Clifton <nickc@redhat.com> 7882 7883 * README-maintainer-mode: Update URL for locating blessed config 7884 tools. 7885 78862003-05-29 Robert Millan <rmh@debian.org> 7887 7888 * ltconfig: Import this patch and modify for use with current 7889 version of ltconfig: 7890 7891 2003-05-21 Bruno Haible <bruno@clisp.org> 7892 7893 * libtool.m4 (AC_LIBTOOL_SYS_DYNAMIC_LINKER): Add support for 7894 GNU/FreeBSD. 7895 78962003-05-28 DJ Delorie <dj@redhat.com> 7897 7898 * Makefile.tpl: Make maybe-check-gcc .PHONY. 7899 * Makefile.in: Regenerate. 7900 79012003-05-28 Jeff Johnston <jjohnstn@redhat.com> 7902 7903 * COPYING.NEWLIB: Add license info for newlib/libc/sys/linux/stdlib. 7904 79052003-05-21 DJ Delorie <dj@redhat.com> 7906 7907 * Makefile.tpl (configure-target-libiberty): Depend only on gcc, not 7908 newlib or libgloss. 7909 * Makefile.in: Regenerate. 7910 79112003-05-21 DJ Delorie <dj@redhat.com> 7912 7913 * Makefile.tpl: Add missing empty maybe-check-gcc target. 7914 * Makefile.in: Regenerate. 7915 79162003-05-20 Maciej W. Rozycki <macro@ds2.pg.gda.pl> 7917 7918 * configure.in: Use curly braces in the definition of tooldir. 7919 * configure: Regenerate. 7920 79212003-05-19 Nathanael Nerode <neroden@gcc.gnu.org> 7922 7923 * configure.in: Switch more things to use maybe dependencies. 7924 * Makefile.tpl: Switch more things to use maybe dependencies. 7925 Factor out common code from autogen IF statements. 7926 * configure: Regenerate. 7927 * Makefile.in: Regenerate. 7928 79292003-05-14 Kelley Cook <kelleycook@wideopenwest.com> 7930 7931 * configure.in: Accept i[3456789]86 for machine type. 7932 * configure: Regenerate. 7933 79342003-05-18 Nathanael Nerode <neroden@gcc.gnu.org> 7935 7936 * configure.in: Switch more things to use maybe dependencies. 7937 Rearrange a little. Use GCC_TOPLEV_SUBDIRS. 7938 * configure: Regenerate. 7939 * Makefile.tpl: Switch more things to use maybe dependencies. 7940 * Makefile.in: Regenerate. 7941 79422003-05-16 Andreas Schwab <schwab@suse.de> 7943 7944 * Makefile.tpl (install-opcodes): Define. 7945 * Makefile.in: Rebuild. 7946 79472003-05-13 Andreas Jaeger <aj@suse.de> 7948 7949 * config.guess: Update to 2003-05-09 version. 7950 * config.sub: Update to 2003-05-09 version. 7951 79522003-05-13 Michael Eager <eager@mvista.com> 7953 7954 * configure.in: Correct sed script so that options in quotes are not 7955 deleted. 7956 * configure: Rebuild. 7957 79582003-05-12 Corinna Vinschen <corinna@vinschen.de> 7959 7960 * configure.in (FLAGS_FOR_TARGET): Remove $$s/newlib/libc/sys/cygwin 7961 and $$s/newlib/libc/sys/cygwin32 include paths. 7962 * configure: Ditto. 7963 79642003-05-05 H.J. Lu <hjl@gnu.org> 7965 7966 * config-ml.in: Restored from gcc repository. 7967 79682003-05-02 Chris Demetriou <cgd@broadcom.com> 7969 7970 * Makefile.tpl: Require "makeinfo" from texinfo 4.2 or later. 7971 * Makefile.in: Regenerate. 7972 79732003-04-27 Daniel Jacobowitz <drow@mvista.com> 7974 7975 * src-release (DEVO_SUPPORT): Add src-release, Makefile.tpl, 7976 and Makefile.def. 7977 79782003-04-27 Daniel Jacobowitz <drow@mvista.com> 7979 7980 * Makefile.tpl: Clean $(BUILD_SUBDIR). 7981 * Makefile.in: Regenerated. 7982 79832003-04-18 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at> 7984 7985 * Makefile.tpl (MAKEINFOFLAGS): Default to --split-size=5000000. 7986 * Makefile.in: Regenerate. 7987 79882003-04-18 Jakub Jelinek <jakub@redhat.com> 7989 7990 * configure.in (powerpc64*-*-linux*): Remove. 7991 * configure: Rebuilt. 7992 79932003-04-17 Phil Edwards <pme@gcc.gnu.org> 7994 7995 * Makefile.tpl (GCC_STRAP_TARGETS): New variable containing all the 7996 previous bootstrap targets, plus bubblestrap, quickstrap, cleanstrap, 7997 and restrap. 7998 * Makefile.in: Regenerate. 7999 80002003-04-16 Richard Earnshaw <rearnsha@arm.com> 8001 8002 * configure.in (arm-*-netbsdelf*): Enable building java libraries. 8003 * configure: Regenerated. 8004 80052003-04-11 Alexandre Oliva <aoliva@redhat.com> 8006 8007 * libtool.m4 (lt_cv_deplibs_check_method): Use pass_all on mips*. 8008 * */configure: Rebuilt. 8009 80102003-03-14 Nathanael Nerode <neroden@gcc.gnu.org> 8011 8012 * Makefile.tpl: Move .NOEXPORT, MAKEOVERRIDES back down. 8013 * Makefile.in: Regenerate. 8014 80152003-03-14 Michael Chastain <mec@shout.net> 8016 8017 * Makefile.in: Regenerate with correct Makefile.def. 8018 80192003-03-12 Nathanael Nerode <neroden@gcc.gnu.org> 8020 8021 * Makefile.tpl: Move .NOEXPORT, MAKEOVERRIDES up. Delete unused 8022 Make macro. 8023 * Makefile.in: Regenerate. 8024 * configure.in: Clean up gxx_include_dir logic. 8025 * configure: Regenerate. 8026 80272003-03-09 Franz Sirl <Franz.Sirl-kernel@lauterbach.com> 8028 8029 * configure.in (gxx_include_dir): Fix typo. 8030 * configure: Regenerated. 8031 80322003-03-06 Andrew Cagney <cagney@redhat.com> 8033 8034 * texinfo/texinfo.tex: Import version 2003-02-03.16. 8035 80362003-03-04 Daniel Jacobowitz <drow@mvista.com> 8037 8038 * configure.in: Include $(build_tooldir)/sys-include in 8039 FLAGS_FOR_TARGET. 8040 * configure: Regenerated. 8041 80422003-03-04 Nathanael Nerode <neroden@gcc.gnu.org> 8043 8044 * Makefile.tpl: Reindent. 8045 * Makefile.in: Regenerate. 8046 * configure.in: Reindent. Don't set unused variables. 8047 * configure: Regenerate. 8048 8049 * Makefile.tpl: Always pass down RANLIB. 8050 * Makefile.in: Regenerate. 8051 8052 * Makefile.tpl: Don't set unused enable_shared, enable_threads macros. 8053 * Makefile.in: Regenerate. 8054 * configure.in: Remove unused logic relating to --enable-shared 8055 and --enable-threads. Remove bogus comments. Remove redundant 8056 noconfigdirs. 8057 * configure: Regenerate. 8058 8059 * configure.in: Replace ${libstdcxx_version} by its value. 8060 Remove reference to mh-dgux. 8061 * configure: Regenerate. 8062 80632003-02-28 Nathanael Nerode <neroden@gcc.gnu.org> 8064 8065 * Makefile.tpl: Rearrange. 8066 * Makefile.in: Regenerate. 8067 80682003-02-25 Nick Clifton <nickc@redhat.com> 8069 8070 * configure: Remove site-file supprot - it is obsolete. 8071 80722003-02-24 Uwe Stieber <uwe@wwws.de> 8073 8074 * configure.in: Add support for kaOS as cross build target system. 8075 * configure: Regenerated. 8076 80772003-02-20 Sean McNeil <sean@blue.mcneil.com> 8078 8079 * Makefile.tpl: Add definition of CPPFLAGS to pass into 8080 configure-target-* as some target builds may require additional 8081 flags for preprocessor tests. 8082 * Makefile.in: Regenerated. 8083 80842003-02-19 Alexandre Oliva <aoliva@redhat.com> 8085 8086 * libtool.m4 (LD): Append -melf* option to LD on IRIX with GNU ld. 8087 * ltconfig: Handle it. 8088 * ltcf-cxx.sh: Use with_gnu_ld passed as a shell variable instead of 8089 auto-detecting it. 8090 80912003-02-19 Alexandre Oliva <aoliva@redhat.com> 8092 8093 * ltcf-cxx.sh: Replace $linker_flags with $compiler_flags wherever 8094 it is used as argument to $CC. 8095 * ltcf-gcj.sh: Likewise. 8096 80972003-02-19 Alexandre Oliva <aoliva@redhat.com> 8098 8099 * configure.in: Introduce --enable-maintainer-mode. 8100 * configure: Rebuilt. 8101 * Makefile.tpl (Makefile.in, configure): Enable dependencies only 8102 for maintainer mode. 8103 * Makefile.in: Rebuilt. 8104 81052003-02-19 Andrew Cagney <ac131313@redhat.com> 8106 8107 * configure: Regenerate using autoconf 2.13. 8108 81092003-02-19 Alan Modra <amodra@bigpond.net.au> 8110 8111 * config.guess: Import latest version. 8112 * config.sub: Import latest version. 8113 81142003-02-18 Jason Merrill <jason@redhat.com> 8115 8116 * Makefile.tpl (check-c++): Allow parallelism. 8117 81182003-02-17 Andrew Cagney <ac131313@redhat.com> 8119 8120 * configure: Regenerate using autoconf 000227. 8121 81222003-02-15 Geoffrey Keating <geoffk@apple.com> 8123 8124 * configure.in (*-*-darwin*): Rename from powerpc*-*-darwin*, 8125 don't configure target-libobjc. 8126 * configure: Regenerate. 8127 81282003-02-14 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> 8129 8130 * Makefile.tpl (RANLIB): Define. 8131 * Makefile.in: Regenerate. 8132 81332003-02-06 Keith R Seitz <keiths@redhat.com> 8134 8135 * Makefile.def: Remove "snavigator", "grep", and "db" modules. 8136 * Makefile.tpl: Remove "all-snavigator" and "all-grep". 8137 * Makefile.in: Regenerated. 8138 * configure.in: Remove all traces of snavigator, db, and grep. 8139 * configure: Regenerated. 8140 81412003-01-31 Frank Ch. Eigler <fche@redhat.com> 8142 8143 * Makefile.tpl (all-sid): Add libiberty/bfd/opcodes dependencies. 8144 * Makefile.in: Regenerated. 8145 81462003-01-30 Alexandre Oliva <aoliva@redhat.com> 8147 8148 * config.if: Copy from GCC. 8149 81502003-01-27 Phil Edwards <pme@gcc.gnu.org> 8151 8152 * configure.in: Revert 24Jan change. 8153 * configure: Regenerate. 8154 81552003-01-23 Nathanael Nerode <neroden@gcc.gnu.org> 8156 8157 * configure.in: Revert previous change. 8158 * configure: Regenerate. 8159 81602003-01-23 Nathanael Nerode <neroden@gcc.gnu.org> 8161 8162 * configure.in: Make rda native-only. 8163 * configure: Regenerate. 8164 81652003-01-19 Nathanael Nerode <neroden@gcc.gnu.org> 8166 8167 * configure.in: Add missing \. 8168 * configure: Rebuilt. 8169 81702003-01-17 Jakub Jelinek <jakub@redhat.com> 8171 8172 * configure.in (baseargs): Avoid using \| in sed regular 8173 expressions. 8174 * configure: Rebuilt. 8175 81762003-01-16 Jakub Jelinek <jakub@redhat.com> 8177 8178 * configure.in (baseargs): Remove all supported forms of 8179 --cache-file, --srcdir, --host, --build and --target options 8180 from argument lists. 8181 * configure: Rebuilt. 8182 81832003-01-15 Alexandre Oliva <aoliva@redhat.com> 8184 8185 * configure.in (noconfigdirs): Don't skip gas on IRIX 6. 8186 * configure: Rebuilt. 8187 81882003-01-09 Nathanael Nerode <neroden@gcc.gnu.org> 8189 8190 * configure.in: Substitute TOPLEVEL_CONFIGURE_ARGUMENTS. 8191 * Makefile.tpl: Pass TOPLEVEL_CONFIGURE_ARGUMENTS to gcc. 8192 * Makefile.in: Regenerate. 8193 * configure: Regenerate. 8194 81952003-01-09 Christian Cornelssen <ccorn@cs.tu-berlin.de> 8196 8197 * Makefile.tpl (BASE_FLAGS_TO_PASS): Also pass DESTDIR. 8198 (install-info, dir.info): Prepend $(DESTDIR) to $(infodir). 8199 * Makefile.in: Regenerate. 8200 82012003-01-09 Alexandre Oliva <aoliva@redhat.com> 8202 8203 * configure.in: Remove Makefile in build, host and target modules 8204 unless configure was run with --no-recursion. 8205 * configure: Rebuilt. 8206 82072003-01-08 Chris Demetriou <cgd@broadcom.com> 8208 8209 * config.guess: Update to 2003-01-03 version. 8210 * config.sub: Update to 2003-01-03 version. 8211 82122003-01-07 Christopher Faylor <cgf@redhat.com> 8213 8214 * configure: Regenerate with proper autoconf 2.13. 8215 82162003-01-07 Christopher Faylor <cgf@redhat.com> 8217 8218 * configure.in: Add AC_PREREQ for consistency. 8219 * configure: Regenerate. 8220 82212003-01-06 Andrew Cagney <ac131313@redhat.com> 8222 8223 * configure.in (GDB_TK): Add tcl directories conditional on 8224 gdb/gdbtk directory being present. 8225 * configure: Regenerate. 8226 82272003-01-04 John David Anglin <dave.anglin@nrc.ca> 8228 8229 * configure.in (LD): Improve test for gcc. Try to set LD to the ld used 8230 by gcc if LD is not defined and we are not doing a Canadian Cross. 8231 * configure: Rebuilt. 8232 82332003-01-01 Daniel Jacobowitz <drow@mvista.com> 8234 8235 * src-release (ETC_SUPPORT): Add fdl.texi and texi2pod.pl. 8236 82372002-12-31 Tom Tromey <tromey@redhat.com> 8238 8239 * Makefile.in: Rebuilt. 8240 * Makefile.def (target_modules) [libffi]: Allow installation. 8241 82422002-12-31 Andreas Schwab <schwab@suse.de> 8243 8244 * configure.in: Fix use of $program_transform_name. 8245 * configure: Regenerated. 8246 82472002-12-30 Daniel Jacobowitz <drow@mvista.com> 8248 8249 * configure.in (baseargs): Don't remove first configure argument. 8250 * configure: Regenerated. 8251 82522002-12-29 Alexandre Oliva <aoliva@redhat.com> 8253 8254 * Makefile.tpl (local-distclean): Don't remove... 8255 (multilib.ts): ... this. Moved into... 8256 (multilib.out): ... this. Don't use sub-make. 8257 ($(BUILD_SUBDIR)/[+module+]/Makefile, [+module+]/Makefile, 8258 $(TARGET_SUBDIR)/[+module+]/Makefile, gcc/Makefile): Moved into... 8259 (configure-build-[+module+], configure-[+module+], 8260 configure-target-[+module+], configure-gcc): ... these. Test 8261 for Makefile existence. Drop config.status from dependencies. 8262 * Makefile.in: Rebuilt. 8263 * configure.in: Move gcc-version-trigger to the end of 8264 ac_configure_args. Add comments to maybedep.tmp and 8265 serdep.tmp. Introduce --disable-serial-configure. Remove 8266 nonopt from baseargs, matching and removing corresponding 8267 whitespace while at it. 8268 * configure: Rebuilt. 8269 82702002-12-28 Alexandre Oliva <aoliva@redhat.com> 8271 8272 * configure.in (host_configargs): Replace reference to 8273 no-longer-defined buildopts with --build=${build_alias}. 8274 * configure: Rebuilt. 8275 82762002-12-28 Alexandre Oliva <aoliva@redhat.com> 8277 8278 * Makefile.tpl ($(NOTPARALLEL)): Move to the end. Bring uses of 8279 program_transform_name to standard idiom. 8280 (AUTOGEN, AUTOCONF): Define. 8281 (Makefile.in): Use $(AUTOGEN). 8282 (Makefile): Depend on config.status, and use autoconf-style rule to 8283 build it. Move original commands to... 8284 (config.status): ... this new target. 8285 (configure): Add $(srcdir). Depend on config/acx.m4. Use 8286 $(AUTOCONF). 8287 * Makefile.in: Rebuilt. 8288 82892002-12-28 Nathanael Nerode <neroden@gcc.gnu.org> 8290 8291 * Makefile.tpl: Fix dramatic bustage due to change in 8292 program_transform_name. 8293 * Makefile.in: Regenerate. 8294 8295 * configure.in: Remove unnecessary PATH setting. 8296 * configure: Regnerate. 8297 8298 * configure.in: Don't default to unprefixed tools unless 8299 the native tools will work. 8300 * configure: Regenerate. 8301 8302 * configure.in: Convert to autoconf script. Blow away lots 8303 of now-redundant Makefile fragments. 8304 * configure: Generate using Autoconf. 8305 * Makefile.tpl: Rewrite to reflect autoconfiscation. 8306 * Makefile.in: Regenerate. 8307 83082002-12-27 Nathanael Nerode <neroden@gcc.gnu.org> 8309 8310 * configure: Remove unneeded 'export's. Make CC_FOR_TARGET, 8311 CXX_FOR_TARGET, GCJ_FOR_TARGET substituted in configure.in only. 8312 8313 * ChangeLog: Move a couple of entries from here to winsup/cygwin, 8314 where they belong. 8315 83162002-12-24 Andreas Schwab <schwab@suse.de> 8317 8318 * Makefile.tpl (multilib.out): Fix missing space. 8319 * Makefile.in: Regenerate. 8320 83212002-12-23 Nathanael Nerode <neroden@gcc.gnu.org> 8322 8323 * Makefile.tpl: Use shared multilib.out. Use move-if-change for it. 8324 Convert (cd foo; make) to (cd foo && make). Clean up multilib.out. 8325 * Makefile.in: Regenerate. 8326 * configure.in: Remove unnecessary leftovers. 8327 83282002-12-21 Geoffrey Keating <geoffk@apple.com> 8329 8330 * configure.in (extra_ranlibflags_for_target): New variable. 8331 (*-*-darwin): Add -c to ranlib commands. 8332 * configure (tooldir): Handle extra_ranlibflags_for_target. 8333 83342002-12-20 Jeff Johnston <jjohnstn@redhat.com> 8335 8336 * COPYING.NEWLIB: Updated. 8337 * COPYING.LIBGLOSS: Ditto. 8338 83392002-12-19 Nathanael Nerode <neroden@gcc.gnu.org> 8340 8341 * Makefile.tpl: Revert HJL's change. 8342 * Makefile.in: Regenerated. 8343 * configure.in: Put build_prefix before $(BUILD_SUBDIR) here, and 8344 always. 8345 83462002-12-19 Andreas Schwab <schwab@suse.de> 8347 8348 * Makefile.tpl, configure.in: Substitute libstdcxx_incdir. 8349 * Makefile.in: Regenerate. 8350 83512002-12-18 H.J. Lu <hjl@gnu.org> 8352 8353 * Makefile.tpl: Add @build_prefix@ before $(BUILD_SUBDIR). 8354 * Makefile.in: Regenerated. 8355 8356 * configure.in (build_prefix): New. Substitute. 8357 83582002-12-18 Nathanael Nerode <neroden@gcc.gnu.org> 8359 8360 * Makefile.tpl: Don't let real targets depend on phony targets. 8361 * Makefile.in: Regenerate. 8362 8363 * Makefile.tpl (do-info): Depend on maybe-all-texinfo, not all-texinfo. 8364 * Makefile.in: Regenerate. 8365 83662002-12-16 Jason Merrill <jason@redhat.com> 8367 8368 * Makefile.tpl (all-gcc): Use 'make quickstrap' if there was a 8369 previous 'make bootstrap'. 8370 * Makefile.in: Regenerate. 8371 83722002-12-17 Hans-Peter Nilsson <hp@bitrange.com> 8373 8374 * configure.in (noconfigdirs) [mmix-*-*]: Disable libgloss and gdb. 8375 83762002-12-13 Jason Merrill <jason@redhat.com> 8377 8378 * Makefile.tpl (check-gcc-c++): Renamed from check-c++. Don't run 8379 library tests. 8380 (check-c++): Just depend on it and check-target-libstdc++-v3. 8381 * Makefile.in: Regenerate. 8382 83832002-12-13 Nathanael Nerode <neroden@gcc.gnu.org> 8384 8385 * configure.in, Makefile.tpl, Makefile.def: Remove tclX. 8386 * Makefile.in: Regenerate. 8387 83882002-12-12 Jeff Johnston <jjohnstn@redhat.com> 8389 8390 * COPYING.NEWLIB: Update list of alternate Regent of California 8391 licenses and discuss official revoking of advertising clause. 8392 * COPYING.LIBGLOSS: Ditto. 8393 83942002-12-12 Alexandre Oliva <aoliva@redhat.com> 8395 8396 * Makefile.tpl (configure-target-rda): Depend on $(ALL_GCC_C). 8397 * Makefile.in: Rebuilt. 8398 83992002-12-10 Nathanael Nerode <neroden@gcc.gnu.org> 8400 8401 * configure: Fix bug put in by gremlins. 8402 8403 * Makefile.tpl: Substitute more autoconfily. 8404 * configure: Substitute more autoconfily. 8405 * Makefile.in: Regenerate. 8406 84072002-12-08 Andrew Cagney <ac131313@redhat.com> 8408 8409 * Makefile.tpl (all-sim): Depend on maybe-configure-gdb. 8410 * Makefile.in (all-sim): Ditto. 8411 84122002-12-06 DJ Delorie <dj@redhat.com> 8413 8414 * Makefile.tpl: Change configure dependencies to not have real 8415 targets depend on phony targets. 8416 84172002-12-05 Nathanael Nerode <neroden@gcc.gnu.org> 8418 8419 * configure.in: Revert unintentional change. 8420 8421 * src-release: Configure host subdirs. 8422 8423 * Makefile.tpl: Change dependency for */multilib.out so that 8424 it works when gcc isn't in the tree. 8425 8426 * configure.in: Substitute more. 8427 * configure: Run subconfigures from the Makefile. 8428 * Makefile.tpl: Run subconfigures from the Makefile; add a few 8429 convenience targets. Make sure gcc isn't rebuilt after bootstrap. 8430 84312002-12-03 Nathanael Nerode <neroden@gcc.gnu.org> 8432 8433 * Makefile.tpl: Add targets for configuring host subdirs in Makefile, 8434 and corresponding dependencies. 8435 * Makefile.in: Regenerate. 8436 8437 * configure.in (host_tools): Order binutils, gas and ld for 8438 convenience in running the testsuites. 8439 8440 * Makefile.tpl: Introduce rules to serialize subconfigure runs. 8441 * Makefile.in: Regenerate. 8442 * configure.in: Introduce rules to serialize subconfigure runs. 8443 8444 * configure.in: Introduce BASE_CC_FOR_TARGET. 8445 * Makefile.tpl: Reorganize and comment. Introduce HOST_CONFIGARGS. 8446 Realize configure-build-* targets. Realize configure-target-* targets. 8447 * Makefile.in: Regenerate. 8448 84492002-12-02 Nathanael Nerode <neroden@gcc.gnu.org> 8450 8451 * configure: Move gcc_version_trigger stuff from here... 8452 * configure.in: ...to here. 8453 8454 * configure.in: Separate subconfigure options added by this file from 8455 options given by the user. Add machinery to put args for host 8456 subconfigures into the Makefile. 8457 8458 * Makefile.tpl: Remove 'vault' targets. 8459 * Makefile.tpl: Reorder and comment dependencies. 8460 * Makefile.in: Regenerate. 8461 84622002-11-28 Geoffrey Keating <geoffk@apple.com> 8463 8464 * configure.in: Move host-specific darwin noconfigdirs into 8465 the host-specific section. 8466 84672002-12-02 Nathanael Nerode <neroden@gcc.gnu.org> 8468 8469 * Makefile.tpl: Restore bkorb's style patch, accidentally lost 8470 during replay. 8471 * Makefile.in: Regenerate. 8472 8473 (finishing slow-motion replay) 8474 * configure: Remove skip-this-dir support. 8475 * Makefile.tpl: Remove skip-this-dir support. 8476 8477 * Makefile.tpl: Remove leftover support for non-autoconfiscated 8478 subdirectories. 8479 * Makefile.in: Regenerate. 8480 8481 * Makefile.tpl: Strip out useless setting of 'dir'. 8482 * Makefile.in: Regenerate. 8483 84842002-12-02 Nathanael Nerode <neroden@gcc.gnu.org> 8485 8486 (finishing slow-motion replay) 8487 * configure.in: Fix deeply stupid bug. 8488 8489 * configure.in: Introduce RAW_CXX_FOR_TARGET and simplify embedded 8490 shell code in CXX_FOR_TARGET 8491 * Makefile.def: Introduce raw_cxx. 8492 * Makefile.tpl: Use raw_cxx to select between CXX_FOR_TARGET and 8493 RAW_CXX_FOR_TARGET. 8494 * Makefile.in: Regenerate. 8495 84962002-12-02 Nathanael Nerode <neroden@gcc.gnu.org> 8497 8498 (finishing slow-motion replay) 8499 * Makefile.tpl: Remove unnecessary ifs. 8500 * Makefile.in: Regenerate. 8501 8502 * Makefile.tpl: Implement soft dependency machinery. Maybe-ize 8503 dependencies. Maybe-ize build-libiberty. Create dummy install 8504 targets for 'no_install' modules. 8505 * configure: Move GDB_TK substitution to configure.in. Move 8506 build_modules stuff to configure.in. 8507 * configure.in: Implement soft dependency machinery. Maybe-ize 8508 GDB_TK, rearrange slightly. Move build_modules stuff from configure. 8509 * Makefile.in: Regenerate. 8510 85112002-12-01 Nathanael Nerode <neroden@gcc.gnu.org> 8512 8513 (continuing slow-motion replay) 8514 * Makefile.tpl: Make all-target, install-target behave similarly 8515 to all, install (only hitting configured targets). Eliminate 8516 unused macro defintions. 8517 8518 * Makefile.tpl: Add all-gcc: all-build-libiberty dependency when 8519 build != host. 8520 8521 * Makefile.tpl: Add all-gcc: all-libiberty dependency. 8522 8523 * ltcf-c.sh, ltcf-gcj.sh, Makefile.tpl: Correct BUILD/HOST confusion. 8524 8525 * configure.in: Produce lists of subdir targets we're actually 8526 configuring. Remove references to "dosrel". 8527 * Makefile.tpl: Let configure set which subdir targets are hit. 8528 Remove install-cross; clean up install; remove ALL. Remove 8529 references to "dosrel". Remove "EXTRA_TARGET_HOST" hackery. 8530 Autogenerate host module targets. Remove empty dependency lines 8531 and redundant dependency; rearrange slightly. 8532 * Makefile.def: Add host-side libtermcap, utils. 8533 8534 * Makefile.in: Regenerate. 8535 85362002-12-01 Nathanael Nerode <neroden@gcc.gnu.org> 8537 8538 (Continuing slow-motion replay) 8539 * Makefile.def: Add list of recursive targets to autogenerate. 8540 Add build_modules. 8541 * Makefile.tpl: Autogenerate do-* targets. Autogenerate *-target-* 8542 targets. Autogenerate *-build-* targets. 8543 * Makefile.in: Regenerate. 8544 85452002-11-30 Nathanael Nerode <neroden@gcc.gnu.org> 8546 8547 (Continuing slow-motion replay) 8548 * configure: More autoconf-style substitutions. 8549 * Makefile.tpl: More autoconf-style substitutions. 8550 * Makefile.in: Regenerate. 8551 85522002-11-30 Nathanael Nerode <neroden@gcc.gnu.org> 8553 8554 (Continuing slow-motion replay) 8555 * configure: Substitute more variables in a more autoconf-friendly 8556 way. Simplify slightly. 8557 * Makefile.tpl: Make more variables substitutable in an 8558 autoconf-friendly way. 8559 * Makefile.in: Regenerate. 8560 85612002-11-29 Nathanael Nerode <neroden@gcc.gnu.org> 8562 8563 (Continuing slow-motion replay) 8564 * configure.in (v810*): Remove special setting of tools. 8565 8566 * configure: Add support for extra required flags for ar or nm. 8567 * configure.in (aix4.3+): Use above support for target-specific 8568 issues, rather than using config/mt-aix43. 8569 85702002-11-29 Nathanael Nerode <neroden@gcc.gnu.org> 8571 8572 (Starting slow-motion replay merge from gcc 3.4 b-i-b branch) 8573 * configure: Remove 'removing', which doesn't work. Replace $subdir 8574 with . everywhere. Replace $subdirs with ''. Replace $makesrcdir 8575 with $srcdir. Reformat indentation. Substitute some variables 8576 formerly hard-coded in the Makefile for build=host. 8577 * Makefile.tpl: Autogenerate more; make more autoconf-friendly. 8578 * Makefile.def: Autogenerate more. 8579 * Makefile.in: Regenerate. 8580 85812002-11-13 Bruce Korb <bkorb@gnu.org> 8582 8583 * Makefile.tpl: syntactic cleanup 8584 85852002-11-04 Kevin Buettner <kevinb@redhat.com> 8586 8587 * Makefile.def (host_modules): Add rda. 8588 * Makefile.in: Regenerate. 8589 * configure.in (target_tool): Add target-rda to list. 8590 85912002-10-25 Phil Edwards <pme@gcc.gnu.org> 8592 8593 * Makefile.tpl (bootstrap): Add bubblestrap, quickstrap, cleanstrap, 8594 and restrap targets to this rule. 8595 * Makefile.in: Regenerate. 8596 85972002-10-24 Hans-Peter Nilsson <hp@bitrange.com> 8598 8599 * configure.in (i[3456]86-*-linux*): Add check to disable 8600 ${libgcj} for glibc1. 8601 86022002-10-07 Svein E. Seldal <Svein.Seldal@solidas.com> 8603 8604 * configure.in: Add tic4x target. 8605 86062002-10-03 Nathanael Nerode <neroden@gcc.gnu.org> 8607 8608 * Makefile.tpl: Make SET_LIB_PATH substitution more autoconfy. 8609 * Makefile.tpl: Make RPATH_ENVVAR substitution more autoconfy. 8610 * configure.in: Make SET_LIB_PATH substitution more autoconfy. 8611 * configure.in: Make RPATH_ENVVAR substitution more autoconfy. 8612 * Makefile.in: Regenerate. 8613 86142002-10-02 Nathanael Nerode <neroden@gcc.gnu.org> 8615 8616 * Makefile.tpl: Eliminate reference to all-gui, all-libproc. 8617 * Makefile.in: Regenerate. 8618 8619 * Makefile.def: Remove order dependency comments. 8620 * Makefile.tpl: Add explicit install-install dependencies. 8621 * Makefile.in: Regenerate. 8622 8623 * Makefile.tpl: Remove material now in src-release. (Finally!) 8624 * Makefile.in: Regenerate. 8625 8626 * configure: Restore my original patch by syncing with gcc version. 8627 8628 * Bring following over from gcc: 8629 86302002-09-30 Ulrich Weigand <uweigand@de.ibm.com> 8631 8632 * configure.in (s390*-*-linux*): Enable libgcj. 8633 86342002-10-02 Nathanael Nerode <neroden@gcc.gnu.org> 8635 8636 * Makefile.in: Regenerate. This really ought to fix things. :sigh: 8637 86382002-10-02 Alan Modra <amodra@bigpond.net.au> 8639 8640 * configure: Move stray lines back to where they belong. 8641 86422002-10-01 Nathanael Nerode <neroden@gcc.gnu.org> 8643 8644 * Makefile.tpl: Insert configure-target target, for src-release. 8645 8646 * configure: Finish reverting change which Andrew Cagney started 8647 reverting. Should fix bustage. 8648 8649 * src-release (BINUTILS_SUPPORT_DIRS): Add cpu directory. 8650 * src-release: New file. Contains material for making net 8651 releases for gdb, binutils, et al., formerly in Makefile.in. 8652 86532002-09-30 Nick Clifton <nickc@redhat.com> 8654 8655 * cpu: New top level directory. Intended to hold input files for 8656 CGEN which have FSF copyright assignment. 8657 * Makefile.in (BINUTILS_SUPPORT_DIRS): Add cpu directory. 8658 86592002-09-29 Andrew Cagney <ac131313@redhat.com> 8660 8661 Revert below (note that src does not contain Makefile.tpl): 8662 * Makefile.tpl: Make subsituted variables more autoconfy. 8663 * Makefile.in: Regenerate. 8664 86652002-09-29 Nathanael Nerode <neroden@gcc.gnu.org> 8666 8667 * configure: Revert accidentally applied changes. 8668 8669 * Makefile.tpl: Make more autoconf-friendly. 8670 * Makefile.in: Regenerate. 8671 * configure: Make substitution more autoconf-like. 8672 86732002-09-28 Richard Earnshaw <rearnsha@arm.com> 8674 8675 * configure.in (arm-*-coff, strongarm-*-coff, xscale-*-coff): Use a 8676 single entry to handle all these. 8677 (arm-*-elf, strongarm-*-elf, xscale-*-elf): Likewise. Also enable 8678 libjava on arm-*-elf. 8679 86802002-09-27 Geoffrey Keating <geoffk@apple.com> 8681 8682 * configure.in (powerpc-*-darwin*): Don't configure BFD, TK, or the 8683 things that depend on them. 8684 86852002-09-25 Nathanael Nerode <neroden@gcc.gnu.org> 8686 8687 * Makefile.tpl: Make subsituted variables more autoconfy. 8688 * Makefile.in: Regenerate. 8689 * configure: Make seds more autoconfy. 8690 86912002-09-25 Nathanael Nerode <neroden@gcc.gnu.org> 8692 8693 * Makefile.tpl: Rewrite substituted lines to look autoconfy. 8694 * Makefile.in: Regenerate. 8695 * configure.in: Rewrite sed statements to look autoconfy. 8696 8697 * Makefile.tpl: Autogenerate *-target-* lists, dependencies of 8698 all-target-foo on configure-target-foo. 8699 * Makefile.def: Ditto. 8700 * Makefile.in: Rebuild. 8701 87022002-09-22 Nathanael Nerode <neroden@gcc.gnu.org> 8703 8704 * Makefile.def: New file. 8705 * Makefile.tpl: New file. 8706 * Makefile.in: Generate from Makefile.tpl with 'autogen Makefile.def'. 8707 8708 * configure.in: Minor rearrangement. Simplify tests. 8709 87102002-09-23 Jason Thorpe <thorpej@wasabisystems.com> 8711 8712 * configure.in (with_headers): Skip copy if value is "yes". 8713 (with_libs): Likewise. 8714 87152002-09-20 Nathanael Nerode <neroden@gcc.gnu.org> 8716 8717 * configure.in (*-*-netbsd*): Use noconfigdirs, not skipdirs. 8718 * configure.in (sh*-*-pe*): Ditto. 8719 * configure.in (mips*-*-pe*): Ditto. 8720 * configure.in (*arm-wince-pe): Ditto. 8721 8722 * configure.in: Rearrange. 8723 87242002-09-12 Nick Clifton <nickc@redhat.com> 8725 8726 * Import these changes from the config master repository: 8727 8728 2002-09-05 Svein E. Seldal <Svein.Seldal@solidas.com> 8729 8730 * config.sub: Add tic4x target. 8731 8732 2002-09-03 Ben Elliston <bje@redhat.com> 8733 8734 * config.guess: Detect NSR-D machines for nsr-tandem-nsk. 8735 Reported by <Duncan_Stodart@insession.com>. 8736 87372002-09-10 Jeff Johnston <jjohnstn@redhat.com> 8738 8739 * COPYING.NEWLIB: More updates. 8740 87412002-09-09 Jeff Johnston <jjohnstn@redhat.com> 8742 8743 * COPYING.NEWLIB: Update. 8744 87452002-08-23 Andrew Cagney <ac131313@redhat.com> 8746 8747 * texinfo/texinfo.tex: Import version 2002-06-04.06. 8748 8749 * config.guess: Import version 2002-08-23. 8750 * config.sub: Import version 2002-08-22. 8751 87522002-08-20 Alexandre Oliva <aoliva@redhat.com> 8753 8754 * Makefile.in (GCC_FOR_TARGET): Prepend STAGE_CC_WRAPPER. 8755 * configure.in (CC_FOR_TARGET, GCJ_FOR_TARGET, CXX_FOR_TARGET, 8756 CXX_FOR_TARGET_FOR_RECURSIVE_MAKE): Likewise. 8757 87582002-08-06 Federico G. Schwindt <fgsch@olimpo.com.br> 8759 8760 * configure.in (hppa*-*-openbsd*): Treat like hppa*-*-*elf*. 8761 87622002-08-04 H.J. Lu (hjl@gnu.org) 8763 8764 * configure.in (mips*-*-linux*): Don't skip target-libffi. 8765 87662002-07-31 Alan Modra <amodra@bigpond.net.au> 8767 8768 * configure.in: Move generic linux case to end. Copy generic 8769 linux noconfigdirs to mips*-*-linux* entry and new 8770 powerpc64*-*-linux* entry. Add target-libffi for the latter. 8771 87722002-07-19 Chris Demetriou <cgd@broadcom.com> 8773 8774 * MAINTAINERS: Clarify on config.guess and config.sub, and add 8775 one instance of them which was missed to the list to update. 8776 87772002-07-16 Chris Demetriou <cgd@broadcom.com> 8778 8779 * config.guess: Update to 2002-07-09 version. 8780 * config.sub: Update to 2002-07-03 version. 8781 87822002-07-11 Nathanael Nerode <neroden@gcc.gnu.org> 8783 8784 * configure.in: Remove two redundant tests. 8785 87862002-07-11 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> 8787 8788 * configure.in (mips*-*-irix6*o32): Enable stabs. 8789 87902002-07-08 Nathanael Nerode <neroden@gcc.gnu.org> 8791 8792 * configure.in: Don't build grez. 8793 * Makefile.in: Ditto. 8794 8795 * Makefile.in: Remove references to bsp, cygmon, libstub. 8796 * configure.in: Ditto. 8797 8798 * configure.in: Remove leftover reference to gdbtest. 8799 88002002-07-08 Phil Edwards <pme@gcc.gnu.org> 8801 8802 * configure.in (gxx_include_dir): Change to match versioned 8803 C++ headers if --enable-version-specific-runtime-libs is used. 8804 88052002-07-04 Steve Ellcey <sje@cup.hp.com> 8806 8807 * ltcf-cxx.sh (hpux*): Modify to support ia64-*-hpux*. 8808 88092002-07-03 Nathanael Nerode <neroden@gcc.gnu.org> 8810 8811 * configure.in: Make --without-x work. 8812 88132002-07-03 Nick Clifton <nickc@cambridge.redhat.com> 8814 8815 * contrib: New directory. Created to contain a copy of the 8816 texi2pod.pl script so that it is in the same place as the version in 8817 the FSF GCC sources. 8818 88192002-07-02 Nathanael Nerode <neroden@gcc.gnu.org> 8820 8821 * configure.in: Rearrange target Makefile fragment collection. 8822 8823 * Makefile.in: Don't try to build gdbtest, tgas, ispell, inet, or 8824 cvs[src]. 8825 * configure.in: Ditto. 8826 88272002-07-01 Nathanael Nerode <neroden@gcc.gnu.org> 8828 8829 * Makefile.in: Eliminate 'apache' targets. 8830 * configure.in: Eliminate 'apache' targets. 8831 8832 * configure.in: Eliminate redundant tests. Reorganize. 8833 8834 * Makefile.in: Eliminate last reference to LIBGCC1_TEST. 8835 8836 * config-ml.in: Eliminate references to Cygnus configure. 8837 8838 * Makefile.in: Eliminate references to building emacs. 8839 88402002-07-01 Denis Chertykov <denisc@overta.ru> 8841 8842 * configure.in: Add support for ip2k. 8843 88442002-06-24 Ben Elliston <bje@redhat.com> 8845 8846 * configure.in (host_tools): Remove cgen. 8847 8848 * Makefile.in (all-cgen): Remove; runs from its source directory. 8849 (check-cgen, install-cgen, clean-cgen): Likewise. 8850 (all-opcodes): No not depend on all-cgen. 8851 (all-sim): Likewise. 8852 88532002-06-22 Nathanael Nerode <neroden@twcny.rr.com> 8854 8855 * configure.in: Fix AIX configury bug. 8856 88572002-06-19 Nathanael Nerode <neroden@twcny.rr.com> 8858 8859 * configure.in: Replace ${topsrcdir} with ${srcdir}. 8860 8861 * configure.in: Move definition of libstdcxx_flags right above 8862 usage, rather than way earlier. 8863 8864 * configure.in: Pull definition of is_cross_compiler earlier. 8865 8866 * configure.in: Rearrange a little. 8867 8868 * configure.in: Remove references to librx. 8869 * Makefile.in: Remove references to librx. 8870 88712002-06-19 Nathanael Nerode <neroden@twcny.rr.com> 8872 8873 * configure.in: Eliminate ${gasdir} variable. 8874 88752002-06-18 Dave Brolley <brolley@redhat.com> 8876 8877 * configure.in: Add support for frv. 8878 * config.sub: Add support for frv. 8879 88802002-06-12 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> 8881 8882 * Makefile.in (CFLAGS_FOR_TARGET): Add -O2. 8883 88842002-06-08 Jason Thorpe <thorpej@wasabisystems.com> 8885 8886 * configure.in (vax-*-netbsd*): Re-enable gas. 8887 88882002-05-31 Nathanael Nerode <neroden@twcny.rr.com> 8889 8890 * Makefile.in: Replace HOST_PREFIX, HOST_PREFIX_1 with BUILD_PREFIX, 8891 BUILD_PREFIX_1, to correct nomenclature. 8892 * configure: Likewise. 8893 8894 * Makefile.in: Eliminate version-specific references to tcl8.1, tk8.1. 8895 * configure.in: Eliminate version-specific references to tcl8.1, tk8.1. 8896 88972002-05-31 Olaf Hering <olh@suse.de> 8898 8899 * config-ml.in: Propogate DESTDIR also. 8900 89012002-05-29 Jason Thorpe <thorpej@wasabisystems.com> 8902 8903 * configure.in (vax-*-netbsd*): Don't build gas for this 8904 platform. 8905 89062002-05-28 Marek Michalkiewicz <marekm@amelek.gda.pl> 8907 8908 * configure.in (noconfigdirs): Don't compile libiberty, libstdcxx 8909 and libgcj for AVR. 8910 89112002-05-28 Nick Clifton <nickc@cambridge.redhat.com> 8912 8913 * config.sub: Add DLX target. 8914 89152002-05-22 Jason Thorpe <thorpej@wasabisystems.com> 8916 8917 * config.guess: Update to 2002-05-22 version. 8918 * config.sub: Likewise. 8919 89202002-05-16 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> 8921 8922 * Makefile.in: Allow for PWDCMD to override hardcoded pwd. 8923 * config-ml.in: Likewise. 8924 * configure: Likewise. 8925 * configure.in: Likewise. 8926 89272002-05-13 Nathanael Nerode <neroden@twcny.rr.com> 8928 8929 * configure.in: Simplify makefile fragment collection. 8930 8931 * configure.in: Remove code to build emacs. 8932 8933 * configure.in : Remove --srcdir argument from targargs and buildargs 8934 (it's always overridden in the Makefile anyway). Rearrange a bit. 8935 8936 * configure: Move some logic to configure.in. 8937 * configure.in: Move some logic from configure. 8938 89392002-05-07 Jeff Johnston <jjohnstn@redhat.com> 8940 8941 * COPYING.LIBGLOSS: New file. 8942 89432002-05-07 Federico G. Schwindt <fgsch@olimpo.com.br> 8944 8945 * Makefile.in: Honour DESTDIR. 8946 89472002-05-05 Alexandre Oliva <aoliva@redhat.com> 8948 8949 * configure.in (noconfigdirs): Don't disable libgcj on 8950 sparc64-*-solaris* and sparcv9-*-solaris*. 8951 89522002-05-03 Alexandre Oliva <aoliva@redhat.com> 8953 8954 * configure.in: Revert 2002-04-18's patch; fixed in libjava. 8955 89562002-05-03 Thomas Fitzsimmons <fitzsim@redhat.com> 8957 8958 * configure.in (FLAGS_FOR_TARGET): Do not add 8959 -B$$r/$(TARGET_SUBDIR)/newlib/ when compiling newlib natively 8960 on i[3456]86-*-linux*. 8961 89622002-05-01 Thomas Fitzsimmons <fitzsim@redhat.com> 8963 8964 * configure.in (noconfigdirs): Replace [ ] with test. 8965 8966 * configure.in (noconfigdirs): Do not add target-newlib if 8967 target == i[3456]86-*-linux*, and host == target. 8968 89692002-04-29 Mark Mitchell <mark@codesourcery.com> 8970 8971 * config.guess: Updated to 2002-04-26's version. 8972 * config.sub: Updated to 2002-04-26's version. 8973 89742002-04-29 Nathanael Nerode <neroden@doctormoo.dyndns.org> 8975 8976 * configure.in: delete reference to absent file 8977 8978 * configure.in: replace '[' with 'test' 8979 8980 * configure.in: Eliminate references to gash. 8981 * Makefile.in: Eliminate references to gash. 8982 8983 * configure.in: remove useless references to 'pic' makefile fragments. 8984 8985 * configure.in: (*-*-windows*) Finish removing. 8986 8987 * configure.in: Eliminate redundant test for libgui. 8988 89892002-04-26 Joel Sherrill <joel@OARcorp.com> 8990 8991 * configure.in (h8300*-*-rtems*): Disable libf2c and libgcj. 8992 (sparc-*-elf*, sparc64-*-elf*): Disable libgcj. 8993 89942002-04-19 Nathanael Nerode <neroden@twcny.rr.com> 8995 8996 * configure.in: remove references to dead files 8997 89982002-04-18 Tom Tromey <tromey@redhat.com> 8999 9000 * configure.in: Disallow configuring libgcj when it is already 9001 installed and we're using Solaris 2.8 linker. Do enable libgcj on 9002 Solaris 2.8 by default. For PR libgcj/6158. 9003 90042002-04-17 Nathanael Nerode <neroden@twcny.rr.com> 9005 9006 * configure.in: Move default CC setting out of config/mh-* fragments 9007 directly into here. 9008 90092002-04-17 Nathanael Nerode <neroden@twcny.rr.com> 9010 9011 * configure.in: don't even try to configure or make a subdirectory 9012 if there's no configure script for it. 9013 90142002-04-15 Mark Mitchell <mark@codesourcery.com> 9015 9016 * MAINTAINERS: Remove chill maintainers. 9017 * Makefile.in (CHILLFLAGS): Remove. 9018 (CHILL_LIB): Remove. 9019 (TARGET_CONFIGDIRS): Remove libchill. 9020 (CHILL_FOR_TARGET): Remove. 9021 (BASE_FLAGS_TO_PASS): Don't pass CHILLFLAGS, CHILL_FOR_TARGET, or 9022 CHILL_LIB. 9023 (CONFIGURE_TARGET_MODULES): Remove configure-target-libchill. 9024 (CHECK_TARGET_MODULES): Likewise. 9025 (INSTALL_TARGET_MODULES): Likewise. 9026 (CLEAN_TARGET_MODULES): Likewise. 9027 (configure-target-libchill): Remove. 9028 (all-target-libchill): Remove. 9029 * configure.in (target_libs): Remove target-libchill. 9030 Do not compute CHILL_FOR_TARGET. 9031 * libchill: Remove directory. 9032 90332002-04-15 DJ Delorie <dj@redhat.com> 9034 9035 * Makefile.in, configure.in, configure: Sync with gcc, entries 9036 follow... 9037 90382002-04-08 Tom Tromey <tromey@redhat.com> 9039 9040 * configure.in: Add FLAGS_FOR_TARGET to GCJ_FOR_TARGET. 9041 Fixes PR libgcj/6068. 9042 90432002-03-30 Krister Walfridsson <cato@df.lth.se> 9044 9045 * configure.in (i*86-*-netbsdelf*): Don't disable libgcj. 9046 90472002-03-27 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> 9048 9049 * configure.in (alpha*-dec-osf*): Enable libgcj. 9050 90512002-03-24 Nick Clifton <nickc@cambridge.redhat.com> 9052 9053 Fix for: PR bootstrap/3591, target/5676 9054 * configure.in (mcore-pe): Disable the configuration of 9055 libstdc++-v3 since exceptions are not supported. 9056 90572002-03-20 Anthony Green <green@redhat.com> 9058 9059 * configure.in: Enable libgcj for xscale-elf target. 9060 90612002-02-28 Alexandre Oliva <aoliva@redhat.com> 9062 9063 * configure.in (libstdcxx_flags): Don't add libstdc++-v3 flags for 9064 libjava. 9065 (CXX_FOR_TARGET): Explain why -shared-libgcc here. 9066 90672002-02-22 Alexandre Oliva <aoliva@redhat.com> 9068 9069 * configure.in (CXX_FOR_TARGET): Add -shared-libgcc for 9070 libstdc++-v3 and libjava. 9071 90722002-02-11 Adam Megacz <adam@xwt.org> 9073 9074 * gcc/Makefile.in: Removed libstdc++-v3 dependancy for libjava and 9075 boehm-gc 9076 90772002-02-09 Alexandre Oliva <aoliva@redhat.com> 9078 9079 * config.guess: Updated to 2002-01-30's version. 9080 * config.sub: Updated to 2002-02-01's version. 9081 Contribute sh64-elf. 9082 2000-12-01 Alexandre Oliva <aoliva@redhat.com> 9083 * configure.in: Added sh64-*-*. 9084 90852002-01-17 H.J. Lu <hjl@gnu.org> 9086 9087 * Makefile.in (all-fastjar): Also depend on all-libiberty. 9088 (all-target-fastjar): Also depend on all-target-libiberty. 9089 9090Wed Dec 5 07:33:45 2001 Douglas B. Rupp <rupp@gnat.com> 9091 9092 * configure, configure.in: Use temp file for long sed commands. 9093 90942001-11-14 Hans-Peter Nilsson <hp@bitrange.com> 9095 9096 * configure.in (noconfigdirs) [h8300*-*-*, h8500-*-*]: Disable 9097 libf2c. 9098 90992001-11-03 Hans-Peter Nilsson <hp@bitrange.com> 9100 9101 * configure.in (noconfigdirs) [mmix-*-*]: Disable libgcj. 9102 91032001-10-11 Hans-Peter Nilsson <hp@axis.com> 9104 9105 * configure.in (noconfigdirs) [cris-*-*]: Disable libgcj. 9106 91072001-10-02 Joseph S. Myers <jsm28@cam.ac.uk> 9108 9109 * configure: Handle temporary files securely using mkdir. 9110 91112001-09-26 Will Cohen <wcohen@redhat.com> 9112 9113 * configure.in (*-*-linux*): Disable configuration of target-newlib 9114 and target-libgloss. 9115 91162001-09-26 Alexandre Oliva <aoliva@redhat.com> 9117 9118 * Makefile.in (EXTRA_TARGET_FLAGS): Pass RANLIB_FOR_TARGET for 9119 RANLIB. 9120 91212001-08-11 Graham Stott <grahams@redhat.com> 9122 9123 * Makefile.in (check-c++): Add missing semicolon. 9124 91252001-07-25 Andrew Haley <aph@cambridge.redhat.com> 9126 9127 * configure.in (sh-*-linux*): New. 9128 91292001-07-12 Stephane Carrez <Stephane.Carrez@worldnet.fr> 9130 9131 * configure.in (noconfigdirs): Don't compile libiberty, libstdcxx 9132 and libgcj on m68hc11/m68hc12. 9133 91342001-06-27 H.J. Lu (hjl@gnu.org) 9135 9136 * Makefile (CFLAGS_FOR_BUILD): New. 9137 (EXTRA_GCC_FLAGS): Add CFLAGS_FOR_BUILD. 9138 91392001-06-01 Hans-Peter Nilsson <hp@axis.com> 9140 9141 * configure.in (libstdcxx_flags): Do not try to execute 9142 libstdc++-v3/testsuite_flags until it exists. 9143 91442001-05-18 Benjamin Kosnik <bkoz@redhat.com> 9145 9146 * configure.in (libstdcxx_flags): Remove reference to libstdc++.INC. 9147 91482001-05-09 Jeffrey Oldham <oldham@codesourcery.com> 9149 9150 * ltcf-cxx.sh: Add -nostdlib to IRIX 6 archive_cmds. 9151 9152Mon Apr 23 09:15:03 2001 Anthony Green <green@redhat.com> 9153 9154 * configure.in: Move *-chorusos target case to the proper switch. 9155 Disable libgcj. 9156 91572001-04-13 Franz Sirl <Franz.Sirl-kernel@lauterbach.com> 9158 9159 * Makefile.in (STAGE1_CFLAGS): Pass down. 9160 91612001-04-13 Alan Modra <amodra@one.net.au> 9162 9163 * config.guess: Add hppa64-linux support. Note for next import that 9164 this is already in the master file. 9165 * configure.in: Likewise. Accept `parisc' alias for `hppa'. 9166 91672001-03-22 Colin Howell <chowell@redhat.com> 9168 9169 * Makefile.in (DO_X): Do not backslash single-quotes in 9170 backquotes (two places). 9171 91722001-03-18 Laurynas Biveinis <lauras@softhome.net> 9173 9174 * Makefile.in (DO_X): Quote nested quotes. 9175 91762001-03-15 Laurynas Biveinis <lauras@softhome.net> 9177 9178 * Makefile.in (DO_X): Use double quotes for quoting 9179 "RANLIB=$${RANLIB}". 9180 91812001-03-09 Nicola Pero <n.pero@mi.flashnet.it> 9182 9183 * configure.in: Only use `lang_requires' for languages athat are 9184 actually enabled. 9185 91862001-03-07 Tom Tromey <tromey@redhat.com> 9187 9188 * configure.in: Allow config-lang.in to set `lang_requires' to list 9189 of other required languages. 9190 91912001-03-06 Laurynas Biveinis <lauras@softhome.net> 9192 9193 * Makefile.in: Remove RANLIB definition. Use RANLIB 9194 in RANLIB_FOR_TARGET, EXTRA_HOST_FLAGS, EXTRA_TARGET_FLAGS, 9195 EXTRA_GCC_FLAGS, $(DO_X) targets only when the RANLIB is set. 9196 91972001-02-28 Benjamin Kosnik <bkoz@redhat.com> 9198 Alexandre Oliva <aoliva@redhat.com> 9199 9200 * Makefile.in (check-c++): Use tabs, not spaces. 9201 92022001-02-19 Benjamin Kosnik <bkoz@redhat.com> 9203 9204 * Makefile.in (check-c++): New rule. 9205 9206 * configure.in (target_libs): Remove libg++. 9207 (noconfigdirs): Remove libg++. 9208 (noconfigdirs): Same. 9209 (noconfigdirs): Same. 9210 (noconfigdirs): Same. 9211 9212 * config-ml.in: Remove libg++ references. 9213 9214 * Makefile.in (TARGET_CONFIGDIRS): Remove libio, libstdc++, libg++. 9215 (ALL_TARGET_MODULES): Same. 9216 (configure-target-libg++): Remove. 9217 (all-target-libg++): Remove. 9218 (configure-target-libio): Remove. 9219 (all-target-libio): Remove. 9220 (check-target-libio): Remove. 9221 (.PHONY): Remove. 9222 (libg++.tar.bz2): Remove. 9223 (all-target-cygmon): Remove libio. 9224 (all-target-libstdc++): Remove. 9225 (configure-target-libstdc++): Remove. 9226 (TARGET_LIB_PATH): Remove libstdc++. 9227 (ALL_GCC_CXX): Remove libstdc++. 9228 (all-target-gperf): Correct. 9229 92302001-02-15 Anthony Green <green@redhat.com> 9231 9232 * configure: Introduce GCJ_FOR_TARGET. 9233 * configure.in: Ditto. 9234 * Makefile.in: Ditto. 9235 92362001-02-08 Chandrakala Chavva <cchavva@redhat.com> 9237 9238 * configure.in: for *-chorusos, don't config target-newlib and 9239 target-libgloss. 9240 92412001-02-04 Mark Mitchell <mark@codesourcery.com> 9242 9243 Remove V2 C++ library. 9244 * configure.in: Remove --enable-libstdcxx_v3 support. 9245 92462001-01-27 Richard Henderson <rth@redhat.com> 9247 9248 * configure.in (target_makefile_frag) [alpha*-*]: Use mt-alphaieee. 9249 92502001-01-26 Tom Tromey <tromey@redhat.com> 9251 9252 * configure.in: Allow libgcj to be built on Sparc Solaris. 9253 92542001-01-23 Bryce McKinlay <bryce@albatross.co.nz> 9255 9256 * configure.in: Enable libgcj on several additional platforms. 9257 92582001-01-22 Bryce McKinlay <bryce@albatross.co.nz> 9259 9260 * configure.in: Enable libgcj for linux targets. 9261 92622001-01-09 Mike Stump <mrs@wrs.com> 9263 9264 * Makefile.in (CONFIGURE_TARGET_MODULES): Pass back configuration 9265 failures of subdirectories. 9266 92672001-01-02 Laurynas Biveinis <lauras@softhome.net> 9268 9269 * configure: handle DOS-style absolute paths. 9270 92712001-01-02 Laurynas Biveinis <lauras@softhome.net> 9272 9273 * configure.in: remove supported directories from $noconfigdirs for DJGPP. 9274 92752000-12-18 Benjamin Kosnik <bkoz@redhat.com> 9276 9277 * Makefile.in (BASE_FLAGS_TO_PASS): Alphabetize. 9278 (libstdcxx_incdir): Pass down. 9279 * config.if: Remove expired bits for cxx_interface, add stub. 9280 (libstdcxx_incdir): Add variable for g++ include directory. 9281 * configure.in (gxx_include_dir): Use it. 9282 92832000-12-15 Andreas Jaeger <aj@suse.de> 9284 9285 * configure.in: Handle lang_dirs. 9286 92872000-12-13 Anthony Green <green@redhat.com> 9288 9289 * configure.in: Disable libgcj for any target not specifically 9290 listed. Disable libgcj for x86 and Alpha Linux until compatible 9291 with g++ abi. 9292 92932000-12-13 Mike Stump <mrs@wrs.com> 9294 9295 * Makefile.in (local-distclean): Also remove fastjar. 9296 92972000-12-10 Anthony Green <green@redhat.com> 9298 9299 * configure.in: Define libgcj. Disable libgcj target libraries for 9300 most targets. 9301 93022000-12-09 Alexandre Petit-Bianco <apbianco@cygnus.com> 9303 9304 * configure.in (target_libs): Revert 2000-12-08 patch. 9305 (noconfigdirs): Added target-libjava. 9306 93072000-12-09 Laurynas Biveinis <lauras@softhome.net> 9308 9309 * Makefile.in: handle DOS-style absolute paths. 9310 93112000-12-08 Alexandre Petit-Bianco <apbianco@cygnus.com> 9312 9313 * Makefile.in (TARGET_CONFIGDIRS): Wrong place. Removed note about 9314 libjava. 9315 * configure.in (target_libs): Removed `target-libjava'. 9316 93172000-12-08 Alexandre Petit-Bianco <apbianco@cygnus.com> 9318 9319 * Makefile.in (TARGET_CONFIGDIRS): Added note about libjava. 9320 (ALL_MODULES): Added fastjar. 9321 (NATIVE_CHECK_MODULES, INSTALL_MODULES, CLEAN_MODULES): Likewise. 9322 (all-target-libjava): all-fastjar replaces all-zip. 9323 (all-fastjar): Added. 9324 (configure-target-fastjar, all-target-fastjar): Likewise. 9325 * configure.in (host_tools): Added fastjar. 9326 93272000-12-07 Mike Stump <mrs@wrs.com> 9328 9329 * Makefile.in (local-distclean): Remove leftover built files. 9330 93312000-11-16 Fred Fish <fnf@be.com> 9332 9333 * configure.in (enable_libstdcxx_v3): Fix typo, 9334 libstd++ -> libstdc++. 9335 93362000-11-13 Joseph S. Myers <jsm28@cam.ac.uk> 9337 9338 * configure: Provide the original toplevel configure arguments 9339 (including $0) to subprocesses in the environment rather than 9340 through gcc/configargs.h. 9341 93422000-11-12 Mark Mitchell <mark@codesourcery.com> 9343 9344 * configure: Turn on libstdc++ V3 by default. 9345 93462000-10-16 Michael Meissner <meissner@redhat.com> 9347 9348 * configure (gcc/configargs.h): Only create if there is a build GCC 9349 directory created. 9350 93512000-10-05 Phil Edwards <pme@gcc.gnu.org> 9352 9353 * configure: Save configure arguments to gcc/configargs.h. 9354 93552000-10-04 Andris Pavenis <pavenis@latnet.lv> 9356 9357 * Makefile.in (bootstrap): avoid recursion if subdir missing 9358 (cross): ditto 9359 (do-proto-toplev): ditto 9360 9361Wed Sep 13 11:11:29 2000 Jeffrey A Law (law@cygnus.com) 9362 9363 * configure.in: Do not build byacc for hppa64. Provide paths to the 9364 X11 libraries for hppa64. 9365 93662000-09-02 Anthony Green <green@cygnus.com> 9367 9368 * Makefile.in (all-gcc): Depend on all-zlib. 9369 (CLEAN_MODULES): Add clean-zlib. 9370 (ALL_MODULES): Add all-zlib. 9371 * configure.in (host_libs): Add zlib. 9372 93732000-08-25 Alexandre Oliva <aoliva@redhat.com> 9374 9375 * configure.in (FLAGS_FOR_TARGET): Use $target_configdirs and 9376 $targargs to tell whether newlib is going to be built. 9377 9378 * configure.in [disable-libstdcxx-v3] (libstdcxx_flags): Search 9379 $$r/TARGET_SUBDIR/libio for _G_config.h. 9380 93812000-08-14 Zack Weinberg <zack@wolery.cumb.org> 9382 9383 * configure.in (libstdcxx_flags): Remove -isystem $$s/libio/stdio. 9384 9385 * configure: Make enable_threads and enable_shared defaults 9386 explicit. Substitute enable_threads into generated Makefiles. 9387 * configure.in: Accept *-*-linux* not just *-*-linux-gnu*. 9388 * libtool.m4: Accept *-*-linux* not just *-*-linux-gnu*. 9389 93902000-08-02 Manfred Hollstein <manfredh@redhat.com> 9391 9392 * configure.in: Re-enable all references to libg++ and librx. 9393 93942002-04-09 Loren James Rittle <rittle@labs.mot.com> 9395 9396 * configure.in: Add *-*-freebsd* configurations. 9397 93982002-04-07 Andrew Cagney <ac131313@redhat.com> 9399 9400 * Makefile.in (do-tar-bz2): Delete rule. Replace with ... 9401 (do-tar, do-bz2): New rules. 9402 (taz): Update. Replace do-tar-bz2 with do-tar and do-bz2. 9403 (gdb-tar): New rule. 9404 (gdb-taz): Rewrite. Use gdb-tar and do-bz2. 9405 (insight_dejagnu.tar): New rule. 9406 (insight.tar): New rule. 9407 (gdb+dejagnu.tar): New rule. 9408 (gdb.tar): New rule. 9409 94102002-04-07 Andrew Cagney <ac131313@redhat.com> 9411 9412 * MAINTAINERS: Update dejagnu/ 9413 94142002-03-16 Alexandre Oliva <aoliva@redhat.com> 9415 9416 * ltmain.sh (relink_command): Fix typo in previous change. 9417 94182002-03-15 Alexandre Oliva <aoliva@redhat.com> 9419 9420 * ltmain.sh (taglist): Initialized. Don't let `CC' tag out of it. 9421 (relink_command): Added --tag flags. 9422 (mode=install): If relinking fails; error out. 9423 94242002-03-12 Richard Henderson <rth@redhat.com> 9425 9426 * Makefile.in (NOTPARALLEL): New. Use it instead of explicit 9427 .NOTPARALLEL tag. 9428 (do-check): Rename from check. 9429 (check): Allow parallel check. 9430 94312002-03-11 Richard Henderson <rth@redhat.com> 9432 9433 * Makefile.in (.NOTPARALLEL): Add fake tag. 9434 94352002-03-07 H.J. Lu (hjl@gnu.org) 9436 9437 * configure.in: Enable gprof for mips*-*-linux*. 9438 94392002-02-28 Alexandre Oliva <aoliva@redhat.com> 9440 9441 * configure.in (libstdcxx_flags): Don't add libstdc++-v3 flags for 9442 libjava. 9443 (CXX_FOR_TARGET): Add -shared-libgcc for libstdc++-v3 and libjava. 9444 94452002-02-24 Andrew Cagney <ac131313@redhat.com> 9446 9447 * texinfo/texinfo.tex: Update to version 2002-02-14.08. 9448 94492002-02-23 Daniel Jacobowitz <drow@mvista.com> 9450 9451 * config.guess: Import from master sources, rev 1.232. 9452 * config.sub: Import from master sources, rev 1.246. 9453 94542002-02-23 Alexandre Oliva <aoliva@redhat.com> 9455 9456 * Makefile.in (MAKEINFO): Don't assume makeinfo will be built just 9457 because its Makefile is there; test for the executable instead. 9458 94592002-02-09 Alexandre Oliva <aoliva@redhat.com> 9460 9461 Contribute sh64-elf. 9462 2000-12-01 Alexandre Oliva <aoliva@redhat.com> 9463 * configure.in: Added sh64-*-*. 9464 94652002-02-04 Jeff Johnston <jjohnstn@redhat.com> 9466 9467 * COPYING.NEWLIB: Remove advertising clause from 9468 Berkeley and Red Hat licenses. 9469 94702002-02-01 Mo DeJong <supermo@bayarea.net> 9471 9472 * Makefile.in: Add all-tix to deps for all-snavigator 9473 so that tix is built when building snavigator. 9474 94752002-02-01 Ben Elliston <bje@redhat.com> 9476 9477 * config.guess: Import from master sources, rev 1.229. 9478 * config.sub: Import from master sources, rev 1.240. 9479 94802002-01-27 Daniel Jacobowitz <drow@mvista.com> 9481 9482 From Steve Ellcey <sje@cup.hp.com>: 9483 * libtool.m4 (HPUX_IA64_MODE): Set to 32 or 64 based on ABI. 9484 (lt_cv_deplibs_check_method, lt_cv_file_magic_cmd, 9485 lt_cv_file_magic_test_file): Set to appropriate values for HP-UX 9486 IA64. 9487 * ltcf-c.sh (archive_cmds, hardcode_*): Ditto. 9488 * ltconfig (shlibpath_*, dynamic_linker, library_names_spec, 9489 soname_spec, sys_lib_search_path_spec): Ditto. 9490 94912002-01-26 Jason Thorpe <thorpej@wasabisystems.com> 9492 9493 * configure.in (*-*-netbsd*): New. Skip target-newlib, 9494 target-libiberty, and target-libgloss. Skip Java-related 9495 libraries if not supported for NetBSD on target CPU. 9496 94972002-01-23 Nick Clifton <nickc@cambridge.redhat.com> 9498 9499 * configure.in: Import StrongARM and XScale target_configdirs from 9500 FSF GCC version. 9501 95022002-01-16 H.J. Lu (hjl@gnu.org) 9503 9504 * config.guess: Import from master sources, rev 1.225. 9505 * config.sub: Import from master sources, rev 1.238. 9506 9507 * MAINTAINERS: Updated notes on config.guess and config.sub. 9508 95092002-01-11 Steve Ellcey <sje@cup.hp.com> 9510 9511 * configure.in (ia64*-*-hpux*): New target for IA64 HP-UX, 9512 ld and gdb are not supported. 9513 95142002-01-07 Jeff Johnston <jjohnstn@redhat.com> 9515 9516 * Change reference to Cygnus Solutions to be Red Hat. 9517 95182002-01-07 Jeff Johnston <jjohnstn@redhat.com> 9519 9520 * COPYING.NEWLIB: Update generic copyright date. 9521 95222002-01-07 Mark Salter <msalter@redhat.com> 9523 9524 * configure.in: Remove target-bsp and target-cygmon from arm builds. 9525 Allow target-libgloss to be built for arm, strongarm, and xscale. 9526 95272002-01-03 Ben Elliston <bje@redhat.com> 9528 9529 * MAINTAINERS: Update URL for config.* scripts. 9530 95312001-12-18 Alan Modra <amodra@bigpond.net.au> 9532 9533 * config.sub: Import latest version. 9534 * config.guess: Likewise. 9535 95362001-12-13 Thomas Fitzsimmons <fitzsim@redhat.com> 9537 9538 * configure.in (FLAGS_FOR_TARGET): Remove -nostdinc and -isystem 9539 options for i[3456]86-pc-linux* native builds. 9540 95412001-12-05 Laurent Guerby <guerby@acm.org> 9542 9543 * MAINTAINERS: gcc adopts symlink-tree, refer more to 9544 libiberty. 9545 9546 Import this patch from gcc: 9547 9548 2000-12-09 Laurynas Biveinis <lauras@softhome.net> 9549 9550 * symlink-tree: handle DOS-style absolute paths. 9551 95522001-11-28 DJ Delorie <dj@redhat.com> 9553 Zack Weinberg <zack@codesourcery.com> 9554 9555 When build != host, create libiberty for the build machine. 9556 9557 * Makefile.in (TARGET_CONFIGARGS, BUILD_CONFIGARGS): Replace 9558 CONFIG_ARGUMENTS. 9559 (ALL_BUILD_MODULES_LIST, BUILD_CONFIGDIRS, BUILD_SUBDIR): 9560 New variables. 9561 (ALL_BUILD_MODULES, CONFIGURE_BUILD_MODULES): New variables 9562 and rules. 9563 (all.normal): Depend on ALL_BUILD_MODULES. 9564 (CONFIGURE_TARGET_MODULES rule): Use TARGET_CONFIGARGS. 9565 (all-build-libiberty): Depend on configure-build-libiberty. 9566 9567 * configure: Calculate and substitute proper value for 9568 ALL_BUILD_MODULES. 9569 * configure.in: Create the build subdirectory. 9570 Calculate and substitute TARGET_CONFIGARGS (formerly 9571 CONFIG_ARGUMENTS); also BUILD_SUBDIR and BUILD_CONFIGARGS (new). 9572 95732001-11-26 Geoffrey Keating <geoffk@redhat.com> 9574 9575 * config.sub: Update to version 1.232 on subversion. 9576 95772001-11-20 Nick Clifton <nickc@cambridge.redhat.com> 9578 9579 * Makefile.in (do-proto-toplev): Use msgfmt to generate .gmo 9580 files from .po files for a distribution. 9581 95822001-11-19 Hans-Peter Nilsson <hp@bitrange.com> 9583 9584 * COPYING.NEWLIB: Mention preserved notice in specific parts. 9585 95862001-11-13 Jeff Holcomb <jeffh@redhat.com> 9587 9588 Merged from net gcc: 9589 2001-07-30 Jeff Sturm <jsturm@one-pont.com> 9590 * ltcf-c.sh: Use $objext, not $ac_objext. 9591 2001-07-27 Mark Kettenis <kettenis@gnu.org> 9592 * ltcf-cxx.sh: Add support for GNU. 9593 2001-07-22 Timothy Wall <twall@redhat.com> 9594 * ltcf-c.sh: Don't disable shared libraries for AIX5/IA64. Preserve 9595 default settings if using GNU tools with that configuration. 9596 * ltcf-cxx.sh: Ditto. 9597 * ltcf-gcj.sh: Ditto. 9598 2001-07-21 Michael Chastain <chastain@redhat.com> 9599 * ltconfig: Set max_cmd_len to a maximum of 512Kb, as it seems some 9600 HPUX 11.0 systems have trouble with 1MB. Mark as gcc-local. 9601 * ltmain.sh: Mark as gcc-local. 9602 96032001-11-13 Jeff Holcomb <jeffh@redhat.com> 9604 9605 * Makefile.in (all-bison): Revert 2001-10-24. 9606 Don't depend on texinfo. 9607 96082001-11-12 Hans-Peter Nilsson <hp@bitrange.com> 9609 9610 * COPYING.NEWLIB: Add BSD-style license/copyright blurb for my work. 9611 96122001-11-08 Phil Edwards <pedwards@disaster.jaj.com> 9613 9614 * configure.in (--enable-languages): Be more permissive about 9615 syntax. Check for empty lists better. Warn about $LANGUAGES. 9616 96172001-11-06 Hans-Peter Nilsson <hp@bitrange.com> 9618 9619 * Makefile.in (MAKEINFO): Use "missing" for makeinfo older than 4.0. 9620 96212001-10-24 Jeff Holcomb <jeffh@redhat.com> 9622 9623 Makefile.in (all-bison): Don't depend on texinfo. 9624 96252001-10-03 Alan Modra <amodra@bigpond.net.au> 9626 9627 * gettext.m4: Test po/POTFILES.in exists before trying to read. 9628 96292001-09-29 Alexandre Oliva <aoliva@redhat.com> 9630 9631 * Makefile.in (configure-target-gperf): Depend on $(ALL_GCC_CXX). 9632 96332001-09-28 Hans-Peter Nilsson <hp@axis.com> 9634 9635 * config.sub, config.guess: Import latest from subversions. 9636 96372001-09-21 Alexandre Oliva <aoliva@redhat.com> 9638 9639 * Makefile.in (AS_FOR_TARGET, LD_FOR_TARGET, 9640 DLLTOOL_FOR_TARGET, WINDRES_FOR_TARGET, AR_FOR_TARGET, 9641 RANLIB_FOR_TARGET, NM_FOR_TARGET): Don't use double quotes to 9642 avoid quotes nesting problems. 9643 (NATIVE_CHECK_MODULES): Ditto, just for consistency. 9644 (DO_X): Export only variables that are set. 9645 96462001-09-19 Ben Elliston <bje@redhat.com> 9647 9648 * configure.in (sparc-sun-solaris2*): Don't use /usr/bin/which on 9649 Solaris when testing for the /usr/ucb/cc compiler; it has incorrect 9650 semantics. Use the shell built-in "type" command instead. 9651 96522001-09-15 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de> 9653 9654 * config.sub: Reverted the earlier change, this version is not the 9655 master file. 9656 96572001-09-14 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de> 9658 9659 * config.sub: Change machine triplets from mipsel*-* to mips*el-*. 9660 Add support for mips64. 9661 96622001-09-03 Jeff Holcomb <jeffh@redhat.com> 9663 9664 * configure.in: Enable libstdc++-v3 for h8300 targets. 9665 96662001-08-30 Eric Christopher <echristo@redhat.com> 9667 Jason Eckhardt <jle@redhat.com> 9668 9669 * config.sub: Add support for mipsisa32. 9670 96712001-08-30 Eric Christopher <echristo@redhat.com> 9672 9673 * config.sub, config.guess: Import latest from subversions. 9674 96752001-08-20 Alan Modra <amodra@bigpond.net.au> 9676 9677 * config.sub, config.guess: Import latest from subversions. 9678 96792001-07-26 DJ Delorie <dj@redhat.com> 9680 9681 * MAINTAINERS: Clarify libiberty merge rules and procedures. 9682 96832001-06-19 Alan Modra <amodra@bigpond.net.au> 9684 9685 * Makefile.in: Revert 2001-06-17. 9686 (VER): If AM_INIT_AUTOMAKE uses BFD_VERSION, get version from bfd/. 9687 96882001-06-17 H.J. Lu <hjl@gnu.org> 9689 9690 * Makefile.in (gas.tar.bz2): Pass TOOL=bfd PACKAGE=gas to make. 9691 (gas+binutils.tar.bz2): Likewise. 9692 (binutils.tar.bz2): Pass TOOL=bfd PACKAGE=binutils to make. 9693 9694Fri Jun 8 11:14:02 2001 Andrew Cagney <cagney@b1.cygnus.com> 9695 9696 * Makefile.in (VER): When present, extract the version number from 9697 the file version.in. 9698 96992001-06-08 Alexandre Oliva <aoliva@redhat.com>, Jeff Sturm <jsturm@one-point.com> 9700 9701 * Makefile.in (AS_FOR_TARGET, LD_FOR_TARGET, NM_FOR_TARGET): If 9702 gcc/xgcc is built, use -print-prog-name to find out the program 9703 name to use. 9704 97052001-06-04 Mark Mitchell <mark@codesourcery.com> 9706 9707 * ltcf-c.sh (archive_cmds, archive_expsym_cmds) [solaris, 9708 with_gcc]: Use `gcc -shared' to build a shared library. 9709 97102001-06-04 John David Anglin <dave@hiauly1.hia.nrc.ca> 9711 9712 * ltcf-c.sh (archive_cmd) [hpux, with_gcc]: Use gcc to link shared 9713 archives. 9714 97152001-05-28 Simon Patarin <simon.patarin@inria.fr> 9716 9717 * ltcf-cxx.sh (osf3/osf4/osf5): Support creation of C++ shared 9718 libraries when using g++ with native linker. 9719 97202001-05-28 Alexandre Oliva <aoliva@redhat.com> 9721 9722 * ltconfig, ltmain.sh: Upgrade to libtool 1.4a 1.641.2.256. 9723 97242001-05-24 Tom Rix <trix@redhat.com> 9725 9726 * configure.in : enable ld for aix 9727 97282001-05-22 Alexandre Oliva <aoliva@redhat.com> 9729 9730 * ltcf-cxx.sh (allow_undefined_flag, no_undefined_flag) 9731 [aix4*|aix5*]: Prepend blank. 9732 97332001-05-20 Alexandre Oliva <aoliva@redhat.com> 9734 9735 * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh, ltcf-cxx.sh, 9736 ltcf-gcj.sh: Upgraded to libtool 1.4a 1.641.2.254. Rebuilt a number 9737 of subdir/configure scripts to use the new libtool.m4. 9738 97392001-05-14 H.J. Lu <hjl@gnu.org> 9740 9741 * config.if (libc_interface): Set to -libc6.2- for cross 9742 compiling to Linux/glibc 2.2. 9743 97442001-05-03 Alexandre Oliva <aoliva@redhat.com> 9745 9746 * configure.in (noconfigdirs) [*-cygwin*, *-mingw*, *-beos]: Disable 9747 libgcj. 9748 97492001-04-26 Alexandre Oliva <aoliva@redhat.com> 9750 9751 * configure.in (noconfigdirs): Don't reset it from scratch in the 9752 target case; only append to it. 9753 97542001-04-26 Alexandre Oliva <aoliva@redhat.com> 9755 9756 * configure.in (noconfigdirs) [hppa*-*-*, mips*-*-irix6*, 9757 sparc-*-solaris2.8]: Disable ${libgcj}. 9758 97592001-04-25 Alexandre Oliva <aoliva@redhat.com> 9760 9761 * configure.in (libgcj_saved): Copy from $libgcj. 9762 (libgcj): Zero out if --enable-libgcj; add to noconfigdirs is 9763 --disable-libgcj. 9764 97652001-04-20 Alexandre Oliva <aoliva@redhat.com> 9766 9767 * ltconfig, ltmain.sh, ltcf-cxx.sh: Upgraded to libtool 1.4a 9768 1.641.2.228. 9769 97702001-04-12 Alexandre Oliva <aoliva@redhat.com> 9771 9772 * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh, ltcf-cxx.sh, 9773 ltcf-gcj.sh: Upgraded to libtool 1.4a 1.641.2.226. 9774 97752001-04-01 Alexandre Oliva <aoliva@redhat.com> 9776 9777 * Makefile.in (CXX_FOR_TARGET_FOR_RECURSIVE_MAKE, RECURSE_FLAGS): 9778 New macros. 9779 (bootstrap, cross): Use RECURSE_FLAGS. 9780 * configure.in: Subst CXX_FOR_TARGET_FOR_RECURSIVE_MAKE. 9781 97822001-03-27 Alexandre Oliva <aoliva@redhat.com> 9783 9784 * configure.in (CXX_FOR_TARGET): Use xgcc for libstdc++-v3. 9785 97862001-03-23 Nick Clifton <nickc@redhat.com> 9787 9788 * README-maintainer-mode: Add note about inability to use "make 9789 distclean" in maintainer mode. 9790 97912001-03-22 Alexandre Oliva <aoliva@redhat.com> 9792 9793 Re-installed: 9794 2001-01-02 Laurynas Biveinis <lauras@softhome.net> 9795 * ltcf-c.sh: Clear ac_cv_prog_cc_pic for DJGPP. Do not add 9796 '-DPIC' to ac_cv_prog_cc_pic for DJGPP. 9797 * ltcf-cxx.sh: Likewise. 9798 * ltcf-gcj.sh: Likewise. 9799 98002001-03-22 Philip Blundell <philb@gnu.org> 9801 9802 * config.sub, config.guess: Import latest from subversions. 9803 98042001-03-22 Alexandre Oliva <aoliva@redhat.com> 9805 9806 * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh, ltcf-cxx.sh, 9807 ltcf-gcj.sh: Upgraded to libtool 1.4a 1.641.2.198. 9808 98092001-03-20 Michael Chastain <chastain@redhat.com> 9810 9811 * Makefile.in: all-m4 depends on all-texinfo. 9812 98132001-03-08 Alexandre Oliva <aoliva@redhat.com> 9814 9815 * Makefile.in (ALL_GCC, ALL_GCC_C, ALL_GCC_CXX): Set before use. 9816 98172001-02-22 Jeff Johnston <jjohnstn@redhat.com> 9818 9819 * COPYING.NEWLIB: Remove DJ Delorie's address because it is no 9820 longer valid. 9821 98222001-02-16 Nick Clifton <nickc@redhat.com> 9823 9824 * configure.in (noconfigdirs): Allow configuration of texinfo 9825 for Cygwin hosts. 9826 98272001-02-09 Martin Schwidefsky <schwidefsky@de.ibm.com> 9828 9829 * config.guess: Add linux target for S/390. 9830 * config.sub: Likewise. 9831 * configure.in: Likewise. 9832 98332001-02-06 Ben Elliston <bje@redhat.com> 9834 9835 * configure: Output host type to stdout, not stderr. 9836 98372001-02-04 Michael Sokolov <msokolov@ivan.Harhan.ORG> 9838 9839 * config.guess: Import from subversions.gnu.org (revision 1.181). 9840 * config.sub: Import from subversions.gnu.org (revision 1.199). 9841 98422001-01-30 Alan Modra <alan@linuxcare.com.au> 9843 9844 * config.guess: Handle hppa64-linux systems. 9845 98462001-01-27 Michael Sokolov <msokolov@ivan.Harhan.ORG> 9847 9848 * ltcf-cxx.sh (ac_cv_prog_cc_pic_works, ac_cv_prog_cc_static_works): 9849 Don't unset, it's non-portable and no longer necessary, set to empty 9850 instead. 9851 98522001-01-27 Michael Sokolov <msokolov@ivan.Harhan.ORG>, Alexandre Oliva <oliva@lsd.ic.unicamp.br> 9853 9854 * ltconfig: Shell portability fix for the tagname validity check. 9855 98562001-01-27 Michael Sokolov <msokolov@ivan.Harhan.ORG> 9857 9858 * ltcf-cxx.sh: Use parentheses around eval $ac_compile. 9859 98602001-01-27 Alexandre Oliva <aoliva@redhat.com> 9861 9862 * ltcf-c.sh (ld_shlibs) [aix5*]: Disable on unknown CPU types. 9863 * ltcf-cxx.sh, ltcf-gcj.sh: Likewise. 9864 98652001-01-24 Alexandre Oliva <aoliva@redhat.com> 9866 9867 * ltmain.sh (TAG disable-shared, TAG disable-static): Make sure we 9868 keep at least one of build_libtool_libs or build_old_libs set to 9869 yes. 9870 98712001-01-24 Alexandre Oliva <aoliva@redhat.com> 9872 9873 * ltcf-gcj.sh (lt_simple_link_test_code): Remove stray `(0)'. 9874 * libtool.m4 (_AC_LIBTOOL_GCJ): Pass $CPPFLAGS on. 9875 98762000-11-07 Philip Blundell <pb@futuretv.com> 9877 9878 * Makefile.in (ETC_SUPPORT): Also add configbuild.* and configdev.*. 9879 98802000-11-03 Philip Blundell <pb@futuretv.com> 9881 9882 * Makefile.in (ETC_SUPPORT): Add configure.texi and associated info 9883 files. 9884 98852001-01-15 Jeff Johnston <jjohnstn@redhat.com> 9886 9887 * COPYING.NEWLIB: Put into source repository. 9888 98892001-01-15 Ben Elliston <bje@redhat.com> 9890 9891 * configure.in (host_tools): Add sid. 9892 Always configure cgen. 9893 * Makefile.in (all-sid): New target. 9894 (check-sid, clean-sid, install-sid): Likewise. 9895 98962001-01-07 Andreas Jaeger <aj@suse.de> 9897 9898 * config.sub, config.guess: Update from subversions. 9899 99002000-12-12 Alexandre Oliva <aoliva@redhat.com> 9901 9902 * configure.in: Disable language-specific target libraries for 9903 languages that aren't enabled. 9904 99052000-11-24 Nick Clifton <nickc@redhat.com> 9906 9907 * configure.in (xscale-elf): Add target. 9908 (xscale-coff): Add target. 9909 (c4x, c5x, tic54x): Move after ARM targets. 9910 99112000-11-23 Alexandre Oliva <aoliva@redhat.com> 9912 9913 * ltcf-gcj.sh: Added file, required by 2000-11-18 merge. 9914 99152000-11-20 Ian Lance Taylor <ian@zembu.com> 9916 9917 * ltcf-cxx.sh: Added file, required by 2000-11-18 merge. 9918 99192000-11-18 Alexandre Oliva <aoliva@redhat.com> 9920 9921 * Makefile.in: Merge with GCC and libgcj. 9922 (ALL_GCC_C, ALL_GCC_CXX): New macros. Use them as dependencies of 9923 configure-target-<library> when their configure scripts need the C 9924 or C++ library to have already been built to work properly. 9925 (do_proto_toplev): Set them to an empty string. 9926 99272000-11-18 Alexandre Oliva <aoliva@redhat.com> 9928 9929 * Makefile.in (HOST_LIB_PATH, TARGET_LIB_PATH): New macros. 9930 (REALLY_SET_LIB_PATH): Use them. 9931 99322000-11-06 Christopher Faylor <cgf@cygnus.com> 9933 9934 * config.sub: Add support for Sun Chorus 9935 99362000-11-02 Per Lundberg <plundis@chaosdev.org> 9937 9938 * config.sub: Add support for the *-storm-chaos OS. 9939 99402000-10-30 Stephane Carrez <stcarrez@worldnet.fr> 9941 9942 * configure.in (noconfigdirs): Don't compile some 9943 of the libraries for 68HC11 & 68hc12 targets. 9944 99452000-09-30 Alexandre Oliva <aoliva@redhat.com> 9946 9947 * ltconfig, ltmain.sh, libtool.m4: Updated from libtool 9948 multi-language branch, to work around Solaris' /bin/sh bug. Rebuilt 9949 all affected `configure' scripts. 9950 99512000-09-25 Alexandre Oliva <aoliva@redhat.com> 9952 9953 * Makefile.in (DEVO_SUPPORT): Added gettext.m4, libtool.m4 and 9954 ltcf-c.sh. 9955 99562000-09-12 Philip Blundell <philb@gnu.org> 9957 9958 * config.sub, config.guess: Update from subversions. 9959 99602000-09-06 Alexandre Oliva <aoliva@redhat.com> 9961 9962 * Makefile.in (all-zlib): Added dummy target. 9963 9964 * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh: Updated from libtool 9965 multi-language branch. 9966 99672000-09-05 Alexandre Oliva <aoliva@redhat.com> 9968 9969 * Makefile.in (all-bootstrap): Added all-texinfo and all-zlib. 9970 (bootstrap*): Depend on all-bootstrap. 9971 99722000-09-02 Alexandre Oliva <aoliva@redhat.com>, DJ Delorie <dj@redhat.com> 9973 9974 * configure.in (FLAGS_FOR_TARGET): Use -nostdinc even for Canadian 9975 crosses, but add gcc/include to the header search path for them. 9976 99772000-08-31 Alexandre Oliva <aoliva@redhat.com> 9978 9979 * ltconfig, ltmain.sh: Updated from libtool multi-language branch. 9980 * libtool.m4, ltcf-c.sh: Copied from libtool multi-language branch. 9981 * gettext.m4: New file, extracted from aclocal.m4. 9982 99832000-08-22 Alexandre Oliva <aoliva@redhat.com> 9984 9985 * config-ml.in (CC, CXX): Avoid trailing whitespace. 9986 (LD_LIBRARY_PATH, SHLIB_PATH): Adjust for multilibs and export to 9987 sub-configures. 9988 99892000-08-20 Doug Evans <dje@casey.transmeta.com> 9990 9991 * Makefile.in (ALL_MODULES): Add all-cgen. 9992 (CROSS_CHECK_MODULES,INSTALL_MODULES,CLEAN_MODULES): Similarily. 9993 (all-cgen): New target. 9994 (all-opcodes,all-sim): Depend on all-cgen. 9995 * configure.in (host_tools): Add cgen. 9996 Only configure cgen if --enable-cgen-maint. 9997 99982000-08-17 Alexandre Oliva <aoliva@redhat.com> 9999 10000 * config-ml.in (CC, CXX): Don't introduce a leading space. 10001 100022000-08-16 Alexandre Oliva <aoliva@redhat.com> 10003 10004 * configure.in (libstdcxx_flags): Use 10005 libstdc++-v3/src/libstdc++.INC. 10006 100072000-08-15 Alexandre Oliva <aoliva@redhat.com> 10008 10009 * configure.in (libstdcxx_flags): Use libstdc++-v3/src/INCLUDES. 10010 100112000-08-11 Jason Merrill <jason@redhat.com> 10012 10013 * configure.in (CC_FOR_TARGET, CHILL_FOR_TARGET, 10014 CXX_FOR_TARGET): Add -B$$r/gcc/ here. 10015 (FLAGS_FOR_TARGET): Not here. 10016 (CHILL_FOR_TARGET, CXX_FOR_TARGET): Don't check the list of languages. 10017 100182000-08-07 DJ Delorie <dj@redhat.com> 10019 10020 * configure.in (FLAGS_FOR_TARGET): invert test for xgcc, should mean 10021 "if we're also building gcc, and it's a gcc that will run on the 10022 build machine, we want to use its includes instead of the system's 10023 default includes". 10024 100252000-08-03 Alexandre Oliva <aoliva@redhat.com> 10026 10027 * configure.in (libstdcxx_flags): Don't use `"'. 10028 10029 * config-ml.in: Adjust multilib search paths to the 10030 appropriate multilib tree. 10031 100322000-08-02 Alexandre Oliva <aoliva@redhat.com> 10033 10034 * configure.in (CHILL_FOR_TARGET, CXX_FOR_TARGET): Convert blanks to 10035 commas in $LANGUAGES. 10036 100372000-08-01 Alexandre Oliva <aoliva@redhat.com> 10038 10039 * configure.in (qCXX_FOR_TARGET): Use echo instead of expr. 10040 100412000-07-31 Alexandre Oliva <aoliva@redhat.com> 10042 10043 * configure.in (qCXX_FOR_TARGET): Quote `&' characters in 10044 CXX_FOR_TARGET for sed. 10045 100462000-07-30 Alexandre Oliva <aoliva@redhat.com> 10047 10048 * configure.in (CC_FOR_TARGET, CHILL_FOR_TARGET, CXX_FOR_TARGET): 10049 Do not override if already set in the environment or in configure. 10050 Don't duplicate $(FLAGS_FOR_TARGET) if it already appears in them. 10051 (FLAGS_FOR_TARGET): Don't use host directories on Canadian crosses. 10052 100532000-07-27 Alexandre Oliva <aoliva@redhat.com> 10054 10055 * Makefile.in (FLAGS_FOR_TARGET): New macro. 10056 (GCC_FOR_TARGET): Use it. 10057 (CC_FOR_TARGET, CXX_FOR_TARGET, CHILL_FOR_TARGET): Now defined... 10058 * configure.in: ... here. 10059 (FLAGS_FOR_TARGET): Define. Add ld build dir to -L path. 10060 (libstdcxx_flags): Define and append to CXX_FOR_TARGET. 10061 100622000-07-24 Alexandre Oliva <aoliva@redhat.com> 10063 10064 * Makefile.in (configure-target-libf2c): Depend on $(ALL_GCC). 10065 (configure-target-libchill, configure-target-libobjc): Likewise. 10066 10067 * configure.in: Use the same cache file for all target libs. 10068 * config-ml.in: But different cache files per multilib variant. 10069 100702000-07-23 Michael Sokolov <msokolov@ivan.Harhan.ORG> 10071 10072 * configure (topsrcdir): Don't use dirname. 10073 100742000-07-20 Jason Merrill <jason@redhat.com> 10075 10076 * configure.in: Remove all references to libg++ and librx. 10077 10078 * configure, configure.in, Makefile.in: Unify gcc and binutils. 10079 100802000-07-20 Hans-Peter Nilsson <hp@axis.com> 10081 10082 * config.sub: Update to subversions version 2000-07-06. 10083 100842000-07-12 Andrew Haley <aph@cygnus.com> 10085 10086 * configure.in (host_makefile_frag): Use mh-ia64pic on IA-64 hosts. 10087 (target_makefile_frag): Use mt-ia64pic on IA-64 targets. 10088 100892000-07-07 Phil Edwards <pme@sourceware.cygnus.com> 10090 10091 * symlink-tree: Check number of arguments. 10092 100932000-06-06 Andrew Cagney <cagney@b1.cygnus.com> 10094 10095 * texinfo/texinfo.tex: Update to version 2000-05-28.15. 10096 100972000-07-05 Jim Wilson <wilson@cygnus.com> 10098 10099 * Makefile.in (CXX_FOR_TARGET): Add libstdc++ to the library 10100 search path for a g++ extracted from the build tree. This 10101 will allow link tests run by configure scripts in 10102 subdirectories to succeed. 10103 101042000-07-01 Koundinya K <kk@ddeorg.soft.net> 10105 10106 * ltconfig: Add support for mips-dde-sysv4.2MP 10107 101082000-06-28 Corinna Vinschen <vinschen@cygnus.com> 10109 10110 * ltconfig: Check for host_os beeing one of `cygwin', `mingw' or 10111 `os2'. Force ac_cv_exeext to be ".exe" in that case. 10112 101132000-06-19 Timothy Wall <twall@cygnus.com> 10114 10115 * configure.in (noconfigdirs): Set noconfigdirs for tic54x target. 10116 * config.sub: Add tic54x target. 10117 101182000-06-07 Phillip Thomas <pthomas@suse.de> 10119 10120 * README-maintainer-mode: New file: Contains notes on using 10121 --enable-maintainer-mode with binutils. 10122 101232000-05-29 Andrew Cagney <cagney@b1.cygnus.com> 10124 10125 * texinfo/texinfo.tex: Update. Version from makeinfo 4.0. 10126 101272000-05-30 Andrew Cagney <cagney@b1.cygnus.com> 10128 10129 * config.sub: Import CVS version 1.167 Tue May 30 09:00:07 2000. 10130 * config.guess: Import CVS version 1.148 Tue May 30 09:00:06 2000 10131 1013220000-05-21 H.J. Lu (hjl@gnu.org) 10133 10134 * Makefile.in (CC_FOR_TARGET): Make sure as/ld in the gcc 10135 directory are used if they exist. Make sure 10136 $(build_tooldir)/include is searched for header files, 10137 $(build_tooldir)/lib/ for library files. 10138 (GCC_FOR_TARGET): Likewise. 10139 (CXX_FOR_TARGET): Likewise. 10140 101412000-05-18 Jeffrey A Law (law@cygnus.com) 10142 10143 * configure.in (hppa*64*-*-*): Do build ld for this configuration. 10144 101452000-05-17 Alexandre Oliva <aoliva@cygnus.com> 10146 10147 * Makefile.in (configure-target-libiberty): Depend on 10148 configure-target-newlib. 10149 101502000-05-16 Alexandre Oliva <aoliva@cygnus.com> 10151 10152 * configure.in, Makefile.in: Merge all libffi-related 10153 configury stuff from the libgcj tree. 10154 101552000-05-16 Andrew Cagney <cagney@b1.cygnus.com> 10156 10157 Thu Apr 27 11:01:48 2000 Andrew Cagney <cagney@b1.cygnus.com>: 10158 * Makefile.in (do-tar-bz2, do-md5sum): Skip CVS directories. 10159 101602000-05-16 Andrew Cagney <cagney@b1.cygnus.com> 10161 10162 Wed Apr 26 17:03:53 2000 Andrew Cagney <cagney@b1.cygnus.com>: 10163 * Makefile.in (do-djunpack): New target. Update djunpack.bat with 10164 current version information. Add to proto-toplev directory. 10165 (gdb-taz): Build do-djunpack. 10166 101672000-05-15 David Edelsohn <edelsohn@gnu.org> 10168 10169 * configure.in: Special case powerpc*-*-aix* target_makefile_frag. 10170 101712000-05-13 Alexandre Oliva <oliva@lsd.ic.unicamp.br> 10172 10173 * ltmain.sh: Preserve in relink_command any environment 10174 variables that may affect the linker behavior. 10175 101762000-05-12 Jeffrey A Law (law@cygnus.com) 10177 10178 * config.sub (basic_machine): Recognize hppa64 as a valid cpu type. 10179 101802000-05-10 Jim Wilson <wilson@cygnus.com> 10181 10182 * configure.in (ia64*-*-elf*): Add gdb and friends to noconfigdirs. 10183 101842000-05-08 Eli Zaretskii <eliz@is.elta.co.il> 10185 10186 * djunpack.bat: Change the Sed script to replace @V@ in fnchange.lst 10187 with the version name. 10188 101892000-05-01 Benjamin Kosnik <bkoz@cygnus.com> 10190 10191 * config.if: Tweak. 10192 101932000-04-23 Eli Zaretskii <eliz@is.elta.co.il> 10194 10195 * djunpack.bat: New file. 10196 101972000-04-19 Andrew Cagney <cagney@b1.cygnus.com> 10198 10199 * Makefile.in (taz, gdb-taz, gas.tar.bz2, binutils.tar.bz2, 10200 gas+binutils.tar.bz2, libg++.tar.bz2, gnats.tar.bz2, gdb.tar.bz2, 10201 dejagnu.tar.bz2, gdb+dejagnu.tar.bz2, insight.tar.bz2, 10202 insight+dejagnu.tar.bz2, newlib.tar.bz2): Pass MD5PROG to sub-make. 10203 102042000-04-16 Dave Pitts <dpitts@cozx.com> 10205 10206 * config.sub (case $basic_machine): Change default for "ibm-*" 10207 to "openedition". 10208 102092000-04-12 Andrew Cagney <cagney@b1.cygnus.com> 10210 10211 * Makefile.in (gdb-taz): New target. GDB specific archive. 10212 (do-md5sum): New target. 10213 (MD5PROG): Define. 10214 (PACKAGE): Default to TOOL. 10215 (VER): Default to a shell script. 10216 (taz): Rewrite target. Move real work to do-proto-toplev. Include 10217 md5 checksum generation. 10218 (do-proto-toplev): New target. Create $(PACKAGE)-$(VER) link. 10219 (do-tar-bz2): Delete creation of $(PACKAGE)-$(VER) link. 10220 (gdb.tar.bz2, dejagnu.tar.bz2, gdb+dejagnu.tar.bz2, 10221 insight.tar.bz2): Use gdb-taz to create archive. 10222 102232000-04-07 Andrew Cagney <cagney@b1.cygnus.com> 10224 10225 * configure (warn_cflags): Delete. 10226 102272000-04-05 Benjamin Kosnik <bkoz@cygnus.com> 10228 Martin v. Loewis <martin@loewis.home.cs.tu-berlin.de> 10229 10230 * configure.in (enable_libstdcxx_v3): Add. 10231 (target_libs): Add bits here to switch between libstdc++-v2 and 10232 libstdc++-v3. 10233 * config.if: And this file too. 10234 * Makefile.in: Add libstdc++-v3 targets. 10235 102362000-04-05 Michael Meissner <meissner@redhat.com> 10237 10238 * config.sub (d30v): Add d30v as a basic machine type. 10239 102402000-03-29 Jason Merrill <jason@casey.cygnus.com> 10241 10242 * configure.in: -linux-gnu*, not -linux-gnu. 10243 102442000-03-03 Andrew Cagney <cagney@b1.cygnus.com> 10245 10246 * Makefile.in (taz): Set PACKAGE to TOOL when not defined. 10247 (do-tar-bz2): Replace TOOL with PACKAGE. 10248 (gdb.tar.bz2): Remove GDBTK from GDB package. 10249 (gdb+dejagnu.tar.bz2, insight.tar.bz2, insight+dejagnu.tar.bz2, 10250 dejagnu.tar.bz2): New packages. 10251 102522000-02-27 Andreas Jaeger <aj@suse.de> 10253 10254 * configure.in: Add entry for mips*-*-linux*, move catch all 10255 *-*-*linux* entry below this one. 10256 102572000-02-27 Ian Lance Taylor <ian@zembu.com> 10258 10259 * ltconfig, ltmain.sh: Update to libtool 1.3.4. 10260 102612000-02-24 Nick Clifton <nickc@cygnus.com> 10262 10263 * config.sub: Support an OS of "wince". 10264 102652000-02-24 Andrew Cagney <cagney@b1.cygnus.com> 10266 10267 * config.guess, config.sub: Updated to match config's 2000-02-15 10268 version. 10269 102702000-02-23 Linas Vepstas <linas@linas.org> 10271 10272 * config.sub: Add support for Linux/IBM 370. 10273 * configure.in: Likewise. 10274 102752000-02-22 Nick Clifton <nickc@cygnus.com> 10276 10277 * configure.in: Add mips-pe, sh-pe and arm-wince-pe targets. 10278 102792000-02-20 Christopher Faylor <cgf@cygnus.com> 10280 10281 * config.guess: Guess "cygwin" rather than "cygwin32". 10282 102832000-02-16 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> 10284 10285 * configure (gcc_version): When setting, narrow search to 10286 lines containing `version_string'. 10287 102882000-02-15 Denis Chertykov <denisc@overta.ru> 10289 10290 * config.sub: Add support for avr target. 10291 102922000-02-01 Hans-Peter Nilsson <hp@bitrange.com> 10293 10294 * config.sub: Add mmix-knuth-mmixware. 10295 102962000-01-27 Christopher Faylor <cgf@redhat.com> 10297 10298 * Makefile.in (CC_FOR_TARGET): Add new winsup directory 10299 structure stuff to -L library search. 10300 (CXX_FOR_TARGET): Ditto. 10301 (CROSS_CHECK_MODULES): Fix spelling mistake. 10302 103032000-01-24 Mark Mitchell <mark@codesourcery.com> 10304 10305 * Makefile.in (CXX_FOR_TARGET): Use g++, not xgcc, to invoke 10306 the C++ compiler. 10307 103082000-01-12 Richard Henderson <rth@cygnus.com> 10309 10310 * configure.in: Don't build some bits for beos. 10311 103122000-01-12 Joel Sherrill (joel@OARcorp.com) 10313 10314 * Makefile.in (CC_FOR_TARGET): Use newlib libraries as well 10315 as include files. 10316 103172000-01-06 Geoff Keating <geoffk@cygnus.com> 10318 10319 * configure.in: Use mt-aix43 to handle *_TARGET defs, 10320 not mh-aix43. 10321 103221999-12-14 Richard Henderson <rth@cygnus.com> 10323 10324 * config.guess (alpha-osf, alpha-linux): Detect ev67. 10325 * config.sub: Accept alphaev[78], alphaev8. 10326 103271999-12-03 Alexandre Oliva <oliva@lsd.ic.unicamp.br> 10328 10329 * config.guess, config.sub: Update from autoconf. 10330 10331Tue Nov 23 00:57:41 1999 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> 10332 10333 * config-ml.in (sparc*-*-*): Disable sparcv9 support if the 10334 necessary libraries are missing. 10335 103361999-10-25 Andreas Schwab <schwab@suse.de> 10337 10338 * configure: Fix quoting inside arguments of eval. 10339 103401999-10-21 Nick Clifton <nickc@cygnus.com> 10341 10342 * config-ml.in: Allow suppression of some ARM multilibs. 10343 10344Tue Sep 7 23:33:57 1999 Linas Vepstas <linas@linas.org> 10345 10346 * config.guess: Add OS/390 match pattern. 10347 * config.sub: Add mvs, openedition targets. 10348 * configure.in (i370-ibm-opened*): New. 10349 103501999-09-04 Steve Chamberlain <sac@pobox.com> 10351 10352 * config.sub: Add support for configuring for pj. 10353 103541999-08-31 Nick Clifton <nickc@cygnus.com> 10355 10356 * config.sub (maybe_os): Add support for configuring for fr30. 10357 103581999-08-25 Nick Clifton <nickc@cygnus.com> 10359 10360 * configure.in: Do not configure or build ld for AIX 10361 platforms. ld is known to be broken on these platforms. 10362 10363Wed Aug 25 01:12:25 1999 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> 10364 10365 * config-ml.in: Pass compiler flag corresponding to multidirs to 10366 subdir configures. 10367 103681999-08-09 Ian Lance Taylor <ian@zembu.com> 10369 10370 * Makefile.in (LDFLAGS): Define. 10371 103721999-08-08 Mumit Khan <khan@xraylith.wisc.edu> 10373 10374 * configure.in (i[3456]-*-mingw32*): Don't put gprof in 10375 noconfigdirs. 10376 (*-*-cygwin*): Likewise. 10377 103781999-08-08 Ian Lance Taylor <ian@zembu.com> 10379 10380 * mkdep: New file. 10381 * Makefile.in (GAS_SUPPORT_DIRS): Add mkdep. 10382 (BINUTILS_SUPPORT_DIRS): Add mkdep. 10383 10384 From Eli Zaretskii <eliz@is.elta.co.il>: 10385 * configure (tmpfile): Change cONf$$ to cNf$$ to avoid an overly 10386 long file name when using DJGPP on MS-DOS. 10387 10388Wed Aug 4 02:07:14 1999 Jeffrey A Law (law@cygnus.com) 10389 10390 * config.sub (vxworks case): Use os=-vxworks, not os=vxworks. 10391 103921999-07-30 Alan Modra <alan@spri.levels.unisa.edu.au> 10393 10394 * Makefile.in (check-target-libio): Remove all-target-libstdc++ 10395 dependency as this causes "make check" to globally "make all" 10396 10397Tue Jun 22 23:45:18 1999 Tom Tromey <tromey@cygnus.com> 10398 10399 * configure.in (target_libs): Added target-zlib. 10400 * Makefile.in (ALL_TARGET_MODULES): Added zlib. 10401 (CONFIGURE_TARGET_MODULES): Likewise. 10402 (CHECK_TARGET_MODULES): Likewise. 10403 (INSTALL_TARGET_MODULES): Likewise. 10404 (CLEAN_TARGET_MODULES): Likewise. 10405 (configure-target-zlib): New target. 10406 (all-target-zlib): Likewise. 10407 (all-target-libjava): Depend on all-target-zlib. 10408 (configure-target-libjava): Depend on configure-target-zlib. 10409 10410 * Makefile.in (configure-target-libjava): Depend on 10411 configure-target-newlib. 10412 (configure-target-boehm-gc): New target. 10413 (configure-target-qthreads): New target. 10414 10415 * configure.in (target_libs): Added target-qthreads. 10416 * Makefile.in (ALL_TARGET_MODULES): Added qthreads. 10417 (CONFIGURE_TARGET_MODULES): Likewise. 10418 (CHECK_TARGET_MODULES): Likewise. 10419 (INSTALL_TARGET_MODULES): Likewise. 10420 (CLEAN_TARGET_MODULES): Likewise. 10421 (all-target-qthreads): New target. 10422 (configure-target-libjava): Depend on configure-target-qthreads. 10423 (all-target-libjava): Depend on all-target-qthreads. 10424 10425 * Makefile.in (ALL_TARGET_MODULES): Added libjava, boehm-gc. 10426 (CONFIGURE_TARGET_MODULES): Likewise. 10427 (CHECK_TARGET_MODULES): Likewise. 10428 (INSTALL_TARGET_MODULES): Likewise. 10429 (CLEAN_TARGET_MODULES): Likewise. 10430 (all-target-libjava): New target. 10431 (all-target-boehm-gc): Likewise. 10432 * configure.in (target_libs): Added libjava, boehm-gc. 10433 104341999-07-22 Ian Lance Taylor <ian@zembu.com> 10435 10436 * Makefile.in (binutils.tar.bz2): Don't pass makeall.bat and 10437 configure.bat in SUPPORT_FILES. 10438 (gas+binutils.tar.bz2): Likewise. 10439 10440 * makeall.bat: Remove; obsolete. 10441 104421999-07-21 Ian Lance Taylor <ian@zembu.com> 10443 10444 From Mark Elbrecht: 10445 * configure.bat: Remove; obsolete. 10446 104471999-07-11 Ian Lance Taylor <ian@zembu.com> 10448 10449 * configure: Add -W -Wall to the default CFLAGS when compiling with 10450 gcc. 10451 10452Thu Jul 8 12:32:23 1999 John David Anglin <dave@hiauly1.hia.nrc.ca> 10453 10454 * configure.in: Build ld, binutils & gas for hppa*-*-linux-gnu*. 10455 104561999-06-30 Mark Mitchell <mark@codesourcery.com> 10457 10458 * configure.in: Build ld on IRIX6. 10459 104601999-06-12 Ian Lance Taylor <ian@zembu.com> 10461 10462 * Makefile.in: Change distribution targets to use bzip2 instead of 10463 gzip. 10464 (TEXINFO_SUPPORT): Set to just texinfo/texinfo.tex. 10465 (taz): Don't use texinfo/gpl.texinfo or texinfo/lgpl.texinfo. 10466 104671999-06-04 Nick Clifton <nickc@cygnus.com> 10468 10469 * config.sub: Add mcore target. 10470 104711999-05-30 Cort Dougan <cort@cs.nmt.edu> 10472 10473 * config.guess (ppc-*-linux-gnu): Also use ld emul elf32ppclinux. 10474 104751999-05-25 H.J. Lu (hjl@gnu.org) 10476 10477 * config.guess (dummy): Changed to $dummy. 10478 104791999-05-24 Nick Clifton <nickc@cygnus.com> 10480 10481 * config.sub: Tidied up case statements. 10482 104831999-05-22 Ben Elliston <bje@cygnus.com> 10484 10485 * config.guess: Handle NEC UX/4800. Contributed by Jiro Takabatake 10486 <jiro@din.or.jp>. 10487 10488 * config.guess: Merge with FSF version. Future changes will be 10489 more accurately recorded in this ChangeLog. 10490 * config.sub: Likewise. 10491 104921999-05-20 Stephen L Moshier <moshier@world.std.com> 10493 10494 * Makefile.in (GCC_FOR_TARGET): Add -I$(build_tooldir)/include. 10495 104961999-04-30 Tom Tromey <tromey@cygnus.com> 10497 10498 * ltmain.sh: [mode link] Always use CC given by ltconfig. 10499 105001999-04-23 Tom Tromey <tromey@cygnus.com> 10501 10502 * ltconfig, ltmain.sh: Update to libtool 1.2f. 10503 105041999-04-20 Drew Moseley <dmoseley@cygnus.com> 10505 10506 * configure.in (noconfigdirs): Don't build libstub for arm-elf targets. 10507 (noconfigdirs): Don't build any bsp stuff for for arm-oabi targets. 10508 Bad merge removed these two changes. 10509 10510Tue Apr 13 22:50:54 1999 Donn Terry (donn@interix.com) 10511 Martin Heller (Ing.-Buero_Heller@t-online.de) 10512 10513 * config.guess (interix Alpha): Add. 10514 105151999-04-11 Richard Henderson <rth@cygnus.com> 10516 10517 * configure.in (i?86-*-beos*): Do config gperf; don't config 10518 gdb, newlib, or libgloss. 10519 105201999-04-11 Alexandre Oliva <oliva@dcc.unicamp.br> 10521 10522 * config-ml.in: On mips*-*-*, if multidirs contains mabi=64, try to 10523 link a trivial program with -mabi=64. If it fails, remove mabi=64 10524 from multidirs. 10525 105261999-04-10 Philipp Thomas (kthomas@gwdg.de) 10527 10528 * config.sub: Set basic_machine to i586 when target_alias = k6-*. 10529 105301999-04-08 Nick Clifton <nickc@cygnus.com> 10531 10532 * config.sub: Add support for mcore targets. 10533 105341999-04-07 Michael Meissner <meissner@cygnus.com> 10535 10536 * configure.in (d30v-*): Use config/mt-d30v as makefile fragment, 10537 not mt-ospace, in order to shut up assembler warning about using 10538 symbols that are named the same as registers. 10539 105401999-04-07 Drew Moseley <dmoseley@cygnus.com> 10541 10542 * Makefile.in (all-target-cygmon): Added all-target-bsp to the 10543 dependency list for all-target-cygmon. 10544 105451999-04-05 Doug Evans <devans@casey.cygnus.com> 10546 10547 * config-ml.in: Check $host, not $target, for selective multilibs. 10548 (arm-*-*): Allow disabling of biendian, h/w fp, 26 bit apcs, 10549 thumb interworking, and underscore prefix multilibs. 10550 105511999-04-04 Ian Lance Taylor <ian@zembu.com> 10552 10553 * missing: Update to version from current automake. 10554 10555Fri Apr 2 15:11:32 1999 H.J. Lu (hjl@gnu.org) 10556 10557 * configure (gxx_include_dir): Removed. 10558 10559 * configure.in (gxx_include_dir): Handle it. 10560 * Makefile.in: Likewise. 10561 105621999-03-29 Gavin Romig-Koch <gavin@cygnus.com> 10563 10564 * config.sub (mips64vr4111,mips64vr4111el) Add. 10565 105661999-03-21 Ben Elliston <bje@cygnus.com> 10567 10568 * config.guess: Correct typo for detecting ELF on FreeBSD. 10569 10570Thu Mar 18 00:17:50 1999 Mark Elbrecht <snowball3@usa.net> 10571 10572 * configure.in (pc-msdosdjgpp): Set host_makefile_frag to 10573 config/mh-djgpp. 10574 10575Thu Mar 11 18:37:23 1999 Drew Moseley <dmoseley@cygnus.com> 10576 10577 * Makefile.in (all-target-bsp): Added all-gcc all-binutils and 10578 all-target-newlib to dependency list for all-target-bsp. 10579 10580Thu Mar 11 01:19:31 1999 Mumit Khan <khan@xraylith.wisc.edu> 10581 10582 * config.sub: Add i386-uwin support. 10583 * config.guess: Likewise. 10584 10585Thu Mar 11 01:07:55 1999 Franz Sirl <Franz.Sirl-kernel@lauterbach.com> 10586 10587 * configure.in: cleanup, add mh-*pic handling for arm, special 10588 case powerpc*-*-aix* 10589 10590Wed Mar 10 18:35:07 1999 Jeff Johnston <jjohnstn@cygnus.com> 10591 10592 * configure.in (noconfigdirs): Removed target-libgloss so libnosys.a 10593 can be built. 10594 10595Wed Mar 10 17:39:09 1999 Drew Moseley <dmoseley@cygnus.com> 10596 10597 * configure.in: Added bsp support to arm-*-coff and arm-*-elf 10598 targets. 10599 106001999-03-02 Nick Clifton <nickc@cygnus.com> 10601 10602 * config.sub: Rename CYGNUS LOCAL to EGCS LOCAL 10603 106041999-02-28 Geoffrey Noer <noer@cygnus.com> 10605 10606 * config.sub: Check for "cygwin*" rather than "cygwin32*" 10607 106081999-02-24 Nick Clifton <nickc@cygnus.com> 10609 10610 * config.sub: Fix typo in arm recognition. 10611 106121999-02-24 Drew Moseley <dmoseley@cygnus.com> 10613 10614 * configure.in (noconfigdirs): Changed target_configdirs to 10615 include target-bsp only for m68k-*-elf* and m68k-*-coff* 10616 rather than m68k-*-* since it is not known to work on 10617 m68k-aout. Ditto for arm-*-*oabi. 10618 106191999-02-24 Stan Shebs <shebs@andros.cygnus.com> 10620 10621 * configure.in (*-*-windows*): Remove, no longer used. 10622 106231999-02-19 Ben Elliston <bje@cygnus.com> 10624 10625 * config.guess: Automatically recognise ELF on FreeBSD. From Niall 10626 Smart and improved by Andrew Cagney. 10627 106281999-02-18 Marc Espie <espie@cvs.openbsd.org> 10629 10630 * config.guess: Recognize openbsd-*-hppa. 10631 106321999-02-17 H.J. Lu (hjl@gnu.org) 10633 10634 * Makefile.in (REALLY_SET_LIB_PATH): Append $$$(RPATH_ENVVAR) 10635 only if it is not empty. 10636 106371999-02-17 Nick Clifton <nickc@cygnus.com> 10638 10639 Patch from: Scott Bambrough <scottb@corelcomputer.com> 10640 10641 * config.guess: Modified to recognize uname's armv* syntax. 10642 10643 * config.sub: Modified to recognize uname's armv* syntax. 10644 106451999-02-17 Mark Salter <msalter@cygnus.com> 10646 10647 * configure.in: Added target-bsp for sparclite. 10648 106491999-02-08 Richard Henderson <rth@cygnus.com> 10650 10651 * config.sub: Recognize alphapca5[67] and up to alphaev8. 10652 106531999-02-08 Nick Clifton <nickc@cygnus.com> 10654 10655 * configure.in: Add support for strongarm port. 10656 * config.sub: Add support for strongarm target. 10657 106581999-02-07 Mumit Khan <khan@xraylith.wisc.edu> 10659 10660 * configure.in (*-*-cygwin32*): Use config/mh-cygwin instead of 10661 the old name config/mh-cygwin32. 10662 Enable texinfo. 10663 106641999-02-04 Ian Lance Taylor <ian@cygnus.com> 10665 10666 * configure.in: Do build ld for ix86 Solaris. 10667 106681999-02-02 Jim Wilson <wilson@cygnus.com> 10669 10670 * Makefile.in (EXTRA_GCC_FLAGS): Set AR to $AR instead of 10671 $AR_FOR_TARGET. Likewise for RANLIB. 10672 106731999-02-02 Catherine Moore <clm@cygnus.com> 10674 10675 * config.sub (oabi): Recognize. 10676 * configure.in (arm-*-oabi): Handle. 10677 106781999-01-30 Robert Lipe (robertlipe@usa.net) 10679 10680 * config.guess: Improve detection of i686 on UnixWare 7. 10681 106821999-01-30 Mumit Khan <khan@xraylith.wisc.edu> 10683 10684 * config.guess: Add support for i386-pc-interix. 10685 * config.sub: Likewise. 10686 * configure.in: Likewise. 10687 106881999-01-18 Christopher Faylor <cgf@cygnus.com> 10689 10690 * Makefile.in: Remove unneeded all-target-libio from 10691 from all-target-winsup target since it is now unneeded. 10692 Add all-target-libtermcap in its place since it is now 10693 needed. 10694 106951998-12-30 Christopher Faylor <cgf@cygnus.com> 10696 10697 * configure.in: makefile stub for cygwin target is probably 10698 unnecessary. Remove it for now. 10699 107001998-12-30 Christopher Faylor <cgf@cygnus.com> 10701 10702 * configure.in: libtermcap.a should be built when cygwin is the 10703 target as well as the host. 10704 * config.guess: Allow mixed case in cygwin uname output. 10705 * Makefile.in: Add libtermcap target. 10706 107071998-12-23 Jeffrey A Law (law@cygnus.com) 10708 10709 * config.sub: Clean up handling of hppa2.0. 10710 107111998-12-22 Rodney Brown (rodneybrown@pmsc.com) 10712 10713 * config.guess: Use C code to identify more HP machines. 10714 10715Thu Dec 17 01:22:30 1998 Jeffrey A Law (law@cygnus.com) 10716 10717 * config.sub: Handle hppa2.0. 10718 10719Tue Dec 15 17:02:58 1998 Bob Manson <manson@charmed.cygnus.com> 10720 10721 * configure.in: Add cygmon for x86-coff and x86-elf. Configure 10722 cygmon for all sparclite targets, regardless of object format. 10723 107241998-12-15 Mark Salter <msalter@cygnus.com> 10725 10726 * configure.in: Added target-bsp for several target architectures. 10727 10728 * Makefile.in: Added rules for bsp. 10729 10730Fri Dec 4 01:34:02 1998 Jeffrey A Law (law@cygnus.com) 10731 10732 * config.guess: Improve detection of hppa2.0 processors. 10733 10734Fri Dec 4 01:33:05 1998 Niall Smart <nialls@euristix.ie> 10735 10736 * config.guess: Recognize FreeBSD using ELF automatically. 10737 107381998-11-26 Manfred Hollstein <manfred@s-direktnet.de> 10739 10740 * configure (skip-this-dir): Add handling for new shell script, which 10741 might be created by a sub-directory's configure to indicate, this particular 10742 directory is "unwanted". 10743 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): Likewise. 10744 10745Wed Nov 18 18:28:45 1998 Geoffrey Noer <noer@cygnus.com> 10746 10747 * ltconfig: import from libtool, after changing libtool to 10748 account for the cygwin name change. 10749 10750Wed Nov 18 18:09:14 1998 Geoffrey Noer <noer@cygnus.com> 10751 10752 * Makefile.in: CC_FOR_TARGET and CXX_FOR_TARGET should also 10753 include newlib/libc/sys/cygwin and newlib/libc/sys/cygwin32. 10754 10755Wed Nov 18 20:13:29 1998 Christopher Faylor <cgf@cygnus.com> 10756 10757 * configure.in: Add libtermcap to list of cygwin dependencies. 10758 107591998-11-17 Geoffrey Noer <noer@cygnus.com> 10760 10761 * Makefile.in: modify CC_FOR_TARGET and CXX_FOR_TARGET so that 10762 they include winsup/include when it's a cygwin target. 10763 107641998-11-12 Tom Tromey <tromey@cygnus.com> 10765 10766 * configure.in (host_tools): Added zip. 10767 * Makefile.in (all-target-libjava): Depend on all-zip. 10768 (all-zip): New target. 10769 (ALL_MODULES): Added all-zip. 10770 (NATIVE_CHECK_MODULES): Added check-zip. 10771 (INSTALL_MODULES): Added install-zip. 10772 (CLEAN_MODULES): Added clean-zip. 10773 107741998-11-12 Geoffrey Noer <noer@cygnus.com> 10775 10776 * Makefile.in: lose "32" from comment about cygwin. 10777 107781998-11-05 Nick Clifton <nickc@cygnus.com> 10779 10780 * configure.in: Use -Os to build target libraries for the fr30. 10781 107821998-11-04 Dave Brolley <brolley@cygnus.com> 10783 10784 * config.sub: Add fr30. 10785 107861998-11-02 Geoffrey Noer <noer@cygnus.com> 10787 10788 * configure.in: drop "32" from config/mh-cygwin32. Check 10789 cygwin* instead of cygwin32*. 10790 * config.sub: Check cygwin* instead of cygwin32*. 10791 107921998-10-22 Robert Lipe <robertl@dgii.com> 10793 10794 * config.guess: Match any version of Unixware7. 10795 107961998-10-20 Syd Polk <spolk@cygnus.com> 10797 10798 * Makefile.in configure.in: Add the ability to use tcl8.1 and tk8.1 10799 if desired. 10800 108011998-10-18 Jeffrey A Law (law@cygnus.com) 10802 10803 * config.if (cxx_interface, libstdcxx_interface): Do not try to set 10804 these if the appropriate directories and files to not exist. 10805 108061998-10-14 Jeffrey A Law (law@cygnus.com) 10807 10808 * Makefile.in (DEVO_SUPPORT): Add config.if. 10809 108101998-10-13 Manfred Hollstein <manfred@s-direktnet.de> 10811 10812 * configure: Add pattern to replace "build_tooldir"'s 10813 definition in the generated Makefile with "tooldir"'s 10814 actual value. 10815 10816Tue Oct 13 09:17:06 1998 Jeffrey A Law (law@cygnus.com) 10817 10818 * config.sub: Bring back lost sparcv9. 10819 10820 * Makefile.in (all-snvavigator): Remove all-flexlm dependency. 10821 10822Mon Oct 12 12:09:44 1998 Jeffrey A Law (law@cygnus.com) 10823 10824 * Makefile.in (CHILL_FOR_TARGET): Mirror recent changes to 10825 CC_FOR_TARGET and friends. 10826 10827Mon Oct 12 12:09:30 1998 Alexandre Oliva <oliva@dcc.unicamp.br> 10828 10829 * Makefile.in (build_tooldir): New variable, same as tooldir. 10830 (CC_FOR_TARGET, GCC_FOR_TARGET, CXX_FOR_TARGET): Add 10831 -B$(build_tooldir)/bin/. 10832 (BASE_FLAGS_TO_PASS): Pass build_tooldir down. 10833 10834Wed Sep 30 22:20:50 1998 Robert Lipe <robertl@dgii.com> 10835 10836 * config.sub: Add support for i[34567]86-pc-udk. 10837 * configure.in: Likewise. 10838 10839Wed Sep 30 19:23:48 1998 Geoffrey Noer <noer@cygnus.com> 10840 10841 * Makefile.in: add bzip2 package building bits for user 10842 tools module 10843 * configure.in: ditto 10844 10845Wed Sep 30 03:00:05 1998 Jeffrey A Law (law@cygnus.com) 10846 10847 * Makefile.in (TARGET_CONFIGDIRS): Add libobjc. 10848 (ALL_TARGET_MODULES): Add all-target-libobjc. 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 108541998-09-30 Manfred Hollstein <manfred@s-direktnet.de> 10855 10856 * configure.in (target_subdir): Remove duplicate line. 10857 10858Tue Sep 29 22:45:41 1998 Felix Lee <flee@cygnus.com> 10859 10860 * Makefile.in (all-automake): fix dependencies. 10861 10862Mon Sep 28 04:04:27 1998 Jeffrey A Law (law@cygnus.com) 10863 10864 * configure.in: Minor cleanups for building in the $(target_alias) 10865 subdir. 10866 108671998-09-22 Jim Wilson <wilson@cygnus.com> 10868 10869 * Makefile.in (bootstrap): Set r and s before make all. Use 10870 BASE_FLAGS_TO_PASS in make all. 10871 (cross): Likewise. 10872 108731998-09-20 Mark Mitchell <mark@markmitchell.com> 10874 10875 * Makefile.in (bootstrap): Pass TARGET_FLAGS_TO_PASS to `make all'. 10876 10877Sun Sep 20 00:13:02 1998 Richard Henderson <rth@cygnus.com> 10878 10879 * config.sub: Fix typo in last change. 10880 108811998-09-19 Michael Hayes <m.hayes@elec.canterbury.ac.nz> 10882 10883 * config.sub: Add support for C4x target. 10884 * configure.in: Likewise. 10885 108861998-09-13 David S. Miller <davem@pierdol.cobaltmicro.com> 10887 10888 * config.sub: Recognize sparcv9 just like sparc64. 10889 10890Wed Sep 9 15:44:52 1998 Robert Lipe <robertl@dgii.com> 10891 10892 * config.guess: Match "Pent II" or "PentII" for OpenServer. 10893 10894Tue Sep 8 01:18:39 1998 Jeffrey A Law (law@cygnus.com) 10895 10896 * config.guess: Correctly identify Pentium II sco boxes. 10897 10898 * config.guess: Fix "tr" code. From Weiwen Liu. 10899 10900Sat Sep 5 13:56:52 1998 John Hughes <john@Calva.COM> 10901 10902 * configure.in: Do not assume x86-svr4 or x86-unixware can handle 10903 stabs. 10904 10905Sat Sep 5 02:12:02 1998 Jeffrey A Law (law@cygnus.com) 10906 10907 * Makefile.in (TARGET_CONFIGDIRS): Add libchill. 10908 (ALL_TARGET_MODULES): Add all-target-libchill. 10909 (CONFIGURE_TARGET_MODULES, CHECK_TARGET_MODULES): Similarly. 10910 (INSTALL_TARGET_MODULES, CLEAN_TARGET_MODULES): Similarly. 10911 (all-target-libchill): Add dependencies. 10912 * configure.in (target_libs): Add libchill. 10913 10914Sun Aug 30 22:27:02 1998 Lutz Wohlrab <lutz.wohlrab@informatik.tu-chemnitz.de> 10915 10916 * config.guess: Avoid assumptions about "tr" behaves when 10917 LANG is set to something other than English. 10918 10919Sun Aug 30 22:14:44 1998 H.J. Lu (hjl@gnu.org) 10920 10921 * configure (gxx_include_dir): Changed to 10922 '${prefix}/include/g++'-${libstdcxx_interface}. 10923 10924 * config.if: New to determine the interfaces. 10925 10926Sun Aug 30 21:15:19 1998 Mark Klein (mklein@dis.com) 10927 10928 * config.guess: Detect and handle MPE/IX. 10929 * config.sub: Deal with MPE/IX. 10930 10931Sat Aug 29 14:32:55 1998 David Edelsohn <edelsohn@mhpcc.edu> 10932 10933 * configure.in: Use mh-aix43. 10934 109351998-07-29 Manfred Hollstein <manfred@s-direktnet.de> 10936 10937 * configure: Fix --without/--disable cases for gxx-include-dir. 10938 10939Fri Aug 28 12:28:26 1998 Per Bothner <bothner@cygnus.com> 10940 10941 * mdata-sh: Imported. Needed for automake support. 10942 10943Thu Aug 13 12:49:29 1998 H.J. Lu <hjl@gnu.org> 10944 10945 * Makefile.in (taz): Try "chmod -R og=u ." before 10946 "chmod og=u `find . -print`". 10947 10948Fri Jul 31 09:38:33 1998 Catherine Moore <clm@cygnus.com> 10949 10950 * configure.in: Add arm-elf and thumb-elf support. 10951 10952Mon Jul 27 16:23:58 1998 Doug Evans <devans@canuck.cygnus.com> 10953 10954 * Makefile.in: Undo previous patch. 10955 10956Fri Jul 24 19:55:24 1998 Doug Evans <devans@canuck.cygnus.com> 10957 10958 * Makefile.in (INSTALL_TARGET): Move EXTRA_TARGET_HOST_INSTALL_MODULES 10959 to here ... 10960 (install-no-fixedincludes): and here 10961 (INSTALL_MODULES): ... from here. 10962 10963Fri Jul 24 17:01:42 1998 Ian Lance Taylor <ian@cygnus.com> 10964 10965 * config.sub: Merge with FSF. 10966 10967 * config.guess: Merge with FSF. 10968 10969Fri Jul 24 08:43:36 1998 Doug Evans <devans@canuck.cygnus.com> 10970 10971 * configure (extraconfigdirs): New variable. 10972 (SUBDIRS): Add extraconfigdirs and recurse on them too. 10973 * Makefile.in (all): Move higher in file. 10974 (EXTRA_TARGET_HOST_ALL_MODULES): New variable. 10975 (EXTRA_TARGET_HOST_{INSTALL,CHECK}_MODULES): New variables. 10976 (ALL_MODULES): Add EXTRA_TARGET_HOST_ALL_MODULES. 10977 (CROSS_CHECK_MODULES): Add EXTRA_TARGET_HOST_CHECK_MODULES. 10978 (INSTALL_MODULES): Add EXTRA_TARGET_HOST_INSTALL_MODULES. 10979 109801998-07-23 Brendan Kehoe <brendan@cygnus.com> 10981 10982 * Makefile.in (all-target-libjava): Depend on all-gcc and 10983 all-target-newlib. 10984 (configure-target-libjava): Depend on $(ALL_GCC). 10985 10986Sat Jul 18 14:32:43 CDT 1998 Robert Lipe <robertl@dgii.com> 10987 10988 * config.guess: (*-pc-sco3.2v5) Add detection for Pentium II. 10989 (*-pc-unixware7) Add detection for Pentium II, Pentium Pro. 10990 10991Fri Jul 17 13:30:18 1998 Ian Lance Taylor <ian@cygnus.com> 10992 10993 * ylwrap: Change absolute path checks to check for DOS style path 10994 names. 10995 10996 * ylwrap: Don't use a full path name if the source file is in the 10997 same directory. From hjl@lucon.org (H.J. Lu). 10998 10999 * config-ml.in: Default to being verbose, to match Feb 18 change to 11000 configure. 11001 11002Thu Jul 16 12:29:51 1998 Ian Lance Taylor <ian@cygnus.com> 11003 11004 Brought over from egcs: 11005 11006 Sat Jun 27 22:46:32 1998 Jeffrey A Law (law@cygnus.com) 11007 11008 * configure.in (target_subdir): Set to ${target_alias} instead 11009 of "libraries". 11010 11011 Mon Sep 1 16:45:44 1997 Jim Wilson <wilson@cygnus.com> 11012 11013 * configure.in (target_subdir): Set to libraries if enable_multilib. 11014 11015Wed Jul 15 01:00:54 1998 Ian Lance Taylor <ian@cygnus.com> 11016 11017 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): If there are any 11018 multilibs, force reconfiguration the first time we create 11019 multilib.out in a subdirectory, in case TARGET_SUBDIR is `.'. 11020 11021Tue Jul 14 23:41:03 1998 Ian Lance Taylor <ian@cygnus.com> 11022 11023 * configure.in: Strip any --no option from CONFIG_ARGUMENTS, to 11024 avoid confusion with --no-recursion. 11025 11026Tue Jul 14 15:37:41 1998 Geoffrey Noer <noer@cygnus.com> 11027 11028 * configure.in: Win32 hosts shouldn't use install -x 11029 * install-sh: remove -x option, and special .exe-handling 11030 hack. 11031 11032Tue Jul 14 15:28:41 1998 Richard Henderson <rth@cygnus.com> 11033 11034 * config.guess: Recognize i586-pc-beos. 11035 * configure.in: Don't build some bits for beos. 11036 11037Tue Jul 14 13:22:18 1998 Ian Lance Taylor <ian@cygnus.com> 11038 11039 * configure: If CC is set but CFLAGS is not, and CC is gcc, make 11040 CFLAGS default to -O2. 11041 11042 * ltmain.sh: Add some hacks to make SunOS --enable-shared work 11043 when using GNU ld. 11044 11045Fri Jul 10 13:18:23 1998 Ian Lance Taylor <ian@cygnus.com> 11046 11047 * ltmain.sh: Correct install when using a different shell. 11048 11049Tue Jul 7 15:24:38 1998 Ian Lance Taylor <ian@cygnus.com> 11050 11051 * ltconfig, ltmain.sh: Update to libtool 1.2b. 11052 11053Thu Jul 2 13:57:36 1998 Klaus Kaempf <kkaempf@rmi.de> 11054 11055 * makefile.vms: Update to build binutils/makefile.vms. Add install 11056 target. 11057 11058Wed Jul 1 16:45:21 1998 Ian Lance Taylor <ian@cygnus.com> 11059 11060 * ltconfig: Update to correct AIX handling. 11061 11062Sat Jun 27 22:46:32 1998 Jeffrey A Law (law@cygnus.com) 11063 11064 * Makefile.in (BASE_FLAGS_TO_PASS): Add TARGET_SUBDIR. 11065 11066 * configure.in (target_subdir): Set to ${target_alias} instead 11067 of "libraries". 11068 110691998-06-26 Manfred Hollstein <manfred@s-direktnet.de> 11070 11071 * Makefile.in (BASE_FLAGS_TO_PASS): Add gcc_version_trigger. 11072 (Makefile): Depend on $(gcc_version_trigger). 11073 11074 * configure (gcc_version): Change default initializer to empty 11075 string. 11076 (gcc_version_trigger): New variable; pass this variable down 11077 to subdir configures to enable them checking gcc's version 11078 themselves. Emit make macros for both gcc_version vars. 11079 (topsrcdir): Initialize reliably. 11080 (recursion line): Remove --with-gcc-version=${gcc_version}. 11081 110821998-06-24 Manfred Hollstein <manfred@s-direktnet.de> 11083 11084 * configure (enable_version_specific_runtime_libs): Implement new flag 11085 --enable-version-specific-runtime-libs which installs C++ runtime stuff 11086 in $(libsubdir); emit definition in each generated Makefile. 11087 (gxx_include_dir): Initialize depending on 11088 $enable_version_specific_runtime_libs. 11089 110901998-06-24 Manfred Hollstein <manfred@s-direktnet.de> 11091 11092 * configure (gcc_version): Initialize properly depending on 11093 how and where configure is started. 11094 (recursion line): Pass a --with-gcc-version=${gcc_version} 11095 to configures in subdirs. 11096 11097Wed Jun 24 16:01:59 1998 John Metzler <jmetzler@cygnus.com> 11098 11099 * configure.in (noconfigdirs): Add configure pattern for mips tx39 11100 cygmon 11101 11102Tue Jun 23 22:42:32 1998 Mark Alexander <marka@cygnus.com> 11103 11104 * configure.in: Add cygmon and libstub support for mn10200. 11105 111061998-06-19 Manfred Hollstein <manfred@s-direktnet.de> 11107 11108 * configure (gcc_version): Add new variable describing the 11109 particular gcc version we're building. 11110 * Makefile.in (libsubdir): Add new macro for the directory 11111 in which the compiler finds executables, libraries, etc. 11112 (BASE_FLAGS_TO_PASS): Pass down gcc_version, target_alias 11113 and libsubdir. 11114 11115Fri Jun 19 02:36:59 1998 Alexandre Oliva <oliva@dcc.unicamp.br> 11116 11117 * Makefile.in (local-clean): Remove *.log. 11118 (warning.log): Built with warn_summary from build.log. 11119 (mail-report.log): Run test_summary. 11120 (mail-report-with-warnings.log): Run test_summary including 11121 warning.log in the report. 11122 11123Thu Jun 18 11:26:03 1998 Robert Lipe <robertl@dgii.com> 11124 11125 * config.guess: Detection of Pentium II for *-sco-3.2v5*. 11126 11127Mon Jun 15 14:53:54 1998 Andrew Cagney <cagney@b1.cygnus.com> 11128 11129 * Makefile.in (grep): Grep no longer depends on libiberty. 11130 11131Fri Jun 12 14:03:34 1998 Syd Polk <spolk@cygnus.com> 11132 11133 * Makefile.in: all-snavigator needs all-libgui. 11134 11135Thu Jun 11 19:43:47 1998 Mark Alexander <marka@cygnus.com> 11136 11137 * configure.in: Add cygmon and libstub support for mn10300. 11138 11139Wed Jun 10 11:19:47 1998 Ian Lance Taylor <ian@cygnus.com> 11140 11141 * missing: Update to version from automake 1.3. 11142 11143 * ltmain.sh: On installation, don't get confused if the same name 11144 appears more than once in the list of library names. 11145 11146Wed Jun 3 14:51:42 1998 Ian Lance Taylor <ian@cygnus.com> 11147 11148 * config.sub: Accept m68060 and m5200 as CPU names. 11149 11150Mon Jun 1 17:25:16 1998 Ian Lance Taylor <ian@cygnus.com> 11151 11152 * configure: Use && rather than using -a in test, because odd 11153 strings can confuse test. 11154 * configure.in: Likewise. 11155 11156Thu May 28 19:31:13 1998 Ian Lance Taylor <ian@cygnus.com> 11157 11158 * ltconfig, ltmain.sh: Bring in Visual C++ support. 11159 11160Sat May 23 23:44:13 1998 Alexandre Oliva <oliva@dcc.unicamp.br> 11161 11162 * Makefile.in (boostrap2-lean, bootstrap3-lean, 11163 bootstrap4-lean): New targets. 11164 11165Mon May 11 23:55:56 1998 Jeffrey A Law (law@cygnus.com) 11166 11167 * mpw-* Delete. Not used. 11168 11169Mon May 11 23:11:34 1998 Jeffrey A Law (law@cygnus.com) 11170 11171 * COPYING.LIB: Update FSF address. 11172 11173Fri May 8 01:30:20 1998 Ian Lance Taylor <ian@cygnus.com> 11174 11175 * ltconfig, ltmain.sh: Update to libtool 1.2a. 11176 11177 * Makefile.in (GASB_SUPPORT_DIRS): Remove intl; already included via 11178 GAS_SUPPORT_DIRS. 11179 11180Thu May 7 17:27:35 1998 Ian Lance Taylor <ian@cygnus.com> 11181 11182 * ltconfig, ltmain.sh: Avoid producing a version number if 11183 -version-info was not used. 11184 11185Tue May 5 18:02:24 1998 Ian Lance Taylor <ian@cygnus.com> 11186 11187 * configure.in: Add --with-newlib to CONFIG_ARGUMENTS if we are 11188 building with newlib. 11189 111901998-04-30 Paul Eggert <eggert@twinsun.com> 11191 11192 * Makefile.in (EXTRA_GCC_FLAGS): Remove backslash at end; 11193 Solaris `make' causes it to continue to next definition. 11194 11195Tue Apr 28 16:24:24 1998 Jason Molenda (crash@bugshack.cygnus.com) 11196 11197 * Makefile.in (install-gdbtk): Call this 'install-gdb' so that 11198 the right GUI libraries and files are installed along with GDB. 11199 11200Tue Apr 28 18:11:24 1998 Ian Lance Taylor <ian@cygnus.com> 11201 11202 * configure.in: Change alpha to alpha* in several places. 11203 11204Tue Apr 28 07:42:00 1998 Mark Alexander <marka@cygnus.com> 11205 11206 * config.sub: Recognize sparc86x. 11207 11208Tue Apr 28 07:35:02 1998 Michael Meissner <meissner@cygnus.com> 11209 11210 * configure.in (--enable-target-optspace): Remove debug echo. 11211 11212Thu Apr 23 21:31:16 1998 Jim Wilson <wilson@cygnus.com> 11213 11214 * configure: Set CXXFLAGS from CXXFLAGS, not CFLAGS. 11215 11216Thu Apr 23 12:26:38 1998 Ian Lance Taylor <ian@cygnus.com> 11217 11218 * ltconfig: Update cygwin32 support. 11219 11220 * Makefile.in (GAS_SUPPORT_DIRS): Add intl. 11221 (BINUTILS_SUPPORT_DIRS, GASB_SUPPORT_DIRS): Likewise. 11222 (GDB_SUPPORT_DIRS): Likewise. 11223 11224Wed Apr 22 12:30:10 1998 Michael Meissner <meissner@cygnus.com> 11225 11226 * configure.in (target_makefile_frag): If --enable-target-optspace, 11227 use -Os to compile target libraries rather than -O2. Default to 11228 using -Os for d10v and m32r if --{enable,disable}-target-optspace is 11229 not used. 11230 * configure.in (target_cflags): Ditto for d30v. 11231 11232Tue Apr 21 23:06:54 1998 Tom Tromey <tromey@cygnus.com> 11233 11234 * Makefile.in (all-bfd): Depend on all-intl. 11235 (all-binutils): Likewise. 11236 (all-gas): Likewise. 11237 (all-gprof): Likewise. 11238 (all-ld): Likewise. 11239 112401998-04-19 Brendan Kehoe <brendan@cygnus.com> 11241 11242 * configure.in (host_tools): Fix typo, lbtool -> libtool. 11243 11244Fri Apr 17 16:20:42 1998 Ian Lance Taylor <ian@cygnus.com> 11245 11246 * Makefile.in (all-bfd): Depend upon all-libiberty. 11247 11248 * ltconfig, ltmain.sh: Bring in newer cygwin32 support. 11249 11250Fri Apr 17 12:22:22 1998 Bob Manson <manson@charmed.cygnus.com> 11251 11252 * Makefile.in: Add libstub. 11253 11254 * configure.in: Ditto. Build libstub for targets that have cygmon 11255 support. 11256 11257Tue Apr 14 18:01:55 1998 Ian Lance Taylor <ian@cygnus.com> 11258 11259 * configure.in: Don't set PICFLAG on ix86-cygwin32. 11260 11261Tue Apr 14 12:24:45 1998 J. Kean Johnston <jkj@sco.com> 11262 11263 * configure.in: Recognise i[3456]96-*-sysv5* as a valid host, and 11264 use mh-sysv5 if specified. Support gprof on SCO Open Server. 11265 11266Tue Apr 14 11:33:51 1998 Krister Walfridsson <cato@df.lth.se> 11267 11268 * configure: Define DEFAULT_M4 by searching PATH. 11269 * Makfile.in: Use DEFAULT_M4. 11270 11271Mon Apr 13 15:37:24 1998 Ian Lance Taylor <ian@cygnus.com> 11272 11273 * ltconfig: Add cygwin32 support. 11274 11275 * Makefile.in, configure.in: Add libtool as a native only directory 11276 to configure and build. 11277 11278Sun Apr 12 20:58:46 1998 Jeffrey A Law (law@cygnus.com) 11279 11280 * Makefile.in (INSTALL_MODULES): Remove texinfo. 11281 11282Wed Apr 8 13:18:56 1998 Philippe De Muyter <phdm@macqel.be> 11283 11284 * Makefile.in (EXTRA_GCC_FLAGS): XFOO lines shortened. 11285 11286Thu Apr 2 14:48:44 1998 Geoffrey Noer <noer@cygnus.com> 11287 11288 * Makefile.in: add ash make rules 11289 * configure.in: add ash to native_only and host_tools lists 11290 11291Thu Mar 26 12:53:20 1998 Tom Tromey <tromey@cygnus.com> 11292 11293 * Makefile.in (all-gettext, all-intl): New targets. 11294 (ALL_MODULES): Added all-gettext, all-intl. 11295 (CROSS_CHECK_MODULES): Added check-gettext, check-intl. 11296 (INSTALL_MODULES): Added install-gettext, install-intl. 11297 (CLEAN_MODULES): Added clean-gettext, clean-intl. 11298 11299 * configure.in (host_tools): Added gettext. 11300 (native_only): Likewise. 11301 (noconfigdirs) [various cases]: Likewise. 11302 (host_libs): Added intl. 11303 11304Thu Mar 26 15:00:11 1998 Keith Seitz <keiths@onions.cygnus.com> 11305 11306 * configure: Do not disable building gdbtk for cygwin32 hosts. 11307 11308Wed Mar 25 10:04:18 1998 Nick Clifton <nickc@cygnus.com> 11309 11310 * configure.in: Add thumb-coff target. 11311 * config.sub: Add thumb-coff target. 11312 11313Wed Mar 25 11:49:12 1998 Jason Molenda (crash@bugshack.cygnus.com) 11314 11315 * Makefile.in: Revert yesterday's change. 11316 (all-target-winsup): all-target-librx stays out of here. 11317 11318Tue Mar 24 16:58:29 1998 Jason Molenda (crash@bugshack.cygnus.com) 11319 11320 * Makefile.in (TARGET_CONFIGDIRS, ALL_TARGET_MODULES, 11321 CONFIGURE_TARGET_MODULES, CHECK_TARGET_MODULES, 11322 INSTALL_TARGET_MODULES, CLEAN_TARGET_MODULES, all-target-winsup): 11323 Remove references to librx and libg++. 11324 11325Tue Mar 24 18:28:12 1998 Eric Mumpower <nocturne@cygnus.com> 11326 11327 * Makefile.in (BASE_FLAGS_TO_PASS): Pass $(lispdir) down to 11328 recursive makes 11329 11330Tue Mar 24 11:37:45 1998 Ian Lance Taylor <ian@cygnus.com> 11331 11332 * Makefile.in (CC_FOR_TARGET): Use $(TARGET_SUBDIR) when passing -B 11333 for newlib directory. 11334 (CXX_FOR_TARGET): Likewise. 11335 11336Mon Mar 23 11:30:21 1998 Jeffrey A Law (law@cygnus.com) 11337 11338 * ltconfig: Update after libtool/ltconfig.in change for 11339 hpux11. 11340 11341Fri Mar 20 18:51:43 1998 Ian Lance Taylor <ian@cygnus.com> 11342 11343 * ltconfig, ltmain.sh: Update to libtool 1.2. 11344 11345Fri Mar 20 09:32:14 1998 Manfred Hollstein <manfred@s-direktnet.de> 11346 11347 * Makefile.in (install-gcc): Don't specify LANGUAGES here. 11348 (install-gcc-cross): Instead, override LANGUAGES here. 11349 113501998-03-18 Dave Love <d.love@dl.ac.uk> 11351 11352 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): Set CONFIG_SITE to a 11353 non-existent file since /dev/null loses with bash 2.0/autoconf 2.12. 11354 11355Wed Mar 18 09:24:59 1998 Nick Clifton <nickc@cygnus.com> 11356 11357 * configure.in: Add Thumb-pe target. 11358 11359Tue Mar 17 16:59:00 1998 Syd Polk <spolk@cygnus.com> 11360 11361 * Makefile.in - changed sn targets to snavigator 11362 * configure.in - changed sn targets to snavigator 11363 11364Tue Mar 17 10:33:28 1998 Manfred Hollstein <manfred@s-direktnet.de> 11365 11366 * config-ml.in: After building symlink tree call make distclean 11367 if a Makefile got linked into ${ml_dir}/${ml_libdir}; this happens 11368 to be the case for libiberty. 11369 11370Tue Mar 17 10:22:37 1998 H.J. Lu (hjl@gnu.ai.mit.edu) 11371 11372 * configure: When making link, also check the current 11373 directory. The configure scripts may create one. 11374 11375Fri Mar 6 01:02:03 1998 Richard Henderson <rth@cygnus.com> 11376 11377 * config.sub: Accept alphapca56 and alphaev6 properly. 11378 11379Fri Mar 6 00:14:55 1998 Franz Sirl <Franz.Sirl-kernel@lauterbach.com> 11380 11381 * configure.in: Revert 3 Jan change for powerpc-linux-gnulibc1. 11382 11383Mon Feb 23 15:09:18 1998 Bruno Haible <bruno@linuix.mathematik.uni-karlsruhe.de 11384 11385 * config.sub (sco5): Fix typo. 11386 11387Mon Feb 23 14:46:06 1998 Ian Lance Taylor <ian@cygnus.com> 11388 11389 * Makefile.in (INSTALL_MODULES): Move install-tcl before 11390 install-itcl. 11391 (install-itcl): Remove dependency on install-tcl. 11392 11393Mon Feb 23 09:53:28 1998 Mark Alexander <marka@cygnus.com> 11394 11395 * configure.in: Remove libgloss from noconfigdirs for MN10300. 11396 11397Thu Feb 19 13:40:41 1998 Ian Lance Taylor <ian@cygnus.com> 11398 11399 * configure.in: Don't build libgui for a cygwin32 target when not on 11400 a cygwin32 host. 11401 11402Wed Feb 18 12:29:00 1998 Jason Molenda (crash@bugshack.cygnus.com) 11403 11404 * configure (redirect): Set to null, so default behavior of 11405 configure is now --verbose. 11406 114071998-02-16 Dave Love <d.love@dl.ac.uk> 11408 11409 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): Run configure with 11410 CONFIG_SITE=/dev/null to forestall lossage with site configuration. 11411 11412Mon Feb 16 12:23:53 1998 Manfred Hollstein <Manfred.Hollstein@ks.sel.alcatel.de> 11413 11414 * Makefile.in (BASE_FLAGS_TO_PASS, EXTRA_TARGET_FLAGS): Really add 11415 this change to sync Makefile.in with its ChangeLog entries. 11416 11417Thu Feb 12 15:03:08 1998 H.J. Lu <hjl@gnu.org> 11418 11419 * ltmain.sh (mkdir): Check that the directory doesn't exist 11420 before we exit with error, so that we don't get races during 11421 parallel builds. 11422 11423Sat Feb 7 15:19:18 1998 Ian Lance Taylor <ian@cygnus.com> 11424 11425 * ltconfig, ltmain.sh: Update from libtool 1.0i. 11426 11427Fri Feb 6 01:33:52 1998 Manfred Hollstein <manfred@s-direktnet.de> 11428 11429 * Makefile.in (BASE_FLAGS_TO_PASS): Don't pass PICFLAG and 11430 PICFLAG_FOR_TARGET. 11431 (EXTRA_TARGET_FLAGS): Don't pass PICFLAG_FOR_TARGET. 11432 11433 * configure: Emit a definition for the new macro enable_shared 11434 into each Makefile. 11435 11436Thu Feb 5 17:01:12 1998 Jason Molenda (crash@bugshack.cygnus.com) 11437 11438 * configure.in (host_tools, native_only): Add libtool. 11439 11440Wed Feb 4 16:53:58 1998 Geoffrey Noer <noer@cygnus.com> 11441 11442 * configure.in: add target-gperf to noconfigdirs for Cygwin32. 11443 Fix typo in ming config comment. 11444 11445Wed Feb 4 18:56:13 1998 Ian Lance Taylor <ian@cygnus.com> 11446 11447 * ltconfig, ltmain.sh: Update from libtool 1.0h. 11448 11449Mon Feb 2 19:38:19 1998 Ian Lance Taylor <ian@cygnus.com> 11450 11451 * config.sub: Add tic30 cases, and map c30 to tic30. 11452 11453Sun Feb 1 02:40:41 1998 Richard Henderson <rth@cygnus.com> 11454 11455 * Makefile.in (TARGET_CONFIGDIRS): Add libf2c. 11456 (ALL_TARGET_MODULES, CONFIGURE_TARGET_MODULES): Similarly 11457 (CHECK_TARGET_MODULES, INSTALL_TARGET_MODULES): Similarly 11458 (CLEAN_TARGET_MODULES): Similarly 11459 (all-target-libf2c): Add dependences. 11460 * configure.in (target_libs): Add libf2c. 11461 11462Fri Jan 30 17:18:32 1998 Geoffrey Noer <noer@cygnus.com> 11463 11464 * configure.in: Remove expect from noconfigdirs when target 11465 is cygwin32. OK to build expect and dejagnu with Canadian 11466 Cross. 11467 11468Wed Jan 28 12:58:49 1998 Ian Lance Taylor <ian@cygnus.com> 11469 11470 * configure.in: Do build expect, dejagnu, and cvssrc for a cygwin32 11471 host. 11472 11473 * config.guess: Use ${UNAME_MACHINE} rather than i386 for cygwin32 11474 and mingw32. 11475 11476Wed Jan 28 10:26:37 1998 Manfred Hollstein <manfred@s-direktnet.de> 11477 11478 * Makefile.in (BASE_FLAGS_TO_PASS): Remove passing $(local_prefix) 11479 here as it is not defined in the toplevel Makefile. 11480 11481Tue Jan 27 23:25:06 1998 Manfred Hollstein <manfred@s-direktnet.de> 11482 11483 * configure (package_makefile_rules_frag): New variable, which names 11484 a file with generic rules, ... 11485 Change comment to mention we now have FIVE parts. 11486 * configure: Undo last change. 11487 11488Tue Jan 27 23:15:55 1998 Lassi A. Tuura <lat@iki.fi> 11489 11490 * config.guess: More accurate determination of HP processor types. 11491 * config.sub: More accurate determination of HP processor types. 11492 11493Sat Jan 24 01:59:45 1998 Manfred Hollstein <manfred@s-direktnet.de> 11494 11495 * configure (package_makefile_frag): Move inserting the 11496 ${package_makefile_frag} to where it should be according 11497 to the comment. 11498 11499Fri Jan 23 00:29:28 1998 Philip Blundell <pb@nexus.co.uk> 11500 11501 * config.guess: Add support for Linux/ARM. 11502 11503Thu Jan 22 15:14:01 1998 Fred Fish <fnf@cygnus.com> 11504 11505 * .cvsignore: Remove *-info and *-install since they match 11506 release-info and mpw-install, which we don't want to just ignore. 11507 11508Thu Jan 22 01:38:33 1998 Richard Henderson <rth@cygnus.com> 11509 11510 * configure.in: Revert 3 Jan change for alpha-linux-gnulibc1. 11511 11512Sat Jan 17 21:28:08 1998 Pieter Nagel <pnagel@epiuse.co.za> 11513 11514 * Makefile.in (FLAGS_TO_PASS): Pass down gcc_include_dir and 11515 local_prefix to sub-make invocations. 11516 11517Sat Jan 17 21:04:59 1998 H.J. Lu (hjl@gnu.org) 11518 11519 * configure.in: Check makefile fragments in the source 11520 directory. 11521 11522Fri Jan 16 00:41:37 1998 Alexandre Oliva <oliva@dcc.unicamp.br> 11523 11524 * configure.in: Check whether host and target makefile 11525 fragments exist before adding them to *_makefile_frag. 11526 11527Wed Jan 14 23:39:10 1998 Bob Manson <manson@charmed.cygnus.com> 11528 11529 * configure.in (target_configdirs): Add cygmon for sparc64-elf. 11530 11531Wed Jan 14 12:48:07 1998 Keith Seitz <keiths@pizza.cygnus.com> 11532 11533 * configure.in: Make sure we only replace RPATH_ENVVAR on 11534 lines which begin with RPATH_ENVVAR, i.e. add "^" to the 11535 regexp to sed. 11536 11537 * Makefile.in (BASE_FLAGS_TO_PASS): Pass RRPATH_ENVVAR down 11538 to sub-makes. 11539 115401998-01-13 Lee Iverson (leei@ai.sri.com) 11541 11542 * config-ml.in (multi-do): LDFLAGS must include multilib 11543 designator. 11544 11545Tue Jan 13 01:13:24 1998 Robert Lipe (robertl@dgii.com) 11546 11547 * config.guess: Recognize i[3456]-i586-UnixWare7-sysv5. 11548 11549Sun Jan 4 01:06:55 1998 Mumit Khan <khan@xraylith.wisc.edu> 11550 11551 * config.sub: Add mingw32 support. 11552 * configure.in: Likewise. 11553 11554Sat Jan 3 12:11:05 1998 Franz Sirl <franz.sirl-kernel@lauterbach.com> 11555 11556 * configure.in: Finalize support for {alpha|powerpc}*-*-linux-gnulibc1 11557 11558Sun Dec 28 11:28:58 1997 Jeffrey A Law (law@cygnus.com) 11559 11560 * Makefile.in (INSTALL_TARGET): Do install-gcc first. 11561 * configure (gxx_include_dir): Provide a definition for subdirs 11562 which do not use autoconf. 11563 11564Wed Dec 24 22:46:55 1997 Jeffrey A Law (law@cygnus.com) 11565 11566 * config.guess: Sync with egcs. Picks up new alpha support, 11567 BeOS & some additional linux support. 11568 11569Tue Dec 23 12:44:24 1997 Jeffrey A Law (law@cygnus.com) 11570 11571 * config.guess: HP 9000/803 is a PA1.1 machine. 11572 11573Mon Dec 22 02:39:24 1997 Richard Henderson <rth@cygnus.com> 11574 11575 * configure.in: It's alpha*-... 11576 11577Sun Dec 21 16:53:12 1997 H.J. Lu (hjl@gnu.ai.mit.edu) 11578 11579 * configure.in (host_makefile_frag, target_makefile_frag): 11580 Handle multiple config files. 11581 (alpha-*-linux*): Treat alpha-*-linux* as alpha-*-linux* and 11582 alpha-*-*. 11583 11584Thu Dec 18 13:13:03 1997 Doug Evans <devans@canuck.cygnus.com> 11585 11586 * mkdep: New file. 11587 11588Wed Dec 17 09:53:02 1997 Michael Meissner <meissner@cygnus.com> 11589 11590 * configure.in (d30v-*-*): Allow configuring of libide, vmake, etc. 11591 11592Tue Dec 16 17:36:05 1997 Ian Lance Taylor <ian@cygnus.com> 11593 11594 * Makefile.in: Add libgui directory. 11595 (GDB_TK): Add all-libgui. 11596 * configure.in: Add libgui directory. 11597 * configure: Add all-libgui to GDB_TK. 11598 11599Mon Dec 15 16:12:28 1997 Nick Clifton <nickc@cygnus.com> 11600 11601 * config-ml.in (multidirs): Add m32r to multilib list. 11602 11603Fri Dec 12 10:43:31 1997 Brendan Kehoe <brendan@canuck.cygnus.com> 11604 11605 * Makefile.in (all-target-gperf): Change dependency to 11606 all-target-libstdc++. 11607 11608Thu Dec 11 23:30:51 1997 Fred Fish <fnf@ninemoons.com> 11609 11610 * config.guess: Add BeOS support. 11611 11612Wed Dec 10 15:10:38 1997 Ian Lance Taylor <ian@cygnus.com> 11613 11614 Source directory cvs renamed to cvssrc: 11615 * configure.in (host_tools): Change cvs to cvssrc. 11616 (native_only): Likewise. 11617 (noconfigdirs) [various cases]: Likewise. 11618 * Makefile.in (ALL_MODULES): Change all-cvs to all-cvssrc. 11619 (CROSS_CHECK_MODULES): Change check-cvs to check-cvssrc. 11620 (INSTALL_MODULES): Change install-cvs to install-cvssrc. 11621 (CLEAN_MODULES): Change clean-cvs to clean-cvssrc. 11622 (all-cvssrc): Rename target from all-cvs. 11623 11624Wed Dec 3 07:55:59 1997 Jeffrey A Law (law@cygnus.com) 11625 11626 * configure (gxx_include_dir): Fix thinko. 11627 11628Tue Dec 2 10:55:34 1997 Jeffrey A Law (law@cygnus.com) 11629 11630 * Makefile.in (INSTALL_TARGET_CROSS): Define. 11631 (install-cross, install-gcc-cross): New targets. 11632 11633Tue Dec 2 10:08:31 1997 Nick Clifton <nickc@cygnus.com> 11634 11635 * configure.in (noconfigdirs): Add support for Thumb target. 11636 11637 * config.sub (maybe_os): Add support for Thumb target. 11638 11639Sun Nov 30 16:12:27 1997 Bob Manson <manson@charmed.cygnus.com> 11640 11641 * Makefile.in: Add rules for cygmon. 11642 11643 * configure.in: Build cygmon for sparc-elf and sparclite-aout. 11644 11645Thu Nov 27 01:31:30 1997 Jeffrey A Law (law@cygnus.com) 11646 11647 * Makefile.in (INSTALL_TARGET): Do install-gcc first. 11648 * configure (gxx_include_dir): Provide a definition for subdirs 11649 which do not use autoconf. 11650 11651Wed Nov 26 11:53:33 1997 Keith Seitz <keiths@onions.cygnus.com> 11652 11653 * Makefile.in, configure, configure.in, ChangeLog: merge with foundry's 11654 11/18/97 build 11655 11656Wed Nov 26 16:08:50 1997 Jeffrey A Law (law@cygnus.com) 11657 11658 * From Franz Sirl. 11659 * config.guess (powerpc*-*-linux): Handle glibc2 beta release 11660 found on RedHat Linux systems. 11661 11662Fri Nov 21 09:51:01 1997 Jeffrey A Law (law@cygnus.com) 11663 11664 * config.guess (alpha stuff): Merge with FSF to avoid incorrect 11665 guesses. 11666 11667Thu Nov 13 11:38:37 1997 Jeffrey A Law (law@cygnus.com) 11668 11669 * configure.in (i[3456]86-ncr-sysv4.3*): Tweak. 11670 11671Mon Nov 10 15:23:21 1997 H.J. Lu <hjl@gnu.ai.mit.edu> 11672 11673 * ltmain.sh: If mkdir fails, check whether the directory was created 11674 anyhow by some other process. 11675 11676Mon Nov 10 14:38:03 1997 Michael Meissner <meissner@cygnus.com> 11677 11678 * configure.in (d30v-*-*): Configure all directories. 11679 11680Sun Nov 9 17:36:20 1997 Michael Meissner <meissner@cygnus.com> 11681 11682 * configure.in (d30v-*-*): Configure newlib, libiberty directories 11683 for the D30V. 11684 11685Sat Nov 8 14:42:59 1997 Michael Meissner <meissner@cygnus.com> 11686 11687 * configure.in (d30v-*-*): Configure target-libgloss on the D30V. 11688 11689Fri Nov 7 10:34:09 1997 Rob Savoye <rob@darkstar.cygnus.com> 11690 11691 * include/libiberty.h: Add extern "C" { so it can be used with C++ 11692 progrms. 11693 * include/remote-sim.h: Add extern "C" { so it can be used with C++ 11694 programs. 11695 11696Thu Oct 30 11:09:29 1997 Michael Meissner <meissner@cygnus.com> 11697 11698 * configure.in (d30v-*-*): Configure GCC now. 11699 11700Mon Oct 27 13:17:24 1997 Stan Shebs <shebs@andros.cygnus.com> 11701 11702 * configure.in: Remove a "second pass" of tweaking noconfigdirs, 11703 is no longer needed. 11704 11705Mon Oct 27 12:03:53 1997 Jason Merrill <jason@yorick.cygnus.com> 11706 11707 * Makefile.in: check-target-libio depends on all-target-libstdc++. 11708 11709Sun Oct 26 11:48:27 1997 Manfred Hollstein (manfred@s-direktnet.de) 11710 11711 * Makefile.in (bootstrap-lean): Combined with `normal' bootstrap 11712 targets using "$@" to provide support for similar but not identical 11713 targets without having to duplicate code. 11714 11715Mon Oct 20 15:28:49 1997 Klaus K"ampf <kkaempf@progis.de> 11716 11717 * makefile.vms: Fix to work with DEC C. 11718 11719Tue Oct 7 23:58:57 1997 Gavin Koch <gavin@cygnus.com> 11720 11721 * config.sub: Add mips-tx39-elf to marketing names. 11722 11723Tue Oct 7 14:24:41 1997 Ian Lance Taylor <ian@cygnus.com> 11724 11725 * ltmain.sh: Handle symlinks in generated script. 11726 11727Wed Oct 1 13:11:27 1997 Ian Lance Taylor <ian@cygnus.com> 11728 11729 * configure: Handle autoconf style directory options: --bindir, 11730 --datadir, --includedir, --infodir, --libdir, --libexecdir, 11731 --mandir, --oldincludedir, --sbindir, --sharedstatedir, 11732 --sysconfdir. 11733 * Makefile.in (sbindir, libexecdir, sysconfdir): New variables. 11734 (sharedstatedir, localstatedir, oldincludedir): New variables. 11735 (BASE_FLAGS_TO_PASS): Pass down bindir, datadir, includedir, 11736 infodir, libdir, libexecdir, localstatedir, mandir, oldincludedir, 11737 sbindir, sharedstatedir, and sysconfdir. 11738 11739Mon Sep 29 00:38:08 1997 Aaron Jackson <jackson@negril.msrce.howard.edu> 11740 11741 * Makefile.in (bootstrap-lean): New target. 11742 11743Wed Sep 24 18:06:27 1997 Stu Grossman <grossman@babylon-5.cygnus.com> 11744 11745 * configure.in (d30v): Remove tcl, tk, expect, gdb, itcl, tix, db, 11746 sn, and gnuserv from noconfigdirs. 11747 11748Wed Sep 24 15:18:32 1997 Ian Lance Taylor <ian@cygnus.com> 11749 11750 * ltmain.sh: Tweak shell pattern to avoid bug in NetBSD /bin/sh. 11751 11752Thu Sep 18 23:58:27 1997 Jeffrey A Law (law@cygnus.com) 11753 11754 * Makefile.in (cross): New target. 11755 11756Thu Sep 18 21:43:23 1997 Alexandre Oliva <oliva@dcc.unicamp.br> 11757 Jeff Law <law@cygnus.com> 11758 11759 * Makefile.in (bootstrap2, bootstrap3): New targets. 11760 (all-bootstrap): Remove outdated and confusing target. 11761 (bootstrap, bootstrap2, bootstrap3): Don't pass BOOT_CFLAGS down. 11762 11763Thu Sep 18 15:37:42 1997 Andrew Cagney <cagney@b1.cygnus.com> 11764 11765 * configure (tooldir): enable_gdbtk=YES for cygwin32, NO for 11766 windows. Consistent with gdb/configure. 11767 117681997-09-15 02:37 Ulrich Drepper <drepper@cygnus.com> 11769 11770 * configure.in: Name Linux target fragment. 11771 11772 * configure: Rewrite so that project Makefile fragment is inserted 11773 first and appears last in the resulting Makefile. 11774 11775Tue Sep 16 09:55:07 1997 Andrew Cagney <cagney@b1.cygnus.com> 11776 11777 * Makefile.in (install-itcl): Install tcl first. 11778 11779Fri Sep 12 16:19:20 1997 Geoffrey Noer <noer@cygnus.com> 11780 11781 * configure.in: remove bison from noconfigdirs for Cygwin32 host 11782 11783Thu Sep 11 16:40:46 1997 H.J. Lu (hjl@gnu.ai.mit.edu) 11784 11785 * Makefile.in (local-distclean): Also remove mh-frag mt-frag. 11786 11787 * configure.in (skipdirs): Add target-librx for Linux. 11788 (alpha-*-linux*): Use config/mh-elfalphapic and config/mt-elfalphapic. 11789 11790Wed Sep 10 21:29:54 1997 Jeffrey A Law (law@cygnus.com) 11791 11792 * Makefile.in (bootstrap): New target. 11793 11794Wed Sep 10 15:19:22 1997 Jeffrey A Law (law@cygnus.com) 11795 11796 * config.sub: Accept 'amigados' for backward compatability. 11797 11798Mon Sep 8 20:46:20 1997 Ian Lance Taylor <ian@cygnus.com> 11799 11800 * config.guess: Merge with FSF. 11801 11802Sun Sep 7 23:18:32 1997 Fred Fish <fnf@ninemoons.com> 11803 11804 * config.sub: Change 'amigados' to 'amigaos' to match current usage. 11805 11806Sun Sep 7 15:55:28 1997 Gavin Koch <gavin@cygnus.com> 11807 11808 * config.sub: Add "marketing-names" patch. 11809 11810Fri Sep 5 16:11:28 1997 Joel Sherrill (joel@OARcorp.com) 11811 11812 * configure.in (*-*-rtems*): Do not build libgloss for rtems. 11813 11814Fri Sep 5 12:27:17 1997 Jeffrey A Law (law@cygnus.com) 11815 11816 * config.sub: Handle v850-elf. 11817 11818Wed Sep 3 22:01:58 1997 Fred Fish <fnf@ninemoons.com> 11819 11820 * .cvsignore (*-install): Remove. 11821 11822Wed Sep 3 12:15:24 1997 Chris Provenzano <proven@cygnus.com> 11823 11824 * ltconfig: Set CONFIG_SHELL in libtool. 11825 * ltmain.sh: Use CONFIG_SHELL instead of /bin/sh 11826 11827Mon Sep 1 16:45:44 1997 Jim Wilson <wilson@cygnus.com> 11828 11829 * configure.in (target_subdir): Set to libraries if enable_multilib. 11830 11831Wed Aug 27 16:15:11 1997 Jim Wilson <wilson@cygnus.com> 11832 11833 * config.guess: Update from gcc directory. 11834 11835Tue Aug 26 16:46:46 1997 Andrew Cagney <cagney@b1.cygnus.com> 11836 11837 * Makefile.in (all-sim): Depends on all-readline. 11838 11839Wed Aug 20 19:57:37 1997 Jason Merrill <jason@yorick.cygnus.com> 11840 11841 * Makefile.in (BISON, YACC): Use $$s. 11842 (all-bison): Depend on all-texinfo. 11843 11844Tue Aug 19 01:41:32 1997 Jason Merrill <jason@yorick.cygnus.com> 11845 11846 * Makefile.in (BISON): Add -L flag. 11847 (YACC): Likewise. 11848 11849Mon Aug 18 11:30:50 1997 Nick Clifton <nickc@cygnus.com> 11850 11851 * configure.in (noconfigdirs): Add support for v850e target. 11852 11853 * config.sub (maybe_os): Add support for v850e target. 11854 11855Mon Aug 18 11:30:50 1997 Nick Clifton <nickc@cygnus.com> 11856 11857 * configure.in (noconfigdirs): Add support for v850ea target. 11858 11859 * config.sub (maybe_os): Add support for v850ea target. 11860 11861Mon Aug 18 09:24:06 1997 Gavin Koch <gavin@cygnus.com> 11862 11863 * config.sub: Add mipstx39. Delete r3900. 11864 11865Mon Aug 18 17:20:10 1997 Jason Molenda (crash@godzilla.cygnus.co.jp) 11866 11867 * Makefile.in (all-autoconf): Depends on all-texinfo. 11868 11869Fri Aug 15 23:09:26 1997 Michael Meissner <meissner@cygnus.com> 11870 11871 * config-ml.in ({powerpc,rs6000}*-*-*): Update to current AIX and 11872 eabi targets. 11873 11874Thu Aug 14 14:42:17 1997 Ian Lance Taylor <ian@cygnus.com> 11875 11876 * configure: Get CFLAGS and CXXFLAGS from Makefile, if possible. 11877 11878 * configure: When handling a Canadian Cross, handle YACC as well as 11879 BISON. Just set BISON to bison. When setting YACC, prefer bison. 11880 * Makefile.in (all-bison): Depend upon all-texinfo. 11881 11882Tue Aug 12 20:09:48 1997 Jason Merrill <jason@yorick.cygnus.com> 11883 11884 * Makefile.in (BISON): bison, not byacc or bison -y. 11885 (YACC): bison -y or byacc or yacc. 11886 (various): Add *-bison as appropriate. 11887 (taz): No need to mess with BISON anymore. 11888 11889Tue Aug 12 22:33:08 1997 Ian Lance Taylor <ian@cygnus.com> 11890 11891 * configure: If OSTYPE matches *win32*, try to find a good value for 11892 CONFIG_SHELL. 11893 11894Sun Aug 10 14:41:11 1997 Ian Lance Taylor <ian@cygnus.com> 11895 11896 * Makefile.in (taz): Get the version number from AM_INIT_AUTOMAKE in 11897 configure.in if it is present. 11898 11899Sat Aug 9 00:58:01 1997 Ian Lance Taylor <ian@cygnus.com> 11900 11901 * Makefile.in (LD_FOR_TARGET): Change ld.new to ld-new. 11902 11903Fri Aug 8 16:30:13 1997 Doug Evans <dje@canuck.cygnus.com> 11904 11905 * config.sub: Recognize `arc' cpu. 11906 * configure.in: Likewise. 11907 * config-ml.in: Likewise. 11908 11909Thu Aug 7 11:02:34 1997 Ian Lance Taylor <ian@cygnus.com> 11910 11911 * Makefile.in ($(INSTALL_X11_MODULES)): Depend upon installdirs. 11912 11913Wed Aug 6 16:27:29 1997 Chris Provenzano <proven@cygnus.com> 11914 11915 * configure: Changed sed delimiter from ':' to '|' when 11916 attempting to substitute ${config_shell} for SHELL. On 11917 NT ${config_shell} may contain a ':' in it. 11918 11919Wed Aug 6 12:29:05 1997 Jason Merrill <jason@yorick.cygnus.com> 11920 11921 * Makefile.in (EXTRA_GCC_FLAGS): Fix for non-bash shells. 11922 11923Wed Aug 6 00:42:35 1997 Ian Lance Taylor <ian@cygnus.com> 11924 11925 * Makefile.in (AS_FOR_TARGET): Change as.new to as-new. 11926 11927Tue Aug 5 14:08:51 1997 Ian Lance Taylor <ian@cygnus.com> 11928 11929 * Makefile.in (NM_FOR_TARGET): Change nm.new to nm-new. 11930 11931 * ylwrap: If the program is a relative path, force it to be 11932 absolute. 11933 11934Tue Aug 5 12:12:44 1997 Andrew Cagney <cagney@b1.cygnus.com> 11935 11936 * configure (tooldir): Set BISON to `bison -y' and not just bison. 11937 11938Mon Aug 4 22:59:02 1997 Andrew Cagney <cagney@b1.cygnus.com> 11939 11940 * Makefile.in (CC_FOR_TARGET): When winsup/Makefile present, 11941 correctly specify the target build directory $(TARGET_SUBDIR)/winsup 11942 for libraries. 11943 11944Mon Aug 4 12:40:24 1997 Jason Merrill <jason@yorick.cygnus.com> 11945 11946 * Makefile.in (EXTRA_GCC_FLAGS): Fix handling of macros with values 11947 separated by spaces. 11948 11949Thu Jul 31 19:49:49 1997 Ian Lance Taylor <ian@cygnus.com> 11950 11951 * ylwrap: New file. 11952 * Makefile.in (DEVO_SUPPORT): Add ylwrap. 11953 11954 * ltmain.sh: Handle /bin/sh at start of install program. 11955 11956 * Makefile.in (DEVO_SUPPORT): Add ltconfig, ltmain.sh, and missing. 11957 11958 * ltconfig, ltmain.sh: New files, from libtool 1.0. 11959 * missing: New file, from automake 1.2. 11960 11961Thu Jul 24 12:57:56 1997 Ian Lance Taylor <ian@cygnus.com> 11962 11963 * Makefile.in: Treat tix like tk, putting it in X11_MODULES. Add 11964 check-tk to CHECK_X11_MODULES. 11965 11966Wed Jul 23 17:03:29 1997 Ian Lance Taylor <ian@cygnus.com> 11967 11968 * config.sub: Merge with FSF. 11969 11970Tue Jul 22 19:08:29 1997 Ian Lance Taylor <ian@cygnus.com> 11971 11972 * config.guess: Merge with FSF. 11973 11974Tue Jul 22 14:50:42 1997 Robert Hoehne <robert.hoehne@Mathematik.TU-Chemnitz.DE> 11975 11976 * configure: Treat msdosdjgpp like go32. 11977 * configure.in: Likewise. Don't remove gprof for go32. 11978 11979 * configure: Change Makefile.tem2 to Makefile.tm2. 11980 11981Mon Jul 21 10:31:26 1997 Stephen Peters <speters@cygnus.com> 11982 11983 * configure.in (noconfigdirs): For alpha-dec-osf*, don't ignore grep. 11984 11985Tue Jul 15 14:33:03 1997 Brendan Kehoe <brendan@lisa.cygnus.com> 11986 11987 * install-sh (chmodcmd): Set to null if the DST directory already 11988 exists. Same as Nov 11th change. 11989 11990Mon Jul 14 11:01:15 1997 Martin M. Hunt <hunt@cygnus.com> 11991 11992 * configure (GDB_TK): Needs itcl and tix. 11993 11994Mon Jul 14 00:32:10 1997 Jason Merrill <jason@yorick.cygnus.com> 11995 11996 * config.guess: Update from FSF. 11997 11998Fri Jul 11 11:57:11 1997 Martin M. Hunt <hunt@cygnus.com> 11999 12000 * Makefile.in (GDB_TK): Depend on itcl and tix. 12001 12002Fri Jul 4 13:25:31 1997 Ian Lance Taylor <ian@cygnus.com> 12003 12004 * Makefile.in (INSTALL_PROGRAM_ARGS): New variable. 12005 (INSTALL_PROGRAM): Use $(INSTALL_PROGRAM_ARGS). 12006 (INSTALL_SCRIPT): New variable. 12007 (BASE_FLAGS_TO_PASS): Pass down INSTALL_SCRIPT. 12008 * configure.in: If host is *-*-cygwin32*, set INSTALL_PROGRAM_ARGS 12009 to -x. 12010 * install-sh: Add support for -x option. 12011 12012Mon Jun 30 15:51:30 1997 Ian Lance Taylor <ian@cygnus.com> 12013 12014 * configure.in, Makefile.in: Treat tix like itcl. 12015 12016Thu Jun 26 13:59:19 1997 Ian Lance Taylor <ian@cygnus.com> 12017 12018 * Makefile.in (WINDRES): New variable. 12019 (WINDRES_FOR_TARGET): New variable. 12020 (BASE_FLAGS_TO_PASS): Add WINDRES_FOR_TARGET. 12021 (EXTRA_HOST_FLAGS): Add WINDRES. 12022 (EXTRA_TARGET_FLAGS): Add WINDRES. 12023 (EXTRA_GCC_FLAGS): Add WINDRES. 12024 ($(DO_X)): Pass down WINDRES. 12025 ($(CONFIGURE_TARGET_MODULES)): Set WINDRES when configuring. 12026 * configure: Treat WINDRES like DLLTOOL, and WINDRES_FOR_TARGET like 12027 DLLTOOL_FOR_TARGET. 12028 12029Wed Jun 25 15:01:26 1997 Felix Lee <flee@cygnus.com> 12030 12031 * configure.in: configure sim before gdb for win32-x-ppc 12032 12033Wed Jun 25 12:18:54 1997 Brendan Kehoe <brendan@lisa.cygnus.com> 12034 12035 Move gperf into the toplevel, from libg++. 12036 * configure.in (target_tools): Add target-gperf. 12037 (native_only): Add target-gperf. 12038 * Makefile.in (all-target-gperf): New target, depend on 12039 all-target-libg++. 12040 (configure-target-gperf): Empty rule. 12041 (ALL_TARGET_MODULES): Add all-target-gperf. 12042 (CONFIGURE_TARGET_MODULES): Add configure-target-gperf. 12043 (CHECK_TARGET_MODULES): Add check-target-gperf. 12044 (INSTALL_TARGET_MODULES): Add install-target-gperf. 12045 (CLEAN_TARGET_MODULES): Add clean-target-gperf. 12046 12047Mon Jun 23 10:51:53 1997 Jeffrey A Law (law@cygnus.com) 12048 12049 * config.sub (mn10200): Recognize new basic machine. 12050 12051Thu Jun 19 14:16:42 1997 Brendan Kehoe <brendan@lisa.cygnus.com> 12052 12053 * configure.in: Don't set ENABLE_MULTILIB, so we'll be passing 12054 --enable-multilib down to subdirs; setting TARGET_SUBDIR was enough. 12055 12056Tue Jun 17 15:31:20 1997 Brendan Kehoe <brendan@lisa.cygnus.com> 12057 12058 * configure.in: If we're building mips-sgi-irix6* native, turn on 12059 ENABLE_MULTILIB and set TARGET_SUBDIR. 12060 12061Tue Jun 17 12:20:59 1997 Tom Tromey <tromey@cygnus.com> 12062 12063 * Makefile.in (all-sn): Depend on all-grep. 12064 12065Mon Jun 16 11:11:10 1997 Ian Lance Taylor <ian@cygnus.com> 12066 12067 * configure.in: Use mh-ppcpic and mt-ppcpic for powerpc*-* targets. 12068 12069 * configure: Set CFLAGS and CXXFLAGS, and substitute them into 12070 Makefile. From Jeff Makey <jeff@cts.com>. 12071 * Makefile.in: Add comment for CFLAGS and CXXFLAGS. 12072 12073 * Makefile.in (DISTBISONFILES): Remove. 12074 (taz): Don't futz with DISTBISONFILES. Change BISON to use 12075 $(DEFAULT_YACC). 12076 12077 * configure.in: Build itl, db, sn, etc., when building for native 12078 cygwin32. 12079 12080 * Makefile.in (LD): New variable. 12081 (EXTRA_HOST_FLAGS): Pass down LD. 12082 ($(DO_X)): Likewise. 12083 12084Mon Jun 16 11:10:35 1997 Philip Blundell <Philip.Blundell@pobox.com> 12085 12086 * Makefile.in (INSTALL): Use $(SHELL) when executing install-sh. 12087 12088Fri Jun 13 10:22:56 1997 Bob Manson <manson@charmed.cygnus.com> 12089 12090 * configure.in (targargs): Strip out any supplied --build argument 12091 before adding our own. Always add --build. 12092 12093Thu Jun 12 21:12:28 1997 Bob Manson <manson@charmed.cygnus.com> 12094 12095 * configure.in (targargs): Pass --build if we're doing 12096 a cross-compile. 12097 12098Fri Jun 6 21:38:40 1997 Rob Savoye <rob@chinadoll.cygnus.com> 12099 12100 * configure: Use '|' instead of ":" as the separator in 12101 sed. Otherwise sed chokes on NT path names with drive 12102 designators. Also look for "?:*" as the leading characters in an 12103 absolute pathname. 12104 12105Mon Jun 2 13:05:20 1997 Gavin Koch <gavin@cygnus.com> 12106 12107 * config.sub: Support for r3900. 12108 12109Wed May 21 17:33:31 1997 Ian Lance Taylor <ian@cygnus.com> 12110 12111 * configure.in: Use install-sh, not install.sh. 12112 12113Wed May 14 16:06:51 1997 Ian Lance Taylor <ian@cygnus.com> 12114 12115 * Makefile.in (taz): Improve check for BISON so it doesn't try to 12116 apply it twice. 12117 12118Fri May 9 17:22:05 1997 Ian Lance Taylor <ian@cygnus.com> 12119 12120 * Makefile.in (INSTALL_MODULES): Put install-opcodes before 12121 install-binutils. 12122 12123Thu May 8 17:29:50 1997 Ian Lance Taylor <ian@cygnus.com> 12124 12125 * Makefile.in: Add automake targets. 12126 * configure.in (host_tools): Add automake. 12127 12128Tue May 6 15:49:52 1997 Ian Lance Taylor <ian@cygnus.com> 12129 12130 * configure: Default CXX to c++, not gcc. 12131 * Makefile.in (CXX): Set to c++, not gcc. 12132 (CXX_FOR_TARGET): When cross, transform c++, not gcc. 12133 12134Thu May 1 10:11:43 1997 Geoffrey Noer <noer@cygnus.com> 12135 12136 * install-sh: try appending a .exe if source file doesn't 12137 exist 12138 12139Wed Apr 30 12:05:36 1997 Jason Merrill <jason@yorick.cygnus.com> 12140 12141 * configure.in: Turn on multilib by default. 12142 (cross_only): Remove target-libiberty. 12143 12144 * Makefile.in (all-gcc): Don't depend on libiberty. 12145 12146Mon Apr 28 18:39:45 1997 Michael Snyder <msnyder@cleaver.cygnus.com> 12147 12148 * config.guess: improve algorithm for recognizing Gnu Hurd x86. 12149 12150Thu Apr 24 19:30:07 1997 Ian Lance Taylor <ian@cygnus.com> 12151 12152 * Makefile.in (DEVO_SUPPORT): Add mpw-install. 12153 (DISTBISONFILES): Add ld/Makefile.in 12154 12155Tue Apr 22 17:17:28 1997 Geoffrey Noer <noer@pizza.cygnus.com> 12156 12157 * configure.in: if target is cygwin32 but host isn't cygwin32, 12158 don't configure gdb tcl tk expect, not just gdb. 12159 12160Mon Apr 21 13:33:39 1997 Tom Tromey <tromey@cygnus.com> 12161 12162 * configure.in: Added gnuserv everywhere sn appears. 12163 12164 * Makefile.in (ALL_MODULES): Added all-gnuserv. 12165 (CROSS_CHECK_MODULES): Added check-gnuserv. 12166 (INSTALL_MODULES): Added install-gnuserv. 12167 (CLEAN_MODULES): Added clean-gnuserv. 12168 (all-gnuserv): New target. 12169 12170Thu Apr 17 13:57:06 1997 Per Fogelstrom <pefo@openbsd.org> 12171 12172 * config.guess: Fixes for MIPS OpenBSD systems. 12173 12174Tue Apr 15 12:21:07 1997 Ian Lance Taylor <ian@cygnus.com> 12175 12176 * Makefile.in (INSTALL_XFORM): Remove. 12177 (BASE_FLAGS_TO_PASS): Remove INSTALL_XFORM. 12178 12179 * mkinstalldirs: New file, copied from automake. 12180 * Makefile.in (installdirs): Rename from install-dirs. Use 12181 mkinstalldirs. Change all users. 12182 (DEVO_SUPPORT): Add mkinstalldirs. 12183 12184Mon Apr 14 11:21:38 1997 Ian Lance Taylor <ian@cygnus.com> 12185 12186 * install-sh: Rename from install.sh. 12187 * Makefile.in (INSTALL): Change install.sh to install-sh. 12188 (DEVO_SUPPORT): Likewise. 12189 12190 * configure: Use ${config_shell} with ${moveifchange}. From Thomas 12191 Graichen <graichen@rzpd.de>. 12192 12193Fri Apr 11 16:37:10 1997 Niklas Hallqvist <niklas@appli.se> 12194 12195 * config.guess: Recognize OpenBSD systems correctly. 12196 12197Fri Apr 11 17:07:04 1997 Jason Molenda (crash@godzilla.cygnus.co.jp) 12198 12199 * README, Makefile.in (ETC_SUPPORT): Remove references to 12200 cfg-paper*, configure.{texi,man,info*}._ 12201 12202Sun Apr 6 18:47:57 1997 Andrew Cagney <cagney@kremvax.cygnus.com> 12203 12204 * Makefile.in (all.normal): Ensure that gcc is built after all 12205 the x11 - ie gdb - targets. 12206 12207Tue Apr 1 16:28:50 1997 Klaus Kaempf <kkaempf@progis.de> 12208 12209 * makefile.vms: Don't run conf-a-gas. 12210 12211Mon Mar 31 16:26:55 1997 Joel Sherrill <joel@oarcorp.com> 12212 12213 * configure.in (hppa1.1-*-rtems*): New target, like hppa-*-*elf*. 12214 12215Sun Mar 30 12:38:27 1997 Fred Fish <fnf@cygnus.com> 12216 12217 * configure.in: Remove noconfigdirs case since gdb also 12218 configures and builds for tic80-coff. 12219 12220Fri Mar 28 18:28:52 1997 Ian Lance Taylor <ian@cygnus.com> 12221 12222 * configure: Set cache_file to config.cache. 12223 * Makefile.in (local-distclean): Remove config.cache. 12224 12225Wed Mar 26 18:49:39 1997 Ian Lance Taylor <ian@cygnus.com> 12226 12227 * COPYING: Update FSF address. 12228 12229Wed Mar 26 10:38:25 1997 Michael Meissner <meissner@cygnus.com> 12230 12231 * configure.in (tic80-*-*): Remove G++ libraries and libgloss from 12232 noconfigdirs. 12233 12234Mon Mar 24 15:02:39 1997 Ian Lance Taylor <ian@cygnus.com> 12235 12236 * Makefile.in (install-dirs): Don't crash if prefix, and hence 12237 MAKEDIRS, is empty. 12238 12239Mon Mar 24 12:40:55 1997 Doug Evans <dje@canuck.cygnus.com> 12240 12241 * config.sub: Tweak mn10300 entry. 12242 12243Fri Mar 21 15:35:27 1997 Michael Meissner <meissner@cygnus.com> 12244 12245 * configure.in (host_tools): Put sim before gdb, so gdb's 12246 configure.tgt can determine if the simulator was configured. 12247 12248Sun Mar 16 16:07:08 1997 Fred Fish <fnf@cygnus.com> 12249 12250 * config.sub: Move BeOS $os case to be with other Cygnus 12251 local cases. 12252 12253Sun Mar 16 01:34:55 1997 Martin Hunt <hunt@cygnus.com> 12254 12255 * config.sub: Remove misplaced comment that broke Linux. 12256 12257Sat Mar 15 22:50:15 1997 Fred Fish <fnf@cygnus.com> 12258 12259 * config.sub: Add BeOS support. 12260 12261Mon Mar 10 13:30:11 1997 Tom Tromey <tromey@cygnus.com> 12262 12263 * Makefile.in (CHECK_X11_MODULES): Don't run check-tk. 12264 12265Wed Mar 5 12:09:29 1997 Martin <hunt@cygnus.com> 12266 12267 * configure.in (noconfigdirs): Remove tcl and tk from 12268 noconfigdirs for cygwin32 builds. 12269 12270Fri Feb 28 18:20:15 1997 Fred Fish <fnf@cygnus.com> 12271 12272 * configure.in (tic80-*-*): Remove ld from noconfigdirs. 12273 12274Thu Feb 27 14:57:26 1997 Ken Raeburn <raeburn@cygnus.com> 12275 12276 * Makefile.in (GAS_SUPPORT_DIRS, BINUTILS_SUPPORT_DIRS): Remove 12277 make-all.com, use makefile.vms instead. 12278 12279Tue Feb 25 18:46:14 1997 Stan Shebs <shebs@andros.cygnus.com> 12280 12281 * config.sub: Accept -lnews*. 12282 12283Tue Feb 25 13:19:14 1997 Andrew Cagney <cagney@kremvax.tpgi.com.au> 12284 12285 * configure.in (noconfigdirs): Disable target-newlib, 12286 target-examples and target-libiberty for d30v. 12287 12288Fri Feb 21 17:56:25 1997 Martin M. Hunt <hunt@pizza.cygnus.com> 12289 12290 * configure.in (noconfigdirs): Enable ld for d30v. 12291 12292Fri Feb 21 20:58:51 1997 Michael Meissner <meissner@cygnus.com> 12293 12294 * configure.in (tic80-*-*): Build compiler. 12295 12296Sun Feb 16 15:41:09 1997 Andrew Cagney <cagney@critters.cygnus.com> 12297 12298 * configure.in (d30v-*): Remove sim directory from list of 12299 unsupported d30v directories 12300 12301Tue Feb 18 17:32:42 1997 Martin M. Hunt <hunt@pizza.cygnus.com> 12302 12303 * config.sub, configure.in: Add d30v target cpu. 12304 12305Thu Feb 13 22:04:44 1997 Klaus Kaempf <kkaempf@progis.de> 12306 12307 * makefile.vms: New file. 12308 * make-all.com: Remove. 12309 12310Wed Feb 12 12:54:18 1997 Jim Wilson <wilson@cygnus.com> 12311 12312 * Makefile.in (EXTRA_GCC_FLAGS): Add LIBGCC2_DEBUG_CFLAGS. 12313 12314Sat Feb 8 20:36:49 1997 Michael Meissner <meissner@cygnus.com> 12315 12316 * Makefile.in (all-itcl): The rule is all-itcl, not all-tcl. 12317 12318Tue Feb 4 11:39:29 1997 Tom Tromey <tromey@cygnus.com> 12319 12320 * Makefile.in (ALL_MODULES): Added all-db. 12321 (CROSS_CHECK_MODULES): Addec check-db. 12322 (INSTALL_MODULES): Added install-db. 12323 (CLEAN_MODULES): Added clean-db. 12324 12325Mon Feb 3 13:29:36 1997 Ian Lance Taylor <ian@cygnus.com> 12326 12327 * config.guess: Merge with latest FSF sources. 12328 12329Tue Jan 28 09:20:37 1997 Tom Tromey <tromey@cygnus.com> 12330 12331 * Makefile.in (ALL_MODULES): Added all-itcl. 12332 (CROSS_CHECK_MODULES): Added check-itcl. 12333 (INSTALL_MODULES): Added install-itcl. 12334 (CLEAN_MODULES): Added clean-itcl. 12335 12336Thu Jan 23 01:44:27 1997 Geoffrey Noer <noer@cygnus.com> 12337 12338 * configure.in: build gdb for mn10200 12339 12340Fri Jan 17 15:32:15 1997 Doug Evans <dje@canuck.cygnus.com> 12341 12342 * Makefile.in (all-target-winsup): Depend on all-target-libio. 12343 12344Mon Jan 13 22:46:54 1997 Michael Meissner <meissner@tiktok.cygnus.com> 12345 12346 * configure.in (tic80-*-*): Turn off most targets right now. 12347 12348Fri Jan 3 16:04:03 1997 Ian Lance Taylor <ian@cygnus.com> 12349 12350 * Makefile.in (MAKEINFO): Check for the existence of the Makefile, 12351 rather than the makeinfo program. 12352 (do-info): Depend upon all-texinfo. 12353 12354Tue Dec 31 16:00:31 1996 Ian Lance Taylor <ian@cygnus.com> 12355 12356 * configure.in: Remove uses of config/mh-linux. 12357 12358 * config.sub, config.guess: Merge with latest FSF sources. 12359 12360Fri Dec 27 23:04:33 1996 Fred Fish <fnf@cygnus.com> 12361 12362 * config.sub (case $basic_machine): Add tic80 entries. 12363 12364Fri Dec 27 12:07:59 1996 Ian Lance Taylor <ian@cygnus.com> 12365 12366 * config.sub, config.guess: Merge with latest FSF sources. 12367 12368Wed Dec 18 22:46:39 1996 Stan Shebs <shebs@andros.cygnus.com> 12369 12370 * mpw-build.in: Build ld before gcc, use NewFolderRecursive. 12371 * mpw-config.in: Test for NewFolderRecursive. 12372 * mpw-install: Use symbolic name for startup filename. 12373 * mpw-README: Add various additional details. 12374 12375Wed Dec 18 13:11:46 1996 Jim Wilson <wilson@cygnus.com> 12376 12377 * configure.in (mips*-sgi-irix6*): Remove binutils from noconfigdirs. 12378 12379Wed Dec 18 10:29:31 1996 Jeffrey A Law (law@cygnus.com) 12380 12381 * configure.in: Do build gcc and the target libraries for 12382 the mn10200. 12383 12384Wed Dec 4 16:53:05 1996 Geoffrey Noer <noer@cygnus.com> 12385 12386 * configure.in: don't avoid building gdb for mn10300 any more 12387 * Makefile.in: double-quote GCC_FOR_TARGET line in EXTRA_GCC_FLAGS 12388 instead of single-quoting it. 12389 12390Tue Dec 3 23:26:50 1996 Jason Merrill <jason@yorick.cygnus.com> 12391 12392 * configure.in: Don't use --with-stabs on IRIX 6. 12393 12394Tue Dec 3 09:05:25 1996 Doug Evans <dje@canuck.cygnus.com> 12395 12396 * configure.in (m32r): Build gdb, libg++ now. 12397 12398Sun Dec 1 00:18:59 1996 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) 12399 12400 * configure.in (mips*-sgi-irix6*): Remove gdb and related 12401 directories from noconfigdirs. 12402 12403Tue Nov 26 11:45:33 1996 Kim Knuttila <krk@cygnus.com> 12404 12405 * config.sub (basic_machine): added mips16 configuration 12406 12407Sat Nov 23 19:26:22 1996 Michael Meissner <meissner@tiktok.cygnus.com> 12408 12409 * config.sub: Handle d10v-unknown. 12410 12411Sat Nov 23 10:23:01 1996 Gavin Koch <gavin@cygnus.com> 12412 12413 * config.sub: Handle v850-unknown. 12414 12415Thu Nov 21 16:19:44 1996 Geoffrey Noer <noer@cygnus.com> 12416 12417 * Makefile.in: add findutils 12418 * configure.in: add findutils to list of host_tools 12419 12420Wed Nov 20 10:09:01 1996 Jeffrey A Law (law@cygnus.com) 12421 12422 * config.sub: Handle mn10200 and mn10300. 12423 12424Tue Nov 19 16:35:14 1996 Michael Meissner <meissner@tiktok.cygnus.com> 12425 12426 * configure.in (d10v-*): Do not build librx. 12427 12428Mon Nov 18 13:28:41 1996 Jeffrey A Law (law@cygnus.com) 12429 12430 * configure.in (mn10300): Build everything except gdb & libgloss. 12431 12432Wed Nov 13 14:59:46 1996 Per Bothner <bothner@deneb.cygnus.com> 12433 12434 * config.guess: Patch for Dansk Data Elektronik servers, 12435 from Niels Skou Olsen <nso@dde.dk>. 12436 12437 For ncr, use /bin/uname rather than uname, since GNU uname does not 12438 support -p. Suggested by Mark Mitchell <mmitchell@usa.net>. 12439 12440 Patch for MIPS R4000 running System V, 12441 from Eric S. Raymond <esr@snark.thyrsus.com>. 12442 12443 Fix thinko for nextstep. 12444 12445 Patch for OSF1 in i?86, from Dan Murphy <dlm@osf.org> via Harlan Stenn. 12446 12447 Sat Jun 24 18:58:17 1995 Morten Welinder <terra+@cs.cmu.edu> 12448 * config.guess: Guess mips-dec-mach_bsd4.3. 12449 12450 Thu Oct 10 04:07:04 1996 Harlan Stenn <harlan@pfcs.com> 12451 * config.guess (i?86-ncr-sysv*): Emit just enough of the minor 12452 release numbers. 12453 * config.guess (mips-mips-riscos*): Emit just enough of the 12454 release number. 12455 12456 Tue Oct 8 10:37:22 1996 Frank Vance <fvance@waii.com> 12457 * config.guess (sparc-auspex-sunos*): Added. 12458 (f300-fujitsu-*): Added. 12459 12460 Wed Sep 25 22:00:35 1996 Jeff Woolsey <woolsey@jlw.com> 12461 * config.guess: Recognize a Tadpole as a sparc. 12462 12463Wed Nov 13 00:53:09 1996 David J. MacKenzie <djm@churchy.gnu.ai.mit.edu> 12464 12465 * config.guess: Don't assume that NextStep version is either 2 or 12466 3. NextStep 4 (aka OpenStep 4) has come out now. 12467 12468Mon Nov 11 23:52:03 1996 David J. MacKenzie <djm@churchy.gnu.ai.mit.edu> 12469 12470 * config.guess: Support Cray T90 that reports itself as "CRAY TS". 12471 From Rik Faith <faith@cs.unc.edu>. 12472 12473Fri Nov 8 11:34:58 1996 David J. MacKenzie <djm@geech.gnu.ai.mit.edu> 12474 12475 * config.sub: Contributions from bug-gnu-utils to: 12476 Support plain "hppa" (no version given) architecture, reported by 12477 OpenStep. 12478 OpenBSD like NetBSD. 12479 LynxOs is not a hardware supplier. 12480 12481 * config.guess: Contributions from bug-gnu-utils to add support for: 12482 OpenBSD like NetBSD. 12483 Stratus systems. 12484 More Pyramid systems. 12485 i[n>4]86 Intel chips. 12486 M680[n>4]0 Motorola chips. 12487 Use unknown instead of lynx for hardware manufacturer. 12488 12489Mon Nov 11 10:09:08 1996 Brendan Kehoe <brendan@lisa.cygnus.com> 12490 12491 * install.sh (chmodcmd): Set to null if the DST directory already 12492 exists. 12493 12494Mon Nov 11 10:43:41 1996 Michael Meissner <meissner@tiktok.cygnus.com> 12495 12496 * configure.in (powerpc*-{eabi,elf,linux,rtem,sysv,solaris}*): Do 12497 not use mt-ppc target Makefile fragment any more. 12498 12499Sun Nov 3 19:17:07 1996 Stu Grossman (grossman@critters.cygnus.com) 12500 12501 * configure.in (*-*-windows): Exclude everything but those dirs 12502 needed to build windows. 12503 12504Tue Oct 29 16:41:31 1996 Doug Evans <dje@canuck.cygnus.com> 12505 12506 * Makefile.in (all-target-winsup): Depend on all-target-librx. 12507 12508Mon Oct 28 17:32:46 1996 Stu Grossman (grossman@critters.cygnus.com) 12509 12510 * configure.in: Exclude mmalloc from i386-windows. 12511 12512Thu Oct 24 09:22:46 1996 Stu Grossman (grossman@critters.cygnus.com) 12513 12514 * Undo my previous change. 12515 12516Thu Oct 24 12:12:04 1996 Ian Lance Taylor <ian@cygnus.com> 12517 12518 * Makefile.in (EXTRA_GCC_FLAGS): Pass down GCC_FOR_TARGET 12519 unconditionally. 12520 (MAKEOVERRIDES): Define (revert this part of October 18 change). 12521 12522Thu Oct 24 09:02:07 1996 Stu Grossman (grossman@critters.cygnus.com) 12523 12524 * Makefile.in (FLAGS_TO_PASS): Add $(HOST_FLAGS) to allow the 12525 host to add it's own flags. 12526 12527Tue Oct 22 15:20:26 1996 Ian Lance Taylor <ian@cygnus.com> 12528 12529 * configure: Handle GCC_FOR_TARGET like CC_FOR_TARGET. 12530 12531Fri Oct 18 13:37:13 1996 Ian Lance Taylor <ian@cygnus.com> 12532 12533 * Makefile.in (CC_FOR_TARGET): Check for xgcc, not Makefile. 12534 (CXX_FOR_TARGET): Likewise. 12535 (GCC_FOR_TARGET): Define. 12536 (BASE_FLAGS_TO_PASS): Remove GCC_FOR_TARGET. 12537 (EXTRA_GCC_FLAGS): Define GCC_FOR_TARGET based on whether 12538 CC_FOR_TARGET was specified on the command line. 12539 (MAKEOVERRIDES): Don't define. 12540 12541Thu Oct 17 10:27:56 1996 Doug Evans <dje@canuck.cygnus.com> 12542 12543 * configure.in (m32r): Fix spelling of libg++ libs. 12544 12545Thu Oct 10 10:37:17 1996 Stan Shebs <shebs@andros.cygnus.com> 12546 12547 * config.sub (-apple*): Remove, now redundant. 12548 12549Thu Oct 10 12:30:54 1996 Ian Lance Taylor <ian@cygnus.com> 12550 12551 * configure: Don't get confused by CPU-VENDOR-linux-gnu. 12552 12553 * configure: Rework yesterday's sed script patch. 12554 12555 * config.sub: Merge with FSF. 12556 12557Wed Oct 9 17:24:59 1996 Per Bothner <bothner@deneb.cygnus.com> 12558 12559 * config.guess: Merge from FSF. 12560 12561 1996-09-12 Richard Stallman <rms@ethanol.gnu.ai.mit.edu> 12562 * config.guess: Use pc instead of unknown, for pc clone systems. 12563 Change linux to linux-gnu. 12564 12565 Mon Jul 15 23:51:11 1996 Karl Heuer <kwzh@gnu.ai.mit.edu> 12566 * config.guess: Avoid non-portable tr syntax. 12567 12568Wed Oct 9 06:06:46 1996 Jeffrey A Law (law@cygnus.com) 12569 12570 * test-build.mk (HOLES): Add "xargs" for gdb. 12571 12572 * configure: Avoid hpux10.20 sed bug. 12573 12574Tue Oct 8 08:32:48 1996 Stu Grossman (grossman@critters.cygnus.com) 12575 12576 * configure.in: Add support for windows host 12577 (that is a build done under the Microsoft build environment). 12578 12579Tue Oct 8 10:39:08 1996 Ian Lance Taylor <ian@cygnus.com> 12580 12581 * Makefile.in: Replace all uses of srcroot with s, to shrink 12582 command line lengths. 12583 12584 Patches from Geoffrey Noer <noer@cygnus.com>: 12585 * configure.in: If configuring for newlib, pass --with-newlib to 12586 subdirectories. 12587 * Makefile.in (CC_FOR_TARGET): If winsup/Makefile exists, pass a 12588 -Bnewlib/ and -Lwinsup to gcc. 12589 (CXX_FOR_TARGET): Likewise. 12590 12591Mon Oct 7 10:59:35 1996 Ian Lance Taylor <ian@cygnus.com> 12592 12593 * Makefile.in (ETC_SUPPORT): Add configure. 12594 12595Fri Oct 4 12:22:58 1996 Angela Marie Thomas (angela@cygnus.com) 12596 12597 * configure.in: Use config/mh-dgux386 for i[345]86-dg-dgux 12598 host configuration file. 12599 12600Thu Oct 3 09:28:25 1996 Jeffrey A Law (law@cygnus.com) 12601 12602 * configure.in: Break mn10x00 support into separate 12603 mn10200 and mn10300 configurations. 12604 * config.sub: Likewise. 12605 12606Wed Oct 2 22:27:52 1996 Jeffrey A Law (law@cygnus.com) 12607 12608 * configure.in: Add lots of stuff to noconfigdirs for 12609 the mn10x00 targets. 12610 12611 * config.sub, configure.in: Add mn10x00 support. 12612 12613Wed Oct 2 15:52:36 1996 Klaus Kaempf <kkaempf@progis.de> 12614 12615 * make-all.com: Call conf-a-gas, not config-a-gas. 12616 12617Tue Oct 1 01:28:41 1996 James G. Smith <jsmith@cygnus.co.uk> 12618 12619 * configure.in (noconfigdirs): Don't build libgloss for arm-coff 12620 targets. 12621 12622Mon Sep 30 14:24:01 1996 Stan Shebs <shebs@andros.cygnus.com> 12623 12624 * mpw-README: Add much more detail for native PowerMac. 12625 * mpw-install: New file. 12626 * mpw-configure: Add --norecursion and --help options. 12627 * mpw-config.in: Translate readme and install files when 12628 copying to objdir. 12629 * mpw-build.in: Don't always depend on byacc and flex. 12630 (install-only-top): New action. 12631 12632Fri Sep 27 17:39:44 1996 Stu Grossman (grossman@critters.cygnus.com) 12633 12634 * configure.in: You can now configure GDB for the v850. 12635 12636Tue Sep 24 19:05:12 1996 Stan Shebs <shebs@andros.cygnus.com> 12637 12638 * configure.in (noconfigdirs): Don't configure any C++ dirs 12639 if targeting D10V. 12640 12641Tue Sep 17 12:15:31 1996 Ian Lance Taylor <ian@cygnus.com> 12642 12643 * config.sub: Recognize mips64vr5000. 12644 12645Mon Sep 16 17:00:52 1996 Ian Lance Taylor <ian@cygnus.com> 12646 12647 * configure.in: Use a single line for host_tools and native_only. 12648 12649Mon Sep 9 12:21:30 1996 Doug Evans <dje@canuck.cygnus.com> 12650 12651 * config.sub, configure.in: Add entries for m32r. 12652 12653Thu Sep 5 13:52:47 1996 Tom Tromey <tromey@creche.cygnus.com> 12654 12655 * Makefile.in (inet-install): Don't run install-gzip. 12656 12657Wed Sep 4 17:26:13 1996 Stu Grossman (grossman@critters.cygnus.com) 12658 12659 * configure.in: Don't config lots of things for *-*-windows*. 12660 12661Sat Aug 31 11:45:57 1996 Stan Shebs <shebs@andros.cygnus.com> 12662 12663 * mpw-config.in: Test for mpw-true, true, and null-command scripts. 12664 (host_libs, host_tools): Copy from configure.in. 12665 * mpw-configure: Don't complain about directories not found. 12666 12667Thu Aug 29 16:44:58 1996 Michael Meissner <meissner@tiktok.cygnus.com> 12668 12669 * configure.in (i[345]86): Recognize i686 for pentium pro. 12670 (i[3456]86-*-dgux*): Use config/mh-sysv for the host configuration 12671 file. 12672 12673 * config.guess (i[345]86): Ditto. 12674 12675Mon Aug 26 18:34:42 1996 Martin M. Hunt <hunt@pizza.cygnus.com> 12676 12677 * configure.in (noconfigdirs): Removed gdb for D10V. 12678 12679Thu Aug 22 17:13:52 1996 Jeffrey A Law (law@cygnus.com) 12680 12681 * configure.in: Remove ld, target-libio, target-libg++, and 12682 target-libstdc++ from noconfigdirs. 12683 12684Wed Aug 21 18:56:38 1996 Fred Fish <fnf@cygnus.com> 12685 12686 * configure: Fix three locations where shell scripts were 12687 being run directly rather than with config_shell. 12688 12689Tue Aug 20 13:08:47 1996 J.T. Conklin <jtc@hippo.cygnus.com> 12690 12691 * configure.in (v850-*-*): Set up initial $noconfigdirs. 12692 * config.sub (basic_machine): Recognize v850. 12693 12694Thu Aug 15 12:19:33 1996 Stan Shebs <shebs@andros.cygnus.com> 12695 12696 * mpw-configure: Handle multiple enable/disable options and 12697 pass them down recursively, handle -c and -s flags appropriately 12698 depending on choice of compiler, add escape mechanism for 12699 quoted arguments to gC. 12700 12701Mon Aug 12 13:15:13 1996 Michael Meissner <meissner@tiktok.cygnus.com> 12702 12703 * configure.in (powerpc*-*-*): For eabi, system V.4, Linux, and 12704 solaris targets, use config/mt-ppc to set C{,XX}FLAGS_FOR_TARGETS 12705 so that -mrelocatable-lib and -mno-eabi are used. 12706 12707 * Makefile.in (CONFIGURE_TARGET_MODULES): If target compiler does 12708 not support --print-multi-lib, don't abort. 12709 12710Thu Aug 8 12:18:59 1996 Klaus Kaempf <kkaempf@progis.de> 12711 12712 * make-all.com: Run config-a-gas. 12713 * setup.com: Don't copy subdirectory files around. 12714 12715Tue Jul 30 17:49:31 1996 Brendan Kehoe <brendan@cygnus.com> 12716 12717 * configure.in (*-*-ose): Remove exclusion of libgloss for this 12718 target, it now compiles correctly. 12719 12720Sat Jul 27 15:10:43 1996 Stan Shebs <shebs@andros.cygnus.com> 12721 12722 * mpw-config.in: Generate Mac include for elf/dwarf2.h. 12723 12724Tue Jul 23 10:47:04 1996 Martin M. Hunt <hunt@pizza.cygnus.com> 12725 12726 * configure.in (d10v-*-*): Remove ld from $noconfigdirs. 12727 12728Mon Jul 22 13:28:51 1996 Brendan Kehoe <brendan@lisa.cygnus.com> 12729 12730 * configure.in (native_only): Add prms. 12731 12732Mon Jul 22 12:27:58 1996 Ian Lance Taylor <ian@cygnus.com> 12733 12734 * Makefile.in (GAS_SUPPORT_DIRS): Add make-all.com and setup.com. 12735 (BINUTILS_SUPPORT_DIRS): Likewise. 12736 12737Thu Jul 18 12:55:40 1996 Michael Meissner <meissner@tiktok.cygnus.com> 12738 12739 * configure.in (d10v-*-*): Don't configure ld or gdb until the 12740 d10v support is added. 12741 12742Wed Jul 17 14:33:09 1996 Martin M. Hunt <hunt@pizza.cygnus.com> 12743 12744 * configure.in (d10v-*-*): New target. 12745 12746Mon Jul 15 11:53:00 1996 Jeffrey A Law (law@cygnus.com) 12747 12748 * config.guess (HP 9000/811): Recognize this as a PA1.1 12749 machine. 12750 12751Fri Jul 12 23:21:17 1996 Ken Raeburn <raeburn@cygnus.com> 12752 12753 * Makefile.in (do-tar-gz): New target, split out from tail end of 12754 taz target. Run each command separately, don't use pipes. 12755 (taz): Use it. 12756 12757Fri Jul 12 12:08:04 1996 Stan Shebs <shebs@andros.cygnus.com> 12758 12759 * mpw-configure: Look for g-mpw-make.sed in config/mpw. 12760 * mpw-build.in: No builds should depend on building byacc or flex, 12761 they are assumed to be installed already. 12762 12763Fri Jul 12 09:52:52 1996 Michael Meissner <meissner@tiktok.cygnus.com> 12764 12765 * Makefile.in (CONFIGURE_TARGET_MODULES): Set r environment 12766 variable that CC_FOR_TARGET needs. 12767 12768Thu Jul 11 10:09:45 1996 Michael Meissner <meissner@tiktok.cygnus.com> 12769 12770 * Makefile.in (CONFIGURE_TARGET_MODULES): Determine if the multlib 12771 options have changed since the last time the subdirectory was 12772 configured, and if it has, reconfigure. 12773 (CLEAN_TARGET_MODULES): Delete multilib.out and tmpmulti.out, which 12774 CONFIGURE_TARGET_MODULES uses to remember the old multilib options. 12775 12776Wed Jul 10 18:56:59 1996 Doug Evans <dje@canuck.cygnus.com> 12777 12778 * Makefile.in (ALL_MODULES,CROSS_CHECK_MODULES,INSTALL_MODULES, 12779 CLEAN_MODULES): Add bash. 12780 (all-bash): New target. 12781 12782Mon Jul 8 17:33:14 1996 Jim Wilson <wilson@cygnus.com> 12783 12784 * configure.in (mips-sgi-irix6*): Use mh-irix6 instead of mh-irix5. 12785 12786Mon Jul 1 13:31:35 1996 Michael Meissner <meissner@tiktok.cygnus.com> 12787 12788 * config.sub (basic_machine): Recognize d10v as a valid processor. 12789 12790Fri Jun 28 12:14:35 1996 Stan Shebs <shebs@andros.cygnus.com> 12791 12792 * mpw-configure: Add support for --bindir. 12793 * mpw-build.in: Use a GCC-specific build script for GCC actions. 12794 12795Wed Jun 26 17:20:12 1996 Geoffrey Noer <noer@cygnus.com> 12796 12797 * configure.in: add bash, time, gawk to list of hosttools and things 12798 to only build for native toolchains 12799 12800Tue Jun 25 23:09:03 1996 Jason Molenda (crash@godzilla.cygnus.co.jp) 12801 12802 * Makefile.in (docdir): Remove. 12803 12804Tue Jun 25 19:00:08 1996 Jason Molenda (crash@godzilla.cygnus.co.jp) 12805 12806 * Makefile.in (datadir): Set to $(prefix)/share. 12807 12808Mon Jun 24 23:26:07 1996 Geoffrey Noer <noer@cygnus.com> 12809 12810 * configure.in: build diff and patch for cygwin32-hosted 12811 toolchains. 12812 12813Mon Jun 24 15:01:12 1996 Joel Sherrill <joel@merlin.gcs.redstone.army.mil> 12814 12815 * config.sub: Accept -rtems*. 12816 12817Sun Jun 23 22:41:54 1996 Geoffrey Noer <noer@cygnus.com> 12818 12819 * configure.in: enable dosrel for cygwin32-hosted builds, 12820 remove diff from the list of things not buildable 12821 via Canadian Cross 12822 12823Sat Jun 22 11:39:01 1996 Jason Merrill <jason@yorick.cygnus.com> 12824 12825 * Makefile.in (TARGET_SUBDIR): Move comment to previous line so we 12826 don't get ". ". 12827 12828Fri Jun 21 17:24:48 1996 Jim Wilson <wilson@cygnus.com> 12829 12830 * configure.in (mips*-sgi-irix6*): Set noconfigdirs appropriately. 12831 12832Thu Jun 20 16:57:40 1996 Ken Raeburn <raeburn@cygnus.com> 12833 12834 * Makefile.in (taz): Handle case where tex3patch didn't even get 12835 checked out. Also, if it was found, put the symlink in a new util 12836 subdirectory. 12837 12838Thu Jun 20 12:20:33 1996 Michael Meissner <meissner@tiktok.cygnus.com> 12839 12840 * config.guess (*:Linux:*:*): Add support for PowerPC Linux. 12841 12842Tue Jun 18 14:24:12 1996 Klaus Kaempf (kkaempf@progis.de) 12843 12844 * config.sub: Recognize -openvms. 12845 * configure.in (alpha*-*-*vms*): Set noconfigdirs. 12846 * make-all.com, setup.com: New files. 12847 12848Mon Jun 17 16:34:46 1996 Jason Merrill <jason@yorick.cygnus.com> 12849 12850 * Makefile.in (taz): tex3patch moved to texinfo/util. 12851 12852Sat Jun 15 17:13:25 1996 Geoffrey Noer <noer@cygnus.com> 12853 12854 * configure: enable_gdbtk=no for cygwin32-hosted toolchains 12855 * configure.in: remove make from disable-if-Can-Cross list 12856 enable gdb if ${host} and ${target} are cygwin32 12857 12858Fri Jun 7 18:16:52 1996 Harlan Stenn <harlan@pfcs.com> 12859 12860 * config.guess (i?86-ncr-sysv*): Emit minor release numbers. 12861 Recognize the NCR 4850 machine and NCR Pentium-based platforms. 12862 12863Wed Jun 5 00:09:17 1996 Per Bothner <bothner@wombat.gnu.ai.mit.edu> 12864 12865 * config.guess: Combine mips-mips-riscos cases, and use cpp to 12866 distinguish sysv/svr4/bsd variants. 12867 Based on a patch from Harlan Stenn <harlan@pfcs.com>. 12868 12869Fri Jun 7 14:24:49 1996 Tom Tromey <tromey@creche.cygnus.com> 12870 12871 * configure.in: Added copyright notice. 12872 * move-if-change: Added copyright notice. 12873 12874Thu Jun 6 16:27:05 1996 Michael Meissner <meissner@tiktok.cygnus.com> 12875 12876 * configure.in (powerpcle-*-solaris*): Until we get shared 12877 libraries working, don't build gdb, sim, make, tcl, tk, or 12878 expect. 12879 12880Tue Jun 4 20:41:45 1996 Per Bothner <bothner@deneb.cygnus.com> 12881 12882 * config.guess: Merge with FSF: 12883 12884 Mon Jun 3 08:49:14 1996 Karl Heuer <kwzh@gnu.ai.mit.edu> 12885 * config.guess (*:Linux:*:*): Add guess for sparc-unknown-linux. 12886 12887 Fri May 24 18:34:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 12888 * config.guess (AViiON:dgux:*:*): Fix typo in recognizing mc88110. 12889 12890 Fri Apr 12 20:03:59 1996 Per Bothner <bothner@spiff.gnu.ai.mit.edu> 12891 * config.guess: Combine two OSF1 rules. 12892 Also recognize field test versions. From mjr@zk3.dec.com. 12893 * config.guess (dgux): Use /usr/bin/uname rather than uname, 12894 because GNU uname does not support -p. From pmr@pajato.com. 12895 12896Tue Jun 4 11:07:25 1996 Tom Tromey <tromey@csk3.cygnus.com> 12897 12898 * Makefile.in (MAKEDIRS): Removed $(tooldir). 12899 12900Tue May 28 12:30:50 1996 Stan Shebs <shebs@andros.cygnus.com> 12901 12902 * mpw-README: Document GCCIncludes. 12903 12904Sun May 26 15:16:27 1996 Fred Fish <fnf@cygnus.com> 12905 12906 * configure.in (alpha-*-linux*): Set enable_shared to yes. 12907 12908Tue May 21 15:41:39 1996 Stan Shebs <shebs@andros.cygnus.com> 12909 12910 * mpw-configure: Handle --enable-FOO and --disable-FOO. 12911 12912Mon May 20 10:12:29 1996 Geoffrey Noer <noer@cygnus.com> 12913 12914 * configure.in (*-*-cygwin32): Configure make. 12915 12916Tue May 7 14:19:42 1996 Tom Tromey <tromey@snuffle.cygnus.com> 12917 12918 * Makefile.in (inet-install): Quote value of INSTALL_MODULES. 12919 12920Fri May 3 08:57:17 1996 Tom Tromey <tromey@lisa.cygnus.com> 12921 12922 * Makefile.in (all-inet): Depend on all-perl. 12923 12924 * Makefile.in (inet-install): New target. 12925 12926 * Makefile.in (all-inet): Depend on all-tcl. 12927 (all-inet): Depend on all-send-pr. 12928 12929Tue Apr 30 13:55:51 1996 Michael Meissner <meissner@tiktok.cygnus.com> 12930 12931 * configure.in (powerpcle-*-solaris*): Turn off tk and tcl 12932 temporarily. 12933 12934Thu Apr 25 11:48:20 1996 Ian Lance Taylor <ian@cygnus.com> 12935 12936 * configure.in: Don't configure --with-gnu-ld on AIX. 12937 12938Thu Apr 25 06:33:36 1996 Michael Meissner <meissner@wogglebug.tiac.net> 12939 12940 * configure.in (powerpcle-*-solaris*): Turn off gdb temporarily. 12941 12942Tue Apr 23 09:07:39 1996 Tom Tromey <tromey@creche.cygnus.com> 12943 12944 * Makefile.in (ALL_MODULES): Added all-inet. 12945 (CROSS_CHECK_MODULES): Added check-inet. 12946 (INSTALL_MODULES): Added install-inet. 12947 (CLEAN_MODULES): Added clean-inet. 12948 (all-indent): New target. 12949 12950 * configure.in (host_tools): Added inet. 12951 (native_only): Added inet. 12952 (noconfigdirs): Added inet. 12953 12954Fri Apr 19 15:35:29 1996 Ian Lance Taylor <ian@cygnus.com> 12955 12956 * configure.in: Don't configure libgloss if we are not configuring 12957 newlib. 12958 12959Wed Apr 17 19:30:01 1996 Rob Savoye <rob@chinadoll.cygnus.com> 12960 12961 * configure.in: Don't configure libgloss for unsupported 12962 architectures. 12963 12964Tue Apr 16 11:17:05 1996 Michael Meissner <meissner@tiktok.cygnus.com> 12965 12966 * Makefile.in (CLEAN_MODULES): Add clean-apache. 12967 12968Mon Apr 15 15:09:05 1996 Tom Tromey <tromey@creche.cygnus.com> 12969 12970 * Makefile.in (ALL_MODULES): Include all-apache. 12971 (CROSS_CHECK_MODULES): Include check-apache. 12972 (INSTALL_MODULES): Include install-apache. 12973 (all-apache): New target. 12974 12975 * configure.in: Added apache everywhere perl is seen. 12976 12977Mon Apr 15 14:59:13 1996 Michael Meissner <meissner@tiktok.cygnus.com> 12978 12979 * Makefile.in: Add support for clean-{module} and 12980 clean-target-{module} rules. 12981 12982Wed Apr 10 21:37:41 PDT 1996 Marilyn E. Sander <msander@cygnus.com> 12983 12984 * configure.in (*-*-ose) do not build libgloss. 12985 12986Mon Apr 8 16:16:20 1996 Michael Meissner <meissner@tiktok.cygnus.com> 12987 12988 * config.guess (prep*:SunOS:5.*:*): Turn into 12989 powerpele-unknown-solaris2. 12990 12991Mon Apr 8 14:45:41 1996 Ian Lance Taylor <ian@cygnus.com> 12992 12993 * configure.in: Permit --enable-shared to specify a list of 12994 directories. 12995 12996Fri Apr 5 08:17:57 1996 Jason Molenda (crash@phydeaux.cygnus.com) 12997 12998 * configure.in (host==solaris): Pass only the first word of $CC 12999 to /usr/bin/which when checking if we're using /usr/ccs/bin/cc. 13000 13001Fri Apr 5 03:16:13 1996 Jason Molenda (crash@phydeaux.cygnus.com) 13002 13003 * Makefile.in (BASE_FLAGS_TO_PASS): pass down $(MAKE). 13004 13005Thu Mar 28 14:11:11 1996 Tom Tromey <tromey@creche.cygnus.com> 13006 13007 * Makefile.in (ALL_MODULES): Include all-perl. 13008 (CROSS_CHECK_MODULES): Include check-perl. 13009 (INSTALL_MODULES): Include install-perl. 13010 (ALL_X11_MODULES): Include all-guile. 13011 (CHECK_X11_MODULES): Include check-guile. 13012 (INSTALL_X11_MODULES): Include install-guile. 13013 (all-perl): New target. 13014 (all-guile): New target. 13015 13016 * configure.in (host_tools): Include perl and guile. 13017 (native_only): Include perl and guile. 13018 (noconfigdirs): Don't build guile and perl; no ports have been 13019 done. 13020 13021Tue Mar 26 21:18:50 1996 Andrew Cagney <cagney@kremvax.highland.com.au> 13022 13023 * configure (--enable-*): Handle quoted option lists such as 13024 --enable-sim-cflags='-g0 -O' better. 13025 13026Thu Mar 21 11:53:08 1996 Michael Meissner <meissner@tiktok.cygnus.com> 13027 13028 * Makefile.in ({,inst}all-target): New rule so we can make and 13029 install all of the target directories easily. 13030 13031Wed Mar 20 18:10:57 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> 13032 13033 * configure.in: Add missing global flag in sed substitution when 13034 deleting `target-' from ${configdirs}. 13035 13036Thu Mar 14 19:15:06 1996 Ian Lance Taylor <ian@cygnus.com> 13037 13038 * Makefile.in (DO_X): Don't get confused if CC contains `=' in an 13039 option. 13040 13041 * configure.in (mips*-nec-sysvr4*): Use a host_makefile_frag of 13042 config/mh-necv4. 13043 13044 * install.sh: Correct misspelling of transformbasename. 13045 13046 * config.guess: Recognize mips-*-sysv*. 13047 13048Mon Mar 11 15:36:42 1996 Dawn Perchik <dawn@critters.cygnus.com> 13049 13050 * config.sub: Recognize mon960. 13051 13052Sun Mar 10 13:18:38 1996 Ian Lance Taylor <ian@cygnus.com> 13053 13054 * configure: Restore Canadian Cross handling of BISON and LEX, 13055 removed in Feb 20 change. 13056 13057Fri Mar 8 20:07:09 1996 Per Bothner <bothner@kalessin.cygnus.com> 13058 13059 * README: Suggestions from Torbjorn Granlund <tege@matematik.su.se>: 13060 Mention make install. Remove the old copyright date as well the 13061 clumsy and rather pointless copyright on the README file. 13062 13063Fri Mar 8 17:51:35 1996 Ian Lance Taylor <ian@cygnus.com> 13064 13065 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): If there is a 13066 Makefile after running symlink-tree, then run `make distclean' to 13067 avoid clobbering any generated files in srcdir. 13068 13069Tue Mar 5 08:21:44 1996 J.T. Conklin <jtc@rtl.cygnus.com> 13070 13071 * configure.in (m68k-*-netbsd*): Build everything now. 13072 13073Wed Feb 28 12:25:46 1996 Jason Merrill <jason@yorick.cygnus.com> 13074 13075 * Makefile.in (taz): Fix quoting. 13076 13077Tue Feb 27 11:33:57 1996 Doug Evans <dje@charmed.cygnus.com> 13078 13079 * configure.in (sparclet-*-*): Build everything now. 13080 13081Tue Feb 27 14:31:51 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> 13082 13083 * configure.in (m68k-*-linux*): New host. 13084 13085Mon Feb 26 14:32:44 1996 Ian Lance Taylor <ian@cygnus.com> 13086 13087 * configure: Check for bison before byacc. 13088 13089Tue Feb 20 23:12:35 1996 Stu Grossman (grossman@critters.cygnus.com) 13090 13091 * Makefile.in configure: Change the way LEX and BISON/YACC are 13092 set. configure now defines DEFAULT_LEX and DEFAULT_YACC by 13093 searching PATH. These are used as fallbacks by Makefile.in if 13094 flex/bison/byacc aren't in objdir. 13095 13096Mon Feb 19 11:45:30 1996 Ian Lance Taylor <ian@cygnus.com> 13097 13098 * Makefile.in: Make everything which depends upon all-bfd also 13099 depend upon all-opcodes, in case --with-commonbfdlib is used. 13100 13101Thu Feb 15 19:50:50 1996 Michael Meissner <meissner@tiktok.cygnus.com> 13102 13103 * configure.in (host *-*-cygwin32): Don't build gdb if we are 13104 building NT native compilers on Unix. 13105 13106Thu Feb 15 17:42:25 1996 Ian Lance Taylor <ian@cygnus.com> 13107 13108 * configure.in: Don't get CC from the host Makefile fragment if we 13109 can find gcc in PATH, or if this is a Canadian Cross. Move the 13110 Solaris test for /usr/ucb/cc to the post target script, just after 13111 the compiler sanity test. 13112 13113Wed Feb 14 16:57:40 1996 Ian Lance Taylor <ian@cygnus.com> 13114 13115 * config.sub: Merge with FSF. 13116 13117Tue Feb 13 14:27:48 1996 Ian Lance Taylor <ian@cygnus.com> 13118 13119 * Makefile.in (RPATH_ENVVAR): New variable. 13120 (REALLY_SET_LIB_PATH): Use it. 13121 * configure.in: On HP/UX, set RPATH_ENVVAR to SHLIB_PATH. 13122 13123Mon Feb 12 15:28:49 1996 Doug Evans <dje@charmed.cygnus.com> 13124 13125 * config.sub, configure.in: Recognize sparclet cpu. 13126 13127Mon Feb 12 15:33:59 1996 Christian Bauernfeind <chrisbfd@theorie3.physik.uni-erlangen.de> 13128 13129 * config.guess: Support m68k-cbm-sysv4. 13130 13131Sat Feb 10 12:06:42 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> 13132 13133 * config.guess (*:Linux:*:*): Guess m68k-unknown-linux and 13134 m68k-unknown-linuxaout from linker help string. Put quotes around 13135 $ld_help_string. 13136 13137Thu Dec 7 09:03:24 1995 Tom Horsley <Tom.Horsley@mail.hcsc.com> 13138 13139 * config.guess (powerpc-harris-powerunix): Add guess for port 13140 to new target. 13141 13142Thu Feb 8 15:37:52 1996 Brendan Kehoe <brendan@lisa.cygnus.com> 13143 13144 * config.guess (UNAME_VERSION): Recognize X4.x as an OSF version. 13145 13146Mon Feb 5 16:36:51 1996 Ian Lance Taylor <ian@cygnus.com> 13147 13148 * configure.in: If --enable-shared was used, set SET_LIB_PATH to 13149 $(REALLY_SET_LIB_PATH) in Makefile. 13150 * Makefile.in (SET_LIB_PATH): New variable. 13151 (REALLY_SET_LIB_PATH): New variable. 13152 ($(DO_X)): Use $(SET_LIB_PATH). 13153 (install.all, gcc-no-fixedincludes, $(ALL_MODULES)): Likewise. 13154 ($(NATIVE_CHECK_MODULES), $(CROSS_CHECK_MODULES)): Likewise. 13155 ($(INSTALL_MODULES), $(CONFIGURE_TARGET_MODULES)): Likewise. 13156 ($(ALL_TARGET_MODULES), $(CHECK_TARGET_MODULES)): Likewise. 13157 ($(INSTALL_TARGET_MODULES), $(ALL_X11_MODULES)): Likewise. 13158 ($(CHECK_X11_MODULES), $(INSTALL_X11_MODULES)): Likewise. 13159 (all-gcc, all-bootstrap, check-gcc, install-gcc): Likewise. 13160 (install-dosrel): Likewise. 13161 (all-opcodes): Depend upon all-libiberty. 13162 13163Sun Feb 4 16:51:11 1996 Steve Chamberlain <sac@slash.cygnus.com> 13164 13165 * config.guess (*:CYGWIN*): New 13166 13167Sat Feb 3 10:42:35 1996 Michael Meissner <meissner@tiktok.cygnus.com> 13168 13169 * Makefile.in (all-target-winsup): All all-target-libiberty. 13170 13171Fri Feb 2 17:58:56 1996 Michael Meissner <meissner@tiktok.cygnus.com> 13172 13173 * configure.in (noconfigdirs): Add missing # in front of comment. 13174 13175Thu Feb 1 14:38:13 1996 Geoffrey Noer <noer@cygnus.com> 13176 13177 * configure.in: add second pass to things added to noconfigdirs 13178 so *-gm-magic can exclude libgloss properly. 13179 13180Thu Feb 1 11:10:16 1996 Stan Shebs <shebs@andros.cygnus.com> 13181 13182 * mpw-configure (extralibs_name, rez_name): Set correctly 13183 for MWC68K compiler. 13184 13185 * mpw-README: Add more info on the necessary build tools. 13186 13187Thu Feb 1 10:22:38 1996 Steve Chamberlain <sac@slash.cygnus.com> 13188 13189 * configure.in, config.sub: Recognize cygwin32. 13190 13191Wed Jan 31 14:17:10 1996 Richard Henderson <rth@tamu.edu> 13192 13193 * config.guess, config.sub: Recognize A/UX. 13194 13195Wed Jan 31 13:52:14 1996 Ian Lance Taylor <ian@cygnus.com> 13196 13197 * config.sub: Merge with gcc/config.sub. 13198 13199Thu Jan 25 11:01:10 1996 Raymond Jou <rjou@mexican.cygnus.com> 13200 13201 * mpw-build.in (do-binutils): Add build of stamps. 13202 13203Thu Jan 25 17:05:26 1996 James G. Smith <jsmith@cygnus.co.uk> 13204 13205 * config.sub: Add recognition for mips64vr4100*-* targets. 13206 13207Wed Jan 24 12:47:55 1996 Brendan Kehoe <brendan@lisa.cygnus.com> 13208 13209 * test-build.mk: Add checking of `hpux9' rather than just `hpux'. 13210 Add creation of gconfigargs with `--enable-shared' turned on. 13211 ($(host)-stamp-stage2-configured): Pass $(gconfigargs). 13212 ($(host)-stamp-stage3-configured): Likewise. 13213 (HOLES): Add chatr and ldd. 13214 (i386-ncr-sysv4.3*): Add use of /usr/ccs/bin in the PATH and HOLE_DIRS. 13215 13216Wed Jan 24 20:32:30 1996 Torbjorn Granlund <tege@noisy.matematik.su.se> 13217 13218 * configure: Pass --nfp to recursive configures. 13219 13220Mon Jan 22 10:41:56 1996 Steve Chamberlain <sac@slash.cygnus.com> 13221 13222 * Makefile.in (DLLTOOL): New. 13223 (DLLTOOL_FOR_TARGET): New. 13224 (EXTRA_HOST_FLAGS): Pass down DLLTOOL. 13225 (EXTRA_TARGET_FLAGS): Ditto. 13226 (EXTRA_GCC_FLAGS): Ditto. 13227 (CONFIGURE_TARGET_MODULES): Ditto. 13228 (DO_X): Ditto. 13229 * configure: Add DLLTOOL. 13230 13231Fri Jan 19 13:30:15 1996 Stan Shebs <shebs@andros.cygnus.com> 13232 13233 SCO OpenServer 5 changes from Robert Lipe <robertl@dgii.com>: 13234 * configure.in (i[345]86-*-sco3.2v5*): Use mh-sysv instead of 13235 mh-sco, since old workarounds no longer needed, and don't 13236 build ld, since libraries have weak symbols in COFF. 13237 13238Sun Jan 14 23:01:31 1996 Fred Fish <fnf@cygnus.com> 13239 13240 * Makefile.in (CONFIGURE_TARGET_MODULES): Add missing ';'. 13241 13242Fri Jan 12 15:25:35 1996 Ian Lance Taylor <ian@cygnus.com> 13243 13244 * configure.in: Make sure that ${CC} can be used to compile an 13245 executable. 13246 13247Sat Jan 6 07:23:33 1996 Michael Meissner <meissner@wogglebug.tiac.net> 13248 13249 * Makefile.in (all-gdb): Depend on $(GDB_TK). 13250 * configure (GDB_TK): Set GDB_TK to either "all-tcl all-tk" or 13251 nothing depending on whether gdbtk is being built. 13252 13253Wed Jan 3 17:54:41 1996 Doug Evans <dje@canuck.cygnus.com> 13254 13255 * Makefile.in (newlib.tar.gz): Delete building of newlib's info files. 13256 13257Mon Jan 1 19:09:14 1996 Brendan Kehoe <brendan@rtl.cygnus.com> 13258 13259 * configure.in (noconfigdirs): Put ld or gas in this early, if the 13260 user specifically used --with-gnu-ld=no or --with-gnu-as=no. 13261 13262Sat Dec 30 16:08:57 1995 Doug Evans <dje@canuck.cygnus.com> 13263 13264 * config-ml.in: Add support for 13265 --disable-{softfloat,m68881,m68000,m68020} on m68*-*-*. 13266 Simplify setting of multidirs from --disable-foo. 13267 13268Fri Dec 29 07:56:11 1995 Michael Meissner <meissner@tiktok.cygnus.com> 13269 13270 * Makefile.in (EXTRA_GCC_FLAGS): If any of the make variables 13271 LANGUAGES, BOOT_CFLAGS, STMP_FIXPROTO, LIMITS_H_TEST, 13272 LIBGCC1_TEST, LIBGCC2_CFLAGS, LIBGCC2_INCLUDES, and ENQUIRE are 13273 non-empty, pass them on to the GCC make. 13274 (all-bootstrap): New rule that is like all-gcc, except it executes 13275 the GCC bootstrap rule instead of the GCC all rule. 13276 13277Wed Dec 27 15:51:48 1995 Doug Evans <dje@canuck.cygnus.com> 13278 13279 * config-ml.in (ml_realsrcdir): New, to account for ${subdir}. 13280 13281Tue Dec 26 11:45:31 1995 Michael Meissner <meissner@tiktok.cygnus.com> 13282 13283 * config.guess (AViiON:dgux:*:*): Update from FSF to add pentium 13284 DG/UX support. 13285 13286Fri Dec 15 10:01:27 1995 Stan Cox <coxs@dg-rtp.dg.com> 13287 13288 * config.sub (i*86*) Change [345] to [3456] 13289 13290Wed Dec 20 17:41:40 1995 Brendan Kehoe <brendan@lisa.cygnus.com> 13291 13292 * configure.in (noconfigdirs): Add gas or ld if --with-gnu-as=no or 13293 --with-gnu-ld=no. 13294 13295Wed Dec 20 15:15:35 1995 Michael Meissner <meissner@tiktok.cygnus.com> 13296 13297 * config-ml.in (rs6000*, powerpc*): Add switches to control which 13298 AIX multilibs get built. 13299 13300Mon Dec 18 17:55:46 1995 Jason Molenda (crash@phydeaux.cygnus.com) 13301 13302 * configure.in (i386-win32): Don't build expect if we're not 13303 building the tcl subdir. 13304 13305Mon Dec 18 11:47:19 1995 Stan Shebs <shebs@andros.cygnus.com> 13306 13307 * Makefile.in: (configure-target-examples, all-target-examples): 13308 New targets, configure and build example programs. 13309 13310Fri Dec 15 16:13:03 1995 Stan Shebs <shebs@andros.cygnus.com> 13311 13312 * mpw-configure: If an mpw-config.in generated a file mk.sed, 13313 use it as input to sedit the generated MPW makefile. 13314 * mpw-README: Add a suggestion about Gestalt.h. 13315 13316Wed Dec 13 16:43:51 1995 Ian Lance Taylor <ian@cygnus.com> 13317 13318 * config.sub: Accept *-*-ieee*. 13319 13320Tue Dec 12 11:52:57 1995 Ian Lance Taylor <ian@cygnus.com> 13321 13322 * Makefile.in (local-distclean): Remove $(TARGET_SUBDIR). From 13323 Ronald F. Guilmette <rfg@monkeys.com>. 13324 13325Mon Dec 11 15:31:58 1995 Jason Molenda (crash@phydeaux.cygnus.com) 13326 13327 * configure.in (host==powerpc-pe): Add many directories to noconfigdirs 13328 for powerpc-pe native. 13329 (target==i386-win32): add tcl, make to noconfigdirs if canadian cross. 13330 (target==powerpc-pe): duplicate i386-win32 entry. 13331 13332Sat Dec 9 14:58:28 1995 Jim Wilson <wilson@chestnut.cygnus.com> 13333 13334 * configure.in (noconfigdirs): Exclude target-newlib for all versions 13335 of vxworks, not just vxworks5.1. 13336 13337Mon Dec 4 12:05:40 1995 Stan Shebs <shebs@andros.cygnus.com> 13338 13339 * mpw-configure: Add support for exec-prefix. 13340 13341Mon Dec 4 10:22:50 1995 Jeffrey A. Law <law@rtl.cygnus.com> 13342 13343 * config.guess: Recognize HP model 816 machines as having 13344 a PA1.1 processor. 13345 13346Mon Dec 4 12:38:15 1995 Ian Lance Taylor <ian@cygnus.com> 13347 13348 * configure: Ignore new autoconf configure options. 13349 13350Thu Nov 30 16:57:33 1995 Per Bothner <bothner@wombat.gnu.ai.mit.edu> 13351 13352 * config.guess: Recognize Pentium under SCO. 13353 From Robert Lipe <robertl@arnet.com>. 13354 13355Wed Nov 29 13:49:08 1995 J.T. Conklin <jtc@rtl.cygnus.com> 13356 13357 * configure.in (noconfigdirs): Disable target-libio on v810-*-*. 13358 13359Wed Nov 29 12:12:01 1995 Ian Lance Taylor <ian@cygnus.com> 13360 13361 * configure.in: Don't configure gas for alpha-dec-osf*. 13362 13363Tue Nov 28 17:16:48 1995 Ian Lance Taylor <ian@cygnus.com> 13364 13365 * configure.in: Default to --with-stabs for some targets for which 13366 it makes sense: mips*-*-*, alpha*-*-osf*, i[345]86*-*-sysv4* and 13367 i[345]86*-*-unixware*. 13368 13369Mon Nov 27 13:44:15 1995 Ian Lance Taylor <ian@cygnus.com> 13370 13371 * config-ml.in: Get list of multidirs using gcc --print-multi-lib 13372 rather than basing it on the target. Simplify handling of options 13373 controlling which directories to configure. Remove extraneous 13374 slash in multi-clean target. 13375 13376Fri Nov 24 17:29:29 1995 Doug Evans <dje@deneb.cygnus.com> 13377 13378 * config-ml.in: Prefix more variables with ml_ so they don't collide 13379 with configure's. 13380 13381Wed Nov 22 11:27:02 1995 Ian Lance Taylor <ian@cygnus.com> 13382 13383 * configure: Don't turn -v into --v. 13384 13385Tue Nov 21 16:48:02 1995 Doug Evans <dje@deneb.cygnus.com> 13386 13387 * configure.in (targargs): Fix typo. 13388 13389 * Makefile.in (DEVO_SUPPORT): Add symlink-tree. 13390 13391Tue Nov 21 14:08:28 1995 Ian Lance Taylor <ian@cygnus.com> 13392 13393 * configure.in: Strip --host and --target options from 13394 CONFIG_ARGUMENTS, and always configure for --host only. Add 13395 --with-cross-host option when building with a cross-compiler. 13396 * configure: Canonicalize the arguments put into config.status by 13397 always using `=' for an option with an argument. Pass a presumed 13398 --host or --target explicitly. 13399 13400Fri Nov 17 17:50:30 1995 Stan Shebs <shebs@andros.cygnus.com> 13401 13402 * config.sub: Merge -macos*, -magic*, -pe*, and -win32 cases 13403 into general OS recognition case. 13404 13405Fri Nov 17 17:42:25 1995 Jason Molenda (crash@phydeaux.cygnus.com) 13406 13407 * configure.in (target_configdirs): add target-winsup only 13408 for win32 target systems. 13409 13410Thu Nov 16 14:04:47 1995 Ian Lance Taylor <ian@cygnus.com> 13411 13412 * Makefile.in (all-target-libgloss): Depend upon 13413 configure-target-newlib, since when libgloss is built it looks to 13414 see if the newlib directory exists. 13415 13416Wed Nov 15 14:47:52 1995 Ken Raeburn <raeburn@cygnus.com> 13417 13418 * Makefile.in (DEVO_SUPPORT): Use config-ml.in instead of 13419 cfg-ml-*.in. 13420 13421Wed Nov 15 11:45:23 1995 Ian Lance Taylor <ian@cygnus.com> 13422 13423 * configure: Handle LD and LD_FOR_TARGET when configuring a 13424 Canadian Cross. 13425 13426Tue Nov 14 14:56:11 1995 Jason Molenda (crash@phydeaux.cygnus.com) 13427 13428 * configure.in (target_libs): add target-winsup. 13429 (target==i386-win32): add patch diff flex make to $noconfigdirs. 13430 (target==ppcle-pe): remove ld from $noconfigdirs. 13431 13432Tue Nov 14 01:25:50 1995 Doug Evans <dje@canuck.cygnus.com> 13433 13434 * Makefile.in (CONFIGURE_TARGET_MODULES): Pass --with-target-subdir. 13435 Preserve relative path names in $srcdir. Build symlink tree if 13436 configuring cross target dir and srcdir=. (= no VPATH support). 13437 (configure-target-libg++): Depend on configure-target-librx. 13438 * cfg-ml-com.in, cfg-ml-pos.in: Deleted. 13439 * config-ml.in: New file. 13440 * symlink-tree: New file. 13441 * configure: Ensure srcdir="." if that's what it is. 13442 13443Mon Nov 13 12:34:20 1995 Stan Shebs <shebs@andros.cygnus.com> 13444 13445 * mpw-README: Clarify some phrasing, add notes about CodeWarrior 13446 includes and FLEX_SKELETON setting. 13447 * mpw-configure (--with-gnu-ld): New option, controls whether 13448 to use PPCLink or ld with PowerMac GCC. 13449 * mpw-build.in (all-grez, do-grez, install-grez): New targets. 13450 * mpw-config.in: Configure grez if targeting Mac. 13451 13452 * config.sub: Accept pmac and pmac-mpw as names for PowerMacs, 13453 accept mpw and mac-mpw as names for m68k Macs, change macos7 to 13454 just macos. 13455 * configure.in: Configure grez resource compiler if targeting Mac. 13456 * Makefile.in (all-grez, install-grez): New targets. 13457 13458Wed Nov 8 17:33:51 1995 Jason Merrill <jason@yorick.cygnus.com> 13459 13460 * configure: CXX defaults to gcc, not g++. If we find 13461 gcc in the path, set CC to gcc -O2. 13462 13463Tue Nov 7 15:45:17 1995 Ian Lance Taylor <ian@cygnus.com> 13464 13465 * configure: Default ${build} correctly. Avoid picking up extra 13466 spaces when reading CC and CXX from Makefile. When doing a 13467 Canadian Cross, use plausible default values for numerous 13468 variables. 13469 * configure.in: When doing a Canadian Cross, don't try to 13470 configure tools whose configure script can't handle it. 13471 13472Mon Nov 6 19:32:17 1995 Jim Wilson <wilson@chestnut.cygnus.com> 13473 13474 * cfg-ml-com.in (sh-*-*): Add m2 and ml/m2 to multidirs. 13475 13476Sun Nov 5 00:15:41 1995 Per Bothner <bothner@kalessin.cygnus.com> 13477 13478 * configure: Remove dubious bug reporting address. 13479 13480Fri Nov 3 08:17:54 1995 Per Bothner <bothner@kalessin.cygnus.com> 13481 13482 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): If subdir has 13483 configure script, run that instead of this directory's configure. 13484 In either case, print a message that we're configuring the sub-dir. 13485 13486Thu Nov 2 23:23:36 1995 Per Bothner <bothner@kalessin.cygnus.com> 13487 13488 * configure.in: Before checking for the existence of various files, 13489 use sed to filter out "target-". 13490 13491Thu Nov 2 13:24:56 1995 Ian Lance Taylor <ian@cygnus.com> 13492 13493 * Makefile.in (DO_X): Split rule to decrease command line length 13494 for systems with small ARG_MAX values. From phdm@info.ucl.ac.be 13495 (Philippe De Muyter). 13496 13497Wed Nov 1 15:18:35 1995 Jason Molenda (crash@phydeaux.cygnus.com) 13498 13499 * Makefile.in (all-patch): depend on all-libiberty. 13500 13501Wed Nov 1 12:23:20 1995 Ian Lance Taylor <ian@cygnus.com> 13502 13503 * configure.in: If the only directory in target_configdirs which 13504 actually exists is libiberty, then set target_configdirs to empty, 13505 to avoid trying to build a target libiberty in a gas or gdb 13506 distribution. 13507 13508Tue Oct 31 17:52:39 1995 J.T. Conklin <jtc@slave.cygnus.com> 13509 13510 * configure.in (host_makefile_frag): Use m68k-sun-sunos* instead 13511 of m68k-sun-* when selecting mh-sun3 to avoid matching NetBSD/sun3 13512 systems. 13513 13514Tue Oct 31 16:57:32 1995 Jim Wilson <wilson@chestnut.cygnus.com> 13515 13516 * configure.in (copy_dirs): Use sys-include instead of include 13517 for --with-headers option. 13518 13519Tue Oct 31 10:29:36 1995 steve chamberlain <sac@slash.cygnus.com> 13520 13521 * Makefile.in, configure.in: Make winsup builds work with 13522 new scheme. 13523 13524Mon Oct 30 18:57:09 1995 Ian Lance Taylor <ian@cygnus.com> 13525 13526 * configure.in: Build the linker on AIX. 13527 13528Mon Oct 30 12:27:16 1995 Per Bothner <bothner@kalessin.cygnus.com> 13529 13530 * Makefile.in (CC_FOR_TARGET, CXX_FOR_TARGET): Add $(TARGET_SUBDIR) 13531 where needed. 13532 13533Mon Oct 30 12:45:25 1995 Doug Evans <dje@cygnus.com> 13534 13535 * Makefile.in (all-gcc): Fix typo. 13536 13537Sat Oct 28 10:27:59 1995 Per Bothner <bothner@kalessin.cygnus.com> 13538 13539 * Makefile.in ($(CHECK_TARGET_MODULES)): Fix typo. 13540 13541Fri Oct 27 23:14:12 1995 Per Bothner <bothner@kalessin.cygnus.com> 13542 13543 * configure.in: Rename libFOO to target-libFOO, and xiberty 13544 to target-xiberty, to provide more flexibility. 13545 (target_subdir): Define. Create if cross. 13546 Set TARGET_SUBDIR in Makefile to ${target_subdir}. 13547 * Makefile.in: Rename all-libFOO -> all-target-libFOO, all-xiberty 13548 -> all-target-libiberty, configure-libFOO -> configure-target-libFOO, 13549 check-libFOO -> check-target-libFOO, etc. 13550 ($(DO_X)): Iterate over TARGET_CONFIGDIRS after SUBDIRS. 13551 ($(CONFIGURE_TARGET_MODULES), $(CHECK_TARGET_MODULES), 13552 $(ALL_TARGET_MODULES), $(INSTALL_TARGET_MODULES)): Update accordingly. 13553 (configure-target-XXX): Depend on $(ALL_GCC), not all-gcc, to 13554 allow ALL_GCC="" to only configure. 13555 (DEVO_SUPPORT): Add cfg-ml-com.in and cfg-ml-pos.in. 13556 (ETC_SUPPORT, ETC_SUPPORT_PFX): Merge; update 'taz' accordingly. 13557 (LIBGXX_SUPPORT_DIRS): Remove xiberty. 13558 13559Sat Oct 28 01:53:49 1995 Ken Raeburn <raeburn@cygnus.com> 13560 13561 * Makefile.in (taz): Build "info" in etc explicitly. 13562 13563Fri Oct 27 09:32:30 1995 Stu Grossman (grossman@cygnus.com) 13564 13565 * configure.in: Make sure that CC is undefined (as opposed to 13566 null) if toplevel/config/mh-{host} doesn't define it. Fixes a 13567 problem with autoconf trying to configure on a host without GCC. 13568 13569Thu Oct 26 22:35:01 1995 Stan Shebs <shebs@andros.cygnus.com> 13570 13571 * mpw-configure: Set host alias from choice of host compiler, 13572 only use generic MPW Makefile sed if present, edit a file 13573 named "hacked_Makefile.in" instead of "Makefile.in" if present. 13574 * mpw-README: Add problem notes about CW6 and CW7. 13575 13576Thu Oct 26 05:45:10 1995 Ken Raeburn <raeburn@kr-pc.cygnus.com> 13577 13578 * Makefile.in (taz): Use ";" instead of ";;". 13579 13580Wed Oct 25 15:18:24 1995 Per Bothner <bothner@kalessin.cygnus.com> 13581 13582 * Makefile.in (taz): Grep for '^diststuff:' or '^info:' in 13583 sub-directory Makefiles, instead of using DISTSTUFFDIRS and 13584 DISTDOCDIRS. 13585 (DISTSTUFFDIRS, DISTDOCDIRS): Removed - no longer used. 13586 (newlib.tar.gz): Don't pass DISTDOCDIRS to recursive make. 13587 13588Wed Oct 25 14:43:55 1995 Per Bothner <bothner@kalessin.cygnus.com> 13589 13590 * Makefile.in (DISTDOCDIRS): Remove ld gprof bnutils gas libg++ gdb 13591 and gnats, because they are now subsumed by DISTSTUFFDIRS. 13592 Move bfd to DISTSTUFFDIRS. 13593 13594Tue Oct 24 18:19:09 1995 Jason Molenda (crash@phydeaux.cygnus.com) 13595 13596 * Makefile.in (X11_LIB): Removed. 13597 (X11_FLAGS_TO_PASS): pass only X11_EXTRA_CFLAGS and X11_EXTRA_LIBS. 13598 13599 * configure.in (host_makefile_frag): mh-aix & mh-sun removed. 13600 13601Sun Oct 22 13:04:42 1995 Michael Meissner <meissner@tiktok.cygnus.com> 13602 13603 * cfg-ml-com.in (powerpc*): Shorten some of the multilib directory 13604 names. 13605 13606Fri Oct 20 18:02:10 1995 Michael Meissner <meissner@tiktok.cygnus.com> 13607 13608 * cfg-ml-com.in (powerpc*-eabi*): Add mcall-aixdesc varients. 13609 13610Thu Oct 19 10:40:57 1995 steve chamberlain <sac@slash.cygnus.com> 13611 13612 * configure.in (i[345]86-*-win32): Always build newlib. 13613 Don't configure cvs, autoconf or texinfo. 13614 * Makefile.in (LD_FOR_TARGET): New. 13615 (BASE_FLAGS_TO_PASS, EXTRA_TARGET_FLAGS, CONFIGURE_TARGET_MODULES): 13616 Pass down LD_FOR_TARGET. 13617 13618Wed Oct 18 15:53:56 1995 steve chamberlain <sac@slash.cygnus.com> 13619 13620 * winsup: New directory. 13621 * Makefile.in: Build winsup. 13622 * configure.in: Winsup is configured when target is win32. 13623 Can only build win32 target GDB when native. 13624 13625Mon Oct 16 09:42:31 1995 Jeffrey A Law (law@cygnus.com) 13626 13627 * config.guess: Recognize HP model 819 machines as having 13628 a PA 1.1 processor. 13629 13630Mon Oct 16 10:49:43 1995 Ian Lance Taylor <ian@cygnus.com> 13631 13632 * configure: Fix sed loop which substitutes for CC and CXX to 13633 avoid bug found in various sed implementations. 13634 13635Wed Oct 11 16:16:20 1995 Michael Meissner <meissner@tiktok.cygnus.com> 13636 13637 * cfg-ml-com.in (powerpc-*-eabisim): Delete separate rule for 13638 simulator. Use standard powerpc-*-eabi*. 13639 13640Mon Oct 9 17:21:56 1995 Ian Lance Taylor <ian@cygnus.com> 13641 13642 * configure.in: Stop putting gas and binutils in noconfigdirs for 13643 powerpc-*-aix* and rs6000-*-*. 13644 13645Mon Oct 9 12:38:40 1995 Michael Meissner <meissner@cygnus.com> 13646 13647 * cfg-ml-com.in (powerpc*-*-eabisim*): Add support for building 13648 -mcall-aixdesc libraries. 13649 13650Fri Oct 6 16:17:57 1995 Ken Raeburn <raeburn@cygnus.com> 13651 13652 Mon Sep 25 22:49:32 1995 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> 13653 13654 * config.sub (arm | armel | armeb): Fix shell syntax. 13655 13656Fri Oct 6 14:40:28 1995 Michael Meissner <meissner@tiktok.cygnus.com> 13657 13658 * cfg-ml-com.in ({powerpc,rs6000}-ibm-aix*): Add multilibs for 13659 -msoft-float and -mcpu=common support. 13660 (powerpc*-*-eabisim*): Add support for building -mcall-aix 13661 libraries. 13662 13663Thu Oct 5 13:26:37 1995 Brendan Kehoe <brendan@lisa.cygnus.com> 13664 13665 * configure.in: Allow configuration and build of emacs19 for the alpha. 13666 13667Wed Oct 4 22:05:36 1995 Jason Molenda (crash@phydeaux.cygnus.com) 13668 13669 * configure.in (CC): Get ^CC, not just any old CC, from 13670 ${host_makefile_frag}. 13671 13672Wed Oct 4 21:55:00 1995 Jason Molenda (crash@phydeaux.cygnus.com) 13673 13674 * configure.in (CC): Try to get CC from 13675 ${srcdir}/${host_makefile_frag}, not ${host_makefile_frag}. 13676 13677Wed Oct 4 21:44:12 1995 Jason Molenda (crash@phydeaux.cygnus.com) 13678 13679 * Makefile.in (TARGET_CONFIGDIRS): configure targetdirs 13680 only if it exists in $(srcdir). 13681 13682Wed Oct 4 11:52:31 1995 Ian Lance Taylor <ian@cygnus.com> 13683 13684 * configure: If CC and CXX are not set in the environment, set 13685 them, based on either an existing Makefile or on searching for gcc 13686 in PATH. Substitute for CC and CXX in Makefile. 13687 * configure.in: Remove libm from target_libs. Separate 13688 target_configdirs from configdirs. If CC is not set in 13689 environment, try to get it from a host Makefile fragment. Rewrite 13690 changes of configdirs to use skipdirs instead. A few minor 13691 tweaks. Take directories out of target_configdirs as they are 13692 taken out of configdirs. Remove existing Makefile files from 13693 subdirectories. Substitute for TARGET_CONFIGDIRS and 13694 CONFIG_ARGUMENTS in Makefile. 13695 * Makefile.in (TARGET_CONFIGDIRS): New variable, automatically set 13696 by configure.in. 13697 (CONFIG_ARGUMENTS): Likewise. 13698 (CONFIGURE_TARGET_MODULES): New variable. 13699 ($(DO_X)): Loop over TARGET_CONFIGDIRS as well as SUBDIRS. 13700 ($(CONFIGURE_TARGET_MODULES)): New target. 13701 (configure-libg++, configure-libio): New targets. 13702 (all-libg++): Depend upon configure-libg++. 13703 (all-libio): Depend upon configure-libio. 13704 (configure-libgloss, all-libgloss): New targets. 13705 (configure-libstdc++): New target. 13706 (all-libstdc++): Depend upon configure-libstdc++. 13707 (configure-librx, all-librx): New targets. 13708 (configure-newlib): New target. 13709 (all-newlib): Depend upon configure-newlib 13710 (configure-xiberty): New target. 13711 (all-xiberty): Depend upon configure-xiberty. 13712 13713Sat Sep 30 04:32:59 1995 Jason Molenda (crash@phydeaux.cygnus.com) 13714 13715 * configure.in (host i[345]86-*-win32): Expand the 13716 noconfigdirs again. 13717 13718Thu Sep 28 21:18:49 1995 Stan Shebs <shebs@andros.cygnus.com> 13719 13720 * mpw-configure: Fix sed command file name. 13721 13722Thu Sep 28 17:39:56 1995 steve chamberlain <sac@slash.cygnus.com> 13723 13724 * configure.in (host i[345]86-*-win32): Reduce the 13725 noconfigdirs again. 13726 13727Wed Sep 27 12:24:00 1995 Ian Lance Taylor <ian@cygnus.com> 13728 13729 * configure.in: Don't configure ld and gdb for powerpc*-*-winnt* 13730 or powerpc*-*-pe*, since they are not yet supported. 13731 13732Tue Sep 26 14:30:01 1995 Stan Shebs <shebs@andros.cygnus.com> 13733 13734 Add PowerMac support and many other enhancements. 13735 * mpw-configure: New option --cc to select compiler to use, 13736 paste options set according to --cc into the generated 13737 Makefile, generate the Makefile by sed'ing the Unix Makefile.in 13738 if mpw-make.sed is present. 13739 * mpw-config.in: Don't test for gC1, test for mpw-touch, 13740 add forward includes for PowerPC include files. 13741 * mpw-build.in: Build using Makefile.PPC if present. 13742 (do-byacc, etc): Remove separate version resource builds. 13743 (do-gas): Build "stamps" before "all". 13744 (do-gcc): Build "stamps-h" and "stamps-c" before "all". 13745 * mpw-README: Update to reflect --cc option, PowerMac support, 13746 and recently-reported compatibility problems. 13747 13748Fri Sep 22 12:15:42 1995 Doug Evans <dje@deneb.cygnus.com> 13749 13750 * cfg-ml-com.in (m68*-*-*): Only build multilibs for 13751 embedded m68k systems (-aout, -coff, -elf, -vxworks). 13752 (--with-multilib-top): Pass to recursive invocations. 13753 13754Tue Sep 19 13:51:05 1995 J.T. Conklin <jtc@blues.cygnus.com> 13755 13756 * configure.in (noconfigdirs): Disable libg++ and libstdc++ on 13757 v810-*-*. 13758 13759Mon Sep 18 23:08:26 1995 J.T. Conklin <jtc@rtl.cygnus.com> 13760 13761 * configure.in (noconfigdirs): Disable bfd, binutils, gas, gcc, 13762 gdb, ld and opcodes on v810-*-*. 13763 13764Tue Sep 12 18:03:31 1995 Ian Lance Taylor <ian@cygnus.com> 13765 13766 * Makefile.in (DO_X): Change do-realclean to do-maintainer-clean. 13767 (local-maintainer-clean): New target. 13768 (maintainer-clean): New target. 13769 (realclean): Just depend upon maintainer-clean. 13770 13771Fri Sep 8 17:11:14 1995 J.T. Conklin <jtc@rtl.cygnus.com> 13772 13773 * configure.in (noconfigdirs): Disable gdb on m68k-*-netbsd*. 13774 13775Fri Sep 8 16:46:29 1995 Ian Lance Taylor <ian@cygnus.com> 13776 13777 * configure.in: Build ld in mips*-*-bsd* case. 13778 13779Thu Sep 7 20:03:41 1995 Ken Raeburn <raeburn@cygnus.com> 13780 13781 * config.sub: Accept -lites* OS. From Ian Dall. 13782 13783Fri Sep 1 08:06:58 1995 James G. Smith <jsmith@beauty.cygnus.com> 13784 13785 * config.sub: recognise mips64vr4300 and mips64vr4300el as valid 13786 targets. 13787 13788Wed Aug 30 21:06:50 1995 Jason Molenda (crash@phydeaux.cygnus.com) 13789 13790 * configure.in: treat i386-win32 canadian cross the same as 13791 i386-go32 canadian cross. 13792 13793Thu Aug 24 14:53:20 1995 Michael Meissner <meissner@tiktok.cygnus.com> 13794 13795 * cfg-ml-com.in (powerpc*-*-eabisim): Add support for PowerPC 13796 running under the simulator to build a reduced set of libraries. 13797 (powerpc-*-eabiaix): Add fine grained multilib support added to 13798 other powerpc targets yesterday. 13799 13800Wed Aug 23 09:41:56 1995 Michael Meissner <meissner@tiktok.cygnus.com> 13801 13802 * cfg-ml-com.in (powerpc*): Add support for -disable-biendian, 13803 -disable-softfloat, -disable-relocatable, -disable-aix, and 13804 -disable-sysv to control which multilib libraries get built. 13805 13806Thu Aug 17 16:03:41 1995 Ken Raeburn <raeburn@kr-laptop.cygnus.com> 13807 13808 * configure: Add Makefile.tem to list of files to remove in trap 13809 handler. 13810 13811Mon Aug 14 19:27:56 1995 Per Bothner <bothner@kalessin.cygnus.com> 13812 13813 * config.guess (*Linux*): Add missing "exit"s. 13814 Also, need specific check for alpha-unknown-linux (uses COFF). 13815 13816Fri Aug 11 15:38:20 1995 Per Bothner <bothner@kalessin.cygnus.com> 13817 13818 * config.guess: Merge with FSF: 13819 13820 Wed Jun 28 17:57:27 1995 David Edelsohn <edelsohn@mhpcc.edu> 13821 * config.guess (AIX4): More robust release numbering discovery. 13822 13823 Thu Jun 22 19:01:24 1995 Kenneth Stailey (kstailey@eagle.dol-esa.gov) 13824 * config.guess (i386-sequent-ptx): Properly get version number. 13825 13826 Thu Jun 22 18:36:42 1995 Uwe Seimet (seimet@iris1.chemie.uni-kl.de) 13827 * config.guess (mips:*:4*:UMIPS): New case. 13828 13829Mon Aug 7 09:21:35 1995 Doug Evans <dje@canuck.cygnus.com> 13830 13831 * configure.in (i386-go32 host): Fix typo (deja-gnu -> dejagnu). 13832 (i386-win32 host): Likewise. Don't build readline. 13833 13834Sat Aug 5 09:51:49 1995 Fred Fish <fnf@rtl.cygnus.com> 13835 13836 * Makefile.in (GDBTK_SUPPORT_DIRS): Define and pass as part of 13837 SUPPORT_FILES to submakes. 13838 13839Fri Aug 4 13:04:36 1995 Fred Fish <fnf@cygnus.com> 13840 13841 * Makefile.in (GDB_SUPPORT_DIRS): Add utils. 13842 (DEVO_SUPPORT): Add mpw-README, mpw-build.in, mpw-config.h and 13843 mpw-configure. 13844 13845Wed Aug 2 16:32:40 1995 Ken Raeburn <raeburn@cygnus.com> 13846 13847 * configure.in (appdirs): Use =, not ==, in test expression when 13848 trying to build the text to print in the warning message for 13849 Solaris users. 13850 13851Mon Jul 31 09:56:18 1995 steve chamberlain <sac@slash.cygnus.com> 13852 13853 * cfg-ml-com.in (z8k-*-coff): Add 'std' multilib build. 13854 13855Fri Jul 28 00:16:31 1995 Jeffrey A. Law <law@rtl.cygnus.com> 13856 13857 * config.guess: Recognize lynx-2.3. 13858 13859Thu Jul 27 15:47:59 1995 steve chamberlain <sac@slash.cygnus.com> 13860 13861 * config.sub (z8ksim): Deleted 13862 (z8k-*-coff): New, this is the one true name of the target. 13863 13864Thu Jul 27 14:33:33 1995 Doug Evans <dje@canuck.cygnus.com> 13865 13866 * cfg-ml-pos.in (dotdot): Work around SunOS sed bug. 13867 13868Thu Jul 27 13:31:05 1995 Fred Fish (fnf@cygnus.com) 13869 13870 * config.guess (*:Linux:*:*): First try asking the linker what the 13871 default object file format is (elf, aout, or coff). Then if this 13872 fails, try previous methods. 13873 13874Thu Jul 27 11:28:17 1995 J.T. Conklin <jtc@rtl.cygnus.com> 13875 13876 * configure.in: Don't build newlib for *-*-vxworks5.1. 13877 13878Thu Jul 27 11:18:47 1995 Brendan Kehoe <brendan@lisa.cygnus.com> 13879 13880 * configure.in: Don't build newlib for a29k-*-vxworks5.1. 13881 * test-build.mk: Add setting of --with-headers for a29k-vxworks5.1. 13882 13883Tue Jul 25 21:25:39 1995 Doug Evans <dje@canuck.cygnus.com> 13884 13885 * cfg-ml-pos.in (MULTITOP): Trim excess trailing "/.". 13886 13887Fri Jul 21 10:41:12 1995 Doug Evans <dje@canuck.cygnus.com> 13888 13889 * cfg-ml-com.in: New file. 13890 * cfg-ml-pos.in: New file. 13891 13892Wed Jul 19 00:37:27 1995 Jeffrey A. Law <law@rtl.cygnus.com> 13893 13894 * COPYING.NEWLIB: Add HP free copyright to list. 13895 13896Tue Jul 18 10:58:51 1995 Michael Meissner <meissner@tiktok.cygnus.com> 13897 13898 * config.sub: Recognize -eabi* for the system, not just -eabi. 13899 13900Mon Jul 3 13:44:51 1995 Steve Chamberlain <sac@slash.cygnus.com> 13901 13902 * Makfile.in (DLLTOOL_FOR_TARGET): New name, pass it down. 13903 * config.sub, configure.in (win32): New target and host. 13904 13905Wed Jun 28 23:57:08 1995 Steve Chamberlain <sac@slash.cygnus.com> 13906 13907 * configure.in: Add i386-pe configuration. 13908 13909Fri Jun 23 14:28:44 1995 Stan Shebs <shebs@andros.cygnus.com> 13910 13911 * mpw-build.in (install): Install GDB after LD. 13912 13913Thu Jun 22 17:10:53 1995 Stan Shebs <shebs@andros.cygnus.com> 13914 13915 * mpw-config.in (elf/mips.h): Always forward-include, needed 13916 for GDB to build. 13917 13918Wed Jun 21 15:17:30 1995 Rob Savoye <rob@darkstar.cygnus.com> 13919 13920 * testsuite: New directory for customer acceptance and whole tool 13921 chain tests. 13922 13923Wed Jun 21 16:50:29 1995 Ken Raeburn <raeburn@cujo.cygnus.com> 13924 13925 * configure: If per-host line isn't found, but AC_OUTPUT is found 13926 and a configure script exists, run it instead. 13927 13928Thu Jun 15 21:09:24 1995 Per Bothner <bothner@kalessin.cygnus.com> 13929 13930 * config.guess: Update from FSF, for alpha-dec-winnt3.5 and Crays. 13931 13932Tue Jun 13 21:43:27 1995 Rob Savoye <rob@darkstar.cygnus.com> 13933 13934 * configure: Set build_{cpu,vendor,os,alias} to host values when 13935 --build isn't specified. 13936 13937Mon Jun 5 18:26:36 1995 Jason Merrill <jason@phydeaux.cygnus.com> 13938 13939 * Makefile.in (PICFLAG, PICFLAG_FOR_TARGET): New macros. 13940 (FLAGS_TO_PASS): Pass them. 13941 (EXTRA_TARGET_FLAGS): Ditto. 13942 13943Wed May 31 22:27:42 1995 Jim Wilson <wilson@chestnut.cygnus.com> 13944 13945 * Makefile.in (all-libg++): Depend on all-libstdc++. 13946 13947Thu May 25 22:40:59 1995 J.T. Conklin <jtc@rtl.cygnus.com> 13948 13949 * configure.in (noconfigdirs): Enable all packages for 13950 i386-unknown-netbsd. 13951 13952Sat May 20 13:22:31 1995 Angela Marie Thomas <angela@cirdan.cygnus.com> 13953 13954 * configure.in (noconfigdirs): Don't configure tk for i386-go32 13955 hosted builds (DOS builds) 13956 13957Thu May 18 18:08:49 1995 Ken Raeburn <raeburn@kr-laptop.cygnus.com> 13958 13959 Changes for ARM based on patches from Richard Earnshaw: 13960 * config.sub: Handle armeb and armel. 13961 * configure.in: Omit arm linker only for riscix. 13962 13963Thu May 11 17:23:26 1995 Per Bothner <bothner@kalessin.cygnus.com> 13964 13965 * config.guess: Update from FSF. 13966 13967Tue May 9 15:52:05 1995 Michael Meissner <meissner@cygnus.com> 13968 13969 * config.sub: Recognize powerpcle as the little endian varient of 13970 the PowerPC. Recgonize ppc as a PowerPC variant, and ppcle as a 13971 powerpcle variant. Convert pentium into i586, not i486. Add p5 13972 alias for i586. Map new x86 variants p6, k5, nexgen into i586 13973 temporarily. 13974 13975Tue May 2 16:29:41 1995 Jeff Law (law@snake.cs.utah.edu) 13976 13977 * configure.in (hppa*-*-lites*): Treat like hppa*-*-*elf*. 13978 13979Sun Apr 30 21:38:09 1995 Jeff Law (law@snake.cs.utah.edu) 13980 13981 * config.sub: Accept -lites* as a basic system type. 13982 13983Thu Apr 27 11:33:29 1995 Michael Meissner (meissner@cygnus.com) 13984 13985 * config.guess (*:Linux:*:*): Check for whether the pre-BFD linker is 13986 installed, and if so return linuxoldld as the system name. 13987 13988Wed Apr 26 10:59:02 1995 Jeff Law (law@snake.cs.utah.edu) 13989 13990 * config.guess: Add hppa1.1-hp-lites support. 13991 13992Tue Apr 25 11:08:11 1995 Rob Savoye <rob@darkstar.cygnus.com> 13993 13994 * configure.in: Don't build newlib for m68k-vxworks5.1. 13995 13996Wed Apr 19 17:02:43 1995 Jim Wilson <wilson@chestnut.cygnus.com> 13997 13998 * configure.in (mips-sgi-irix6): Use mh-irix5. 13999 14000Fri Apr 14 15:21:17 1995 Doug Evans <dje@chestnut.cygnus.com> 14001 14002 * Makefile.in (all-gcc): Depend on all-ld (for libgcc1-test). 14003 14004Wed Apr 12 16:06:01 1995 Jason Merrill <jason@phydeaux.cygnus.com> 14005 14006 * test-build.mk: Enable building of shared libraries on IRIX 5 and 14007 OSF/1. Fix compiler flags. 14008 * build-all.mk: Support Linux and OSF/1 3.0. Fix compiler flags. 14009 14010Tue Apr 11 18:55:40 1995 Doug Evans <dje@canuck.cygnus.com> 14011 14012 * configure.in: Recognize --with-newlib. 14013 (sparc-*-sunos4*): Build sim, dejagnu, expect, tcl if cross target. 14014 14015Mon Apr 10 14:38:20 1995 Jason Molenda (crash@phydeaux.cygnus.com) 14016 14017 * Makefile.in: move {all,check,install}-gdb from *_MODULES 14018 to *_X11_MODULES due to gdbtk needing X include files et al. 14019 14020Mon Apr 10 11:42:22 1995 Stan Shebs <shebs@andros.cygnus.com> 14021 14022 Merge in support for Mac MPW as a host. 14023 (Old change descriptions retained for informational value.) 14024 14025 * mpw-config.in: Add generic include forwards for cpu-specific 14026 include files in aout and elf directories. 14027 14028 * mpw-configure: Added copyright. 14029 * mpw-config.in: Check for presence of required build tools. 14030 (target_libs): Add newlib. 14031 (target_tools): Add examples. 14032 (Read Me): Generate as "Read Me for MPW" instead. 14033 * mpw-build.in: Base sub-builds on all-foo instead of do-foo. 14034 (all-byacc, do-byacc, all-flex, do-flex, do-newlib): New actions. 14035 (do-gas, do-gcc, do-gdb, do-ld): Build Version.r first. 14036 14037 * mpw-configure: Remove subdir-specific makefile hackery, 14038 delete mk.tmp after using it. 14039 14040 * mpw-build.in (all): Display start and end times. 14041 14042 * mpw-configure (host_canonical): Set. 14043 (target_cpu): Always add to makefiles. 14044 (ARCHDEFS, EMUL): Add to makefile only if nonempty. 14045 (TM_FILE, XM_FILE, NM_FILE): No longer add to makefile. 14046 (mpw-mh-mpw): Look for in srcdir and srcroot. 14047 Use sed instead of mpw-edit-prefix to edit prefix definitions. 14048 14049 * mpw-build.in: (install-only): New target. 14050 14051 * mpw-configure (host_alias, target_alias): Rename from hostalias 14052 and targetalias, add into generated Makefile. 14053 (mk.tmp): If present, add into generated Makefile. 14054 * mpw-build.in (all-gas): Build config.h first before gas proper. 14055 14056 * mpw-configure (config.status): Write only if changed. 14057 * mpw-config.in (readline): Configure it (not built, just used for 14058 definitions). 14059 14060 * mpw-config.in (elf/mips.h): Add a forward include. 14061 14062 * mpw-config.in: Forward-include most .h files in include into 14063 extra-include. 14064 (readline): Don't build. 14065 mpw-build.in (install): Install GDB. 14066 14067 * mpw-configure (prefix, mpw_prefix): Handle it. 14068 * mpw-config.in (mmalloc, readline): Don't configure. 14069 * mpw-build.in (thisscript): Rename to ThisScript. 14070 Use mpw-build instead of BuildProgram everywhere. 14071 (mmalloc, readline): Don't build. 14072 * mpw-README: New file, basic documentation about the MPW port. 14073 14074 * mpw-config.in: Use forward-include to create include files. 14075 14076 * mpw-configure: Add more things to the top of each configured 14077 Makefile, including contents of config/mpw-mh-mpw. 14078 * mpw-config.in (extra-include): Create this directory and fill it 14079 with Posix-like include files when configuring. 14080 14081 * config.sub (apple, mac, mpw): Add various aliases. 14082 14083 * mpw-build.in: New file, top-level build script fragment for MPW. 14084 * mpw-configure: New file, configure script for MPW. 14085 * mpw-config.in: New file, config fragment for MPW. 14086 14087Fri Apr 7 19:33:16 1995 Jim Kingdon (kingdon@lioth.cygnus.com) 14088 14089 * configure.in (host_libs): Remove glob, since it is gone from the 14090 sources. 14091 14092Fri Mar 31 11:36:17 1995 Jason Molenda (crash@phydeaux.cygnus.com) 14093 14094 * Makefile.in: define empty GDB_NLM_DEPS var. 14095 14096 * configure.in(target_makefile_frag): use config/mt-netware 14097 for netware targets. 14098 14099Thu Mar 30 13:51:43 1995 Ian Lance Taylor <ian@cygnus.com> 14100 14101 * config.sub: Merge in recent FSF changes. Remove linux special 14102 cases. 14103 14104Tue Mar 28 14:47:34 1995 Jason Molenda (crash@phydeaux.cygnus.com) 14105 14106 Revert this change: 14107 14108 Tue Mar 30 10:03:09 1993 Ian Lance Taylor (ian@cygnus.com) 14109 14110 * build-all.mk: Use CC=cc -Xs on Solaris. 14111 14112Tue Mar 21 10:43:32 1995 Jim Kingdon (kingdon@lioth.cygnus.com) 14113 14114 * glob/*: Removed. Schauer's 24 Feb 1994 readline change made us 14115 stop using it. 14116 * Makefile.in: Nuke all references to glob subdirectory. 14117 14118Thu Mar 16 13:35:30 1995 Jason Merrill <jason@phydeaux.cygnus.com> 14119 14120 * configure.in: Fix --enable-shared logic in per-host. 14121 14122Mon Mar 13 12:33:15 1995 Ian Lance Taylor <ian@cygnus.com> 14123 14124 * configure.in (*-hp-hpux[78]*): Use mh-hpux8. 14125 14126Mon Mar 6 10:21:58 1995 Jim Kingdon (kingdon@lioth.cygnus.com) 14127 14128 * configure.in (noconfigdirs): Don't build gas on AIX, for 14129 powerpc*-*-aix* as well as for rs6000*-*-aix*. 14130 14131Wed Mar 1 12:51:53 1995 Ian Lance Taylor <ian@cygnus.com> 14132 14133 * configure: Fix --cache-file to work if the file argument is a 14134 relative path. 14135 14136Tue Feb 28 17:36:07 1995 Ian Lance Taylor <ian@cygnus.com> 14137 14138 * configure: If the --cache-file is used, pass it down to 14139 configure in subdirectories. 14140 14141Mon Feb 27 12:52:46 1995 Kung Hsu <kung@mexican.cygnus.com> 14142 14143 * config.sub: add vxworks29k configuration. 14144 14145Fri Feb 10 16:12:26 1995 Ken Raeburn <raeburn@cujo.cygnus.com> 14146 14147 * Makefile.in (taz): Do "diststuff" part quietly. 14148 14149Sun Feb 5 14:16:35 1995 Doug Evans <dje@canuck.cygnus.com> 14150 14151 * config.sub: Mini-merge with gcc/config.sub. 14152 14153Sat Feb 4 12:11:35 1995 Jim Wilson <wilson@chestnut.cygnus.com> 14154 14155 * config.guess (IRIX): Sed - to _. 14156 14157Fri Feb 3 11:54:42 1995 J.T. Conklin <jtc@rtl.cygnus.com> 14158 14159 * Makefile.in (source-vault, binary-vault): New targets. 14160 14161Thu Jan 26 13:00:11 1995 Michael Meissner <meissner@cygnus.com> 14162 14163 * config.sub: Recognize -eabi as a basic system type. 14164 14165Thu Jan 12 13:13:23 1995 Jason Merrill <jason@phydeaux.cygnus.com> 14166 14167 * configure.in (enable_shared stuff): Fix typo. 14168 14169Thu Jan 12 01:36:51 1995 deanm@medulla.LABS.TEK.COM (Dean Messing) 14170 14171 * Makefile.in (BASE_FLAGS_TO_PASS): Fix typo in passing LIBCXXFLAGS*. 14172 14173Wed Jan 11 16:29:53 1995 Jason Merrill <jason@phydeaux.cygnus.com> 14174 14175 * Makefile.in (LIBCXXFLAGS_FOR_TARGET): Add -fno-implicit-templates. 14176 14177Mon Jan 9 12:48:01 1995 Jim Kingdon <kingdon@lioth.cygnus.com> 14178 14179 * configure.in (rs6000-*-*): Don't build gas. 14180 14181Wed Jan 4 23:53:49 1995 Ian Lance Taylor <ian@tweedledumb.cygnus.com> 14182 14183 * Makefile.in: Use /x/x/ instead of /brokensed/brokensed/, to 14184 reduce command line length. 14185 (AS_FOR_TARGET): Check for as.new, not Makefile. 14186 (NM_FOR_TARGET): Check for nm.new, not Makefile. 14187 14188Wed Jan 4 13:02:39 1995 Per Bothner <bothner@kalessin.cygnus.com> 14189 14190 * config.guess: Merge from FSF. 14191 14192Thu Dec 15 17:11:37 1994 Ian Lance Taylor <ian@sanguine.cygnus.com> 14193 14194 * configure: Don't use $ when handling program_suffix. 14195 14196Mon Dec 12 12:09:37 1994 Stu Grossman (grossman@cygnus.com) 14197 14198 * configure.in: Configure tk for hppa/hpux. 14199 14200Fri Dec 2 15:55:38 1994 Per Bothner <bothner@kalessin.cygnus.com> 14201 14202 * Makefile.in (LIBGXX_SUPPORT_DIRS): Add libstdc++. 14203 14204Tue Nov 29 19:37:56 1994 Per Bothner <bothner@kalessin.cygnus.com> 14205 14206 * Makefile.in: Move -fno-implicit-template from CXXFLAGS 14207 to LIBCXXFLAGS. Tests are better run without it. 14208 14209Wed Nov 23 10:29:25 1994 Brendan Kehoe (brendan@lisa.cygnus.com) 14210 14211 * Makefile.in (all-ispell): Depend on all-emacs19 instead of all-emacs. 14212 14213Mon Nov 21 11:14:01 1994 J.T. Conklin <jtc@rtl.cygnus.com> 14214 14215 * configure.in (*-*-netware*): Don't configure xiberty. 14216 14217Mon Nov 14 08:49:15 1994 Stu Grossman (grossman@cygnus.com) 14218 14219 * configure.in: Remove tk from native_only list. 14220 14221Fri Nov 11 15:31:26 1994 Bill Cox (bill@rtl.cygnus.com) 14222 14223 * build-all.mk: Add mips-ncd-elf target to sun4 targets 14224 for special NCD build. 14225 14226Mon Nov 7 20:58:17 1994 Ken Raeburn <raeburn@cujo.cygnus.com> 14227 14228 * Makefile.in (DEVO_SUPPORT): Remove configure.bat and 14229 makeall.bat, they're only useful for binutils snapshots. 14230 (binutils.tar.gz, gas+binutils.tar.gz): Add configure.bat and 14231 makeall.bat to specified SUPPORT_FILES. 14232 14233Mon Nov 7 17:25:18 1994 Bill Cox (bill@cirdan.cygnus.com) 14234 14235 * build-all.mk: Add Ericsson targets to sun4 and solaris 14236 hosts. Add BNR's sun4 target to solaris host, so their 14237 build-from-source will be tested in-house first. 14238 14239Sat Nov 5 18:43:30 1994 Jason Merrill (jason@phydeaux.cygnus.com) 14240 14241 * Makefile.in (LIBCFLAGS): New variable. 14242 (CFLAGS_FOR_TARGET): Ditto. 14243 (LIBCFLAGS_FOR_TARGET): Ditto. 14244 (LIBCXXFLAGS): Ditto. 14245 (CXXFLAGS_FOR_TARGET): Ditto. 14246 (LIBCXXFLAGS_FOR_TARGET): Ditto. 14247 (BASE_FLAGS_TO_PASS): Pass them. 14248 (EXTRA_TARGET_FLAGS): Ditto. 14249 14250 * configure.in: Support --enable-shared. 14251 14252Sat Nov 5 15:44:00 1994 Per Bothner <bothner@kalessin.cygnus.com> 14253 14254 * configure.in (target_libs): Include libstdc++ again. 14255 * config.guess: Update from FSF (for FreeBSD). 14256 14257Thu Nov 3 16:32:30 1994 Ken Raeburn <raeburn@cujo.cygnus.com> 14258 14259 * Makefile.in (DEVO_SUPPORT): Include configure.bat and 14260 makeall.bat. 14261 (DISTDOCDIRS): Add `etc'. 14262 (ETC_SUPPORT_PFX): New variable. 14263 (taz): Include anything from etc starting with a word in 14264 ETC_SUPPORT_PFX. 14265 14266Wed Oct 26 16:19:35 1994 Ian Lance Taylor <ian@sanguine.cygnus.com> 14267 14268 * config.sub: Update for recent FSF changes. Remove obsolete 14269 h8300hds entry. Add -windows* and -osx as basic os. Minor 14270 spacing changes. 14271 14272Thu Oct 20 18:41:56 1994 Per Bothner <bothner@kalessin.cygnus.com> 14273 14274 * configure.in (target_libs): Remove libstdc++ for libg++-2.6.1. 14275 14276 * config.guess: Merge with FSF. 14277 * configure.in: Match on i?86-ncr-sysv4.3, not i?86-ncr-sysv43. 14278 14279Thu Oct 20 19:26:56 1994 Ken Raeburn <raeburn@cujo.cygnus.com> 14280 14281 * configure: Since the "trap 0" handler will override the exit 14282 status on many systems, only use it for "exit 1", and make it set 14283 a non-zero exit status; reset it before "exit 0". Also, check 14284 exit status of config.sub, and error out if it failed. 14285 14286Wed Oct 19 18:49:55 1994 Rob Savoye (rob@cygnus.com) 14287 14288 * Makefile.in: (ALL_TARGET_MODULES,INSTALL_TARGET_MODULES) Build 14289 and install libgloss. 14290 14291Tue Oct 18 15:25:24 1994 Ian Lance Taylor <ian@sanguine.cygnus.com> 14292 14293 * Makefile.in (all-binutils): Depend upon all-byacc. 14294 14295 * configure.in: Don't build emacs on Irix 5. 14296 14297Mon Oct 17 16:22:12 1994 J.T. Conklin (jtc@phishhead.cygnus.com) 14298 14299 * configure.in (*-*-netware*): Add libio. 14300 14301Thu Oct 13 15:51:20 1994 Jason Merrill (jason@phydeaux.cygnus.com) 14302 14303 * Makefile.in (ALL_TARGET_MODULES): Add libstdc++. 14304 (CHECK_TARGET_MODULES): Ditto. 14305 (INSTALL_TARGET_MODULES): Ditto. 14306 (TARGET_LIBS): Ditto. 14307 (all-libstdc++): Note dependencies. 14308 14309Thu Oct 13 01:43:08 1994 Ken Raeburn <raeburn@cujo.cygnus.com> 14310 14311 * Makefile.in (BINUTILS_SUPPORT_DIRS): Add gas. 14312 14313Tue Oct 11 12:12:29 1994 Jason Merrill (jason@phydeaux.cygnus.com) 14314 14315 * Makefile.in (CXXFLAGS): Use -fno-implicit-templates instead of 14316 -fexternal-templates. 14317 14318 * configure.in (target_libs): Add libstdc++. 14319 (noconfigdirs): Add libstdc++ as appropriate. 14320 14321Thu Oct 6 18:00:54 1994 Per Bothner (bothner@kalessin.cygnus.com) 14322 14323 * config.guess: Update from FSF. 14324 14325Tue Oct 4 12:05:42 1994 Ian Lance Taylor <ian@sanguine.cygnus.com> 14326 14327 * configure: Use ${config_shell} when running ${configsub}. 14328 14329Mon Oct 3 14:28:34 1994 Doug Evans <dje@canuck.cygnus.com> 14330 14331 * config.sub: No longer recognize h8300h. 14332 14333Mon Oct 3 12:40:54 1994 Ian Lance Taylor <ian@sanguine.cygnus.com> 14334 14335 * config.sub: Remove extraneous differences between config.sub and 14336 gcc/config.sub. 14337 14338Sat Oct 1 00:23:12 1994 Ken Raeburn <raeburn@cujo.cygnus.com> 14339 14340 * Makefile.in (DISTSTUFFDIRS): Add gas. 14341 14342Thu Sep 22 19:04:55 1994 Doug Evans (dje@canuck.cygnus.com) 14343 14344 * COPYING.NEWLIB: New file. 14345 14346Mon Sep 19 18:25:40 1994 Per Bothner (bothner@kalessin.cygnus.com) 14347 14348 * config.guess (HP-UX): Patch from Harlan Stenn 14349 <harlan@landmark.com> to also emit release level. 14350 14351Wed Sep 7 13:15:25 1994 Jim Wilson (wilson@sphagnum.cygnus.com) 14352 14353 * config.guess (sun4*:SunOS:*:*): Change '-JL' to '_JL'. 14354 14355Tue Sep 6 23:23:18 1994 Per Bothner (bothner@kalessin.cygnus.com) 14356 14357 * config.sub: Merge nextstep cleanup from FSF. 14358 14359Mon Sep 5 05:01:30 1994 Ken Raeburn (raeburn@kr-pc.cygnus.com) 14360 14361 * configure.in (arm-*-*): Don't configure ld for this target. 14362 14363Thu Sep 1 09:35:00 1994 J.T. Conklin (jtc@phishhead.cygnus.com) 14364 14365 * configure.in (*-*-netware): don't configure libg++, libio, 14366 librx, or newlib. 14367 14368Wed Aug 31 13:52:08 1994 Ian Lance Taylor (ian@sanguine.cygnus.com) 14369 14370 * configure.in (alpha-dec-osf*): Use osf*, not osf1*. Don't 14371 configure ld--it works, but it doesn't support shared libraries. 14372 14373Sun Aug 28 18:13:45 1994 Per Bothner (bothner@kalessin.cygnus.com) 14374 14375 * config.guess (*-unknown-freebsd*): Get rid of possible 14376 trailing "(Release)" in version string. 14377 Patch from Paul Richards <paul@isl.cf.ac.uk>. 14378 14379Sat Aug 27 15:00:49 1994 Per Bothner (bothner@kalessin.cygnus.com) 14380 14381 * config.guess: Fix i486-ncr-sysv43 -> i486-ncr-sysv4.3. 14382 Fix type: *-next-neststep -> *-next-nextstep. 14383 14384 * config.guess: Merge from FSF: 14385 14386 Fri Aug 26 18:45:25 1994 Philippe De Muyter (phdm@info.ucl.ac.be) 14387 14388 * config.guess: Recognize powerpc-ibm-aix3.2.5. 14389 14390 Wed Apr 20 06:36:32 1994 Philippe De Muyter (phdm@info.ucl.ac.be) 14391 14392 * config.guess: Recognize UnixWare 1.1 (UNAME_SYSTEM is SYSTEM_V 14393 instead of UNIX_SV for UnixWare 1.0). 14394 14395Sat Aug 27 01:56:30 1994 Stu Grossman (grossman@cygnus.com) 14396 14397 * Makefile.in (all-gdb): Add dependencies on all-gcc and all-ld 14398 to make gdb/nlm/* build after the compiler and linker. 14399 14400Fri Aug 26 14:30:05 1994 Per Bothner (bothner@kalessin.cygnus.com) 14401 14402 * config.guess (netbsd, freebsd, linux): Accept any machine, 14403 not just i[34]86. 14404 (m68k-atari-sysv4): Relocate to match FSF version. 14405 14406 * config.guess: More merges from the FSF: 14407 14408 Add a space before function call or macro invocation. 14409 14410 Tue May 10 16:53:55 1994 Roland McGrath (roland@churchy.gnu.ai.mit.edu) 14411 14412 * config.guess: Add trap cmd to remove dummy.c and dummy when 14413 interrupted. 14414 14415 Wed Apr 20 18:07:13 1994 Roland McGrath (roland@churchy.gnu.ai.mit.edu) 14416 14417 * config.guess (dummy.c): Redirect stderr for `hostinfo' command. 14418 (dummy): Redirect stderr from compilation of dummy.c. 14419 14420 Sat Apr 9 14:59:28 1994 Christian Kranz (kranz@sent5.uni-duisburg.de) 14421 14422 * config.guess: Distinguish between NeXTStep 2.1 and 3.x. 14423 14424Fri Aug 26 13:42:20 1994 Ken Raeburn (raeburn@kr-laptop.cygnus.com) 14425 14426 * configure: Accept and ignore --cache*, for compatibility with 14427 new autoconf. 14428 14429Fri Aug 26 13:05:27 1994 Per Bothner (bothner@kalessin.cygnus.com) 14430 14431 * config.guess: Merge from FSF: 14432 14433 Thu Aug 25 20:28:51 1994 Richard Stallman <rms@mole.gnu.ai.mit.edu> 14434 14435 * config.guess (Pyramid*:OSx*:*:*): New case. 14436 (PATH): Add /.attbin at end for finding uname. 14437 (dummy.c): Handle i860-alliant-bsd. Follow whitespace conventions. 14438 14439 Wed Aug 17 18:21:02 1994 Tor Egge (tegge@pvv.unit.no) 14440 14441 * config.guess (M88*:DolphinOS:*:*): New case. 14442 14443 Thu Aug 11 17:00:13 1994 Stan Cox (coxs@dg-rtp.dg.com) 14444 14445 * config.guess (AViiON:dgux:*:*): Use TARGET_BINARY_INTERFACE 14446 to select whether to use ELF or COFF. 14447 14448 Sun Jul 24 16:20:53 1994 Richard Stallman <rms@mole.gnu.ai.mit.edu> 14449 14450 * config.guess: Recognize i860-stardent-sysv and i860-unknown-sysv. 14451 14452 Sun May 1 10:23:10 1994 Richard Stallman (rms@mole.gnu.ai.mit.edu) 14453 14454 * config.guess: Guess the OS version for HPUX. 14455 14456 Tue Mar 1 21:53:03 1994 Karl Heuer (kwzh@hal.gnu.ai.mit.edu) 14457 14458 * config.guess (UNAME_VERSION): Recognize aix3.2.4 and aix3.2.5. 14459 14460Fri Aug 26 11:19:08 1994 Ian Lance Taylor (ian@sanguine.cygnus.com) 14461 14462 * configure.in: Recognize --with-headers, --with-libs, and 14463 --without-newlib. 14464 * Makefile.in (all-xiberty): Depend upon all-ld. 14465 14466Wed Aug 24 12:36:50 1994 Ian Lance Taylor (ian@sanguine.cygnus.com) 14467 14468 * configure.in: Change i[34]86 to i[345]86. 14469 14470Mon Aug 22 10:58:33 1994 Ian Lance Taylor (ian@sanguine.cygnus.com) 14471 14472 * configure (version): A few more tweaks to help message. 14473 14474Fri Aug 19 12:40:25 1994 Per Bothner (bothner@kalessin.cygnus.com) 14475 14476 * Makefile.in: Remove (for now) librx as a host library, 14477 now that we're building it for target. 14478 14479Fri Aug 19 10:49:17 1994 Ian Lance Taylor (ian@sanguine.cygnus.com) 14480 14481 * configure: Fix up help message; from karl@owl.hq.ileaf.com 14482 (Karl Berry). 14483 14484Tue Aug 16 16:11:08 1994 Per Bothner (bothner@kalessin.cygnus.com) 14485 14486 * configure.in: Also configure librx. 14487 14488Mon Aug 15 16:51:45 1994 Per Bothner (bothner@kalessin.cygnus.com) 14489 14490 * Makefile.in: Update various rules to reflect that librx 14491 is now needed for libg++. 14492 14493Fri Aug 12 18:07:21 1994 Ian Lance Taylor (ian@sanguine.cygnus.com) 14494 14495 * config.sub: Accept mips64orion and mips64orionel as a CPU name. 14496 14497Mon Aug 8 11:36:17 1994 Stan Shebs (shebs@andros.cygnus.com) 14498 14499 * configure.in: Configure the examples directory. 14500 14501Thu Aug 4 16:12:36 1994 Ian Lance Taylor (ian@sanguine.cygnus.com) 14502 14503 * configure: Simplify Jun 2 1994 change. 14504 14505Wed Aug 3 04:58:16 1994 D. V. Henkel-Wallace (gumby@cygnus.com) 14506 14507 * change CC to /usr/latest/bin/gcc for lynx host builds, since 14508 /bin/gcc isn't good enough to build gcc. 14509 14510Wed Jul 27 09:07:14 1994 Fred Fish (fnf@cygnus.com) 14511 14512 * Makefile.in (GDB_SUPPORT_FILES): Remove 14513 (setup-dirs-gdb, gdb.tar.gz, make-gdb.tar.gz): Remove old rules. 14514 (gdb.tar.gz): Add new rule to use standard distribution building 14515 mechanism. 14516 14517Mon Jul 25 11:10:06 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com) 14518 14519 * configure.in: Warn about use of /usr/ucb/cc on Solaris. From 14520 Bill Cox <bill@cygnus.com>. 14521 14522Sat Jul 23 12:19:46 1994 Per Bothner (bothner@kalessin.cygnus.com) 14523 14524 * config.guess: Recognize ISC. Patch from kwzh@gnu.ai.mit.edu. 14525 14526Fri Jul 22 17:53:59 1994 Stu Grossman (grossman@cygnus.com) 14527 14528 * configure: Search current dir first in .gdbinit. 14529 14530Fri Jul 22 11:28:30 1994 Per Bothner (bothner@kalessin.cygnus.com) 14531 14532 * config.sub: Recognize freebsd (merged from gcc config.sub). 14533 14534Thu Jul 21 14:10:52 1994 Per Bothner (bothner@kalessin.cygnus.com) 14535 14536 * config.sub: Refer to NeXT's operating system as nextstep. 14537 14538 * config.sub (case $basic_machine): Re-order the cases, to match 14539 the order in the FSF version (which is mostly alphabethical). 14540 Merge in some additions and changes from the FSF. 14541 14542Sat Jul 16 12:03:08 1994 Stan Shebs (shebs@andros.cygnus.com) 14543 14544 * config.guess: Recognize m68k-atari-sysv4 and m88k-harris-csux7. 14545 * config.sub: Recognize cxux7. 14546 * configure.in: Use mh-cxux for m88k-harris-cxux*. 14547 14548Mon Jul 11 14:37:39 1994 Per Bothner (bothner@kalessin.cygnus.com) 14549 14550 * config.sub: Fix typo powerpc -> powerpc-*. 14551 14552Sat Jul 9 13:03:43 1994 Michael Tiemann (tiemann@blues.cygnus.com) 14553 14554 * Makefile.in: `all-emacs19' depends on `all-byacc'. 14555 14556 * Makefile.in: Add all-emacs19 and install-emacs19 rules (in 14557 parallel with all-emacs and install-emacs). Top-level command 14558 `make all-emacs19 CC=gcc' now behaves as `make all-emacs CC=gcc'. 14559 14560Thu Jun 30 16:53:42 1994 Ian Lance Taylor (ian@sanguine.cygnus.com) 14561 14562 * test-build.mk ($(host)-stamp-stage2-installed): Remove 14563 $(relbindir)/make before doing ``make install'', and use 14564 $(GNU_MAKE) while doing it. Avoids problem on SunOS with 14565 installing over running make binary. 14566 ($(host)-stamp-stage3-installed): Likewise. 14567 14568Tue Jun 28 13:43:25 1994 Jim Kingdon (kingdon@lioth.cygnus.com) 14569 14570 * config.guess: Recognize Mach. 14571 14572Mon Jun 27 16:41:14 1994 Ian Lance Taylor (ian@sanguine.cygnus.com) 14573 14574 * configure: Check ${exec_prefixoption}, not ${exec_prefix}, to 14575 see whether --exec-prefix was used. 14576 14577Sun Jun 26 21:15:54 1994 Per Bothner (bothner@kalessin.cygnus.com) 14578 14579 * README: Explicitly mention libg++/README. (Zoo's idea.) 14580 14581Tue Jun 21 12:45:55 1994 Jim Kingdon (kingdon@lioth.cygnus.com) 14582 14583 * Makefile.in: Add all-librx target similar to all-libproc. 14584 14585Wed Jun 8 23:11:55 1994 Stu Grossman (grossman@cygnus.com) 14586 14587 * config.guess: Rearrange tests for Alpha-OSF1 to properly deal 14588 with post 1.2 uname bogosity. 14589 14590Thu Jun 9 00:27:59 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com) 14591 14592 * configure: Remove temporary files on receipt of a signal. 14593 14594Tue Jun 7 12:06:24 1994 Ian Lance Taylor (ian@cygnus.com) 14595 14596 * configure: If there is a package_makefile_frag, remove 14597 ${subdir}/Makefile.tem after copying it in. 14598 14599Mon Jun 6 21:35:02 1994 D. V. Henkel-Wallace (gumby@cygnus.com) 14600 14601 * build_all.mk: support rs6000 lynx identifies itself as 14602 rs6000-lynx-lynxos2.2.2. Also, use /usr/cygnus/progressive/bin/gcc 14603 since /bin/gcc is too feeble to compile a modern gcc. 14604 14605Mon Jun 6 16:06:34 1994 Karen Christiansen (karen@cirdan.cygnus.com) 14606 14607 * brought devo/test-build.mk update-to-date with progressive/ 14608 test-build.mk. Add lynx targets and hppa flag info. 14609 14610Sat Jun 4 17:23:54 1994 Per Bothner (bothner@kalessin.cygnus.com) 14611 14612 * configure.in: Use mh-ncrsvr43. Patch from 14613 Tom McConnell <tmcconne@sedona.intel.com>. 14614 14615Fri Jun 3 17:47:24 1994 Per Bothner (bothner@kalessin.cygnus.com) 14616 14617 * config.guess (i386-unknown-bsdi): No longer need to 14618 check #if defined(__bsdi__) && defined(__i386__). 14619 14620Thu Jun 2 18:56:46 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com) 14621 14622 * configure: Set program_transform_nameoption correctly. 14623 14624Thu Jun 2 10:57:06 1994 Karen Christiansen (karen@cirdan.cygnus.com) 14625 14626 * brought build-all.mk update-to-date with progressive build-all.mk, 14627 added new targets and hppa info. 14628 14629Thu Jun 2 00:12:44 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com) 14630 14631 * configure: If config.guess result is a prefix of the user 14632 specified target, assume a native build and use the user specified 14633 target as the host alias. Remove SunOS patch suffix removal hack. 14634 * configure.in: Remove SunOS patch suffix removal hack. 14635 14636 * Makefile.in (CROSS_CHECK_MODULES): Remove check-flex, since it's 14637 in NATIVE_CHECK_MODULES. 14638 14639Wed Jun 1 10:49:41 1994 Bill Cox (bill@rtl.cygnus.com) 14640 14641 * Makefile.in: Rename HOST_ONLY to NATIVE. 14642 * configure: Delete SunOs patch suffix from host_canonical 14643 and build_canonical variables that are prepended to Makefiles. 14644 * configure.in: Add comments for easier maintenance. 14645 14646Tue May 31 19:39:47 1994 Jim Kingdon (kingdon@lioth.cygnus.com) 14647 14648 * Makefile.in: Add all-libproc target similar to all-gui. 14649 14650Tue May 31 17:16:33 1994 Tom Lord (lord@cygnus.com) 14651 14652 * Makefile.in (CHECK_MODULES): split into 14653 HOST_ONLY_CHECK_MODULES and CROSS_CHECK_MODULES. 14654 14655Tue May 31 16:36:36 1994 Paul Eggert (eggert@twinsun.com) 14656 14657 * config.guess (i386-unknown-bsdi): New system to guess. 14658 14659Wed May 25 16:47:10 1994 Jim Kingdon (kingdon@lioth.cygnus.com) 14660 14661 * Makefile.in: Add all-gui target (but not yet build by "all"). 14662 14663Thu May 26 08:53:19 1994 Bill Cox (bill@rtl.cygnus.com) 14664 14665 * config.sub: Move deletion of patch suffix from here... 14666 * configure.in: To here, at Ian's suggestion. The top- 14667 level scripts might need to know of a patch level. 14668 14669Wed May 25 09:15:54 1994 Bill Cox (bill@rtl.cygnus.com) 14670 14671 * config.sub: Strip off patch suffix so rtl is recognized 14672 as a sunos4.1.3 machine, even though it's been patched. 14673 14674Fri May 20 08:25:49 1994 Steve Chamberlain (sac@deneb.cygnus.com) 14675 14676 * Makefile.in (INSTALL_LAST): Delete. 14677 (INSTALL_DOSREL): New. 14678 14679Thu May 19 17:12:12 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com) 14680 14681 * configure.in: Use ld for i[34]86-*-sysv4* and sparc-*-solaris2*. 14682 Don't set use_gnu_ld to no for *-*-sysv4; that only controls 14683 whether we pass down --with-gnu-ld anyhow. 14684 14685Thu May 19 09:29:12 1994 Steve Chamberlain (sac@cygnus.com) 14686 14687 * Makefile.in (INSTALL_LAST): Change operation so it works 14688 on more flavors of make. 14689 * configure.in (go32): Don't build libg++ or libio. 14690 14691Fri May 13 13:28:34 1994 Steve Chamberlain (sac@cygnus.com) 14692 14693 * Makefile.in (Move HOST_PREFIX_1 and friends up so 14694 they can be overriden by templates. 14695 14696Sat May 7 16:46:44 1994 Steve Chamberlain (sac@cygnus.com) 14697 14698 * configure.in (target==go32): Don't build gdb. 14699 * dosrel: New directory. 14700 14701Fri May 6 14:19:25 1994 Steve Chamberlain (sac@cygnus.com) 14702 14703 * configure.in (host==go32): Configure dosrel too. 14704 * Makefile.in (INTALL_TARGET): Call INSTALL_LAST last. 14705 (HOST_CC, HOST_PREFIX, HOST_PREFIX_1): Undefine, they should 14706 be set by incoming names or templates. 14707 (INSTALL_LAST): New rule. 14708 14709Thu May 5 17:35:05 1994 Stan Shebs (shebs@andros.cygnus.com) 14710 14711 * config.sub (sparclitefrw, sparclitefrwcompat): Don't set the os. 14712 14713Thu May 5 20:06:45 1994 Ken Raeburn (raeburn@cujo.cygnus.com) 14714 14715 * configure.in (appdirs): New variable. Currently empty, but will 14716 be used in gas distribution. If nonempty, lists a set of 14717 directories at least one of which must get configured, or top 14718 level configuration is considered to have failed. 14719 (rs6000-*-lynxos*): Use new file name. 14720 14721Thu May 5 13:38:36 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com) 14722 14723 Eliminate XTRAFLAGS. 14724 * Makefile.in (CC_FOR_TARGET): If newlib exists, refer to the 14725 newlib include files using -idirafter, and also use -nostdinc. 14726 (CXX_FOR_TARGET): Likewise. 14727 (XTRAFLAGS): Removed. 14728 (BASE_FLAGS_TO_PASS): Remove XTRAFLAGS_FOR_TARGET. 14729 (EXTRA_HOST_FLAGS): Remove XTRAFLAGS. 14730 (EXTRA_TARGET_FLAGS, EXTRA_GCC_FLAGS): Likewise. 14731 ($(DO_X)): Don't pass down XTRAFLAGS. 14732 14733Thu May 5 00:16:36 1994 Ken Raeburn (raeburn@kr-pc.cygnus.com) 14734 14735 * configure.in (mips*-dec-bsd*): New target; do build linker. 14736 (mips*-*-bsd*): New target; don't build linker. 14737 14738Wed May 4 20:10:10 1994 D. V. Henkel-Wallace (gumby@cygnus.com) 14739 14740 * configure.in: support rs6000-*-lynxos* configuration. 14741 support sunos4 as a cross target. 14742 14743 * config.sub: look for lynx*, not lynx since the OS version may 14744 legitimately be part of the name. 14745 14746Tue May 3 21:48:11 1994 Ken Raeburn (raeburn@cujo.cygnus.com) 14747 14748 * configure.in (i[34]86-*-sco*): Move to be with other i386 14749 targets. 14750 (romp-*-*): New target. Skip various binary utilities. 14751 (vax-*-*): New target. Don't build newlib. 14752 (vax-*-vms): Renamed from *-*-vms. Don't build opcodes or newlib. 14753 14754Thu Apr 28 15:03:05 1994 David J. Mackenzie (djm@rtl.cygnus.com) 14755 14756 * configure.in: Only set host_makefile_frag if config 14757 directory exists. 14758 14759Wed Apr 27 12:14:30 1994 David J. Mackenzie (djm@rtl.cygnus.com) 14760 14761 * install.sh: If $dstdir exists, don't check whether each 14762 component does. 14763 14764Tue Apr 26 18:11:33 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com) 14765 14766 * test-build.mk (HOLES): Add sleep; used by rcs/src/conf.sh. 14767 14768Mon Apr 25 15:06:34 1994 Stan Shebs (shebs@andros.cygnus.com) 14769 14770 * configure.in (*-*-lynxos*): Don't configure newlib for either 14771 native or cross Lynx. 14772 14773Sat Apr 16 11:58:16 1994 Doug Evans (dje@canuck.cygnus.com) 14774 14775 * config.sub (sparc64-elf): Fix os. 14776 (z8k): Remove duplicate. 14777 14778Thu Apr 14 23:33:17 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com) 14779 14780 * Makefile.in (gcc-no-fixedincludes): Touch gcc/include/fixed, not 14781 gcc/stmp-fixproto, to try to prevent fixproto from being run. 14782 14783Wed Apr 13 15:14:52 1994 Bill Cox (bill@cygnus.com) 14784 14785 * configure: Make file links cleanly even if Lynx fails on 14786 an NFS symlink (at least fail cleanly). 14787 14788Mon Apr 11 10:58:56 1994 Jim Wilson (wilson@sphagnum.cygnus.com) 14789 14790 * test-build.mk (CC): For mips-sgi-irix4, change -XNh1500 to 14791 -XNh2000. 14792 14793Sat Apr 9 15:10:45 1994 David J. Mackenzie (djm@rtl.cygnus.com) 14794 14795 * configure: Unknown options are fatal again. 14796 14797Fri Apr 8 12:01:41 1994 David J. Mackenzie (djm@cygnus.com) 14798 14799 * configure: Ignore --x-includes and --x-libraries, for Autoconf 14800 compatibility. 14801 14802Thu Apr 7 17:31:43 1994 Doug Evans (dje@canuck.cygnus.com) 14803 14804 * build-all.mk: Add `clean' target. 14805 14806Wed Apr 6 20:44:56 1994 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) 14807 14808 * config.guess: Add SINIX support. 14809 * configure.in: Add mips-*-sysv4* support. 14810 14811Mon Apr 4 17:41:44 1994 Doug Evans (dje@canuck.cygnus.com) 14812 14813 * build-all.mk: Document all useful targets. 14814 If canonhost is sparc-sun-solaris2.3, change it to sparc-sun-solaris2. 14815 If canonhost is mips-sgi-irix4.0.5H, change it to mips-sgi-irix4. 14816 14817Thu Mar 31 04:55:57 1994 David J. Mackenzie (djm@rtl.cygnus.com) 14818 14819 * configure: Support --silent, --quiet. 14820 14821Wed Mar 30 21:37:38 1994 David J. Mackenzie (djm@rtl.cygnus.com) 14822 14823 * configure: Support --disable-FEATURE. 14824 14825Tue Mar 29 19:15:05 1994 Jim Kingdon (kingdon@lioth.cygnus.com) 14826 14827 * config.guess: Recognize NCR running SVR4.3. 14828 14829Mon Mar 28 14:55:15 1994 Per Bothner (bothner@kalessin.cygnus.com) 14830 14831 * config.guess: Make BSDI generate i386-unknown-bsd386. 14832 Patch from Paul Eggert <eggert@twinsun.com>. 14833 14834Mon Mar 28 12:54:52 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com) 14835 14836 * configure.in (powerpc-*-aix*): Treat like rs6000-*-*. 14837 14838Sat Mar 26 11:25:48 1994 David J. Mackenzie (djm@rtl.cygnus.com) 14839 14840 * configure: Make unrecognized options give nonfatal warnings 14841 instead of fatal errors, and pass them to any subdirectory 14842 configures in case they recognize them. 14843 Make --x equivalent to --with-x. 14844 14845Fri Mar 25 21:52:10 1994 David J. Mackenzie (djm@rtl.cygnus.com) 14846 14847 * configure: Add --enable-* options. Clean up usage message and 14848 some comments. 14849 14850Thu Mar 24 09:12:53 1994 Doug Evans (dje@canuck.cygnus.com) 14851 14852 * Makefile.in (NM_FOR_TARGET): Build tree version is now nm.new. 14853 14854Sun Mar 20 11:28:22 1994 Jeffrey A. Law (law@snake.cs.utah.edu) 14855 14856 * configure.in (hppa*-*-*): Enable binutils. 14857 14858Sat Mar 19 11:50:16 1994 Jim Kingdon (kingdon@lioth.cygnus.com) 14859 14860 * config.sub: Recognize cisco. 14861 14862Fri Mar 18 16:42:32 1994 Jason Merrill (jason@deneb.cygnus.com) 14863 14864 * Makefile.in (CXXFLAGS): Add -fexternal-templates. 14865 14866Tue Mar 15 11:25:55 1994 Jim Kingdon (kingdon@lioth.cygnus.com) 14867 14868 * config.guess: about target *-hitachi-hiuxwe2, don't print more 14869 than one configuration name. Add comment. 14870 14871Sun Mar 6 23:13:38 1994 Hisashi MINAMINO (minamino@sra.co.jp) 14872 14873 * config.guess: about target *-hitachi-hiuxwe2, fixed 14874 machine guessing order. [Hitachi's CPU_IS_HP_MC68K 14875 macro is incorrect.] 14876 14877Sun Mar 13 09:10:08 1994 Jim Kingdon (kingdon@lioth.cygnus.com) 14878 14879 * Makefile.in (TAGS): Just build TAGS in each subdirectory, rather 14880 than the "make ls" stuff which used to be here. 14881 14882Fri Mar 11 12:52:39 1994 Per Bothner (bothner@kalessin.cygnus.com) 14883 14884 * config.guess: Recognize i[34]86-unknown-freebsd. 14885 From Shawn M Carey <smcarey@rodan.syr.edu>. 14886 14887Thu Mar 3 14:24:21 1994 Per Bothner (bothner@kalessin.cygnus.com) 14888 14889 * configure.in (noconfigdirs for alpha): Remove libg++ and libio. 14890 14891Wed Mar 2 13:28:48 1994 Jim Kingdon (kingdon@deneb.cygnus.com) 14892 14893 * config.guess: Check for ptx. 14894 14895Mon Feb 28 16:46:50 1994 Kung Hsu (kung@mexican.cygnus.com) 14896 14897 * config.sub: Add os9k checking. 14898 14899Thu Feb 24 07:09:04 1994 Jeffrey A. Law (law@snake.cs.utah.edu) 14900 14901 * config.guess: Handle OSF1 running on HPPA processors 14902 14903Fri Feb 18 14:14:00 1994 Ken Raeburn (raeburn@rtl.cygnus.com) 14904 14905 * configure: If subdir configure fails, print out a message with 14906 subdirectory name, in case subdir's configure code didn't identify 14907 itself. 14908 14909Fri Feb 18 12:50:15 1994 Doug Evans (dje@cygnus.com) 14910 14911 * configure.in: Remove embedded newlines from configdirs. 14912 Avoid mismatches of substrings. Fix matching strings at end 14913 of configdirs. 14914 14915Fri Feb 11 15:33:33 1994 Stu Grossman (grossman at cygnus.com) 14916 14917 * config.guess: Add Lynx/rs6000 config support. 14918 14919Tue Feb 8 13:41:09 1994 Ken Raeburn (raeburn@rtl.cygnus.com) 14920 14921 * configure.in (alpha-dec-osf1*, alpha*-*-*): Build gas. 14922 14923Mon Feb 7 15:42:36 1994 Jeffrey A. Law (law@cygnus.com) 14924 14925 * configure.in (hppa*-*-osf*): Treat this just like most other 14926 PA configurations (eg no binutils or ld). 14927 (hppa*-*-*elf*): These configurations have binutils and ld. 14928 14929Sun Feb 6 16:35:07 1994 Jeffrey A. Law (law@snake.cs.utah.edu) 14930 14931 * config.sub (hiux): Fix typo. From m-kasahr@sramhc.sra.co.JP. 14932 14933Sat Feb 5 01:00:33 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com) 14934 14935 * configure.in (rs6000-*-*): Build gas. 14936 14937Wed Feb 2 13:57:57 1994 Jeffrey A. Law (law@snake.cs.utah.edu) 14938 14939 * Makefile.in: Avoid bug in losing hpux sed. 14940 14941Wed Feb 2 14:53:05 1994 Jim Kingdon (kingdon@lioth.cygnus.com) 14942 14943 * Makefile.in, test-build.mk: Remove MUNCH_NM; it was only needed 14944 for GDB and GDB has been fixed to not need it. 14945 14946Sun Jan 30 17:58:06 1994 Ken Raeburn (raeburn@cujo.cygnus.com) 14947 14948 * config.guess: Recognize vax hosts. 14949 14950Fri Jan 28 15:29:38 1994 Ken Raeburn (raeburn@cujo.cygnus.com) 14951 14952 * configure (while loop): Don't use "break 2" inside case 14953 statement -- the case statement isn't an enclosing loop. 14954 14955Mon Jan 24 18:40:06 1994 Per Bothner (bothner@kalessin.cygnus.com) 14956 14957 * config.guess: Clean up NeXT support, to allow nextstep 14958 on Intel machines. Make OS be nextstep. 14959 14960Sun Jan 23 18:47:22 1994 Richard Kenner (kenner@vlsi1.ultra.nyu.edu) 14961 14962 * config.guess: Add alternate forms for Convex. 14963 14964Thu Jan 20 16:13:41 1994 Stu Grossman (grossman at cygnus.com) 14965 14966 * configure: Completely rewrite option processing. Take 14967 advantage of pattern-matching to avoid invoking test frequently. 14968 Also clean up host and target defaulting logic. 14969 14970Mon Jan 17 15:06:56 1994 Ken Raeburn (raeburn@cujo.cygnus.com) 14971 14972 * Makefile.in: Replace all occurrances of "rootme" with "r" and 14973 "$${rootme}" with "$$r", to increase the likelihood that the do-* 14974 commands (plus user environment) will fit SCO limits. 14975 14976Thu Jan 6 11:20:57 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com) 14977 14978 * configure.in: Don't issue warnings about directories which are 14979 not being configured if -norecursion is set. Correct test for 14980 --with-gnu-as and --with-gnu-ld to not get confused by substring 14981 matches. 14982 14983 * configure.in: Don't build gas for alpha-dec-osf1*. 14984 14985Tue Jan 4 17:10:19 1994 Stu Grossman (grossman at cygnus.com) 14986 14987 * configure: Back out Per's change of 12/19/1993. It changes the 14988 behavior of configure in unexpected and confusing ways. 14989 14990 Also, use different delim char when calculating 14991 program_transform_name so that the name can contain slashes. 14992 14993Sat Jan 1 13:45:31 1994 Rob Savoye (rob@darkstar.cygnus.com) 14994 14995 * configure.in, config.sub: Add support for VSTa micro-kernel. 14996 14997Sat Dec 25 20:00:47 1993 Jeffrey A. Law (law@snake.cs.utah.edu) 14998 14999 * configure.in: Nuke hacks which were used to get a special 15000 version of GAS for HPPA configurations. 15001 15002Sun Dec 19 20:40:44 1993 Per Bothner (bothner@kalessin.cygnus.com) 15003 15004 * configure: If only ${target_alias} is given, use that 15005 as the default for ${host_alias}. 15006 * configure: Add missing back-slashes before nested quotes. 15007 15008Wed Dec 15 18:07:18 1993 david d `zoo' zuhn (zoo@andros.cygnus.com) 15009 15010 * Makefile.in (BASE_FLAGS_TO_PASS): add YACC=$(BISON) 15011 15012Tue Dec 14 21:25:33 1993 Per Bothner (bothner@cygnus.com) 15013 15014 * config.guess: Recognize some Tektronix configurations. 15015 From Kaveh R. Ghazi <ghazi@noc.rutgers.edu>. 15016 15017Sat Dec 11 11:18:00 1993 Steve Chamberlain (sac@thepub.cygnus.com) 15018 15019 * config.sub: Match any flavor of SH. 15020 15021Thu Dec 2 17:16:58 1993 Ken Raeburn (raeburn@cujo.cygnus.com) 15022 15023 * configure.in: Don't try to configure newlib for Alpha. 15024 15025Thu Dec 2 14:35:54 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com) 15026 15027 * configure.in: Don't build ld for Irix 5. Don't build gas, 15028 libg++ or libio for any Alpha target. 15029 15030 * configure.in (mips*-sgi-irix5*): New target; use mh-irix5. 15031 15032Wed Dec 1 17:00:33 1993 Jason Merrill (jason@deneb.cygnus.com) 15033 15034 * Makefile.in (GZIPPROG): Renamed from GZIP, which gzip uses for 15035 default arguments -- so it tried to compress itself. 15036 15037Tue Nov 30 13:45:15 1993 david d `zoo' zuhn (zoo@andros.cygnus.com) 15038 15039 * configure.in (notsupp): ensure that a space is always at the end 15040 of the configdirs list, since the grep checks for an explicit space 15041 15042Tue Nov 16 15:04:27 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com) 15043 15044 * configure.in (target i386-sysv4.2): don't build ld, since static 15045 versions of many libraries are not available. 15046 15047Tue Nov 16 14:28:12 1993 Jim Kingdon (kingdon@lioth.cygnus.com) 15048 15049 * config.guess: Recognize Apollos (using environment variables). 15050 * configure.in: Don't configure ld, binutils, or gprof for Apollo. 15051 15052Thu Nov 11 12:03:50 1993 Jim Kingdon (kingdon@lioth.cygnus.com) 15053 15054 * config.guess: Recognize Sony news mips running newsos. 15055 15056Wed Nov 10 16:57:00 1993 Mark Eichin (eichin@cygnus.com) 15057 15058 * Makefile.in (all-cygnus, build-cygnus): "fi else" needs to be 15059 "fi ; else" for bash. 15060 15061Tue Nov 9 15:54:01 1993 Mark Eichin (eichin@cygnus.com) 15062 15063 * Makefile.in (BASE_FLAGS_TO_PASS): pass SHELL. 15064 15065Fri Nov 5 08:07:27 1993 D. V. Henkel-Wallace (gumby@blues.cygnus.com) 15066 15067 * config.sub: accept unixware as an alias for svr4.2. 15068 Fix some inconsistancies with the gcc version. 15069 15070Fri Nov 5 15:14:12 1993 Jim Kingdon (kingdon@lioth.cygnus.com) 15071 15072 * Makefile.in (DISTDOCDIRS): Add gdb. 15073 15074Fri Nov 5 11:59:42 1993 Per Bothner (bothner@kalessin.cygnus.com) 15075 15076 * Makefile.in (DISTDOCDIRS): Add libg++ and libio. 15077 15078Fri Nov 5 10:35:05 1993 Ken Raeburn (raeburn@rover.cygnus.com) 15079 15080 * Makefile.in (taz): Only build "info" in DISTDOCDIRS. 15081 (DISTDOCDIRS): Don't assume libg++ and gdb folks necessarily want 15082 this now. 15083 15084Thu Nov 4 18:58:23 1993 Jim Kingdon (kingdon@lioth.cygnus.com) 15085 15086 * config.sub: Accept hiux* as an OS name. 15087 15088 * Makefile.in: Change RUNTEST_FLAGS back to RUNTESTFLAGS per 15089 etc/make-stds.texi. The underscore came from gcc, and dje now 15090 agrees that RUNTESTFLAGS is the correct name. 15091 15092Thu Nov 4 10:49:01 1993 Per Bothner (bothner@kalessin.cygnus.com) 15093 15094 * install.sh: Remove 'set -e'. It makes any conditionals 15095 in the script useless. 15096 15097 * config.guess: Automatically recognize arm-acorn-riscix 15098 Patch from Richard Earnshaw (rwe11@cl.cam.ac.uk). 15099 15100Thu Nov 04 08:08:04 1993 Jeffrey Wheat (cassidy@cygnus.com) 15101 15102 * Makefile.in: Change RUNTESTFLAGS to RUNTEST_FLAGS 15103 15104Wed Nov 3 22:09:46 1993 Ken Raeburn (raeburn@rtl.cygnus.com) 15105 15106 * Makefile.in (DISTDOCDIRS): New variable. 15107 (taz): Edit local Makefile.in sooner, instead of proto-toplev 15108 Makefile.in later. Build "info" and "dvi" in DISTDOCDIRS. 15109 15110Wed Nov 3 21:31:52 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com) 15111 15112 * configure.in (hppa target): check the source directory for the 15113 pagas sub-directory 15114 15115Wed Nov 3 11:12:22 1993 Doug Evans (dje@canuck.cygnus.com) 15116 15117 * config.sub: Allow -aout* and -elf*. 15118 15119Wed Nov 3 11:08:33 1993 Ken Raeburn (raeburn@rtl.cygnus.com) 15120 15121 * configure.in: Don't build ld on i386-solaris2, same as for 15122 sparc-solaris2. 15123 15124Tue Nov 2 14:21:25 1993 Per Bothner (bothner@kalessin.cygnus.com) 15125 15126 * Makefile.in (taz): Add texinfo/lgpl.texinfo (for libg++). 15127 15128Tue Nov 2 13:38:30 1993 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) 15129 15130 * configure.in: Configure gdb for alpha. 15131 15132Mon Nov 1 10:42:54 1993 Jim Kingdon (kingdon@lioth.cygnus.com) 15133 15134 * Makefile.in (CXXFLAGS): Add -O. 15135 15136Wed Oct 27 10:45:06 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com) 15137 15138 * config.guess: added support for DG Aviion 15139 15140Tue Oct 26 14:37:37 1993 Ken Raeburn (raeburn@rover.cygnus.com) 15141 15142 * configure.in: Produce warning message for subdirectories not 15143 configurable for this host/target combination. Don't try to 15144 configure gdb for vms. 15145 15146Mon Oct 25 11:22:15 1993 Ken Raeburn (raeburn@rover.cygnus.com) 15147 15148 * Makefile.in (taz): Replace "byacc" with "bison -y" in the 15149 appropriate files before making "diststuff". 15150 (DISTBISONFILES): New var: list of files to be edited. 15151 (DISTSTUFFDIRS): Add binutils. 15152 15153Fri Oct 22 20:32:15 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com) 15154 15155 * config.sub: also handle mipsel and mips64el (for little endian mips) 15156 15157Fri Oct 22 07:59:20 1993 Jim Kingdon (kingdon@lioth.cygnus.com) 15158 15159 * configure.in: Add * to end of all OS names. 15160 15161Thu Oct 21 11:38:28 1993 Stan Shebs (shebs@rtl.cygnus.com) 15162 15163 * configure.in: Build newlib for LynxOS native. 15164 15165Wed Oct 20 09:56:12 1993 Jim Kingdon (kingdon@lioth.cygnus.com) 15166 15167 * config.guess: Add support for delta 88k running SVR3. 15168 15169 * configure.in: Add comment about HP compiler vs. emacs. 15170 15171Tue Oct 19 16:02:22 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com) 15172 15173 * configure.in: don't build ld on solaris2 (not a viable option 15174 due to bugs in getpwnam & getpwuid) 15175 15176Tue Oct 19 15:13:56 1993 Ken Raeburn (raeburn@rtl.cygnus.com) 15177 15178 * configure.in: Accept alpha-dec-osf1*, not just -osf1, since 15179 config.guess will produce a full version number. 15180 15181Tue Oct 19 15:58:01 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com) 15182 15183 * configure.in: Build linker and binutils for alpha-dec-osf1. 15184 15185Tue Oct 19 11:41:55 1993 Jim Kingdon (kingdon@lioth.cygnus.com) 15186 15187 * Makefile.in: Remove -O from CXXFLAGS for consistency with CFLAGS, 15188 and gdb/testsuite/Makefile.in. 15189 15190Sat Oct 9 18:39:07 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com) 15191 15192 * configure.in: recognize mips*- instead of mips- 15193 15194Fri Oct 8 14:15:39 1993 Ken Raeburn (raeburn@cygnus.com) 15195 15196 * config.sub: Accept linux*coff and linux*elf as operating 15197 systems. 15198 15199Thu Oct 7 12:57:19 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com) 15200 15201 * config.sub: Recognize mips64, and mips3 as an alias for it. 15202 15203Wed Oct 6 13:54:21 1993 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) 15204 15205 * configure.in: Remove alpha-dec-osf*, no longer necessary now that 15206 gdb knows how to handle OSF/1 shared libraries. 15207 15208Tue Oct 5 11:55:04 1993 Jim Kingdon (kingdon@lioth.cygnus.com) 15209 15210 * configure.in: Recognize hppa*-*-hiux* (currently synonym for hpux). 15211 * config.guess: Recognize Hitachi's HIUX. 15212 * config.sub: Recognize h3050r* and hppahitachi. 15213 Remove redundant cases for hp9k[23]*. 15214 15215Mon Oct 4 16:15:09 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com) 15216 15217 * configure.in: default to '--with-gnu-as' and '--with-gnu-ld' 15218 if gas and ld are in the source tree and are in ${configdirs}. 15219 If ${use_gnu_as} or ${use_gnu_ld} are 'no', then don't set the 15220 --with options (but still pass them down on the command line, 15221 if they were explicitly specified). 15222 15223Fri Sep 24 19:11:13 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com) 15224 15225 * configure: substitute SHELL value in Makefile.in with 15226 ${CONFIG_SHELL} 15227 15228Thu Sep 23 18:05:13 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com) 15229 15230 * configure.in: Build gas, ld, and binutils for *-*-sysv4* and 15231 *-*-solaris2* targets. 15232 15233Sun Sep 19 17:01:41 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com) 15234 15235 * Makefile.in: define M4, and pass it down to sub-makes; 15236 all-autoconf now depends on all-m4 15237 15238Sat Sep 18 00:38:23 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com) 15239 15240 * Makefile.in ({AR,RANLIB}_FOR_TARGET): make contingent on 15241 presence of {ar,ranlib} instead of a configured directory 15242 15243Wed Sep 15 08:41:44 1993 Jim Kingdon (kingdon@cirdan.cygnus.com) 15244 15245 * config.guess: Accept 34?? as well as 33?? for NCR. 15246 15247Mon Sep 13 12:28:43 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com) 15248 15249 * configure.in: grab mt-hppa for HPPA targets; use 'gas ' instead 15250 of 'gas' in sed commands, since 'gash' is now in the tree as well. 15251 15252Fri Sep 10 11:23:52 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com) 15253 15254 * configure: grab values for $(CC) and $(CXX) from the 15255 environment, so that someone can do "CC=gcc configure; make" and 15256 have it work right (matching the way that autoconf works now) 15257 15258 * configure.in, Makefile.in: add support for gash, the tcl 15259 interface to Galaxy 15260 15261 * config.guess: add NetBSD variants (hp300, x86) 15262 15263Thu Sep 9 16:48:52 1993 Jason Merrill (jason@deneb.cygnus.com) 15264 15265 * install.sh: Support -d option (in the manner of SunOS 4 install, 15266 as it is more deterministic than that of GNU install) 15267 (chmodcmd): Set file to mode 755 by default (should also do default 15268 chgrp and chown, but I don't feel like dealing with that now) 15269 15270Tue Sep 7 11:59:39 1993 Doug Evans (dje@canuck.cygnus.com) 15271 15272 * config.sub: Remove h8300hhms alias. 15273 15274Tue Aug 31 11:00:09 1993 Jim Kingdon (kingdon@lioth.cygnus.com) 15275 15276 * configure.in: Match *-*-solaris2* not *-sun-solaris2*. 15277 15278Mon Aug 30 18:29:10 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com) 15279 15280 * Makefile.in (gcc-no-fixedincludes): touch stmp-fixproto as well 15281 as stmp-fixinc 15282 15283Wed Aug 25 16:35:59 1993 K. Richard Pixley (rich@sendai.cygnus.com) 15284 15285 * config.sub: recognize m88110-bug-coff. 15286 15287Tue Aug 24 10:23:24 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com) 15288 15289 * Makefile.in (all-libio): all dependencies on the toolchain used 15290 to build this (gcc, gas, ld, etc) 15291 15292Fri Aug 20 17:24:24 1993 Jim Kingdon (kingdon@lioth.cygnus.com) 15293 15294 * config.guess: Deal with OSF/1 1.3 on alpha. 15295 15296Thu Aug 19 11:43:04 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com) 15297 15298 * install.sh: add some 'else true' clauses for portability 15299 15300 * configure.in: don't build libio for h8[35]00-*-* targets 15301 15302Tue Aug 17 19:02:31 1993 Per Bothner (bothner@kalessin.cygnus.com) 15303 15304 * Makefile.in: Add support for new libio. 15305 15306Sun Aug 15 20:48:55 1993 Jim Kingdon (kingdon@lioth.cygnus.com) 15307 15308 * install.sh: If one command fails, don't try the rest. Don't try 15309 to remove $dsttmp (via trap) unless we have already created it. 15310 If $src doesn't exist, detect it and exit with an error. 15311 15312 * config.guess: Recognize BSD on hp300. 15313 15314Wed Aug 11 18:35:13 1993 Per Bothner (bothner@kalessin.cygnus.com) 15315 15316 * config.guess: Map (9000/[34]??:HP-UX:*:*) to m68k-hp-hpux. 15317 Bug report from "Hamish (H.I.) Macdonald" <hamish@bnr.ca>. 15318 15319Wed Aug 11 15:37:51 1993 Jason Merrill (jason@deneb.cygnus.com) 15320 15321 * Makefile.in (all-send-pr): depends on all-prms 15322 15323Wed Aug 11 16:56:03 1993 Jim Kingdon (kingdon@lioth.cygnus.com) 15324 15325 * config.guess: Fix typo (9000/8??:4.3bsd -> 9000/7??:4.3bsd). 15326 15327Fri Aug 6 14:45:02 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com) 15328 15329 * config.guess: From michael@mercury.cs.mun.ca (Michael Rendell): 15330 Added test for mips-mips-riscos5. 15331 15332Thu Aug 5 15:45:08 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com) 15333 15334 * configure.in: use mh-hp300 for 68k HP hosts 15335 15336Mon Aug 2 11:56:53 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com) 15337 15338 * configure: add support for CONFIG_SHELL, so that you can use 15339 some alternate shell for evaluating configure scripts 15340 15341Sun Aug 1 11:36:27 1993 Fred Fish (fnf@deneb.cygnus.com) 15342 15343 * Makefile.in (make-gdb.tar.gz): Sed bug reporting address 15344 in configure script to bug-gdb@prep.ai.mit.edu when building 15345 distribution archive. 15346 * Makefile.in (COMPRESS): Remove def. 15347 * Makefile.in (gdb.tar.gz, make-gdb.tar.gz): Renamed from 15348 gdb.tar.Z and make-gdb.tar.Z respectively. 15349 * Makefile.in (make-gdb.tar.gz): Now only build gzip'd archive. 15350 * Makefile.in (make-gdb.tar.gz): Minor changes to move closer 15351 to convergence with 'taz' target in Makefile.in. 15352 15353Fri Jul 30 12:34:57 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com) 15354 15355 * install.sh (dsttmp): use trap to ensure that tmp files go 15356 away on error conditions 15357 15358Wed Jul 28 11:57:36 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com) 15359 15360 * Makefile.in (BASE_FLAGS_TO_PASS): remove LOADLIBES 15361 15362Tue Jul 27 12:43:40 1993 Jim Kingdon (kingdon@lioth.cygnus.com) 15363 15364 * Makefile.in (install-dirs): Deal with a prefix like /gnu; 15365 its parent is '/' not ''. 15366 15367 * Makefile.in (DEVO_SUPPORT): Add comments about ChangeLog. 15368 15369Fri Jul 23 09:53:37 1993 Jason Merrill (jason@wahini.cygnus.com) 15370 15371 * configure: if ${newsrcdir}/configure doesn't exist, don't assume 15372 that ${newsrcdir}/configure.in does. 15373 15374Tue Jul 20 11:28:50 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com) 15375 15376 * test-build.mk: support for CONFIG_SHELL 15377 15378Mon Jul 19 21:54:46 1993 Fred Fish (fnf@deneb.cygnus.com) 15379 15380 * config.sub (netware): Add as a basic system type. 15381 15382Wed Jul 14 12:03:11 1993 K. Richard Pixley (rich@sendai.cygnus.com) 15383 15384 * Makefile.in (Makefile): depend on configure.in. Also drop the 15385 $(srcdir)/ from the dependency on Makefile.in. 15386 15387Tue Jul 13 20:10:58 1993 Doug Evans (dje@canuck.cygnus.com) 15388 15389 * config.sub: Recognize h8300hhms as h8300h-hitachi-hms. 15390 (h8300hhms is temporary until multi-libraries are implemented). 15391 * configure.in: Handle h8300h too. 15392 15393Sun Jul 11 17:35:27 1993 Jim Kingdon (kingdon@lioth.cygnus.com) 15394 15395 * config.guess: Recognize dpx/2 as m68k-bull-sysv3. 15396 15397Thu Jul 8 18:26:12 1993 John Gilmore (gnu@cygnus.com) 15398 15399 * configure: Remove extraneous output when guessing host type. 15400 * config.guess: Remove extraneous output when guessing using C 15401 compiler rather than uname, or when guessing fails. 15402 15403Wed Jul 7 17:58:14 1993 david d `zoo' zuhn (zoo at rtl.cygnus.com) 15404 15405 * Makefile.in: remove all.cross and install.cross targets 15406 15407 * configure: remove CROSS=-DCROSS_COMPILE and ALL=all.cross 15408 definitions 15409 15410Tue Jul 6 10:39:44 1993 Steve Chamberlain (sac@phydeaux.cygnus.com) 15411 15412 * configure.in (target sh): Build gprof. 15413 15414Thu Jul 1 16:52:56 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com) 15415 15416 * config.sub: change -solaris to -solaris2 15417 15418Thu Jul 1 15:46:16 1993 Jim Kingdon (kingdon@lioth.cygnus.com) 15419 15420 * configure.in: Use config/mh-riscos for mips-*-sysv*. 15421 15422Wed Jun 30 09:31:58 1993 Ian Lance Taylor (ian@cygnus.com) 15423 15424 * configure: Correct error message for missing Makefile.in to 15425 print correct directory. 15426 15427Tue Jun 29 13:52:16 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com) 15428 15429 * install.sh: kludge around 386BSD shell bug 15430 15431Tue Jun 29 13:06:49 1993 Per Bothner (bothner@rtl.cygnus.com) 15432 15433 * config.guess: Recognize NeXT. 15434 * config.guess: Recognize i486-ncr-sysv4. 15435 * Makefile.in (taz): rm $(TOOL)-$$VER before linking. 15436 15437Tue Jun 29 12:50:57 1993 Ian Lance Taylor (ian@cygnus.com) 15438 15439 * Makefile.in (MAKEINFOFLAGS): New variable. 15440 (FLAGS_TO_PASS): Pass MAKEINFO as MAKEINFO MAKEINFOFLAGS. 15441 * build-all.mk, test-build.mk: Pass down --no-split as 15442 MAKEINFOFLAGS when hosted on DOS. Compile DOS hosted without -g. 15443 15444Thu Jun 24 13:39:11 1993 Per Bothner (bothner@rtl.cygnus.com) 15445 15446 * Makefile.in (DEVO_SUPPORT): Add COPYING COPYING.LIB install.sh. 15447 15448Wed Jun 23 12:59:21 1993 Per Bothner (bothner@rtl.cygnus.com) 15449 15450 * Makefile.in (libg++.tar.z): New rule. 15451 * Makefile.in (taz): Replace 'configure -rm' by 'make distclean'. 15452 * Makefile.in (taz): Only do a single chmod. 15453 15454Fri Jun 18 12:03:10 1993 david d `zoo' zuhn (zoo at majipoor.cygnus.com) 15455 15456 * install.sh: don't use dirname anymore (replaced with sed usage) 15457 15458Thu Jun 17 18:43:42 1993 Fred Fish (fnf@cygnus.com) 15459 15460 * Makefile.in: Change extension for gzip'd files from '.z' to 15461 '.gz' per new FSF standard usage. 15462 15463Thu Jun 17 16:58:50 1993 david d `zoo' zuhn (zoo at majipoor.cygnus.com) 15464 15465 * configure: put quotes around the final value of program_transform_name 15466 15467Tue Jun 15 16:48:51 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com) 15468 15469 * Makefile.in: new install.sh support; update install-info rules 15470 15471Wed Jun 9 12:31:34 1993 Ian Lance Taylor (ian@cygnus.com) 15472 15473 * configure.in: Build diff for crosses, but not for go32 host. 15474 15475 * configure.in: Build gprof only for native, and don't build it 15476 for mips-*-*, rs6000-*-*, or i[34]86-*-sco*. 15477 15478Mon Jun 7 13:12:11 1993 david d `zoo' zuhn (zoo at deneb.cygnus.com) 15479 15480 * configure.in: don't build gas,ld,binutils on for *-*-sysv4 15481 15482Mon Jun 7 11:40:11 1993 Brendan Kehoe (brendan@lisa.cygnus.com) 15483 15484 * configure.in (host_tools): Add prms. 15485 15486Fri Jun 4 13:30:42 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com) 15487 15488 * Makefile.in: install gcc, do installation of $(INSTALL_MODULES) 15489 with $(FLAGS_TO_PASS) on the command line 15490 15491 * config.sub: Recognize lynx and lynxos 15492 15493Fri Jun 4 10:59:56 1993 Ian Lance Taylor (ian@cygnus.com) 15494 15495 * config.sub: Accept -ecoff*, not just -ecoff. 15496 15497Thu Jun 3 17:38:54 1993 Ken Raeburn (raeburn@cambridge.cygnus.com) 15498 15499 * Makefile.in (taz): Use .gz suffix instead of .z. 15500 (binutils.tar.gz, gas+binutils.tar.gz, gas.tar.gz): Fixed target 15501 names. 15502 15503Thu Jun 3 00:27:06 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com) 15504 15505 * Makefile.in (vault-install): add an 'else true' (for Ultrix) 15506 15507Wed Jun 2 18:19:16 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com) 15508 15509 * Makefile.in (install-no-fixedincludes): install gcc last, so 15510 that rebuilds that might happen during 'make install' don't get 15511 bogus gcc include files 15512 15513Wed Jun 2 16:14:10 1993 Ken Raeburn (raeburn@cambridge.cygnus.com) 15514 15515 Change from Utah for HPPA support: 15516 * config.guess: Recognize hppa1.x-hp-bsd. 15517 15518Wed Jun 2 11:53:33 1993 Per Bothner (bothner@rtl.cygnus.com) 15519 15520 * config.guess: Add support for Motorola Delta 68k, up to r3v7. 15521 Patch from pot@fly.cnuce.cnr.it (Francesco Potorti`). 15522 15523Tue Jun 1 17:48:42 1993 Rob Savoye (rob at darkstar.cygnus.com) 15524 15525 * config.sub: Add support for rom68k and bug boot monitors. 15526 15527Mon May 31 09:36:37 1993 Jim Kingdon (kingdon@cygnus.com) 15528 15529 * Makefile.in: Make all-opcodes depend on all-bfd. 15530 15531Thu May 27 08:05:31 1993 Ian Lance Taylor (ian@cygnus.com) 15532 15533 * config.guess: Added special check for i[34]86-univel-sysv4*. 15534 15535Wed May 26 16:33:40 1993 Ian Lance Taylor (ian@cygnus.com) 15536 15537 * config.guess: For i[34]86-unknown-sysv4 use UNAME_MACHINE for 15538 the processor rather than assuming i486. 15539 15540Wed May 26 09:40:18 1993 Jim Kingdon (kingdon@lioth.cygnus.com) 15541 15542 * config.guess: Recognize SunOS6 as Solaris3. 15543 15544Tue May 25 23:03:11 1993 Per Bothner (bothner@cygnus.com) 15545 15546 * config.guess: Fix typo. Avoid #elif (not in K&R 1). 15547 Recognize SunOS 5.* only (and not [6-9].*) as being Solaris2. 15548 15549Tue May 25 12:44:18 1993 Ian Lance Taylor (ian@cygnus.com) 15550 15551 * build-all.mk (all-cross): New target for Canadian Cross. 15552 Added Q2 go32 targets. 15553 * test-build.mk: Configure go32 cross sparclite-aout and 15554 mips-idt-ecoff -with-gnu-ld. Moved build binary directory from 15555 PARTIAL_HOLE_DIRS to BUILD_HOLES_DIRS. 15556 15557Mon May 24 15:30:06 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com) 15558 15559 * configure.in: fix Alpha GDB typo; also, don't build DejaGnu for 15560 GO32 hosted toolchains 15561 15562Mon May 24 14:18:41 1993 Rob Savoye (rob at darkstar.cygnus.com) 15563 15564 * configure: change so "-exec-prefix" gets passed down rather 15565 than "-exec_prefix" so autoconf generated Makefiles get the 15566 exec_prefix set right. 15567 15568Fri May 21 10:42:25 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com) 15569 15570 * config.guess: get the Solaris2 minor version number 15571 15572 * Makefile.in: add standards.texi and make-stds.texi to ETC_SUPPORT 15573 15574Fri May 21 06:20:52 1993 Brendan Kehoe (brendan@lisa.cygnus.com) 15575 15576 * config.guess: Recognize some Sequent platforms. 15577 15578Thu May 20 14:33:48 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com) 15579 15580 * Makefile.in: added the vault-install target 15581 15582 * configure.in: actually use the Sun3 makefile fragment that's in 15583 config, also added the release dir to configdirs 15584 15585Thu May 20 14:19:18 1993 Ken Raeburn (raeburn@cambridge.cygnus.com) 15586 15587 * Makefile.in (taz): Fix modes on stuff in $(TOOL) dir also. 15588 15589Tue May 18 20:26:41 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com) 15590 15591 * configure.in: remove some program from Alpha targetted toolchains 15592 15593Tue May 18 15:23:19 1993 Ken Raeburn (raeburn@cygnus.com) 15594 15595 * Makefile.in (DISTSTUFFDIRS): Renamed from PROTODIRS. Add ld and 15596 gprof. 15597 (taz): Run "make diststuff" in those directories instead of "make 15598 proto-dir". Look for "VERSION=" only at start of line in subdir 15599 Makefile. Use "gzip -9" for compression. 15600 (TEXINFO_SUPPORT, DIST_SUPPORT, BINUTILS_SUPPORT_DIRS): New vars. 15601 (binutils.tar.z): New target. 15602 15603Mon May 17 17:01:15 1993 Ken Raeburn (raeburn@deneb.cygnus.com) 15604 15605 * Makefile.in (taz): Include gpl.texinfo. 15606 15607Fri May 14 06:48:38 1993 Ken Raeburn (raeburn@deneb.cygnus.com) 15608 15609 * Makefile.in (setup-dirs): Merged into "taz" target. 15610 (taz): Only do `proto-dir' stuff if a directory is actually needed 15611 for this target. 15612 15613Wed May 12 13:09:44 1993 Ian Lance Taylor (ian@cygnus.com) 15614 15615 * Makefile.in (MUNCH_NM): New variable, defined to be $(NM). 15616 (FLAGS_TO_PASS): Pass down MUNCH_NM. 15617 (HOST_CC, HOST_PREFIX, HOST_PREFIX_1): New variables. 15618 (EXTRA_GCC_FLAGS): Pass down HOST_* variables. 15619 (gcc-no-fixedincludes): Correct for current gcc Makefile. 15620 15621Tue May 11 10:14:25 1993 Fred Fish (fnf@cygnus.com) 15622 15623 * Makefile.in (make-gdb.tar.Z): Add configure, config.guess, 15624 config.sub, and move-if-change to gdb testsuite distribution 15625 archive, so the testsuite can be extracted, configured, and 15626 run separately from the gdb distribution. Blow away the Chill 15627 tests that require a Chill compiled executable, since GNU Chill 15628 is not yet publically available. 15629 15630Mon May 10 17:22:26 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com) 15631 15632 * test-build.mk: set environment variables in a single command, 15633 instead of a list of assignments and exports 15634 15635 * config.guess: recognize Alpha/OSF1 systems 15636 15637Mon May 10 14:55:51 1993 K. Richard Pixley (rich@rtl.cygnus.com) 15638 15639 * configure: Change help message to prefer --options rather than 15640 -options. 15641 15642Mon May 10 05:58:35 1993 Ken Raeburn (raeburn@kr-pc.cygnus.com) 15643 15644 * config.sub: Convergent Tech. "miniframe" uses m68010, sez 15645 zippy@ecst.csuchico.edu. 15646 * config.guess: Recognize miniframe. 15647 15648Sun May 9 17:47:57 1993 Rob Savoye (rob at darkstar.cygnus.com) 15649 15650 * Makefile.in: Use srcroot to find runtest rather than rootme. 15651 Pass RUNTESTFLAGS and EXPECT down in BASE_FLAGS_TO_PASS. 15652 15653Fri May 7 14:55:59 1993 Ian Lance Taylor (ian@cygnus.com) 15654 15655 * test-build.mk: Extensive additions to support building on a 15656 machine other than the host. 15657 15658Wed May 5 08:35:04 1993 Ken Raeburn (raeburn@deneb.cygnus.com) 15659 15660 * configure (tooldir): Fix for i386-aix again. 15661 15662Mon May 3 19:00:27 1993 Per Bothner (bothner@cygnus.com) 15663 15664 * configure, Makefile.in: Change definition of $(tooldir) 15665 to match the FSF. 15666 15667Fri Apr 30 15:55:21 1993 Fred Fish (fnf@cygnus.com) 15668 15669 * config.guess: Recognize i[34]86/SVR4. 15670 15671Fri Apr 30 15:52:46 1993 Steve Chamberlain (sac@thepub.cygnus.com) 15672 15673 * Makefile.in (all-gdb): gdb depends on sim. 15674 15675Thu Apr 29 23:30:48 1993 Fred Fish (fnf@cygnus.com) 15676 15677 * Makefile.in (gdb.tar.Z): Make prototype gdb testsuite directory 15678 at the same time we make the prototype gdb directory. 15679 * Makefile.in (make-gdb.tar.Z): Make the testsuite distribution 15680 files at the same time as the gdb base release distribution. 15681 15682Thu Apr 29 12:50:37 1993 Ian Lance Taylor (ian@cygnus.com) 15683 15684 * Makefile.in (check): Use individual check targets rather than 15685 DO_X rule. 15686 (check-gcc): Added. 15687 15688Thu Apr 29 09:50:07 1993 Jim Kingdon (kingdon@cygnus.com) 15689 15690 * config.sub: Use sysv3.2 not sysv32 for canonical OS 15691 for System V release 3.2. 15692 15693Thu Apr 29 10:33:22 1993 Ken Raeburn (raeburn@cambridge.cygnus.com) 15694 15695 * config.sub: Recognize hppaosf. 15696 * configure.in: Do configure ld/binutils/gas for it. 15697 15698Tue Apr 27 06:25:34 1993 Ken Raeburn (raeburn@kr-pc.cygnus.com) 15699 15700 * configure (tooldir): Alter syntax used to set this, for systems 15701 where "\$" isn't handled right, like i386-aix. 15702 15703Thu Apr 22 08:17:35 1993 Ian Lance Taylor (ian@cygnus.com) 15704 15705 * configure: Pass program-transform-name, not 15706 program_transform_name, to recursive configures. 15707 15708Thu Apr 22 02:58:21 1993 Ken Raeburn (raeburn@cygnus.com) 15709 15710 * Makefile.in (gas+binutils.tar.z): New rule for building snapshots 15711 of gas+ld+binutils. 15712 15713Mon Apr 19 17:41:30 1993 Per Bothner (bothner@cygnus.com) 15714 15715 * config.guess: Recognize AIX3.2 as distinct from 3.1. 15716 15717Sat Apr 17 17:19:50 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com) 15718 15719 * configure.in: rename m88k-motorola-m88kbcs to m88k-motorola-sysv 15720 15721Tue Apr 13 16:52:16 1993 Brendan Kehoe (brendan@lisa.cygnus.com) 15722 15723 * Makefile.in (PRMS): Set back to all-prms. 15724 15725Sat Apr 10 12:04:07 1993 Ian Lance Taylor (ian@cygnus.com) 15726 15727 * test-build.mk: Pass -with-gnu-as for known MIPS native and MIPS 15728 targets, rather than for MIPS hosts. 15729 15730Fri Apr 9 13:51:06 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com) 15731 15732 * configure.in: add comment for --with-x default values 15733 15734 * config.guess: handle Motorola Delta88 box for SVR3 and SVR4. 15735 15736 * Makefile.in: add check-* targets for each of the directories in 15737 the tree. Add a definition of RUNTEST that will use the one we 15738 just built, if it exists. Pass this down via FLAGS_TO_PASS. 15739 15740Thu Apr 8 09:21:30 1993 Ian Lance Taylor (ian@cygnus.com) 15741 15742 * configure.in: Removed obsolete references to bfd_target and 15743 target_makefile_frag. 15744 15745 * build-all.mk: Set assorted targets for Q2. 15746 * config.sub: Recognize z8k-sim and h8300-hms. 15747 * test-build.mk: Really don't pass host to configure. 15748 (HOLES): Added uname. 15749 15750Wed Apr 7 15:48:19 1993 Ian Lance Taylor (ian@cygnus.com) 15751 15752 * configure: Handle an empty program-prefix, program-suffix or 15753 program-transform-name correctly. 15754 15755Tue Apr 6 13:48:41 1993 Ian Lance Taylor (ian@cygnus.com) 15756 15757 * build-all.mk: -G 8 no longer required for MIPS targets. 15758 * test-build.mk: Don't pass host argument to configure; make it 15759 guess. 15760 15761Tue Apr 6 10:36:53 1993 Fred Fish (fnf@cygnus.com) 15762 15763 * Makefile.in (gdb.tar.Z): Fix for building gzip'd distribution. 15764 * Makefile.in (COMPRESS): New macro, like GZIP. 15765 15766Fri Apr 2 09:02:31 1993 Ian Lance Taylor (ian@cygnus.com) 15767 15768 * test-build.mk: Use -with-gnu-as for mips-sgi-irix4 as well. 15769 15770 * build-all.mk: Set GCC to gcc -O -G 8 for MIPS targets, since gcc 15771 with gas currently defaults to -G 0. 15772 15773Thu Apr 1 08:25:42 1993 Ian Lance Taylor (ian@cygnus.com) 15774 15775 * Makefile.in (all-flex): flex depends on byacc. 15776 15777 * build-all.mk: If host not specified, use config.guess. Pass TAG 15778 to test-build.mk as RELEASE_TAG. 15779 * test-build.mk (configargs): New variable containing arguments to 15780 pass to configure. Set to -with-gnu-as on mips-dec-ultrix. 15781 (FLAGS_TO_PASS): Pass down RELEASE_TAG. 15782 15783 * config.guess: Use /bin/uname when checking -X argument on SCO, 15784 to avoid invoking GNU uname which doesn't understand -X. 15785 15786 * test-build.mk: Don't use /usr/unsupported/bin/as on AIX. 15787 15788 * configure.in: Build gas for mips-*-*. 15789 15790Wed Mar 31 21:20:58 1993 K. Richard Pixley (rich@rtl.cygnus.com) 15791 15792 * Makefile.in (all.normal): insert missing backslash. 15793 15794Wed Mar 31 12:31:56 1993 Ian Lance Taylor (ian@cygnus.com) 15795 15796 * build-all.mk: Bump -XNh value to 1500 to match gcc requirements. 15797 15798 * Makefile.in: Complete overhaul to merge many almost identical 15799 targets. 15800 15801Tue Mar 30 20:17:01 1993 Ken Raeburn (raeburn@cambridge.cygnus.com) 15802 15803 * Makefile.in (setup-dirs-gdb): Renamed from setup-dirs. 15804 (gdb.tar.Z): Adjusted. 15805 15806 * Makefile.in (setup-dirs, taz): New targets; should be general 15807 enough to adapt for gdb sometime. Build only .z file. 15808 (gas.tar.z): New target. 15809 15810Tue Mar 30 10:03:09 1993 Ian Lance Taylor (ian@cygnus.com) 15811 15812 * build-all.mk: Use CC=cc -Xs on Solaris. 15813 15814Thu Mar 25 15:14:30 1993 Fred Fish (fnf@cygnus.com) 15815 15816 * Makefile.in: Incorporate changes suggested by wilson@cygnus.com 15817 for handling BISON for FSF releases. 15818 15819Thu Mar 25 06:19:48 1993 Ken Raeburn (raeburn@kr-pc.cygnus.com) 15820 15821 * configure: Actually implement the change zoo just documented. 15822 15823Wed Mar 24 13:02:44 1993 david d `zoo' zuhn (zoo at poseidon.cygnus.com) 15824 15825 * configure: when using config.guess, only set target_alias when 15826 it's not already been set (ie, on the command line) 15827 15828Mon Mar 22 23:07:39 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com) 15829 15830 * Makefile.in: add installcheck target, set PRMS to install-prms 15831 15832Sun Mar 21 16:46:12 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com) 15833 15834 * configure: add support for package_makefile_fragment, handle the 15835 case where a directory has a configure.in file but no Makefile.in 15836 more gracefully (with an actual understandable error message, even); 15837 add support for --without (and add this to the usage message); also 15838 explicitly add a --host=${host_alias} to the command line when 15839 config.guess is used 15840 15841Sun Mar 21 12:11:58 1993 Jim Wilson (wilson@sphagnum.cygnus.com) 15842 15843 * configure: Must use both --host and --target in recursive calls. 15844 15845Thu Mar 18 12:31:35 1993 Ian Lance Taylor (ian@cygnus.com) 15846 15847 * Makefile.in: Change deja-gnu to dejagnu. 15848 15849Mon Mar 15 15:44:35 1993 Ian Lance Taylor (ian@cygnus.com) 15850 15851 * configure.in (h8300-*-*, h8500-*-*): Don't build libg++. 15852 15853Fri Mar 12 18:30:14 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com) 15854 15855 * configure.in: canonicalize all instances to *-*-solaris2*, 15856 also strip out a number of tools to not build for go32 host 15857 15858Wed Mar 10 12:08:27 1993 K. Richard Pixley (rich@rtl.cygnus.com) 15859 15860 * config.guess: add GPL. 15861 15862 * Makefile.in, config.guess, config.sub, configure: bump 15863 copyrights to 93. 15864 15865Wed Mar 10 07:12:48 1993 Ian Lance Taylor (ian@cygnus.com) 15866 15867 * Makefile.in (do-info): Removed obsolete check for existence of 15868 localenv file. 15869 15870 * Makefile.in (MAKEOVERRIDES): Define to be empty. 15871 15872Wed Mar 10 03:11:56 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com) 15873 15874 * Makefile.in: a couple of 'else true' for decstation, 15875 support for TclX 15876 15877 * configure.in: configure tclX too; don't remove Tk on RS/6000 anymore 15878 15879Tue Mar 9 16:06:12 1993 K. Richard Pixley (rich@cygnus.com) 15880 15881 * Makefile.in (setup-dirs): change invocation of make to $(MAKE). 15882 15883Mon Mar 8 14:52:11 1993 Ken Raeburn (raeburn@cambridge) 15884 15885 * config.guess: Recognize i386-ibm-aix (PS/2). 15886 * configure.in: Use config/mh-aix386 file for it. 15887 15888Mon Mar 8 11:12:43 1993 Ian Lance Taylor (ian@cygnus.com) 15889 15890 * Makefile.in (GCC_FOR_TARGET): Eliminated definition; use 15891 CC_FOR_TARGET instead. 15892 (BASE_FLAGS_TO_PASS): Pass GCC_FOR_TARGET=$(CC_FOR_TARGET). 15893 15894Wed Mar 3 16:00:28 1993 Steve Chamberlain (sac@ok.cygnus.com) 15895 15896 * Makefile.in: Add sim to list of directories sent with gdb 15897 15898Wed Mar 3 11:42:39 1993 Ken Raeburn (raeburn@cygnus.com) 15899 15900 * configure.in: Put back mips-dec-bsd* case. 15901 15902Tue Mar 2 21:15:58 1993 Fred Fish (fnf@cygnus.com) 15903 15904 (Ultrix 2.2 support from Michael Rendell <michael@mercury.cs.mun.ca>) 15905 * configure.in (vax-*-ultrix2*): Add Ultrix 2.2 triplet. 15906 * config.guess: Change 'VAX*:ULTRIX:*:*' to 'VAX*:ULTRIX*:*:*'. 15907 15908Tue Mar 2 18:11:03 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com) 15909 15910 * configure.in: remove no-op mips-dec-bsd* in "case $target" 15911 15912 * Makefile.in (dir.info): only run gen-info-dir if it exists, 15913 (install-info): install dir.info only if it exists, 15914 (all-expect, install-expect): pass along X11_FLAGS_TO_PASS 15915 15916Tue Mar 2 09:01:30 1993 Ken Raeburn (raeburn@cygnus.com) 15917 15918 * configure.in: For vms target, skip bfd, ld, binutils. Do build 15919 gas for mips-dec-bsd. 15920 15921Tue Mar 2 08:35:24 1993 Ian Lance Taylor (ian@cygnus.com) 15922 15923 * configure (makesrcdir): If ${srcdir} is relative and not ".", 15924 and ${subdir} is not ".", set makesrcdir based on ${invsubdir}. 15925 15926Tue Feb 23 14:18:28 1993 Mike Werner (mtw@poseidon.cygnus.com) 15927 15928 * configure.in: Added "dejagnu" to hosttools list. 15929 15930Mon Feb 22 23:28:38 1993 Per Bothner (bothner@rtl.cygnus.com) 15931 15932 * config.sub, configure.in, config.guess: Add support 15933 for Bosx, an AIX variant from Bull. 15934 Patches from F.Pierresteguy@frcl.bull.fr. 15935 15936Sun Feb 21 11:15:22 1993 Mike Werner (mtw@poseidon.cygnus.com) 15937 15938 * devo/dejagnu: Initial creation of devo/dejagnu. 15939 Migrated dejagnu testcases and support files for testing software 15940 tools to reside as subdirectories, currently called "testsuite", 15941 within the directory of the software tool. Migrated all programs, 15942 support libraries, etc. beloging to dejagnu proper from 15943 devo/deja-gnu to devo/dejagnu. These files were moved "as is" 15944 with no modifications. The changes to these files which will 15945 allow them to configure, build, and execute properly will be made 15946 in a future update. 15947 15948Fri Feb 19 20:19:39 1993 Brendan Kehoe (brendan@lisa.cygnus.com) 15949 15950 * Makefile.in: Change send_pr to send-pr. 15951 * configure.in: Likewise. 15952 * send_pr: Renamed directory to send-pr. 15953 15954Fri Feb 19 19:00:13 1993 Per Bothner (bothner@cygnus.com) 15955 15956 * Makefile.in: Add some extra semi-colons (needed if SHELL=bash). 15957 15958Fri Feb 19 00:59:33 1993 John Gilmore (gnu@cygnus.com) 15959 15960 * README: Update for gdb-4.8 release. 15961 * Makefile.in (gdb.tar.Z): Add texinfo/tex3patch. Build 15962 gdb-xxx.tar.z (gzip'd) file also. 15963 15964Thu Feb 18 09:16:17 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com) 15965 15966 * Makefile.in: make all-diff depend on all-libiberty 15967 15968Tue Feb 16 16:06:31 1993 K. Richard Pixley (rich@cygnus.com) 15969 15970 * config.guess: add vax-ultrix in the spirit of mips-ultrix. 15971 15972Tue Feb 16 05:57:15 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com) 15973 15974 * configure.in, Makefile.in: add hello, tar, gzip, recode, indent 15975 15976Tue Feb 16 00:58:20 1993 John Gilmore (gnu@cygnus.com) 15977 15978 * Makefile.in (DEVO_SUPPORT): Remove etc directory 15979 (ETC_SUPPORT): Only add the files GDB wants from etc/. 15980 (gdb.tar.Z): Use ETC_SUPPORT. Use byacc when building the file. 15981 15982Thu Feb 11 20:14:28 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com) 15983 15984 * Makefile.in: makeinfo binary is in a new location 15985 15986Tue Feb 9 12:42:27 1993 Ian Lance Taylor (ian@cygnus.com) 15987 15988 * config.sub: Accept -ecoff as an OS. 15989 15990 * Makefile.in: Various changes to eliminate a level of make 15991 recursion and reduce the required command line length. 15992 (BASE_FLAGS_TO_PASS): New variable holding flags passed to all 15993 sub-makes. 15994 (EXTRA_HOST_FLAGS, EXTRA_TARGET_FLAGS, EXTRA_GCC_FLAGS): New 15995 variables holding settings for specific sub-makes. 15996 (FLAGS_TO_PASS, TARGET_FLAGS_TO_PASS, GCC_FLAGS_TO_PASS): Rewrote 15997 in terms of BASE_FLAGS_TO_PASS. 15998 (TARGET_LIBS): New variable listing directories which use 15999 TARGET_FLAGS_TO_PASS. 16000 (subdir_do): Eliminated. 16001 (do-*): New set of targets to replace subdir_do. 16002 (various): All targets which used subdir_do now depend on do-*. 16003 (local-clean): Renamed from do_clean. 16004 (local-distclean): New target, dependency of distclean and 16005 realclean. 16006 (install-info): Don't create directories. Depend on dir.info 16007 rather than calling make recursively. 16008 (install-dir.info): Eliminated. 16009 (install-info-dirs): Create all info directories here. 16010 (dir.info): Depend upon do-install-info. 16011 16012 * test-build.mk (HOLES): Added false. 16013 16014Sat Feb 6 14:05:09 1993 Per Bothner (bothner@rtl.cygnus.com) 16015 16016 * config.guess: Recognize BSDI and BSDJ (Jolitz 386bsd). 16017 16018Thu Feb 4 20:49:18 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com) 16019 16020 * Makefile.in (info): remove dependency on all-texinfo. The 16021 problem was really in texinfo/C, not at this level. 16022 16023Thu Feb 4 13:38:41 1993 Ian Lance Taylor (ian@cygnus.com) 16024 16025 * Makefile.in (info): Added dependency on all-texinfo (PR 2112). 16026 16027Thu Feb 4 01:50:53 1993 John Gilmore (gnu@cygnus.com) 16028 16029 * Makefile.in (make-gdb.tar.Z): Change BISON to 'bison -y' for 16030 GDB releases. 16031 16032Wed Feb 3 17:22:16 1993 Ken Raeburn (raeburn@cambridge.cygnus.com) 16033 16034 * configure: Include srcdir in message about target of link not 16035 being found. Don't convert `-' to `_' in `with' options being 16036 passed to subdirs. 16037 16038Tue Feb 2 18:57:59 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com) 16039 16040 * configure.in: add uudecode to host_tools 16041 16042 * Makefile.in: added {all,install}-uudecode targets, added them to 16043 the appropriate lists 16044 16045Tue Feb 2 11:45:53 1993 Ian Lance Taylor (ian@cygnus.com) 16046 16047 * Makefile.in (all-gcc): Added dependency on all-gas. 16048 16049 * configure.in (mips-*-*): Build ld and binutils. 16050 16051Mon Feb 1 12:35:41 1993 K. Richard Pixley (rich@rtl.cygnus.com) 16052 16053 * configure: check return code from mkdir, print error message and 16054 exit on failure. 16055 16056Sat Jan 30 16:40:28 1993 John Gilmore (gnu@cygnus.com) 16057 16058 * Makefile.in (make-gdb.tar.Z): New location for texinfo.tex. 16059 16060Thu Jan 28 15:09:59 1993 Ian Lance Taylor (ian@cygnus.com) 16061 16062 * test-build.mk (HOLES): Added tar, cpio and uudecode. 16063 16064Wed Jan 27 16:50:32 1993 Jim Wilson (wilson@sphagnum.cygnus.com) 16065 16066 * config.sub (h8500): Recognize this as a cpu type. 16067 16068Sat Jan 23 20:32:01 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com) 16069 16070 * configure: source directory missing is no longer a warning 16071 16072 * configure.in: recognize irix[34]* instead of irix[34] 16073 16074 * Makefile.in: define and pass down X11_LIB 16075 16076Sat Jan 23 13:49:40 1993 Per Bothner (bothner@cygnus.com) 16077 16078 * guess-systype: Renamed to ... 16079 * config.guess: ... by popular request. 16080 * configure.in, Makefile.in: Update accordingly. 16081 16082Thu Jan 21 12:20:55 1993 Per Bothner (bothner@cygnus.com) 16083 16084 * guess-systype: Patches from John Eaton <jwe@che.utexas.edu>: 16085 + Add Convex, Cray/Unicos, and Encore/Multimax support. 16086 + Execute ./dummy instead of assuming . is in PATH. 16087 16088Tue Jan 19 17:18:06 1993 Per Bothner (bothner@cygnus.com) 16089 16090 * guess-systype: New shell script. Attempts to guess the 16091 canonical host name of the executing host. 16092 Only a few hosts are supported so far. 16093 * configure: Call guess-systype if no host is specified. 16094 16095Tue Jan 19 08:26:07 1993 Ian Lance Taylor (ian@cygnus.com) 16096 16097 * Makefile.in (gcc-no-fixedincludes): Made to work with current 16098 gcc Makefile. 16099 16100 16101Fri Jan 15 10:27:02 1993 Ian Lance Taylor (ian@cygnus.com) 16102 16103 * Makefile.in (GCC_FLAGS_TO_PASS): New variable. 16104 (all-gcc, install-gcc, subdir_do): Use it. 16105 16106Wed Jan 13 17:06:45 1993 Jim Wilson (wilson@sphagnum.cygnus.com) 16107 16108 * Makefile.in: Rename uninstalled gcc driver from gcc to xgcc. 16109 16110Wed Jan 6 20:29:16 1993 Mike Werner (mtw@rtl.cygnus.com) 16111 16112 * Makefile.in: Removed explicit setting of SUBDIRS. SUBDIRS is now 16113 set exclusively by configure, using configure.in . 16114 16115Wed Jan 6 13:44:11 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com) 16116 16117 * test-build.mk: set $PATH for all builds 16118 16119 * Makefile.in: pass TARGET_FLAGS_TO_PASS for xiberty and libm 16120 16121Wed Jan 6 11:02:10 1993 Fred Fish (fnf@cygnus.com) 16122 16123 * Makefile.in (GCC_FOR_TARGET): Supply a default that matches 16124 the one used in gcc/Makefile.in, so that a null expansion doesn't 16125 override the one needed to build gcc with a native cc. 16126 16127 16128Tue Jan 5 07:55:12 1993 Ken Raeburn (raeburn@cambridge.cygnus.com) 16129 16130 * configure: Accept -with arguments. 16131 16132Sun Jan 3 15:15:09 1993 Steve Chamberlain (sac@thepub.cygnus.com) 16133 16134 * Makefile.in: added h8300sim 16135 16136Tue Dec 29 15:06:00 1992 Ian Lance Taylor (ian@cygnus.com) 16137 16138 * build-all.mk: If canonhost is i386-unknown-sco3.2v4, change it 16139 to i386-sco3.2v4. Set TARGETS and CFLAGS for i386-sco3.2v4. 16140 (all-cygnus, native, build-cygnus): Make 16141 $(canonhost)-stamp-3stage-done, not $(host).... 16142 * test-build.mk (stamp-3stage-compared): Use tail +10c for 16143 i386-sco3.2v4. Added else true to if command. 16144 16145Mon Dec 28 12:08:56 1992 Ken Raeburn (raeburn@cygnus.com) 16146 16147 * config.sub: (from FSF) Sequent uses a BSD-like OS. 16148 16149Mon Dec 28 08:32:06 1992 Minh Tran-Le (mtranle@paris.intellicorp.com) 16150 16151 * configure.in (i[34]86-*-isc*): added; uses mh-sysv. 16152 16153Thu Dec 24 17:26:24 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com) 16154 16155 * configure.in: don't remove binutils from Solaris builds 16156 16157Thu Dec 24 14:08:38 1992 david d`zoo' zuhn (zoo@cygnus.com) 16158 16159 * Makefile.in: get rid of earlier definitions for *clean, 16160 also handle the recursive info rule better 16161 16162Thu Dec 24 12:40:21 1992 Per Bothner (bothner@rtl.cygnus.com) 16163 16164 * Makefile.in (mostlyclean, distclean, realclean): Fix to 16165 do more-or-less the right thing. 16166 16167Wed Dec 16 10:25:31 1992 Ian Lance Taylor (ian@cygnus.com) 16168 16169 * Makefile.in: Add lines defining CC and CXX, and use CXX rather 16170 than gcc in definitions of CXX_FOR_BUILD and CXX_FOR_TARGET. 16171 16172Tue Dec 15 00:34:32 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com) 16173 16174 * Makefile.in: change all $(host_cpu)-$(host_vendor)-$(host_os) to 16175 $(host_canonical). 16176 16177 * configure.in: split the configdirs list into 4 categories (native 16178 v. cross, library v. tool) and handle the cross-only and native- 16179 only in more reasonable (and correct!) way. 16180 16181Mon Dec 14 17:04:22 1992 Stu Grossman (grossman at cygnus.com) 16182 16183 * configure.in (hppa*-*-*): Don't remove bfd and gdb from 16184 configdirs anymore. 16185 16186Sun Dec 13 00:37:26 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com) 16187 16188 * Makefile.in: extensive cleanup:: removed all of the explicit 16189 clean-* targets, collapsed many wrappers around subdir_do into 16190 one, added additional targets to satisfy standards.texi, deleted 16191 some old targets, some changes for consistency 16192 16193Fri Dec 11 20:18:02 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com) 16194 16195 * configure.in: handle some programs as cross-only, and others as 16196 native only 16197 16198 * test-build.mk: handle partial holes in a more generic manner 16199 16200 * Makefile.in: m4 depends on libiberty 16201 16202Thu Dec 3 21:52:11 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com) 16203 16204 * configure.in: add m4, textutils, fileutils, sed, shellutils, 16205 time, wdiff, and find to configdirs 16206 16207 * Makefile.in: all, clean, and install rules for the new programs 16208 added to configure.in 16209 16210Mon Nov 30 14:54:34 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com) 16211 16212 * configure.in: use mh-sun for all *-sun-* hosts 16213 16214Fri Nov 27 18:35:54 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com) 16215 16216 * Makefile.in: define flags for X11 include files and library file 16217 locations, pass them down to the programs that need this info 16218 16219 * build-all.mk: added a 'native' target, to 3stage the native toolchain 16220 16221Sun Nov 22 18:59:13 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com) 16222 16223 * configure.in: start building libg++ for HP-UX targets 16224 16225Wed Nov 18 19:33:11 1992 John Gilmore (gnu@cygnus.com) 16226 16227 * README: Update references to files moved into etc/. 16228 16229Sun Nov 15 09:36:08 1992 Fred Fish (fnf@cygnus.com) 16230 16231 * config.sub (i386sol2, i486sol2): i[34]86-unknown-solaris2. 16232 * configure.in (i[34]86-*-solaris2*): Use config/mh-sysv4. 16233 16234Thu Nov 12 08:50:42 1992 Ian Lance Taylor (ian@cygnus.com) 16235 16236 * configure: accept dash as well as underscore in long option 16237 names for FSF compatibility. 16238 16239Wed Nov 11 08:04:37 1992 Ian Lance Taylor (ian@cygnus.com) 16240 16241 * config.sub: added -sco3.2v4 support from FSF. 16242 16243Sun Nov 8 21:14:30 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com) 16244 16245 * configure.in: expand the section that adds or removes 16246 directories from the list of programs to build, to handle native 16247 vs. cross in addition to host v. native 16248 16249Sat Nov 7 18:52:27 1992 Per Bothner (bothner@rtl.cygnus.com) 16250 16251 * Makefile.in: Replace C++ in macro names with CXX. 16252 This is less likely to break ... 16253 16254Sat Nov 7 15:16:58 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com) 16255 16256 * test-build.mk: add -w to GNU_MAKE 16257 16258Fri Nov 6 23:10:37 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com) 16259 16260 * config.sub: remove 'sparc'-->'sparc-sun' default transformation, 16261 add 'sparc' to list of recognized cpus. This needed to make 16262 'sparc-aout' expand to 'sparc-unknown-aout' instead of 'sparc-sun-aout'. 16263 Delete some redundant ose68 variants. Recognize -wrs as an os, 16264 then changes that into $CPU-wrs-vxworks. 16265 16266 * configure.in: remove most references to gdbtest, regularize 16267 target based program removal 16268 16269 * test-build.mk: import from p3 tree (many fixes and changes) 16270 16271Fri Nov 6 20:59:00 1992 david d `zoo' zuhn (zoo@cygnus.com) 16272 16273 * Makefile.in: added rules to handle tcl, tk, and expect 16274 16275 * configure.in: handle those directories if they exist 16276 16277Thu Nov 5 14:35:41 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com) 16278 16279 * config.sub: removed bogus hppabsd and hppahpux names, since 16280 "hppa" is not a valid cpu (hppa1.1 or hppa1.0 are, though) 16281 16282Thu Oct 29 00:12:41 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com) 16283 16284 * Makefile.in: all-gcc now depends on all-binutils. all-libg++ 16285 depends upon all-xiberty 16286 16287 * Makefile.in: changes from p3, including: 16288 16289 Thu Oct 8 15:00:17 1992 Ian Lance Taylor (ian@cygnus.com) 16290 16291 * Makefile.in (XTRAFLAGS): include newlib directories if 16292 newlib/Makefile exists, rather than if host != target. 16293 16294 Fri Sep 25 13:41:52 1992 Ian Lance Taylor (ian@cygnus.com) 16295 16296 * Makefile.in: added -nostdinc to XTRAFLAGS if we are using gcc 16297 from the same source tree and not building a cross-compiler. This 16298 matters for the libg++ configuration if reconfiguring a tree that 16299 has already been installed. 16300 16301 Thu Sep 10 10:35:51 1992 Ian Lance Taylor (ian@cygnus.com) 16302 16303 * Makefile.in: added -I for newlib/targ-include to XTRAFLAGS, to 16304 pick up the machine and system specific header files. 16305 16306 * Makefile.in: added AS_FOR_TARGET, passed down in 16307 TARGET_FLAGS_TO_PASS. Added CC_FOR_BUILD, which is intended to be 16308 the C compiler to use to create programs which are run in the 16309 build environment, set it to default to $(CC), and passed it down 16310 in FLAGS_TO_PASS and TARGET_FLAGS_TO_PASS. 16311 16312 Mon Sep 7 22:34:42 1992 Ian Lance Taylor (ian@cirdan.cygnus.com) 16313 16314 * Makefile.in: add $(host) = $(target) tests back to *_FOR_TARGET. 16315 We need them for unusual native builds, like systems without 16316 ranlib. 16317 16318 * configure: also define $(host_canonical) and 16319 $(target_canonical), which are the full, canonical names for the 16320 given host and target 16321 16322Sun Nov 1 16:38:17 1992 Per Bothner (bothner@cygnus.com) 16323 16324 * Makefile.in: Added separate definitions for C++. 16325 16326Fri Oct 30 11:37:52 1992 Fred Fish (fnf@cygnus.com) 16327 16328 * configure.in (configdirs): Add deja-gnu. 16329 16330Fri Oct 23 00:39:18 1992 John Gilmore (gnu@cygnus.com) 16331 16332 * README: Update for configure.texi and gdb-4.7 release. 16333 16334Wed Oct 21 21:54:27 1992 John Gilmore (gnu@cygnus.com) 16335 16336 * Makefile.in: Move "all" target to top of file. 16337 Previously, first target was ".PHONY" which caused BSD4.4 make 16338 to build .PHONY when make was run without arguments. 16339 16340Mon Oct 19 01:17:54 1992 John Gilmore (gnu@cygnus.com) 16341 16342 * Makefile.in: Add COPYING.LIB to GDB releases, now that there's 16343 Library-copylefted code in libiberty. 16344 16345Tue Oct 13 01:22:32 1992 John Gilmore (gnu@cygnus.com) 16346 16347 * config.sub: Replace m68kmote with plain old m68k. 16348 16349Fri Oct 9 03:14:24 1992 John Gilmore (gnu@cygnus.com) 16350 16351 * Makefile.in: Remove space from blank line, avoid Make complaints. 16352 16353Thu Oct 8 18:41:45 1992 Ken Raeburn (raeburn@cygnus.com) 16354 16355 * config.sub: Complain if no argument is given. Added support for 16356 386bsd as OS and target alias. 16357 16358Thu Oct 8 15:07:22 1992 Ian Lance Taylor (ian@cygnus.com) 16359 16360 * Makefile.in (XTRAFLAGS): include newlib directories if 16361 newlib/Makefile exists, rather than if host != target. 16362 16363Mon Oct 5 03:00:09 1992 Mark Eichin (eichin at tweedledumber.cygnus.com) 16364 16365 * config.sub: recognize sparclite-wrs-vxworks. 16366 16367 * Makefile.in (install-xiberty): added *-xiberty make rules (from 16368 p3.) Added clean-xiberty to clean. 16369 16370Thu Oct 1 17:59:19 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com) 16371 16372 * configure.in: use *-*-* instead of nested cases for host and target 16373 16374Tue Sep 29 14:11:18 1992 Ian Lance Taylor (ian@cygnus.com) 16375 16376 * Makefile.in: added -nostdinc to XTRAFLAGS if we are using gcc 16377 from the same source tree and not building a cross-compiler. This 16378 matters for the libg++ configuration if reconfiguring a tree that 16379 has already been installed. 16380 16381Sep 20 08:53:10 1992 Fred Fish (fnf@cygnus.com) 16382 16383 * config.sub (i486v/i486v4): Merge in from FSF version. 16384 16385Fri Sep 18 00:32:00 1992 Mark Eichin (eichin@cygnus.com) 16386 16387 * configure: only set PWD if it is already set. 16388 16389Thu Sep 17 23:05:53 1992 Mark Eichin (eichin@cygnus.com) 16390 16391 * configure: just set PWD=`pwd` at the top, since Ultrix sh 16392 doesn't have unset and all success paths (and most error paths) 16393 out set it anyway. (Note: should change all uses of ${PWD=`pwd`} 16394 to just ${PWD} to avoid confusion.) 16395 16396Tue Sep 15 16:00:54 1992 Ian Lance Taylor (ian@cygnus.com) 16397 16398 * configure: always set $(tooldir) to $(libdir)/$(target_alias), 16399 even for a native compilation. 16400 16401Tue Sep 15 02:22:56 1992 John Gilmore (gnu@cygnus.com) 16402 16403 Changes to make the gdb.tar.Z rule work better. 16404 16405 * Makefile.in (GDB_SUPPORT_DIRS): Add opcodes. 16406 (DEVO_SUPPORT): Add configure.texi. 16407 (bfd-ilrt.tar.Z): Remove ancient rule. 16408 16409Thu Sep 10 10:43:19 1992 Ian Lance Taylor (ian@cygnus.com) 16410 16411 * Makefile.in: added -I for newlib/targ-include to XTRAFLAGS, to 16412 pick up the machine and system specific header files. 16413 16414 * configure.in, config.sub: added new target m68010-adobe-scout, 16415 with alias of adobe68k. Changed configure.in to check for 16416 -scout before -sco* to avoid a false match. 16417 16418 * Makefile.in: added AS_FOR_TARGET, passed down in 16419 TARGET_FLAGS_TO_PASS. Added CC_FOR_BUILD, which is intended to be 16420 the C compiler to use to create programs which are run in the 16421 build environment, set it to default to $(CC), and passed it down 16422 in FLAGS_TO_PASS and TARGET_FLAGS_TO_PASS. 16423 16424Wed Sep 9 12:21:42 1992 Ian Lance Taylor (ian@cygnus.com) 16425 16426 * Makefile.in: added TARGET_FLAGS_TO_PASS, CC_FOR_TARGET, 16427 AR_FOR_TARGET, RANLIB_FOR_TARGET, NM_FOR_TARGET. Pass 16428 TARGET_FLAGS_TO_PASS, which defines CC, AR, RANLIB and NM as the 16429 FOR_TARGET variants, to newlib and libg++. 16430 16431Tue Sep 8 17:28:30 1992 Ken Raeburn (raeburn@cambridge.cygnus.com) 16432 16433 * Makefile.in (all-gas, all-gdb): Require all-opcodes to be built 16434 first. 16435 16436Wed Sep 2 02:50:05 1992 John Gilmore (gnu@cygnus.com) 16437 16438 * config.sub: Accept `elf' as an environment. 16439 16440Tue Sep 1 15:48:30 1992 Steve Chamberlain (sac@thepub.cygnus.com) 16441 16442 * Makefile.in (all-opcodes): cd into the right directory 16443 16444Sun Aug 30 21:12:11 1992 Ian Lance Taylor (ian@cygnus.com) 16445 16446 * configure: added -program_transform_name option, used as 16447 argument to sed when installing programs. 16448 configure.texi: added documentation for -program_prefix, 16449 -program_suffix and -program_transform_name. 16450 16451Thu Aug 27 21:59:44 1992 John Gilmore (gnu@cygnus.com) 16452 16453 * config.sub: Accept i486 where i386 ok. 16454 16455Thu Aug 27 13:04:42 1992 Brendan Kehoe (brendan@rtl.cygnus.com) 16456 16457 * config.sub: accept we32k 16458 16459Mon Aug 24 14:05:14 1992 Ian Lance Taylor (ian@cygnus.com) 16460 16461 * config.sub, configure.in: accept OSE68000 and OSE68k. 16462 16463 * Makefile.in: don't create all directories for ``make install''; 16464 let the subdirectories create the ones they need. 16465 16466Tue Aug 11 23:13:17 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com) 16467 16468 * COPYING: new file, GPL v2 16469 16470Tue Aug 4 01:12:43 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com) 16471 16472 * Makefile.in: use the new gen-info-dir, which needs a template 16473 argument (which also lives in texinfo) 16474 16475 * configure.texi, standards.texi: fix INFO-DIR-ENTRY 16476 16477Mon Aug 3 00:34:17 1992 Fred Fish (fnf@cygnus.com) 16478 16479 * config.sub (ncr3000): Change i386 to i486. 16480 16481Thu Jul 23 00:12:17 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com) 16482 16483 * Makefile.in: add install-rcs, install-grep to 16484 install-no-fixedincludes, removed install-bison and install-libgcc 16485 16486Tue Jul 21 01:01:50 1992 david d `zoo' zuhn (zoo@cygnus.com) 16487 16488 * configure.in: grab the HPUX makefile fragment if on HPUX 16489 16490Mon Jul 20 11:02:09 1992 D. V. Henkel-Wallace (gumby@cygnus.com) 16491 16492 * Makefile.in: eradicate bison spoor (ditto libgcc). 16493 configure.in: recognise m68{k,000}-ericsson-OSE. 16494 es1800 is alias for m68k-ericsson-OSE 16495 16496Sun Jul 19 17:49:02 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com) 16497 16498 * configure.in: rearrange the parts that remove programs from 16499 configdirs, based now on HOST==TARGET or by canonical triple. 16500 16501Fri Jul 17 22:52:49 1992 K. Richard Pixley (rich@rtl.cygnus.com) 16502 16503 * test-build.mk: recurse explicitly with -f test-build.mk when 16504 appropriate. predicate stage3 and comparison on the existence 16505 of gcc. That is, if gcc isn't around, we aren't three-staging. 16506 On very clean, also remove ...stamp-co. Build in-place before 16507 doing other builds. 16508 16509Thu Jul 16 18:33:09 1992 Steve Chamberlain (sac@thepub.cygnus.com) 16510 16511 * Makefile.in, configure.in: add tgas 16512 16513Thu Jul 16 16:05:28 1992 K. Richard Pixley (rich@rtl.cygnus.com) 16514 16515 * Makefile.in: a number of changes merged in from progressive. 16516 16517 * configure.in: add libm. 16518 16519 * .cvsignore: ignore some stuff that comes from test-build.mk. 16520 16521Tue Jul 7 00:24:52 1992 Fred Fish (fnf@cygnus.com) 16522 16523 * config.sub: Add es1800 (m68k-ericsson-es1800). 16524 16525Tue Jun 30 20:24:41 1992 D. V. Henkel-Wallace (gumby@cygnus.com) 16526 16527 * configure: Add program_suffix (parallel to program_prefix) 16528 * Makefile.in: adjust directory-creating script for losing decstation 16529 16530Mon Jun 22 23:43:48 1992 Per Bothner (bothner@cygnus.com) 16531 16532 * configure: Minor $subdir-related fixes. 16533 16534Mon Jun 22 18:30:26 1992 Steve Chamberlain (sac@thepub.cygnus.com) 16535 16536 * configure: fix various problems with propogating 16537 makefile_target_frag in subdirs. 16538 * configure.in: config libgcc if its there 16539 16540Fri Jun 19 15:19:40 1992 Stu Grossman (grossman at cygnus.com) 16541 16542 * config.sub: HPPA merge. 16543 16544Sun Jun 14 10:29:19 1992 John Gilmore (gnu at cygnus.com) 16545 16546 * Makefile.in: Replace all-bison with all-byacc in all 16547 dependency lines for other tools (which now use byacc). 16548 16549Fri Jun 12 22:21:57 1992 John Gilmore (gnu at cygnus.com) 16550 16551 * config.sub: Add sun4sol2 => sparc-sun-solaris2. 16552 16553Thu Jun 4 12:07:32 1992 Mark Eichin (eichin@cygnus.com) 16554 16555 * Makefile.in: make gprof rules similar to byacc rules (instead of 16556 vestigal $(unsubdir) that didn't work...) 16557 16558Thu Jun 4 00:37:05 1992 Per Bothner (bothner@rtl.cygnus.com) 16559 16560 * config.sub: Add support for Linux. 16561 * Makefile.in: Use $(FLAGS_TO_PASS) more consistently 16562 (at least for libg++). 16563 16564Tue Jun 02 20:03:00 1992 david d `zoo' zuhn (zoo@cygnus.com) 16565 16566 * configure.texi: fix doc for the -nfp option to configure 16567 16568Tue Jun 2 17:20:52 1992 Michael Tiemann (tiemann@cygnus.com) 16569 16570 * Makefile.in (all-binutils): ar needs flex, so depend on all-flex. 16571 16572Sun May 31 15:04:08 1992 Mark Eichin (eichin at cygnus.com) 16573 16574 * config.sub: changed [^-]+ to [^-][^-]* so that it works under 16575 Sun sed. (BSD 4.3 sed doesn't handle [^-]+ either.) 16576 * configure.in: added solaris* host_makefile_frag hook. 16577 16578Sun May 31 01:10:34 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com) 16579 16580 * config.sub: changed recognition of m68000 so that various 16581 m68k types can be specified via m680[01234]0 16582 16583Sat May 30 21:01:06 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com) 16584 16585 * config.sub (basic_machine): fix sed so that '-foo' isn't 16586 completely substituted out while .+'-foo' loses the '-foo' 16587 16588Wed May 27 23:18:52 1992 Michael Tiemann (tiemann@rtl.cygnus.com) 16589 16590 * config.sub ($os): Add -aout. 16591 16592Fri May 22 14:00:02 1992 Per Bothner (bothner@cygnus.com) 16593 16594 * configure: If host_makefile_frag is absolute, don't 16595 prefix ${invsubdir} (relevant to libg++ auto-configure). 16596 16597Thu May 21 18:00:09 1992 Michael Tiemann (tiemann@rtl.cygnus.com) 16598 16599 * Makefile.in (tooldir): Define it. 16600 (all-ld): Depend on all-flex. 16601 16602Sun May 10 21:45:59 1992 Per Bothner (bothner@rtl.cygnus.com) 16603 16604 * Makefile.in (check): Fix libg++ special case. 16605 16606Fri May 8 08:31:41 1992 K. Richard Pixley (rich@cygnus.com) 16607 16608 * configure: do not bury `pwd` into config.status, thus do fewer 16609 pwd's. 16610 16611 * configure: print the "Building in" message only when building in 16612 other than "." AND verbose. 16613 16614 * configure: remove -s, rework -v to better accomodate guested 16615 configures. 16616 16617 * standards.texi: updated to 3 may, fixed librid <-> libdir typo. 16618 16619Fri May 1 18:00:50 1992 K. Richard Pixley (rich@cygnus.com) 16620 16621 * Makefile.in: macroize flags passed on recursion. remove 16622 fileutils. 16623 16624Thu Apr 30 08:56:20 1992 K. Richard Pixley (rich@cygnus.com) 16625 16626 * configure: get makesrcdir right for subdirs deeper than 1. 16627 16628 * Makefile.in: pass INSTALL, INSTALL_DATA, INSTALL_PROGRAM on 16629 install. 16630 16631Fri Apr 24 15:51:51 1992 K. Richard Pixley (rich@cygnus.com) 16632 16633 * Makefile.in: don't print subdir_do or recursion lines. 16634 16635Fri Apr 24 15:22:04 1992 K. Richard Pixley (rich@cygnus.com) 16636 16637 * standards.texi: added menu item. 16638 16639 * Makefile.in: build and install standards.info. 16640 16641 * standards.texi: new file. 16642 16643Wed Apr 22 18:06:55 1992 K. Richard Pixley (rich@rtl.cygnus.com) 16644 16645 * configure: test for and move config.status pieces from 16646 ${subdir}/. 16647 16648Wed Apr 22 14:38:34 1992 Fred Fish (fnf@cygnus.com) 16649 16650 * configure: Test for existance of files before trying to mv 16651 them, to avoid numerous non-existance messages. 16652 16653Tue Apr 21 12:31:33 1992 K. Richard Pixley (rich@cygnus.com) 16654 16655 * configure: correct final line of config.status. 16656 16657 * configure: patch from eggert. Avoids a protection problem if 16658 the original Makefile.in is read only. 16659 16660 * configure: use move-if-change from gcc to create config.status. 16661 Some makefiles depend on config.status to tell if a directory 16662 has been reconfigured for a different host. This change 16663 prevents those directories from remaking everything in the case 16664 where the reconfig was only intended to rebuild a Makefile. 16665 16666 * configure: test for config.sub with "config.sub sun4" rather 16667 than "config.sub ${host_alias}". Otherwise we can't tell a bad 16668 host alias from a missing config.sub. 16669 16670Mon Apr 20 18:16:36 1992 K. Richard Pixley (rich@rtl.cygnus.com) 16671 16672 * Makefile.in: explicitly pass CFLAGS on recursion. no longer pass 16673 MINUS_G (this can be done with CFLAGS). Default CFLAGS to -g. 16674 16675Fri Apr 17 18:27:51 1992 Per Bothner (bothner@cygnus.com) 16676 16677 * configure: mkdir ${subdir} as needed. 16678 16679Wed Apr 15 17:37:22 1992 K. Richard Pixley (rich@cygnus.com) 16680 16681 * Makefile.in,configure.in: added autoconf. 16682 16683Wed Apr 15 17:27:34 1992 K. Richard Pixley (rich@rtl.cygnus.com) 16684 16685 * Makefile.in: no longer pass against on recursion. 16686 16687 * Makefile.in: added .NOEXPORT: so that stray makefile_frag 16688 definitions are not inherited. 16689 16690 * configure: correct makesrcdir when subdir is . 16691 16692Tue Apr 14 11:56:09 1992 Per Bothner (bothner@cygnus.com) 16693 16694 * configure: Add support for 'subdirs' variable, which is 16695 like 'configdirs', except that configure doesn't re-invoke 16696 itself for subdirs, it just creates a Makefile for each subdir. 16697 * configure.texi: Document subdirs. 16698 16699Mon Apr 13 18:50:16 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com) 16700 16701 * configure.in: added flex to configdirs 16702 16703Mon Apr 13 18:43:55 1992 K. Richard Pixley (rich@cygnus.com) 16704 16705 * Makefile.in: remove clean-stamps from clean. 16706 16707Sat Apr 11 03:52:03 1992 John Gilmore (gnu at cygnus.com) 16708 16709 * configure.in: Add gdbtest to configdirs. 16710 16711Fri Apr 10 23:11:49 1992 Fred Fish (fnf@cygnus.com) 16712 16713 * Makefile.in (MINUS_G): Add macro, default to -g, pass on 16714 to recursive makes. 16715 * configure.in: Recognize new ncr3000 config. 16716 16717Wed Apr 8 23:08:12 1992 K. Richard Pixley (rich@cygnus.com) 16718 16719 * Makefile.in, configure.in: removed references to gdbm. 16720 16721Tue Apr 7 16:48:20 1992 Per Bothner (bothner@cygnus.com) 16722 16723 * config.sub: Don't canonicalize os value 16724 newsos* to bsd (readline needs to check for newsos). 16725 (This fix was earlier made Jan 31, but got re-broken.) 16726 16727Mon Apr 6 14:34:08 1992 Stu Grossman (grossman at cygnus.com) 16728 16729 * configure.in: sco is an os, not a vendor! 16730 16731 * configure: Quote $( better. Keep various shells happy. 16732 16733Tue Mar 31 16:32:57 1992 K. Richard Pixley (rich@cygnus.com) 16734 16735 * Makefile.in: eliminate stamp-files. 16736 16737Mon Mar 30 22:20:23 1992 K. Richard Pixley (rich@cygnus.com) 16738 16739 * Makefile.in: add send_pr. remove "force" from .stmp-gprof rule. 16740 Supress echoing of all the "if [ -d ... $(MAKE)" lines. 16741 16742Wed Mar 25 15:20:04 1992 Stu Grossman (grossman@cygnus.com) 16743 16744 * config.sub: fix iris/iris3. 16745 16746Wed Mar 25 10:34:19 1992 K. Richard Pixley (rich@cygnus.com) 16747 16748 * configure: re-add -rm. 16749 16750Tue Mar 24 23:50:16 1992 K. Richard Pixley (rich@cygnus.com) 16751 16752 * Maskefile.in: add .stmp-rcs to all. 16753 16754 * configure.in: remove gas from rs6000 build, use aix host fragment. 16755 16756Mon Mar 23 19:43:35 1992 K. Richard Pixley (rich@cygnus.com) 16757 16758 * configure: pass down site_option during recursion. 16759 16760Thu Mar 19 16:49:36 1992 Stu Grossman (grossman at cygnus.com) 16761 16762 * Makefile.in (all.cross): Add .stmp-bfd .stmp-readline. 16763 16764Wed Mar 18 15:29:33 1992 Mike Stump (mrs@cygnus.com) 16765 16766 * configure: Change exec_prefix so that it really defaults to prefix. 16767 16768Sat Mar 14 17:20:38 1992 Fred Fish (fnf@cygnus.com) 16769 16770 * Makefile.in, configure.in: Add support for mmalloc library. 16771 16772Fri Mar 13 18:44:18 1992 K. Richard Pixley (rich@cygnus.com) 16773 16774 * Makefile.in: add stmp dependencies for a few more things. 16775 16776Thu Mar 12 04:56:24 1992 K. Richard Pixley (rich@cygnus.com) 16777 16778 * configure: adjusted error message on objdir/srcdir configure 16779 collision, per john's suggestion. 16780 16781 * Makefile.in: add libiberty stmp to all and all.cross. 16782 16783Wed Mar 11 02:07:52 1992 K. Richard Pixley (rich@cygnus.com) 16784 16785 * Makefile.in: remove force dependencies, add grep to all. 16786 16787Tue Mar 10 21:49:18 1992 K. Richard Pixley (rich@mars.cygnus.com) 16788 16789 * Makefile.in: drop flex. make stamp files work. 16790 16791 * configure: added test for conflicting configuration in srcdir, 16792 remove trailing slashes from srcdir. Otherwise emacs gdb mode 16793 gets cranky. use relative paths for configure and srcdir 16794 whenever possible. Send some error messages to stderr that were 16795 going to stdout. 16796 16797Tue Mar 10 18:01:55 1992 Per Bothner (bothner@cygnus.com) 16798 16799 * Makefile.in: Fix libg++ rule to check for gcc directory 16800 before using gcc/gcc. Also pass XTRAFLAGS. 16801 16802Thu Mar 5 21:45:07 1992 K. Richard Pixley (rich@sendai) 16803 16804 * Makefile.in: added stmp-files so that directories aren't polled 16805 when they are already built. 16806 16807 * configure.texi: fixed a node pointer problem. 16808 16809Thu Mar 5 12:05:58 1992 Stu Grossman (grossman at cygnus.com) 16810 16811 * config.sub configure.in gdb/configure.in 16812 gdb/mips-tdep.c gdb/mipsread.c gdb/procfs.c gdb/signame.h 16813 gdb/tm-irix3.h gdb/tm-mips.h gdb/xm-irix4.h gdb/config/mt-irix3 16814 gdb/config/mh-irix4 texinfo/configure.in: Port to SGI Irix-4.x. 16815 16816Wed Mar 4 02:57:46 1992 K. Richard Pixley (rich@rtl.cygnus.com) 16817 16818 * configure: -recurring becomes -silent. corrected help message 16819 for -site= option. 16820 16821 * Makefile.in: mkdir $(exec_prefix) and $(tooldir). 16822 16823Tue Mar 3 14:51:21 1992 K. Richard Pixley (rich@rtl.cygnus.com) 16824 16825 * configure: when building Makefile for crosses, replace 16826 tooldir and program_prefix. default srcdir from location of 16827 config.sub. remove "for host in hosts" and "for target in 16828 targets" loops. 16829 16830Wed Feb 26 19:48:25 1992 K. Richard Pixley (rich@rtl.cygnus.com) 16831 16832 * Makefile.in: Do not pass bindir or mandir to cvs. 16833 16834Wed Feb 26 18:04:40 1992 K. Richard Pixley (rich@cygnus.com) 16835 16836 * Makefile.in, configure.in: removed traces of namesubdir, 16837 -subdirs, $(subdir), $(unsubdir), some rcs triggers. Forced 16838 copyrights to '92, changed some from Cygnus to FSF. 16839 16840 * configure.texi: remove most references to multiple hosts, 16841 multiple targets, subdirs, etc. 16842 16843 * configure.man: removed rcsid. reference config.sub not 16844 config.subr. 16845 16846 * Makefile.in: mkdir $(infodir) on install-info. 16847 16848Wed Feb 19 15:41:13 1992 John Gilmore (gnu at cygnus.com) 16849 16850 * configure.texi: Explain better about .gdbinit and about 16851 the environment that configure.in sections run in. 16852 16853Fri Feb 7 07:55:00 1992 John Gilmore (gnu at cygnus.com) 16854 16855 * configure.in: Ultrix is only a decstation if it's a MIPS. 16856 16857Fri Jan 31 21:54:51 1992 John Gilmore (gnu at cygnus.com) 16858 16859 * README: DOC.configure => cfg-paper.texi. 16860 16861Fri Jan 31 21:48:18 1992 Stu Grossman (grossman at cygnus.com) 16862 16863 * config.sub (near case $os): Don't convert newsos* to bsd! 16864 16865Fri Jan 31 02:27:32 1992 John Gilmore (gnu at cygnus.com) 16866 16867 * Makefile.in: Reinstall change from gdb-4.3 that reduces 16868 the number of copies of COPYING that go into the GDB tar file. 16869 16870Thu Jan 30 16:17:30 1992 Stu Grossman (grossman at cygnus.com) 16871 16872 * bfd/configure.in, gdb/config/mh-i386sco, 16873 gdb/config/mt-i386v32, gdb/configure.in, readline/configure.in: 16874 Fix SCO configuration stuff. 16875 16876Tue Jan 28 23:51:07 1992 Per Bothner (bothner at cygnus.com) 16877 16878 * Makefile.in: For libg++, make sure the -I pointing 16879 to the gcc directory goes *after* all the libg++-local -I flags. 16880 Also, move just-gcc dependency from just-libg++ to all-libg++. 16881 16882Tue Jan 28 12:56:24 1992 Stu Grossman (grossman at cygnus.com) 16883 16884 * configure: Change -x to -f to keep Ultrix /bin/test happy. 16885 16886Sat Jan 18 17:45:11 1992 Stu Grossman (grossman at cygnus.com) 16887 16888 * Makefile.in (make-gdb.tar.Z): Remove texinfo targets. 16889 16890Sat Jan 18 17:03:21 1992 Fred Fish (fnf at cygnus.com) 16891 16892 * config.sub: Add stratus configuration frags. Also 16893 submitted to FSF. 16894 16895Sat Jan 18 15:35:29 1992 Stu Grossman (grossman at cygnus.com) 16896 16897 * Makefile.in (DEV_SUPPORT): add configure.man. 16898 16899 * config.sub(Decode manufacturer-specific): add -none*. 16900 16901Fri Jan 17 17:58:05 1992 Stu Grossman (grossman at cygnus.com) 16902 16903 * Makefile.in: remove form feeds to make Sun's make happy. 16904 (DEVO_SUPPORT): DOC.configure => cfg-paper.texi. 16905 16906Sat Jan 4 16:11:44 1992 John Gilmore (gnu at cygnus.com) 16907 16908 * Makefile.in (AR_FLAGS): Make quieter. 16909 16910Thu Jan 2 22:57:12 1992 John Gilmore (gnu at cygnus.com) 16911 16912 * configure.in: Add libg++. 16913 * configure: When verbose, don't output the command line at each 16914 level; it will be unremarkably the same as the previous version, 16915 which will be the same as what the user typed. 16916 16917Fri Dec 27 16:26:47 1991 K. Richard Pixley (rich at cygnus.com) 16918 16919 * configure.in, Makefile.in: fix clean-info, add flex. add 16920 fileutils. 16921 16922 * configure: be less sensitive to spaces in Makefile.in. Do not 16923 look for sources in "..". Doing so breaks subdirectories that 16924 might have their own configure. If a subdir has it's own 16925 configure script, use it. 16926 16927Thu Dec 26 16:30:26 1991 K. Richard Pixley (rich at cygnus.com) 16928 16929 * cfg-paper.texi: some changes suggested by rms. 16930 16931Thu Dec 26 10:13:36 1991 Fred Fish (fnf at cygnus.com) 16932 16933 * config.sub: Merge in some small additions from the FSF version, 16934 taken from the gcc distribution, to bring the Cygnus and FSF 16935 versions into closer sync. 16936 16937Fri Dec 20 11:34:18 1991 Fred Fish (fnf at cygnus.com) 16938 16939 * configure.in: Changed svr4 references to sysv4. 16940 16941Thu Dec 19 15:54:29 1991 K. Richard Pixley (rich at cygnus.com) 16942 16943 * configure: added -V for version number option. 16944 16945Wed Dec 18 15:39:34 1991 K. Richard Pixley (rich at cygnus.com) 16946 16947 * DOC.configure, cfg-paper.texi: revised, updated, and texinfo'd. 16948 renamed from DOC.configure to cfg-paper.texi. 16949 16950Mon Dec 16 23:05:19 1991 K. Richard Pixley (rich at rtl.cygnus.com) 16951 16952 * configure, config.subr, config.sub: config.subr is now 16953 config.sub again. 16954 16955Fri Dec 13 01:17:06 1991 K. Richard Pixley (rich at cygnus.com) 16956 16957 * configure.texi: new file, in progress. 16958 16959 * Makefile.in: build info file and install the man page for 16960 configure. 16961 16962 * configure.man: new file, first cut. 16963 16964 * configure: find config.subr again now that configuration "none" 16965 has gone. removed all traces of the -ansi option. removed all 16966 traces of the -languages option. 16967 16968 * config.subr: resync from rms. 16969 169701991-12-11 K. Richard Pixley (rich at rtl.cygnus.com) 16971 16972 * configure, config.sub, config.subr: merge config.sub into 16973 config.subr, call the result config.subr, remove config.sub, use 16974 config.subr. 16975 16976 * Makefile.in: revised install for dir.info. 16977 169781991-12-10 K. Richard Pixley (rich at rtl.cygnus.com) 16979 16980 * configure.in: add decstation host makefile frag. 16981 16982 * Makefile.in: BISON now bison -y again. also install-gcc on 16983 install. clean-gdbm on clean. infodir belongs in datadir. 16984 Make directories for info install. Build dir.info here then 16985 install it. 16986 169871991-12-09 K. Richard Pixley (rich at rtl.cygnus.com) 16988 16989 * Makefile.in: fix for bad directory tests. 16990 169911991-12-07 K. Richard Pixley (rich at rtl.cygnus.com) 16992 16993 * configure: \{1,2\} appears to be a sysv'ism. Use a different 16994 regexp. -srcdir relative was being handled incorrectly. 16995 16996 * Makefile.in: unwrapped some for loops so that parallel makes 16997 work again and so one can focus one's attention on a particular 16998 package. 16999 170001991-12-06 K. Richard Pixley (rich at rtl.cygnus.com) 17001 17002 * configure: added PWD as a stand in for `pwd` (for speed). use 17003 elif wherever possible. make -srcdir work without -objdir. 17004 -objdir= commented out. 17005 170061991-12-05 K. Richard Pixley (rich at rtl.cygnus.com) 17007 17008 * configure: +options become --options. -subdirs commented out. 17009 added -host, -datadir. Renamed -destdir to -prefix. Comment in 17010 Makefile now at top of generated Makefile. Removed cvs log 17011 entries. added -srcdir. create .gdbinit only if there is one 17012 in ${srcdir}. 17013 17014 * Makefile.in: idestdir and ddestdir go away. Added copyrights 17015 and shift gpl to v2. Added ChangeLog if it didn't exist. docdir 17016 and mandir now keyed off datadir by default. 17017 170181991-11-22 K. Richard Pixley (rich at rtl.cygnus.com) 17019 17020 * Freshly created ChangeLog. 17021 17022 17023Local Variables: 17024mode: change-log 17025left-margin: 8 17026fill-column: 76 17027version-control: never 17028End: 17029