Package Details: julia-git 1.11.0.r56788.g501a4f25c2b-1

Git Clone URL: https://aur.archlinux.org/julia-git.git (read-only, click to copy)
Package Base: julia-git
Description: High-level, high-performance, dynamic programming language
Upstream URL: https://julialang.org/
Licenses: MIT
Conflicts: julia
Provides: julia
Submitter: mihi
Maintainer: TrialnError (fusion809, mar)
Last Packager: TrialnError
Votes: 54
Popularity: 0.29
First Submitted: 2012-02-22 08:57 (UTC)
Last Updated: 2024-10-12 19:47 (UTC)

Required by (19)

Sources (7)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 8 9 10 11 12 .. 21 Next › Last »

TrialnError commented on 2014-10-27 16:42 (UTC)

@haawda: Even if not building the doc. The source files were located there. If that is now failing maybe this stuff moved somewhere else. Will check that. Edit: The location changed. From /usr/share/julia/doc to /usr/share/doc/julia

haawda commented on 2014-10-25 15:38 (UTC)

"rm -r $pkgdir/usr/share/julia/doc" fails, because you have disabled building docs.

TrialnError commented on 2014-09-24 09:16 (UTC)

Built the package in a clean chroot with this PKGBuild and it was successfully. So dunno what happened. Maybe you added the option to built julia with clang. But an update will follow. They included a desktop file and a icon, so a call to refresh the icon cache will be necessary (or nicer)

TrialnError commented on 2014-09-23 11:47 (UTC)

Shouldn't be as it defaulted in the past to gcc for building. Clang could be used as an alternative compiler but it was necessary to set a flag. But I'm looking at the source (And please more descriptive: "This fails to build" and "Manually building from source" is somewhat misleading. Even if a PKGBuild is used it builds from source. What changed when you build with the PKGBuild and without (aka which flags weren't there etc)) Edit: Nope. Shouldn't be necessary. Opt-In compiler. And it shouldn't be the case that some extra/llvm files landed in the extra/clang package. But asap I will try this myself

PythonNut commented on 2014-09-22 00:58 (UTC)

This fails to build unless "clang" is installed. (Manually building from source works fine without clang) Is clang a dependency?

TrialnError commented on 2014-09-16 12:28 (UTC)

@PythonNut: Theoretically yes, but it's not necessary to add that. Every user has a /etc/makepkg.conf. In there it's possible to set how many cores should be used. That's the way it should be done. And not everyone will use every core for compiling. Adding the -j param into the PKGBuild just make sense if a project cannot be compiled on more than one core (example webkitgtk) and it's necessary to override the makepkg.conf setting.

PythonNut commented on 2014-09-14 21:53 (UTC)

Would adding support for multithreaded building make sense? The Julia git repo says "name -j N" Should make the build parallel on N cores. So "make -j $(grep --count processor /proc/cpuinfo)" Should make the build parallel on all cores.