Isaac Jurado

Results 12 comments of Isaac Jurado

@vyzo I couldn't build a fully static Gerbil on top of a fully static Gambit. Gerbil seems to require dynamic loading no matter what: ``` [*] Building gerbil stage1 [final]...

Thanks, I've verfied the `-cc-opts -static`. Is there a way to override the compiler command?

I guess I'm late for this game. I made myself [a PPX to resemble `async`/`await`](/etanol/bs-async) in order to play with the language. But now that #2487 is merged, looks like...

The solution provided in [5882][1] didn't fully work for me when building CPython. Therefore, I tried something similar to 39083c31a550ed80f369f60d35791e98904b8096: ``` diff --- zig_linux_x86.orig/lib/libc/include/generic-glibc/fcntl.h 2022-02-15 03:47:43.000000000 +0100 +++ zig_linux_x86.custom/lib/libc/include/generic-glibc/fcntl.h 2022-06-22...

This issue not only impacts `fcntl64`. For instance, `memfd_create` was added in 2.27; but when linking in a system with an older glibc (e.g. _Amazon Linux 2_), `memfd_create` fails to...

I believe a related issue happens with non-locals defined **after** the nested scope: ``` python from collections.abc import Callable def outer (x: int) -> Callable[[], int]: def inner () ->...

Unfortunately, I don't have much time for verifying. Feel free to resolve, if this problem comes up again, the issue could be reopened.

While this issue is being considered. Is there a way to tell the Zig C driver to use the **system's libc headers** instead of the bundled ones?

I personally don't believe in semantic versioning, the way I see it is that it has more failure stories than successes. So, if I were to make a decision, I...

Looks good. Although I can't risk my neck over the `Memoized` meta class, since I have played very little with them.