Skip to content

Commit

Permalink
(dbg) path issue?
Browse files Browse the repository at this point in the history
  • Loading branch information
MementoRC committed Jan 30, 2024
1 parent 9a1ee15 commit f866644
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup/setup_build_extension.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def build_extensions(self):
# os.rename(os.path.join(lib_dir, _a), os.path.join(lib_dir, lib_file))
# self.spwan(['lib', '/DEF:' + lib_fp, '/OUT:' + lib_file.replace('.a', '.lib')])
# self.spawn(['ar', '-t', f'{lib_dir}/{lib_file}']) # using a msys2 command with unix path
self.spawn(['dumpbin.exe', '/ALL', f'{lib_dir}/{lib_file}'])
self.spawn(['dumpbin.exe', '/ALL', f'{lib_dir}/{lib_file}'.replace('/', '\\')])
link_args_msvc.append(lib_file)
else:
self.extensions[0].extra_link_args.append(lib_fp)
Expand Down

0 comments on commit f866644

Please sign in to comment.