Skip to content

Commit

Permalink
Merge pull request #198 from danielepantaleone/i386
Browse files Browse the repository at this point in the history
setup: fixed invalid libjvm.so reference on i386 cpu
  • Loading branch information
akshayaurora committed Feb 5, 2016
2 parents a00ce3d + b9a144b commit 6fb5d6c
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 6fb5d6c

Please sign in to comment.