This is the an update of DJGPP port of gcc-3.4.3. Please read this file up to end (maybe skipping sections You don't need, for example You don't need to read how to build gcc-3.4.3 from sources if You only intend to use binary archives). Also consult DJGPP documentation and FAQ where needed. Requirements to use this binary release: DJGPP-2.03 or above. Please make sure that You have latest update of djdev203.zip unless You're using a newer version (of course when such will be released). binutils-2.14 or above (Earlier versions beginning with binutils-2.11 may work, but this is not tested, 2.9.1 or earlier will not work. !!! C++ users must recompile all C++ sources and to avoid mixing object files compiled by this version and earlier versions (even first release of DJGPP port of gcc-3.3.5). Otherwise C++ exceptions may not work properly !!! Additionally use of new GDB versions (6.2 and newer) requires, that all sources are built with this version of GCC or newer. Otherwise GDB commands 'where', 'backtrace' and possibly some others may not work. ######################### NOTE ############################################## This update of DJGPP port of DJGPP generates from C++ sources object files that are not compatible with ones generated by any earlier releases of DJGPP ports of GCC (including also first release of DJGPP port of GCC-3.4.3). So it's required to recompile all C++ sources after upgrade. ############################################################################### Requirements to build gcc-3.4.3 from sources: Long filename support. I built it in DOS session under WinXP Pro (SP2). Win95, Win98, WinME or Win2K should be Ok. I myself haven't tested whether it can be build under Win98, Win2k or Win2K. at least 128Mb of RAM for building under Win9X (Amount of available DPMI memory for DOS session should be set to auto). at least DJGPP-2.03 required (Please make sure that You have latest update of djdev203.zip unless You're using a newer version) other GNU utilities (see below) Source archives =============== Archive gcc34s2.zip contains script which modifies original gcc-3.4.3 and sources for DJGPP. You don't need it unless You want to recreate GCC source archive for DJGPP. If You are using this archive and original sources of gcc-3.4.3.tar.gz, then You don't need gcc343s.zip. The source archive gcc343s.zip contains all the sources to build all compilers (C, C++, Objective C, GNU Fortran) and also C++ and Fortran libraries (libstdcxx.a, libgpp.a and libg2c.a). libg++ is no more supported. Most users don't need source archives at all. Binary archives ================ Binary archives are split into 5 parts: gcc343b.zip : The gcc.exe driver program and the C compiler. It also contains the documentation. gpp343b.zip : The C++ compiler and libstdcxx.a together with needed header files. Please note that one must recompile all C++ sources built with any earlier GCC version objc343b.zip : The Objective C compiler and libobjc.a and the needed header files. g77343b.zip : GNU Fortran compiler and libg2c.a and g2f.h. ada343b.zip : Ada compiler (untested) The archive gcc343b.zip is required by all other binary packages Binary packages includes following documentation files: Archive gcc343b.zip: info/gcc.i* - the use and the internals of the GNU compiler info/cpp.i* - documentation of the GNU C preprocessor. info/cppinternals.i* - internals of the GNU C Preprocessor. (NEW: use install-info to add it to info/dir) Archive gpp343b.zip: gnu/gcc-3.43/libstdcxx/* - some documentation of libstdc++-v3 (HTML and text formats) Archive g77343b.zip: info/g77.i* - documentation of the GNU Fortran compiler Before you install gcc-3.4.3 binaries ====================================== You should remove previous installation of gcc or egcs completely (unless You really know what You are doing). Make sure You don't have following files from earlier versions (relative paths againt to DJGPP directory are given): bin/cc1.exe (from gcc272b.zip or gcc2721b.zip) bin/cc1plus.exe (from gpp272b.zip or gpp2721b.zip) bin/f771.exe (from g7705XXb.zip, XX are 2 digits) lib/libgcc.a (from gcc272b.zip or gcc2721b.zip) lib/libobjc.a lib/specs (from djdev201.zip or djdev202.zip) lib/libstdcxx.a lib/libgpp.a Following packages are required for binaries: binutils-2.14 or above. (Versions before 2.11 will not work, after 2.11, but before 2.14 may work, but it's not tested) DJGPP-2.03 (djdev203.zip - timestamp from August 2002 or newer) or above Installing binaries of gcc-3.4.3 ================================= Needed archives for different programing languages C : gcc343b.zip C++ : gcc343b.zip, gpp343b.zip Fortran : gcc343b.zip, g77343b.zip Objective C : gcc343b.zip, objc343b.zip Ada : gcc343b.zip, ada343b.zip Of course for ALL languages You also need at least binutils (bnu231b.zip or newer) and djdev203.zip (or newer when it will be released) Unzip all the zip files from that directory, preserving the directory structure. For example: pkunzip -d djdev203 or unzip386 djdev203 NOTE: For debugging GDB version 6.1 or above is recommended. (gdb-6.1 is not released for DJGPP yet though). It may be possible to use also gdb-5.2.1, gdb-5.3 or gdb-6.0. Earlier GDB versions does not support DWARF2 debugging info which is now the default. needed. No versions of RHIDE using GDB-6.1 (or even 6.0) are available. Newest updates of RHIDE from http://rhide.sourceforge.net/snapshots is built with GDB-5.2 or better (See also http://sourceforge.net/projects/setedit). NOTE: I have changed to DWARF2 debugging info as the default. As result one will get DWARF2 debugging info when option -g will be specified. One still can get COFF debugging info by using option -gcoff instead of -g. Similary one can use -gstabs or -gstabs+ to get stabs debugging info. Note that symify.exe from djdev20X.zip works with COFF debugging info only. One can use bfdsymify.exe (see GDB binary archive) with DWARF2 or stabs debugging info. However bfdsymify must be linked with fresh enough BFD library. 1. Only long filenames ---------------------- Unzip the binaries with an unzip program, which can restore the long filenames stored in the zip archive. 2. Only short filenames ----------------------- Unzip the binaries with an unzip program which doesn't know about long filenames, or if your unzipper knows about them, please follow first the steps described in the DJGPP FAQ in the section about setting the NameNumericTail to 0 __BEFORE__!!! unzipping the archives. 3. Long and short filenames at the same time -------------------------------------------- Use an unzip program which can restore the long filenames and follow the instructions under 2. when the unzipper knows about long filenames. Note for users of C++ IO classes fstream, ifstream, ofstream ============================================================ There is a regression against earlier versions of GCC (gcc-2.95.3 and earlier): Member functions tellp(), tellg(), seekp() and seekg() are broken when stream is opened not in binary mode. If You are going to use any similar functions You should open stream in binary mode. Don't ask me when it will be fixed as I don't know that. I'm also not sure I'll spend much time trying to fix that. Note for users of GNU Fortran compiler ====================================== If You are getting assembler warnings like: foo.s: Assembler messages: foo.s:1011: Warning: rest of line ignored; first ignored character is `+' foo.s:1012: Warning: rest of line ignored; first ignored character is `+' when compiling FORTRAN sources, please use stabs or DWARF-2 debugging info instead of COFF one, for example: gcc -c -O2 -gstabs foo.f -o foo.o gcc -c -O2 -gdwarf-2 foo.f -o foo.o gcc -c -O2 -gstabs+ foo.f -o foo.o Rebuilding gcc-3.4.3 from the sources ====================================== Requirememts ------------ - Long filename support is required. It means You should build gcc-3.4.3 under Win95, Win98, WinME, Win2000 or WinXP. I myself built gcc-3.4.3 under WinXP. - Much of free disk space (600Mb or more, especially if You are using FAT16). - 128Mb RAM (or more) to build gcc-3.4.3 under Win9X. DPMI memory amount for DOS session should be set to "Auto" as genattrtab requires more than 64Mb to run. - Many GNU packages. Please check whether You really have them: bash-2.0.4 or newer (bash-2.0.5b binaries from clio.rice.edu didn't work for me under WinXP) diffutils-2.8 fileutils-4.0 or newer (there were problems with some of DJGPP releases of fileutils-4.1, update if needed) find-4.1 or newer grep-2.4 or newer grep-3.1.1 or newer make-3.79.1 or newer sed302b.zip or newer sh-utils-2.0.11 or newer textutils-2.0 or newer texinfo-4.6 or newer (You will not get info files with older versions) tar-1.1.2 binutils-2.14 working GNU C compiler (perhaps not earlier than gcc-2.8). If You modify some source files You may also need autoconf-2.57 or above automake-1.76 or above (for some directories also old autoconf-2.13 and automake-1.5 may be needed) You need autoconf and automake also if You are using gcc343s2.zip. However it's normally not needed for most users who builds gcc-3.4.3 from contents of gcc343s.zip. Usually newer versions of these packages should also work unless otherwise stated above. Older versions may work in some cases, but that is not tested - INFO-ZIP binary (compiled with DJGPP v2!!!) is needed for using build.sh to create binary distrubution archives. There is no problems to compile it. See http://www.info-zip.org for additional informtion about INFO-ZIP. You can find DJGPP compiled binary there. - Working DJGPP installation of course: latest update of DJGPP-2.03 ('version: 2.03 revision 2' in manifest/djdev203.dsm) or above. binutils-2.14 or above, working gcc installation (perhaps gcc-2.95 or above, You need working Ada compiler to build Ada compiler) - You should have sh.exe in DJGPP bin directory as symbolic link to bash.exe (type 'ln -s bash.exe sh.exe' in that directory) Extracting the sources ---------------------- At first you should unzip the archive gcc343s.zip. The sources are _NOT_ the complete sources like the original gcc-3.4.3 distribution. I have removed many files to save disk space which are not needed for the DJGPP port. However I left configuration of other machines in to make archives usable to build cross-to-DJGPP compilers and DJGPP hosted cross-compilers (I haven't tested it). Compiling gcc ------------- Directory gnu/gcc-3.4.3 contains all sources of gcc-3.4.3 Sources are NOT configured. Change to directory gnu/build.gcc and configure sources by running script djconfig.sh. sh djconfig.sh When this is done You can build gcc-3.4.3 by running script djmake.sh Under Win9X You'll have to restart it some times when it will crash due to Win9X DPMI descriptor leaks. You may use redir to get output in file. sh djmake.sh bootstrap After that build Ada tools and libraries (if Ada support is being built): sh djmake.sh -C gcc gnatlib_and_tools When this sucessfully ends run script djinsttmp.sh which installs all into directory gnu/install.gcc After that change to this directory and run script makepkg.sh to create binary distribution packages Installing newly compiled gcc ----------------------------- It's recommended to install binary packages which are generated by makepkg.sh Available resources =================== See following URL for additional information: gcc: http://gcc.gnu.org Reporting bugs ============== If you found a bug in gcc-3.4.3 (gcc, g77, libstdc++, etc) please report it to the GCC bug adresses and _NOT_ (or at least not only) in the DJGPP news group. But if you think you found a bug in the DJGPP related things, then please report it in comp.os.msdos.djgpp (the news group) or mail it to djgpp@delorie.com, which is the gateway to the news group. Some possible situations: - gcc says 'Internal compiler error' (or something similar) more likely it is error of gcc if it is reproducible. It would be nice to test on some other system (e.g. Linux) and also with different version of compiler if possible and submit report to gcc bug address. - gcc crashes or freezes. In this situation it's hard to guess where is the problem. It may be problem with gcc itself but it may be also DJGPP specific one. Please email me directly only in rare cases, if you think it is only of interest to me, since I'll see the reports in DJGPP mailing list. Thanks to ========= To all who have contributed new features, test results, bugfixes to GCC (see http://gcc.gnu.org/thanks.html) and also who helped with DJGPP port of gcc-3.4.3 Have fun with gcc Andris Pavenis