You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
165 lines
4.0 KiB
165 lines
4.0 KiB
#!/bin/sh |
|
|
|
die () { |
|
echo "$*" >&2 |
|
exit 1 |
|
} |
|
|
|
cd "$(dirname "$0")"/../.. || |
|
die "Could not cd to top-level directory" |
|
|
|
mkdir -p .vscode || |
|
die "Could not create .vscode/" |
|
|
|
# General settings |
|
|
|
cat >.vscode/settings.json <<\EOF || |
|
{ |
|
"C_Cpp.intelliSenseEngine": "Default", |
|
"C_Cpp.intelliSenseEngineFallback": "Disabled", |
|
"files.associations": { |
|
"*.h": "c", |
|
"*.c": "c" |
|
} |
|
} |
|
EOF |
|
die "Could not write settings.json" |
|
|
|
# Infer some setup-specific locations/names |
|
|
|
GCCPATH="$(which gcc)" |
|
GDBPATH="$(which gdb)" |
|
MAKECOMMAND="make -j5 DEVELOPER=1" |
|
OSNAME= |
|
X= |
|
case "$(uname -s)" in |
|
MINGW*) |
|
GCCPATH="$(cygpath -am "$GCCPATH")" |
|
GDBPATH="$(cygpath -am "$GDBPATH")" |
|
MAKE_BASH="$(cygpath -am /git-cmd.exe) --command=usr\\\\bin\\\\bash.exe" |
|
MAKECOMMAND="$MAKE_BASH -lc \\\"$MAKECOMMAND\\\"" |
|
OSNAME=Win32 |
|
X=.exe |
|
;; |
|
Linux) |
|
OSNAME=Linux |
|
;; |
|
Darwin) |
|
OSNAME=macOS |
|
;; |
|
esac |
|
|
|
# Default build task |
|
|
|
cat >.vscode/tasks.json <<EOF || |
|
{ |
|
// See https://go.microsoft.com/fwlink/?LinkId=733558 |
|
// for the documentation about the tasks.json format |
|
"version": "2.0.0", |
|
"tasks": [ |
|
{ |
|
"label": "make", |
|
"type": "shell", |
|
"command": "$MAKECOMMAND", |
|
"group": { |
|
"kind": "build", |
|
"isDefault": true |
|
} |
|
} |
|
] |
|
} |
|
EOF |
|
die "Could not install default build task" |
|
|
|
# Debugger settings |
|
|
|
cat >.vscode/launch.json <<EOF || |
|
{ |
|
// Use IntelliSense to learn about possible attributes. |
|
// Hover to view descriptions of existing attributes. |
|
// For more information, visit: |
|
// https://go.microsoft.com/fwlink/?linkid=830387 |
|
"version": "0.2.0", |
|
"configurations": [ |
|
{ |
|
"name": "(gdb) Launch", |
|
"type": "cppdbg", |
|
"request": "launch", |
|
"program": "\${workspaceFolder}/git$X", |
|
"args": [], |
|
"stopAtEntry": false, |
|
"cwd": "\${workspaceFolder}", |
|
"environment": [], |
|
"externalConsole": true, |
|
"MIMode": "gdb", |
|
"miDebuggerPath": "$GDBPATH", |
|
"setupCommands": [ |
|
{ |
|
"description": "Enable pretty-printing for gdb", |
|
"text": "-enable-pretty-printing", |
|
"ignoreFailures": true |
|
} |
|
] |
|
} |
|
] |
|
} |
|
EOF |
|
die "Could not write launch configuration" |
|
|
|
# C/C++ extension settings |
|
|
|
make -f - OSNAME=$OSNAME GCCPATH="$GCCPATH" vscode-init \ |
|
>.vscode/c_cpp_properties.json <<\EOF || |
|
include Makefile |
|
|
|
vscode-init: |
|
@mkdir -p .vscode && \ |
|
incs= && defs= && \ |
|
for e in $(ALL_CFLAGS); do \ |
|
case "$$e" in \ |
|
-I.) \ |
|
incs="$$(printf '% 16s"$${workspaceRoot}",\n%s' \ |
|
"" "$$incs")" \ |
|
;; \ |
|
-I/*) \ |
|
incs="$$(printf '% 16s"%s",\n%s' \ |
|
"" "$${e#-I}" "$$incs")" \ |
|
;; \ |
|
-I*) \ |
|
incs="$$(printf '% 16s"$${workspaceRoot}/%s",\n%s' \ |
|
"" "$${e#-I}" "$$incs")" \ |
|
;; \ |
|
-D*) \ |
|
defs="$$(printf '% 16s"%s",\n%s' \ |
|
"" "$$(echo "$${e#-D}" | sed 's/"/\\&/g')" \ |
|
"$$defs")" \ |
|
;; \ |
|
esac; \ |
|
done && \ |
|
echo '{' && \ |
|
echo ' "configurations": [' && \ |
|
echo ' {' && \ |
|
echo ' "name": "$(OSNAME)",' && \ |
|
echo ' "intelliSenseMode": "clang-x64",' && \ |
|
echo ' "includePath": [' && \ |
|
echo "$$incs" | sort | sed '$$s/,$$//' && \ |
|
echo ' ],' && \ |
|
echo ' "defines": [' && \ |
|
echo "$$defs" | sort | sed '$$s/,$$//' && \ |
|
echo ' ],' && \ |
|
echo ' "browse": {' && \ |
|
echo ' "limitSymbolsToIncludedHeaders": true,' && \ |
|
echo ' "databaseFilename": "",' && \ |
|
echo ' "path": [' && \ |
|
echo ' "$${workspaceRoot}"' && \ |
|
echo ' ]' && \ |
|
echo ' },' && \ |
|
echo ' "cStandard": "c11",' && \ |
|
echo ' "cppStandard": "c++17",' && \ |
|
echo ' "compilerPath": "$(GCCPATH)"' && \ |
|
echo ' }' && \ |
|
echo ' ],' && \ |
|
echo ' "version": 4' && \ |
|
echo '}' |
|
EOF |
|
die "Could not write settings for the C/C++ extension"
|
|
|