Adds devcontainer configuration for Xilinx ISE
Introduces a devcontainer configuration to streamline the setup of a development environment for Xilinx ISE 14.7. Configures a Docker image, necessary runtime arguments, VS Code extensions, terminal settings, and port forwarding. Simplifies onboarding and ensures a consistent environment for development.
This commit is contained in:
25
.devcontainer/devcontainer.json
Normal file
25
.devcontainer/devcontainer.json
Normal file
@@ -0,0 +1,25 @@
|
||||
{
|
||||
"name": "Xilinx ISE 14.7",
|
||||
"image": "xilinx-ise:14.7",
|
||||
"runArgs": [
|
||||
"--privileged",
|
||||
"--cap-add=SYS_ADMIN",
|
||||
"--shm-size=2g"
|
||||
],
|
||||
"customizations": {
|
||||
"vscode": {
|
||||
"extensions": [
|
||||
"p2l2.vhdl-by-hgb",
|
||||
"eamodio.gitlens"
|
||||
],
|
||||
"settings": {
|
||||
"terminal.integrated.defaultProfile.linux": "bash"
|
||||
}
|
||||
}
|
||||
},
|
||||
"remoteUser": "xilinx",
|
||||
"workspaceMount": "source=${localWorkspaceFolder},target=/workspaces/${localWorkspaceFolderBasename},type=bind",
|
||||
"workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}",
|
||||
"features": {},
|
||||
"forwardPorts": [10000]
|
||||
}
|
Reference in New Issue
Block a user