Skip to content

Instantly share code, notes, and snippets.

@alexeyklyukin
Created November 14, 2018 10:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alexeyklyukin/5368a35157da75045f75fa91befc9737 to your computer and use it in GitHub Desktop.
Save alexeyklyukin/5368a35157da75045f75fa91befc9737 to your computer and use it in GitHub Desktop.
tasks.json
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"options": {
"cwd": "${workspaceRoot}/../../../build/pg/master/",
"env": {
"CPPFLAGS": "-I/usr/local/opt/openssl/include",
"LDFLAGS": "-L/usr/local/opt/openssl/lib",
"CFLAGS": "-ggdb -Og -g3 -fno-omit-frame-pointer"
}
},
"tasks": [
{
"label": "configure",
"type": "shell",
"command": "${workspaceRoot}/configure",
"args": [
"--prefix=/usr/local/pgsql/master/14e9b2a",
"--enable-depend",
"--enable-cassert",
"--enable-debug",
"--with-python",
"--with-openssl"
],
"presentation": {
"reveal": "always",
"panel": "new"
},
"problemMatcher": []
},
{
"label": "make",
"type": "shell",
"command": "make",
"args": [
"-j4",
"-s",
"world"
],
"presentation": {
"reveal": "always",
"panel": "new"
},
"problemMatcher": "$gcc",
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "make install",
"type": "shell",
"command": "make",
"args": [
"install-world",
"-s"
],
"presentation": {
"reveal": "always",
"panel": "new"
},
"problemMatcher": "$gcc",
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment