diff options
| author | Oneirical <manchot@videotron.ca> | 2024-08-12 13:26:25 -0400 |
|---|---|---|
| committer | Oneirical <manchot@videotron.ca> | 2024-08-15 10:17:25 -0400 |
| commit | 2e4d5bbba7b4efe27b8afca47fef98a2254e684b (patch) | |
| tree | 51113921393f2cb0081582954fbe62854fd58259 /src | |
| parent | 3139ff09e9d07f7700f8d15ed25a231e29c43627 (diff) | |
| download | rust-2e4d5bbba7b4efe27b8afca47fef98a2254e684b.tar.gz rust-2e4d5bbba7b4efe27b8afca47fef98a2254e684b.zip | |
rewrite rlib-format-packed-bundled-libs to rmake
Diffstat (limited to 'src')
| -rw-r--r-- | src/tools/run-make-support/src/external_deps/llvm.rs | 6 | ||||
| -rw-r--r-- | src/tools/tidy/src/allowed_run_make_makefiles.txt | 1 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/tools/run-make-support/src/external_deps/llvm.rs b/src/tools/run-make-support/src/external_deps/llvm.rs index 7af79443aff..021858dea7a 100644 --- a/src/tools/run-make-support/src/external_deps/llvm.rs +++ b/src/tools/run-make-support/src/external_deps/llvm.rs @@ -291,6 +291,12 @@ impl LlvmAr { self } + /// Print the table of contents. + pub fn table_of_contents(&mut self) -> &mut Self { + self.cmd.arg("t"); + self + } + /// Provide an output, then an input file. Bundled in one function, as llvm-ar has /// no "--output"-style flag. pub fn output_input(&mut self, out: impl AsRef<Path>, input: impl AsRef<Path>) -> &mut Self { diff --git a/src/tools/tidy/src/allowed_run_make_makefiles.txt b/src/tools/tidy/src/allowed_run_make_makefiles.txt index bc446555773..34008623a4c 100644 --- a/src/tools/tidy/src/allowed_run_make_makefiles.txt +++ b/src/tools/tidy/src/allowed_run_make_makefiles.txt @@ -15,7 +15,6 @@ run-make/libtest-thread-limit/Makefile run-make/macos-deployment-target/Makefile run-make/native-link-modifier-bundle/Makefile run-make/reproducible-build/Makefile -run-make/rlib-format-packed-bundled-libs/Makefile run-make/split-debuginfo/Makefile run-make/symbol-mangling-hashed/Makefile run-make/translation/Makefile |
