зеркало из https://github.com/microsoft/clang-1.git
c-arcmt-test.c: MSVCRT does not have setenv. Use putenv instead.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@134859 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Родитель
be5f332c4d
Коммит
0989bf7b7a
|
@ -70,7 +70,12 @@ void thread_runner(void *client_data_v) {
|
|||
int main(int argc, const char **argv) {
|
||||
thread_info client_data;
|
||||
|
||||
#if defined(_WIN32)
|
||||
if (getenv("LIBCLANG_LOGGING") == NULL)
|
||||
putenv("LIBCLANG_LOGGING=1");
|
||||
#else
|
||||
setenv("LIBCLANG_LOGGING", "1", /*overwrite=*/0);
|
||||
#endif
|
||||
|
||||
if (getenv("CINDEXTEST_NOTHREADS"))
|
||||
return carcmttest_main(argc, argv);
|
||||
|
|
Загрузка…
Ссылка в новой задаче