diff options
author | Lorenzo Salvadore <salvadore@FreeBSD.org> | 2024-05-16 17:20:24 +0200 |
---|---|---|
committer | Lorenzo Salvadore <salvadore@FreeBSD.org> | 2024-06-20 14:33:31 +0200 |
commit | 4700c3f17859f7cc2c00fd5c9c7bf41e92c8142b (patch) | |
tree | 7afb0ef533ff6570969813de18dfb7b67db2ad6a /lang/gcc14/files/patch-gcc_jit_Make-lang.in | |
parent | lang/gcc15-devel: Update to 15.0.0.s20240616 (diff) |
lang/gcc14: Add port
GCC, the GNU Compiler Collection, supports a number of languages.
This port installs the C, C++, and Fortran front ends as gcc14,
g++14, and gfortran14, respectively.
This is the first release from the GCC 14 series.
It largely is a copy of lang/gcc14-devel, with release-specific
modifications from lang/gcc13.
Common issues that could happen when porting code to GCC 14:
https://gcc.gnu.org/gcc-14/porting_to.html
Changes: https://gcc.gnu.org/gcc-14/changes.html
Diffstat (limited to 'lang/gcc14/files/patch-gcc_jit_Make-lang.in')
-rw-r--r-- | lang/gcc14/files/patch-gcc_jit_Make-lang.in | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lang/gcc14/files/patch-gcc_jit_Make-lang.in b/lang/gcc14/files/patch-gcc_jit_Make-lang.in new file mode 100644 index 000000000000..d5fdd6103146 --- /dev/null +++ b/lang/gcc14/files/patch-gcc_jit_Make-lang.in @@ -0,0 +1,14 @@ +--- gcc/jit/Make-lang.in.orig 2024-02-25 22:32:31 UTC ++++ gcc/jit/Make-lang.in +@@ -360,9 +360,9 @@ jit.install-headers: installdirs + # Install hooks: + jit.install-headers: installdirs + $(INSTALL_DATA) $(srcdir)/jit/libgccjit.h \ +- $(DESTDIR)$(includedir)/libgccjit.h ++ $(DESTDIR)$(libsubincludedir)/libgccjit.h + $(INSTALL_DATA) $(srcdir)/jit/libgccjit++.h \ +- $(DESTDIR)$(includedir)/libgccjit++.h ++ $(DESTDIR)$(libsubincludedir)/libgccjit++.h + + ifneq (,$(findstring mingw,$(target))) + jit.install-common: installdirs jit.install-headers |