Temporarily look for modules in binary/ subdirectory. This will allow us to test modules.
The build was successful. Details

Final version should take the full path from configuration.
This commit is contained in:
Rafal Kupiec 2018-08-10 08:47:42 +02:00
parent 0561c5f901
commit 3252f54615
1 changed files with 1 additions and 1 deletions

View File

@ -10657,7 +10657,7 @@ static int vm_builtin_import(ph7_context *pCtx, int nArg, ph7_value **apArg) {
SyStringInitFromBuf(&pModule.sName, zStr, nLen);
unsigned char bfile[255] = {0};
unsigned char *file;
snprintf(bfile, sizeof(bfile) - 1, "./%s%s", zStr, PH7_LIBRARY_SUFFIX);
snprintf(bfile, sizeof(bfile) - 1, "./binary/%s%s", zStr, PH7_LIBRARY_SUFFIX);
file = bfile;
SyStringInitFromBuf(&pModule.sFile, file, nLen);
#ifdef __WINNT__