-
-
Notifications
You must be signed in to change notification settings - Fork 11
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
Doesn't work with Rust 1.72.0 + x86-64-windows-gnu toolchain #20
Comments
This also happens on
1. OutputFull output
|
any updates? |
Hey guys, I was able to get a solution working by downloading the I am cross compiling from ubuntu for a windows target. If you are compiling from windows you may just need to download the Packet.lib or the SDK that has it. [target.x86_64-pc-windows-gnu]
rustflags = [
"-C",
"link-args=-L/home/nicholas/Downloads/ -lPacket",
] There is probably a more official place to get this file from. Another thing I had to do was install npcap ( I believe I only require the Packet.dll file) on the target machine. |
When building I'm getting the following error:
This only happens when snowflake is imported into my project.
rustc --version --verbose
(just incase its needed)When switched to
stable-x86_64-pc-windows-msvc
toolchain the error changes to:After some research I think it might be something related with
pnet
library. Their README mentionsPacket.lib
as a requirement to build for Windows. If my guess is correct, I think this file and other possible requirements should be added tosnowflake
so its easier for the end user (like me).The text was updated successfully, but these errors were encountered: