Dmitry Bely
Dmitry Bely
Here are my efforts to fix https://github.com/mmottl/sqlite3-ocaml/issues/35. I had to build sqlite3 from sources that was much easier that fighting against pkg-config on different platforms. @mmottl, do you think it's...
Looking into the commit history I see [Improved exception function declarations for MSVC](https://github.com/mmottl/sqlite3-ocaml/commit/ddc5c17fce3217891e5fc4804c9a2999c04da222) commit, whose name suggests that sqlite3-ocaml can be built for Windows. Unfortunately that's not the case; https://github.com/mmottl/sqlite3-ocaml/commit/03291392186f33e33b6bcc5cb9566a242c65ccd3...
https://github.com/hackwaly/ocamlearlybird/blob/1780298f06fc814b52ad3cc550d599e64014defe/ocaml_debug_adapter/debug_conn.ml#L145-L146 On 32-bit OS `Lwt_io.BE.read_int` reads `-1` as `-2` and check `f stack_pos = -1` fails. See `lwt` sources: https://github.com/ocsigen/lwt/blob/d791b9bd3e0ec3035796122e002d9e85408304d0/src/unix/lwt_io.ml#L1058-L1069 Using `if stack_pos < 0 then Lwt.return None` I was...
Otherwise, I get the following on a server reboot: ``` Nov 13 12:35:20 git git-as-svn[144]: 2019-11-13T12:35:20,108 INFO [main] (Main.java:42) - git-as-svn version: 1.21.7, f6e194fc3c1daf0bb03d14aaa07deb483470dc28 Nov 13 12:35:24 git git-as-svn[144]: 2019-11-13T12:35:24,404...
Current implementation of shims as .bat files breaks some existing use cases. E.g. [CMake wrapper for conan](https://github.com/conan-io/cmake-conan) contains the following code fragment to call [Conan](https://github.com/conan-io/conan): ```cmake execute_process(COMMAND ${CONAN_CMD} ${conan_args} RESULT_VARIABLE...
### Package and Environment Details (include every applicable attribute) * Package Name/Version: **boost_generator/1.69.0** * Operating System+version: **Windows 10** For some reason I need ``` [general] default_profile = default ``` in...
### Package and Environment Details (include every applicable attribute) * Package Name/Version: **boost_python/1.69.0** This method https://github.com/bincrafters/conan-boost_python/blob/c1ae94ef973150d4f698943fb89ba91d0d422e6a/conanfile.py#L51-L54 is not called in `boost_base/1.69.0@bincrafters/stable` so python version check never happens.
### Package and Environment Details * Package Name/Version: **cygwin_installer/2.9.0** * Operating System+version: **Windows 10** Something is changed (recently?) in Cygwin, now the recipe fails to package it: ``` arch_build=x86_64 build_type=Release...
Can we exclude this: https://github.com/bincrafters/conan-boost_base/blob/06b161a93da699d70d8fe7df162b30e7078a243c/conanfile.py#L716 at least for Windows static build? PATH size is quite limited there (see [Limitation to the length of the System PATH variable](https://software.intel.com/en-us/articles/limitation-to-the-length-of-the-system-path-variable)), and numerous modular...
### Description of Problem, Request, or Question ConanMultiPackager(use_docker=True) doesn't correctly handle build profile settings. If I set `CONAN_BASE_PROFILE_BUILD=my_build_profile`, CPT adds ``` -e CPT_PROFILE_BUILD="@@include(my_build_profile)@@@@[settings]@@@@[options]@@@@[env]@@@@[build_requires]@@@@" ``` to Docker command line, but the...