Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
openSUSE:Backports:SLE-15-SP6:Update
python-numba
fix-max-name-size.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File fix-max-name-size.patch of Package python-numba
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()
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor