| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Compiling GCC with some CPUTYPE values (e.g. broadwell) result in
breaking some applications (e.g. math/octave, cad/freecad), sending
a SIGBUS.
The issue is due to GCC generating instructions that require
variables
to be aligned in memory on certain CPUs. Our libthr does not have
the
required alignment so these CPUs fail to execute these instructions.
The patch disables the generation of such instructions.
PR: 285711
Reported by: cracauer
Tested by: cracauer, jbo
|
|
|
|
|
|
|
|
| |
Also remove recently added patch that fixed binaries compiled with the
-static option as it has been merged upstream with commit
06e5b0b4a244090abfea333d91fc5963292cb41d.
PR: 284441
|
|
|
|
|
|
|
|
|
|
| |
Fix segmentation faults caused by -static flag into compiled binaries.
Email thread: https://lists.freebsd.org/archives/freebsd-hackers/2025-January/004236.html
Upstream bug report: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=118685
PR: 284441
Reported by: kargl
|
|
|
|
| |
PR: 282797
|
|
GCC, the GNU Compiler Collection, supports a number of languages.
This port installs the C, C++, and Fortran front ends as gcc15, g++15,
and gfortran15, respectively.
This is the first snapshot from trunk with the GCC 15 designation. It
largely is a copy of lang/gcc14-devel.
|