mirror of https://github.com/kivy/pyjnius.git
setup: fixed invalid libjvm.so reference on i386 cpu
This commit is contained in:
parent
a00ce3d390
commit
b9a144b48a
2
setup.py
2
setup.py
|
@ -129,7 +129,7 @@ else:
|
||||||
libraries = ['jvm']
|
libraries = ['jvm']
|
||||||
else:
|
else:
|
||||||
incl_dir = join(jdk_home, 'include', 'linux')
|
incl_dir = join(jdk_home, 'include', 'linux')
|
||||||
lib_location = 'jre/lib/amd64/server/libjvm.so'
|
lib_location = 'jre/lib/{}/server/libjvm.so'.format(cpu)
|
||||||
|
|
||||||
include_dirs = [
|
include_dirs = [
|
||||||
join(jdk_home, 'include'),
|
join(jdk_home, 'include'),
|
||||||
|
|
Loading…
Reference in New Issue