dev: VS Code integration (build, test, CLI, debug, profile)#595
Merged
Conversation
Configure the repo for VS Code with parity to the existing CLion setup: - CMake Tools drives the Conan-generated presets for building. - clangd for IntelliSense (matches .clangd / .clang-tidy); cpptools marked unwanted to avoid engine conflicts. - Tasks for building odr/odr_test/CLI, running filtered gtest suites, running translate, and Instruments (xctrace) Time Profiler profiling. - CodeLLDB launch configs to debug odr_test/translate/meta/server. - scripts/gen-vscode-env.py extracts the Conan runtime env (pdf2htmlEX, poppler, fontconfig, wvWare, libmagic paths) from the test preset into .vscode/.env; scripts/run-with-env.sh loads it for tasks. - .vscode/.env (machine-specific Conan cache paths) is gitignored. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01PvSNQg6fxTXkmLj3g3RrY2
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: bd91be9cb0
ℹ️ About Codex in GitHub
Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".
The odr_test test and profiling tasks override cwd to the build dir but
invoked scripts/run-with-env.sh relatively, resolving it to a path inside
the build tree that does not exist. Anchor the wrapper to
${workspaceFolder} while keeping ./test/odr_test relative to the build cwd.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01PvSNQg6fxTXkmLj3g3RrY2
Wrap test/scripts/compare_output.sh and compare_output_server.sh as tasks so the Docker-based visual diff can be run from VS Code. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01PvSNQg6fxTXkmLj3g3RrY2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🤖 Generated with Claude Code
Sets up the repo for VS Code with parity to the existing CLion workflow: build, test, run CLI tools, debug, and profile.
What's included
.vscode/extensions.jsonms-vscode.cpptoolsunwanted (conflicts with clangd).vscode/settings.jsoncmake-build-relwithdebinfo/compile_commands.json.vscode/tasks.jsonodr,odr_test, CLI), filtered gtest runs,translate, env regen, Instruments profiling.vscode/launch.jsonodr_test(filter prompt),translate,meta,server— with runtime env + build pre-stepscripts/gen-vscode-env.py.vscode/.envscripts/run-with-env.sh.vscode/.envand execs — used by test/CLI/profiler tasks.vscode/.env(machine-specific Conan cache paths) is gitignored.First-time setup
conan-relwithdebinfo.conan install.Daily use
⇧⌘B(defaultodr_test) or CMake Tools status bar..trace, opens Instruments.app.Notes
.clangd/.clang-tidy), not the Microsoft engine..vscode/is tracked (shareable) except.env.odr_test(ranQuantity.*) andtranslate(produced HTML); JSON + xctrace template check out.