Subversion Repositories QNX 8.QNX8 LLVM/Clang compiler suite

Rev

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

Rev Author Line No. Line
2 pmbaty 1
#!/bin/sh
3 pmbaty 2
# LLVM/Clang toolchain cross-compilation script for QNX 8.0 by Pierre-Marie Baty <pm@pmbaty.com>
2 pmbaty 3
 
3 pmbaty 4
# NOTE TO SELF: DO NOT USE $0 AS THIS SCRIPT CAN BE RUN *OR* SOURCED! (see build-llvm.sh in the VM)
5
 
7 pmbaty 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
 
11
export BUILD_DIR_NAME="llvm-build" # name of the directory on the build host's desktop where the LLVM sources will be built
12
export BUILD_TARGET_ARCH="x86_64" # CPU architecture to build LLVM for, either "x86_64" or "aarch64"
13
 
10 pmbaty 14
export LLVM_VERSION="17.0.6" # version of LLVM that will be built
7 pmbaty 15
export LLVM_SOURCES_FILE="llvmorg-${LLVM_VERSION}.tar.gz" # name of the file containing LLVM version LLVM_VERSION sources
2 pmbaty 16
export LLVM_SOURCES_URL="https://github.com/llvm/llvm-project/archive/refs/tags/${LLVM_SOURCES_FILE}" # download URL of LLVM_SOURCES_FILE
17
export LLVM_SOURCES_DIR="llvm-project-llvmorg-${LLVM_VERSION}" # name of directory created when extracting LLVM_SOURCES_FILE
18
 
19
# see where we are
20
export CURRENT_DIR="$(pwd)"
21
 
22
# verify we're a x86_64 Linux host
23
if [ ! "$(uname)" = "Linux" ] || [ ! "$(uname -m)" = "x86_64" ]; then
24
        echo ""
6 pmbaty 25
        echo "Error: this script requires a x86_64 Linux machine (possibly a virtual machine) as the build host." | fold -s -w 79
2 pmbaty 26
        echo ""
27
        exit 1
28
fi
29
 
30
# verify that we have the QNX platform SDK
31
if [ ! -d "${QNXSDK_PATH}/${QNXSDK_HOSTPATH}" ] || [ ! -d "${QNXSDK_PATH}/${QNXSDK_TARGETPATH}" ]; then
32
        echo ""
7 pmbaty 33
        echo "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." | fold -s -w 79
2 pmbaty 34
        echo ""
35
        exit 1
36
fi
37
 
38
# verify that we have wget, python3, cmake, gcc, g++ and ninja
39
if    ! wget    --version > /dev/null 2>&1 \
40
   || ! python3 --version > /dev/null 2>&1 \
41
   || ! cmake   --version > /dev/null 2>&1 \
42
   || ! gcc     --version > /dev/null 2>&1 \
43
   || ! g++     --version > /dev/null 2>&1 \
44
   || ! ninja   --version > /dev/null 2>&1; then
45
        echo ""
46
        echo "Error: this script requires at the very least the following tools installed:"
47
        echo "  wget"
48
        echo "  python3"
49
        echo "  cmake"
50
        echo "  gcc"
51
        echo "  g++"
52
        echo "  ninja"
53
        echo "Please install them (possibly as binary packages with apt-get) and try again."
54
        echo ""
55
        exit 1
56
fi
57
 
58
# verify that the symlinks are deployed in the SDK -- just test one of them
59
if [ ! -e "${QNXSDK_PATH}/${QNXSDK_TARGETPATH}/usr/include/readline.h" ]; then
60
        echo ""
6 pmbaty 61
        echo "Error: the toolchain platform-specific symbolic links have not been deployed in this QNX SDK. Please run" | fold -s -w 79
2 pmbaty 62
        echo "(on a POSIX machine:)"
6 pmbaty 63
        echo "  cd ${QNXSDK_PATH}" | fold -s -w 79
64
        echo "  find . -name symlinks.lst -exec ./symlinks.sh {} create \\; && printf 'present' > .symlinks-state" | fold -s -w 79
2 pmbaty 65
        echo "(else on a Windows machine:)"
