cargo: use long options everywhere (#6502)

beep
Nicolas Kosinski 2021-09-11 09:53:04 +02:00 committed by GitHub
parent b126962580
commit d3460ef8f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 5 deletions

View File

@ -30,4 +30,4 @@
- Erstelle (bzw. kompiliere) ein Rust-Projekt mit einer bestimmten Anzahl an Threads (standardmäßig die Anzahl der CPU-Kerne):
`cargo build -j {{thread_anzahl}}`
`cargo build --jobs {{thread_anzahl}}`

View File

@ -30,4 +30,4 @@
- Builda utilizzando più job (thread) paralleli:
`cargo build -j {{numero_job}}`
`cargo build --jobs {{numero_job}}`

View File

@ -30,4 +30,4 @@
- 특정 쓰레드 수를 사용하여 구축(기본값은 CPU 코어 수):
`cargo build -j {{작업}}`
`cargo build --jobs {{작업}}`

View File

@ -30,4 +30,4 @@
- Bouw met een gegeven aantal taken. (Standaard is het aantal CPU-kernen):
`cargo build -j {{taken}}`
`cargo build --jobs {{aantal_taken}}`

View File

@ -30,4 +30,4 @@
- Build using a specific number of threads (default is the number of CPU cores):
`cargo build -j {{jobs}}`
`cargo build --jobs {{number_of_threads}}`