Arkadiusz Piekarz

Results 36 comments of Arkadiusz Piekarz

What about this blog post [1] where Bincrafters list this as a highlight of the Boost 1.66 packages release: "FindBoost.cmake : enables CMake files which refer to Boost::xyz to work...

FYI Conan 1.4 added support for non-intrusive integration with CMake - https://blog.conan.io/2018/05/30/New-conan-release-1-4.html

Have you filed a bug report? Alternatively you can try a non-modular Boost package from conan-center - https://bintray.com/conan-community/conan/boost%3Aconan. Note that it allows disabling compilation of unneeded libraries.

I also stumbled upon this problem trying to generate code coverage for https://github.com/ArekPiekarz/rusty-git-gui, using command `cargo tarpaulin`.

@orhun Unfortunately I already had libxkbcommon installed when I tried to run `cargo tarpaulin`. With the new version 0.18.2 I get the following end of log: ``` cargo tarpaulin -v...

After trying grcov, I got more info: ``` $ CARGO_INCREMENTAL=0 RUSTFLAGS="-Zprofile -Ccodegen-units=1 -Copt-level=0 -Clink-dead-code -Coverflow-checks=off -Zpanic_abort_tests -Cpanic=abort" RUSTDOCFLAGS="-Cpanic=abort" cargo +nightly build (...) Compiling rusty-git-gui v0.1.0 (/home/user/dev/project/rusty-git-gui) error: linking with `cc`...

Unfortunately, building with shared libraries still fails with the same error. ``` $ conan install .. --build missing (...) gcc.compile.c++ bin\python\build\3e3f2f3655644799d26375053fc0b3a0\object\inheritance.o gcc.link.dll bin\python\build\3e3f2f3655644799d26375053fc0b3a0\libboost_python3.dll.a D:/app/msys64/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/bin/ld.exe: cannot find -lpython36 collect2.exe: error: ld...

I checked it now and the problem is still there, the output is almost the same. (I hope I used the right command to update the recipes.) Let me know...

Here is the output of the corrected command (there were some typos in your version): `python3 -c "import sysconfig; import pprint; pprint.pprint(sysconfig.get_config_vars())"` [python-config-vars.txt](https://github.com/bincrafters/community/files/1834773/python-config-vars.txt) BTW I don't know how you're trying...

**Update:** I noticed some errors in instructions, they'll be corrected soon. **Update 2:** I fixed conanfile.txt and added output of `conan install`. Sorry you had troubles, here are the instructions...