Compare commits

...

3 Commits

3 changed files with 18 additions and 7 deletions

View File

@@ -4,7 +4,9 @@
"runArgs": [ "runArgs": [
"--privileged", "--privileged",
"--cap-add=SYS_ADMIN", "--cap-add=SYS_ADMIN",
"--shm-size=2g" "--shm-size=2g",
"-v",
"/run/user/1000/gnupg/S.gpg-agent:/run/user/1000/gnupg/S.gpg-agent"
], ],
"customizations": { "customizations": {
"vscode": { "vscode": {
@@ -21,5 +23,8 @@
"workspaceMount": "source=${localWorkspaceFolder},target=/workspaces/${localWorkspaceFolderBasename},type=bind", "workspaceMount": "source=${localWorkspaceFolder},target=/workspaces/${localWorkspaceFolderBasename},type=bind",
"workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}", "workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}",
"features": {}, "features": {},
"forwardPorts": [10000] "forwardPorts": [
} 10000
],
"postStartCommand": "git config --global user.signingkey 87C8A5DD5C14DF55DBE1DB4199AC216D447E61C0 && git config --global gpg.format openpgp && git config --global commit.gpgsign true && git config --global tag.forceSignAnnotated true && sudo apt update && sudo apt upgrade -y"
}

7
.gitignore vendored
View File

@@ -1,3 +1,6 @@
build/working .hdlbuild_deps/
.working/
reports/
output/
.locale/ .locale/
vhdl_ls.toml vhdl_ls.toml

View File

@@ -15,7 +15,9 @@ testbenches:
- path: tests/*.vhd - path: tests/*.vhd
library: work library: work
dependencies: [] dependencies:
# - git: "https://git.0xmax42.io/maxp/Asynchronous-FIFO-AXI-Handshake.git"
# rev: "hdlbuild"
build: build:
build_dir: working build_dir: working
@@ -33,7 +35,8 @@ tool_options:
map: map:
- "-detail" - "-detail"
- "-timing" - "-timing"
- "-ol high" - "-ol"
- "high"
par: [] par: []