blob: 2e505e1e19a05816184d9baef724fef6388fc521 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# It seems, compiling for i686 is as simple as specifying you want i686.
eval "$(
declare -f build check | \
sed '
s|x86-64|i686|
s|make |make default_pic=true|
'
)"
# the compiler seems fine, but the test frameworks seems to break with
# newer LLVM, for now, ignoring the tests:
# https://github.com/ponylang/ponyc/issues/2875
eval "$(
declare -f check | \
sed '
s/\(make.*\)/\1 || true/
'
)"
|