mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 22:02:23 +01:00
This also factors out the code for doing this location from the driver to a tiny helper library. The motivation for this is letting tests locate data files like the prelude or other files needed by the toolchain more easily. A subsequent PR will use this heavily in the Clang runner and related logic for example.
22 lines
734 B
C++
22 lines
734 B
C++
// Part of the Carbon Language project, under the Apache License v2.0 with LLVM
|
|
// Exceptions. See /LICENSE for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
#ifndef CARBON_COMMON_EXE_PATH_H_
|
|
#define CARBON_COMMON_EXE_PATH_H_
|
|
|
|
#include "llvm/ADT/StringRef.h"
|
|
|
|
namespace Carbon {
|
|
|
|
// Computes the executable path for the given `argv[0]` value form `main`.
|
|
//
|
|
// A simplistic approach -- if the provided string isn't already a valid path,
|
|
// we look it up in the PATH environment variable. Doesn't resolve any symlinks
|
|
// and if it fails, simply returns the provided `argv0`.
|
|
auto FindExecutablePath(llvm::StringRef argv0) -> std::string;
|
|
|
|
} // namespace Carbon
|
|
|
|
#endif // CARBON_COMMON_EXE_PATH_H_
|