Skip to content

Commit

Permalink
preload libgcc_s.so.1
Browse files Browse the repository at this point in the history
  • Loading branch information
adriansev committed Apr 10, 2024
1 parent ff38a3a commit 74df270
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions alienpy/alien.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
#!/usr/bin/env python3
"""Executable/module for interaction with GRID services of ALICE experiment"""

import ctypes
try:
libgcc_s = ctypes.CDLL('libgcc_s.so.1')
except Exception:
pass

import os
import sys
if sys.version_info[0] < 3 or (sys.version_info[0] == 3 and sys.version_info[1] < 6):
Expand Down

0 comments on commit 74df270

Please sign in to comment.