Skip to content
Permalink
Browse files
yet another approach to adding libstdc++.so.6 to the project on Fedor…
…a 18
  • Loading branch information
walterbender committed Dec 28, 2015
1 parent aa1839e commit eea4d39
Showing 1 changed file with 5 additions and 3 deletions.
@@ -6,7 +6,9 @@
if platform.architecture()[0] == '64bit':
from box2d_64 import *
else:
from ctypes import cdll
libstdc = cdll.LoadLibrary("lib/box2d_32/libstdc++.so")
libstdc = cdll.LoadLibrary("lib/box2d_32/libstdc++.so.6")
# from ctypes import cdll
from sys import path
path.insert(0, 'lib/box2d_32')
# libstdc = cdll.LoadLibrary("lib/box2d_32/libstdc++.so")
# libstdc = cdll.LoadLibrary("lib/box2d_32/libstdc++.so.6")
from box2d_32 import *

0 comments on commit eea4d39

Please sign in to comment.