Subversion Repositories QNX 8.QNX8 GNU binutils

Rev

Rev 13 | Rev 15 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 pmbaty 1
#!/bin/sh
2
# GNU binutils toolchain cross-compilation script for QNX 8.0 by Pierre-Marie Baty <pm@pmbaty.com>
3
 
4
# NOTE TO SELF: DO NOT USE $0 AS THIS SCRIPT CAN BE RUN *OR* SOURCED! (see build-llvm.sh in the VM)
5
 
6
export QNXSDK_VERSION="8.0.0" # version of the QNX SDK in use, in <major>.<minor>.<revision> format
7
export QNXSDK_PATH="../qnx800" # relative location from the path of this script where to find the QNX platform SDK
8
export QNXSDK_HOSTPATH="host/linux/x86_64" # relative location in QNXSDK_PATH of the tree containing the build tools that are runnable on the build host
9
export QNXSDK_TARGETPATH="target/qnx" # relative location in QNXSDK_PATH of the tree containing the QNX8 system header files
10
 
2 pmbaty 11
export BUILD_DIR_NAME="binutils-build" # name of the directory on the build host's desktop where the GNU binutils sources will be built
12
export BUILD_TARGET_ARCHS="x86_64 aarch64" # space-separated list of CPU architectures to build the GNU binutils for, among "x86_64" and "aarch64"
1 pmbaty 13
 
14
export BINUTILS_VERSION="2.41" # version of GNU binutils that will be built. Should match the Win32 and Linux tools.
15
 
16
export BINUTILS_SOURCES_FILE="binutils-${BINUTILS_VERSION}.tar.gz" # name of the file containing GNU binutils version BINUTILS_VERSION sources
17
export BINUTILS_SOURCES_URL="https://ftp.gnu.org/gnu/binutils/${BINUTILS_SOURCES_FILE}" # download URL of BINUTILS_SOURCES_FILE
18
export BINUTILS_SOURCES_DIR="binutils-${BINUTILS_VERSION}" # name of directory created when extracting BINUTILS_SOURCES_FILE
19
 
3 pmbaty 20
export REQUIRED_TOOLS="wget python3 gcc g++ make m4" # list of build tools required to build all this on the build host
21
 
1 pmbaty 22
# see where we are
23
export CURRENT_DIR="$(pwd)"
24
 
3 pmbaty 25
print_error_and_die()
26
{
27
        # a handy function that does what it says. Args: error strings to print, one line per argument
28
        test -z "${COLUMNS}" && COLUMNS=80
1 pmbaty 29
        echo ""
3 pmbaty 30
        while [ -n "${1}" ]; do
31
                echo "${1}"|fold -s -w "${COLUMNS}"
32
                shift
33
        done
1 pmbaty 34
        echo ""
35
        exit 1
3 pmbaty 36
}
37
 
38
# verify we're a x86_64 Linux host
39
if [ ! "$(uname)" = "Linux" ] || [ ! "$(uname -m)" = "x86_64" ]; then
40
        print_error_and_die "Error: this script requires a x86_64 Linux machine (possibly a virtual machine) as the build host."
1 pmbaty 41
fi
42
 
43
# verify that we have the QNX platform SDK
44
if [ ! -d "${QNXSDK_PATH}/${QNXSDK_HOSTPATH}" ] || [ ! -d "${QNXSDK_PATH}/${QNXSDK_TARGETPATH}" ]; then
12 pmbaty 45
        print_error_and_die "Error: the ${QNXSDK_PATH} path doesn't contain a QNX SDK. It must contain the 'host' and 'target' directories of the QNX SDP for the targeted version of QNX and the ${BUILD_TARGET_ARCH} platform. Please deploy these directories and try again."
1 pmbaty 46
fi
47
 
3 pmbaty 48
# verify that we have the required tools
49
for REQUIRED_TOOL in ${REQUIRED_TOOLS}; do
50
        "${REQUIRED_TOOL}" --version > /dev/null 2>&1 || print_error_and_die \
51
                "Error: this script requires at the very least the following tools installed:" \
52
                "       $(echo "${REQUIRED_TOOLS}"|sed 's/ /\n  /g')" \
53
                "Please install them (possibly as binary packages with apt-get) and try again." \
54
                "More specifically, the following tool was not found: '${REQUIRED_TOOL}'"
