Skip to content

Commit b50e6c3

Browse files
aperezkusmour
authored andcommitted
Temp fix: disable DEBUGINFOD_URLS environment variable lookup
Summary: Test Plan: Reviewers: Subscribers: Tasks: Tags: Differential Revision: https://phabricator.intern.facebook.com/D52254168
1 parent 7d94f52 commit b50e6c3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

llvm/lib/Debuginfod/Debuginfod.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,10 @@ SmallVector<StringRef> getDefaultDebuginfodUrls() {
7676
ReadGuard.unlock();
7777
std::unique_lock<llvm::sys::RWMutex> WriteGuard(UrlsMutex);
7878
DebuginfodUrls = SmallVector<StringRef>();
79-
if (const char *DebuginfodUrlsEnv = std::getenv("DEBUGINFOD_URLS")) {
80-
StringRef(DebuginfodUrlsEnv)
81-
.split(DebuginfodUrls.value(), " ", -1, false);
82-
}
79+
// if (const char *DebuginfodUrlsEnv = std::getenv("DEBUGINFOD_URLS")) {
80+
// StringRef(DebuginfodUrlsEnv)
81+
// .split(DebuginfodUrls.value(), " ", -1, false);
82+
// }
8383
WriteGuard.unlock();
8484
ReadGuard.lock();
8585
}

0 commit comments

Comments
 (0)