diff options
author | 2021-03-27 11:54:57 +0000 | |
---|---|---|
committer | 2021-04-05 09:05:17 +0000 | |
commit | 5fc1fe4a54efa286c76ae8d966e0ba989138b1f0 (patch) | |
tree | e8a444666bec9ab0dac180a888302296d57328dc /dev-lang/julia/files | |
parent | mate-base/caja: Banned Xemake is banned (diff) | |
download | gentoo-5fc1fe4a54efa286c76ae8d966e0ba989138b1f0.tar.gz gentoo-5fc1fe4a54efa286c76ae8d966e0ba989138b1f0.tar.bz2 gentoo-5fc1fe4a54efa286c76ae8d966e0ba989138b1f0.zip |
dev-lang/julia: Bump to 1.6.0
Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Patrick Lauer <patrick@gentoo.org>
Diffstat (limited to 'dev-lang/julia/files')
-rw-r--r-- | dev-lang/julia/files/julia-1.6.0-fix_build_system.patch | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/dev-lang/julia/files/julia-1.6.0-fix_build_system.patch b/dev-lang/julia/files/julia-1.6.0-fix_build_system.patch new file mode 100644 index 000000000000..2a3d9762ce80 --- /dev/null +++ b/dev-lang/julia/files/julia-1.6.0-fix_build_system.patch @@ -0,0 +1,53 @@ +diff --git a/Make.inc b/Make.inc +index 81ff923..79e47f1 100644 +--- a/Make.inc ++++ b/Make.inc +@@ -185,7 +185,7 @@ USE_GPL_LIBS ?= 1 + # Directories where said libraries get installed to + prefix ?= $(BUILDROOT)/julia-$(JULIA_COMMIT) + bindir := $(prefix)/bin +-libdir := $(prefix)/lib ++libdir := $(prefix)/GENTOOLIBDIR + libexecdir := $(prefix)/libexec + datarootdir := $(prefix)/share + docdir := $(datarootdir)/doc/julia +@@ -417,7 +417,7 @@ ifneq ($(OS), WINNT) + JCXXFLAGS += -pedantic + endif + DEBUGFLAGS := -O0 -ggdb2 -DJL_DEBUG_BUILD -fstack-protector +-SHIPFLAGS := -O3 -ggdb2 -falign-functions ++SHIPFLAGS := GENTOOCFLAGS + endif + + ifeq ($(USECLANG),1) +@@ -428,7 +428,7 @@ JCFLAGS := -pipe $(fPIC) -fno-strict-aliasing -D_FILE_OFFSET_BITS=64 + JCPPFLAGS := -fasynchronous-unwind-tables + JCXXFLAGS := -pipe $(fPIC) -fno-rtti -pedantic + DEBUGFLAGS := -O0 -g -DJL_DEBUG_BUILD -fstack-protector +-SHIPFLAGS := -O3 -g ++SHIPFLAGS := GENTOOCFLAGS + ifeq ($(OS), Darwin) + ifeq ($(USE_LIBCPP), 1) + MACOSX_VERSION_MIN := 10.8 +@@ -457,7 +457,7 @@ JCFLAGS := -std=gnu11 -pipe $(fPIC) -fno-strict-aliasing -D_FILE_OFFSET_BITS=64 + JCPPFLAGS := + JCXXFLAGS := -pipe $(fPIC) -fno-rtti + DEBUGFLAGS := -O0 -g -DJL_DEBUG_BUILD -fstack-protector +-SHIPFLAGS := -O3 -g -falign-functions ++SHIPFLAGS := GENTOOCFLAGS + endif + + ifeq ($(USECCACHE), 1) +diff --git a/doc/Makefile b/doc/Makefile +index 99e60ee..2027fb5 100644 +--- a/doc/Makefile ++++ b/doc/Makefile +@@ -30,7 +30,7 @@ deps: UnicodeData.txt + $(JLCHECKSUM) UnicodeData.txt + + clean: +- -rm -rf _build/* deps/* docbuild.log UnicodeData.txt ++ @echo "Do not clean doc/_build/html. Just use it..." + + cleanall: clean + |