mirror of
https://github.com/tailix/libkernaux.git
synced 2024-11-13 11:04:27 -05:00
Fix README.md
This commit is contained in:
parent
2e0bd0ac57
commit
f49849a501
1 changed files with 7 additions and 7 deletions
14
README.md
14
README.md
|
@ -165,21 +165,21 @@ configure: WARNING: ## -----------------------------------------------------
|
|||
checking for stddef.h... no
|
||||
```
|
||||
|
||||
To install into specific directory use full path:
|
||||
`DESTDIR="$(pwd)/dest" make install` instead of `DESTDIR=dest make install`.
|
||||
|
||||
When configured with cross-compiler, library can't be build and installed with
|
||||
just `make && sudo make install`. Instead use the following commands:
|
||||
|
||||
* `make libkernaux.a`
|
||||
* `sudo make install-exec`
|
||||
* `sudo make install-data`
|
||||
* `sudo make install-exec install-data`
|
||||
|
||||
Check if compilation targets i386: `objdump -d src/arch/i386.o`. It should
|
||||
To install into specific directory use full path:
|
||||
`DESTDIR="$(pwd)/dest" sudo make install-exec install-data` instead of
|
||||
`DESTDIR=dest sudo make install-exec install-data`.
|
||||
|
||||
Check if compilation targets i386: `objdump -d src/arch/i386/asm.o`. It should
|
||||
output something like this:
|
||||
|
||||
```
|
||||
src/arch/i386.o: file format elf32-i386
|
||||
src/arch/i386/asm.o: file format elf32-i386
|
||||
|
||||
|
||||
Disassembly of section .text:
|
||||
|
|
Loading…
Reference in a new issue