blob: d3d491fb60f6f5ef14d552cd045bfd9cdf8a044c [file] [log] [blame]
Andrew Geissler87f5cff2022-09-30 13:13:31 -05001/*
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
13int main (int argc, char *argv[])
14{
15 unsetenv("LD_LIBRARY_PATH");
16 execvp("target-rust-ccld-wrapper", argv);
17
18 return 0;
19}