Francesco Petrogalli
Francesco Petrogalli
+1 for this, we could make good use of it in our workflow at https://github.com/ARM-software/acle, where we require all PRs to be published against a branch called `next-release` instead of...
What do you exactly mean by LLVM compatibility?
I see, that's nothing to do with cmake and the build system. Let's keep it separate. Having cmake instead of handcrafted makefiles will not make exporting LLVM names any easier....
Why do you think that having `libsleef` and `glibc` exposing the same names is a problem?
Yes, `-lm` links agains `libm` in `glibc`. `-lsleef` will link into `libsleef`.
Yes - there are multiple ways we could do this. However, I would like to focus this conversation on the cmake development. The names of the functions are irrelevant at...
Dear @shibatch and @hfinkel, here my thoughts on how to start on porting the build system to `cmake`. I think we all agree on the fact that this needs to...
> A reproducer is to just pass CMAKE_C_FLAGS="-m32" to the build. On all platforms where I've tried, the build configures fine, and starts building, but no compiler invocations contain -m32....
> Same issue :/ Yep, I just verified the same on my machine. > IIRC cmake gets the CFLAGS and puts them into CMAKE_C_FLAGS automatically, which is what it then...
> The thing I don't yet understand is, why doesn't SLEEF append these to CMAKE_C_FLAGS ? I think you just exposed a design flaw of our build system. There are...