55
done
1 pmbaty 56
 
13 pmbaty 57
# verify that the symlinks are deployed in the SDK -- just test one of them in each relevant directory ($QNX_HOST for the tools, $QNX_TARGET for the sysroot)
58
if [ ! -e "${QNXSDK_PATH}/${QNXSDK_HOSTPATH}/usr/bin/gcc" ] || [ ! -e "${QNXSDK_PATH}/${QNXSDK_TARGETPATH}/usr/include/readline.h" ]; then
3 pmbaty 59
        print_error_and_die \
60
                "Error: the toolchain platform-specific symbolic links have not been deployed in this QNX SDK. Please run" \
61
                "(on a POSIX machine:)" \
62
                "       cd ${QNXSDK_PATH}" \
63
                "       find . -name symlinks.lst -exec ./symlinks.sh {} create \\; && printf 'present' > .symlinks-state" \
64
                "(else on a Windows machine:)" \
11 pmbaty 65
                "       cd %QNXSDK_PATH%" \
3 pmbaty 66
                "       host\\win64\\x86_64\\usr\\bin\\busybox.exe sh -c \"find . -name symlinks.lst -exec ./symlinks.sh {} create \\; && printf 'present' > .symlinks-state\"" \
67
                "Note that this step WILL take time on a Win32 machine, but is only done once."
1 pmbaty 68
fi
69
 
70
# create a symlink in /tmp that will lead to the QNX platform SDK so as to avoid spaces in paths if it doesn't exist already
71
# (this is totally prohibitive with the official QNX toolchain)
72
if [ ! -L /tmp/qnxsdk ] || [ ! "$(readlink /tmp/qnxsdk)" = "$(realpath "${CURRENT_DIR}/${QNXSDK_PATH}")" ]; then
73
        echo "Creating symlink to QNX toolchain in /tmp/qnxsdk..."
74
        rm -rf /tmp/qnxsdk 2>/dev/null
75
        ln -fs "$(realpath "${CURRENT_DIR}/${QNXSDK_PATH}")" /tmp/qnxsdk || exit 1
76
fi
77
 
78
# setup the environment
79
export QNX_HOST="/tmp/qnxsdk/${QNXSDK_HOSTPATH}"
80
export QNX_TARGET="/tmp/qnxsdk/${QNXSDK_TARGETPATH}"
81
export MAKEFLAGS="-I${QNX_TARGET}/usr/include"
82
export PATH="${QNX_HOST}/usr/bin:${PATH}"
83
 
2 pmbaty 84
# print the build environment
85
echo "QNX_HOST=${QNX_HOST}"
86
echo "QNX_TARGET=${QNX_TARGET}"
87
echo "MAKEFLAGS=${MAKEFLAGS}"
88
 
14 pmbaty 89
# change to an immediately visible path, i.e. the user's desktop (failsafe to $HOME if xdg-user-dir is unavailable or points to a nonexistent directory)
2 pmbaty 90
STAGING_PATH="$(xdg-user-dir DESKTOP 2>/dev/null || echo "${HOME}")"
14 pmbaty 91
test -d "${STAGING_PATH}" || STAGING_PATH="${HOME}"
2 pmbaty 92
cd "${STAGING_PATH}"
93
 
