mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 03:27:39 +00:00
Remove .com from README
This commit is contained in:
parent
0c12c26e1d
commit
9a10adac35
1 changed files with 10 additions and 10 deletions
20
README.md
20
README.md
|
@ -92,8 +92,8 @@ guaranteed to be compatible and furthermore includes our extensions for
|
||||||
doing build system sandboxing.
|
doing build system sandboxing.
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
build/bootstrap/make.com -j8
|
build/bootstrap/make -j8
|
||||||
o//examples/hello.com
|
o//examples/hello
|
||||||
```
|
```
|
||||||
|
|
||||||
Since the Cosmopolitan repository is very large, you might only want to
|
Since the Cosmopolitan repository is very large, you might only want to
|
||||||
|
@ -103,8 +103,8 @@ depends on core LIBC packages.
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
rm -rf o//libc o//test
|
rm -rf o//libc o//test
|
||||||
build/bootstrap/make.com o//test/posix/signal_test.com
|
build/bootstrap/make o//test/posix/signal_test
|
||||||
o//test/posix/signal_test.com
|
o//test/posix/signal_test
|
||||||
```
|
```
|
||||||
|
|
||||||
Sometimes it's desirable to build a subset of targets, without having to
|
Sometimes it's desirable to build a subset of targets, without having to
|
||||||
|
@ -112,21 +112,21 @@ list out each individual one. For example if you wanted to build and run
|
||||||
all the unit tests in the `TEST_POSIX` package, you could say:
|
all the unit tests in the `TEST_POSIX` package, you could say:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
build/bootstrap/make.com o//test/posix
|
build/bootstrap/make o//test/posix
|
||||||
```
|
```
|
||||||
|
|
||||||
Cosmopolitan provides a variety of build modes. For example, if you want
|
Cosmopolitan provides a variety of build modes. For example, if you want
|
||||||
really tiny binaries (as small as 12kb in size) then you'd say:
|
really tiny binaries (as small as 12kb in size) then you'd say:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
build/bootstrap/make.com m=tiny
|
build/bootstrap/make m=tiny
|
||||||
```
|
```
|
||||||
|
|
||||||
You can furthermore cut out the bloat of other operating systems, and
|
You can furthermore cut out the bloat of other operating systems, and
|
||||||
have Cosmopolitan become much more similar to Musl Libc.
|
have Cosmopolitan become much more similar to Musl Libc.
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
build/bootstrap/make.com m=tinylinux
|
build/bootstrap/make m=tinylinux
|
||||||
```
|
```
|
||||||
|
|
||||||
For further details, see [//build/config.mk](build/config.mk).
|
For further details, see [//build/config.mk](build/config.mk).
|
||||||
|
@ -179,11 +179,11 @@ end
|
||||||
src
|
src
|
||||||
```
|
```
|
||||||
|
|
||||||
You normally run the `.com.dbg` file under gdb. If you need to debug the
|
You normally run the `.dbg` file under gdb. If you need to debug the
|
||||||
`.com` file itself, then you can load the debug symbols independently as
|
`` file itself, then you can load the debug symbols independently as
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
gdb foo.com -ex 'add-symbol-file foo.com.dbg 0x401000'
|
gdb foo -ex 'add-symbol-file foo.dbg 0x401000'
|
||||||
```
|
```
|
||||||
|
|
||||||
## Platform Notes
|
## Platform Notes
|
||||||
|
|
Loading…
Reference in a new issue