Daniel Dickman
Daniel Dickman
Hello Xavier and team. For context Brad is looking at the OpenBSD CompCert package and is interested in seeing whether the gcc requirement could be switched to clang. I’ve already...
Thank you. Will take some time but we will try 32-bit/64-bit x86 and aarch64 on OpenBSD. Last I checked, PowerPC does build here although looked like it needs some minor...
The pipe option would be useful too (at the moment I have a custom patch to just ignore the pipe flag when it’s used from various system makefiles). That being...
Just noting that this PR is still highly desirable from my end. Many thanks for any consideration!
For the OpenBSD port we download the source from pypi and compile it ourselves. For example for 1.20rc1 I downloaded https://pypi.io/packages/source/n/numpy/numpy-1.20.0rc1.zip. If there's any test code I could try to...
The base compiler on OpenBSD/i386 is clang 13: $ cc --version OpenBSD clang version 13.0.0 Target: i386-unknown-openbsd7.0 Thread model: posix InstalledDir: /usr/bin Will have to come back on how things...
unfortunately no change in behaviour when replacing `static NPY_INLINE` with `NPY_FINLINE` in `numpy/core/src/common/npy_extint128.h`
ok, i think i was able to get the debug symbols going (apologies, took me a bit to work it out with our ports infrastructure). See some details below. I...
The problem does not appear on amd64 according to Stuart. See: https://marc.info/?l=openbsd-ports&m=166189214620061&w=2
You're right, my example was not very good. Here's a better one: ``` #include __asm__( \ ".section .gnu.warning." __STRING(gets) \ " ; .ascii \"" "gets() is unsafe." "\" ; .text");...