about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorgbmor <ben@gbmor.dev>2020-04-15 23:24:47 -0400
committergbmor <ben@gbmor.dev>2020-04-15 23:24:47 -0400
commit27a28d751da8001f0b14e675e218a323559a7449 (patch)
tree14e515788b67e373392ba2d88a5a1dd67965f41c
parenta0b08d685a99d393ed795e4736ac539fd86b468c (diff)
downloadwiki-27a28d751da8001f0b14e675e218a323559a7449.tar.gz
extra info on building objc projects
-rw-r--r--pages/gcc8.md11
1 files changed, 11 insertions, 0 deletions
diff --git a/pages/gcc8.md b/pages/gcc8.md
index 10ab15a..6accfe1 100644
--- a/pages/gcc8.md
+++ b/pages/gcc8.md
@@ -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](/)