ibis-hdl
ibis-hdl
Thanks for answer :) I'm using Remote-Containers 0.231.6 in VS Code 1.66.2 I did in the devcontainer: ``` $ cmake --preset linux-clang-release $ cmake --build --preset linux-clang-release $ pushd build/linux-clang-release/...
No idea, `CMake: Configure` isn't avaiable inside the container. I'm using in `devcontainer.json` ``` "extensions": [ "ms-vscode.cpptools", "ms-vscode.cmake-tools", ... ``` These issue raises by use of terminal.
Today, I can't reproduce the issue with missing cmake tools inside container. Anyway, with:  I can configure and build, call CTest from VS Code Menus, but it failed to...
YES, simply append ``` ln -s /opt/cmake/bin/ctest /usr/local/bin/ctest ``` at [containers/cpp/.devcontainer/reinstall-cmake.sh](https://github.com/microsoft/vscode-dev-containers/blob/main/containers/cpp/.devcontainer/reinstall-cmake.sh)
any progress?
As far I know, it did work before it was changed for MSVC Clang. Anyway, Linux and Clang combination isn't a very exotic OS/compiler combination.
Thanks for your effort. I assume I have to cut off conan-cmake here, since it relies on auto-detected profiles. The sharm of this is, that I've only one CLI call...
I run into the same issue, probably. My test cases fail with diagnostic message for humans (line_start and position self (shows a space on begin of token)). Is there a...
I found a smart solution, which finally doesn't work as expected. ``` $ conan profile show -pr clang-libc++ Host profile: [settings] arch=x86_64 build_type=Release compiler=clang compiler.cppstd=gnu17 compiler.libcxx=libc++ compiler.version=18 os=Linux [conf] tools.build:compiler_executables={'c':...
During reducing the problem, it compiles now for some circumstances. I'm not sure what the problem is, but it seems to be related to selected compiler by Conan and/or the...