SHOO
SHOO
Oops... The version of Botan used is as follows: ``` dependency "botan" version="15ff68b93eb60a9291c98e066fb1a94af66509d4" repository="git+https://github.com/etcimon/botan.git" dependency "botan-math" version="1b85c88260ed381124aa3b20418e46d0fba7a0f6" repository="git+https://github.com/etcimon/botan-math.git" ```
Perhaps this happened because the length of the path exceeded MAX_PATH(260)?
I am suspicious of the following line: https://github.com/dlang/dub/blob/32985ea8aae88a8d50d68f9d25b7c8163c69abce/source/dub/generators/build.d#L242 On Windows, if MAX_PATH(260) is exceeded, it is determined that writing is not possible and falling back to direct build in the...
>Likely, although I'm not sure why you mentioned the VS Linker is unsupported ? The following commands cannot be linked cause of the path length: ```bat R:\>"C:\Program Files (x86)\Microsoft Visual...
Hmm... It appears that the path name of the intermediate folder to be created is longer in CI's environment than in mine. Looks like I need to do a little...
@apbryan @Geod24 That windows-dmd error is due to https://issues.dlang.org/show_bug.cgi?id=24111 [The bug fixes I have implemented](https://github.com/dlang/dmd/pull/16248) [will fix this](https://github.com/shoo/dub/actions/runs/9031350738/job/24817419504). I would recommend waiting for the current dmd-master to become dmd-latest (...
fixed by https://github.com/dlang/dub/pull/2589
Yes, I got an agreement between me and Rayerd about the matter. This pull request is reservation until an official policy about const correctness is decided.
I think this PR would pass the test now.
std.parallelism is an excellent high-level version of Thread, but it has a few complaints. 1. It's difficult to specify the type of task when using member variables or managing tasks...