We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2214451 commit f0e987cCopy full SHA for f0e987c
argparser.cpp
@@ -395,13 +395,13 @@ void ArgParser::prepareOptions() {
395
396
option = OPT_JFFI_PATH;
397
#ifdef WIN32
398
- option += (platformDir + "\\lib\\native;"
399
- + platformDir + "\\lib\\native\\i386-Windows;"
400
- + platformDir + "\\lib\\native\\x86_64-Windows");
+ option += (platformDir + "\\lib\\jni;"
+ + platformDir + "\\lib\\jni\\i386-Windows;"
+ + platformDir + "\\lib\\jni\\x86_64-Windows");
401
#else
402
struct utsname name;
403
if (uname(&name) == 0) {
404
- string ffiBase(platformDir + "/lib/native");
+ string ffiBase(platformDir + "/lib/jni");
405
string ffiPath = ffiBase;
406
DIR* dir = opendir(ffiBase.c_str());
407
struct dirent* ent;
0 commit comments