diff options
author | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2015-07-20 11:12:31 +0200 |
---|---|---|
committer | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2015-07-21 10:33:59 +0200 |
commit | 5ff0edaee6942a21d20624aade41a228932fb372 (patch) | |
tree | e6b3975e6ffe5c525f0b268fc0c9f8781b17df96 /gnu/packages/patches | |
parent | 61ee4fdf05cf866c2c8b0d056104451e798d6567 (diff) | |
download | guix-5ff0edaee6942a21d20624aade41a228932fb372.tar guix-5ff0edaee6942a21d20624aade41a228932fb372.tar.gz |
gnu: julia: Update to 0.3.10.
* gnu/packages/julia.scm (julia): Update to 0.3.10.
* gnu/packages/patches/julia-0.3.10-fix-empty-array.patch: New file.
* gnu-system.am (dist_patch_DATA): Add it.
Diffstat (limited to 'gnu/packages/patches')
-rw-r--r-- | gnu/packages/patches/julia-0.3.10-fix-empty-array.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/gnu/packages/patches/julia-0.3.10-fix-empty-array.patch b/gnu/packages/patches/julia-0.3.10-fix-empty-array.patch new file mode 100644 index 0000000000..b00f6549e3 --- /dev/null +++ b/gnu/packages/patches/julia-0.3.10-fix-empty-array.patch @@ -0,0 +1,13 @@ +See https://github.com/JuliaLang/julia/issues/11817 + +--- a/src/codegen.cpp 2015-06-24 12:44:31.218674066 +0200 ++++ b/src/codegen.cpp 2015-04-23 11:19:50.000000000 +0200 +@@ -4551,7 +4551,7 @@ + #ifdef V128_BUG + "-avx", + #endif +- }; ++ ""}; + SmallVector<std::string, 4> MAttrs(mattr, mattr+sizeof(mattr)/sizeof(mattr[0])); + EngineBuilder eb = EngineBuilder(engine_module) + .setEngineKind(EngineKind::JIT) |