From 2b4ba6d7f3f142a4467485675a87f633cd1df74a Mon Sep 17 00:00:00 2001 From: nkraetzschmar <9020053+nkraetzschmar@users.noreply.github.com> Date: Sun, 28 Sep 2025 14:19:58 +0200 Subject: [PATCH] fix: set compilerPath in c_cpp_properties.json correctly --- .vscode/c_cpp_properties.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json index 8caabd7..e4fde76 100644 --- a/.vscode/c_cpp_properties.json +++ b/.vscode/c_cpp_properties.json @@ -6,7 +6,7 @@ "${workspaceFolder}/**" ], "defines": [ "constexpr=const", "static_assert(X)=" ], - "compilerPath": "/usr/bin/gcc", + "compilerPath": "/usr/bin/x86_64-linux-gnu-gcc", "cStandard": "c17", "intelliSenseMode": "linux-gcc-x64" }