Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/s-core-devcontainer/.devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@
"bazelbuild.vscode-bazel",
"dbaeumer.vscode-eslint",
"EditorConfig.EditorConfig",
"ms-vscode.live-server", // for live preview of HTML files
"llvm-vs-code-extensions.vscode-clangd",
"jebbs.plantuml", //to preview PlantUML diagrams
"hediet.vscode-drawio", //for drawio integration
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ set -euo pipefail
# Configure Bazel to use the cache directory that is mounted from the host
echo "startup --output_user_root=/var/cache/bazel" >> ~/.bazelrc

# ensure that the Bazel cache directory has the correct permissions
sudo chown -R "$(id -un):$(id -gn)" /var/cache/bazel

# Configure clangd to remove the -fno-canonical-system-headers flag, which is
# GCC-specific. If not done, there is an annoying error message on the first
# line of every C++ file when being displayed in Visual Studio Code.
Expand Down