Skip to content

Commit

Permalink
setup: fixed invalid libjvm.so reference on i386 cpu
Browse files Browse the repository at this point in the history
  • Loading branch information
danielepantaleone committed Feb 2, 2016
1 parent a00ce3d commit b9a144b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def getenv(key):
libraries = ['jvm']
else:
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 = [
join(jdk_home, 'include'),
Expand Down

0 comments on commit b9a144b

Please sign in to comment.