* updated knights (21.12.1 -> 21.12.2), untested
[t2-trunk.git] / package / raku / moarvm / moarvm.conf
blob35d77491f933224083c46c5386cbdac2952feb8d
1 # --- T2-COPYRIGHT-NOTE-BEGIN ---
2 # This copyright note is auto-generated by scripts/Create-CopyPatch.
3
4 # T2 SDE: package/*/moarvm/moarvm.conf
5 # Copyright (C) 2021 The T2 SDE Project
6
7 # More information can be found in the files COPYING and README.
8
9 # This program is free software; you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; version 2 of the License. A copy of the
12 # GNU General Public License can be found in the file COPYING.
13 # --- T2-COPYRIGHT-NOTE-END ---
15 # Raku toolchain doesn't use autotools, therefore the configure stage has to
16 # be modified to support its Configure.pl script
18 # Note: The libraries specified in confopt are required for building MoarVM; if
19 # they are not present, MoarVM will build and statically link them to itself,
20 # in some cases alongside installing their headers globally, which is not good.
22 # (libsha1 is excluded, because it doesn't have a T2 package.)
24 confopt="--prefix=$root/$prefix --has-libtommath --has-libuv --has-libatomic_ops --has-dyncall"
26 # Optional dependencies
27 pkginstalled libffi && var_append confopt " " "--has-libffi"
29 if [ "$arch_build" != "$arch_target" ]
30 then
31   var_append confopt " " "--build=$arch_build"
32   var_append confopt " " "--host=$arch_target"
35 hook_add preconf 2 "perl Configure.pl $confopt"