pages.nl/*: add and update pages (#11397)

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
This commit is contained in:
Sebastiaan Speck
2023-11-07 14:27:25 +01:00
committed by GitHub
parent 53ecd46a37
commit 5788b56f69
87 changed files with 1126 additions and 4 deletions

20
pages.nl/osx/lipo.md Normal file
View File

@@ -0,0 +1,20 @@
# lipo
> Tool voor het verwerken van Mach-O Universal Binaries.
> Meer informatie: <https://ss64.com/osx/lipo.html>.
- Maak een universeel bestand uit twee bestanden met één architectuur:
`lipo {{pad/naar/binary_bestand.x86_64}} {{pad/naar/binary_bestand.arm64e}} -create -output {{pad/naar/binary_bestand}}`
- Toon alle architecturen die een universeel bestand bevat:
`lipo {{pad/naar/binary_bestand}} -archs`
- Toon gedetailleerde informatie over een universeel bestand:
`lipo {{pad/naar/binary_bestand}} -detailed_info`
- Pak een bestand met één architectuur uit uit een universeel bestand:
`lipo {{pad/naar/binary_bestand}} -thin {{arm64e}} -output {{pad/naar/binary_bestand.arm64e}}`

View File

@@ -0,0 +1,7 @@
# llvm-lipo
> Dit commando is een alias van `lipo`.
- Bekijk de documentatie van het originele commando:
`tldr lipo`