Skip to content

Commit

Permalink
Execution with heaptrack (#5644)
Browse files Browse the repository at this point in the history
  • Loading branch information
partouf committed Nov 7, 2023
1 parent e4f2bf6 commit 455d929
Show file tree
Hide file tree
Showing 34 changed files with 1,293 additions and 126 deletions.
13 changes: 12 additions & 1 deletion docs/API.md
Expand Up @@ -99,7 +99,18 @@ Execution Only request example:
"userArguments": "-O3",
"executeParameters": {
"args": ["arg1", "arg2"],
"stdin": "hello, world!"
"stdin": "hello, world!",
"runtimeTools": [
{
"name": "env",
"options": [
{
"name": "MYENV",
"value": "123"
}
]
}
]
},
"compilerOptions": {
"executorRequest": true
Expand Down
2 changes: 2 additions & 0 deletions etc/config/compiler-explorer.amazon.properties
Expand Up @@ -40,6 +40,8 @@ cmake=/opt/compiler-explorer/cmake/bin/cmake
useninja=false
ld=/usr/bin/ld
readelf=/usr/bin/readelf
mkfifo=/usr/bin/mkfifo
heaptrackPath=/opt/compiler-explorer/heaptrack-v1.3.0

formatters=clangformat:rustfmt:gofmt:dartformat:vfmt
formatter.clangformat.name=clang-format
Expand Down
2 changes: 2 additions & 0 deletions etc/config/compiler-explorer.defaults.properties
Expand Up @@ -50,6 +50,8 @@ cmake=cmake
useninja=false
ld=ld
readelf=readelf
mkfifo=/usr/bin/mkfifo
heaptrackPath=

# set this true to keep temporary folders for a while for debugging purposes
delayCleanupTemp=false
Expand Down

0 comments on commit 455d929

Please sign in to comment.