1 pmbaty 94
# download the involved source packages and unpack them if not done yet
95
download_and_unpack_if_necessary()
96
{
97
        # helper function that downloads a sources tarball, extracts it and patches it if necessary
98
        # args: <sources dirname> <sources filename> <download URL> [optional patchset URL]
99
        test -d "${1}" && return 0 # if sources directory already exists, nothing to do
100
        if [ ! -s "${CURRENT_DIR}/${2}" ]; then # if sources archive isn't a nonempty file...
101
                echo "Downloading ${1} sources from ${3}..."
102
                if ! wget -O "${CURRENT_DIR}/${2}" "${3}"; then
103
                        # remove output file in case an error occurs
104
                        rm -f "${CURRENT_DIR}/${2}"
105
                        exit 1
106
                fi
107
        fi
108
        echo "Extracting ${1} sources..."
109
        cd "$(dirname "${1}")"
110
        if echo "${2}"|grep -q "\.tar\.bz2$"; then
111
                # BZip2 tarball
112
                tar xjf "${CURRENT_DIR}/${2}" || exit 1
113
        elif echo "${2}"|grep -q "\.tar\.xz$"; then
114
                # XZ tarball
115
                tar xJf "${CURRENT_DIR}/${2}" || exit 1
116
        elif echo "${2}"|grep -q "\.tar\.gz$"; then
117
                # GZipped tarball
118
                tar xzf "${CURRENT_DIR}/${2}" || exit 1
119
        else
120
                echo "Error: unsupported file extension. Please improve the download_and_unpack_if_necessary() shell function to support it."
121
                exit 1
122
        fi
123
        # make sure the expected directory is here after extraction
124
        if [ ! -d "${1}" ]; then
125
                echo "Error: couldn't find ${1} in extracted sources."
126
                exit 1
127
        fi
128
        # do we have a patchset to apply ?
129
        if [ -n "${4}" ]; then
130
                echo "Downloading ${1} patchset from ${4}..."
131
                wget -O "${CURRENT_DIR}/${2}.patchset" "${4}" || exit 1
132
                echo "Applying patchset..."
133
                OLDDIR="$(pwd)"
134
                cd "${1}"
135
                patch -N -Z -p1 < "${CURRENT_DIR}/${2}.patchset" || exit 1
136
                cd "${OLDDIR}"
137
                unset OLDDIR
138
        fi
139
        return 0
140
}
141
download_and_unpack_if_necessary "${BINUTILS_SOURCES_DIR}" "${BINUTILS_SOURCES_FILE}" "${BINUTILS_SOURCES_URL}" || exit 1
142
 
143
# change directory to the binutils sources
2 pmbaty 144
cd "${BINUTILS_SOURCES_DIR}" || exit 1
1 pmbaty 145
 
146
backup_and_patch_if_necessary()
147
{
2 pmbaty 148
        # handy function that patches a file in the current directory with a given sed replacement regex if necessary, creating backups
1 pmbaty 149
        # args: <file pathname> <grep_string_to_test_for_presence_of_patch> <sed regex>
3 pmbaty 150
        _PATCHEE_PATHNAME="${1}"
151
        _PATCHED_PATTERN="${2}"
1 pmbaty 152
        # test if already patched
3 pmbaty 153
        grep -q "${_PATCHED_PATTERN}" "${_PATCHEE_PATHNAME}" && return
1 pmbaty 154
        # tell what we're about to do
3 pmbaty 155
        echo "Patching ${_PATCHEE_PATHNAME}..."
156
        _DOTTED_NAME="$(echo "${_PATCHEE_PATHNAME}"|tr '/' '.')"
1 pmbaty 157
        # have a backup first
3 pmbaty 158
        test -f "${CURRENT_DIR}/${_DOTTED_NAME} [ORIGINAL]" || cp "${_PATCHEE_PATHNAME}" "${CURRENT_DIR}/${_DOTTED_NAME} [ORIGINAL]" || exit 1
1 pmbaty 159
        # perform the patch
3 pmbaty 160
        cp -f "${CURRENT_DIR}/${_DOTTED_NAME} [ORIGINAL]" "${CURRENT_DIR}/${_DOTTED_NAME} [PATCHED]" || exit 1
161
        while [ -n "${3}" ]; do
162
                sed -E -i "${3}" "${CURRENT_DIR}/${_DOTTED_NAME} [PATCHED]"
163
                shift
164
        done
1 pmbaty 165
        # verify that we did it successfully
3 pmbaty 166
        if ! grep -q "${_PATCHED_PATTERN}" "${CURRENT_DIR}/${_DOTTED_NAME} [PATCHED]"; then
167
                echo "Error: the file ${_PATCHEE_PATHNAME} could not be patched. Please investigate and fix manually." | fold -s -w 79; exit 1
1 pmbaty 168
        fi
169
        # and put the patched file in place
3 pmbaty 170
        cp -f "${CURRENT_DIR}/${_DOTTED_NAME} [PATCHED]" "${_PATCHEE_PATHNAME}" || exit 1
1 pmbaty 171
}
172
backup_and_replace()
173
{
2 pmbaty 174
        # handy function that replaces a file in the current directory with a given replacement, creating backups
1 pmbaty 175
        # args: <file pathname> <replacement pathname>
176
        # tell what we're about to do
177
        echo "Replacing ${1}..."
178
        # have a backup first
2 pmbaty 179
        test -f "${CURRENT_DIR}/$(echo "${1}"|tr '/' '.') [ORIGINAL]" || test -e "${1}" && cp "${1}" "${CURRENT_DIR}/$(echo "${1}"|tr '/' '.') [ORIGINAL]"
1 pmbaty 180
        # perform the replacement
2 pmbaty 181
        cp -f "${2}" "${1}" || exit 1
1 pmbaty 182
}
183
 
