Cristian Le
Cristian Le
> This would be really useful as I could replace my `[cmake.define]` table with a `{wheel_tag}` preset. I'd like to help. What's the blocker here? I need to rebase this...
Got to rebasing this, and here is the main issue that we encounter in this PR ``` > raise FailedLiveProcessError(msg) from None E scikit_build_core.errors.FailedLiveProcessError: CMake configuration failed _cmake_args = all_args...
> We don't know the final bin path relative to anything else, that's handled by the installer after it makes the wheel. Yeah, but we do know the paths relative...
So progress report after experimenting a bit in https://github.com/LecrisUT/experiment-skbuild-wrapper. That one also shows the main dependency problem to resolve. I have almost all moving parts figured out, and probably with...
I guess this is ready for review. I tried to consider versioned dataclasses, but the lack of `kw_only` is blocking it. I have tried to backport it, but no luck...
> Monthly dev meeting is in 30 mins, we could discuss there. I don't think I have access to those. Is it the same room as the community meeting?
Ok, I have finally managed to get myself a python cross compilation environment (learned the hard way that `gcc --sysroot` is broken on Fedora 🙁) Anyway I've tried doing a...
Oh, it seems that we only need to correct `Python_ROOT_DIR` and make sure `Interpreter` is not used in the `FindPython`, otherwise the `CMAKE_CROSSCOMPILING` check gets in the way. My current...
Sounds good, but instead of erroring out if an inner `;` is present, I think it should escape each layer as the list is constructed, so as to allow passing...
Yeah, last I've encountered it was in a PR on Catch2. As long as you have the appropriate escaping it works. Don't remember how the `""` had to be used...