Boris Rasin
Boris Rasin
Enums are supported, but not all C++ features are supported. Here is is a list of supported types: https://www.scapix.com/language_bridge/types/
Current version of Scapix cannot directly handle complex C++ libraries with template interfaces. Your best bet would be to create your own C++ wrapper code around such library, providing more...
Boost::context library [boost/libs/context/CMakeLists.txt](https://github.com/boostorg/context/blob/boost-1.83.0/CMakeLists.txt) selects asm sources based on `CMAKE_SYSTEM_PROCESSOR` variable during CMake configuration step. `CMAKE_SYSTEM_PROCESSOR` specifies single architecture, which in your case happens to be arm64. So the build fails...
I cannot recreate this issue using Ubuntu 22.04 with gcc 11.4 compiler. This is what I installed on clean Ubuntu 22.04: ``` sudo snap install cmake sudo apt install g++...
Thank you for your report. This is strange, as it works for me in the same environment. Can you please run one more test? In the file: `~\.cmodule\scapix\1.0.35\CMakeLists.txt` In line...
Okay, I installed gcc 12: `sudo apt install gcc-12`, now I have both gcc 11 and gcc 12 installed (like you do) and now I get the same error you...
This problem affects clang in general, when both gcc-11 and gcc-12 is installed on Ubuntu 22.04: [clang fails to find C++ headers in presence of gcc-12 package](https://bugs.launchpad.net/ubuntu/+source/llvm-toolchain-14/+bug/2009223)
I found out this problem exists when you install "gcc-12" package. If you install "g++-12" package instead, there is no problem. "gcc-12" package does not install C++ standard library, while...
Just to note, this problem prevents using CMake 3.28 (or later) with C++20 (or later), even in a project without modules.
The problem I see is listed in this bug report title: "error: CMAKE_CXX_COMPILER_CLANG_SCAN_DEPS-NOTFOUND". This happens with provided CMake file and empty "test.cpp" file. Which means it happens with a project...