summaryrefslogtreecommitdiffstats
path: root/lang/gcc28
Commit message (Collapse)AuthorAgeFilesLines
...
* ${MASTER_SITE_GNU} got rearranged in December; let's catch up.fenner1999-01-271-1/+2
|
* DEFAULT_PCC_STRUCT_RETURN should be "0" for the ELF case too.obrien1999-01-121-3/+14
|
* i386 => ${ARCH}obrien1998-11-131-4/+4
| | | | Requested by: imp
* Use bsd.port.{pre,post}.mk. Either use them to avoid having to defineasami1998-11-111-6/+7
| | | | | | | | something already there (PORTOBJFORMAT, OSVERSION) or move stuff from after .include <bsd.port.mk> to before. (This is not by any means the complete list but just the ones I've noticed recently.)
* Pass the GNUARCH value to `configure' to force the detection of an ELF system.obrien1998-11-101-6/+14
| | | | | | | (I still intend to fix the bug in the script that misses an ELF system for an a.out one) Current fix submitted by: "Alec Wolman" <wolman@cs.washington.edu>
* GNUHOST was defined twice. Also, take out the ELF cruft, a simpleasami1998-10-081-8/+2
| | | | BROKEN_ELF will do. :)
* Broken on ELF boxes.obrien1998-09-271-1/+8
|
* The first time I tried committing this set of manpage removals it gothoek1998-08-181-3/+0
| | | | | | | | all the way to diffing yorick/pkg/PLIST and then died with a "bad hostname freefall.freebsd.org" .... Hopefully that's not bad... ;-) Hmm.. Maybe I'll try doing this from beast, next! kickme's a boring machine, and bento is busy.
* dont ask..obrien1998-08-181-29/+29
|
* Update to use PLIST_SUBobrien1998-08-181-6/+2
|
* * expmed.c (expand_mult): Use 0 as add_target if should preserveobrien1998-08-141-0/+37
| | | | | | | | subexpressions. * expmed.c (expand_divmod): Save last divison constant and if rem is same as div, don't adjust rem cost. Submitted by: Peter Jeremy <peter.jeremy@auss2.alcatel.com.au>
* * Minor bug fixes from OpenBSD (and some stuff to ease diff'ing in the future)obrien1998-08-1313-11/+488
| | | | | | | | * Some initial support for FreeBSD-alpha * Add some optimizations required by g77, which still might be of some use to adventuring C/C++ programmers. Obtained from: OpenBSD (parts)
* Make these ports (TenDRA, egcs, gcc28, glibstdc++28 and guavac, allasami1998-08-071-5/+3
| | | | | | | | | | under lang) use ${OSREL} as defined in bsd.port.mk rev 1.281 and 1.227.2.43. Note gcc28 is hopelessly broken, it uses an undefined variable ${GNUOSREL} and thus has an empty string wherever ${OSREL} should be. However, it's consistent with its own PLIST at the current state so I haven't "fixed" it yet.
* Better way to do the equivalent of "-fsjlj-exceptions".obrien1998-07-221-18/+10
|
* Fix this port so that it can find crt0.o in /usr/lib/aout on recentjdp1998-06-303-7/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | | -current systems. Fix the definition of the preprocessor symbol __FreeBSD__. It had been defined as "2=3". Implement support for weak symbols. This solves the "___error" undefined problem on -current systems. Default to -fsjlj-exceptions even for C programs. This is needed because a few modules in libgcc are built with -fexceptions turned on, and the default style of exception support causes croakage. I tried a make buildworld on a recent -current system by adding the following to /etc/make.conf: CC=/usr/local/bin/gcc28 -B/usr/local/lib/gcc-lib/i386-unknown-freebsd3.0/2.8.1/ CXX=/usr/local/bin/g++28 -B/usr/local/lib/gcc-lib/i386-unknown-freebsd3.0/2.8.1/ It got pretty far along before dying. The death occurred when building our old native libstdc++, almost certainly because of header file incompatibilities. Another obstacle for make world is that this port doesn't currently build a PIC version of libgcc (libgcc_pic.a).
* Unmark it broken, it worked when I emptied /usr/local.asami1998-06-101-3/+1
|
* for name in _muldi3 _divdi3 _moddi3 _udivdi3 _umoddi3 _negdi2 _lshrdi3 ↵asami1998-06-061-1/+3
| | | | | | | | | | | | | | | | | | | | | _ashldi3 _ashrdi3 _ffsdi2 _udiv_w_sdiv _udivmoddi4 _cmpdi2 _ucmpdi2 _floatdidf _floatdisf _fixunsdfsi _fixunssfsi _fixunsdfdi _fixdfdi _fixunssfdi _fixsfdi _fixxfdi _fixunsxfdi _floatdixf _fixunsxfsi _fixtfdi _fixunstfdi _floatditf __gcc_bcmp _varargs __dummy _eprintf _op_new _op_vnew _new_handler _op_delete _op_vdel _bb _shtab _clear_cache _trampoline __main _exit _ctors _eh _eh_compat _pure; \ do \ echo ${name}; \ ./xgcc -B./ -O2 -DIN_GCC -g -I./include -g1 -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -fexceptions -I. -I. -I./config -c -DL${name} \ ./libgcc2.c -o ${name}.o; \ if [ $? -eq 0 ] ; then true; else exit 1; fi; \ ar rc tmplibgcc2.a ${name}.o; \ rm -f ${name}.o; \ done _muldi3 : _fixunsdfsi In file included from include/limits.h:116, from include/syslimits.h:7, from include/limits.h:11, from ./libgcc2.c:1085: /usr/local/lib/gcc-lib/i386-unknown-freebsd2.2.6/2.8.1/include/limits.h:212: unbalanced `#endif'
* Fix the LINK_SPEC for a.out.obrien1998-05-221-4/+25
| | | | Submitted by: roberto
* Update comment and descriptions.obrien1998-04-302-4/+5
|
* Sync-up CPP predefines w/our stock compiler and EGCS.obrien1998-04-122-22/+11
| | | | | 1. we are not 386BSD 2. ELF shouldn't need "-fsjlj-exceptions"
* Bump comment from 2.8 to 2.8.1.obrien1998-04-121-2/+2
|
* Define __FreeBSD__ to be the major version (rather than empty).obrien1998-03-113-1/+53
| | | | | Add -fsjlj-exceptions as the default. Requested by: John Fiber
* Upgrade to 2.8.1obrien1998-03-103-36/+36
|
* Fix missing brace in the pre-install target.jfieber1998-03-091-2/+2
|
* Abstract this more to make building on non-x86 easiler.obrien1998-03-062-32/+32
|
* Latest install hacks for GCC 2.8.obrien1998-03-052-40/+51
| | | | | The changes were done to closely match the upcoming libstdc++ port I will commit shortly.
* Build the gcc28 we install with itself rather than /usr/bin/cc.obrien1998-03-042-5/+13
| | | | | Renamed manpages to <binanary>28.1.gz to reduce namespace conflicts. Added bin/gcc28 and bin/g++28.
* Gcc/G++ version 2.8.0. Includes greatly improved C++ compiler and latestobrien1998-01-165-0/+121
SGI reference STL.
OpenPOWER on IntegriCloud