-
Notifications
You must be signed in to change notification settings - Fork 6.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix jni library name for PowerPC Architecture #2040
Conversation
I also set it up a CI for rocksdb on PowerPC. |
The Travis CI failure is not related to this PR. |
@siying has imported this pull request. If you are a Facebook employee, you can view this diff on Phabricator. |
Looks good to me |
@siying has imported this pull request. If you are a Facebook employee, you can view this diff on Phabricator. |
@adamretter rocksdb jar from next release will it have ppc so? |
@bharatviswa504 Good point. We are also waiting for the new release to have ppc library in rocksdb jar. |
@bharatviswa504 I do not have access to a PPC system on which I could build the binaries. @bharatviswa504 Is that something you could help with? |
@adamretter I have this jenkins CI running in Ubuntu 16.04.1 ppc64le for rocksdb http://140.211.168.68:8080/job/Rocksdb/. If you need machine credentials to do your own build, i can share with you. |
@ayappanec That would be perfect. Can you email me the details - adam DoT retter AT googlemail .com |
@adamretter Just mailed you the details |
@ayappanec Thanks for providing machine. |
Right now, building rocksdbjava in PowerPC is broken due to JNI library name. I figured it out that "uname -m" and java's os.arch matches in PowerPC architecture. I made use of this advantage to fix the issue. More info can found from this issue --> #1317