summaryrefslogtreecommitdiff
path: root/scripts/build/companion_libs/200-libelf.sh
blob: 41e4564396ce1320a0d5e4ae9b869aa48e767521 (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
# Build script for libelf

do_libelf_get() { :; }
do_libelf_extract() { :; }
do_libelf_for_build() { :; }
do_libelf_for_host() { :; }
do_libelf_for_target() { :; }

if [ "${CT_LIBELF}" = "y" -o "${CT_LIBELF_TARGET}" = "y" ]; then

do_libelf_get() {
    # The server hosting libelf will return an "HTTP 300 : Multiple Choices"
    # error code if we try to download a file that does not exists there.
    # So we have to request the file with an explicit extension.
    CT_GetFile "libelf-${CT_LIBELF_VERSION}" .tar.gz http://www.mr511.de/software/
}

do_libelf_extract() {
    CT_Extract "libelf-${CT_LIBELF_VERSION}"
    CT_Patch "libelf" "${CT_LIBELF_VERSION}"
}

if [ "${CT_LIBELF}" = "y" ]; then

# Build libelf for running on build
# - always build statically
# - we do not have build-specific CFLAGS
# - install in build-tools prefix
do_libelf_for_build() {
    local -a libelf_opts

    case "${CT_TOOLCHAIN_TYPE}" in
        native|cross)   return 0;;
    esac

    CT_DoStep INFO "Installing libelf for build"
    CT_mkdir_pushd "${CT_BUILD_DIR}/build-libelf-build-${CT_BUILD}"

    libelf_opts+=( "host=${CT_BUILD}" )
    libelf_opts+=( "prefix=${CT_BUILDTOOLS_PREFIX_DIR}" )
    libelf_opts+=( "cflags=${CT_CFLAGS_FOR_BUILD}" )
    libelf_opts+=( "ldflags=${CT_LDFLAGS_FOR_BUILD}" )
    do_libelf_backend "${libelf_opts[@]}"

    CT_Popd
    CT_EndStep
}

# Build libelf for running on host
do_libelf_for_host() {
    local -a libelf_opts

    CT_DoStep INFO "Installing libelf for host"
    CT_mkdir_pushd "${CT_BUILD_DIR}/build-libelf-host-${CT_HOST}"

    libelf_opts+=( "host=${CT_HOST}" )
    libelf_opts+=( "prefix=${CT_HOST_COMPLIBS_DIR}" )
    libelf_opts+=( "cflags=${CT_CFLAGS_FOR_HOST}" )
    libelf_opts+=( "ldflags=${CT_LDFLAGS_FOR_HOST}" )
    do_libelf_backend "${libelf_opts[@]}"

    CT_Popd
    CT_EndStep
}

fi # CT_LIBELF

if [ "${CT_LIBELF_TARGET}" = "y" ]; then

do_libelf_for_target() {
    local -a libelf_opts
    local prefix

    CT_DoStep INFO "Installing libelf for the target"
    CT_mkdir_pushd "${CT_BUILD_DIR}/build-libelf-target-${CT_TARGET}"

    case "${CT_TARGET}" in
        *-*-mingw*)
            prefix="/mingw"
            ;;
        *)
            prefix="/usr"
            ;;
    esac

    libelf_opts+=( "destdir=${CT_SYSROOT_DIR}" )
    libelf_opts+=( "host=${CT_TARGET}" )

    libelf_opts+=( "prefix=${prefix}" )
    libelf_opts+=( "shared=${CT_SHARED_LIBS}" )
    do_libelf_backend "${libelf_opts[@]}"

    CT_Popd
    CT_EndStep
}

fi # CT_LIBELF_TARGET

# Build libelf
#     Parameter     : description               : type      : default
#     destdir       : out-of-tree install dir   : string    : /
#     host          : machine to run on         : tuple     : (none)
#     prefix        : prefix to install into    : dir       : (none)
#     cflags        : cflags to use             : string    : (empty)
#     ldflags       : ldflags to use            : string    : (empty)
#     shared        : also buils shared lib     : bool      : n
do_libelf_backend() {
    local destdir="/"
    local host
    local prefix
    local cflags
    local ldflags
    local shared
    local -a extra_config
    local arg

    for arg in "$@"; do
        eval "${arg// /\\ }"
    done

    CT_DoLog EXTRA "Configuring libelf"

    if [ "${shared}" = "y" ]; then
        extra_config+=( --enable-shared )
    else
        extra_config+=( --disable-shared )
    fi

    CT_DoExecLog CFG                                        \
    CC="${host}-gcc"                                        \
    RANLIB="${host}-ranlib"                                 \
    CFLAGS="${cflags} -fPIC"                                \
    LDFLAGS="${ldflags}"                                    \
    ${CONFIG_SHELL}                                         \
    "${CT_SRC_DIR}/libelf-${CT_LIBELF_VERSION}/configure"   \
        --build=${CT_BUILD}                                 \
        --host=${host}                                      \
        --target=${CT_TARGET}                               \
        --prefix="${prefix}"                                \
        --enable-compat                                     \
        --enable-elf64                                      \
        --enable-extended-format                            \
        --enable-static                                     \
        "${extra_config[@]}"

    CT_DoLog EXTRA "Building libelf"
    CT_DoExecLog ALL make

    CT_DoLog EXTRA "Installing libelf"

    # Guard against $destdir$prefix == //
    # which is a UNC path on Cygwin/MSYS2
    if [[ ${destdir} == / ]] && [[ ${prefix} == /* ]]; then
        destdir=
    fi

    CT_DoExecLog ALL make instroot="${destdir}" install
}

fi # CT_LIBELF || CT_LIBELF_TARGET