Files
carbon-lang/installers/local/carbon.cpp
T
Jon Ross-Perkins 0b9bda10b7 Refactor common main logic (#2260)
1) toolchain and explorer use the same working dir logic, share it
2) explorer's carbon.cpp and main_bin.cpp use the same relative path logic, share it
3) You can append a longer path in one call with the right kind of iterator
4) Fix what's maybe a bug in passing `relative_prelude_path.str()` to `cl::init`
5) Collapse Main and ExplorerMain to avoid passing more parameters between
2022-10-05 17:34:04 -07:00

20 lines
705 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
#include "explorer/main.h"
#include "llvm/Support/Path.h"
auto main(int argc, char** argv) -> int {
llvm::StringRef bin = llvm::sys::path::filename(argv[0]);
if (bin == "carbon-explorer") {
static int static_for_main_addr;
return Carbon::ExplorerMain(argc, argv,
static_cast<void*>(&static_for_main_addr),
"data/prelude.carbon");
} else {
fprintf(stderr, "Unrecognized Carbon binary requested: %s", argv[0]);
return 1;
}
}