Lilian Anatolie Moraru

Results 19 issues of Lilian Anatolie Moraru

While looking through the code I observed that the [visual_studio_generator](https://github.com/alexcrichton/cmake-rs/blob/master/src/lib.rs#L481) function sets an incorrect generator for the VS "15.0" version(I was using CMake 3.8-rc and observed that it has a...

Currently, the crate limits the user on what kind of options he can pass to `CMake`. I am trying to pass `-C path/to/a/cmake/script.cmake`(it's a script that speeds-up build-times, I use...

`#define dllimport` inside [cpprest_compat.h](https://github.com/microsoft/cpprestsdk/blob/80444805898842f7e5c62b256337c0897eb254bb/Release/include/cpprest/details/cpprest_compat.h) breaks [curl.h](https://github.com/curl/curl/blob/bfbde883af33397943df68a3ae01847a634d33bf/include/curl/curl.h#L120) on Clang 14. See minimized example here: [godbolt](https://godbolt.org/z/T6nxGY4cz) The issue was initially [reported to LLVM](https://github.com/llvm/llvm-project/issues/53269). The LLVM issue was closed. For the reason, see...

This fixes HighDPI, including multi-monitor and fractional scaling. | Before | After | |-|-| | ![HighDPI_Before](https://user-images.githubusercontent.com/621738/95874204-5567c500-0d79-11eb-9a68-c5955fc64c0c.png) | ![HighDPI_After](https://user-images.githubusercontent.com/621738/95874215-57ca1f00-0d79-11eb-838f-85ea0fc76595.png) | `du -hs cmake-build-release/output/stacer`: * before: 2,0M * after(LTO): 1,9M For the...

### Motivation On Linux, `Wasmer` could use `binfmt_misc` to allow users to run WASM binaries like any other binary, without even knowing the `wasmer` name or flags. ### Proposed solution...

🎉 enhancement
🏚 stale
priority-low

Plans to switch from `mio` to `tokio`? This would make `scaproust` play nice with the async ecosystem(also compiling the code throws a lot of deprecation warnings).

Currently `cpal` can't be cross-compiled for ARM(at least that's how I understand it). To compile `alsa-sys` for ARM I had to export 2 environment variables(after already having Rust and Cargo...

I was reading yesterday about [copy_file_range](http://man7.org/linux/man-pages/man2/copy_file_range.2.html) API extension in Linux 4.5 and first thing I remembered was the stack overflow issue with the big buffer for file copying. This is...

I have a vagga file with many containers that build one over the other through `!Container`. In my `$HOME/.vagga/settings.yaml` I have these 2: ``` yaml storage-dir: /home/lilian/.vagga/image-storage cache-dir: /home/lilian/.vagga/vagga-cache ```...

I am not sure if it is a vagga bash-completion issue or not but I want to make aware of this issue. I have a folder named `build-gcc` and a...