summaryrefslogtreecommitdiffstats
path: root/content/posts
diff options
context:
space:
mode:
Diffstat (limited to 'content/posts')
-rw-r--r--content/posts/openbsd-compiling-rakudo-star/index.org17
1 files changed, 9 insertions, 8 deletions
diff --git a/content/posts/openbsd-compiling-rakudo-star/index.org b/content/posts/openbsd-compiling-rakudo-star/index.org
index dd5133b..ecb4b90 100644
--- a/content/posts/openbsd-compiling-rakudo-star/index.org
+++ b/content/posts/openbsd-compiling-rakudo-star/index.org
@@ -74,9 +74,10 @@ cd ..
Running =rstar install= then began compiling things. =rstar install=
will install rakudo star into the build directory by default, but you
-can change that with =-p= to specify a prefix location. MoarVM and nqp
-both compiled and installed fine, but when it came to compiling
-Rakudo, with a memory allocation error message.
+can change that with =-p= to specify a prefix location.
+
+MoarVM and nqp both compiled and installed fine, but when it came to
+compiling Rakudo, it failed with a memory allocation error message.
#+BEGIN_SRC
+++ Generating gen/moar/Compiler.nqp
@@ -102,7 +103,7 @@ what the problem was.
#+BEGIN_SRC shell
cd src/rakudo-2020.02.1
./Configure.pl --prefix /home/dante/star/
-make install
+make
#+END_SRC
While rakudo was compiling, I monitored memory usage in a separate
@@ -140,8 +141,8 @@ the following message.
Alright!
-I added to my path by editing my =~/.profile= and added the following
-line.
+I added the specified directories to my path by editing =~/.profile=
+and inserting the following line.
#+BEGIN_SRC diff
--- .profile Sat Jul 25 06:42:48 2020
@@ -158,5 +159,5 @@ I chose to keep it in the =star= directory instead of installing it to
=/usr/local= in case the version of rakudo in ports gets updated some
time.
-I now have a proper up to date version of raku running on my OpenBSD
-machine! Happy hacking!
+I now have an up to date version of raku running on my OpenBSD
+machine!