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 9d2ff47 commit 72841edCopy full SHA for 72841ed
argparser.cpp
@@ -391,12 +391,14 @@ void ArgParser::prepareOptions() {
391
392
option = OPT_JFFI_PATH;
393
#ifdef WIN32
394
- option += (platformDir + "\\lib\\native\\i386-Windows;"
+ option += (platformDir + "\\lib\\native;"
395
+ + platformDir + "\\lib\\native\\i386-Windows;"
396
+ platformDir + "\\lib\\native\\x86_64-Windows");
397
#else
398
struct utsname name;
399
if (uname(&name) == 0) {
- string ffiPath, ffiBase(platformDir + "/lib/native");
400
+ string ffiBase(platformDir + "/lib/native");
401
+ string ffiPath = ffiBase;
402
DIR* dir = opendir(ffiBase.c_str());
403
struct dirent* ent;
404
if (dir != NULL) {
0 commit comments