From e05fa86bbaa9c54fd697bc7b426d1d92adffa083 Mon Sep 17 00:00:00 2001 From: Alexey Neyman Date: Mon, 14 Jan 2019 23:56:40 -0800 Subject: Canonicalize prefix dir and sysroot ... because GCC prints the sysroot with symlinks resolved. Fixes #892. Signed-off-by: Alexey Neyman diff --git a/scripts/build/cc/gcc.sh b/scripts/build/cc/gcc.sh index 64755ab..c6b068c 100644 --- a/scripts/build/cc/gcc.sh +++ b/scripts/build/cc/gcc.sh @@ -765,15 +765,24 @@ do_cc_for_build() { CT_EndStep } -gcc_movelibs() { +gcc_movelibs() +{ local multi_flags multi_dir multi_os_dir multi_os_dir_gcc multi_root multi_index multi_count - local gcc_dir dst_dir + local gcc_dir dst_dir canon_root canon_prefix local rel for arg in "$@"; do eval "${arg// /\\ }" done + # GCC prints the sysroot in canonicalized form, which may be different if there + # is a symlink in the path. Since we need textual match to obtain a relative + # subdirectory path, canonicalize the prefix directory. Since GCC's behavior + # is not documented and hence may change at any time, canonicalize it too just + # for the good measure. + canon_root=$( cd "${multi_root}" && pwd -P ) + canon_prefix=$( cd "${CT_PREFIX_DIR}" && pwd -P ) + # Move only files, directories are for other multilibs. We're looking inside # GCC's directory structure, thus use unmangled multi_os_dir that GCC reports. gcc_dir="${CT_PREFIX_DIR}/${CT_TARGET}/lib/${multi_os_dir_gcc}" @@ -784,9 +793,9 @@ gcc_movelibs() { # Depending on the selected libc, we may or may not have the ${multi_os_dir_gcc} # created by libc installation. If we do, use it. If we don't, use ${multi_os_dir} # to avoid creating an otherwise empty directory. - dst_dir="${multi_root}/lib/${multi_os_dir_gcc}" + dst_dir="${canon_root}/lib/${multi_os_dir_gcc}" if [ ! -d "${dst_dir}" ]; then - dst_dir="${multi_root}/lib/${multi_os_dir}" + dst_dir="${canon_root}/lib/${multi_os_dir}" fi CT_SanitizeVarDir dst_dir gcc_dir rel=$( echo "${gcc_dir#${CT_PREFIX_DIR}/}" | sed 's#[^/]\{1,\}#..#g' ) @@ -802,7 +811,7 @@ gcc_movelibs() { if [ -f "${gcc_dir}/${f}" ]; then CT_DoExecLog ALL mkdir -p "${dst_dir}" CT_DoExecLog ALL mv "${gcc_dir}/${f}" "${dst_dir}/${f}" - CT_DoExecLog ALL ln -sf "${rel}/${dst_dir#${CT_PREFIX_DIR}/}/${f}" "${gcc_dir}/${f}" + CT_DoExecLog ALL ln -sf "${rel}/${dst_dir#${canon_prefix}/}/${f}" "${gcc_dir}/${f}" fi done } -- cgit v0.10.2-6-g49f6 From 92ad0fe0aba39e5a88b20d6f09edd53cd7a76c83 Mon Sep 17 00:00:00 2001 From: Alexey Neyman Date: Mon, 14 Jan 2019 23:58:22 -0800 Subject: Dump how multilib iterator is invoked Signed-off-by: Alexey Neyman diff --git a/scripts/functions b/scripts/functions index 764477b..c97b9f4 100644 --- a/scripts/functions +++ b/scripts/functions @@ -1456,6 +1456,7 @@ CT_IterateMultilibs() { local multi_dir multi_os_dir multi_os_dir_gcc multi_root multi_flags multi_index multi_target local root_suffix local dir_postfix + local v # Name used internally below if [ "${prefix}" = "sysroot-check" ]; then @@ -1547,6 +1548,11 @@ CT_IterateMultilibs() { dir_postfix=_${multi_dir//\//_} dir_postfix=${dir_postfix%_.} CT_mkdir_pushd "${prefix}${dir_postfix}" + CT_DoLog DEBUG "Multilib iterator: call function '${func}' in '${prefix}${dir_postfix}'" + for v in multi_dir multi_os_dir multi_os_dir_gcc multi_flags multi_root multi_target multi_index; do + CT_DoLog DEBUG " ${v}=${!v}" + done + $func multi_dir="${multi_dir}" \ multi_os_dir="${multi_os_dir}" \ multi_os_dir_gcc="${multi_os_dir_gcc}" \ -- cgit v0.10.2-6-g49f6 From b6c5ae2f1740dc4bba02e3f2b4a1c3e5534e7e1f Mon Sep 17 00:00:00 2001 From: Alexey Neyman Date: Mon, 14 Jan 2019 23:58:53 -0800 Subject: Fix building archlinux image `groupadd` now requires libaudit.so, but coreutils can be installed without audit package. Weird, gross. Signed-off-by: Alexey Neyman diff --git a/testing/docker/archlinux/Dockerfile b/testing/docker/archlinux/Dockerfile index 5f2b717..c32402a 100644 --- a/testing/docker/archlinux/Dockerfile +++ b/testing/docker/archlinux/Dockerfile @@ -1,10 +1,10 @@ FROM base/archlinux:latest ARG CTNG_UID ARG CTNG_GID +RUN pacman -Syu --noconfirm +RUN pacman -S --noconfirm base-devel git help2man python unzip wget audit RUN groupadd -g $CTNG_GID ctng RUN useradd -d /home/ctng -m -g $CTNG_GID -u $CTNG_UID -s /bin/bash ctng -RUN pacman -Syu --noconfirm -RUN pacman -S --noconfirm base-devel git help2man python unzip wget RUN wget -O /sbin/dumb-init https://github.com/Yelp/dumb-init/releases/download/v1.2.1/dumb-init_1.2.1_amd64 RUN chmod a+x /sbin/dumb-init RUN echo 'export PATH=/opt/ctng/bin:$PATH' >> /etc/profile -- cgit v0.10.2-6-g49f6