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 3199759 commit 841ea35
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,8 @@ def include_sha_headers():
lib_build_args = [
'g++', '-static', '-static-libgcc', '-Iinclude',
'-Istd', '-shared', '-o', OUTPUT_LIBRARY + '.dll',
'-L' + os.path.join(TEMP_DIR, 'glfw-3.4', 'lib-mingw-w64')
'-L' + os.path.join(TEMP_DIR, 'glfw-3.4', 'lib-mingw-w64'),
'-lole32'
] + ext_instructions + lib_headers + lib_source_files + cpp_files + cc_files

print("Executing:")
Expand Down

0 comments on commit 841ea35

Please sign in to comment.