From 0b24841fc36c1292b96889435c4765ae881d8993 Mon Sep 17 00:00:00 2001 From: mollusk Date: Sun, 17 Sep 2017 23:23:04 -0700 Subject: [PATCH] julia: fix arch mismatch Closes: #7711 [via git-merge-pr] Maintainer Notes: This issue arose because Julia will use the most advanced build instructions available at compile time. Void's build servers use server grade processors and thus are not instruction compatible with the majority of personal computers. Detection was delayed because by chance, @maldridge owns a machine which is instruction compatible with the build machines. --- srcpkgs/julia/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/julia/template b/srcpkgs/julia/template index bf0400f0f0b..046cd7bc847 100644 --- a/srcpkgs/julia/template +++ b/srcpkgs/julia/template @@ -1,10 +1,10 @@ # Template file for 'julia' pkgname=julia version=0.6.0 -revision=1 +revision=2 nocross=yes build_style=gnu-makefile -make_build_args="prefix=/usr sysconfdir=/etc USE_SYSTEM_LLVM=1 +make_build_args="prefix=/usr MARCH=core2 sysconfdir=/etc USE_SYSTEM_LLVM=1 USE_LLVM_SHLIB=1 USE_SYSTEM_PCRE=1 USE_SYSTEM_BLAS=1 USE_SYSTEM_LAPACK=1 USE_SYSTEM_FFTW=1 USE_SYSTEM_GMP=1 USE_SYSTEM_MPFR=1 USE_SYSTEM_ARPACK=1 USE_SYSTEM_LIBUV=0