184
# patch libiberty/pex-unix.c
3 pmbaty 185
# replace:
186
#       defined(HAVE_SPAWNVE)
187
# with:
188
#       !defined(__QNXNTO__) && defined(HAVE_SPAWNVE)
1 pmbaty 189
# RATIONALE: QNX exposes the same spawnve() functions which were invented by Microsoft. Autoconf mistakenly believes it's a Cygwin system.
190
# Moreover the flags _P_NOWAIT and _P_NOWAITO don't have the same meaning on QNX: the second one doesn't create zombies waiting for their exit
191
# status to be read, whereas on Microsoft they're the same. This prevents process created with this flag (as libiberty does) from being wait()ed.
3 pmbaty 192
# Fix that by declaring that we want to use the traditional POSIX fork/exec scheme, which QNX supports as well.
193
backup_and_patch_if_necessary "libiberty/pex-unix.c" __QNXNTO__ \
194
        's@defined\(HAVE_SPAWNVE\)@\!defined\(__QNXNTO__\) \&\& defined\(HAVE_SPAWNVE\)@g'
1 pmbaty 195
 
196
# patch bfd/config.bfd
197
# RATIONALE: insert x86_64 and aarch64 QNX definitions for the BFD library
198
backup_and_replace "bfd/config.bfd" "${CURRENT_DIR}/bfd.config.bfd"
199
 
200
# patch ld/configure.tgt
4 pmbaty 201
# RATIONALE: insert x86_64 and aarch64 QNX definitions for the GNU linker
1 pmbaty 202
backup_and_replace "ld/configure.tgt" "${CURRENT_DIR}/ld.configure.tgt"
203
 
4 pmbaty 204
# patch ld/emulparams/aarch64nto.sh
205
# RATIONALE: insert aarch64 QNX particularities for the GNU linker
206
backup_and_replace "ld/emulparams/aarch64nto.sh" "${CURRENT_DIR}/ld.emulparams.aarch64nto.sh"
207
 
208
# patch ld/emulparams/elf_x86_64nto.sh
209
# RATIONALE: insert aarch64 QNX particularities for the GNU linker
8 pmbaty 210
backup_and_replace "ld/emulparams/elf_x86_64.sh" "${CURRENT_DIR}/ld.emulparams.elf_x86_64.sh"
4 pmbaty 211
 
1 pmbaty 212
# define the tools to use when compiling intermediary programs on the build host
213
export AR_FOR_BUILD="/usr/bin/ar"
214
export AS_FOR_BUILD="/usr/bin/as"
215
export LD_FOR_BUILD="/usr/bin/ld"
216
export NM_FOR_BUILD="/usr/bin/nm"
217
export RANLIB_FOR_BUILD="/usr/bin/ranlib"
218
export CC_FOR_BUILD="/usr/bin/gcc"; CFLAGS_FOR_BUILD="-fuse-ld=${LD_FOR_BUILD}"
219
export CXX_FOR_BUILD="/usr/bin/g++"; CXXFLAGS_FOR_BUILD="-fuse-ld=${LD_FOR_BUILD}"
220
 
2 pmbaty 221
# now, for each target arch the native binutils should support...
222
for BUILD_TARGET_ARCH in ${BUILD_TARGET_ARCHS}; do
1 pmbaty 223
 
2 pmbaty 224
        # construct the target triple (actually a quadruple)
225
        TARGET_ARCH="${BUILD_TARGET_ARCH}"
226
        test "${BUILD_TARGET_ARCH}" = "x86_64" && TARGET_VENDOR="pc" || TARGET_VENDOR="unknown"
227
        TARGET_KERNEL="nto"
228
        TARGET_SYSTEM="qnx${QNXSDK_VERSION}"
229
        export TARGET_TRIPLE="${TARGET_ARCH}-${TARGET_VENDOR}-${TARGET_KERNEL}-${TARGET_SYSTEM}"
