swatanabe

Results 84 comments of swatanabe

AMDG On 6/27/19 9:27 AM, SubrataM3 wrote: > I would like to build boost libraries without documentation files. with only header files and .so libraries. > I have tried ./b2...

AMDG On 6/29/19 6:00 AM, SubrataM3 wrote: > > You can see the screenshot below > ![shot_190629_171728](https://user-images.githubusercontent.com/15718377/60383703-16353800-9a92-11e9-9e01-adf7bc347926.png) > I got those output with ./bootstrap.sh followed by ./b2 and checkinstall ./b2...

`is_invokable_v` is wrong. `is_callable_v` is used here to distinguish (member) function pointers from function objects. OTOH, I have no idea how the `is_callable_v` ever worked, as clang is obviously correct...

AMDG On 10/11/2018 07:20 AM, Peter Dimov wrote: > While investigating https://github.com/boostorg/thread/issues/228 I saw that under Cygwin `threadapi=win32` is chosen by default, but I can't figure out why. The `get-default`...

AMDG On 10/11/2018 09:10 AM, Peter Dimov wrote: > `target-os` is `cygwin` though. > Ugh. This sounds like yet another bug in targets.evaluate-requirements. In Christ, Steven Watanabe

AMDG Okay. I know what's going on. The implementation of threadapi is not quite correct, unfortunately. a) target-os is set to the default value (windows) b) threadapi is calculated based...

AMDG On 10/11/2018 10:04 AM, Peter Dimov wrote: > Would moving the threadapi detection to default-build fix it? > No. default-build doesn't handle conditionals. (I'd like it to work, but...

AMDG On 10/11/2018 10:37 AM, Peter Dimov wrote: > If we drop the default value handling in `threadapi-feature.detect`, it would just return `foo` when `` is already `foo`, so there's...

On 10/11/2018 10:50 AM, Peter Dimov wrote: > I suppose that `win32_pthread_paths` should be somehow using `message` to warn at build time instead of warning at configure time, but I...

AMDG On 10/11/2018 11:20 AM, Peter Dimov wrote: > > Apparently `configure.builds` doesn't like conditional requirements. > A cannot return another conditional. In Christ, Steven Watanabe