Sergey Fedorov

Results 877 comments of Sergey Fedorov

> I don't know, I've never tried personally. The reason the G5 version is built in 32-bit mode is because of the JIT, which definitely won't work in 64-bit mode...

> It would need to be written from scratch. The one I'm writing for POWER9 is little-endian and specific to that ISA level. @classilla Oh… I had an impression that...

> The POWER9 JIT (for the record, POWER8 also supports LE, POWER7 sort of) is fully 64-bit. Some code was used as a template, but it's been almost completely redone...

> I like BE personally and when I upgrade my server to POWER whatever-is-current I'll probably try to run it big with FreeBSD or something, but the desktop experience is...

@classilla Not to create a separate topic: does TFF use `v8`-related or similar code? I am trying to fix `nodejs12` for Darwin PPC :)

> I have never tried it. > > You can try it! > > See [Actions](https://github.com/treefrogframework/cpi/actions). Thank you! I will check that.

It does look that there is something wrong with how `abseil` build system is set up. Fixing it on upstream side gonna fix it for everyone, otherwise such tickets will...

``` [ 12%] Building CXX object absl/random/CMakeFiles/random_internal_randen_hwaes_impl.dir/internal/randen_hwaes.cc.o cd /opt/local/var/macports/build/_opt_PPCRosettaPorts_devel_abseil/abseil/work/build/absl/random && /opt/local/bin/g++-mp-12 -Drandom_internal_randen_hwaes_impl_EXPORTS -I/opt/local/var/macports/build/_opt_PPCRosettaPorts_devel_abseil/abseil/work/abseil-cpp-20220623.0 -pipe -Os -DNDEBUG -I/opt/local/include -D_GLIBCXX_USE_CXX11_ABI=0 -arch ppc -mmacosx-version-min=10.6 -fPIC -Wall -Wextra -Wcast-qual -Wconversion-null -Wformat-security -Wmissing-declarations -Woverlength-strings -Wpointer-arith...

> Then set `CMAKE_SYSTEM_PROCESSOR=ppc` on CMake command line. @anpol This is exactly what I tried, and it does not work. Cmake somehow forces cpu_arch instead, and applies Intel AES flags....

@anpol Thank you. Well, I have solved the problem for myself via changing to CMAKE_OSX_ARCHITECTURES (in CMakeLists), but if I find a better solution that can be general, I open...