6 pmbaty 66
        echo "  cd ${QNXSDK_PATH}" | fold -s -w 79
3 pmbaty 67
        echo "  host\\win64\\x86_64\\usr\\bin\\busybox.exe sh -c \"" \
2 pmbaty 68
               "find . -name symlinks.lst -exec ./symlinks.sh {} create \\; && printf 'present' > .symlinks-state" \
6 pmbaty 69
               "\"" | fold -s -w 79
70
        echo "Note that this step WILL take time on a Win32 machine, but is only done once." | fold -s -w 79
2 pmbaty 71
        echo ""
72
        exit 1
73
fi
74
 
75
# construct the target triple (actually a quadruple)
7 pmbaty 76
export TARGET_ARCH="${BUILD_TARGET_ARCH}"
77
test "${BUILD_TARGET_ARCH}" = "x86_64" && export TARGET_VENDOR="pc" || export TARGET_VENDOR="unknown"
78
export TARGET_KERNEL="nto"
79
export TARGET_SYSTEM="qnx${QNXSDK_VERSION}"
2 pmbaty 80
export TARGET_TRIPLE="${TARGET_ARCH}-${TARGET_VENDOR}-${TARGET_KERNEL}-${TARGET_SYSTEM}"
11 pmbaty 81
echo "Will build for ${TARGET_TRIPLE}"
2 pmbaty 82
 
7 pmbaty 83
# change to an immediately visible path, i.e. the user's desktop (failsafe to $HOME if xdg-user-dir is unavailable)
84
STAGING_PATH="$(xdg-user-dir DESKTOP 2>/dev/null || echo "${HOME}")"
85
cd "${STAGING_PATH}"
2 pmbaty 86
 
7 pmbaty 87
# 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
2 pmbaty 88
# (this is totally prohibitive with the official QNX toolchain)
7 pmbaty 89
if [ ! -L /tmp/qnxsdk ] || [ ! "$(readlink /tmp/qnxsdk)" = "$(realpath "${CURRENT_DIR}/${QNXSDK_PATH}")" ]; then
90
        echo "Creating symlink to QNX toolchain in /tmp/qnxsdk..."
91
        rm -rf /tmp/qnxsdk 2>/dev/null
92
        ln -fs "$(realpath "${CURRENT_DIR}/${QNXSDK_PATH}")" /tmp/qnxsdk || exit 1
93
fi
2 pmbaty 94
 
95
# setup the environment
96
export QNX_HOST="/tmp/qnxsdk/${QNXSDK_HOSTPATH}"
97
export QNX_TARGET="/tmp/qnxsdk/${QNXSDK_TARGETPATH}"
98
export MAKEFLAGS="-I${QNX_TARGET}/usr/include"
99
export PATH="${QNX_HOST}/usr/bin:${PATH}"
100
 
10 pmbaty 101
# download the involved source packages and unpack them if not done yet
102
download_and_unpack_if_necessary()
103
{
104
        # helper function that downloads a sources tarball, extracts it and patches it if necessary
11 pmbaty 105
        # args: <sources dirname> <sources filename> <download URL> [optional patchset URL]
106
        test -d "${1}" && return 0 # if sources directory already exists, nothing to do
107
        if [ ! -s "${CURRENT_DIR}/${2}" ]; then # if sources archive isn't a nonempty file...
108
                echo "Downloading ${1} sources from ${3}..."
109
                if ! wget -O "${CURRENT_DIR}/${2}" "${3}"; then
110
                        # remove output file in case an error occurs
111
                        rm -f "${CURRENT_DIR}/${2}"
10 pmbaty 112
                        exit 1
113
                fi
114
        fi
11 pmbaty 115
        echo "Extracting ${1} sources..."
116
        cd "$(dirname "${1}")"
117
        if echo "${2}"|grep -q "\.tar\.bz2$"; then
118
                # BZip2 tarball
119
                tar xjf "${CURRENT_DIR}/${2}" || exit 1
120
        elif echo "${2}"|grep -q "\.tar\.xz$"; then
121
                # XZ tarball
122
                tar xJf "${CURRENT_DIR}/${2}" || exit 1
123
        elif echo "${2}"|grep -q "\.tar\.gz$"; then
124
                # GZipped tarball
125
                tar xzf "${CURRENT_DIR}/${2}" || exit 1
126
        else
127
                echo "Error: unsupported file extension. Please improve the download_and_unpack_if_necessary() shell function to support it."
128
                exit 1
129
        fi
130
        # make sure the expected directory is here after extraction
131
        if [ ! -d "${1}" ]; then
132
                echo "Error: couldn't find ${1} in extracted sources."
133
                exit 1
134
        fi
135
        # do we have a patchset to apply ?
136
        if [ -n "${4}" ]; then
137
                echo "Downloading ${1} patchset from ${4}..."
138
                wget -O "${CURRENT_DIR}/${2}.patchset" "${4}" || exit 1
139
                echo "Applying patchset..."
140
                OLDDIR="$(pwd)"
141
                cd "${1}"
142
                patch -N -Z -p1 < "${CURRENT_DIR}/${2}.patchset" || exit 1
143
                cd "${OLDDIR}"
144
                unset OLDDIR
145
        fi
10 pmbaty 146
        return 0
147
}
148
download_and_unpack_if_necessary "${LLVM_SOURCES_DIR}" "${LLVM_SOURCES_FILE}" "${LLVM_SOURCES_URL}" || exit 1
149
 
