diff --git a/README.md b/README.md index d57582f5c..71dfa3af7 100644 --- a/README.md +++ b/README.md @@ -92,8 +92,8 @@ guaranteed to be compatible and furthermore includes our extensions for doing build system sandboxing. ```sh -build/bootstrap/make.com -j8 -o//examples/hello.com +build/bootstrap/make -j8 +o//examples/hello ``` Since the Cosmopolitan repository is very large, you might only want to @@ -103,8 +103,8 @@ depends on core LIBC packages. ```sh rm -rf o//libc o//test -build/bootstrap/make.com o//test/posix/signal_test.com -o//test/posix/signal_test.com +build/bootstrap/make o//test/posix/signal_test +o//test/posix/signal_test ``` 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: ```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 really tiny binaries (as small as 12kb in size) then you'd say: ```sh -build/bootstrap/make.com m=tiny +build/bootstrap/make m=tiny ``` You can furthermore cut out the bloat of other operating systems, and have Cosmopolitan become much more similar to Musl Libc. ```sh -build/bootstrap/make.com m=tinylinux +build/bootstrap/make m=tinylinux ``` For further details, see [//build/config.mk](build/config.mk). @@ -179,11 +179,11 @@ end src ``` -You normally run the `.com.dbg` file under gdb. If you need to debug the -`.com` file itself, then you can load the debug symbols independently as +You normally run the `.dbg` file under gdb. If you need to debug the +`` file itself, then you can load the debug symbols independently as ```sh -gdb foo.com -ex 'add-symbol-file foo.com.dbg 0x401000' +gdb foo -ex 'add-symbol-file foo.dbg 0x401000' ``` ## Platform Notes