03:02:57 Hey guys! Im new here, mostly an average joe and long-time windows/mac user, but recently been playing around with linux and now I have stumbled upon illumos and I am very intruiged. 03:02:57 I am no developer and don't have any technical background, I am here because I guess I am curious to know if there is anyway I could contribute to development or etc as someone who is not a dev? 18:57:06 Does illumos/sunOS treat assembly differently? Because I'm getting this: `../hash/src/asm/AVX512/KeccakP-1600-AVX512.S:460: Error: number of operands mismatch for `mov'`, and I was under the impression stuff like this would be OS independent. Like, does illumos have different operands or arguments or whatever for 'mov' compared to other OS'? 18:57:12 context: https://github.com/smuellerDD/leancrypto/issues/61 19:06:56 those errors all seem to be `mov $12/2, %eax` -- I'm going to guess there's something with the '$12/2' part that's an issue (not sure why they couldn't just use '9', but...) 19:08:58 yeah.. 19:09:01 https://github.com/smuellerDD/leancrypto/blob/master/hash/src/asm/AVX512/KeccakP-1600-AVX512.S << at 460, 516, 851, and 885 19:11:41 aha! apparently on sysv derived platforms (which would include illumos) / is treated (by default) as a comment character 19:11:57 with whatever build system it's using, try passing `-Wa,--divide` in the command line 19:12:07 sweet! thanks, doing now 19:12:20 in like cflags/cxxflags i presume 19:12:27 yeah 19:26:40 jbk: it worked!! would it be better for me to fix the source, or would it be better for me to make meson pass `-Wa,--divide` on systems that require it 19:28:32 don't know... i didn't look enough to know the reason for the usage, and probably also a question for the maintainers of the repo 19:37:26 probably what jbk said, but I'd change the source given the choice 19:38:11 wait, no, I misread that completely, the other way around :) 19:38:29 it's not the source's fault AT&T were loons