2 pmbaty 150
# download the LLVM source package and unpack it if not done yet
151
if [ ! -d "${LLVM_SOURCES_DIR}" ]; then
152
        if [ ! -f "${CURRENT_DIR}/${LLVM_SOURCES_FILE}" ]; then
153
                echo "Downloading LLVM ${LLVM_VERSION} sources from LLVM GitHub..."
154
                wget "${LLVM_SOURCES_URL}" || exit 1
155
        fi
156
        echo "Extracting LLVM ${LLVM_VERSION} sources..."
157
        cd "$(dirname "${LLVM_SOURCES_DIR}")"
158
        tar xzf "${CURRENT_DIR}/${LLVM_SOURCES_FILE}" || exit 1
159
        if [ ! -d "${LLVM_SOURCES_DIR}" ]; then
160
                echo "Error: couldn't find ${LLVM_SOURCES_DIR} in extracted LLVM sources."
161
                exit 1
162
        fi
163
fi
164
 
165
# create the build directory
166
echo "Wiping out build directory..."
167
test -e "${BUILD_DIR_NAME}" && rm -rf "${BUILD_DIR_NAME}"
168
mkdir "${BUILD_DIR_NAME}" || exit 1
169
cd "${BUILD_DIR_NAME}" || exit 1
170
 
171
# print the build environment
172
echo "QNX_HOST=${QNX_HOST}"
173
echo "QNX_TARGET=${QNX_TARGET}"
174
echo "MAKEFLAGS=${MAKEFLAGS}"
175
 
176
# create the QNX CMake toolchain file
8 pmbaty 177
test -e "${TARGET_TRIPLE}.cmake" || echo '# '${TARGET_TRIPLE}' CMake toolchain file by Pierre-Marie Baty <pm@pmbaty.com>
2 pmbaty 178
 
179
SET(CMAKE_SYSTEM_NAME "QNX")
7 pmbaty 180
SET(CMAKE_SYSTEM_VERSION "'${QNXSDK_VERSION}'")
2 pmbaty 181
 
182
SET(QNX "1")
183
SET(QNXNTO "1")
184
SET(QNX_HOST "$ENV{QNX_HOST}")
185
SET(QNX_TARGET "$ENV{QNX_TARGET}")
186
SET(QNX_PROCESSOR "'${TARGET_ARCH}'")
187
 
188
SET(CMAKE_ASM_COMPILER "${QNX_HOST}/usr/bin/'${TARGET_TRIPLE}'-gcc")
189
SET(CMAKE_ASM_COMPILER_TARGET "gcc_nto${QNX_PROCESSOR}")
190
 
