forked from llvm/llvm-project
-
Notifications
You must be signed in to change notification settings - Fork 330
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[dsymutil] Implement the --threads option
This patch adds the --threads option to dsymutil to process architectures in parallel. The feature is already present in the version distributed with Xcode, but was not yet upstreamed. This is NFC as far as the linking behavior is concerned. As threads are used automatically, the current tests cover the change in implementation. Differential revision: https://reviews.llvm.org/D39355 llvm-svn: 316999
- Loading branch information
1 parent
0cf24ed
commit 2dd9848
Showing
3 changed files
with
67 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
RUN: llvm-dsymutil -help 2>&1 | FileCheck --check-prefix=HELP %s | ||
HELP: OVERVIEW: manipulate archived DWARF debug symbol files. | ||
HELP: USAGE: llvm-dsymutil [options] <input files> | ||
HELP-NOT: -reverse-iterate | ||
HELP: Specific Options: | ||
HELP: -arch=<string> | ||
HELP: -dump-debug-map | ||
HELP: -flat | ||
HELP: -no-odr | ||
HELP: -no-output | ||
HELP: -no-swiftmodule-timestamp | ||
HELP: -o=<filename> | ||
HELP: -oso-prepend-path=<path> | ||
HELP: -symtab | ||
HELP: -threads=<n> | ||
HELP: -verbose | ||
HELP: -y | ||
HELP-NOT: -reverse-iterate | ||
|
||
RUN: llvm-dsymutil --version 2>&1 | FileCheck --check-prefix=VERSION %s | ||
VERSION: {{ version }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters