ylxdzsw
ylxdzsw
Just want to add that if static linking is the only cencern, I'm able to produce a static linked binary using `RUSTFLAGS="-C target-feature=+crt-static" cargo build --target x86_64-unknown-linux-gnu --release` with glibc....
I believe you need to pass them separately: ``` options.push(String::from("-o")) options.push(String::from("auto_unmount")) ```
Thanks. That's a nice feature when one just need a ARGS parser for a runnable script with minimum notations. I can try to implement it when got time.
Yes, I have exactly the same problem even after removing my vc14 redistributable runtime and reinstalling using @iamed2 's link.
Both `v0.3.0` and latest master have the same problem. I tried `ldd` comes with mingw and it shows the following output: ``` PS C:\Users\ylxdzsw\.julia\v0.6\MXNet\deps\usr\build> ldd .\libmxnet.dll ntdll.dll => /c/WINDOWS/SYSTEM32/ntdll.dll (0x7ffb23b00000)...
I have a `vcomp140.dll` in the `deps/usr/3rdparty/vc` and another one in `Windows/system32`. Both path are in my `$Path` but it seems it doesn't find either. Well, there is yet another...
Well, unfortunately, it seems that Julia can find all of them: ``` julia> Libdl.dlopen("ntdll.dll") Ptr{Void} @0x00007ffb23b00000 julia> Libdl.dlopen("kernel32.dll") Ptr{Void} @0x00007ffb210e0000 julia> Libdl.dlopen("KERNELBASE.dll") Ptr{Void} @0x00007ffb20020000 julia> Libdl.dlopen("libopenblas.dll") Ptr{Void} @0x000000003c150000 julia> Libdl.dlopen("ADVAPI32.dll")...
My problem was solved by installing CUDA 8.0 😂. My previous installation is CUDA 9.0 since CUDA 8.0 reports that I'm using a newer hardware than the bundled driver. After...
I think we can check the CUDA version [here](https://github.com/dmlc/MXNet.jl/blob/57b50d49691174ffc8fd78bf821d807e277d8f7b/deps/build.jl#L47) since we call `nvcc --version` already. Finally, thanks!
I'm also wanting this feature. Though I have another idea about the `RcKey`. Currently keys do not have references to the map they belongs to, and they must be used...