Dimitry Andric

Results 15 comments of Dimitry Andric

Indeed, those files should only be built for Windows. See also https://github.com/llvm-mirror/compiler-rt/commit/1955731016e1b27c652692c70fced5ff72b403ad

This is really an edge case, and I just saw that there is already an option to use UTC for the timestamps: ``` -u Use UTC for snapshots. ``` So...

Well, specifically the time zone *offset*, not the time zone itself. Or would `zfs-auto-snap_frequent-2017-10-29-02h45-CEST` and `zfs-auto-snap_frequent-2017-10-29-02h45-CET` be clear enough? I think I'd like `zfs-auto-snap_frequent-2017-10-29-02h45+0200` and `zfs-auto-snap_frequent-2017-10-29-02h45+0100` better, but 1) it's...

> I suggest the server should be on UTC to avoid this issue. That is effectively the same as using TZ in the cronjob, or -u for the invocation. What...

Actually, I see that UTC based snapshots will already have an "U" suffix. So that at least takes care of that. Now as a user, my only question would be:...

> Hmm, that sounds more like a bug in glibc then. Although I don't understand > the connection between long double math and the __asm label. Ah, sys/cdefs.h has this...

Ah yes, the preprocessed output has: 5288 extern int vfprintf (FILE *__restrict __s, const char *__restrict __format, 5289 __gnuc_va_list __arg); ... (this is just the declaration, no 'use' yet 5626...

It looks like Termux comes with its own C headers, as I see `/data/data/com.termux/files/usr/include/stdio.h`, `/data/data/com.termux/files/usr/include/string.h`, etc. And these seem to clash a bit with `./stdio.h`, `./string.h` and others, which appear...

Tried this here on FreeBSD 15.0-CURRENT with `FreeBSD clang version 18.1.1 (https://github.com/llvm/llvm-project.git llvmorg-18.1.1-0-gdba2a75e9c7e)`, assuming the target is `powerpc-freebsd`: ```text $ ./repro.sh + cc -target powerpc-freebsd -ffast-math '-mcpu=603' -S fsqrt.c -o...

Do you expect any external netcdf.h consumers to use the `_FillValue` macro? (In FreeBSD's port system there are about 300 ports that depend on netcdf, so I have asked for...