-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix windows builds - link error #9
Comments
Once the windows builds are working again we'll need to add the sym linking to the dynamic libraries for windows. |
Have there been any news on repairing the windows version? I'd like to use this tool to perform analysis for my student group, and having every team member set up WSL and somehow convincing pycharm to use it is something that I'm not sure is feasible. |
Hello, Sorry, but there has been no progress on this issue. I'll bump it up in priority, but it is still unlikely to get addressed until early next year. I need to get my hands on a windows machine first. |
On Windows the build repeatedly fails at the linking stage with the following error.
Based on this stack overflow post this issue is related to translating 64 bit memory address to 32 bit addresses.
The linker relocates data in the
.o
based on its new memory address in the linked program.A similar operation (R_X86_64_PC32) occurs in the linux
.o
files so the operation itself may not be the issue.I tried..
So possible next steps
The text was updated successfully, but these errors were encountered: