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.
This commit is contained in:
parent
b7b17c166f
commit
0b24841fc3
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue