superbonaci

Results 485 comments of superbonaci

Same with ``` $ cmake -S . -B build -DCMAKE_BUILD_TYPE=release -DCMAKE_C_COMPILER=/usr/bin/clang -DCMAKE_CXX_COMPILER=/usr/bin/clang++ -G Ninja ```

Compiled Cemu on Arch then moved the binary to Ubuntu, however doesn't work: ``` ./Cemu_release ./Cemu_release: error while loading shared libraries: libboost_filesystem.so.1.79.0: cannot open shared object file: No such file...

Followed those steps with new clone of [0c9fb31](https://github.com/cemu-project/Cemu/commit/0c9fb3143f491d60959b3f2ca0aa8a04ab38b47c): ```` $ cmake -S . -B build -DCMAKE_BUILD_TYPE=release -DCMAKE_C_COMPILER=/usr/bin/clang-12 -DCMAKE_CXX_COMPILER=/usr/bin/clang++-12 -G Ninja -DCMAKE_MAKE_PROGRAM=/usr/bin/ninja -- Bootstrapping vcpkg before install -- Bootstrapping vcpkg before...

This is the full log: ```` The system is: Linux - 5.15.0-48-generic - x86_64 Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. Compiler: /usr/bin/clang-12 Build flags: Id flags: The...

> I have fixed it after installing the following packages: > > ```shell > sudo apt install libboost-program-options-dev libboost-filesystem-dev libboost-nowide-dev > ``` That did it. Please somebody update README to...

Tried building again lastest commit [2b9edce](https://github.com/cemu-project/Cemu/commit/2b9edced8144c885e5b3b14d3e3a75217e2065ec) but fails: ``` $ cmake --build build ... SDL_waylandwindow.c:(.text+0x2f41): undefined reference to `libdecor_frame_set_max_content_size' /usr/bin/ld: vcpkg_installed/x64-linux/lib/libSDL2.a(SDL_waylandwindow.c.o): in function `Wayland_SetWindowMaximumSize': SDL_waylandwindow.c:(.text+0x30d1): undefined reference to `libdecor_frame_set_max_content_size' /usr/bin/ld:...

Still the build error with latest commit [f42bebd](https://github.com/cemu-project/Cemu/commit/f42bebd196f38b9eb2dfa47aad2849cfdc0d0c5d): ``` 1 warning generated. [476/476] Linking CXX executable ../bin/Cemu_release FAILED: ../bin/Cemu_release : && /usr/bin/clang++-12 -O3 -DNDEBUG -flto=thin -rdynamic src/CMakeFiles/CemuBin.dir/main.cpp.o src/CMakeFiles/CemuBin.dir/mainLLE.cpp.o -o ../bin/Cemu_release...

@rosostolato you have the log in my last post so does not compile even having installed the packages you mention.

I'm not sure how to do it, tried this: ``` $ cmake -S . -B build -DCMAKE_BUILD_TYPE=release -DCMAKE_C_COMPILER="/usr/bin/clang-12 -v" -DCMAKE_CXX_COMPILER=/usr/bin/clang++-12 -G Ninja -DCMAKE_MAKE_PROGRAM=/usr/bin/ninja -- Running vcpkg install ... sdl2 provides...

> I'm not sure either. I would try `cmake -S . -B build -DCMAKE_BUILD_TYPE=release -DCMAKE_C_COMPILER=/usr/bin/clang-12 -DCMAKE_CXX_COMPILER=/usr/bin/clang++-12 -G -v Ninja -DCMAKE_MAKE_PROGRAM=/usr/bin/ninja` Not working: ``` $ cmake -S . -B build -DCMAKE_BUILD_TYPE=release...