Thank you for your reply. I beleave you mean: https://static.rust-lang.org/dist/2015-08-19/rust-nightly-x86_64-pc-windows-msvc.msi ?
After installing it i was finally able to run cargo. Thank you!
My second issue is “hello_world” application crashing same way during run (compiled without any issues by gnu builded Rust). I’ve tried both 32 and 64, stable and nightly (gnu only) releases, same behaviour.
As I understand issue is messing between 64 and 32 version of system libraries. Here is was I’ve got from gdb after compiling my “hello world” with “rustc -g hello_world.rs”
$ gdb ./hello_world.exe
GNU gdb (GDB) 7.9.1
Copyright (C) 2015 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law. Type "show copying"
and "show warranty" for details.
This GDB was configured as "x86_64-w64-mingw32".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>.
Find the GDB manual and other documentation resources online at:
<http://www.gnu.org/software/gdb/documentation/>.
For help, type "help".
Type "apropos word" to search for commands related to "word"...
Reading symbols from ./hello_world.exe...done.
(gdb) run
Starting program: D:\Shared\Projects\Rust\hello_world.exe
[New Thread 2840.0x1c94]
[New Thread 2840.0xf50]
[New Thread 2840.0x2c10]
warning: `C:\Windows\system32\f_pbrc09.dll': Shared library architecture i386 is not compatible with target architecture i386:x86-64.
Program received signal SIGSEGV, Segmentation fault.
0x0000000077a2ada4 in ntdll!RtlDeNormalizeProcessParams ()
from C:\Windows\SYSTEM32\ntdll.dll
Not sure is it correct to use “C:\Windows\SYSTEM32\ntdll.dll” for 64 application? Also ‘C:\Windows\system32\f_pbrc09.dll’ looks incorrect.
After installing Visual Studio 2015 comunity it finaly worked!
Thank you everybody for you help!