extra info on building objc projects

This commit is contained in:
gbmor 2020-04-15 23:24:47 -04:00
parent a0b08d685a
commit 27a28d751d
1 changed files with 11 additions and 0 deletions

View File

@ -17,4 +17,15 @@ conflict with `gcc` in base.
The exception being `gnat`.
`GNUstep` is available if you would like to develop using Objective-C. The
following should be added to `~/.kshrc`:
```
export GNUSTEP_MAKEFILES=/usr/local/share/GNUstep/Makefiles
. /usr/local/share/GNUstep/Makefiles/GNUstep.sh
```
You will also need to call `gmake` rather than `make` when building Objective-C
code. See [this StackOverflow post](https://stackoverflow.com/questions/14441852/how-to-build-gnustep-programs-on-openbsd)
for more information.
[back](/)