blob: 9284bb09d9ae0d8b317b6818c43ce58d4f34982a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# set _JARCH to IA32
_JARCH=x86
# make sure -no-plt is set also for pentium4 and i486 (otherwise
# we get GOT linking errors)
eval "$(
declare -f build | \
sed '
/CARCH/s/i686/${CARCH}/
'
)"
# pentium4-specific
if [ "${CARCH}" = "pentium4" ]; then
# force 4-byte stack alignment on SSE aptimized systems, see FS32#75
eval "$(
declare -f build | \
sed '
/unset CFLAGS/ i \
_CFLAGS="${_CFLAGS} -mincoming-stack-boundary=2" \
_CXXFLAGS="${_CXXFLAGS} -mincoming-stack-boundary=2"
'
)"
fi
# fix location of images in case they are wrong
_imgdir="${_imgdir//--/-${_JARCH}-}"
# pandoc is mainly broken currently (FS32#180)
makedepends=(${makedepends[@]//pandoc/})
# ZGC garbage collector seems to be 64-bit only
eval "$(
declare -f build | \
sed '
s/--with-jvm-features=zgc//
'
)"
# we need a OpenJdk which is at least 14, setting it to 15
makedepends=(${makedepends[@]//java-environment>=11/})
makedepends+=('java-environment>=15')
|