Andrew Geissler | 87f5cff | 2022-09-30 13:13:31 -0500 | [diff] [blame] | 1 | /* |
2 | * | ||||
3 | * Copyright (C) 2022 Wind River Systems | ||||
4 | * | ||||
5 | * SPDX-License-Identifier: MIT | ||||
6 | * | ||||
7 | */ | ||||
8 | |||||
9 | #include <string.h> | ||||
10 | #include <stdlib.h> | ||||
11 | #include <unistd.h> | ||||
12 | |||||
13 | int main (int argc, char *argv[]) | ||||
14 | { | ||||
15 | unsetenv("LD_LIBRARY_PATH"); | ||||
16 | execvp("target-rust-ccld-wrapper", argv); | ||||
17 | |||||
18 | return 0; | ||||
19 | } |