You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a somewhat unique setup where I develop on my linux host machine and build the project in a Windows virtual machine. The project is shared through a shared folder (currently using virtiofs and WinFSP but I tried SAMBA aswell). The build script specifically the function load_wdk_build_makefile right here fails when trying to build the project within that shared folder. See my other issue here for more information. It seems the problem lies with std::os::windows::fs::symlink_file or rather CreateSymbolicLinkW which it seems to be using. As already say in the other issue everything works as espected as soon as I copy the project from the shared folder to the guest machines C: drive and run the script from there.
Here is a minimal rust application which I used for debugging. Z: is the virtual file system and myproject is a simple Windows rust driver according to the instructions of this repository
I have a somewhat unique setup where I develop on my linux host machine and build the project in a Windows virtual machine. The project is shared through a shared folder (currently using virtiofs and WinFSP but I tried SAMBA aswell). The build script specifically the function
load_wdk_build_makefile
right here fails when trying to build the project within that shared folder. See my other issue here for more information. It seems the problem lies withstd::os::windows::fs::symlink_file
or ratherCreateSymbolicLinkW
which it seems to be using. As already say in the other issue everything works as espected as soon as I copy the project from the shared folder to the guest machines C: drive and run the script from there.Here is a minimal rust application which I used for debugging.
Z:
is the virtual file system andmyproject
is a simple Windows rust driver according to the instructions of this repositoryThe text was updated successfully, but these errors were encountered: