Avatar
omochimetaru 4/3/2024 12:11 PM
// dlmalloc.c int posix_memalign(void **memptr, size_t alignment, size_t size) { return dlposix_memalign(memptr, alignment, size); } これか
12:11 PM
memalignって何だっけ。mallocの方は使ってないの?
12:12 PM
名前 posix_memalign, memalign, valloc - アラインメントされたメモリの割り当てを行う
12:12 PM
ああ
12:12 PM
アライメント付きmallocがmemalignなのか
12:13 PM
Vult is a transcompiler well suited to write high-performance DSP code - vult-dsp/vult
12:13 PM
なんかこれも謎言語だし・・・
12:14 PM
The Vult compiler is a transcompiler, which takes Vult code and produces plain C/C++ code that can be compiled in any platform with a C/C++ compiler, for example: Arduino or Teensy boards (using fixed-point arithmetics).
12:16 PM
.vult ファイルはビルドと関係なくて、生成された C++ ソースと一緒にコミットされてるだけかな