26577d0dc0
Update to 0.46.0 OBS-URL: https://build.opensuse.org/request/show/742268 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-numba?expand=0&rev=26
27 lines
796 B
Diff
27 lines
796 B
Diff
From 4e42221e368b4486be2ec8381f20382fc3609351 Mon Sep 17 00:00:00 2001
|
|
From: Todd <toddrme2178@gmail.com>
|
|
Date: Sat, 27 Jul 2019 18:29:47 -0400
|
|
Subject: [PATCH] Set maximum name size to maximum allowable value
|
|
|
|
Fix for #3876 without needing to patch LLVM.
|
|
---
|
|
numba/__init__.py | 5 +++++
|
|
1 file changed, 5 insertions(+)
|
|
|
|
diff --git a/numba/__init__.py b/numba/__init__.py
|
|
index c62ad06289..114e9a597e 100644
|
|
--- a/numba/__init__.py
|
|
+++ b/numba/__init__.py
|
|
@@ -102,6 +102,11 @@ def _ensure_llvm():
|
|
"Please update llvmlite." %
|
|
(_min_llvm_version + llvm_version_info))
|
|
raise ImportError(msg)
|
|
+
|
|
+ try:
|
|
+ llvmlite.binding.set_option("tmp", "-non-global-value-max-name-size=4294967295")
|
|
+ except:
|
|
+ pass
|
|
|
|
check_jit_execution()
|
|
|