230
        echo "Will build for ${TARGET_TRIPLE}"
1 pmbaty 231
 
2 pmbaty 232
        # create the build directory
233
        echo "Wiping out build directory..."
234
        test -e ".build/${TARGET_TRIPLE}" && rm -rf ".build/${TARGET_TRIPLE}"
235
        mkdir -p ".build/${TARGET_TRIPLE}" || exit 1
236
        ln -fs "${BINUTILS_SOURCES_DIR}/.build" "../${BUILD_DIR_NAME}"
237
        cd ".build/${TARGET_TRIPLE}"
238
 
239
        # configure and build the GNU binutils. Note that since these are low level tools, we want static binaries as much as possible.
240
        # NOTE: in this context, --host means the machine the built program is expected to RUN on, and --target the machine the built program will FOCUS on.
241
        ../../configure \
4 pmbaty 242
                        --with-sysroot="${QNX_TARGET}" \
2 pmbaty 243
                --prefix="$(dirname "$(dirname "${QNX_HOST}")")/qnx$(echo "${QNXSDK_VERSION}"|awk -F. '{print $1}')/${BUILD_TARGET_ARCH}/usr" \
244
                --host="x86_64-pc-nto-qnx${QNXSDK_VERSION}" \
245
                --target="${TARGET_TRIPLE}" \
246
                --disable-shared \
247
                --disable-nls \
248
                --enable-static-link \
249
                --disable-shared-plugins \
250
                --disable-dynamicplugin \
251
                --disable-pie \
252
                --enable-static=yes \
253
                --enable-shared=no \
4 pmbaty 254
                        --enable-threads \
255
                        --disable-bootstrap \
2 pmbaty 256
                --disable-doc || exit 1
257
 
258
        # and build the whole shit
259
        make -j 4 MAKEINFO=/bin/true || exit 1
260
 
261
        # now gather all the binutils in one place on the hypervisor's filesystem and name them appropriately
262
        test -e "${CURRENT_DIR}/binutils-build" || mkdir -p "${CURRENT_DIR}/binutils-build"
263
        rm "${CURRENT_DIR}/binutils-build/${TARGET_TRIPLE}-"* 2>/dev/null
264
        VERSION="$(grep PACKAGE_VERSION opcodes/config.h|awk -F'"' '{print $2}')"
265
        VERSION_MAJ="$(echo "${VERSION}"|cut -d . -f 1)"; test -z "${VERSION_MAJ}" && VERSION_MAJ="0"
266
        VERSION_MIN="$(echo "${VERSION}"|cut -d . -f 2)"; test -z "${VERSION_MIN}" && VERSION_MIN="0"
267
        VERSION_REV="$(echo "${VERSION}"|cut -d . -f 3)"; test -z "${VERSION_REV}" && VERSION_REV="0"
268
        for TOOL in \
269
                        binutils/addr2line:addr2line \
270
                        binutils/ar:ar \
271
                        gas/as-new:as \
272
                        binutils/cxxfilt:c++filt \
273
                        binutils/elfedit:elfedit \
274
                        gprof/gprof:gprof \
275
                        ld/ld-new:ld.bfd \
276
                        binutils/nm-new:nm \
277
                        binutils/objcopy:objcopy \
278
                        binutils/objdump:objdump \
279
                        binutils/ranlib:ranlib \
280
                        binutils/readelf:readelf \
281
                        binutils/size:size \
282
                        binutils/strings:strings \
283
                        binutils/strip-new:strip \
1 pmbaty 284
        ; do
2 pmbaty 285
                SRC="$(echo "${TOOL}"|cut -d : -f 1)"
286
                TGT="$(echo "${TOOL}"|cut -d : -f 2)"
287
                cp "${SRC}" "${CURRENT_DIR}/binutils-build/${TARGET_TRIPLE}-${TGT}-${VERSION_MAJ}.${VERSION_MIN}.${VERSION_REV}" || exit 1
288
        done
289
 
290
        # return to the sources dir and proceed to the next arch
291
        cd ../..
1 pmbaty 292
done
293
 
3 pmbaty 294
/bin/printf "\n\xf0\x9f\x8d\xba\x20\x43\x68\x65\x65\x72\x73\x2e\n"
1 pmbaty 295
exit 0