| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
| |
PR: 55238
Reviewed by: jmallett
Notes:
svn path=/head/; revision=118480
|
| |
|
|
|
|
|
| |
Pointed by: ru
Notes:
svn path=/head/; revision=118449
|
| |
|
|
|
|
|
| |
Strip [] from ranges
Notes:
svn path=/head/; revision=118435
|
| |
|
|
| |
Notes:
svn path=/head/; revision=118377
|
| |
|
|
| |
Notes:
svn path=/head/; revision=118375
|
| |
|
|
| |
Notes:
svn path=/head/; revision=118273
|
| |
|
|
|
|
|
|
|
| |
Submitted by: blc@bsdwins.com
Approved by: gad
MFC after: 1 week
Notes:
svn path=/head/; revision=118136
|
| |
|
|
|
|
|
|
|
|
|
| |
idea after all.
Fix cross-builds and ia64 builds. gnu/lib/csu/Makefile is modified to
pre-include osreldate.h and gnu/usr.bin/cc/cc_tools/auto-host.h
will avoid including sys/param.h if __FreeBSD_version is already defined.
Notes:
svn path=/head/; revision=117496
|
| |
|
|
|
|
|
| |
definition. This fixes buildworld breakage on ia64.
Notes:
svn path=/head/; revision=117453
|
| |
|
|
| |
Notes:
svn path=/head/; revision=117429
|
| |
|
|
| |
Notes:
svn path=/head/; revision=117428
|
| |
|
|
| |
Notes:
svn path=/head/; revision=117425
|
| |
|
|
|
|
|
| |
from stock FSF sources.
Notes:
svn path=/head/; revision=117424
|
| |
|
|
| |
Notes:
svn path=/head/; revision=117423
|
| |
|
|
| |
Notes:
svn path=/head/; revision=117310
|
| |
|
|
|
|
|
| |
ar and nm aren't very smart when faced with multiple applicable vectors.
Notes:
svn path=/head/; revision=117131
|
| |
|
|
|
|
|
| |
Obtained from: p4
Notes:
svn path=/head/; revision=117130
|
| |
|
|
|
|
|
| |
Noticed by: bde
Notes:
svn path=/head/; revision=117118
|
| |
|
|
| |
Notes:
svn path=/head/; revision=117114
|
| |
|
|
| |
Notes:
svn path=/head/; revision=117082
|
| |
|
|
| |
Notes:
svn path=/head/; revision=116891
|
| |
|
|
| |
Notes:
svn path=/head/; revision=116886
|
| |
|
|
|
|
|
|
|
| |
for things like boot blocks etc.
Reviewed by: kan
Notes:
svn path=/head/; revision=116859
|
| |
|
|
|
|
|
| |
-lgcc_pic by default on -fpic stuff. I forgot about this here.
Notes:
svn path=/head/; revision=116858
|
| |
|
|
| |
Notes:
svn path=/head/; revision=116611
|
| |
|
|
| |
Notes:
svn path=/head/; revision=116346
|
| |
|
|
| |
Notes:
svn path=/head/; revision=116335
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
non-PIC libgcc.a. Linking non-pic code into a shared library is not
a good thing. It happens to break amd64 at compile time, and the ppc
folks want it too. The problem is mainly with C++ code, unwind-dw2.c
in particular. Most of the other functions in libgcc.a are self
contained so most of the time it isn't a problem. The dwarf2 unwinder
is not safe though since it does make global variable references.
Reviewed by: kan
Notes:
svn path=/head/; revision=116320
|
| |
|
|
|
|
|
| |
libraries that do exception unwinding.
Notes:
svn path=/head/; revision=116318
|
| |
|
|
|
|
|
| |
Suggested by: juli
Notes:
svn path=/head/; revision=116089
|
| |
|
|
| |
Notes:
svn path=/head/; revision=116020
|
| |
|
|
|
|
|
|
|
|
|
|
| |
cat ${.ALLSRC} > ${.TARGET}
rather than
ln -sf ${.ALLSRC} ${.TARGET}
not to depends on absolute-path of symbolic links.
Commented by: marcel, obrien, bde
Notes:
svn path=/head/; revision=115898
|
| |
|
|
| |
Notes:
svn path=/head/; revision=115873
|
| |
|
|
| |
Notes:
svn path=/head/; revision=115714
|
| |
|
|
| |
Notes:
svn path=/head/; revision=115680
|
| |
|
|
| |
Notes:
svn path=/head/; revision=115664
|
| |
|
|
| |
Notes:
svn path=/head/; revision=115663
|
| |
|
|
| |
Notes:
svn path=/head/; revision=115646
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
give the cvs tree a surviving a 'make world'. One of the two diff chunks
is already in gcc-3.3, the other has been committed to gcc's HEAD and
is in the pipeline for gcc-3.3.1 (but has not been committed yet).
The first chunk simplifies an excessively complex assembler statement
when generating switch jump tables. The use of '.' causes as(1) to choke
on big files. Use a simpler form instead. This is only an issue for
TARGET_64BIT mode.
The second chunk fixes an internal compiler error when compiling
libc/stdio/vfprinf.c. While this is supposedly only an issue for
64 bit mode, it does touch the 32 bit i386 code paths, so this patch
is only applied for TARGET_ARCH == amd64 to keep the risks down.
Breaking gcc at the 11th hour would suck.
This will be removed when it is time to import gcc-3.3.
Discussed with: kan
Approved by: re (jhb)
Notes:
svn path=/head/; revision=115292
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
shared library being built for amd64. The problem is that libstdc++.so
is produced with 'cc -shared'. This has an internal -lgcc, which is
not PIC. libstdc++.so uses exceptions and the dwarf2 unwinder, which
are in libgcc.a. As a result, non-PIC code gets pulled into libstdc++.so.
This is fatal on amd64 when certain relocation types cannot be used in
PIC mode. The official FSF solution to this is to have libgcc.so with
internal ELF symbol versioning to solve the ABI problem, but I dont want
to fight that battle yet. I tried making libgcc_pic.a (which worked
fine), but thats not something for the 11th hour before a release.
Approved by: re (amd64 "safe" stuff)
Notes:
svn path=/head/; revision=115287
|
| |
|
|
|
|
|
|
|
|
| |
As far as binutils is concerned, the amd64 platform is still called
"x86-64"/"x86_64". Setting things from ${MACHINE_ARCH} breaks that.
Approved by: re (scottl)
Notes:
svn path=/head/; revision=114834
|
| |
|
|
|
|
|
| |
MFC after: 1 month
Notes:
svn path=/head/; revision=114740
|
| |
|
|
| |
Notes:
svn path=/head/; revision=114603
|
| |
|
|
| |
Notes:
svn path=/head/; revision=114602
|
| |
|
|
| |
Notes:
svn path=/head/; revision=114525
|
| |
|
|
|
|
|
| |
upgraded to version 4.5.
Notes:
svn path=/head/; revision=114480
|
| |
|
|
| |
Notes:
svn path=/head/; revision=114479
|
| |
|
|
| |
Notes:
svn path=/head/; revision=114468
|
| |
|
|
| |
Notes:
svn path=/head/; revision=114425
|
| |
|
|
| |
Notes:
svn path=/head/; revision=114412
|