191
SET(CMAKE_C_COMPILER "${QNX_HOST}/usr/bin/'${TARGET_TRIPLE}'-gcc")
192
SET(CMAKE_C_COMPILER_TARGET "gcc_nto${QNX_PROCESSOR}")
193
SET(CMAKE_C_FLAGS_DEBUG "-g")
194
SET(CMAKE_C_FLAGS_MINSIZEREL "-Os -DNDEBUG")
195
SET(CMAKE_C_FLAGS_RELEASE "-O3 -DNDEBUG")
196
SET(CMAKE_C_FLAGS_RELWITHDEBINFO "-O2 -g")
7 pmbaty 197
SET(CMAKE_C_FLAGS "-D_QNX_SOURCE=1 -I${QNX_TARGET}/usr/include/devs/include_'${TARGET_ARCH}' -I${QNX_TARGET}/usr/include/devs -DDONT_DEFINE_BSD -DDONT_DEFINE___FreeBSD_kernel__ -DDONT_DEFINE_FSCALE -DDONT_DEFINE_MACHINE")
2 pmbaty 198
 
199
SET(CMAKE_CXX_COMPILER "${QNX_HOST}/usr/bin/'${TARGET_TRIPLE}'-g++")
200
SET(CMAKE_CXX_COMPILER_TARGET "gcc_nto${QNX_PROCESSOR}")
201
SET(CMAKE_CXX_FLAGS_DEBUG "-g")
202
SET(CMAKE_CXX_FLAGS_MINSIZEREL "-Os -DNDEBUG")
203
SET(CMAKE_CXX_FLAGS_RELEASE "-O3 -DNDEBUG")
204
SET(CMAKE_CXX_FLAGS_RELWITHDEBINFO "-O2 -g")
7 pmbaty 205
SET(CMAKE_CXX_FLAGS "-D_QNX_SOURCE=1 -I${QNX_TARGET}/usr/include/devs/include_'${TARGET_ARCH}' -I${QNX_TARGET}/usr/include/devs -DDONT_DEFINE_BSD -DDONT_DEFINE___FreeBSD_kernel__ -DDONT_DEFINE_FSCALE -DDONT_DEFINE_MACHINE")
2 pmbaty 206
 
207
SET(CMAKE_LINKER "${QNX_HOST}/usr/bin/'${TARGET_TRIPLE}'-ld.bfd")
4 pmbaty 208
SET(CMAKE_SHARED_LINKER_FLAGS "-lsocket")
2 pmbaty 209
SET(CMAKE_EXE_LINKER_FLAGS "-lsocket")
210
 
211
SET(CMAKE_RANLIB "${QNX_HOST}/usr/bin/'${TARGET_TRIPLE}'-ranlib")
212
 
7 pmbaty 213
SET(CMAKE_NM "${QNX_HOST}/usr/bin/'${TARGET_TRIPLE}'-nm")
214
 
2 pmbaty 215
SET(CMAKE_AR "${QNX_HOST}/usr/bin/'${TARGET_TRIPLE}'-ar")
216
 
217
SET(CMAKE_FIND_ROOT_PATH "${QNX_TARGET}")
218
SET(CMAKE_FIND_ROOT_PATH_HOST_PROGRAM NEVER)
219
SET(CMAKE_FIND_ROOT_PATH_HOST_LIBRARY ONLY)
220
SET(CMAKE_FIND_ROOT_PATH_HOST_INCLUDE ONLY)
221
' > "${TARGET_TRIPLE}.cmake"
222
 
