Hongli Lai

Results 182 comments of Hongli Lai

The simple answer is that there will be builds as soon as one of these two things happen: 1. I have free time to do it, -OR- 2. Someone sends...

Rocky Linux 9 has been released. But considering Hacker News comments, we may want to prefer Alma Linux going forward. https://news.ycombinator.com/item?id=32100338 https://news.ycombinator.com/item?id=32100579

I briefly looked into the feasibility of this. It looks like we run ARM Docker containers on Github Actions via [qemu-user-static](https://github.com/multiarch/qemu-user-static). This works as expected: ~~~yaml - name: install qemu-user-static...

There are no plans for the forseeable future to add ARM support. It's technically possible, but building the necessary expertise, organizational infrastructure and testing infrastructure necessary for ARM support is...

I'll keep this issue open for future investigation.

I think we need both a Rails-centric and a non-Rails centric benchmark. Rails is popular so we should definitely take it into account. But Rails is also notoriously hard to...

And the memory benchmark I used in my research is basically a bunch of threads that all perform this: ~~~ruby def stress_thread_main ary = [] File.open('/dev/zero', 'rb') do |f| while...

This is because Holy Build Box sets `CFLAGS/CXXFLAGS` to `-g -O2 -fvisibility=hidden -I/hbb_shlib/include` by default. Proper usage of `-fvisibility=hidden` requires help from the library in question: it has to [explicitly...

Override CFLAGS/CXXFLAGS. They're just environment variables.

Export.h should define _EXPORT as `__attribute__((visibility("default")))` on Unix, instead of as nothing.