mirror of
https://github.com/rui314/mold.git
synced 2024-11-11 05:46:58 +03:00
716 lines
27 KiB
C++
716 lines
27 KiB
C++
#include "mold.h"
|
|
|
|
#include <sstream>
|
|
#include <tbb/global_control.h>
|
|
#include <unordered_set>
|
|
|
|
static const char helpmsg[] = R"(
|
|
Options:
|
|
--help Report usage information
|
|
-v, --version Report version information
|
|
-V Report version and target information
|
|
-(, --start-group Ignored
|
|
-), --end-group Ignored
|
|
-C DIR, --directory DIR Change to DIR before doing anything
|
|
-E, --export-dynamic Put symbols in the dynamic symbol table
|
|
--no-export-dynamic
|
|
-F LIBNAME, --filter LIBNAME
|
|
Set DT_FILTER to the specified value
|
|
-I FILE, --dynamic-linker FILE
|
|
Set dynamic linker path
|
|
--no-dynamic-linker
|
|
-L DIR, --library-path DIR Add DIR to library search path
|
|
-M, --print-map Write map file to stdout
|
|
-N, --omagic Do not page align data, do not make text readonly
|
|
--no-omagic
|
|
-O NUMBER Ignored
|
|
-S, --strip-debug Strip .debug_* sections
|
|
-T FILE, --script FILE Read linker script
|
|
-X, --discard-locals Discard temporary local symbols
|
|
-e SYMBOL, --entry SYMBOL Set program entry point
|
|
-f SHLIB, --auxiliary SHLIB Set DT_AUXILIARY to the specified value
|
|
-h LIBNAME, --soname LIBNAME
|
|
Set shared library name
|
|
-l LIBNAME Search for a given library
|
|
-m EMULATION Ignored
|
|
-o FILE, --output FILE Set output filename
|
|
-s, --strip-all Strip .symtab section
|
|
-u SYMBOL, --undefined SYMBOL
|
|
Force to resolve SYMBOL
|
|
--Bdynamic Link against shared libraries (default)
|
|
--Bstatic Do not link against shared libraries
|
|
--Bsymbolic Bind global symbols locally
|
|
--Bsymbolic-functions Bind global functions locally
|
|
--Map FILE Write map file to a given file
|
|
--allow-multiple-definition Ignored
|
|
--as-needed Only set DT_NEEDED if used
|
|
--no-as-needed
|
|
--build-id [none,md5,sha1,sha256,uuid,HEXSTRING]
|
|
Generate build ID
|
|
--no-build-id
|
|
--chroot DIR Set a given path to root directory
|
|
--color-diagnostics Ignored
|
|
--compress-debug-sections [none,zlib,zlib-gabi]
|
|
Compress .debug_* sections
|
|
--demangle Demangle C++ symbols in log messages (default)
|
|
--no-demangle
|
|
--disable-new-dtags Ignored
|
|
--dynamic-list Read a list of dynamic symbols
|
|
--eh-frame-hdr Create .eh_frame_hdr section
|
|
--no-eh-frame-hdr
|
|
--enable-new-dtags Ignored
|
|
--exclude-libs LIB,LIB,.. Mark all symbols in given libraries hidden
|
|
--fatal-warnings Ignored
|
|
--no-fatal-warnings Ignored
|
|
--fini SYMBOL Call SYMBOL at unload-time
|
|
--fork Spawn a child process (default)
|
|
--no-fork
|
|
--gc-sections Remove unreferenced sections
|
|
--no-gc-sections
|
|
--gdb-index Ignored
|
|
--hash-style [sysv,gnu,both]
|
|
Set hash style
|
|
--icf Fold identical code
|
|
--no-icf
|
|
--image-base ADDR Set the base address to a given value
|
|
--init SYMBOL Call SYMBOl at load-time
|
|
--no-undefined Report undefined symbols (even with --shared)
|
|
--perf Print performance statistics
|
|
--pie, --pic-executable Create a position independent executable
|
|
--no-pie, --no-pic-executable
|
|
--plugin Ignored
|
|
--plugin-opt Ignored
|
|
--pop-state Pop state of flags governing input file handling
|
|
--preload
|
|
--print-gc-sections Print removed unreferenced sections
|
|
--no-print-gc-sections
|
|
--print-icf-sections Print folded identical sections
|
|
--no-print-icf-sections
|
|
--push-state Pop state of flags governing input file handling
|
|
--quick-exit Use quick_exit to exit (default)
|
|
--no-quick-exit
|
|
--relax Optimize instructions (default)
|
|
--no-relax
|
|
--repro Embed input files to .repro section
|
|
--rpath DIR Add DIR to runtime search path
|
|
--rpath-link DIR Ignored
|
|
--run COMMAND ARG... Run COMMAND with mold as /usr/bin/ld
|
|
--shared, --Bshareable Create a share library
|
|
--sort-common Ignored
|
|
--sort-section Ignored
|
|
--spare-dynamic-tags NUMBER Reserve give number of tags in .dynamic section
|
|
--static Do not link against shared libraries
|
|
--stats Print input statistics
|
|
--sysroot DIR Set target system root directory
|
|
--thread-count COUNT Use COUNT number of threads
|
|
--threads Use multiple threads (default)
|
|
--no-threads
|
|
--trace Print name of each input file
|
|
--version-script FILE Read version script
|
|
--warn-common Warn about common symbols
|
|
--no-warn-common
|
|
--whole-archive Include all objects from static archives
|
|
--no-whole-archive
|
|
--wrap SYMBOL Use wrapper function for a given symbol
|
|
-z now Disable lazy function resolution
|
|
-z lazy Enable lazy function resolution (default)
|
|
-z execstack Require executable stack
|
|
-z noexecstack
|
|
-z relro Make some sections read-only after relocation (default)
|
|
-z norelro
|
|
-z defs Report undefined symbols (even with --shared)
|
|
-z nodefs
|
|
-z nodlopen Mark DSO not available to dlopen
|
|
-z nodelete Mark DSO non-deletable at runtime
|
|
-z nocopyreloc Do not create copy relocations
|
|
-z initfirst Mark DSO to be initialized first at runtime
|
|
-z interpose Mark object to interpose all DSOs but executable)";
|
|
|
|
template <typename E>
|
|
static std::vector<std::string_view>
|
|
read_response_file(Context<E> &ctx, std::string_view path) {
|
|
std::vector<std::string_view> vec;
|
|
MemoryMappedFile<E> *mb =
|
|
MemoryMappedFile<E>::must_open(ctx, std::string(path));
|
|
u8 *data = mb->data(ctx);
|
|
|
|
auto read_quoted = [&](i64 i, char quote) {
|
|
std::string buf;
|
|
while (i < mb->size() && data[i] != quote) {
|
|
if (data[i] == '\\') {
|
|
buf.append(1, data[i + 1]);
|
|
i += 2;
|
|
} else {
|
|
buf.append(1, data[i++]);
|
|
}
|
|
}
|
|
if (i >= mb->size())
|
|
Fatal(ctx) << path << ": premature end of input";
|
|
vec.push_back(save_string(ctx, buf));
|
|
return i + 1;
|
|
};
|
|
|
|
auto read_unquoted = [&](i64 i) {
|
|
std::string buf;
|
|
while (i < mb->size() && !isspace(data[i]))
|
|
buf.append(1, data[i++]);
|
|
vec.push_back(save_string(ctx, buf));
|
|
return i;
|
|
};
|
|
|
|
for (i64 i = 0; i < mb->size();) {
|
|
if (isspace(data[i]))
|
|
i++;
|
|
else if (data[i] == '\'')
|
|
i = read_quoted(i + 1, '\'');
|
|
else if (data[i] == '\"')
|
|
i = read_quoted(i + 1, '\"');
|
|
else
|
|
i = read_unquoted(i);
|
|
}
|
|
return vec;
|
|
}
|
|
|
|
template <typename E>
|
|
std::vector<std::string_view>
|
|
expand_response_files(Context<E> &ctx, char **argv) {
|
|
std::vector<std::string_view> vec;
|
|
|
|
for (i64 i = 0; argv[i]; i++) {
|
|
if (argv[i][0] == '@')
|
|
append(vec, read_response_file(ctx, argv[i] + 1));
|
|
else
|
|
vec.push_back(argv[i]);
|
|
}
|
|
return vec;
|
|
}
|
|
|
|
static std::vector<std::string> add_dashes(std::string name) {
|
|
// Multi-letter linker options can be preceded by either a single
|
|
// dash or double dashes except ones starting with "o", which must
|
|
// be preceded by double dashes. For example, "-omagic" is
|
|
// interpreted as "-o magic". If you really want to specify the
|
|
// "omagic" option, you have to pass "--omagic".
|
|
if (name[0] == 'o')
|
|
return {"--" + name};
|
|
return {"-" + name, "--" + name};
|
|
}
|
|
|
|
template <typename E>
|
|
bool read_arg(Context<E> &ctx, std::span<std::string_view> &args,
|
|
std::string_view &arg, std::string name) {
|
|
if (name.size() == 1) {
|
|
if (args[0] == "-" + name) {
|
|
if (args.size() == 1)
|
|
Fatal(ctx) << "option -" << name << ": argument missing";
|
|
arg = args[1];
|
|
args = args.subspan(2);
|
|
return true;
|
|
}
|
|
|
|
if (args[0].starts_with("-" + name)) {
|
|
arg = args[0].substr(name.size() + 1);
|
|
args = args.subspan(1);
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
for (std::string opt : add_dashes(name)) {
|
|
if (args[0] == opt) {
|
|
if (args.size() == 1)
|
|
Fatal(ctx) << "option " << name << ": argument missing";
|
|
arg = args[1];
|
|
args = args.subspan(2);
|
|
return true;
|
|
}
|
|
|
|
if (args[0].starts_with(opt + "=")) {
|
|
arg = args[0].substr(opt.size() + 1);
|
|
args = args.subspan(1);
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
bool read_flag(std::span<std::string_view> &args, std::string name) {
|
|
for (std::string opt : add_dashes(name)) {
|
|
if (args[0] == opt) {
|
|
args = args.subspan(1);
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
static bool read_z_flag(std::span<std::string_view> &args, std::string name) {
|
|
if (args.size() >= 2 && args[0] == "-z" && args[1] == name) {
|
|
args = args.subspan(2);
|
|
return true;
|
|
}
|
|
|
|
if (!args.empty() && args[0] == "-z" + name) {
|
|
args = args.subspan(1);
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
template <typename E>
|
|
std::string create_response_file(Context<E> &ctx) {
|
|
std::string buf;
|
|
std::stringstream out;
|
|
|
|
std::string cwd = get_current_dir();
|
|
out << "-C " << cwd.substr(1) << "\n";
|
|
|
|
if (cwd != "/") {
|
|
out << "--chroot ..";
|
|
i64 depth = std::count(cwd.begin(), cwd.end(), '/');
|
|
for (i64 i = 1; i < depth; i++)
|
|
out << "/..";
|
|
out << "\n";
|
|
}
|
|
|
|
for (i64 i = 1; i < ctx.cmdline_args.size(); i++) {
|
|
std::string_view arg = ctx.cmdline_args[i];
|
|
|
|
if (arg == "-repro" || arg == "--repro") {
|
|
i++;
|
|
continue;
|
|
}
|
|
|
|
out << arg << "\n";
|
|
}
|
|
|
|
return out.str();
|
|
}
|
|
|
|
template <typename E>
|
|
static i64 parse_hex(Context<E> &ctx, std::string opt, std::string_view value) {
|
|
if (!value.starts_with("0x") && !value.starts_with("0X"))
|
|
Fatal(ctx) << "option -" << opt << ": not a hexadecimal number";
|
|
value = value.substr(2);
|
|
if (value.find_first_not_of("0123456789abcdefABCDEF") != value.npos)
|
|
Fatal(ctx) << "option -" << opt << ": not a hexadecimal number";
|
|
return std::stol(std::string(value), nullptr, 16);
|
|
}
|
|
|
|
template <typename E>
|
|
static i64 parse_number(Context<E> &ctx, std::string opt,
|
|
std::string_view value) {
|
|
size_t nread;
|
|
i64 ret = std::stol(std::string(value), &nread, 0);
|
|
if (value.size() != nread)
|
|
Fatal(ctx) << "option -" << opt << ": not a number: " << value;
|
|
return ret;
|
|
}
|
|
|
|
template <typename E>
|
|
static std::vector<u8> parse_hex_build_id(Context<E> &ctx, std::string_view arg) {
|
|
assert(arg.starts_with("0x") || arg.starts_with("0X"));
|
|
|
|
if (arg.size() % 2)
|
|
Fatal(ctx) << "invalid build-id: " << arg;
|
|
if (arg.substr(2).find_first_not_of("0123456789abcdefABCDEF") != arg.npos)
|
|
Fatal(ctx) << "invalid build-id: " << arg;
|
|
|
|
arg = arg.substr(2);
|
|
|
|
auto fn = [](char c) {
|
|
if ('0' <= c && c <= '9')
|
|
return c - '0';
|
|
if ('a' <= c && c <= 'f')
|
|
return c - 'a' + 10;
|
|
assert('A' <= c && c <= 'F');
|
|
return c - 'A' + 10;
|
|
};
|
|
|
|
std::vector<u8> vec(arg.size() / 2);
|
|
for (i64 i = 0; i < vec.size(); i++)
|
|
vec[i] = (fn(arg[i * 2]) << 4) | fn(arg[i * 2 + 1]);
|
|
return vec;
|
|
}
|
|
|
|
static std::vector<std::string_view>
|
|
split_by_comma_or_colon(std::string_view str) {
|
|
std::vector<std::string_view> vec;
|
|
|
|
for (;;) {
|
|
i64 pos = str.find_first_of(",:");
|
|
if (pos == str.npos) {
|
|
vec.push_back(str);
|
|
break;
|
|
}
|
|
vec.push_back(str.substr(0, pos));
|
|
str = str.substr(pos);
|
|
}
|
|
return vec;
|
|
}
|
|
|
|
static i64 get_default_thread_count() {
|
|
// mold doesn't scale above 32 threads.
|
|
int n = tbb::global_control::active_value(
|
|
tbb::global_control::max_allowed_parallelism);
|
|
return std::min(n, 32);
|
|
}
|
|
|
|
template <typename E>
|
|
void parse_nonpositional_args(Context<E> &ctx,
|
|
std::vector<std::string_view> &remaining) {
|
|
std::span<std::string_view> args = ctx.cmdline_args;
|
|
args = args.subspan(1);
|
|
|
|
ctx.arg.thread_count = get_default_thread_count();
|
|
|
|
while (!args.empty()) {
|
|
std::string_view arg;
|
|
|
|
if (read_flag(args, "v") || read_flag(args, "version")) {
|
|
SyncOut(ctx) << get_version_string();
|
|
exit(0);
|
|
}
|
|
|
|
if (read_flag(args, "help")) {
|
|
SyncOut(ctx) << "Usage: " << ctx.cmdline_args[0]
|
|
<< " [options] file...\n" << helpmsg;
|
|
exit(0);
|
|
}
|
|
|
|
if (read_arg(ctx, args, arg, "o") || read_arg(ctx, args, arg, "output")) {
|
|
ctx.arg.output = arg;
|
|
} else if (read_arg(ctx, args, arg, "dynamic-linker") ||
|
|
read_arg(ctx, args, arg, "I")) {
|
|
ctx.arg.dynamic_linker = arg;
|
|
} else if (read_arg(ctx, args, arg, "no-dynamic-linker")) {
|
|
ctx.arg.dynamic_linker = "";
|
|
} else if (read_flag(args, "V")) {
|
|
SyncOut(ctx) << get_version_string()
|
|
<< "\n Supported emulations:\n elf_x86_64\n elf_i386";
|
|
} else if (read_flag(args, "export-dynamic") || read_flag(args, "E")) {
|
|
ctx.arg.export_dynamic = true;
|
|
} else if (read_flag(args, "no-export-dynamic")) {
|
|
ctx.arg.export_dynamic = false;
|
|
} else if (read_flag(args, "Bsymbolic")) {
|
|
ctx.arg.Bsymbolic = true;
|
|
} else if (read_flag(args, "Bsymbolic-functions")) {
|
|
ctx.arg.Bsymbolic_functions = true;
|
|
} else if (read_arg(ctx, args, arg, "exclude-libs")) {
|
|
append(ctx.arg.exclude_libs, split_by_comma_or_colon(arg));
|
|
} else if (read_arg(ctx, args, arg, "e") ||
|
|
read_arg(ctx, args, arg, "entry")) {
|
|
ctx.arg.entry = arg;
|
|
} else if (read_arg(ctx, args, arg, "Map")) {
|
|
ctx.arg.Map = arg;
|
|
ctx.arg.print_map = true;
|
|
} else if (read_flag(args, "print-map") || read_flag(args, "M")) {
|
|
ctx.arg.print_map = true;
|
|
} else if (read_flag(args, "static") || read_flag(args, "Bstatic")) {
|
|
ctx.arg.is_static = true;
|
|
remaining.push_back("-Bstatic");
|
|
} else if (read_flag(args, "Bdynamic")) {
|
|
ctx.arg.is_static = false;
|
|
remaining.push_back("-Bdynamic");
|
|
} else if (read_flag(args, "shared") || read_flag(args, "Bshareable")) {
|
|
ctx.arg.shared = true;
|
|
} else if (read_arg(ctx, args, arg, "spare-dynamic-tags")) {
|
|
ctx.arg.spare_dynamic_tags = parse_number(ctx, "spare-dynamic-tags", arg);
|
|
} else if (read_flag(args, "demangle")) {
|
|
ctx.arg.demangle = true;
|
|
} else if (read_flag(args, "no-demangle")) {
|
|
ctx.arg.demangle = false;
|
|
} else if (read_arg(ctx, args, arg, "y") ||
|
|
read_arg(ctx, args, arg, "trace-symbol")) {
|
|
ctx.arg.trace_symbol.push_back(arg);
|
|
} else if (read_arg(ctx, args, arg, "filler")) {
|
|
ctx.arg.filler = parse_hex(ctx, "filler", arg);
|
|
} else if (read_arg(ctx, args, arg, "L") ||
|
|
read_arg(ctx, args, arg, "library-path")) {
|
|
ctx.arg.library_paths.push_back(arg);
|
|
} else if (read_arg(ctx, args, arg, "sysroot")) {
|
|
ctx.arg.sysroot = arg;
|
|
} else if (read_arg(ctx, args, arg, "u") ||
|
|
read_arg(ctx, args, arg, "undefined")) {
|
|
ctx.arg.undefined.push_back(arg);
|
|
} else if (read_arg(ctx, args, arg, "init")) {
|
|
ctx.arg.init = arg;
|
|
} else if (read_arg(ctx, args, arg, "fini")) {
|
|
ctx.arg.fini = arg;
|
|
} else if (read_arg(ctx, args, arg, "hash-style")) {
|
|
if (arg == "sysv") {
|
|
ctx.arg.hash_style_sysv = true;
|
|
ctx.arg.hash_style_gnu = false;
|
|
} else if (arg == "gnu") {
|
|
ctx.arg.hash_style_sysv = false;
|
|
ctx.arg.hash_style_gnu = true;
|
|
} else if (arg == "both") {
|
|
ctx.arg.hash_style_sysv = true;
|
|
ctx.arg.hash_style_gnu = true;
|
|
} else {
|
|
Fatal(ctx) << "invalid --hash-style argument: " << arg;
|
|
}
|
|
} else if (read_arg(ctx, args, arg, "soname") ||
|
|
read_arg(ctx, args, arg, "h")) {
|
|
ctx.arg.soname = arg;
|
|
} else if (read_flag(args, "allow-multiple-definition")) {
|
|
ctx.arg.allow_multiple_definition = true;
|
|
} else if (read_flag(args, "trace")) {
|
|
ctx.arg.trace = true;
|
|
} else if (read_flag(args, "eh-frame-hdr")) {
|
|
ctx.arg.eh_frame_hdr = true;
|
|
} else if (read_flag(args, "no-eh-frame-hdr")) {
|
|
ctx.arg.eh_frame_hdr = false;
|
|
} else if (read_flag(args, "pie") || read_flag(args, "pic-executable")) {
|
|
ctx.arg.pic = true;
|
|
ctx.arg.pie = true;
|
|
} else if (read_flag(args, "no-pie") ||
|
|
read_flag(args, "no-pic-executable")) {
|
|
ctx.arg.pic = false;
|
|
ctx.arg.pie = false;
|
|
} else if (read_flag(args, "relax")) {
|
|
ctx.arg.relax = true;
|
|
} else if (read_flag(args, "no-relax")) {
|
|
ctx.arg.relax = false;
|
|
} else if (read_flag(args, "perf")) {
|
|
ctx.arg.perf = true;
|
|
} else if (read_flag(args, "stats")) {
|
|
ctx.arg.stats = true;
|
|
Counter::enabled = true;
|
|
} else if (read_arg(ctx, args, arg, "C") ||
|
|
read_arg(ctx, args, arg, "directory")) {
|
|
ctx.arg.directory = arg;
|
|
} else if (read_arg(ctx, args, arg, "chroot")) {
|
|
ctx.arg.chroot = arg;
|
|
} else if (read_flag(args, "warn-common")) {
|
|
ctx.arg.warn_common = true;
|
|
} else if (read_flag(args, "no-warn-common")) {
|
|
ctx.arg.warn_common = false;
|
|
} else if (read_arg(ctx, args, arg, "compress-debug-sections")) {
|
|
if (arg == "zlib" || arg == "zlib-gabi")
|
|
ctx.arg.compress_debug_sections = true;
|
|
else if (arg == "none")
|
|
ctx.arg.compress_debug_sections = false;
|
|
else
|
|
Fatal(ctx) << "invalid --compress-debug-sections argument: " << arg;
|
|
} else if (read_arg(ctx, args, arg, "wrap")) {
|
|
ctx.arg.wrap.insert(arg);
|
|
} else if (read_flag(args, "omagic") || read_flag(args, "N")) {
|
|
ctx.arg.omagic = true;
|
|
ctx.arg.is_static = true;
|
|
} else if (read_flag(args, "no-omagic")) {
|
|
ctx.arg.omagic = false;
|
|
} else if (read_flag(args, "repro")) {
|
|
ctx.arg.repro = true;
|
|
} else if (read_z_flag(args, "now")) {
|
|
ctx.arg.z_now = true;
|
|
} else if (read_z_flag(args, "lazy")) {
|
|
ctx.arg.z_now = false;
|
|
} else if (read_z_flag(args, "execstack")) {
|
|
ctx.arg.z_execstack = true;
|
|
} else if (read_z_flag(args, "noexecstack")) {
|
|
ctx.arg.z_execstack = false;
|
|
} else if (read_z_flag(args, "relro")) {
|
|
ctx.arg.z_relro = true;
|
|
} else if (read_z_flag(args, "norelro")) {
|
|
ctx.arg.z_relro = false;
|
|
} else if (read_z_flag(args, "defs")) {
|
|
ctx.arg.z_defs = true;
|
|
} else if (read_z_flag(args, "nodefs")) {
|
|
ctx.arg.z_defs = false;
|
|
} else if (read_z_flag(args, "nodlopen")) {
|
|
ctx.arg.z_dlopen = false;
|
|
} else if (read_z_flag(args, "nodelete")) {
|
|
ctx.arg.z_delete = false;
|
|
} else if (read_z_flag(args, "nocopyreloc")) {
|
|
ctx.arg.z_copyreloc = false;
|
|
} else if (read_z_flag(args, "initfirst")) {
|
|
ctx.arg.z_initfirst = true;
|
|
} else if (read_z_flag(args, "interpose")) {
|
|
ctx.arg.z_interpose = true;
|
|
} else if (read_flag(args, "no-undefined")) {
|
|
ctx.arg.z_defs = true;
|
|
} else if (read_flag(args, "fatal-warnings")) {
|
|
ctx.arg.fatal_warnings = true;
|
|
} else if (read_flag(args, "no-fatal-warnings")) {
|
|
ctx.arg.fatal_warnings = false;
|
|
} else if (read_flag(args, "fork")) {
|
|
ctx.arg.fork = true;
|
|
} else if (read_flag(args, "no-fork")) {
|
|
ctx.arg.fork = false;
|
|
} else if (read_flag(args, "gc-sections")) {
|
|
ctx.arg.gc_sections = true;
|
|
} else if (read_flag(args, "no-gc-sections")) {
|
|
ctx.arg.gc_sections = false;
|
|
} else if (read_flag(args, "print-gc-sections")) {
|
|
ctx.arg.print_gc_sections = true;
|
|
} else if (read_flag(args, "no-print-gc-sections")) {
|
|
ctx.arg.print_gc_sections = false;
|
|
} else if (read_flag(args, "icf")) {
|
|
ctx.arg.icf = true;
|
|
} else if (read_flag(args, "no-icf")) {
|
|
ctx.arg.icf = false;
|
|
} else if (read_arg(ctx, args, arg, "image-base")) {
|
|
ctx.arg.image_base = parse_number(ctx, "image-base", arg);
|
|
} else if (read_flag(args, "quick-exit")) {
|
|
ctx.arg.quick_exit = true;
|
|
} else if (read_flag(args, "no-quick-exit")) {
|
|
ctx.arg.quick_exit = false;
|
|
} else if (read_flag(args, "print-icf-sections")) {
|
|
ctx.arg.print_icf_sections = true;
|
|
} else if (read_flag(args, "no-print-icf-sections")) {
|
|
ctx.arg.print_icf_sections = false;
|
|
} else if (read_flag(args, "quick-exit")) {
|
|
ctx.arg.quick_exit = true;
|
|
} else if (read_flag(args, "no-quick-exit")) {
|
|
ctx.arg.quick_exit = false;
|
|
} else if (read_arg(ctx, args, arg, "thread-count")) {
|
|
ctx.arg.thread_count = parse_number(ctx, "thread-count", arg);
|
|
} else if (read_flag(args, "threads")) {
|
|
ctx.arg.thread_count = get_default_thread_count();
|
|
} else if (read_flag(args, "no-threads")) {
|
|
ctx.arg.thread_count = 1;
|
|
} else if (read_flag(args, "discard-all") || read_flag(args, "x")) {
|
|
ctx.arg.discard_all = true;
|
|
} else if (read_flag(args, "discard-locals") || read_flag(args, "X")) {
|
|
ctx.arg.discard_locals = true;
|
|
} else if (read_flag(args, "strip-all") || read_flag(args, "s")) {
|
|
ctx.arg.strip_all = true;
|
|
} else if (read_flag(args, "strip-debug") || read_flag(args, "S")) {
|
|
ctx.arg.strip_debug = true;
|
|
} else if (read_arg(ctx, args, arg, "rpath")) {
|
|
if (!ctx.arg.rpaths.empty())
|
|
ctx.arg.rpaths += ":";
|
|
ctx.arg.rpaths += arg;
|
|
} else if (read_flag(args, "build-id")) {
|
|
ctx.arg.build_id.kind = BuildId::HASH;
|
|
ctx.arg.build_id.hash_size = 20;
|
|
} else if (read_arg(ctx, args, arg, "build-id")) {
|
|
if (arg == "none") {
|
|
ctx.arg.build_id.kind = BuildId::NONE;
|
|
} else if (arg == "uuid") {
|
|
ctx.arg.build_id.kind = BuildId::UUID;
|
|
} else if (arg == "md5") {
|
|
ctx.arg.build_id.kind = BuildId::HASH;
|
|
ctx.arg.build_id.hash_size = 16;
|
|
} else if (arg == "sha1") {
|
|
ctx.arg.build_id.kind = BuildId::HASH;
|
|
ctx.arg.build_id.hash_size = 20;
|
|
} else if (arg == "sha256") {
|
|
ctx.arg.build_id.kind = BuildId::HASH;
|
|
ctx.arg.build_id.hash_size = 32;
|
|
} else if (arg.starts_with("0x") || arg.starts_with("0X")) {
|
|
ctx.arg.build_id.kind = BuildId::HEX;
|
|
ctx.arg.build_id.value = parse_hex_build_id(ctx, arg);
|
|
} else {
|
|
Fatal(ctx) << "invalid --build-id argument: " << arg;
|
|
}
|
|
} else if (read_flag(args, "no-build-id")) {
|
|
ctx.arg.build_id.kind = BuildId::NONE;
|
|
} else if (read_arg(ctx, args, arg, "auxiliary") ||
|
|
read_arg(ctx, args, arg, "f")) {
|
|
ctx.arg.auxiliary.push_back(arg);
|
|
} else if (read_arg(ctx, args, arg, "filter") ||
|
|
read_arg(ctx, args, arg, "F")) {
|
|
ctx.arg.filter.push_back(arg);
|
|
} else if (read_flag(args, "preload")) {
|
|
ctx.arg.preload = true;
|
|
} else if (read_arg(ctx, args, arg, "z")) {
|
|
} else if (read_arg(ctx, args, arg, "O")) {
|
|
} else if (read_flag(args, "O0")) {
|
|
} else if (read_flag(args, "O1")) {
|
|
} else if (read_flag(args, "O2")) {
|
|
} else if (read_arg(ctx, args, arg, "plugin")) {
|
|
} else if (read_arg(ctx, args, arg, "plugin-opt")) {
|
|
} else if (read_flag(args, "color-diagnostics")) {
|
|
} else if (read_flag(args, "gdb-index")) {
|
|
} else if (read_arg(ctx, args, arg, "m")) {
|
|
} else if (read_flag(args, "eh-frame-hdr")) {
|
|
} else if (read_flag(args, "start-group")) {
|
|
} else if (read_flag(args, "end-group")) {
|
|
} else if (read_flag(args, "(")) {
|
|
} else if (read_flag(args, ")")) {
|
|
} else if (read_flag(args, "fatal-warnings")) {
|
|
} else if (read_flag(args, "enable-new-dtags")) {
|
|
} else if (read_flag(args, "disable-new-dtags")) {
|
|
} else if (read_flag(args, "allow-shlib-undefined")) {
|
|
} else if (read_flag(args, "no-allow-shlib-undefined")) {
|
|
} else if (read_flag(args, "no-copy-dt-needed-entries")) {
|
|
} else if (read_arg(ctx, args, arg, "sort-section")) {
|
|
} else if (read_flag(args, "sort-common")) {
|
|
} else if (read_flag(args, "nodefaultlibs")) {
|
|
} else if (read_arg(ctx, args, arg, "rpath-link")) {
|
|
} else if (read_arg(ctx, args, arg, "version-script")) {
|
|
remaining.push_back("--version-script");
|
|
remaining.push_back(arg);
|
|
} else if (read_arg(ctx, args, arg, "dynamic-list")) {
|
|
remaining.push_back("--dynamic-list");
|
|
remaining.push_back(arg);
|
|
} else if (read_flag(args, "as-needed")) {
|
|
remaining.push_back("-as-needed");
|
|
} else if (read_flag(args, "no-as-needed")) {
|
|
remaining.push_back("-no-as-needed");
|
|
} else if (read_flag(args, "whole-archive")) {
|
|
remaining.push_back("-whole-archive");
|
|
} else if (read_flag(args, "no-whole-archive")) {
|
|
remaining.push_back("-no-whole-archive");
|
|
} else if (read_arg(ctx, args, arg, "l")) {
|
|
remaining.push_back("-l");
|
|
remaining.push_back(arg);
|
|
} else if (read_arg(ctx, args, arg, "script") ||
|
|
read_arg(ctx, args, arg, "T")) {
|
|
remaining.push_back(arg);
|
|
} else if (read_flag(args, "push-state")) {
|
|
remaining.push_back("-push-state");
|
|
} else if (read_flag(args, "pop-state")) {
|
|
remaining.push_back("-pop-state");
|
|
} else {
|
|
if (args[0][0] == '-')
|
|
Fatal(ctx) << "mold: unknown command line option: " << args[0];
|
|
remaining.push_back(args[0]);
|
|
args = args.subspan(1);
|
|
}
|
|
}
|
|
|
|
if (ctx.arg.shared) {
|
|
ctx.arg.pic = true;
|
|
ctx.arg.dynamic_linker = "";
|
|
}
|
|
|
|
if (ctx.arg.pic)
|
|
ctx.arg.image_base = 0;
|
|
|
|
if (!ctx.arg.shared) {
|
|
if (!ctx.arg.filter.empty())
|
|
Fatal(ctx) << "-filter may not be used without -shared";
|
|
if (!ctx.arg.auxiliary.empty())
|
|
Fatal(ctx) << "-auxiliary may not be used without -shared";
|
|
}
|
|
|
|
if (char *env = getenv("MOLD_REPRO"); env && env[0])
|
|
ctx.arg.repro = true;
|
|
|
|
if (ctx.arg.output.empty())
|
|
ctx.arg.output = "a.out";
|
|
}
|
|
|
|
#define INSTANTIATE(E) \
|
|
template \
|
|
std::vector<std::string_view> \
|
|
expand_response_files(Context<E> &ctx, char **argv); \
|
|
\
|
|
template \
|
|
bool read_arg(Context<E> &ctx, std::span<std::string_view> &args, \
|
|
std::string_view &arg, \
|
|
std::string name); \
|
|
\
|
|
template std::string create_response_file(Context<E> &ctx); \
|
|
\
|
|
template \
|
|
void parse_nonpositional_args(Context<E> &ctx, \
|
|
std::vector<std::string_view> &remaining)
|
|
|
|
INSTANTIATE(X86_64);
|
|
INSTANTIATE(I386);
|