mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 00:42:08 +02:00
ld: add Indonesian translation (#9302)
This commit is contained in:
parent
aac6827674
commit
1e0dbde12e
1 changed files with 16 additions and 0 deletions
16
pages.id/common/ld.md
Normal file
16
pages.id/common/ld.md
Normal file
|
@ -0,0 +1,16 @@
|
|||
# ld
|
||||
|
||||
> Menghubungkan file-file obyek berbarengan.
|
||||
> Informasi lebih lanjut: <https://sourceware.org/binutils/docs-2.38/ld.html>.
|
||||
|
||||
- Menghubungkan file obyek tertentu yang tidak memiliki kebergantungan ke suatu executable:
|
||||
|
||||
`ld {{jalan/menuju/file.o}} --output {{jalan/menuju/output_executable}}`
|
||||
|
||||
- Menghubungkan 2 file obyek berbarengan:
|
||||
|
||||
`ld {{jalan/menuju/file1.o}} {{jalan/menuju/file2.o}} --output {{jalan/menuju/output_executable}}`
|
||||
|
||||
- Menghubungkan secara dinamis sebuah program x86_64 ke glibc (jalan-jalan file berubah bergantung pada sistem):
|
||||
|
||||
`ld --output {{jalan/menuju/output_executable}} --dynamic-linker /lib/ld-linux-x86-64.so.2 /lib/crt1.o /lib/crti.o -lc {{jalan/menuju/file.o}} /lib/crtn.o`
|
Loading…
Add table
Reference in a new issue