Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into xxchan/docker
Browse files Browse the repository at this point in the history
  • Loading branch information
xxchan committed Sep 17, 2023
2 parents a68c11e + 8ef74ad commit bfaacba
Show file tree
Hide file tree
Showing 423 changed files with 10,610 additions and 9,129 deletions.
1 change: 0 additions & 1 deletion .cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ rustflags = [
# uncomment the following two lines to enable `TaskLocalAlloc`
# "--cfg",
# "enable_task_local_alloc",

]

[unstable]
Expand Down
7 changes: 4 additions & 3 deletions .config/hakari.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@ resolver = "2"
# Add triples corresponding to platforms commonly used by developers here.
# https://doc.rust-lang.org/rustc/platform-support.html
platforms = [
# "x86_64-unknown-linux-gnu",
# "x86_64-apple-darwin",
# "x86_64-pc-windows-msvc",
"x86_64-unknown-linux-gnu",
"aarch64-unknown-linux-gnu",
"x86_64-apple-darwin",
"aarch64-apple-darwin",
]

# Write out exact versions rather than a semver range. (Defaults to false.)
Expand Down
17 changes: 16 additions & 1 deletion .vscode/launch.json.example
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,21 @@
],
"cwd": "${workspaceRoot}",
"preLaunchTask": "build rw bin"
},
{
"name": "Open playground coredump",
"type": "lldb",
"request": "custom",
"targetCreateCommands": [
"target create ${workspaceFolder}/target/debug/risingwave --core ${input:coreFileName}"
],
}
],
"inputs": [
{
"id": "coreFileName",
"type": "promptString",
"description": "Enter core file path"
}
]
}
}
Loading

0 comments on commit bfaacba

Please sign in to comment.