summaryrefslogtreecommitdiff
path: root/lang/gcc15-devel/files (follow)
Commit message (Collapse)AuthorAgeFilesLines
* lang/gcc15-devel: Fix SIGBUS depending on CPUTYPELorenzo Salvadore2025-04-161-0/+28
| | | | | | | | | | | | | | | | | | 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
* lang/gcc15-devel: Update to 15.0.1.s20250209Lorenzo Salvadore2025-02-101-11/+0
| | | | | | | | Also remove recently added patch that fixed binaries compiled with the -static option as it has been merged upstream with commit 06e5b0b4a244090abfea333d91fc5963292cb41d. PR: 284441
* lang/gcc15-devel: Fix segfaults for static binariesDimitry Andric2025-02-041-0/+11
| | | | | | | | | | 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
* lang/gcc15-devel: Fix stage2 fail on aarch64John F. Carr2024-11-281-0/+15
| | | | PR: 282797
* lang/gcc15-devel: Add portLorenzo Salvadore2024-04-299-0/+297
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.