Nick Desaulniers
Nick Desaulniers
I've recently moved to a newer workstation; one that's not dual socket, so I might no longer be able to reproduce. I'll report back once I've had another opportunity to...
oh, looks like that's just the client. backend is not open source :(
https://mochtu.de/2015/01/07/updating-openssh-on-mac-os-x-10-10-yosemite/ works for 10.8.5 too! :)
Firefox 36.0a1 (2014-10-14) (currently [Nightly](http://nightly.mozilla.org/)). STR: 1. goto [here](http://nicolasbize.com/faviconx/) 2. click Run under Status Icons _while keeping cursor hovered over Run button_ 3. click Run under Reset 4. repeat steps...
When building llvmlibc, we should NOT be including the system headers of the host EVER. > A very simple and ugly? fix is to just define __NEED_wint_t too. In `libc/include/llvm-libc-types/wint_t.h`?...
adding `-nostdinc -I$(clang -print-resource-dir)/include` to the invocation of clang allowed me to avoid this issue, but doesn't work across the remainder of the build. basically we want to: 1. tell...
The issue stems from the fact that the llvmlibc build isn't as hermetic as I'd like. The build relies on the kernel headers being installed in: 1. /usr/include/linux/ 2. /usr/include/asm/...
I think this demonstrates the lack of hermiticity. On my x86_64-linux-gnu host, if I build with `ninja -d keepdepfile libc` in order for `ninja` not to delete the .d dependency...
ah, that man page says: > The portable interfaces are cap_set_proc(3) and cap_get_proc(3); if possible, you should use those interfaces in applications; Perhaps it would be better to implement those...
Yeah, the more I look into these APIs, the less interested I am in having implementations for them. Perhaps we can instead rethink the use of `SYS_capget` in libc/test/src/sys/mman/linux/mlock_test.cpp ?