fix 64 +arm
parent
cf02d31e71
commit
a08becfe74
|
@ -13,11 +13,11 @@ except:
|
|||
|
||||
def get_libname(platform):
|
||||
libname=[]
|
||||
if platform['system'] in ['darwin', 'linux_x86', 'linux_x86_64']:
|
||||
if platform['system'] in ['darwin', 'linux_x86']:
|
||||
libname=['libtorrent.so']
|
||||
elif platform['system'] == 'windows':
|
||||
libname=['libtorrent.pyd']
|
||||
elif platform['system'] in ['linux_arm']:
|
||||
elif platform['system'] in ['linux_arm', 'linux_x86_64']:
|
||||
libname=['libtorrent.so', 'libtorrent-rasterbar.so.7']
|
||||
elif platform['system'] in ['android_armv7', 'android_x86']:
|
||||
libname=['libtorrent.so', 'liblibtorrent.so']
|
||||
|
|
|
@ -30,11 +30,12 @@ if __settings__.getSetting('plugin_name')!=__plugin__:
|
|||
__settings__.setSetting('plugin_name', __plugin__)
|
||||
lm.update()
|
||||
|
||||
log('platform ' + str(platform))
|
||||
log('platform: ' + str(platform))
|
||||
log('os: '+str(os.uname()))
|
||||
try:
|
||||
if platform['system'] in ['darwin', 'linux_x86', 'windows']:
|
||||
import libtorrent
|
||||
elif platform['system'] in ['linux_x86_64']:
|
||||
elif platform['system'] in ['linux_x86_64', 'linux_arm']:
|
||||
from ctypes import *
|
||||
dll_path=os.path.join(dest_path, 'libtorrent-rasterbar.so.7')
|
||||
log('CDLL path = ' + dll_path)
|
||||
|
|
|
@ -3,7 +3,7 @@ import os
|
|||
import xbmc, xbmcgui, xbmcvfs
|
||||
from net import HTTP
|
||||
|
||||
__libbaseurl__ = "https://github.com/DiMartinoXBMC/script.module.libtorrent/raw/master/python_libtorrent/"
|
||||
__libbaseurl__ = "https://github.com/DiMartinoXBMC/script.module.libtorrent/raw/master/python_libtorrent"
|
||||
__scriptname__ = "script.module.libtorrent"
|
||||
__icon__=os.path.join(xbmc.translatePath('special://home'), 'addons',
|
||||
'script.module.libtorrent', 'icon.png')
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
2682776
|
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
1252364
|
Binary file not shown.
Loading…
Reference in New Issue