Installation Guide
This guide will walk you through installing the z/TPF VS Code Debugger Extension.
Table of Contents
- Installation Guide
Prerequisites
Before installing the extension, ensure you have:
- Visual Studio Code version 1.75.0 or higher
- Network access to your z/TPF system
- Valid credentials for z/TPF system access
Installation Methods
Method 1: Install from VS Code Marketplace (Recommended)
- Open Visual Studio Code
- Click on the Extensions icon in the Activity Bar (or press
Ctrl+Shift+X/Cmd+Shift+X) - Search for “z/TPF Debugger” in the search bar
- Click Install on the z/TPF Debugger Extension
- Reload VS Code when prompted
Method 2: Install from VSIX File
If you have a .vsix file:
- Open Visual Studio Code
- Go to Extensions view (
Ctrl+Shift+X/Cmd+Shift+X) - Click the “…“ menu at the top of the Extensions view
- Select “Install from VSIX…“
- Navigate to and select the
.vsixfile - Reload VS Code when prompted
Method 3: Install via Command Line
code --install-extension IBM.ztpf-debugger
Verify Installation
After installation, verify the extension is active:
- Open the Extensions view
- Search for “z/TPF Debugger” in the installed extensions
- You should see the extension listed with a green checkmark
Initial Configuration
After installation, configure your debug connection:
- Create a
.vscodefolder in your project (if it doesn’t exist) - Create a
launch.jsonfile with your debug configuration - Configure your z/TPF system connection details
Example launch.json:
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug z/TPF",
"type": "ztpf",
"request": "launch",
"program": "${file}",
"stopOnEntry": false
}
]
}
Troubleshooting
Extension Not Loading
If the extension doesn’t load:
- Check the Output panel (
View > Output) - Select “z/TPF Debugger” from the dropdown
- Review any error messages
- Ensure VS Code is up to date
Connection Issues
If you can’t connect to your z/TPF system:
- Verify network connectivity
- Check firewall settings
- Confirm credentials are correct
- Review debug configuration
Getting Help
If you encounter issues:
- Check the GitHub Issues page
- Review existing issues or create a new one
- Include VS Code version, extension version, and error logs
Updating the Extension
The extension will automatically check for updates. To manually update:
- Open the Extensions view
- Find the z/TPF Debugger extension
- Click Update if available
- Reload VS Code when prompted
Uninstallation
To remove the extension:
- Open the Extensions view
- Find the z/TPF Debugger extension
- Click the gear icon
- Select Uninstall
- Reload VS Code when prompted
Next Steps
- Getting Started Guide - Learn debugging basics
- Features Overview - Explore debugging capabilities