Skip to content

Commit

Permalink
Fixed implementation of VariableDeclarationExpression::loadNativeFunc…
Browse files Browse the repository at this point in the history
…tion() for Windows target.
  • Loading branch information
nthnn committed Dec 13, 2024
1 parent 2773749 commit 88b84a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/n8/ast/expression/VariableDeclarationExpression.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ NativeFunction VariableDeclarationExpression::loadNativeFunction(
std::filesystem::path path(library);
std::wstring parentPath = path.parent_path().wstring();

handle = LoadLibraryA(library.c_str());
SetDllDirectoryW(parentPath.c_str());
handle = LoadLibraryA(library.c_str());

#elif defined(__APPLE__)
handle = dlopen(library.c_str(), RTLD_LAZY);
Expand Down

0 comments on commit 88b84a5

Please sign in to comment.