Mizux Seiha

Results 71 comments of Mizux Seiha

FYI CMake 3.24 introduce `find_package()` integration in `FetchContent()` ref: https://cmake.org/cmake/help/latest/module/FetchContent.html#integrating-with-find-package note: this is to perform a `find_package()` **then** fallback to `FetchContent()` if dep is unavailable. ## Alternative If you want...

@stellaraccident technically it's `.so`/`.so`/`.pyd` (yes on macos you must also use `.so` for "native" package :face_exhaling: ) ref: * https://github.com/python/cpython/blob/8781a041a00b7a202d73bcb47606ea10e56fb1d1/Python/dynload_shlib.c#L46 * https://github.com/python/cpython/blob/8781a041a00b7a202d73bcb47606ea10e56fb1d1/Python/dynload_win.c#L29 @meteorcloudy IMHO I would do like rust and...

What you want to use is `SetGlobalSpanCoefficient` to a distance/time dimension I'm working on OR-Tools devsite/gh to add an example about this... WorkInProgress: https://github.com/google/or-tools/tree/mizux/doc/doc#globalspan-on-distance-dimension note1: this try to minimize max{cumul(end_i)}-min{cumul(start_i)}...

You may want to use: `or CMAKE_C_COMPILER_ID MATCHES clang)` to also catch Apple/ARM/Cray/XL/IBM clang based compiler.s.. ref: https://cmake.org/cmake/help/latest/variable/CMAKE_LANG_COMPILER_ID.html https://cmake.org/cmake/help/latest/command/if.html#matches

My 2cents, even with `libc6-compat` bazel is still unusable... here a trace using bazelisk on a Alpine:edge Dockerfile ```Dockerfile FROM alpine:edge AS env # Install system build dependencies ENV PATH=/usr/local/bin:$PATH...

FYI x86 implem do support `Linux`(or `Android`) and `FreeBSD` but sources are splitted... * [src/impl_x86_freebsd.c](https://github.com/google/cpu_features/blob/main/src/impl_x86_freebsd.c) * [src/impl_x86_linux_or_android.c](https://github.com/google/cpu_features/blob/main/src/impl_x86_linux_or_android.c) So do we keep the same file "layout" for PowerPC ? or rename...

note: On github action it seems to be able to clone it, so I guess: * kokoro user name/directory is longer or * github runner is better configured or *...

Same problem here in `google/or-tools` , we have to stick with `v0.9.0`, (and `rules_jvm_external==5.2`) to use JUNIT 5... Currently we are using this in our `WORKSPACE`: ```bazel # Bazel Extensions...

Will give a try tomorrow and write my feedback here ! (unless you prefer to give me access to your gitlab and/or create a user using my (at) google.com address...

Like for FreeBSD ci we could use a Vagrant box to perform a build: see: https://app.vagrantup.com/haiku-os/boxes/r1beta4-x86_64 And like for FreeBSD, the CI will be fragile with the "too many request"...