-
Notifications
You must be signed in to change notification settings - Fork 550
/
build_tarballs.jl
61 lines (54 loc) · 1.95 KB
/
build_tarballs.jl
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
using BinaryBuilder
name = "DecFP"
version = v"2.0.3" # --> This is a lie to build for experimental platforms, upstream version is 2.0 Update 2
# Collection of sources required to build DecFP
sources = [
ArchiveSource("https://www.netlib.org/misc/intel/IntelRDFPMathLib20U2.tar.gz",
"93c0c78e0989df88f8540bf38d6743734804cef1e40706fd8fe5c6a03f79e173"),
DirectorySource("./bundled"),
]
# Bash recipe for building across all platforms
script = raw"""
cd $WORKSPACE/srcdir/IntelRDFPMathLib20U2
patch --binary -p1 < $WORKSPACE/srcdir/patches/string.patch
patch --binary -p1 < $WORKSPACE/srcdir/patches/decfp.patch
cd LIBRARY
if [[ $nbits == 64 ]]; then
_HOST_ARCH=x86_64
else
_HOST_ARCH=x86
fi
if [[ $target == *-w64-* ]]; then
_HOST_OS="Windows_NT"
objext="obj"
elif [[ $target == *-freebsd* ]]; then
_HOST_OS="FreeBSD"
objext="o"
else
# Linux and macOS/Darwin
_HOST_OS="Linux"
objext="o"
fi
CFLAGS_OPT="-fPIC -fsigned-char -D__ENABLE_BINARY80__=0"
if [[ $target == *"-musl"* ]]; then
CFLAGS_OPT+=" -D__QNX__"
elif [[ $target == *"freebsd"* ]]; then
CFLAGS_OPT+=" -D__linux"
fi
make CC_NAME=cc CFLAGS_OPT="$CFLAGS_OPT" CFLAGS="$CFLAGS_OPT" _HOST_OS="$_HOST_OS" AR_CMD="ar rv" _HOST_ARCH=$_HOST_ARCH CALL_BY_REF=0 GLOBAL_RND=0 GLOBAL_FLAGS=0 UNCHANGED_BINARY_FLAGS=0
mkdir -p "${libdir}"
$CC $LDFLAGS -shared -o "${libdir}/libbid.${dlext}" *.${objext}
install_license ../eula.txt
"""
# These are the platforms we will build for by default, unless further
# platforms are passed in on the command line
platforms = supported_platforms(; experimental=true)
# The products that we will ensure are always built
products = [
LibraryProduct("libbid", :libbid)
]
# Dependencies that must be installed before this package can be built
dependencies = Dependency[
]
# Build the tarballs, and possibly a `build.jl` as well.
build_tarballs(ARGS, name, version, sources, script, platforms, products, dependencies; julia_compat="1.6")