7 pmbaty 223
backup_and_patch_if_necessary()
224
{
225
        # handy function that patches a file in LLVM_SOURCES_DIR with a given sed replacement regex if necessary, creating backups
11 pmbaty 226
        # args: <file pathname> <grep_string_to_test_for_presence_of_patch> <sed regex> [<second regex> [...]]
227
        _PATCHEE_PATHNAME="${1}"
228
        _PATCHED_PATTERN="${2}"
7 pmbaty 229
        # test if already patched
11 pmbaty 230
        grep -q "${_PATCHED_PATTERN}" "../${LLVM_SOURCES_DIR}/${_PATCHEE_PATHNAME}" && return
7 pmbaty 231
        # tell what we're about to do
11 pmbaty 232
        echo "Patching ${_PATCHEE_PATHNAME}..."
233
        _DOTTED_NAME="$(echo "${_PATCHEE_PATHNAME}"|tr '/' '.')"
7 pmbaty 234
        # have a backup first
11 pmbaty 235
        test -f "${CURRENT_DIR}/${_DOTTED_NAME} [ORIGINAL]" || cp "../${LLVM_SOURCES_DIR}/${_PATCHEE_PATHNAME}" "${CURRENT_DIR}/${_DOTTED_NAME} [ORIGINAL]" || exit 1
7 pmbaty 236
        # perform the patch
11 pmbaty 237
        cp -f "${CURRENT_DIR}/${_DOTTED_NAME} [ORIGINAL]" "${CURRENT_DIR}/${_DOTTED_NAME} [PATCHED]" || exit 1
238
        while [ -n "${3}" ]; do
239
                sed -E -i "${3}" "${CURRENT_DIR}/${_DOTTED_NAME} [PATCHED]"
240
                shift
241
        done
7 pmbaty 242
        # verify that we did it successfully
11 pmbaty 243
        if ! grep -q "${_PATCHED_PATTERN}" "${CURRENT_DIR}/${_DOTTED_NAME} [PATCHED]"; then
244
                echo "Error: the file ${_PATCHEE_PATHNAME} could not be patched. Please investigate and fix manually." | fold -s -w 79; exit 1
7 pmbaty 245
        fi
246
        # and put the patched file in place
11 pmbaty 247
        cp -f "${CURRENT_DIR}/${_DOTTED_NAME} [PATCHED]" "../${LLVM_SOURCES_DIR}/${_PATCHEE_PATHNAME}" || exit 1
7 pmbaty 248
}
249
 
6 pmbaty 250
# patch llvm/Support/Unix/Path.inc if not done yet
8 pmbaty 251
# replace [defined(__FreeBSD_kernel__)] with [(defined(__FreeBSD_kernel__) || defined(__QNXNTO__))]
7 pmbaty 252
# RATIONALE: the concerned parts of the QNX platform SDK (/usr/include/devs/*) are actually largely based on FreeBSD code, to conveniently use the FreeBSD network stack.
253
# NONETHELESS, QNX *IS NOT* FreeBSD and "__FreeBSD_kernel__" *SHOULD NOT* be defined, else userland code may falsely assume a genuine FreeBSD include tree to be available,
254
# which leads to compilation errors caused by include files assumed to be there whereas they are in fact nowhere to be found (ex: /usr/include/sys/user.h, among others).
255
# The QNX8 platform SDK has thus been patched to NOT define __FreeBSD_kernel__ when the -DDONT_DEFINE___FreeBSD_kernel__ flag is passed, and the feature tests in Path.inc
256
# that branch into FreeBSD APIs (which ones *are* exposed in the QNX libc since QNX largely shares FreeBSD code) are about to be patched right now to accept __QNXNTO__ too.
257
# Additionally, support for statfs()/fstatfs() has been restored in the QNX8 platform SDK in /usr/include/devs/sys/mount.h where it was claimed but absent from the QNX8 libc.
258
# FIXME: these hacks should be moved elsewhere not to pollute the QNX8 platform SDK -- it *SHOULD* be possible to build without devs
11 pmbaty 259
backup_and_patch_if_necessary "llvm/lib/Support/Unix/Path.inc" __QNXNTO__ \
260
        's/defined\(__FreeBSD_kernel__\)/\(defined\(__FreeBSD_kernel__\) \|\| \defined\(__QNXNTO__\)\)/g'
6 pmbaty 261
 
7 pmbaty 262
# patch lldb/Source/Host/common/Host.cpp if not done yet
8 pmbaty 263
# replace [defined(SIGINFO)] with [(defined(SIGINFO) && !defined(__QNXNTO__))]
7 pmbaty 264
# RATIONALE: the QNX people defined SIGINFO to the value of SIGUSR1 for a mysterious reason, defeating the purpose of SIGUSR1
265
# which should be a User-Definable signal as mandated by POSIX. Consequently, userland code that enumerates POSIX signals
266
# hits twice the same value and all is left to solve this problem is to filter either one out. Since SIGINFO, contrarily to SIGUSR1,
267
# is an optional signal, this is the value that will be left out - even if on QNX nobody can actually use SIGUSR1's value.
11 pmbaty 268
backup_and_patch_if_necessary "lldb/source/Host/common/Host.cpp" __QNXNTO__ \
269
        's/defined\(SIGINFO\)/\(defined\(SIGINFO\) \&\& \!defined\(__QNXNTO__\)\)/g'
