blob: 036ee22865210462a836de04f1294dab4f48d766 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# 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
unset check
|