Overview
| Comment: | README.md: Adapt instructions for Fossil |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
b388ccc6b08ccd77e5613551a4e6d853 |
| User & Date: | js on 2020-05-31 16:07:17 |
| Other Links: | manifest | tags |
Context
|
2020-05-31
| ||
| 18:57 | README.md: Add "What is ObjFW?" section (check-in: 55f34b8e81 user: js tags: trunk) | |
| 16:19 | Merge trunk into 1.0 branch (check-in: 8d693c2d5f user: js tags: 1.0) | |
| 16:07 | README.md: Adapt instructions for Fossil (check-in: b388ccc6b0 user: js tags: trunk) | |
| 16:01 | README.md: Provide explicit anchors (check-in: f7f05e88b7 user: js tags: trunk) | |
Changes
Modified README.md from [02d937fb40] to [dd3a0fa902].
| ︙ | ︙ | |||
33 34 35 36 37 38 39 |
To install ObjFW, just run the following commands:
$ ./configure
$ make
$ make install
| | | | 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
To install ObjFW, just run the following commands:
$ ./configure
$ make
$ make install
In case you checked out ObjFW from the Fossil or Git repository, you need to
run the following command first:
$ ./autogen.sh
<h2 id="macos-and-ios">macOS and iOS</h2>
<h3 id="building-framework">Building as a framework</h3>
|
| ︙ | ︙ | |||
146 147 148 149 150 151 152 | There is nothing wrong with installing them both, as MSYS2 has created two entries in your start menu: `MinGW-w64 Win32 Shell` and `MinGW-w64 Win64 Shell`. So if you want to build for 32 or 64 bit, you just start the correct shell. Finally, install a few more things needed to build ObjFW: | | | > > | 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 |
There is nothing wrong with installing them both, as MSYS2 has created two
entries in your start menu: `MinGW-w64 Win32 Shell` and `MinGW-w64 Win64
Shell`. So if you want to build for 32 or 64 bit, you just start the correct
shell.
Finally, install a few more things needed to build ObjFW:
$ pacman -S autoconf automake fossil make
<h3 id="steps-windows">Getting, building and installing ObjFW</h3>
Start the MinGW-w64 Win32 or Win64 Shell (depening on what version you want
to build - do *not* use the MSYS2 Shell shortcut, but use the MinGW-w64 Win32
or Win64 Shell shortcut instead!) and check out ObjFW:
$ fossil clone https://objfw.nil.im objfw.fossil
$ mkdir objfw && cd objfw
$ fossil open ../objfw.fossil
You can also download a release tarball if you want. Now go to the newly
checked out repository and build and install it:
$ ./autogen.sh && ./configure && make -j16 install
If everything was successfully, you can now build projects using ObjFW for
|
| ︙ | ︙ |