6 pmbaty 270
 
7 pmbaty 271
# FIXME: another patch is needed for LLDB. Basically, the ptrace() POSIX system call doesn't exist on QNX. Instead
272
# QNX use their own debug utility: pdebug. Note the /proc filesystem can be used to access a debuggee's virtual memory space.
273
# in lldb/source/Host/posix/ProcessLauncherPosixFork.cpp line 196:
274
#   if (ptrace(PT_TRACE_ME, 0, nullptr, 0) == -1) // <--- undefined: ptrace, PT_TRACE_ME
6 pmbaty 275
 
7 pmbaty 276
#    -D LLVM_ENABLE_PROJECTS="clang;lld;lldb" \
6 pmbaty 277
 
7 pmbaty 278
# patch compiler-rt/lib/builtins/enable_execute_stack.c if not done yet
8 pmbaty 279
# replace [#include "int_lib.h"] with [#ifdef __QNXNTO__\n#define _QNX_SOURCE 1\n#endif\n#include "int_lib.h"]
7 pmbaty 280
# RATIONALE: the QNX people decided to hide most of the UNIX APIs of their libc behind a mandatory _QNX_SOURCE definition to separate the Neutrino primitives from the rest maybe.
281
# This name does not "enforce" any standard at all (like _POSIX_SOURCE and similar names), it's just a convenient hack for the QNX people to hide stuff.
282
# To put things back on track and expose the POSIX interfaces of their libc to the world, _QNX_SOURCE has been added to the toolchain CMake file, but it happens that
283
# when building compiler-rt specifically, the CMAKE_C_FLAGS directive is ignored. Patching the source file seems like the best option to fix that.
11 pmbaty 284
backup_and_patch_if_necessary "compiler-rt/lib/builtins/enable_execute_stack.c" __QNXNTO__ \
285
        's/#include "int_lib.h"/#ifdef __QNXNTO__\n#define _QNX_SOURCE 1\n#endif\n#include "int_lib.h"/g'
6 pmbaty 286
 
8 pmbaty 287
# patch libunwind/src/RWMutex.hpp
288
# replace [#include <pthread.h>] with [#ifdef __QNXNTO__\n#define __EXT_QNX\n#define __EXT_POSIX1_200112\n#endif\n#include <pthread.h>]
289
# RATIONALE: the pthreads implementation in QNX 'steals' things from the POSIX.1 standard and hides them behind the __EXT_QNX macro,
290
# which is defined when either _QNX_SOURCE or __EXT without anything else is defined. This is not correct and low-level libraries
291
# such as libunwind that do not define either of those fail to build. Also note that a FreeBSD-compatible header was added to the QNX8
292
# platform SDK: /usr/include/link.h, which defines Elf types as Elf64/Elf32 types depending on the architecture and adds some glue.
11 pmbaty 293
backup_and_patch_if_necessary "libunwind/src/RWMutex.hpp" __QNXNTO__ \
294
        's/#include <pthread.h>/#ifdef __QNXNTO__\n#define __EXT_QNX\n#define __EXT_POSIX1_200112\n#endif\n#include <pthread.h>/g'
8 pmbaty 295
 
10 pmbaty 296
# patch libunwind/src/libunwind.cpp
297
# replace [#include <libunwind.h>] with [#ifdef __QNXNTO__\n#include <sys/link.h>\n#include <link.h>\n#endif\n#include <libunwind.h>]
298
# RATIONALE: the ELF type definitions for QNX are incomplete. They renamed everything to Elf32 and Elf64, and now the original Elf type names point to nowhere.
11 pmbaty 299
# Additionally, since QNX claims to be a "__FreeBSD_kernel__", it must expose a /usr/include/link.h file too, and the workaround for the aforementioned problem is there.
10 pmbaty 300
# Consequently, load the QNX <sys/link.h> THEN our BSD glue <link.h> headers before compiling libunwind.cpp which needs common ELF definitions (and not Elf32/Elf64).
11 pmbaty 301
backup_and_patch_if_necessary "libunwind/src/libunwind.cpp" __QNXNTO__ \
302
        's,#include <libunwind.h>,#ifdef __QNXNTO__\n#include <sys/link.h>\n#include <link.h>\n#endif\n#include <libunwind.h>,g'
