@@ -92,8 +92,8 @@ guaranteed to be compatible and furthermore includes our extensions for
92
92
doing build system sandboxing.
93
93
94
94
``` sh
95
- build/bootstrap/make.com -j8
96
- o//examples/hello.com
95
+ build/bootstrap/make -j8
96
+ o//examples/hello
97
97
```
98
98
99
99
Since the Cosmopolitan repository is very large, you might only want to
@@ -103,30 +103,30 @@ depends on core LIBC packages.
103
103
104
104
``` sh
105
105
rm -rf o//libc o//test
106
- build/bootstrap/make.com o//test/posix/signal_test.com
107
- o//test/posix/signal_test.com
106
+ build/bootstrap/make o//test/posix/signal_test
107
+ o//test/posix/signal_test
108
108
```
109
109
110
110
Sometimes it's desirable to build a subset of targets, without having to
111
111
list out each individual one. For example if you wanted to build and run
112
112
all the unit tests in the ` TEST_POSIX ` package, you could say:
113
113
114
114
``` sh
115
- build/bootstrap/make.com o//test/posix
115
+ build/bootstrap/make o//test/posix
116
116
```
117
117
118
118
Cosmopolitan provides a variety of build modes. For example, if you want
119
119
really tiny binaries (as small as 12kb in size) then you'd say:
120
120
121
121
``` sh
122
- build/bootstrap/make.com m=tiny
122
+ build/bootstrap/make m=tiny
123
123
```
124
124
125
125
You can furthermore cut out the bloat of other operating systems, and
126
126
have Cosmopolitan become much more similar to Musl Libc.
127
127
128
128
``` sh
129
- build/bootstrap/make.com m=tinylinux
129
+ build/bootstrap/make m=tinylinux
130
130
```
131
131
132
132
For further details, see [ //build/config.mk] ( build/config.mk ) .
@@ -179,11 +179,11 @@ end
179
179
src
180
180
```
181
181
182
- You normally run the ` .com. dbg ` file under gdb. If you need to debug the
183
- ` .com ` file itself, then you can load the debug symbols independently as
182
+ You normally run the ` .dbg ` file under gdb. If you need to debug the
183
+ `` file itself, then you can load the debug symbols independently as
184
184
185
185
``` sh
186
- gdb foo.com -ex ' add-symbol-file foo.com .dbg 0x401000'
186
+ gdb foo -ex ' add-symbol-file foo.dbg 0x401000'
187
187
```
188
188
189
189
## Platform Notes
0 commit comments