mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-23 13:35:42 -04:00

Summary: Add setting target.auto-install-main-executable that controls whether the main executable should be automatically installed when connected to a remote platform even if it does not have an explicit install path specified. The default is true as the current behaviour. Reviewers: omjavaid, JDevlieghere, srhines, labath, clayborg Reviewed By: clayborg Subscribers: kevin.brodsky, lldb-commits, llvm-commits Tags: #lldb Differential Revision: https://reviews.llvm.org/D71761
9 lines
134 B
C++
9 lines
134 B
C++
#include <cstdio>
|
|
|
|
const char* build = BUILD;
|
|
|
|
int main(int argc, char **argv) {
|
|
printf("argc: %d\n", argc);
|
|
return argv[0][0];
|
|
}
|