10 pmbaty 303
 
11 pmbaty 304
# patch libcxx/include/__config
305
# replace [define _LIBCPP_HAS_THREAD_API_WIN32] with [define _LIBCPP_HAS_THREAD_API_WIN32\n#    elif defined(__QNXNTO__)\n#      define _LIBCPP_HAS_THREAD_API_PTHREAD]
306
# RATIONALE: simply bring QNX among the list of systems known by libc++ to expose a pthreads API, and inform it that pthread_cond_clockwait() is available (pah!)
307
backup_and_patch_if_necessary "libcxx/include/__config" __QNXNTO__ \
308
        's/define _LIBCPP_HAS_THREAD_API_WIN32/define _LIBCPP_HAS_THREAD_API_WIN32\n#    elif defined(__QNXNTO__)\n#      define _LIBCPP_HAS_THREAD_API_PTHREAD\n#      define _LIBCPP_HAS_COND_CLOCKWAIT/g'
309
 
310
# patch libcxx/include/__locale, libcxx/include/CMakeLists.txt and add __support/qnx/xlocale.h to the libc++ source tree
311
# replace [# include <__support/openbsd/xlocale.h>] with [# include <__support/openbsd/xlocale.h>\n#elif defined(__QNXNTO__)\n# include <__support/qnx/xlocale.h>]
312
# RATIONALE: add QNX-specific locale C++ bindings and definitions
313
backup_and_patch_if_necessary "libcxx/include/__locale" __QNXNTO__ \
314
        's,# include <__support/openbsd/xlocale.h>,# include <__support/openbsd/xlocale.h>\n#elif defined\(__QNXNTO__\)\n# include <__support/qnx/xlocale.h>,g' \
315
        's/#elif defined\(__MVS__\)/#elif defined\(__QNXNTO__\)\n    typedef short mask;\n    static const mask space  = \(_CN\|_SP\|_XS\);\n    static const mask print  = \(_DI\|_LO\|_PU\|_SP\|_UP\|_XA\);\n    static const mask cntrl  = _BB;\n    static const mask upper  = _UP;\n    static const mask lower  = _LO;\n    static const mask alpha  = \(_LO\|_UP\|_XA\);\n    static const mask digit  = _DI;\n    static const mask punct  = _PU;\n    static const mask xdigit = _XD;\n    static const mask blank  = \(_SP\|_XB\);\n    static const mask __regex_word = 0x1000;\n#elif defined\(__MVS__\)/g'
316
backup_and_patch_if_necessary "libcxx/include/CMakeLists.txt" qnx/xlocale.h 's,  __support/openbsd/xlocale.h,  __support/openbsd/xlocale.h\n  __support/qnx/xlocale.h,g'
317
test -d "../${LLVM_SOURCES_DIR}/libcxx/include/__support/qnx" || mkdir "../${LLVM_SOURCES_DIR}/libcxx/include/__support/qnx" || exit 1
318
test -f "../${LLVM_SOURCES_DIR}/libcxx/include/__support/qnx/xlocale.h" || cp "${QNX_TARGET}/usr/include/c++/v1/__support/qnx/xlocale.h" "../${LLVM_SOURCES_DIR}/libcxx/include/__support/qnx/xlocale.h" || exit 1
319
 
320
# patch libcxx/include/locale
321
# replace [!defined(__BIONIC__) && !defined(_NEWLIB_VERSION) && !defined(__EMSCRIPTEN__)] with [!defined(__BIONIC__) && !defined(_NEWLIB_VERSION) && !defined(__EMSCRIPTEN__) && !defined(__QNX__)]
322
# RATIONALE: QNX doesn't have catopen() to open a "message catalog"
323
backup_and_patch_if_necessary "libcxx/include/locale" __QNXNTO__ \
324
        's/\!defined\(__BIONIC__\) \&\& \!defined\(_NEWLIB_VERSION\) \&\& \!defined\(__EMSCRIPTEN__\)/\!defined\(__BIONIC__\) \&\& \!defined\(_NEWLIB_VERSION\) \&\& \!defined\(__EMSCRIPTEN__\) \&\& \!defined\(__QNX__\)/g'
325
 
9 pmbaty 326
# now configure LLVM -- and use ccache
11 pmbaty 327
# TAKE NOTE: THE VALUE OF LIBCXX*_ADDITIONAL_COMPILE_FLAGS CAN ONLY HAVE ONE FLAG! It is passed by CMake surrounded by quotes to the compiler, e.g. -Dflag "-Dflag1 -Dflag2" -Dflag which is WRONG.
2 pmbaty 328
echo "Configuring LLVM build..."
9 pmbaty 329
export CCACHE_DIR="$(realpath "../${LLVM_SOURCES_DIR}/.ccache")"
2 pmbaty 330
cmake \
331
    -D CMAKE_TOOLCHAIN_FILE="${TARGET_TRIPLE}.cmake" \
332
    -D CMAKE_BUILD_TYPE="MinSizeRel" \
7 pmbaty 333
    -D CMAKE_INSTALL_PREFIX="/tmp/qnxsdk/host/qnx$(echo "${QNXSDK_VERSION}"|awk -F. '{print $1}')/${BUILD_TARGET_ARCH}" \
2 pmbaty 334
    -D CMAKE_STAGING_PREFIX="/usr/bin" \
9 pmbaty 335
    -D CMAKE_C_COMPILER_LAUNCHER="ccache" \
336
    -D CMAKE_CXX_COMPILER_LAUNCHER="ccache" \
2 pmbaty 337
    -D LLVM_HOST_TRIPLE="${TARGET_TRIPLE}" \
7 pmbaty 338
    -D LLVM_ENABLE_PROJECTS="clang;lld" \
339
    -D LLVM_ENABLE_RUNTIMES="compiler-rt;libcxx;libcxxabi;libunwind" \
2 pmbaty 340
    -D LLVM_TARGETS_TO_BUILD="AArch64;X86" \
8 pmbaty 341
    -D COMPILER_RT_BUILD_SANITIZERS="OFF" \
11 pmbaty 342
    -D LIBCXX_ADDITIONAL_COMPILE_FLAGS="-D_QNX_SOURCE=1" \
343
    -D LIBCXXABI_ADDITIONAL_COMPILE_FLAGS="-D_QNX_SOURCE=1" \
2 pmbaty 344
    -G Ninja \
345
    "../${LLVM_SOURCES_DIR}/llvm" || exit 1
346
 
4 pmbaty 347
# hijack the "bin" and "lib/clang" output directories and redirect them to the hypervisor's filesystem
348
test -e "${CURRENT_DIR}/llvm-build" && rm -rf "${CURRENT_DIR}/llvm-build"
349
mkdir -p "${CURRENT_DIR}/llvm-build"
350
test -d bin && mv bin "${CURRENT_DIR}/llvm-build/bin" || mkdir "${CURRENT_DIR}/llvm-build/bin"
351
ln -s "${CURRENT_DIR}/llvm-build/bin" bin
352
mkdir -p "${CURRENT_DIR}/llvm-build/lib"
353
test -d lib/clang && mv lib/clang "${CURRENT_DIR}/llvm-build/lib/clang" || mkdir "${CURRENT_DIR}/llvm-build/lib/clang"
354
ln -s "${CURRENT_DIR}/llvm-build/lib/clang" lib/clang
355
 
2 pmbaty 356
# and do the Lord's work. https://youtu.be/jcyYmCnkbEE
357
echo "Building LLVM..."
358
cmake --build . || exit 1
359
 
11 pmbaty 360
# TODO: port lldb bindings
361
# TODO: port compiler_rt sanitizer bindings
2 pmbaty 362
echo "Champagne, James. Champagne."
363
exit 0