gcc-4.8-arm64-cross-0.11.2/0000775000000000000000000000000012676776333011630 5ustar gcc-4.8-arm64-cross-0.11.2/debian/0000775000000000000000000000000012676776330013047 5ustar gcc-4.8-arm64-cross-0.11.2/debian/rules0000775000000000000000000001545012663550616014125 0ustar #!/usr/bin/make -f GCC_VER := $(shell dpkg-parsechangelog |egrep ^Source:|cut -f2 -d' '|cut -f2 -d'-') ifeq ($(GCC_VER),4.4) MIN_VER_GCC := 4.4.5-15~ PPA_VER_GCC := 4.4.6 endif ifeq ($(GCC_VER),4.5) MIN_VER_GCC := 4.5.2-8~ PPA_VER_GCC := 4.5.3 endif ifeq ($(GCC_VER),4.6) MIN_VER_GCC := 4.6.2-14ubuntu2 PPA_VER_GCC := 4.6.3 endif ifeq ($(GCC_VER),4.7) MIN_VER_GCC := 4.7.2-21ubuntu3 PPA_VER_GCC := 4.7.1 endif ifeq ($(GCC_VER),4.8) MIN_VER_GCC := 4.8.2-13 PPA_VER_GCC := 4.8.2 endif ifndef MIN_VER_GCC MIN_VER_GCC := ${GCC_VER}.0-0~ endif # Linaro toolchain backports PPA support PPA := false # if debian/ppa is present then we do PPA ifneq ($(wildcard debian/ppa),) PPA := true endif DEB_NAME_ACT := $(shell dpkg-parsechangelog| sed -n 's/-*//; s/^Source: \(.*\)/\1/p') DEB_VER_ACT := $(shell dpkg-parsechangelog| sed -n 's/^Version: \(.*\)/\1/p') ifeq ($(PPA),true) VER_GCC := ${PPA_VER_GCC} GCC_DIR := /usr/src/gcc-${GCC_VER}-$(VER_GCC) VER_BINUTILS := 2.23.2-2~ MIN_VER_BINUTILS := 2.23.2 VER_CLOOG := 0.18.0-1~ else VER_GCC := $(shell dpkg-parsechangelog -l/usr/src/gcc-${GCC_VER}/debian/changelog | egrep '^Version:' | cut -f 2 -d ' '|cut -f 1 -d '-') GCC_DIR := /usr/src/gcc-${GCC_VER} VER_BINUTILS := 2.24 MIN_VER_BINUTILS := 2.24 VER_CLOOG := 0.18.0-1~ endif DEB_VER_GCC := $(shell dpkg-parsechangelog -l${GCC_DIR}/debian/changelog | egrep '^Version:' | cut -f 2 -d ' ') CROSS_ARCH := $(shell dpkg-parsechangelog| sed -n 's/-[^-]*//; s/^Source: .*-\(.*\)-.*/\1/p') CROSS_GNU_TYPE := $(shell dpkg-architecture -a${CROSS_ARCH} -qDEB_HOST_GNU_TYPE -f) HOST_ARCH := $(shell dpkg-architecture -qDEB_HOST_ARCH_CPU) HOST_GNU_TYPE := $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) stamp := stamp-dir/ host_archs = amd64 i386 # We build multilib cross compiler now ifeq ($(CROSS_ARCH),armel) EXTRA_BUILD_DEPS += libc6-dev-armhf-cross endif ifeq ($(CROSS_ARCH),armhf) EXTRA_BUILD_DEPS += libc6-dev-armel-cross endif ifeq ($(CROSS_ARCH),powerpc) EXTRA_BUILD_DEPS += libc6-dev-ppc64-powerpc-cross endif ifneq (,$(filter $(CROSS_ARCH),amd64 i386)) PHOBOS_DEP := libphobos-GCC_VER-dev-CROSS_ARCH-cross (= ${gcc:Version}), endif info: @echo "Package name: ${DEB_NAME_ACT} ${DEB_VER_ACT}" @echo @echo "GCC ${GCC_VER} version: ${VER_GCC} ${DEB_VER_GCC}" @echo @echo "Target architecture: ${CROSS_ARCH}" @echo "Target GNU type: ${CROSS_GNU_TYPE}" @echo "Host architecture: ${HOST_ARCH}" @echo "Host GNU type: ${HOST_GNU_TYPE}" $(stamp)init-gcc: @echo START $@ mkdir -p gcc set -ex; \ cd gcc ; \ ln -sf ${GCC_DIR}/gcc-${VER_GCC}.tar.xz gcc-${VER_GCC}.tar.xz ;\ cp -a ${GCC_DIR}/debian/ . ; \ if [ -n "$$(grep -v '^\#' ${CURDIR}/debian/patches/gcc-${GCC_VER}/series)" ]; then \ QUILT_PATCHES=${CURDIR}/debian/patches/gcc-${GCC_VER} quilt push -a ; \ fi; \ echo ${CROSS_ARCH} >debian/target touch $@ $(stamp)build-gcc: $(stamp)init-gcc @echo START $@ # cross build do not do docs so we do not have all build dependencies cd gcc && WITH_SYSROOT=/ PKG_IGNORE_CURRENTLY_BUILDING=1 BACKPORT=false dpkg-buildpackage -b -uc -us -d touch $@ clean: rm -rf gcc tmp rm -f *.*deb *.changes debian/files rm -rf $(stamp) mkdir $(stamp) dh_clean define repack_debs set -x; \ for deb in $1; \ do \ dpkg-deb -x $$deb tmp; \ dpkg-deb -e $$deb tmp/DEBIAN; \ pkgname=`echo $$deb | cut -d'_' -f1`; \ sed -i -e's/^Source:.*/Source: ${DEB_NAME_ACT} (${DEB_VER_ACT})/' tmp/DEBIAN/control; \ sed -i -e "s/${DEB_VER_GCC}/${DEB_VER_GCC}cross${DEB_VER_ACT}/g" tmp/DEBIAN/control ; \ sed -i -e "s/cross${DEB_VER_ACT}cross${DEB_VER_ACT}/cross${DEB_VER_ACT}/g" tmp/DEBIAN/control ; \ if [ -e debian/overrides/$$pkgname ]; then \ mkdir -p tmp/usr/share/lintian/overrides; \ cp debian/overrides/$$pkgname tmp/usr/share/lintian/overrides/; \ fi; \ if [ -e tmp/usr/share/doc/gcc-${GCC_VER}-${CROSS_GNU_TYPE}-base/changelog.Debian.gz ]; then \ mv tmp/usr/share/doc/gcc-${GCC_VER}-${CROSS_GNU_TYPE}-base/changelog.Debian.gz \ tmp/usr/share/doc/gcc-${GCC_VER}-${CROSS_GNU_TYPE}-base/changelog.Debian.gcc-${GCC_VER}.gz; \ gzip -c9 debian/changelog > tmp/usr/share/doc/gcc-${GCC_VER}-${CROSS_GNU_TYPE}-base/changelog.Debian.gz;\ fi ; \ (cd tmp && find usr -type f | xargs -r md5sum >>DEBIAN/md5sums);\ newdeb=`echo $$deb|sed -e "s/\(.*\)_\(.*\)_\(.*\)/\1_\2cross${DEB_VER_ACT}_\3/g"`; \ dpkg-deb -b tmp ../$$newdeb; \ rm -rf tmp/*; \ done endef DEB_LIST_ARCH = *_${HOST_ARCH}.deb DDEB_LIST_ARCH = *${DEB_VER_GCC}_${HOST_ARCH}.ddeb DEB_LIST_ALL = *_all.deb repack-debs-arch: build @echo START $@ $(call repack_debs, ${DEB_LIST_ARCH}) $(call repack_debs, ${DDEB_LIST_ARCH}) rm -f *${DEB_VER_GCC}_${HOST_ARCH}.ddeb if [ -f ../gcc-${GCC_VER}-${CROSS_GNU_TYPE}-dbgsym_${DEB_VER_GCC}cross${DEB_VER_ACT}_${HOST_ARCH}.ddeb ] ; then mv -f ../*.ddeb . ; fi repack-debs-indep: build @echo START $@ $(call repack_debs, ${DEB_LIST_ALL}) build: $(stamp)build-gcc @echo START $@ # why remove the plugin package? rm -f gcc-*-plugin-dev-*.*deb build-arch: build mangle-debian-files-arch build-indep: build mangle-debian-files-indep binary: binary-arch binary-indep binary-arch: build-arch binary-indep: build-indep define generate_debian_files for deb in $1; \ do \ echo -n "`basename $$deb` " >>debian/files; \ dpkg-deb -I $$deb | grep Section | cut -d ' ' -f 3 | tr "\n" ' ' >>debian/files; \ dpkg-deb -I $$deb | grep Priority | cut -d ' ' -f 3 | tr -d "\n" >>debian/files; \ echo "" >>debian/files; \ done endef mangle-debian-files-arch: $(stamp)debian-files-base build repack-debs-arch @echo START $@ $(call generate_debian_files, ${DEB_LIST_ARCH}) sed -i -e "s/${DEB_VER_GCC}_/${DEB_VER_GCC}cross${DEB_VER_ACT}_/g" debian/files mangle-debian-files-indep: $(stamp)debian-files-base repack-debs-indep @echo START $@ $(call generate_debian_files, ${DEB_LIST_ALL}) sed -i -e "s/${DEB_VER_GCC}_/${DEB_VER_GCC}cross${DEB_VER_ACT}_/g" debian/files $(stamp)debian-files-base: @echo START $@ rm -f debian/files touch $@ control: sed -e "s/CROSS_ARCH/${CROSS_ARCH}/g" \ -e "s/CROSS_GNU_TYPE/${CROSS_GNU_TYPE}/g" \ -e "s/MIN_VER_GCC/${MIN_VER_GCC}/g" \ -e "s/EXTRA_BUILD_DEPS/${EXTRA_BUILD_DEPS}/g" \ -e "s/GCC_VER/${GCC_VER}/g" \ -e "s/MIN_VER_BINUTILS/${MIN_VER_BINUTILS}/g" \ -e "s/VER_BINUTILS/${VER_BINUTILS}/g" \ -e "s/VER_CLOOG/${VER_CLOOG}/g" \ -e "s/@host_archs@/${host_archs}/g" \ -e "s/PHOBOS_DEP/${PHOBOS_DEP}/g" \ $(CURDIR)/debian/control.in >$(CURDIR)/debian/control ifeq ($(PPA),true) sed \ -e "s/gcc-${GCC_VER}-source/gcc-${GCC_VER}-${VER_GCC}-source/g" \ -i $(CURDIR)/debian/control endif gcc-4.8-arm64-cross-0.11.2/debian/overrides/0000775000000000000000000000000012052771604015034 5ustar gcc-4.8-arm64-cross-0.11.2/debian/overrides/libsfstdc++6-4.6-dbg-armhf-cross0000664000000000000000000000142112052417757022435 0ustar libsfstdc++6-4.6-dbg-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/arm-linux-gnueabihfhf/debug/libstdc++.a libsfstdc++6-4.6-dbg-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/arm-linux-gnueabihfhf/debug/libstdc++.so.6.0.16 libsfstdc++6-4.6-dbg-armhf-cross: unstripped-binary-or-object usr/arm-linux-gnueabihf/lib/arm-linux-gnueabihfhf/debug/libstdc++.so.6.0.16 libsfstdc++6-4.6-dbg-armhf-cross: arch-independent-package-contains-binary-or-object usr/lib/debug/usr/arm-linux-gnueabihf/lib/arm-linux-gnueabihfhf/libstdc++.so.6 libsfstdc++6-4.6-dbg-armhf-cross: arch-independent-package-contains-binary-or-object usr/lib/debug/usr/arm-linux-gnueabihf/lib/arm-linux-gnueabihfhf/libstdc++.so.6.0.16 gcc-4.8-arm64-cross-0.11.2/debian/overrides/libsfobjc3-armhf-cross0000664000000000000000000000043712052417757021233 0ustar libsfobjc3-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/arm-linux-gnueabihfhf/libobjc.so.3.0.0 libsfobjc3-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/arm-linux-gnueabihfhf/libobjc_gc.so.3.0.0 gcc-4.8-arm64-cross-0.11.2/debian/overrides/libstdc++6-armhf-cross0000664000000000000000000000017312052417757021050 0ustar libstdc++6-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/libstdc++.so.6.0.17 gcc-4.8-arm64-cross-0.11.2/debian/overrides/libobjc3-dbg-armhf-cross0000664000000000000000000000042312052417757021427 0ustar libobjc3-dbg-armhf-cross: arch-independent-package-contains-binary-or-object usr/lib/debug/usr/arm-linux-gnueabihf/lib/libobjc.so.3.0.0 libobjc3-dbg-armhf-cross: arch-independent-package-contains-binary-or-object usr/lib/debug/usr/arm-linux-gnueabihf/lib/libobjc_gc.so.3.0.0 gcc-4.8-arm64-cross-0.11.2/debian/overrides/libsfgfortran3-armhf-cross0000664000000000000000000000042612052417757022136 0ustar libsfgfortran3-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/arm-linux-gnueabi/libgfortran.so.3.0.0 libsfgfortran3-armhf-cross: missing-dependency-on-libc needed by usr/arm-linux-gnueabihf/lib/arm-linux-gnueabi/libgfortran.so.3.0.0 gcc-4.8-arm64-cross-0.11.2/debian/overrides/libsfgcc1-dbg-armhf-cross0000664000000000000000000000023012052417757021571 0ustar libsfgcc1-dbg-armhf-cross: arch-independent-package-contains-binary-or-object usr/lib/debug/usr/arm-linux-gnueabihf/lib/arm-linux-gnueabi/libgcc_s.so.1 gcc-4.8-arm64-cross-0.11.2/debian/overrides/libmudflap0-4.7-dev-armhf-cross0000664000000000000000000000103612052417757022470 0ustar libmudflap0-4.7-dev-armhf-cross: arch-independent-package-contains-binary-or-object usr/lib/gcc/arm-linux-gnueabihf/4.7/libmudflap.a libmudflap0-4.7-dev-armhf-cross: arch-independent-package-contains-binary-or-object usr/lib/gcc/arm-linux-gnueabihf/4.7/libmudflapth.a libmudflap0-4.7-dev-armhf-cross: arch-independent-package-contains-binary-or-object usr/lib/gcc/arm-linux-gnueabihf/4.7/sf/libmudflap.a libmudflap0-4.7-dev-armhf-cross: arch-independent-package-contains-binary-or-object usr/lib/gcc/arm-linux-gnueabihf/4.7/sf/libmudflapth.a gcc-4.8-arm64-cross-0.11.2/debian/overrides/libgfortran3-armhf-cross0000664000000000000000000000035612052417756021606 0ustar libgfortran3-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/libgfortran.so.3.0.0 libgfortran3-armhf-cross: missing-dependency-on-libc needed by usr/arm-linux-gnueabihf/lib/libgfortran.so.3.0.0 gcc-4.8-arm64-cross-0.11.2/debian/overrides/libsfgcc1-armhf-cross0000664000000000000000000000037612052417757021052 0ustar libsfgcc1-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/arm-linux-gnueabi/libgcc_s.so.1 libsfgcc1-armhf-cross: missing-dependency-on-libc needed by usr/arm-linux-gnueabihf/lib/arm-linux-gnueabi/libgcc_s.so.1 gcc-4.8-arm64-cross-0.11.2/debian/overrides/libstdc++6-4.7-pic-armhf-cross0000664000000000000000000000020712052417757022125 0ustar libstdc++6-4.7-pic-armhf-cross: arch-independent-package-contains-binary-or-object usr/lib/gcc/arm-linux-gnueabihf/4.7/libstdc++_pic.a gcc-4.8-arm64-cross-0.11.2/debian/overrides/libsfobjc3-dbg-armhf-cross0000664000000000000000000000050312052417757021757 0ustar libsfobjc3-dbg-armhf-cross: arch-independent-package-contains-binary-or-object usr/lib/debug/usr/arm-linux-gnueabihf/lib/arm-linux-gnueabihfhf/libobjc.so.3.0.0 libsfobjc3-dbg-armhf-cross: arch-independent-package-contains-binary-or-object usr/lib/debug/usr/arm-linux-gnueabihf/lib/arm-linux-gnueabihfhf/libobjc_gc.so.3.0.0 gcc-4.8-arm64-cross-0.11.2/debian/overrides/libobjc4-armhf-cross0000664000000000000000000000054412052417757020702 0ustar libobjc4-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/libobjc.so.4.0.0 libobjc4-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/libobjc_gc.so.4.0.0 libobjc4-armhf-cross: missing-dependency-on-libc needed by usr/arm-linux-gnueabihf/lib/libobjc.so.4.0.0 and 1 others gcc-4.8-arm64-cross-0.11.2/debian/overrides/libsfobjc4-dbg-armhf-cross0000664000000000000000000000047312052417757021766 0ustar libsfobjc4-dbg-armhf-cross: arch-independent-package-contains-binary-or-object usr/lib/debug/usr/arm-linux-gnueabihf/lib/arm-linux-gnueabi/libobjc.so.4.0.0 libsfobjc4-dbg-armhf-cross: arch-independent-package-contains-binary-or-object usr/lib/debug/usr/arm-linux-gnueabihf/lib/arm-linux-gnueabi/libobjc_gc.so.4.0.0 gcc-4.8-arm64-cross-0.11.2/debian/overrides/libstdc++6-4.7-dbg-armhf-cross0000664000000000000000000000102612052417757022106 0ustar libstdc++6-4.7-dbg-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/debug/libstdc++.a libstdc++6-4.7-dbg-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/debug/libstdc++.so.6.0.17 libstdc++6-4.7-dbg-armhf-cross: arch-independent-package-contains-binary-or-object usr/lib/debug/usr/arm-linux-gnueabihf/lib/libstdc++.so.6.0.17 libstdc++6-4.7-dbg-armhf-cross: missing-dependency-on-libc needed by usr/arm-linux-gnueabihf/lib/debug/libstdc++.so.6.0.17 gcc-4.8-arm64-cross-0.11.2/debian/overrides/libsfgomp1-dbg-armhf-cross0000664000000000000000000000023412052417757022003 0ustar libsfgomp1-dbg-armhf-cross: arch-independent-package-contains-binary-or-object usr/lib/debug/usr/arm-linux-gnueabihf/lib/arm-linux-gnueabi/libgomp.so.1.0.0 gcc-4.8-arm64-cross-0.11.2/debian/overrides/libgo0-armhf-cross0000664000000000000000000004045612052417756020373 0ustar libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/archive/tar.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/archive/zip.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/bufio.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/bytes.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/compress/bzip2.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/compress/flate.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/compress/gzip.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/compress/lzw.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/compress/zlib.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/container/heap.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/container/list.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/container/ring.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/crypto.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/crypto/aes.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/crypto/cipher.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/crypto/des.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/crypto/dsa.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/crypto/ecdsa.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/crypto/elliptic.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/crypto/hmac.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/crypto/md5.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/crypto/rand.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/crypto/rc4.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/crypto/rsa.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/crypto/sha1.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/crypto/sha256.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/crypto/sha512.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/crypto/subtle.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/crypto/tls.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/crypto/x509.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/crypto/x509/pkix.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/database/sql.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/database/sql/driver.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/debug/dwarf.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/debug/elf.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/debug/gosym.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/debug/macho.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/debug/pe.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/encoding/ascii85.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/encoding/asn1.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/encoding/base32.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/encoding/base64.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/encoding/binary.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/encoding/csv.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/encoding/gob.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/encoding/hex.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/encoding/json.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/encoding/pem.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/encoding/xml.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/errors.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/exp/ebnf.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/exp/html.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/exp/norm.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/exp/proxy.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/exp/terminal.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/exp/types.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/exp/utf8string.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/expvar.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/flag.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/fmt.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/go/ast.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/go/build.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/go/doc.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/go/parser.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/go/printer.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/go/scanner.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/go/token.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/hash.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/hash/adler32.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/hash/crc32.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/hash/crc64.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/hash/fnv.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/html.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/html/template.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/image.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/image/color.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/image/draw.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/image/gif.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/image/jpeg.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/image/png.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/index/suffixarray.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/io.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/io/ioutil.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/log.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/log/syslog.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/math.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/math/big.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/math/cmplx.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/math/rand.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/mime.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/mime/multipart.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/net.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/net/http.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/net/http/cgi.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/net/http/fcgi.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/net/http/httptest.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/net/http/httputil.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/net/http/pprof.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/net/mail.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/net/rpc.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/net/rpc/jsonrpc.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/net/smtp.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/net/textproto.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/net/url.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/old/netchan.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/old/regexp.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/old/template.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/os.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/os/exec.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/os/signal.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/os/user.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/path.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/path/filepath.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/reflect.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/regexp.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/regexp/syntax.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/runtime.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/runtime/debug.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/runtime/pprof.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/sort.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/strconv.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/strings.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/sync.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/sync/atomic.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/syscall.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/testing.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/testing/iotest.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/testing/quick.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/text/scanner.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/text/tabwriter.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/text/template.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/text/template/parse.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/time.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/unicode.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/unicode/utf16.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/go/4.7/unicode/utf8.gox libgo0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/libgo.so.0.0.0 libgo0-armhf-cross: missing-dependency-on-libc needed by usr/arm-linux-gnueabihf/lib/libgo.so.0.0.0 gcc-4.8-arm64-cross-0.11.2/debian/overrides/libobjc4-dbg-armhf-cross0000664000000000000000000000042312052417757021430 0ustar libobjc4-dbg-armhf-cross: arch-independent-package-contains-binary-or-object usr/lib/debug/usr/arm-linux-gnueabihf/lib/libobjc.so.4.0.0 libobjc4-dbg-armhf-cross: arch-independent-package-contains-binary-or-object usr/lib/debug/usr/arm-linux-gnueabihf/lib/libobjc_gc.so.4.0.0 gcc-4.8-arm64-cross-0.11.2/debian/overrides/libsfmudflap0-armhf-cross0000664000000000000000000000066112052417757021742 0ustar libsfmudflap0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/arm-linux-gnueabi/libmudflap.so.0.0.0 libsfmudflap0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/arm-linux-gnueabi/libmudflapth.so.0.0.0 libsfmudflap0-armhf-cross: missing-dependency-on-libc needed by usr/arm-linux-gnueabihf/lib/arm-linux-gnueabi/libmudflap.so.0.0.0 and 1 others gcc-4.8-arm64-cross-0.11.2/debian/overrides/gcc-4.6-arm-linux-gnueabihf0000664000000000000000000000102612052417756021664 0ustar gcc-4.6-arm-linux-gnueabihf: binary-from-other-architecture usr/lib/gcc/arm-linux-gnueabihf/4.6/crtbegin.o gcc-4.6-arm-linux-gnueabihf: binary-from-other-architecture usr/lib/gcc/arm-linux-gnueabihf/4.6/crtbeginS.o gcc-4.6-arm-linux-gnueabihf: binary-from-other-architecture usr/lib/gcc/arm-linux-gnueabihf/4.6/crtbeginT.o gcc-4.6-arm-linux-gnueabihf: binary-from-other-architecture usr/lib/gcc/arm-linux-gnueabihf/4.6/crtend.o gcc-4.6-arm-linux-gnueabihf: binary-from-other-architecture usr/lib/gcc/arm-linux-gnueabihf/4.6/crtendS.o gcc-4.8-arm64-cross-0.11.2/debian/overrides/libmudflap0-armhf-cross0000664000000000000000000000056512052417757021414 0ustar libmudflap0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/libmudflap.so.0.0.0 libmudflap0-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/libmudflapth.so.0.0.0 libmudflap0-armhf-cross: missing-dependency-on-libc needed by usr/arm-linux-gnueabihf/lib/libmudflap.so.0.0.0 and 1 others gcc-4.8-arm64-cross-0.11.2/debian/overrides/libmudflap0-4.6-dev-armhf-cross0000664000000000000000000000103612052417756022466 0ustar libmudflap0-4.6-dev-armhf-cross: arch-independent-package-contains-binary-or-object usr/lib/gcc/arm-linux-gnueabihf/4.6/hf/libmudflap.a libmudflap0-4.6-dev-armhf-cross: arch-independent-package-contains-binary-or-object usr/lib/gcc/arm-linux-gnueabihf/4.6/hf/libmudflapth.a libmudflap0-4.6-dev-armhf-cross: arch-independent-package-contains-binary-or-object usr/lib/gcc/arm-linux-gnueabihf/4.6/libmudflap.a libmudflap0-4.6-dev-armhf-cross: arch-independent-package-contains-binary-or-object usr/lib/gcc/arm-linux-gnueabihf/4.6/libmudflapth.a gcc-4.8-arm64-cross-0.11.2/debian/overrides/libmudflap0-dbg-armhf-cross0000664000000000000000000000043612052417757022143 0ustar libmudflap0-dbg-armhf-cross: arch-independent-package-contains-binary-or-object usr/lib/debug/usr/arm-linux-gnueabihf/lib/libmudflap.so.0.0.0 libmudflap0-dbg-armhf-cross: arch-independent-package-contains-binary-or-object usr/lib/debug/usr/arm-linux-gnueabihf/lib/libmudflapth.so.0.0.0 gcc-4.8-arm64-cross-0.11.2/debian/overrides/libgo0-dbg-armhf-cross0000664000000000000000000000020412052417756021110 0ustar libgo0-dbg-armhf-cross: arch-independent-package-contains-binary-or-object usr/lib/debug/usr/arm-linux-gnueabihf/lib/libgo.so.0.0.0 gcc-4.8-arm64-cross-0.11.2/debian/overrides/libstdc++6-4.6-dev-armhf-cross0000664000000000000000000000040612052417757022130 0ustar libstdc++6-4.6-dev-armhf-cross: arch-independent-package-contains-binary-or-object usr/lib/gcc/arm-linux-gnueabihf/4.6/libstdc++.a libstdc++6-4.6-dev-armhf-cross: arch-independent-package-contains-binary-or-object usr/lib/gcc/arm-linux-gnueabihf/4.6/libsupc++.a gcc-4.8-arm64-cross-0.11.2/debian/overrides/libobjc3-armhf-cross0000664000000000000000000000035712052417757020703 0ustar libobjc3-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/libobjc.so.3.0.0 libobjc3-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/libobjc_gc.so.3.0.0 gcc-4.8-arm64-cross-0.11.2/debian/overrides/libsfmudflap0-dbg-armhf-cross0000664000000000000000000000050612052417757022472 0ustar libsfmudflap0-dbg-armhf-cross: arch-independent-package-contains-binary-or-object usr/lib/debug/usr/arm-linux-gnueabihf/lib/arm-linux-gnueabi/libmudflap.so.0.0.0 libsfmudflap0-dbg-armhf-cross: arch-independent-package-contains-binary-or-object usr/lib/debug/usr/arm-linux-gnueabihf/lib/arm-linux-gnueabi/libmudflapth.so.0.0.0 gcc-4.8-arm64-cross-0.11.2/debian/overrides/libgfortran3-dbg-armhf-cross0000664000000000000000000000022012052417756022326 0ustar libgfortran3-dbg-armhf-cross: arch-independent-package-contains-binary-or-object usr/lib/debug/usr/arm-linux-gnueabihf/lib/libgfortran.so.3.0.0 gcc-4.8-arm64-cross-0.11.2/debian/overrides/libsfstdc++6-4.7-dbg-armhf-cross0000664000000000000000000000135412052417757022443 0ustar libsfstdc++6-4.7-dbg-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/arm-linux-gnueabi/debug/libstdc++.a libsfstdc++6-4.7-dbg-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/arm-linux-gnueabi/debug/libstdc++.so.6.0.17 libsfstdc++6-4.7-dbg-armhf-cross: unstripped-binary-or-object usr/arm-linux-gnueabihf/lib/arm-linux-gnueabi/debug/libstdc++.so.6.0.17 libsfstdc++6-4.7-dbg-armhf-cross: arch-independent-package-contains-binary-or-object usr/lib/debug/usr/arm-linux-gnueabihf/lib/arm-linux-gnueabi/libstdc++.so.6.0.17 libsfstdc++6-4.7-dbg-armhf-cross: missing-dependency-on-libc needed by usr/arm-linux-gnueabihf/lib/arm-linux-gnueabi/debug/libstdc++.so.6.0.17 gcc-4.8-arm64-cross-0.11.2/debian/overrides/gcc-4.7-arm-linux-gnueabihf0000664000000000000000000000102612052417756021665 0ustar gcc-4.7-arm-linux-gnueabihf: binary-from-other-architecture usr/lib/gcc/arm-linux-gnueabihf/4.7/crtbegin.o gcc-4.7-arm-linux-gnueabihf: binary-from-other-architecture usr/lib/gcc/arm-linux-gnueabihf/4.7/crtbeginS.o gcc-4.7-arm-linux-gnueabihf: binary-from-other-architecture usr/lib/gcc/arm-linux-gnueabihf/4.7/crtbeginT.o gcc-4.7-arm-linux-gnueabihf: binary-from-other-architecture usr/lib/gcc/arm-linux-gnueabihf/4.7/crtend.o gcc-4.7-arm-linux-gnueabihf: binary-from-other-architecture usr/lib/gcc/arm-linux-gnueabihf/4.7/crtendS.o gcc-4.8-arm64-cross-0.11.2/debian/overrides/libsfstdc++6-armhf-cross0000664000000000000000000000042012052417757021374 0ustar libsfstdc++6-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/arm-linux-gnueabi/libstdc++.so.6.0.17 libsfstdc++6-armhf-cross: missing-dependency-on-libc needed by usr/arm-linux-gnueabihf/lib/arm-linux-gnueabi/libstdc++.so.6.0.17 gcc-4.8-arm64-cross-0.11.2/debian/overrides/libstdc++6-4.7-dev-armhf-cross0000664000000000000000000000040612052417757022131 0ustar libstdc++6-4.7-dev-armhf-cross: arch-independent-package-contains-binary-or-object usr/lib/gcc/arm-linux-gnueabihf/4.7/libstdc++.a libstdc++6-4.7-dev-armhf-cross: arch-independent-package-contains-binary-or-object usr/lib/gcc/arm-linux-gnueabihf/4.7/libsupc++.a gcc-4.8-arm64-cross-0.11.2/debian/overrides/libgomp1-dbg-armhf-cross0000664000000000000000000000021012052417756021443 0ustar libgomp1-dbg-armhf-cross: arch-independent-package-contains-binary-or-object usr/lib/debug/usr/arm-linux-gnueabihf/lib/libgomp.so.1.0.0 gcc-4.8-arm64-cross-0.11.2/debian/overrides/libstdc++6-4.6-pic-armhf-cross0000664000000000000000000000020712052417757022124 0ustar libstdc++6-4.6-pic-armhf-cross: arch-independent-package-contains-binary-or-object usr/lib/gcc/arm-linux-gnueabihf/4.6/libstdc++_pic.a gcc-4.8-arm64-cross-0.11.2/debian/overrides/cpp-4.6-arm-linux-gnueabihf0000664000000000000000000000032612052417756021714 0ustar cpp-4.6-arm-linux-gnueabihf: triplet-dir-and-architecture-mismatch lib/arm-linux-gnueabihf/ is for armhf cpp-4.6-arm-linux-gnueabihf: triplet-dir-and-architecture-mismatch usr/lib/arm-linux-gnueabihf/ is for armhf gcc-4.8-arm64-cross-0.11.2/debian/overrides/libstdc++6-4.6-dbg-armhf-cross0000664000000000000000000000104712052417757022110 0ustar libstdc++6-4.6-dbg-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/debug/libstdc++.a libstdc++6-4.6-dbg-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/debug/libstdc++.so.6.0.16 libstdc++6-4.6-dbg-armhf-cross: arch-independent-package-contains-binary-or-object usr/lib/debug/usr/arm-linux-gnueabihf/lib/libstdc++.so.6 libstdc++6-4.6-dbg-armhf-cross: arch-independent-package-contains-binary-or-object usr/lib/debug/usr/arm-linux-gnueabihf/lib/libstdc++.so.6.0.16 gcc-4.8-arm64-cross-0.11.2/debian/overrides/libsfobjc4-armhf-cross0000664000000000000000000000064012052417757021230 0ustar libsfobjc4-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/arm-linux-gnueabi/libobjc.so.4.0.0 libsfobjc4-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/arm-linux-gnueabi/libobjc_gc.so.4.0.0 libsfobjc4-armhf-cross: missing-dependency-on-libc needed by usr/arm-linux-gnueabihf/lib/arm-linux-gnueabi/libobjc.so.4.0.0 and 1 others gcc-4.8-arm64-cross-0.11.2/debian/overrides/libsfgomp1-armhf-cross0000664000000000000000000000040612052417757021252 0ustar libsfgomp1-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/arm-linux-gnueabi/libgomp.so.1.0.0 libsfgomp1-armhf-cross: missing-dependency-on-libc needed by usr/arm-linux-gnueabihf/lib/arm-linux-gnueabi/libgomp.so.1.0.0 gcc-4.8-arm64-cross-0.11.2/debian/overrides/libgomp1-armhf-cross0000664000000000000000000000033612052417756020722 0ustar libgomp1-armhf-cross: arch-independent-package-contains-binary-or-object usr/arm-linux-gnueabihf/lib/libgomp.so.1.0.0 libgomp1-armhf-cross: missing-dependency-on-libc needed by usr/arm-linux-gnueabihf/lib/libgomp.so.1.0.0 gcc-4.8-arm64-cross-0.11.2/debian/overrides/libsfgfortran3-dbg-armhf-cross0000664000000000000000000000024412052417757022666 0ustar libsfgfortran3-dbg-armhf-cross: arch-independent-package-contains-binary-or-object usr/lib/debug/usr/arm-linux-gnueabihf/lib/arm-linux-gnueabi/libgfortran.so.3.0.0 gcc-4.8-arm64-cross-0.11.2/debian/overrides/gcc-4.6-multilib-arm-linux-gnueabihf0000664000000000000000000000112212052417756023500 0ustar gcc-4.6-multilib-arm-linux-gnueabihf: binary-from-other-architecture usr/lib/gcc/arm-linux-gnueabihf/4.6/sf/crtbegin.o gcc-4.6-multilib-arm-linux-gnueabihf: binary-from-other-architecture usr/lib/gcc/arm-linux-gnueabihf/4.6/sf/crtbeginS.o gcc-4.6-multilib-arm-linux-gnueabihf: binary-from-other-architecture usr/lib/gcc/arm-linux-gnueabihf/4.6/sf/crtbeginT.o gcc-4.6-multilib-arm-linux-gnueabihf: binary-from-other-architecture usr/lib/gcc/arm-linux-gnueabihf/4.6/sf/crtend.o gcc-4.6-multilib-arm-linux-gnueabihf: binary-from-other-architecture usr/lib/gcc/arm-linux-gnueabihf/4.6/sf/crtendS.o gcc-4.8-arm64-cross-0.11.2/debian/source/0000775000000000000000000000000012041714257014331 5ustar gcc-4.8-arm64-cross-0.11.2/debian/source/format0000664000000000000000000000001512041714257015540 0ustar 3.0 (native) gcc-4.8-arm64-cross-0.11.2/debian/copyright0000664000000000000000000002633312052417756015001 0ustar This package was made by Marcin Juszkiewicz . (C) 2010 Linaro Limited These scripts are free software; you can redistribute it and/or modify it under the terms of the Eclipse Public License v1.0. Eclipse Public License - v 1.0 THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. 1. DEFINITIONS "Contribution" means: a) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and b) in the case of each subsequent Contributor: i) changes to the Program, and ii) additions to the Program; where such changes and/or additions to the Program originate from and are distributed by that particular Contributor. A Contribution 'originates' from a Contributor if it was added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include additions to the Program which: (i) are separate modules of software distributed in conjunction with the Program under their own license agreement, and (ii) are not derivative works of the Program. "Contributor" means any person or entity that distributes the Program. "Licensed Patents" mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program. "Program" means the Contributions distributed in accordance with this Agreement. "Recipient" means anyone who receives the Program under this Agreement, including all Contributors. 2. GRANT OF RIGHTS a) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, distribute and sublicense the Contribution of such Contributor, if any, and such derivative works, in source code and object code form. b) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in source code and object code form. This patent license shall apply to the combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder. c) Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow Recipient to distribute the Program, it is Recipient's responsibility to acquire that license before distributing the Program. d) Each Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the copyright license set forth in this Agreement. 3. REQUIREMENTS A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that: a) it complies with the terms and conditions of this Agreement; and b) its license agreement: i) effectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose; ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits; iii) states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and iv) states that source code for the Program is available from such Contributor, and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange. When the Program is made available in source code form: a) it must be made available under this Agreement; and b) a copy of this Agreement must be included with each copy of the Program. Contributors may not remove or alter any copyright notices contained within the Program. Each Contributor must identify itself as the originator of its Contribution, if any, in a manner that reasonably allows subsequent Recipients to identify the originator of the Contribution. 4. COMMERCIAL DISTRIBUTION Commercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor ("Commercial Contributor") hereby agrees to defend and indemnify every other Contributor ("Indemnified Contributor") against any losses, damages and costs (collectively "Losses") arising from claims, lawsuits and other legal actions brought by a third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in connection with its distribution of the Program in a commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify, an Indemnified Contributor must: a) promptly notify the Commercial Contributor in writing of such claim, and b) allow the Commercial Contributor to control, and cooperate with the Commercial Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor may participate in any such claim at its own expense. For example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor's responsibility alone. Under this section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other Contributor to pay any damages as a result, the Commercial Contributor must pay those damages. 5. NO WARRANTY EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this Agreement , including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations. 6. DISCLAIMER OF LIABILITY EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 7. GENERAL If any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. If Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed. All Recipient's rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and survive. Everyone is permitted to copy and distribute copies of this Agreement, but in order to avoid inconsistency the Agreement is copyrighted and may only be modified in the following manner. The Agreement Steward reserves the right to publish new versions (including revisions) of this Agreement from time to time. No one other than the Agreement Steward has the right to modify this Agreement. The Eclipse Foundation is the initial Agreement Steward. The Eclipse Foundation may assign the responsibility to serve as the Agreement Steward to a suitable separate entity. Each new version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to distribute the Program (including its Contributions) under the new version. Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved. This Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation. gcc-4.8-arm64-cross-0.11.2/debian/patches/0000775000000000000000000000000012153635025014457 5ustar gcc-4.8-arm64-cross-0.11.2/debian/patches/series0000664000000000000000000000002312052417757015677 0ustar # just for lintian gcc-4.8-arm64-cross-0.11.2/debian/patches/gcc-4.8/0000775000000000000000000000000012676775322015541 5ustar gcc-4.8-arm64-cross-0.11.2/debian/patches/gcc-4.8/series0000664000000000000000000000003612676774067016762 0ustar # empty file no-pp-files.diff gcc-4.8-arm64-cross-0.11.2/debian/patches/gcc-4.8/no-pp-files.diff0000664000000000000000000000104212676775322020521 0ustar --- gcc/debian/rules.d/binary-libstdcxx.mk +++ gcc/debian/rules.d/binary-libstdcxx.mk @@ -183,12 +183,12 @@ $(usr_lib$(2)) \ $(PF)/share/gdb/auto-load/$(usr_lib$(2)) - $(if $(2),, + $(if $(DEB_CROSS),,$(if $(2),, dh_installdirs -p$(p_l) \ $(PF)/share/gcc-$(BASE_VERSION)/python DH_COMPAT=2 dh_movefiles -p$(p_l) \ $(PF)/share/gcc-$(BASE_VERSION)/python/libstdcxx - ) + )) cp -p $(d)/$(usr_lib$(2))/libstdc++.so.*.py \ $(d_l)/$(PF)/share/gdb/auto-load/$(usr_lib$(2))/. sed -i -e "/^libdir *=/s,=.*,= '/$(usr_lib$(2))'," \ gcc-4.8-arm64-cross-0.11.2/debian/compat0000664000000000000000000000000212074335331014225 0ustar 5 gcc-4.8-arm64-cross-0.11.2/debian/control0000664000000000000000000027564612264740027014461 0ustar Source: gcc-4.8-arm64-cross Section: devel Priority: extra Maintainer: Ubuntu Core developers Standards-Version: 3.9.4 Vcs-bzr: lp:ubuntu/gcc-4.8-arm64-cross Build-Depends: gcc-4.8-source (>= 4.8.2-13), binutils-multiarch (>= 2.24), autoconf2.64, autogen, binutils-aarch64-linux-gnu (>= 2.24), bison (>= 1:2.3), chrpath, debhelper (>= 5.0.62), dpkg-dev (>= 1.14.15), flex, gawk, gettext, gperf (>= 3.0.1), libc6-dev-arm64-cross (>= 2.13-20ubuntu10), , libcloog-isl-dev (>= 0.18.0-1~), libmpc-dev, libmpfr-dev (>= 2.3.0), libtool, lsb-release, m4, make (>= 3.81), patchutils, procps, quilt, realpath (>= 1.9.12), sharutils, texinfo (>= 4.3), gcj-4.8-jdk, xz-utils, zlib1g-dev Homepage: http://gcc.gnu.org/ Package: gcc-4.8-aarch64-linux-gnu-base Architecture: amd64 i386 Section: devel Priority: extra Depends: ${misc:Depends} Description: GCC, the GNU Compiler Collection (base package) This package contains files common to all languages and libraries contained in the GNU Compiler Collection (GCC). Package: libgcc1-arm64-cross Architecture: all Section: devel Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${shlibs:Depends}, ${misc:Depends} Provides: libgcc1-arm64-dcv1 Description: GCC support library Shared version of the support library, a library of internal subroutines that GCC uses to overcome shortcomings of particular machines, or special needs for some languages. . This package contains files for arm64 architecture, for use in cross-compile environment. Package: libgcc-4.8-dev-arm64-cross Architecture: all Section: libdevel Priority: optional Recommends: ${dep:libcdev} Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libgcc}, ${dep:libssp}, ${dep:libgomp}, ${dep:libitm}, ${dep:libatomic}, ${dep:libbtrace}, ${dep:libasan}, ${dep:libtsan}, ${dep:libqmath}, ${dep:libunwinddev}, ${shlibs:Depends}, ${misc:Depends} Replaces: gcc-4.8 (<< ${gcc:SplitVersion}) Description: GCC support library (development files) This package contains the headers and static library files necessary for building C programs which use libgcc, libgomp, libquadmath, libssp or libitm. Package: libgcc1-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libgcc1-arm64-cross (= ${gcc:EpochVersion}), ${misc:Depends} Description: GCC support library (debug symbols) Debug symbols for the GCC support library. . This package contains files for arm64 architecture, for use in cross-compile environment. Package: libgcc2-arm64-cross Architecture: all Section: devel Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${shlibs:Depends}, ${misc:Depends} Provides: libgcc2-arm64-dcv1 Description: GCC support library Shared version of the support library, a library of internal subroutines that GCC uses to overcome shortcomings of particular machines, or special needs for some languages. . This package contains files for arm64 architecture, for use in cross-compile environment. Package: libgcc2-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libgcc2-arm64-cross (= ${gcc:Version}), ${misc:Depends} Description: GCC support library (debug symbols) Debug symbols for the GCC support library. . This package contains files for arm64 architecture, for use in cross-compile environment. Package: libgcc4-arm64-cross Architecture: all Section: devel Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${shlibs:Depends}, ${misc:Depends} Description: GCC support library Shared version of the support library, a library of internal subroutines that GCC uses to overcome shortcomings of particular machines, or special needs for some languages. . This package contains files for arm64 architecture, for use in cross-compile environment. Package: libgcc4-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libgcc4-arm64-cross (= ${gcc:Version}), ${misc:Depends} Description: GCC support library (debug symbols) Debug symbols for the GCC support library. . This package contains files for arm64 architecture, for use in cross-compile environment. Package: lib64gcc1-arm64-cross Architecture: all Section: devel Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${misc:Depends} Provides: lib64gcc1-arm64-dcv1 Conflicts: libgcc1-arm64-cross (<= 1:3.3-0pre9) Description: GCC support library (64bit) Shared version of the support library, a library of internal subroutines that GCC uses to overcome shortcomings of particular machines, or special needs for some languages. . This package contains files for arm64 architecture, for use in cross-compile environment. Package: lib64gcc-4.8-dev-arm64-cross Architecture: all Section: libdevel Priority: optional Recommends: ${dep:libcdev} Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libgccbiarch}, ${dep:libsspbiarch}, ${dep:libgompbiarch}, ${dep:libitmbiarch}, ${dep:libatomicbiarch}, ${dep:libbtracebiarch}, ${dep:libasanbiarch}, ${dep:libtsanbiarch}, ${dep:libqmathbiarch}, ${shlibs:Depends}, ${misc:Depends} Replaces: gcc-4.8-multilib (<< ${gcc:SplitVersion}) Description: GCC support library (64bit development files) This package contains the headers and static library files necessary for building C programs which use libgcc, libgomp, libquadmath, libssp or libitm. Package: lib64gcc1-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), lib64gcc1-arm64-cross (= ${gcc:EpochVersion}), ${misc:Depends} Description: GCC support library (debug symbols) Debug symbols for the GCC support library. . This package contains files for arm64 architecture, for use in cross-compile environment. Package: lib32gcc1-arm64-cross Architecture: all Section: devel Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${misc:Depends} Conflicts: ${confl:lib32} Provides: lib32gcc1-arm64-dcv1 Description: GCC support library (32 bit Version) Shared version of the support library, a library of internal subroutines that GCC uses to overcome shortcomings of particular machines, or special needs for some languages. . This package contains files for arm64 architecture, for use in cross-compile environment. Package: lib32gcc-4.8-dev-arm64-cross Architecture: all Section: libdevel Priority: optional Recommends: ${dep:libcdev} Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libgccbiarch}, ${dep:libsspbiarch}, ${dep:libgompbiarch}, ${dep:libitmbiarch}, ${dep:libatomicbiarch}, ${dep:libbtracebiarch}, ${dep:libasanbiarch}, ${dep:libtsanbiarch}, ${dep:libqmathbiarch}, ${shlibs:Depends}, ${misc:Depends} Replaces: gcc-4.8-multilib (<< ${gcc:SplitVersion}) Description: GCC support library (32 bit development files) This package contains the headers and static library files necessary for building C programs which use libgcc, libgomp, libquadmath, libssp or libitm. Package: lib32gcc1-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), lib32gcc1-arm64-cross (= ${gcc:EpochVersion}), ${misc:Depends} Description: GCC support library (debug symbols) Debug symbols for the GCC support library. . This package contains files for arm64 architecture, for use in cross-compile environment. Package: libhfgcc1-arm64-cross Architecture: all Section: devel Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${misc:Depends} Provides: libhfgcc1-arm64-dcv1 Description: GCC support library (hard float ABI) Shared version of the support library, a library of internal subroutines that GCC uses to overcome shortcomings of particular machines, or special needs for some languages. . This package contains files for arm64 architecture, for use in cross-compile environment. Package: libhfgcc-4.8-dev-arm64-cross Architecture: all Section: libdevel Priority: optional Recommends: ${dep:libcdev} Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libgccbiarch}, ${dep:libsspbiarch}, ${dep:libgompbiarch}, ${dep:libitmbiarch}, ${dep:libatomicbiarch}, ${dep:libbtracebiarch}, ${dep:libasanbiarch}, ${dep:libtsanbiarch}, ${dep:libqmathbiarch}, ${shlibs:Depends}, ${misc:Depends} Replaces: gcc-4.8-multilib (<< ${gcc:SplitVersion}) Description: GCC support library (hard float ABI development files) This package contains the headers and static library files necessary for building C programs which use libgcc, libgomp, libquadmath, libssp or libitm. Package: libhfgcc1-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libhfgcc1-arm64-cross (= ${gcc:EpochVersion}), ${misc:Depends} Description: GCC support library (debug symbols) Debug symbols for the GCC support library. . This package contains files for arm64 architecture, for use in cross-compile environment. Package: libsfgcc1-arm64-cross Architecture: all Section: devel Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${misc:Depends} Provides: libsfgcc1-arm64-dcv1 Description: GCC support library (soft float ABI) Shared version of the support library, a library of internal subroutines that GCC uses to overcome shortcomings of particular machines, or special needs for some languages. . This package contains files for arm64 architecture, for use in cross-compile environment. Package: libsfgcc-4.8-dev-arm64-cross Architecture: all Section: libdevel Priority: optional Recommends: ${dep:libcdev} Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libgccbiarch}, ${dep:libsspbiarch}, ${dep:libgompbiarch}, ${dep:libitmbiarch}, ${dep:libatomicbiarch}, ${dep:libbtracebiarch}, ${dep:libasanbiarch}, ${dep:libtsanbiarch}, ${dep:libqmathbiarch}, ${shlibs:Depends}, ${misc:Depends} Replaces: gcc-4.8-multilib (<< ${gcc:SplitVersion}) Description: GCC support library (soft float ABI development files) This package contains the headers and static library files necessary for building C programs which use libgcc, libgomp, libquadmath, libssp or libitm. Package: libsfgcc1-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libsfgcc1-arm64-cross (= ${gcc:EpochVersion}), ${misc:Depends} Description: GCC support library (debug symbols) Debug symbols for the GCC support library. . This package contains files for arm64 architecture, for use in cross-compile environment. Package: libn32gcc1-arm64-cross Architecture: all Section: devel Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${misc:Depends} Provides: libn32gcc1-arm64-dcv1 Conflicts: libgcc1-arm64-cross (<= 1:3.3-0pre9) Description: GCC support library (n32) Shared version of the support library, a library of internal subroutines that GCC uses to overcome shortcomings of particular machines, or special needs for some languages. . This package contains files for arm64 architecture, for use in cross-compile environment. Package: libn32gcc-4.8-dev-arm64-cross Architecture: all Section: libdevel Priority: optional Recommends: ${dep:libcdev} Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libgccbiarch}, ${dep:libsspbiarch}, ${dep:libgompbiarch}, ${dep:libitmbiarch}, ${dep:libatomicbiarch}, ${dep:libbtracebiarch}, ${dep:libasanbiarch}, ${dep:libtsanbiarch}, ${dep:libqmathbiarch}, ${shlibs:Depends}, ${misc:Depends} Replaces: gcc-4.8-multilib (<< ${gcc:SplitVersion}) Description: GCC support library (n32 development files) This package contains the headers and static library files necessary for building C programs which use libgcc, libgomp, libquadmath, libssp or libitm. Package: libn32gcc1-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libn32gcc1-arm64-cross (= ${gcc:EpochVersion}), ${misc:Depends} Description: GCC support library (debug symbols) Debug symbols for the GCC support library. . This package contains files for arm64 architecture, for use in cross-compile environment. Package: libx32gcc1-arm64-cross Architecture: all Section: devel Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${misc:Depends} Provides: libx32gcc1-arm64-dcv1 Description: GCC support library (x32) Shared version of the support library, a library of internal subroutines that GCC uses to overcome shortcomings of particular machines, or special needs for some languages. . This package contains files for arm64 architecture, for use in cross-compile environment. Package: libx32gcc-4.8-dev-arm64-cross Architecture: all Section: libdevel Priority: optional Recommends: ${dep:libcdev} Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libgccbiarch}, ${dep:libsspbiarch}, ${dep:libgompbiarch}, ${dep:libitmbiarch}, ${dep:libatomicbiarch}, ${dep:libbtracebiarch}, ${dep:libasanbiarch}, ${dep:libtsanbiarch}, ${dep:libqmathbiarch}, ${shlibs:Depends}, ${misc:Depends} Replaces: gcc-4.8-multilib (<< ${gcc:SplitVersion}) Description: GCC support library (x32 development files) This package contains the headers and static library files necessary for building C programs which use libgcc, libgomp, libquadmath, libssp or libitm. Package: libx32gcc1-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libx32gcc1-arm64-cross (= ${gcc:EpochVersion}), ${misc:Depends} Description: GCC support library (debug symbols) Debug symbols for the GCC support library. . This package contains files for arm64 architecture, for use in cross-compile environment. Package: gcc-4.8-aarch64-linux-gnu Architecture: amd64 i386 Section: devel Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), cpp-4.8-aarch64-linux-gnu (= ${gcc:Version}), binutils-aarch64-linux-gnu (>= ${binutils:Version}), libgcc-4.8-dev-arm64-cross (= ${gcc:Version}), ${shlibs:Depends}, ${misc:Depends} Recommends: ${dep:libcdev} Suggests: ${gcc:multilib}, libmudflap0-4.8-dev-arm64-cross (>= ${gcc:Version}), gcc-4.8-doc (>= ${gcc:SoftVersion}), gcc-4.8-locales (>= ${gcc:SoftVersion}), libgcc1-dbg-arm64-cross, libgomp1-dbg-arm64-cross, libitm1-dbg-arm64-cross, libatomic1-dbg-arm64-cross, libtsan0-dbg-arm64-cross, libbacktrace1-dbg-arm64-cross, libquadmath-dbg-arm64-cross, libmudflap0-dbg-arm64-cross, ${dep:libcloog}, ${dep:gold} Provides: c-compiler-aarch64-linux-gnu Description: GNU C compiler This is the GNU C compiler, a fairly portable optimizing compiler for C. . This package contains C cross-compiler for arm64 architecture. Package: gcc-4.8-multilib-aarch64-linux-gnu Architecture: amd64 i386 Section: devel Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), gcc-4.8-aarch64-linux-gnu (= ${gcc:Version}), ${dep:libcbiarchdev}, ${dep:libgccbiarchdev}, ${shlibs:Depends}, ${misc:Depends} Suggests: ${dep:libmudflapbiarch} Description: GNU C compiler (multilib files) This is the GNU C compiler, a fairly portable optimizing compiler for C. . On architectures with multilib support, the package contains files and dependencies for the non-default multilib architecture(s). Package: gcc-4.8-plugin-dev-aarch64-linux-gnu Architecture: amd64 i386 Section: devel Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), gcc-4.8-aarch64-linux-gnu (= ${gcc:Version}), libgmp-dev (>= 2:5.0.1~), ${shlibs:Depends}, ${misc:Depends} Description: Files for GNU GCC plugin development. This package contains (header) files for GNU GCC plugin development. It is only used for the development of GCC plugins, but not needed to run plugins. Package: gcc-4.8-hppa64 Architecture: amd64 i386 Section: devel Priority: optional Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${shlibs:Depends}, ${misc:Depends} Conflicts: gcc-3.3-hppa64 (<= 1:3.3.4-5), gcc-3.4-hppa64 (<= 3.4.1-3) Description: GNU C compiler (cross compiler for hppa64) This is the GNU C compiler, a fairly portable optimizing compiler for C. Package: cpp-4.8-aarch64-linux-gnu Architecture: amd64 i386 Section: devel Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${shlibs:Depends}, ${misc:Depends} Suggests: gcc-4.8-locales (>= ${gcc:SoftVersion}) Replaces: gcc-4.6 (<< 4.6.1-9) Description: GNU C preprocessor A macro processor that is used automatically by the GNU C compiler to transform programs before actual compilation. . This package has been separated from gcc for the benefit of those who require the preprocessor but not the compiler. . This package contains preprocessor configured for arm64 architecture. Package: g++-4.8-aarch64-linux-gnu Architecture: amd64 i386 Section: devel Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), gcc-4.8-aarch64-linux-gnu (= ${gcc:Version}), libstdc++-4.8-dev-arm64-cross (= ${gcc:Version}), ${shlibs:Depends}, ${misc:Depends} Provides: c++-compiler-aarch64-linux-gnu, c++abi2-dev Suggests: ${gxx:multilib}, gcc-4.8-doc (>= ${gcc:SoftVersion}), libstdc++6-4.8-dbg-arm64-cross Description: GNU C++ compiler This is the GNU C++ compiler, a fairly portable optimizing compiler for C++. . This package contains C++ cross-compiler for arm64 architecture. Package: g++-4.8-multilib-aarch64-linux-gnu Architecture: amd64 i386 Section: devel Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), g++-4.8-aarch64-linux-gnu (= ${gcc:Version}), gcc-4.8-multilib-aarch64-linux-gnu (= ${gcc:Version}), ${dep:libcxxbiarchdev}, ${shlibs:Depends}, ${misc:Depends} Suggests: ${dep:libcxxbiarchdbg} Description: GNU C++ compiler (multilib files) This is the GNU C++ compiler, a fairly portable optimizing compiler for C++. . On architectures with multilib support, the package contains files and dependencies for the non-default multilib architecture(s). Package: libmudflap0-arm64-cross Architecture: all Section: devel Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${shlibs:Depends}, ${misc:Depends} Description: GCC mudflap shared support libraries The libmudflap libraries are used by GCC for instrumenting pointer and array dereferencing operations. Package: libmudflap0-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libmudflap0-arm64-cross (= ${gcc:Version}), ${misc:Depends} Description: GCC mudflap shared support libraries (debug symbols) The libmudflap libraries are used by GCC for instrumenting pointer and array dereferencing operations. Package: lib32mudflap0-arm64-cross Architecture: all Section: devel Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Replaces: libmudflap0 (<< 4.1) Conflicts: ${confl:lib32} Description: GCC mudflap shared support libraries (32bit) The libmudflap libraries are used by GCC for instrumenting pointer and array dereferencing operations. Package: lib32mudflap0-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), lib32mudflap0-arm64-cross (= ${gcc:Version}), ${misc:Depends} Description: GCC mudflap shared support libraries (32 bit debug symbols) The libmudflap libraries are used by GCC for instrumenting pointer and array dereferencing operations. Package: lib64mudflap0-arm64-cross Architecture: all Section: devel Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Replaces: libmudflap0 (<< 4.1) Description: GCC mudflap shared support libraries (64bit) The libmudflap libraries are used by GCC for instrumenting pointer and array dereferencing operations. Package: lib64mudflap0-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), lib64mudflap0-arm64-cross (= ${gcc:Version}), ${misc:Depends} Description: GCC mudflap shared support libraries (64 bit debug symbols) The libmudflap libraries are used by GCC for instrumenting pointer and array dereferencing operations. Package: libn32mudflap0-arm64-cross Architecture: all Section: devel Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Replaces: libmudflap0 (<< 4.1) Description: GCC mudflap shared support libraries (n32) The libmudflap libraries are used by GCC for instrumenting pointer and array dereferencing operations. Package: libn32mudflap0-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libn32mudflap0-arm64-cross (= ${gcc:Version}), ${misc:Depends} Description: GCC mudflap shared support libraries (n32 debug symbols) The libmudflap libraries are used by GCC for instrumenting pointer and array dereferencing operations. Package: libx32mudflap0-arm64-cross Architecture: all Section: devel Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Replaces: libmudflap0 (<< 4.1) Description: GCC mudflap shared support libraries (x32) The libmudflap libraries are used by GCC for instrumenting pointer and array dereferencing operations. Package: libx32mudflap0-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libx32mudflap0-arm64-cross (= ${gcc:Version}), ${misc:Depends} Description: GCC mudflap shared support libraries (x32 debug symbols) The libmudflap libraries are used by GCC for instrumenting pointer and array dereferencing operations. Package: libhfmudflap0-arm64-cross Architecture: all Section: devel Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: GCC mudflap shared support libraries (hard float) The libmudflap libraries are used by GCC for instrumenting pointer and array dereferencing operations. Package: libhfmudflap0-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libhfmudflap0-arm64-cross (= ${gcc:Version}), ${misc:Depends} Description: GCC mudflap shared support libraries (hard float debug symbols) The libmudflap libraries are used by GCC for instrumenting pointer and array dereferencing operations. Package: libsfmudflap0-arm64-cross Architecture: all Section: devel Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: GCC mudflap shared support libraries (soft float) The libmudflap libraries are used by GCC for instrumenting pointer and array dereferencing operations. Package: libsfmudflap0-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libsfmudflap0-arm64-cross (= ${gcc:Version}), ${misc:Depends} Description: GCC mudflap shared support libraries (soft float debug symbols) The libmudflap libraries are used by GCC for instrumenting pointer and array dereferencing operations. Package: libmudflap0-4.8-dev-arm64-cross Architecture: all Section: devel Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libmudflap0-arm64-cross (>= ${gcc:Version}), ${dep:libcdev}, ${shlibs:Depends}, ${misc:Depends} Suggests: ${sug:libmudflapdev} Conflicts: libmudflap0-dev Description: GCC mudflap support libraries (development files) The libmudflap libraries are used by GCC for instrumenting pointer and array dereferencing operations. . This package contains the headers and the static libraries. Package: libgomp1-arm64-cross Section: devel Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${shlibs:Depends}, ${misc:Depends} Description: GCC OpenMP (GOMP) support library GOMP is an implementation of OpenMP for the C, C++, and Fortran compilers in the GNU Compiler Collection. Package: libgomp1-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libgomp1-arm64-cross (= ${gcc:Version}), ${misc:Depends} Description: GCC OpenMP (GOMP) support library (debug symbols) GOMP is an implementation of OpenMP for the C, C++, and Fortran compilers in the GNU Compiler Collection. Package: lib32gomp1-arm64-cross Section: devel Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Conflicts: ${confl:lib32} Description: GCC OpenMP (GOMP) support library (32bit) GOMP is an implementation of OpenMP for the C, C++, and Fortran compilers in the GNU Compiler Collection. Package: lib32gomp1-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), lib32gomp1-arm64-cross (= ${gcc:Version}), ${misc:Depends} Description: GCC OpenMP (GOMP) support library (32 bit debug symbols) GOMP is an implementation of OpenMP for the C, C++, and Fortran compilers in the GNU Compiler Collection. Package: lib64gomp1-arm64-cross Section: devel Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: GCC OpenMP (GOMP) support library (64bit) GOMP is an implementation of OpenMP for the C, C++, and Fortran compilers in the GNU Compiler Collection. Package: lib64gomp1-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), lib64gomp1-arm64-cross (= ${gcc:Version}), ${misc:Depends} Description: GCC OpenMP (GOMP) support library (64bit debug symbols) GOMP is an implementation of OpenMP for the C, C++, and Fortran compilers in the GNU Compiler Collection. Package: libn32gomp1-arm64-cross Section: devel Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: GCC OpenMP (GOMP) support library (n32) GOMP is an implementation of OpenMP for the C, C++, and Fortran compilers in the GNU Compiler Collection. Package: libn32gomp1-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libn32gomp1-arm64-cross (= ${gcc:Version}), ${misc:Depends} Description: GCC OpenMP (GOMP) support library (n32 debug symbols) GOMP is an implementation of OpenMP for the C, C++, and Fortran compilers Package: libx32gomp1-arm64-cross Section: devel Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: GCC OpenMP (GOMP) support library (x32) GOMP is an implementation of OpenMP for the C, C++, and Fortran compilers in the GNU Compiler Collection. Package: libx32gomp1-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libx32gomp1-arm64-cross (= ${gcc:Version}), ${misc:Depends} Description: GCC OpenMP (GOMP) support library (x32 debug symbols) GOMP is an implementation of OpenMP for the C, C++, and Fortran compilers Package: libhfgomp1-arm64-cross Section: devel Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: GCC OpenMP (GOMP) support library (hard float ABI) GOMP is an implementation of OpenMP for the C, C++, and Fortran compilers in the GNU Compiler Collection. Package: libhfgomp1-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libhfgomp1-arm64-cross (= ${gcc:Version}), ${misc:Depends} Description: GCC OpenMP (GOMP) support library (hard float ABI debug symbols) GOMP is an implementation of OpenMP for the C, C++, and Fortran compilers Package: libsfgomp1-arm64-cross Section: devel Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: GCC OpenMP (GOMP) support library (soft float ABI) GOMP is an implementation of OpenMP for the C, C++, and Fortran compilers in the GNU Compiler Collection. Package: libsfgomp1-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libsfgomp1-arm64-cross (= ${gcc:Version}), ${misc:Depends} Description: GCC OpenMP (GOMP) support library (soft float ABI debug symbols) GOMP is an implementation of OpenMP for the C, C++, and Fortran compilers Package: libitm1-arm64-cross Section: devel Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${shlibs:Depends}, ${misc:Depends} Description: GNU Transactional Memory Library GNU Transactional Memory Library (libitm) provides transaction support for accesses to the memory of a process, enabling easy-to-use synchronization of accesses to shared memory by several threads. Package: libitm1-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libitm1-arm64-cross (= ${gcc:Version}), ${misc:Depends} Description: GNU Transactional Memory Library (debug symbols) GNU Transactional Memory Library (libitm) provides transaction support for accesses to the memory of a process, enabling easy-to-use synchronization of accesses to shared memory by several threads. Package: lib32itm1-arm64-cross Section: devel Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Conflicts: ${confl:lib32} Description: GNU Transactional Memory Library (32bit) GNU Transactional Memory Library (libitm) provides transaction support for accesses to the memory of a process, enabling easy-to-use synchronization of accesses to shared memory by several threads. Package: lib32itm1-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), lib32itm1-arm64-cross (= ${gcc:Version}), ${misc:Depends} Description: GNU Transactional Memory Library (32 bit debug symbols) GNU Transactional Memory Library (libitm) provides transaction support for accesses to the memory of a process, enabling easy-to-use synchronization of accesses to shared memory by several threads. Package: lib64itm1-arm64-cross Section: devel Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: GNU Transactional Memory Library (64bit) GNU Transactional Memory Library (libitm) provides transaction support for accesses to the memory of a process, enabling easy-to-use synchronization of accesses to shared memory by several threads. Package: lib64itm1-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), lib64itm1-arm64-cross (= ${gcc:Version}), ${misc:Depends} Description: GNU Transactional Memory Library (64bit debug symbols) GNU Transactional Memory Library (libitm) provides transaction support for accesses to the memory of a process, enabling easy-to-use synchronization of accesses to shared memory by several threads. Package: libn32itm1-arm64-cross Section: devel Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: GNU Transactional Memory Library (n32) GNU Transactional Memory Library (libitm) provides transaction support for accesses to the memory of a process, enabling easy-to-use synchronization of accesses to shared memory by several threads. Package: libn32itm1-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libn32itm1-arm64-cross (= ${gcc:Version}), ${misc:Depends} Description: GNU Transactional Memory Library (n32 debug symbols) GNU Transactional Memory Library (libitm) provides transaction support for accesses to the memory of a process, enabling easy-to-use synchronization of accesses to shared memory by several threads. Package: libx32itm1-arm64-cross Section: devel Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: GNU Transactional Memory Library (x32) GNU Transactional Memory Library (libitm) provides transaction support for accesses to the memory of a process, enabling easy-to-use synchronization of accesses to shared memory by several threads. Package: libx32itm1-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libx32itm1-arm64-cross (= ${gcc:Version}), ${misc:Depends} Description: GNU Transactional Memory Library (x32 debug symbols) GNU Transactional Memory Library (libitm) provides transaction support for accesses to the memory of a process, enabling easy-to-use synchronization of accesses to shared memory by several threads. Package: libhfitm1-arm64-cross Section: devel Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: GNU Transactional Memory Library (hard float ABI) GNU Transactional Memory Library (libitm) provides transaction support for accesses to the memory of a process, enabling easy-to-use synchronization of accesses to shared memory by several threads. Package: libhfitm1-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libhfitm1-arm64-cross (= ${gcc:Version}), ${misc:Depends} Description: GNU Transactional Memory Library (hard float ABI debug symbols) GNU Transactional Memory Library (libitm) provides transaction support for accesses to the memory of a process, enabling easy-to-use synchronization of accesses to shared memory by several threads. Package: libsfitm1-arm64-cross Section: devel Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: GNU Transactional Memory Library (soft float ABI) GNU Transactional Memory Library (libitm) provides transaction support for accesses to the memory of a process, enabling easy-to-use synchronization of accesses to shared memory by several threads. Package: libsfitm1-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libsfitm1-arm64-cross (= ${gcc:Version}), ${misc:Depends} Description: GNU Transactional Memory Library (soft float ABI debug symbols) GNU Transactional Memory Library (libitm) provides transaction support for accesses to the memory of a process, enabling easy-to-use synchronization of accesses to shared memory by several threads. Package: libatomic1-arm64-cross Section: devel Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${shlibs:Depends}, ${misc:Depends} Description: support library providing __atomic built-in functions library providing __atomic built-in functions. When an atomic call cannot be turned into lock-free instructions, GCC will make calls into this library. Package: libatomic1-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libatomic1-arm64-cross (= ${gcc:Version}), ${misc:Depends} Description: support library providing __atomic built-in functions (debug symbols) library providing __atomic built-in functions. When an atomic call cannot be turned into lock-free instructions, GCC will make calls into this library. Package: lib32atomic1-arm64-cross Section: devel Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Conflicts: ${confl:lib32} Description: support library providing __atomic built-in functions (32bit) library providing __atomic built-in functions. When an atomic call cannot be turned into lock-free instructions, GCC will make calls into this library. Package: lib32atomic1-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), lib32atomic1-arm64-cross (= ${gcc:Version}), ${misc:Depends} Description: support library providing __atomic built-in functions (32 bit debug symbols) library providing __atomic built-in functions. When an atomic call cannot be turned into lock-free instructions, GCC will make calls into this library. Package: lib64atomic1-arm64-cross Section: devel Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: support library providing __atomic built-in functions (64bit) library providing __atomic built-in functions. When an atomic call cannot be turned into lock-free instructions, GCC will make calls into this library. Package: lib64atomic1-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), lib64atomic1-arm64-cross (= ${gcc:Version}), ${misc:Depends} Description: support library providing __atomic built-in functions (64bit debug symbols) library providing __atomic built-in functions. When an atomic call cannot be turned into lock-free instructions, GCC will make calls into this library. Package: libn32atomic1-arm64-cross Section: devel Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: support library providing __atomic built-in functions (n32) library providing __atomic built-in functions. When an atomic call cannot be turned into lock-free instructions, GCC will make calls into this library. Package: libn32atomic1-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libn32atomic1-arm64-cross (= ${gcc:Version}), ${misc:Depends} Description: support library providing __atomic built-in functions (n32 debug symbols) library providing __atomic built-in functions. When an atomic call cannot be turned into lock-free instructions, GCC will make calls into this library. Package: libx32atomic1-arm64-cross Section: devel Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: support library providing __atomic built-in functions (x32) library providing __atomic built-in functions. When an atomic call cannot be turned into lock-free instructions, GCC will make calls into this library. Package: libx32atomic1-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libx32atomic1-arm64-cross (= ${gcc:Version}), ${misc:Depends} Description: support library providing __atomic built-in functions (x32 debug symbols) library providing __atomic built-in functions. When an atomic call cannot be turned into lock-free instructions, GCC will make calls into this library. Package: libhfatomic1-arm64-cross Section: devel Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: support library providing __atomic built-in functions (hard float ABI) library providing __atomic built-in functions. When an atomic call cannot be turned into lock-free instructions, GCC will make calls into this library. Package: libhfatomic1-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libhfatomic1-arm64-cross (= ${gcc:Version}), ${misc:Depends} Description: support library providing __atomic built-in functions (hard float ABI debug symbols) library providing __atomic built-in functions. When an atomic call cannot be turned into lock-free instructions, GCC will make calls into this library. Package: libsfatomic1-arm64-cross Section: devel Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: support library providing __atomic built-in functions (soft float ABI) library providing __atomic built-in functions. When an atomic call cannot be turned into lock-free instructions, GCC will make calls into this library. Package: libsfatomic1-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libsfatomic1-arm64-cross (= ${gcc:Version}), ${misc:Depends} Description: support library providing __atomic built-in functions (soft float ABI debug symbols) library providing __atomic built-in functions. When an atomic call cannot be turned into lock-free instructions, GCC will make calls into this library. Package: libasan0-arm64-cross Section: devel Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${shlibs:Depends}, ${misc:Depends} Description: AddressSanitizer -- a fast memory error detector AddressSanitizer (ASan) is a fast memory error detector. It finds use-after-free and {heap,stack,global}-buffer overflow bugs in C/C++ programs. Package: libasan0-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libasan0-arm64-cross (= ${gcc:Version}), ${misc:Depends} Description: AddressSanitizer -- a fast memory error detector (debug symbols) AddressSanitizer (ASan) is a fast memory error detector. It finds use-after-free and {heap,stack,global}-buffer overflow bugs in C/C++ programs. Package: lib32asan0-arm64-cross Section: devel Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Conflicts: ${confl:lib32} Description: AddressSanitizer -- a fast memory error detector (32bit) AddressSanitizer (ASan) is a fast memory error detector. It finds use-after-free and {heap,stack,global}-buffer overflow bugs in C/C++ programs. Package: lib32asan0-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), lib32asan0-arm64-cross (= ${gcc:Version}), ${misc:Depends} Description: AddressSanitizer -- a fast memory error detector (32 bit debug symbols) AddressSanitizer (ASan) is a fast memory error detector. It finds use-after-free and {heap,stack,global}-buffer overflow bugs in C/C++ programs. Package: lib64asan0-arm64-cross Section: devel Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: AddressSanitizer -- a fast memory error detector (64bit) AddressSanitizer (ASan) is a fast memory error detector. It finds use-after-free and {heap,stack,global}-buffer overflow bugs in C/C++ programs. Package: lib64asan0-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), lib64asan0-arm64-cross (= ${gcc:Version}), ${misc:Depends} Description: AddressSanitizer -- a fast memory error detector (64bit debug symbols) AddressSanitizer (ASan) is a fast memory error detector. It finds use-after-free and {heap,stack,global}-buffer overflow bugs in C/C++ programs. Package: libn32asan0-arm64-cross Section: devel Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: AddressSanitizer -- a fast memory error detector (n32) AddressSanitizer (ASan) is a fast memory error detector. It finds use-after-free and {heap,stack,global}-buffer overflow bugs in C/C++ programs. Package: libn32asan0-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libn32asan0-arm64-cross (= ${gcc:Version}), ${misc:Depends} Description: AddressSanitizer -- a fast memory error detector (n32 debug symbols) AddressSanitizer (ASan) is a fast memory error detector. It finds use-after-free and {heap,stack,global}-buffer overflow bugs in C/C++ programs. Package: libx32asan0-arm64-cross Section: devel Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: AddressSanitizer -- a fast memory error detector (x32) AddressSanitizer (ASan) is a fast memory error detector. It finds use-after-free and {heap,stack,global}-buffer overflow bugs in C/C++ programs. Package: libx32asan0-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libx32asan0-arm64-cross (= ${gcc:Version}), ${misc:Depends} Description: AddressSanitizer -- a fast memory error detector (x32 debug symbols) AddressSanitizer (ASan) is a fast memory error detector. It finds use-after-free and {heap,stack,global}-buffer overflow bugs in C/C++ programs. Package: libhfasan0-arm64-cross Section: devel Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: AddressSanitizer -- a fast memory error detector (hard float ABI) AddressSanitizer (ASan) is a fast memory error detector. It finds use-after-free and {heap,stack,global}-buffer overflow bugs in C/C++ programs. Package: libhfasan0-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libhfasan0-arm64-cross (= ${gcc:Version}), ${misc:Depends} Description: AddressSanitizer -- a fast memory error detector (hard float ABI debug symbols) AddressSanitizer (ASan) is a fast memory error detector. It finds use-after-free and {heap,stack,global}-buffer overflow bugs in C/C++ programs. Package: libsfasan0-arm64-cross Section: devel Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: AddressSanitizer -- a fast memory error detector (soft float ABI) AddressSanitizer (ASan) is a fast memory error detector. It finds use-after-free and {heap,stack,global}-buffer overflow bugs in C/C++ programs. Package: libsfasan0-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libsfasan0-arm64-cross (= ${gcc:Version}), ${misc:Depends} Description: AddressSanitizer -- a fast memory error detector (soft float ABI debug symbols) AddressSanitizer (ASan) is a fast memory error detector. It finds use-after-free and {heap,stack,global}-buffer overflow bugs in C/C++ programs. Package: libtsan0-arm64-cross Section: devel Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${shlibs:Depends}, ${misc:Depends} Description: ThreadSanitizer -- a Valgrind-based detector of data races ThreadSanitizer (Tsan) is a data race detector for C/C++ programs. The Linux and Mac versions are based on Valgrind. Package: libtsan0-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libtsan0-arm64-cross (= ${gcc:Version}), ${misc:Depends} Description: ThreadSanitizer -- a Valgrind-based detector of data races (debug symbols) ThreadSanitizer (Tsan) is a data race detector for C/C++ programs. The Linux and Mac versions are based on Valgrind. Package: lib32tsan0-arm64-cross Section: devel Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Conflicts: ${confl:lib32} Description: ThreadSanitizer -- a Valgrind-based detector of data races (32bit) ThreadSanitizer (Tsan) is a data race detector for C/C++ programs. The Linux and Mac versions are based on Valgrind. Package: lib32tsan0-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), lib32tsan0-arm64-cross (= ${gcc:Version}), ${misc:Depends} Description: ThreadSanitizer -- a Valgrind-based detector of data races (32 bit debug symbols) ThreadSanitizer (Tsan) is a data race detector for C/C++ programs. The Linux and Mac versions are based on Valgrind. Package: lib64tsan0-arm64-cross Section: devel Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: ThreadSanitizer -- a Valgrind-based detector of data races (64bit) ThreadSanitizer (Tsan) is a data race detector for C/C++ programs. The Linux and Mac versions are based on Valgrind. Package: lib64tsan0-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), lib64tsan0-arm64-cross (= ${gcc:Version}), ${misc:Depends} Description: ThreadSanitizer -- a Valgrind-based detector of data races (64bit debug symbols) ThreadSanitizer (Tsan) is a data race detector for C/C++ programs. The Linux and Mac versions are based on Valgrind. Package: libn32tsan0-arm64-cross Section: devel Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: ThreadSanitizer -- a Valgrind-based detector of data races (n32) ThreadSanitizer (Tsan) is a data race detector for C/C++ programs. The Linux and Mac versions are based on Valgrind. Package: libn32tsan0-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libn32tsan0-arm64-cross (= ${gcc:Version}), ${misc:Depends} Description: ThreadSanitizer -- a Valgrind-based detector of data races (n32 debug symbols) ThreadSanitizer (Tsan) is a data race detector for C/C++ programs. The Linux and Mac versions are based on Valgrind. Package: libx32tsan0-arm64-cross Section: devel Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: ThreadSanitizer -- a Valgrind-based detector of data races (x32) ThreadSanitizer (Tsan) is a data race detector for C/C++ programs. The Linux and Mac versions are based on Valgrind. Package: libx32tsan0-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libx32tsan0-arm64-cross (= ${gcc:Version}), ${misc:Depends} Description: ThreadSanitizer -- a Valgrind-based detector of data races (x32 debug symbols) ThreadSanitizer (Tsan) is a data race detector for C/C++ programs. The Linux and Mac versions are based on Valgrind. Package: libhftsan0-arm64-cross Section: devel Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: ThreadSanitizer -- a Valgrind-based detector of data races (hard float ABI) ThreadSanitizer (Tsan) is a data race detector for C/C++ programs. The Linux and Mac versions are based on Valgrind. Package: libhftsan0-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libhftsan0-arm64-cross (= ${gcc:Version}), ${misc:Depends} Description: ThreadSanitizer -- a Valgrind-based detector of data races (hard float ABI debug symbols) ThreadSanitizer (Tsan) is a data race detector for C/C++ programs. The Linux and Mac versions are based on Valgrind. Package: libsftsan0-arm64-cross Section: devel Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: ThreadSanitizer -- a Valgrind-based detector of data races (soft float ABI) ThreadSanitizer (Tsan) is a data race detector for C/C++ programs. The Linux and Mac versions are based on Valgrind. Package: libsftsan0-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libsftsan0-arm64-cross (= ${gcc:Version}), ${misc:Depends} Description: ThreadSanitizer -- a Valgrind-based detector of data races (soft float ABI debug symbols) ThreadSanitizer (Tsan) is a data race detector for C/C++ programs. The Linux and Mac versions are based on Valgrind. Package: gobjc++-4.8-aarch64-linux-gnu Architecture: amd64 i386 Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), gobjc-4.8-aarch64-linux-gnu (= ${gcc:Version}), g++-4.8-aarch64-linux-gnu (= ${gcc:Version}), ${shlibs:Depends}, libobjc-4.8-dev-arm64-cross (= ${gcc:Version}), ${misc:Depends} Suggests: ${gobjcxx:multilib}, gcc-4.8-doc (>= ${gcc:SoftVersion}) Provides: objc++-compiler-aarch64-linux-gnu Description: GNU Objective-C++ compiler This is the GNU Objective-C++ compiler, which compiles Objective-C++ on platforms supported by the gcc compiler. It uses the gcc backend to generate optimized code. Package: gobjc++-4.8-multilib-aarch64-linux-gnu Architecture: amd64 i386 Section: devel Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), gobjc++-4.8-aarch64-linux-gnu (= ${gcc:Version}), g++-4.8-multilib-aarch64-linux-gnu (= ${gcc:Version}), gobjc-4.8-multilib-aarch64-linux-gnu (= ${gcc:Version}), ${shlibs:Depends}, ${misc:Depends} Description: GNU Objective-C++ compiler (multilib files) This is the GNU Objective-C++ compiler, which compiles Objective-C++ on platforms supported by the gcc compiler. . On architectures with multilib support, the package contains files and dependencies for the non-default multilib architecture(s). Package: gobjc-4.8-aarch64-linux-gnu Architecture: amd64 i386 Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), gcc-4.8-aarch64-linux-gnu (= ${gcc:Version}), ${dep:libcdev}, ${shlibs:Depends}, libobjc-4.8-dev-arm64-cross (= ${gcc:Version}), ${misc:Depends} Suggests: ${gobjc:multilib}, gcc-4.8-doc (>= ${gcc:SoftVersion}), libobjc4-dbg-arm64-cross Provides: objc-compiler-aarch64-linux-gnu Description: GNU Objective-C compiler This is the GNU Objective-C compiler, which compiles Objective-C on platforms supported by the gcc compiler. It uses the gcc backend to generate optimized code. Package: gobjc-4.8-multilib-aarch64-linux-gnu Architecture: amd64 i386 Section: devel Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), gobjc-4.8-aarch64-linux-gnu (= ${gcc:Version}), gcc-4.8-multilib-aarch64-linux-gnu (= ${gcc:Version}), ${dep:libobjcbiarchdev}, ${shlibs:Depends}, ${misc:Depends} Description: GNU Objective-C compiler (multilib files) This is the GNU Objective-C compiler, which compiles Objective-C on platforms supported by the gcc compiler. . On architectures with multilib support, the package contains files and dependencies for the non-default multilib architecture(s). Package: libobjc4-arm64-cross Section: devel Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${shlibs:Depends}, ${misc:Depends} Description: Runtime library for GNU Objective-C applications Library needed for GNU ObjC applications linked against the shared library. Package: libobjc-4.8-dev-arm64-cross Architecture: all Section: libdevel Priority: optional Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libgcc-4.8-dev-arm64-cross (= ${gcc:Version}), libobjc4-arm64-cross (>= ${gcc:Version}), ${shlibs:Depends}, ${misc:Depends} Replaces: gobjc-4.8 (<< ${gcc:SplitVersion}) Description: Runtime library for GNU Objective-C applications (development files) This package contains the headers and static library files needed to build GNU ObjC applications. Package: libobjc4-dbg-arm64-cross Section: debug Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libobjc4-arm64-cross (= ${gcc:Version}), libgcc1-dbg-arm64-cross, ${misc:Depends} Description: Runtime library for GNU Objective-C applications (debug symbols) Library needed for GNU ObjC applications linked against the shared library. Package: lib64objc4-arm64-cross Section: devel Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: Runtime library for GNU Objective-C applications (64bit) Library needed for GNU ObjC applications linked against the shared library. Package: lib64objc-4.8-dev-arm64-cross Architecture: all Section: libdevel Priority: optional Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), lib64gcc-4.8-dev-arm64-cross (= ${gcc:Version}), lib64objc4-arm64-cross (>= ${gcc:Version}), ${shlibs:Depends}, ${misc:Depends} Replaces: gobjc-4.8-multilib (<< ${gcc:SplitVersion}) Description: Runtime library for GNU Objective-C applications (64bit development files) This package contains the headers and static library files needed to build GNU ObjC applications. Package: lib64objc4-dbg-arm64-cross Section: debug Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), lib64objc4-arm64-cross (= ${gcc:Version}), lib64gcc1-dbg-arm64-cross, ${misc:Depends} Description: Runtime library for GNU Objective-C applications (64 bit debug symbols) Library needed for GNU ObjC applications linked against the shared library. Package: lib32objc4-arm64-cross Section: devel Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Conflicts: ${confl:lib32} Description: Runtime library for GNU Objective-C applications (32bit) Library needed for GNU ObjC applications linked against the shared library. Package: lib32objc-4.8-dev-arm64-cross Architecture: all Section: libdevel Priority: optional Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), lib32gcc-4.8-dev-arm64-cross (= ${gcc:Version}), lib32objc4-arm64-cross (>= ${gcc:Version}), ${shlibs:Depends}, ${misc:Depends} Replaces: gobjc-4.8-multilib (<< ${gcc:SplitVersion}) Description: Runtime library for GNU Objective-C applications (32bit development files) This package contains the headers and static library files needed to build GNU ObjC applications. Package: lib32objc4-dbg-arm64-cross Section: debug Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), lib32objc4-arm64-cross (= ${gcc:Version}), lib32gcc1-dbg-arm64-cross, ${misc:Depends} Description: Runtime library for GNU Objective-C applications (32 bit debug symbols) Library needed for GNU ObjC applications linked against the shared library. Package: libn32objc4-arm64-cross Section: devel Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: Runtime library for GNU Objective-C applications (n32) Library needed for GNU ObjC applications linked against the shared library. Package: libn32objc-4.8-dev-arm64-cross Architecture: all Section: libdevel Priority: optional Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libn32gcc-4.8-dev-arm64-cross (= ${gcc:Version}), libn32objc4-arm64-cross (>= ${gcc:Version}), ${shlibs:Depends}, ${misc:Depends} Replaces: gobjc-4.8-multilib (<< ${gcc:SplitVersion}) Description: Runtime library for GNU Objective-C applications (n32 development files) This package contains the headers and static library files needed to build GNU ObjC applications. Package: libn32objc4-dbg-arm64-cross Section: debug Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libn32objc4-arm64-cross (= ${gcc:Version}), libn32gcc1-dbg-arm64-cross, ${misc:Depends} Description: Runtime library for GNU Objective-C applications (n32 debug symbols) Library needed for GNU ObjC applications linked against the shared library. Package: libx32objc4-arm64-cross Section: devel Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: Runtime library for GNU Objective-C applications (x32) Library needed for GNU ObjC applications linked against the shared library. Package: libx32objc-4.8-dev-arm64-cross Architecture: all Section: libdevel Priority: optional Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libx32gcc-4.8-dev-arm64-cross (= ${gcc:Version}), libx32objc4-arm64-cross (>= ${gcc:Version}), ${shlibs:Depends}, ${misc:Depends} Replaces: gobjc-4.8-multilib (<< ${gcc:SplitVersion}) Description: Runtime library for GNU Objective-C applications (x32 development files) This package contains the headers and static library files needed to build GNU ObjC applications. Package: libx32objc4-dbg-arm64-cross Section: debug Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libx32objc4-arm64-cross (= ${gcc:Version}), libx32gcc1-dbg-arm64-cross, ${misc:Depends} Description: Runtime library for GNU Objective-C applications (x32 debug symbols) Library needed for GNU ObjC applications linked against the shared library. Package: libhfobjc4-arm64-cross Section: devel Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: Runtime library for GNU Objective-C applications (hard float ABI) Library needed for GNU ObjC applications linked against the shared library. Package: libhfobjc-4.8-dev-arm64-cross Architecture: all Section: libdevel Priority: optional Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libhfgcc-4.8-dev-arm64-cross (= ${gcc:Version}), libhfobjc4-arm64-cross (>= ${gcc:Version}), ${shlibs:Depends}, ${misc:Depends} Replaces: gobjc-4.8-multilib (<< ${gcc:SplitVersion}) Description: Runtime library for GNU Objective-C applications (hard float ABI development files) This package contains the headers and static library files needed to build GNU ObjC applications. Package: libhfobjc4-dbg-arm64-cross Section: debug Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libhfobjc4-arm64-cross (= ${gcc:Version}), libhfgcc1-dbg-arm64-cross, ${misc:Depends} Description: Runtime library for GNU Objective-C applications (hard float ABI debug symbols) Library needed for GNU ObjC applications linked against the shared library. Package: libsfobjc4-arm64-cross Section: devel Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: Runtime library for GNU Objective-C applications (soft float ABI) Library needed for GNU ObjC applications linked against the shared library. Package: libsfobjc-4.8-dev-arm64-cross Architecture: all Section: libdevel Priority: optional Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libsfgcc-4.8-dev-arm64-cross (= ${gcc:Version}), libsfobjc4-arm64-cross (>= ${gcc:Version}), ${shlibs:Depends}, ${misc:Depends} Replaces: gobjc-4.8-multilib (<< ${gcc:SplitVersion}) Description: Runtime library for GNU Objective-C applications (soft float development files) This package contains the headers and static library files needed to build GNU ObjC applications. Package: libsfobjc4-dbg-arm64-cross Section: debug Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libsfobjc4-arm64-cross (= ${gcc:Version}), libsfgcc1-dbg-arm64-cross, ${misc:Depends} Description: Runtime library for GNU Objective-C applications (soft float ABI debug symbols) Library needed for GNU ObjC applications linked against the shared library. Package: gfortran-4.8-aarch64-linux-gnu Architecture: amd64 i386 Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), gcc-4.8-aarch64-linux-gnu (= ${gcc:Version}), libgfortran-4.8-dev-arm64-cross (= ${gcc:Version}), ${dep:libcdev}, ${shlibs:Depends}, ${misc:Depends} Provides: fortran95-compiler Suggests: ${gfortran:multilib}, gfortran-4.8-doc, libgfortran3-dbg-arm64-cross Description: GNU Fortran compiler This is the GNU Fortran compiler, which compiles Fortran on platforms supported by the gcc compiler. It uses the gcc backend to generate optimized code. Package: gfortran-4.8-multilib-aarch64-linux-gnu Architecture: amd64 i386 Section: devel Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), gfortran-4.8-aarch64-linux-gnu (= ${gcc:Version}), gcc-4.8-multilib-aarch64-linux-gnu (= ${gcc:Version}), ${dep:libgfortranbiarchdev}, ${shlibs:Depends}, ${misc:Depends} Description: GNU Fortran compiler (multilib files) This is the GNU Fortran compiler, which compiles Fortran on platforms supported by the gcc compiler. . On architectures with multilib support, the package contains files and dependencies for the non-default multilib architecture(s). Package: libgfortran3-arm64-cross Section: devel Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${shlibs:Depends}, ${misc:Depends} Description: Runtime library for GNU Fortran applications Library needed for GNU Fortran applications linked against the shared library. Package: libgfortran-4.8-dev-arm64-cross Architecture: all Section: devel Priority: optional Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libgfortran3-arm64-cross, ${shlibs:Depends}, ${misc:Depends} Replaces: gfortran-4.8 (<< ${gcc:SplitVersion}) Breaks: gfortran-4.8 (<< ${gcc:SplitVersion}) Description: Runtime library for GNU Fortran applications (development files) This package contains the headers and static library files needed to build GNU Fortran applications. Package: libgfortran3-dbg-arm64-cross Section: debug Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libgfortran3-arm64-cross (= ${gcc:Version}), ${misc:Depends} Description: Runtime library for GNU Fortran applications (debug symbols) Library needed for GNU Fortran applications linked against the shared library. Package: lib64gfortran3-arm64-cross Section: devel Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: Runtime library for GNU Fortran applications (64bit) Library needed for GNU Fortran applications linked against the shared library. Package: lib64gfortran-4.8-dev-arm64-cross Architecture: all Section: libdevel Priority: optional Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), lib64gfortran3-arm64-cross, ${shlibs:Depends}, ${misc:Depends} Replaces: gfortran-4.8-multilib (<< ${gcc:SplitVersion}) Breaks: gfortran-4.8-multilib (<< ${gcc:SplitVersion}) Description: Runtime library for GNU Fortran applications (64bit development files) This package contains the headers and static library files needed to build GNU Fortran applications. Package: lib64gfortran3-dbg-arm64-cross Section: debug Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), lib64gfortran3-arm64-cross (= ${gcc:Version}), ${misc:Depends} Description: Runtime library for GNU Fortran applications (64bit debug symbols) Library needed for GNU Fortran applications linked against the shared library. Package: lib32gfortran3-arm64-cross Section: devel Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Conflicts: ${confl:lib32} Description: Runtime library for GNU Fortran applications (32bit) Library needed for GNU Fortran applications linked against the shared library. Package: lib32gfortran-4.8-dev-arm64-cross Architecture: all Section: libdevel Priority: optional Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), lib32gfortran3-arm64-cross, ${shlibs:Depends}, ${misc:Depends} Replaces: gfortran-4.8-multilib (<< ${gcc:SplitVersion}) Breaks: gfortran-4.8-multilib (<< ${gcc:SplitVersion}) Description: Runtime library for GNU Fortran applications (32bit development files) This package contains the headers and static library files needed to build GNU Fortran applications. Package: lib32gfortran3-dbg-arm64-cross Section: debug Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), lib32gfortran3-arm64-cross (= ${gcc:Version}), ${misc:Depends} Description: Runtime library for GNU Fortran applications (32 bit debug symbols) Library needed for GNU Fortran applications linked against the shared library. Package: libn32gfortran3-arm64-cross Section: devel Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: Runtime library for GNU Fortran applications (n32) Library needed for GNU Fortran applications linked against the shared library. Package: libn32gfortran-4.8-dev-arm64-cross Architecture: all Section: libdevel Priority: optional Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libn32gfortran3-arm64-cross, ${shlibs:Depends}, ${misc:Depends} Replaces: gfortran-4.8-multilib (<< ${gcc:SplitVersion}) Breaks: gfortran-4.8-multilib (<< ${gcc:SplitVersion}) Description: Runtime library for GNU Fortran applications (n32 development files) This package contains the headers and static library files needed to build GNU Fortran applications. Package: libn32gfortran3-dbg-arm64-cross Section: debug Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libn32gfortran3-arm64-cross (= ${gcc:Version}), ${misc:Depends} Description: Runtime library for GNU Fortran applications (n32 debug symbols) Library needed for GNU Fortran applications linked against the shared library. Package: libx32gfortran3-arm64-cross Section: devel Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: Runtime library for GNU Fortran applications (x32) Library needed for GNU Fortran applications linked against the shared library. Package: libx32gfortran-4.8-dev-arm64-cross Architecture: all Section: libdevel Priority: optional Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libx32gfortran3-arm64-cross, ${shlibs:Depends}, ${misc:Depends} Replaces: gfortran-4.8-multilib (<< ${gcc:SplitVersion}) Breaks: gfortran-4.8-multilib (<< ${gcc:SplitVersion}) Description: Runtime library for GNU Fortran applications (x32 development files) This package contains the headers and static library files needed to build GNU Fortran applications. Package: libx32gfortran3-dbg-arm64-cross Section: debug Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libx32gfortran3-arm64-cross (= ${gcc:Version}), ${misc:Depends} Description: Runtime library for GNU Fortran applications (x32 debug symbols) Library needed for GNU Fortran applications linked against the shared library. Package: libhfgfortran3-arm64-cross Section: devel Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: Runtime library for GNU Fortran applications (hard float ABI) Library needed for GNU Fortran applications linked against the shared library. Package: libhfgfortran-4.8-dev-arm64-cross Architecture: all Section: libdevel Priority: optional Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libhfgfortran3-arm64-cross, ${shlibs:Depends}, ${misc:Depends} Replaces: gfortran-4.8-multilib (<< ${gcc:SplitVersion}) Breaks: gfortran-4.8-multilib (<< ${gcc:SplitVersion}) Description: Runtime library for GNU Fortran applications (hard float ABI development files) This package contains the headers and static library files needed to build GNU Fortran applications. Package: libhfgfortran3-dbg-arm64-cross Section: debug Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libhfgfortran3-arm64-cross (= ${gcc:Version}), ${misc:Depends} Description: Runtime library for GNU Fortran applications (hard float ABI debug symbols) Library needed for GNU Fortran applications linked against the shared library. Package: libsfgfortran3-arm64-cross Section: devel Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: Runtime library for GNU Fortran applications (soft float ABI) Library needed for GNU Fortran applications linked against the shared library. Package: libsfgfortran-4.8-dev-arm64-cross Architecture: all Section: libdevel Priority: optional Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libsfgfortran3-arm64-cross, ${shlibs:Depends}, ${misc:Depends} Replaces: gfortran-4.8-multilib (<< ${gcc:SplitVersion}) Breaks: gfortran-4.8-multilib (<< ${gcc:SplitVersion}) Description: Runtime library for GNU Fortran applications (soft float ABI development files) This package contains the headers and static library files needed to build GNU Fortran applications. Package: libsfgfortran3-dbg-arm64-cross Section: debug Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libsfgfortran3-arm64-cross (= ${gcc:Version}), ${misc:Depends} Description: Runtime library for GNU Fortran applications (hard float ABI debug symbols) Library needed for GNU Fortran applications linked against the shared library. Package: gccgo-4.8-aarch64-linux-gnu Architecture: amd64 i386 Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), gcc-4.8-aarch64-linux-gnu (= ${gcc:Version}), libgo4-arm64-cross (>= ${gcc:Version}), ${dep:libcdev}, ${shlibs:Depends}, ${misc:Depends} Provides: go-compiler Suggests: ${go:multilib}, gccgo-4.8-doc, libgo4-dbg-arm64-cross Description: GNU Go compiler This is the GNU Go compiler, which compiles Go on platforms supported by the gcc compiler. It uses the gcc backend to generate optimized code. Package: gccgo-4.8-multilib-aarch64-linux-gnu Architecture: amd64 i386 Section: devel Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), gccgo-4.8-aarch64-linux-gnu (= ${gcc:Version}), gcc-4.8-multilib-aarch64-linux-gnu (= ${gcc:Version}), ${dep:libgobiarch}, ${shlibs:Depends}, ${misc:Depends} Suggests: ${dep:libgobiarchdbg} Description: GNU Go compiler (multilib files) This is the GNU Go compiler, which compiles Go on platforms supported by the gcc compiler. . On architectures with multilib support, the package contains files and dependencies for the non-default multilib architecture(s). Package: libgo4-arm64-cross Section: devel Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${shlibs:Depends}, ${misc:Depends} Description: Runtime library for GNU Go applications Library needed for GNU Go applications linked against the shared library. Package: libgo4-dbg-arm64-cross Section: debug Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libgo4-arm64-cross (= ${gcc:Version}), ${misc:Depends} Description: Runtime library for GNU Go applications (debug symbols) Library needed for GNU Go applications linked against the shared library. Package: lib64go4-arm64-cross Section: devel Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: Runtime library for GNU Go applications (64bit) Library needed for GNU Go applications linked against the shared library. Package: lib64go4-dbg-arm64-cross Section: debug Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), lib64go4-arm64-cross (= ${gcc:Version}), ${misc:Depends} Description: Runtime library for GNU Go applications (64bit debug symbols) Library needed for GNU Go applications linked against the shared library. Package: lib32go4-arm64-cross Section: devel Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Conflicts: ${confl:lib32} Description: Runtime library for GNU Go applications (32bit) Library needed for GNU Go applications linked against the shared library. Package: lib32go4-dbg-arm64-cross Section: debug Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), lib32go4-arm64-cross (= ${gcc:Version}), ${misc:Depends} Description: Runtime library for GNU Go applications (32 bit debug symbols) Library needed for GNU Go applications linked against the shared library. Package: libn32go4-arm64-cross Section: devel Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: Runtime library for GNU Go applications (n32) Library needed for GNU Go applications linked against the shared library. Package: libn32go4-dbg-arm64-cross Section: debug Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libn32go4-arm64-cross (= ${gcc:Version}), ${misc:Depends} Description: Runtime library for GNU Go applications (n32 debug symbols) Library needed for GNU Go applications linked against the shared library. Package: libx32go4-arm64-cross Section: devel Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: Runtime library for GNU Go applications (x32) Library needed for GNU Go applications linked against the shared library. Package: libx32go4-dbg-arm64-cross Section: debug Architecture: all Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libx32go4-arm64-cross (= ${gcc:Version}), ${misc:Depends} Description: Runtime library for GNU Go applications (x32 debug symbols) Library needed for GNU Go applications linked against the shared library. Package: libstdc++6-arm64-cross Architecture: all Section: devel Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${dep:libc}, ${shlibs:Depends}, ${misc:Depends} Provides: libstdc++6-arm64-dcv1 Conflicts: scim (<< 1.4.2-1) Description: GNU Standard C++ Library v3 This package contains an additional runtime library for C++ programs built with the GNU compiler. . libstdc++-v3 is a complete rewrite from the previous libstdc++-v2, which was included up to g++-2.95. The first version of libstdc++-v3 appeared in g++-3.0. . This package contains files for arm64 architecture, for use in cross-compile environment. Package: lib32stdc++6-arm64-cross Architecture: all Section: devel Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), lib32gcc1-arm64-cross, ${shlibs:Depends}, ${misc:Depends} Conflicts: ${confl:lib32} Provides: lib32stdc++6-arm64-dcv1 Description: GNU Standard C++ Library v3 (32 bit Version) This package contains an additional runtime library for C++ programs built with the GNU compiler. . This package contains files for arm64 architecture, for use in cross-compile environment. Package: lib64stdc++6-arm64-cross Architecture: all Section: devel Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${shlibs:Depends}, lib64gcc1-arm64-cross, ${misc:Depends} Provides: lib64stdc++6-arm64-dcv1 Description: GNU Standard C++ Library v3 (64bit) This package contains an additional runtime library for C++ programs built with the GNU compiler. . libstdc++-v3 is a complete rewrite from the previous libstdc++-v2, which was included up to g++-2.95. The first version of libstdc++-v3 appeared in g++-3.0. . This package contains files for arm64 architecture, for use in cross-compile environment. Package: libn32stdc++6-arm64-cross Architecture: all Section: devel Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${shlibs:Depends}, libn32gcc1-arm64-cross, ${misc:Depends} Provides: libn32stdc++6-arm64-dcv1 Description: GNU Standard C++ Library v3 (n32) This package contains an additional runtime library for C++ programs built with the GNU compiler. . libstdc++-v3 is a complete rewrite from the previous libstdc++-v2, which was included up to g++-2.95. The first version of libstdc++-v3 appeared in g++-3.0. . This package contains files for arm64 architecture, for use in cross-compile environment. Package: libx32stdc++6-arm64-cross Architecture: all Section: devel Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${shlibs:Depends}, libx32gcc1-arm64-cross, ${misc:Depends} Provides: libx32stdc++6-arm64-dcv1 Description: GNU Standard C++ Library v3 (x32) This package contains an additional runtime library for C++ programs built with the GNU compiler. . libstdc++-v3 is a complete rewrite from the previous libstdc++-v2, which was included up to g++-2.95. The first version of libstdc++-v3 appeared in g++-3.0. . This package contains files for arm64 architecture, for use in cross-compile environment. Package: libhfstdc++6-arm64-cross Architecture: all Section: devel Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${shlibs:Depends}, libhfgcc1-arm64-cross, ${misc:Depends} Provides: libhfstdc++6-arm64-dcv1 Description: GNU Standard C++ Library v3 (hard float ABI) This package contains an additional runtime library for C++ programs built with the GNU compiler. . libstdc++-v3 is a complete rewrite from the previous libstdc++-v2, which was included up to g++-2.95. The first version of libstdc++-v3 appeared in g++-3.0. . This package contains files for arm64 architecture, for use in cross-compile environment. Package: libsfstdc++6-arm64-cross Architecture: all Section: devel Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), ${shlibs:Depends}, libsfgcc1-arm64-cross, ${misc:Depends} Provides: libsfstdc++6-arm64-dcv1 Description: GNU Standard C++ Library v3 (soft float ABI) This package contains an additional runtime library for C++ programs built with the GNU compiler. . libstdc++-v3 is a complete rewrite from the previous libstdc++-v2, which was included up to g++-2.95. The first version of libstdc++-v3 appeared in g++-3.0. . This package contains files for arm64 architecture, for use in cross-compile environment. Package: libstdc++-4.8-dev-arm64-cross Architecture: all Section: devel Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libgcc-4.8-dev-arm64-cross (= ${gcc:Version}), libstdc++6-arm64-cross (>= ${gcc:Version}), ${dep:libcdev}, ${misc:Depends} Provides: libstdc++-dev-arm64-cross, libstdc++-dev-arm64-dcv1, libstdc++6-dev-arm64-dcv1 Description: GNU Standard C++ Library v3 (development files) This package contains the headers and static library files necessary for building C++ programs which use libstdc++. . libstdc++-v3 is a complete rewrite from the previous libstdc++-v2, which was included up to g++-2.95. The first version of libstdc++-v3 appeared in g++-3.0. . This package contains files for arm64 architecture, for use in cross-compile environment. Package: libstdc++-4.8-pic-arm64-cross Architecture: all Section: devel Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libstdc++6-arm64-cross (>= ${gcc:Version}), libstdc++6-4.8-dev-arm64-cross (= ${gcc:Version}), ${misc:Depends} Provides: libstdc++-pic-arm64-dcv1 Description: GNU Standard C++ Library v3 (shared library subset kit) This is used to develop subsets of the libstdc++ shared libraries for use on custom installation floppies and in embedded systems. . Unless you are making one of those, you will not need this package. . This package contains files for arm64 architecture, for use in cross-compile environment. Package: libstdc++6-4.8-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libstdc++6-arm64-cross (>= ${gcc:Version}), libgcc1-dbg-arm64-cross, ${shlibs:Depends}, ${misc:Depends} Provides: libstdc++6-dbg-arm64-dcv1 Recommends: libstdc++6-4.8-dev-arm64-cross (= ${gcc:Version}) Conflicts: libstdc++5-dbg-arm64-cross, libstdc++5-3.3-dbg-arm64-cross, libstdc++6-dbg-arm64-cross, libstdc++6-4.0-dbg-arm64-cross, libstdc++6-4.1-dbg-arm64-cross, libstdc++6-4.2-dbg-arm64-cross, libstdc++6-4.3-dbg-arm64-cross, libstdc++6-4.4-dbg-arm64-cross, libstdc++6-4.5-dbg-arm64-cross, libstdc++6-4.6-dbg-arm64-cross Description: GNU Standard C++ Library v3 (debugging files) This package contains the shared library of libstdc++ compiled with debugging symbols. . This package contains files for arm64 architecture, for use in cross-compile environment. Package: lib32stdc++-4.8-dev-arm64-cross Architecture: all Section: devel Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), lib32gcc-4.8-dev-arm64-cross (= ${gcc:Version}), lib32stdc++6-arm64-cross (>= ${gcc:Version}), libstdc++6-4.8-dev (= ${gcc:Version}), ${misc:Depends} Description: GNU Standard C++ Library v3 (development files) (arm64) This package contains the headers and static library files necessary for building C++ programs which use libstdc++. . libstdc++-v3 is a complete rewrite from the previous libstdc++-v2, which was included up to g++-2.95. The first version of libstdc++-v3 appeared in g++-3.0. . This package contains files for arm64 architecture, for use in cross-compile environment. Package: lib32stdc++6-4.8-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), lib32stdc++6-arm64-cross (>= ${gcc:Version}), libstdc++6-4.8-dev-arm64-cross (= ${gcc:Version}), lib32gcc1-dbg-arm64-cross, ${shlibs:Depends}, ${misc:Depends} Provides: lib32stdc++6-dbg-arm64-dcv1 Conflicts: lib32stdc++6-dbg-arm64-cross, lib32stdc++6-4.0-dbg-arm64-cross, lib32stdc++6-4.1-dbg-arm64-cross, lib32stdc++6-4.2-dbg-arm64-cross, lib32stdc++6-4.3-dbg-arm64-cross, lib32stdc++6-4.4-dbg-arm64-cross, lib32stdc++6-4.5-dbg-arm64-cross, lib32stdc++6-4.6-dbg-arm64-cross Description: GNU Standard C++ Library v3 (debugging files) This package contains the shared library of libstdc++ compiled with debugging symbols. . This package contains files for arm64 architecture, for use in cross-compile environment. Package: lib64stdc++-4.8-dev-arm64-cross Architecture: all Section: devel Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), lib64gcc-4.8-dev-arm64-cross (= ${gcc:Version}), lib64stdc++6-arm64-cross (>= ${gcc:Version}), libstdc++6-4.8-dev (= ${gcc:Version}), ${misc:Depends} Description: GNU Standard C++ Library v3 (development files) (arm64) This package contains the headers and static library files necessary for building C++ programs which use libstdc++. . libstdc++-v3 is a complete rewrite from the previous libstdc++-v2, which was included up to g++-2.95. The first version of libstdc++-v3 appeared in g++-3.0. . This package contains files for arm64 architecture, for use in cross-compile environment. Package: lib64stdc++6-4.8-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), lib64stdc++6-arm64-cross (>= ${gcc:Version}), libstdc++6-4.8-dev-arm64-cross (= ${gcc:Version}), lib64gcc1-dbg-arm64-cross, ${shlibs:Depends}, ${misc:Depends} Provides: lib64stdc++6-dbg-arm64-dcv1 Conflicts: lib64stdc++6-dbg-arm64-cross, lib64stdc++6-4.0-dbg-arm64-cross, lib64stdc++6-4.1-dbg-arm64-cross, lib64stdc++6-4.2-dbg-arm64-cross, lib64stdc++6-4.3-dbg-arm64-cross, lib64stdc++6-4.4-dbg-arm64-cross, lib64stdc++6-4.5-dbg-arm64-cross, lib64stdc++6-4.6-dbg-arm64-cross Description: GNU Standard C++ Library v3 (debugging files) This package contains the shared library of libstdc++ compiled with debugging symbols. . This package contains files for arm64 architecture, for use in cross-compile environment. Package: libn32stdc++-4.8-dev-arm64-cross Architecture: all Section: devel Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libn32gcc-4.8-dev-arm64-cross (= ${gcc:Version}), libn32stdc++6-arm64-cross (>= ${gcc:Version}), libstdc++6-4.8-dev (= ${gcc:Version}), ${misc:Depends} Description: GNU Standard C++ Library v3 (development files) (arm64) This package contains the headers and static library files necessary for building C++ programs which use libstdc++. . libstdc++-v3 is a complete rewrite from the previous libstdc++-v2, which was included up to g++-2.95. The first version of libstdc++-v3 appeared in g++-3.0. . This package contains files for arm64 architecture, for use in cross-compile environment. Package: libn32stdc++6-4.8-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libn32stdc++6-arm64-cross (>= ${gcc:Version}), libstdc++6-4.8-dev-arm64-cross (= ${gcc:Version}), libn32gcc1-dbg-arm64-cross, ${shlibs:Depends}, ${misc:Depends} Provides: libn32stdc++6-dbg-arm64-dcv1 Conflicts: libn32stdc++6-dbg-arm64-cross, libn32stdc++6-4.0-dbg-arm64-cross, libn32stdc++6-4.1-dbg-arm64-cross, libn32stdc++6-4.2-dbg-arm64-cross, libn32stdc++6-4.3-dbg-arm64-cross, libn32stdc++6-4.4-dbg-arm64-cross, libn32stdc++6-4.5-dbg-arm64-cross, libn32stdc++6-4.6-dbg-arm64-cross Description: GNU Standard C++ Library v3 (debugging files) This package contains the shared library of libstdc++ compiled with debugging symbols. . This package contains files for arm64 architecture, for use in cross-compile environment. Package: libx32stdc++-4.8-dev-arm64-cross Architecture: all Section: devel Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libx32gcc-4.8-dev-arm64-cross (= ${gcc:Version}), libx32stdc++6-arm64-cross (>= ${gcc:Version}), libstdc++6-4.8-dev (= ${gcc:Version}), ${misc:Depends} Description: GNU Standard C++ Library v3 (development files) (arm64) This package contains the headers and static library files necessary for building C++ programs which use libstdc++. . libstdc++-v3 is a complete rewrite from the previous libstdc++-v2, which was included up to g++-2.95. The first version of libstdc++-v3 appeared in g++-3.0. . This package contains files for arm64 architecture, for use in cross-compile environment. Package: libx32stdc++6-4.8-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libx32stdc++6-arm64-cross (>= ${gcc:Version}), libstdc++6-4.8-dev-arm64-cross (= ${gcc:Version}), libx32gcc1-dbg-arm64-cross, ${shlibs:Depends}, ${misc:Depends} Provides: libx32stdc++6-dbg-arm64-dcv1 Conflicts: libx32stdc++6-dbg-arm64-cross, libx32stdc++6-4.0-dbg-arm64-cross, libx32stdc++6-4.1-dbg-arm64-cross, libx32stdc++6-4.2-dbg-arm64-cross, libx32stdc++6-4.3-dbg-arm64-cross, libx32stdc++6-4.4-dbg-arm64-cross, libx32stdc++6-4.5-dbg-arm64-cross, libx32stdc++6-4.6-dbg-arm64-cross Description: GNU Standard C++ Library v3 (debugging files) This package contains the shared library of libstdc++ compiled with debugging symbols. . This package contains files for arm64 architecture, for use in cross-compile environment. Package: libhfstdc++-4.8-dev-arm64-cross Architecture: all Section: devel Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libhfgcc-4.8-dev-arm64-cross (= ${gcc:Version}), libhfstdc++6-arm64-cross (>= ${gcc:Version}), libstdc++6-4.8-dev (= ${gcc:Version}), ${misc:Depends} Description: GNU Standard C++ Library v3 (development files) (arm64) This package contains the headers and static library files necessary for building C++ programs which use libstdc++. . libstdc++-v3 is a complete rewrite from the previous libstdc++-v2, which was included up to g++-2.95. The first version of libstdc++-v3 appeared in g++-3.0. . This package contains files for arm64 architecture, for use in cross-compile environment. Package: libhfstdc++6-4.8-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libhfstdc++6-arm64-cross (>= ${gcc:Version}), libstdc++6-4.8-dev-arm64-cross (= ${gcc:Version}), libhfgcc1-dbg-arm64-cross, ${shlibs:Depends}, ${misc:Depends} Provides: libhfstdc++6-dbg-arm64-dcv1 Description: GNU Standard C++ Library v3 (debugging files) This package contains the shared library of libstdc++ compiled with debugging symbols. . This package contains files for arm64 architecture, for use in cross-compile environment. Package: libsfstdc++-4.8-dev-arm64-cross Architecture: all Section: devel Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libsfgcc-4.8-dev-arm64-cross (= ${gcc:Version}), libsfstdc++6-arm64-cross (>= ${gcc:Version}), libstdc++6-4.8-dev (= ${gcc:Version}), ${misc:Depends} Description: GNU Standard C++ Library v3 (development files) (arm64) This package contains the headers and static library files necessary for building C++ programs which use libstdc++. . libstdc++-v3 is a complete rewrite from the previous libstdc++-v2, which was included up to g++-2.95. The first version of libstdc++-v3 appeared in g++-3.0. . This package contains files for arm64 architecture, for use in cross-compile environment. Package: libsfstdc++6-4.8-dbg-arm64-cross Architecture: all Section: debug Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libsfstdc++6-arm64-cross (>= ${gcc:Version}), libstdc++6-4.8-dev-arm64-cross (= ${gcc:Version}), libsfgcc1-dbg-arm64-cross, ${shlibs:Depends}, ${misc:Depends} Provides: libsfstdc++6-dbg-arm64-dcv1 Description: GNU Standard C++ Library v3 (debugging files) This package contains the shared library of libstdc++ compiled with debugging symbols. . This package contains files for arm64 architecture, for use in cross-compile environment. Package: gcj-4.8-aarch64-linux-gnu Architecture: amd64 i386 Priority: extra Section: java Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), gcc-4.8-aarch64-linux-gnu (= ${gcc:Version}), ${dep:libcdev}, ${shlibs:Depends}, ${misc:Depends} Suggests: gcj-4.8-doc Description: GNU Java compiler This is the GNU Java compiler, which compiles Java on platforms supported by the gcc compiler. It uses the gcc backend to generate optimized code. Package: gdc-4.8-aarch64-linux-gnu Architecture: amd64 i386 Priority: extra Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), g++-4.8-aarch64-linux-gnu (= ${gcc:Version}), ${dep:libcdev}, ${shlibs:Depends}, ${misc:Depends} Provides: d-compiler, d-v2-compiler Suggests: ${gdc:multilib}, libphobos-dbg-arm64-cross Description: GNU D compiler (version 2), based on the GCC backend This is the GNU D compiler, which compiles D on platforms supported by gcc. It uses the gcc backend to generate optimised code. . This compiler supports D language version 2. Package: libphobos-4.8-dev-arm64-cross Architecture: all Section: libdevel Priority: optional Depends: gcc-4.8-aarch64-linux-gnu-base (= ${gcc:Version}), libgcc-4.8-dev-arm64-cross (= ${gcc:Version}), ${shlibs:Depends}, ${misc:Depends} Description: Phobos D standard library This is the Phobos standard library that comes with the D2 compiler. Package: gcc-4.8-source Architecture: all Priority: optional Depends: make (>= 3.81), autoconf2.64, automake, quilt, patchutils, gawk, ${misc:Depends} Description: Source of the GNU Compiler Collection This package contains the sources and patches which are needed to build the GNU Compiler Collection (GCC). gcc-4.8-arm64-cross-0.11.2/debian/control.in0000664000000000000000000030373412224550237015052 0ustar Source: gcc-GCC_VER-CROSS_ARCH-cross Section: devel Priority: extra Maintainer: Ubuntu Core developers Standards-Version: 3.9.4 Vcs-bzr: lp:ubuntu/gcc-GCC_VER-CROSS_ARCH-cross Build-Depends: gcc-GCC_VER-source (>= MIN_VER_GCC), binutils-multiarch (>= VER_BINUTILS), autoconf2.64, autogen, binutils-CROSS_GNU_TYPE (>= MIN_VER_BINUTILS), bison (>= 1:2.3), chrpath, debhelper (>= 5.0.62), dpkg-dev (>= 1.14.15), flex, gawk, gettext, gperf (>= 3.0.1), libc6-dev-CROSS_ARCH-cross (>= 2.13-20ubuntu10), EXTRA_BUILD_DEPS, libcloog-isl-dev (>= VER_CLOOG), libmpc-dev, libmpfr-dev (>= 2.3.0), libtool, lsb-release, m4, make (>= 3.81), patchutils, procps, quilt, realpath (>= 1.9.12), sharutils, texinfo (>= 4.3), gcj-GCC_VER-jdk, xz-utils, zlib1g-dev Homepage: http://gcc.gnu.org/ Package: gcc-GCC_VER-CROSS_GNU_TYPE-base Architecture: @host_archs@ Section: devel Priority: extra Depends: ${misc:Depends} Description: GCC, the GNU Compiler Collection (base package) This package contains files common to all languages and libraries contained in the GNU Compiler Collection (GCC). Package: libgcc1-CROSS_ARCH-cross Architecture: all Section: devel Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${shlibs:Depends}, ${misc:Depends} Provides: libgcc1-CROSS_ARCH-dcv1 Description: GCC support library Shared version of the support library, a library of internal subroutines that GCC uses to overcome shortcomings of particular machines, or special needs for some languages. . This package contains files for CROSS_ARCH architecture, for use in cross-compile environment. Package: libgcc-GCC_VER-dev-CROSS_ARCH-cross Architecture: all Section: libdevel Priority: optional Recommends: ${dep:libcdev} Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libgcc}, ${dep:libssp}, ${dep:libgomp}, ${dep:libitm}, ${dep:libatomic}, ${dep:libbtrace}, ${dep:libasan}, ${dep:libtsan}, ${dep:libqmath}, ${dep:libunwinddev}, ${shlibs:Depends}, ${misc:Depends} Replaces: gcc-GCC_VER (<< ${gcc:SplitVersion}) Description: GCC support library (development files) This package contains the headers and static library files necessary for building C programs which use libgcc, libgomp, libquadmath, libssp or libitm. Package: libgcc1-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libgcc1-CROSS_ARCH-cross (= ${gcc:EpochVersion}), ${misc:Depends} Description: GCC support library (debug symbols) Debug symbols for the GCC support library. . This package contains files for CROSS_ARCH architecture, for use in cross-compile environment. Package: libgcc2-CROSS_ARCH-cross Architecture: all Section: devel Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${shlibs:Depends}, ${misc:Depends} Provides: libgcc2-CROSS_ARCH-dcv1 Description: GCC support library Shared version of the support library, a library of internal subroutines that GCC uses to overcome shortcomings of particular machines, or special needs for some languages. . This package contains files for CROSS_ARCH architecture, for use in cross-compile environment. Package: libgcc2-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libgcc2-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Description: GCC support library (debug symbols) Debug symbols for the GCC support library. . This package contains files for CROSS_ARCH architecture, for use in cross-compile environment. Package: libgcc4-CROSS_ARCH-cross Architecture: all Section: devel Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${shlibs:Depends}, ${misc:Depends} Description: GCC support library Shared version of the support library, a library of internal subroutines that GCC uses to overcome shortcomings of particular machines, or special needs for some languages. . This package contains files for CROSS_ARCH architecture, for use in cross-compile environment. Package: libgcc4-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libgcc4-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Description: GCC support library (debug symbols) Debug symbols for the GCC support library. . This package contains files for CROSS_ARCH architecture, for use in cross-compile environment. Package: lib64gcc1-CROSS_ARCH-cross Architecture: all Section: devel Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${misc:Depends} Provides: lib64gcc1-CROSS_ARCH-dcv1 Conflicts: libgcc1-CROSS_ARCH-cross (<= 1:3.3-0pre9) Description: GCC support library (64bit) Shared version of the support library, a library of internal subroutines that GCC uses to overcome shortcomings of particular machines, or special needs for some languages. . This package contains files for CROSS_ARCH architecture, for use in cross-compile environment. Package: lib64gcc-GCC_VER-dev-CROSS_ARCH-cross Architecture: all Section: libdevel Priority: optional Recommends: ${dep:libcdev} Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libgccbiarch}, ${dep:libsspbiarch}, ${dep:libgompbiarch}, ${dep:libitmbiarch}, ${dep:libatomicbiarch}, ${dep:libbtracebiarch}, ${dep:libasanbiarch}, ${dep:libtsanbiarch}, ${dep:libqmathbiarch}, ${shlibs:Depends}, ${misc:Depends} Replaces: gcc-GCC_VER-multilib (<< ${gcc:SplitVersion}) Description: GCC support library (64bit development files) This package contains the headers and static library files necessary for building C programs which use libgcc, libgomp, libquadmath, libssp or libitm. Package: lib64gcc1-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), lib64gcc1-CROSS_ARCH-cross (= ${gcc:EpochVersion}), ${misc:Depends} Description: GCC support library (debug symbols) Debug symbols for the GCC support library. . This package contains files for CROSS_ARCH architecture, for use in cross-compile environment. Package: lib32gcc1-CROSS_ARCH-cross Architecture: all Section: devel Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${misc:Depends} Conflicts: ${confl:lib32} Provides: lib32gcc1-CROSS_ARCH-dcv1 Description: GCC support library (32 bit Version) Shared version of the support library, a library of internal subroutines that GCC uses to overcome shortcomings of particular machines, or special needs for some languages. . This package contains files for CROSS_ARCH architecture, for use in cross-compile environment. Package: lib32gcc-GCC_VER-dev-CROSS_ARCH-cross Architecture: all Section: libdevel Priority: optional Recommends: ${dep:libcdev} Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libgccbiarch}, ${dep:libsspbiarch}, ${dep:libgompbiarch}, ${dep:libitmbiarch}, ${dep:libatomicbiarch}, ${dep:libbtracebiarch}, ${dep:libasanbiarch}, ${dep:libtsanbiarch}, ${dep:libqmathbiarch}, ${shlibs:Depends}, ${misc:Depends} Replaces: gcc-GCC_VER-multilib (<< ${gcc:SplitVersion}) Description: GCC support library (32 bit development files) This package contains the headers and static library files necessary for building C programs which use libgcc, libgomp, libquadmath, libssp or libitm. Package: lib32gcc1-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), lib32gcc1-CROSS_ARCH-cross (= ${gcc:EpochVersion}), ${misc:Depends} Description: GCC support library (debug symbols) Debug symbols for the GCC support library. . This package contains files for CROSS_ARCH architecture, for use in cross-compile environment. Package: libhfgcc1-CROSS_ARCH-cross Architecture: all Section: devel Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${misc:Depends} Provides: libhfgcc1-CROSS_ARCH-dcv1 Description: GCC support library (hard float ABI) Shared version of the support library, a library of internal subroutines that GCC uses to overcome shortcomings of particular machines, or special needs for some languages. . This package contains files for CROSS_ARCH architecture, for use in cross-compile environment. Package: libhfgcc-GCC_VER-dev-CROSS_ARCH-cross Architecture: all Section: libdevel Priority: optional Recommends: ${dep:libcdev} Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libgccbiarch}, ${dep:libsspbiarch}, ${dep:libgompbiarch}, ${dep:libitmbiarch}, ${dep:libatomicbiarch}, ${dep:libbtracebiarch}, ${dep:libasanbiarch}, ${dep:libtsanbiarch}, ${dep:libqmathbiarch}, ${shlibs:Depends}, ${misc:Depends} Replaces: gcc-GCC_VER-multilib (<< ${gcc:SplitVersion}) Description: GCC support library (hard float ABI development files) This package contains the headers and static library files necessary for building C programs which use libgcc, libgomp, libquadmath, libssp or libitm. Package: libhfgcc1-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libhfgcc1-CROSS_ARCH-cross (= ${gcc:EpochVersion}), ${misc:Depends} Description: GCC support library (debug symbols) Debug symbols for the GCC support library. . This package contains files for CROSS_ARCH architecture, for use in cross-compile environment. Package: libsfgcc1-CROSS_ARCH-cross Architecture: all Section: devel Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${misc:Depends} Provides: libsfgcc1-CROSS_ARCH-dcv1 Description: GCC support library (soft float ABI) Shared version of the support library, a library of internal subroutines that GCC uses to overcome shortcomings of particular machines, or special needs for some languages. . This package contains files for CROSS_ARCH architecture, for use in cross-compile environment. Package: libsfgcc-GCC_VER-dev-CROSS_ARCH-cross Architecture: all Section: libdevel Priority: optional Recommends: ${dep:libcdev} Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libgccbiarch}, ${dep:libsspbiarch}, ${dep:libgompbiarch}, ${dep:libitmbiarch}, ${dep:libatomicbiarch}, ${dep:libbtracebiarch}, ${dep:libasanbiarch}, ${dep:libtsanbiarch}, ${dep:libqmathbiarch}, ${shlibs:Depends}, ${misc:Depends} Replaces: gcc-GCC_VER-multilib (<< ${gcc:SplitVersion}) Description: GCC support library (soft float ABI development files) This package contains the headers and static library files necessary for building C programs which use libgcc, libgomp, libquadmath, libssp or libitm. Package: libsfgcc1-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libsfgcc1-CROSS_ARCH-cross (= ${gcc:EpochVersion}), ${misc:Depends} Description: GCC support library (debug symbols) Debug symbols for the GCC support library. . This package contains files for CROSS_ARCH architecture, for use in cross-compile environment. Package: libn32gcc1-CROSS_ARCH-cross Architecture: all Section: devel Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${misc:Depends} Provides: libn32gcc1-CROSS_ARCH-dcv1 Conflicts: libgcc1-CROSS_ARCH-cross (<= 1:3.3-0pre9) Description: GCC support library (n32) Shared version of the support library, a library of internal subroutines that GCC uses to overcome shortcomings of particular machines, or special needs for some languages. . This package contains files for CROSS_ARCH architecture, for use in cross-compile environment. Package: libn32gcc-GCC_VER-dev-CROSS_ARCH-cross Architecture: all Section: libdevel Priority: optional Recommends: ${dep:libcdev} Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libgccbiarch}, ${dep:libsspbiarch}, ${dep:libgompbiarch}, ${dep:libitmbiarch}, ${dep:libatomicbiarch}, ${dep:libbtracebiarch}, ${dep:libasanbiarch}, ${dep:libtsanbiarch}, ${dep:libqmathbiarch}, ${shlibs:Depends}, ${misc:Depends} Replaces: gcc-GCC_VER-multilib (<< ${gcc:SplitVersion}) Description: GCC support library (n32 development files) This package contains the headers and static library files necessary for building C programs which use libgcc, libgomp, libquadmath, libssp or libitm. Package: libn32gcc1-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libn32gcc1-CROSS_ARCH-cross (= ${gcc:EpochVersion}), ${misc:Depends} Description: GCC support library (debug symbols) Debug symbols for the GCC support library. . This package contains files for CROSS_ARCH architecture, for use in cross-compile environment. Package: libx32gcc1-CROSS_ARCH-cross Architecture: all Section: devel Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${misc:Depends} Provides: libx32gcc1-CROSS_ARCH-dcv1 Description: GCC support library (x32) Shared version of the support library, a library of internal subroutines that GCC uses to overcome shortcomings of particular machines, or special needs for some languages. . This package contains files for CROSS_ARCH architecture, for use in cross-compile environment. Package: libx32gcc-GCC_VER-dev-CROSS_ARCH-cross Architecture: all Section: libdevel Priority: optional Recommends: ${dep:libcdev} Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libgccbiarch}, ${dep:libsspbiarch}, ${dep:libgompbiarch}, ${dep:libitmbiarch}, ${dep:libatomicbiarch}, ${dep:libbtracebiarch}, ${dep:libasanbiarch}, ${dep:libtsanbiarch}, ${dep:libqmathbiarch}, ${shlibs:Depends}, ${misc:Depends} Replaces: gcc-GCC_VER-multilib (<< ${gcc:SplitVersion}) Description: GCC support library (x32 development files) This package contains the headers and static library files necessary for building C programs which use libgcc, libgomp, libquadmath, libssp or libitm. Package: libx32gcc1-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libx32gcc1-CROSS_ARCH-cross (= ${gcc:EpochVersion}), ${misc:Depends} Description: GCC support library (debug symbols) Debug symbols for the GCC support library. . This package contains files for CROSS_ARCH architecture, for use in cross-compile environment. Package: gcc-GCC_VER-CROSS_GNU_TYPE Architecture: @host_archs@ Section: devel Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), cpp-GCC_VER-CROSS_GNU_TYPE (= ${gcc:Version}), binutils-CROSS_GNU_TYPE (>= ${binutils:Version}), libgcc-GCC_VER-dev-CROSS_ARCH-cross (= ${gcc:Version}), ${shlibs:Depends}, ${misc:Depends} Recommends: ${dep:libcdev} Suggests: ${gcc:multilib}, libmudflap0-GCC_VER-dev-CROSS_ARCH-cross (>= ${gcc:Version}), gcc-GCC_VER-doc (>= ${gcc:SoftVersion}), gcc-GCC_VER-locales (>= ${gcc:SoftVersion}), libgcc1-dbg-CROSS_ARCH-cross, libgomp1-dbg-CROSS_ARCH-cross, libitm1-dbg-CROSS_ARCH-cross, libatomic1-dbg-CROSS_ARCH-cross, libtsan0-dbg-CROSS_ARCH-cross, libbacktrace1-dbg-CROSS_ARCH-cross, libquadmath-dbg-CROSS_ARCH-cross, libmudflap0-dbg-CROSS_ARCH-cross, ${dep:libcloog}, ${dep:gold} Provides: c-compiler-CROSS_GNU_TYPE Description: GNU C compiler This is the GNU C compiler, a fairly portable optimizing compiler for C. . This package contains C cross-compiler for CROSS_ARCH architecture. Package: gcc-GCC_VER-multilib-CROSS_GNU_TYPE Architecture: @host_archs@ Section: devel Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), gcc-GCC_VER-CROSS_GNU_TYPE (= ${gcc:Version}), ${dep:libcbiarchdev}, ${dep:libgccbiarchdev}, ${shlibs:Depends}, ${misc:Depends} Suggests: ${dep:libmudflapbiarch} Description: GNU C compiler (multilib files) This is the GNU C compiler, a fairly portable optimizing compiler for C. . On architectures with multilib support, the package contains files and dependencies for the non-default multilib architecture(s). Package: gcc-GCC_VER-plugin-dev-CROSS_GNU_TYPE Architecture: @host_archs@ Section: devel Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), gcc-GCC_VER-CROSS_GNU_TYPE (= ${gcc:Version}), libgmp-dev (>= 2:5.0.1~), ${shlibs:Depends}, ${misc:Depends} Description: Files for GNU GCC plugin development. This package contains (header) files for GNU GCC plugin development. It is only used for the development of GCC plugins, but not needed to run plugins. Package: gcc-GCC_VER-hppa64 Architecture: @host_archs@ Section: devel Priority: optional Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${shlibs:Depends}, ${misc:Depends} Conflicts: gcc-3.3-hppa64 (<= 1:3.3.4-5), gcc-3.4-hppa64 (<= 3.4.1-3) Description: GNU C compiler (cross compiler for hppa64) This is the GNU C compiler, a fairly portable optimizing compiler for C. Package: cpp-GCC_VER-CROSS_GNU_TYPE Architecture: @host_archs@ Section: devel Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${shlibs:Depends}, ${misc:Depends} Suggests: gcc-GCC_VER-locales (>= ${gcc:SoftVersion}) Replaces: gcc-4.6 (<< 4.6.1-9) Description: GNU C preprocessor A macro processor that is used automatically by the GNU C compiler to transform programs before actual compilation. . This package has been separated from gcc for the benefit of those who require the preprocessor but not the compiler. . This package contains preprocessor configured for CROSS_ARCH architecture. Package: g++-GCC_VER-CROSS_GNU_TYPE Architecture: @host_archs@ Section: devel Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), gcc-GCC_VER-CROSS_GNU_TYPE (= ${gcc:Version}), libstdc++-GCC_VER-dev-CROSS_ARCH-cross (= ${gcc:Version}), ${shlibs:Depends}, ${misc:Depends} Provides: c++-compiler-CROSS_GNU_TYPE, c++abi2-dev Suggests: ${gxx:multilib}, gcc-GCC_VER-doc (>= ${gcc:SoftVersion}), libstdc++6-GCC_VER-dbg-CROSS_ARCH-cross Description: GNU C++ compiler This is the GNU C++ compiler, a fairly portable optimizing compiler for C++. . This package contains C++ cross-compiler for CROSS_ARCH architecture. Package: g++-GCC_VER-multilib-CROSS_GNU_TYPE Architecture: @host_archs@ Section: devel Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), g++-GCC_VER-CROSS_GNU_TYPE (= ${gcc:Version}), gcc-GCC_VER-multilib-CROSS_GNU_TYPE (= ${gcc:Version}), ${dep:libcxxbiarchdev}, ${shlibs:Depends}, ${misc:Depends} Suggests: ${dep:libcxxbiarchdbg} Description: GNU C++ compiler (multilib files) This is the GNU C++ compiler, a fairly portable optimizing compiler for C++. . On architectures with multilib support, the package contains files and dependencies for the non-default multilib architecture(s). Package: libmudflap0-CROSS_ARCH-cross Architecture: all Section: devel Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${shlibs:Depends}, ${misc:Depends} Description: GCC mudflap shared support libraries The libmudflap libraries are used by GCC for instrumenting pointer and array dereferencing operations. Package: libmudflap0-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libmudflap0-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Description: GCC mudflap shared support libraries (debug symbols) The libmudflap libraries are used by GCC for instrumenting pointer and array dereferencing operations. Package: lib32mudflap0-CROSS_ARCH-cross Architecture: all Section: devel Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Replaces: libmudflap0 (<< 4.1) Conflicts: ${confl:lib32} Description: GCC mudflap shared support libraries (32bit) The libmudflap libraries are used by GCC for instrumenting pointer and array dereferencing operations. Package: lib32mudflap0-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), lib32mudflap0-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Description: GCC mudflap shared support libraries (32 bit debug symbols) The libmudflap libraries are used by GCC for instrumenting pointer and array dereferencing operations. Package: lib64mudflap0-CROSS_ARCH-cross Architecture: all Section: devel Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Replaces: libmudflap0 (<< 4.1) Description: GCC mudflap shared support libraries (64bit) The libmudflap libraries are used by GCC for instrumenting pointer and array dereferencing operations. Package: lib64mudflap0-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), lib64mudflap0-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Description: GCC mudflap shared support libraries (64 bit debug symbols) The libmudflap libraries are used by GCC for instrumenting pointer and array dereferencing operations. Package: libn32mudflap0-CROSS_ARCH-cross Architecture: all Section: devel Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Replaces: libmudflap0 (<< 4.1) Description: GCC mudflap shared support libraries (n32) The libmudflap libraries are used by GCC for instrumenting pointer and array dereferencing operations. Package: libn32mudflap0-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libn32mudflap0-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Description: GCC mudflap shared support libraries (n32 debug symbols) The libmudflap libraries are used by GCC for instrumenting pointer and array dereferencing operations. Package: libx32mudflap0-CROSS_ARCH-cross Architecture: all Section: devel Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Replaces: libmudflap0 (<< 4.1) Description: GCC mudflap shared support libraries (x32) The libmudflap libraries are used by GCC for instrumenting pointer and array dereferencing operations. Package: libx32mudflap0-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libx32mudflap0-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Description: GCC mudflap shared support libraries (x32 debug symbols) The libmudflap libraries are used by GCC for instrumenting pointer and array dereferencing operations. Package: libhfmudflap0-CROSS_ARCH-cross Architecture: all Section: devel Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: GCC mudflap shared support libraries (hard float) The libmudflap libraries are used by GCC for instrumenting pointer and array dereferencing operations. Package: libhfmudflap0-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libhfmudflap0-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Description: GCC mudflap shared support libraries (hard float debug symbols) The libmudflap libraries are used by GCC for instrumenting pointer and array dereferencing operations. Package: libsfmudflap0-CROSS_ARCH-cross Architecture: all Section: devel Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: GCC mudflap shared support libraries (soft float) The libmudflap libraries are used by GCC for instrumenting pointer and array dereferencing operations. Package: libsfmudflap0-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libsfmudflap0-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Description: GCC mudflap shared support libraries (soft float debug symbols) The libmudflap libraries are used by GCC for instrumenting pointer and array dereferencing operations. Package: libmudflap0-GCC_VER-dev-CROSS_ARCH-cross Architecture: all Section: devel Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libmudflap0-CROSS_ARCH-cross (>= ${gcc:Version}), ${dep:libcdev}, ${shlibs:Depends}, ${misc:Depends} Suggests: ${sug:libmudflapdev} Conflicts: libmudflap0-dev Description: GCC mudflap support libraries (development files) The libmudflap libraries are used by GCC for instrumenting pointer and array dereferencing operations. . This package contains the headers and the static libraries. Package: libgomp1-CROSS_ARCH-cross Section: devel Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${shlibs:Depends}, ${misc:Depends} Description: GCC OpenMP (GOMP) support library GOMP is an implementation of OpenMP for the C, C++, and Fortran compilers in the GNU Compiler Collection. Package: libgomp1-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libgomp1-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Description: GCC OpenMP (GOMP) support library (debug symbols) GOMP is an implementation of OpenMP for the C, C++, and Fortran compilers in the GNU Compiler Collection. Package: lib32gomp1-CROSS_ARCH-cross Section: devel Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Conflicts: ${confl:lib32} Description: GCC OpenMP (GOMP) support library (32bit) GOMP is an implementation of OpenMP for the C, C++, and Fortran compilers in the GNU Compiler Collection. Package: lib32gomp1-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), lib32gomp1-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Description: GCC OpenMP (GOMP) support library (32 bit debug symbols) GOMP is an implementation of OpenMP for the C, C++, and Fortran compilers in the GNU Compiler Collection. Package: lib64gomp1-CROSS_ARCH-cross Section: devel Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: GCC OpenMP (GOMP) support library (64bit) GOMP is an implementation of OpenMP for the C, C++, and Fortran compilers in the GNU Compiler Collection. Package: lib64gomp1-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), lib64gomp1-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Description: GCC OpenMP (GOMP) support library (64bit debug symbols) GOMP is an implementation of OpenMP for the C, C++, and Fortran compilers in the GNU Compiler Collection. Package: libn32gomp1-CROSS_ARCH-cross Section: devel Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: GCC OpenMP (GOMP) support library (n32) GOMP is an implementation of OpenMP for the C, C++, and Fortran compilers in the GNU Compiler Collection. Package: libn32gomp1-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libn32gomp1-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Description: GCC OpenMP (GOMP) support library (n32 debug symbols) GOMP is an implementation of OpenMP for the C, C++, and Fortran compilers Package: libx32gomp1-CROSS_ARCH-cross Section: devel Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: GCC OpenMP (GOMP) support library (x32) GOMP is an implementation of OpenMP for the C, C++, and Fortran compilers in the GNU Compiler Collection. Package: libx32gomp1-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libx32gomp1-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Description: GCC OpenMP (GOMP) support library (x32 debug symbols) GOMP is an implementation of OpenMP for the C, C++, and Fortran compilers Package: libhfgomp1-CROSS_ARCH-cross Section: devel Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: GCC OpenMP (GOMP) support library (hard float ABI) GOMP is an implementation of OpenMP for the C, C++, and Fortran compilers in the GNU Compiler Collection. Package: libhfgomp1-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libhfgomp1-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Description: GCC OpenMP (GOMP) support library (hard float ABI debug symbols) GOMP is an implementation of OpenMP for the C, C++, and Fortran compilers Package: libsfgomp1-CROSS_ARCH-cross Section: devel Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: GCC OpenMP (GOMP) support library (soft float ABI) GOMP is an implementation of OpenMP for the C, C++, and Fortran compilers in the GNU Compiler Collection. Package: libsfgomp1-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libsfgomp1-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Description: GCC OpenMP (GOMP) support library (soft float ABI debug symbols) GOMP is an implementation of OpenMP for the C, C++, and Fortran compilers Package: libitm1-CROSS_ARCH-cross Section: devel Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${shlibs:Depends}, ${misc:Depends} Description: GNU Transactional Memory Library GNU Transactional Memory Library (libitm) provides transaction support for accesses to the memory of a process, enabling easy-to-use synchronization of accesses to shared memory by several threads. Package: libitm1-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libitm1-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Description: GNU Transactional Memory Library (debug symbols) GNU Transactional Memory Library (libitm) provides transaction support for accesses to the memory of a process, enabling easy-to-use synchronization of accesses to shared memory by several threads. Package: lib32itm1-CROSS_ARCH-cross Section: devel Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Conflicts: ${confl:lib32} Description: GNU Transactional Memory Library (32bit) GNU Transactional Memory Library (libitm) provides transaction support for accesses to the memory of a process, enabling easy-to-use synchronization of accesses to shared memory by several threads. Package: lib32itm1-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), lib32itm1-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Description: GNU Transactional Memory Library (32 bit debug symbols) GNU Transactional Memory Library (libitm) provides transaction support for accesses to the memory of a process, enabling easy-to-use synchronization of accesses to shared memory by several threads. Package: lib64itm1-CROSS_ARCH-cross Section: devel Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: GNU Transactional Memory Library (64bit) GNU Transactional Memory Library (libitm) provides transaction support for accesses to the memory of a process, enabling easy-to-use synchronization of accesses to shared memory by several threads. Package: lib64itm1-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), lib64itm1-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Description: GNU Transactional Memory Library (64bit debug symbols) GNU Transactional Memory Library (libitm) provides transaction support for accesses to the memory of a process, enabling easy-to-use synchronization of accesses to shared memory by several threads. Package: libn32itm1-CROSS_ARCH-cross Section: devel Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: GNU Transactional Memory Library (n32) GNU Transactional Memory Library (libitm) provides transaction support for accesses to the memory of a process, enabling easy-to-use synchronization of accesses to shared memory by several threads. Package: libn32itm1-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libn32itm1-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Description: GNU Transactional Memory Library (n32 debug symbols) GNU Transactional Memory Library (libitm) provides transaction support for accesses to the memory of a process, enabling easy-to-use synchronization of accesses to shared memory by several threads. Package: libx32itm1-CROSS_ARCH-cross Section: devel Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: GNU Transactional Memory Library (x32) GNU Transactional Memory Library (libitm) provides transaction support for accesses to the memory of a process, enabling easy-to-use synchronization of accesses to shared memory by several threads. Package: libx32itm1-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libx32itm1-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Description: GNU Transactional Memory Library (x32 debug symbols) GNU Transactional Memory Library (libitm) provides transaction support for accesses to the memory of a process, enabling easy-to-use synchronization of accesses to shared memory by several threads. Package: libhfitm1-CROSS_ARCH-cross Section: devel Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: GNU Transactional Memory Library (hard float ABI) GNU Transactional Memory Library (libitm) provides transaction support for accesses to the memory of a process, enabling easy-to-use synchronization of accesses to shared memory by several threads. Package: libhfitm1-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libhfitm1-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Description: GNU Transactional Memory Library (hard float ABI debug symbols) GNU Transactional Memory Library (libitm) provides transaction support for accesses to the memory of a process, enabling easy-to-use synchronization of accesses to shared memory by several threads. Package: libsfitm1-CROSS_ARCH-cross Section: devel Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: GNU Transactional Memory Library (soft float ABI) GNU Transactional Memory Library (libitm) provides transaction support for accesses to the memory of a process, enabling easy-to-use synchronization of accesses to shared memory by several threads. Package: libsfitm1-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libsfitm1-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Description: GNU Transactional Memory Library (soft float ABI debug symbols) GNU Transactional Memory Library (libitm) provides transaction support for accesses to the memory of a process, enabling easy-to-use synchronization of accesses to shared memory by several threads. Package: libatomic1-CROSS_ARCH-cross Section: devel Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${shlibs:Depends}, ${misc:Depends} Description: support library providing __atomic built-in functions library providing __atomic built-in functions. When an atomic call cannot be turned into lock-free instructions, GCC will make calls into this library. Package: libatomic1-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libatomic1-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Description: support library providing __atomic built-in functions (debug symbols) library providing __atomic built-in functions. When an atomic call cannot be turned into lock-free instructions, GCC will make calls into this library. Package: lib32atomic1-CROSS_ARCH-cross Section: devel Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Conflicts: ${confl:lib32} Description: support library providing __atomic built-in functions (32bit) library providing __atomic built-in functions. When an atomic call cannot be turned into lock-free instructions, GCC will make calls into this library. Package: lib32atomic1-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), lib32atomic1-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Description: support library providing __atomic built-in functions (32 bit debug symbols) library providing __atomic built-in functions. When an atomic call cannot be turned into lock-free instructions, GCC will make calls into this library. Package: lib64atomic1-CROSS_ARCH-cross Section: devel Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: support library providing __atomic built-in functions (64bit) library providing __atomic built-in functions. When an atomic call cannot be turned into lock-free instructions, GCC will make calls into this library. Package: lib64atomic1-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), lib64atomic1-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Description: support library providing __atomic built-in functions (64bit debug symbols) library providing __atomic built-in functions. When an atomic call cannot be turned into lock-free instructions, GCC will make calls into this library. Package: libn32atomic1-CROSS_ARCH-cross Section: devel Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: support library providing __atomic built-in functions (n32) library providing __atomic built-in functions. When an atomic call cannot be turned into lock-free instructions, GCC will make calls into this library. Package: libn32atomic1-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libn32atomic1-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Description: support library providing __atomic built-in functions (n32 debug symbols) library providing __atomic built-in functions. When an atomic call cannot be turned into lock-free instructions, GCC will make calls into this library. Package: libx32atomic1-CROSS_ARCH-cross Section: devel Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: support library providing __atomic built-in functions (x32) library providing __atomic built-in functions. When an atomic call cannot be turned into lock-free instructions, GCC will make calls into this library. Package: libx32atomic1-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libx32atomic1-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Description: support library providing __atomic built-in functions (x32 debug symbols) library providing __atomic built-in functions. When an atomic call cannot be turned into lock-free instructions, GCC will make calls into this library. Package: libhfatomic1-CROSS_ARCH-cross Section: devel Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: support library providing __atomic built-in functions (hard float ABI) library providing __atomic built-in functions. When an atomic call cannot be turned into lock-free instructions, GCC will make calls into this library. Package: libhfatomic1-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libhfatomic1-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Description: support library providing __atomic built-in functions (hard float ABI debug symbols) library providing __atomic built-in functions. When an atomic call cannot be turned into lock-free instructions, GCC will make calls into this library. Package: libsfatomic1-CROSS_ARCH-cross Section: devel Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: support library providing __atomic built-in functions (soft float ABI) library providing __atomic built-in functions. When an atomic call cannot be turned into lock-free instructions, GCC will make calls into this library. Package: libsfatomic1-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libsfatomic1-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Description: support library providing __atomic built-in functions (soft float ABI debug symbols) library providing __atomic built-in functions. When an atomic call cannot be turned into lock-free instructions, GCC will make calls into this library. Package: libasan0-CROSS_ARCH-cross Section: devel Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${shlibs:Depends}, ${misc:Depends} Description: AddressSanitizer -- a fast memory error detector AddressSanitizer (ASan) is a fast memory error detector. It finds use-after-free and {heap,stack,global}-buffer overflow bugs in C/C++ programs. Package: libasan0-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libasan0-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Description: AddressSanitizer -- a fast memory error detector (debug symbols) AddressSanitizer (ASan) is a fast memory error detector. It finds use-after-free and {heap,stack,global}-buffer overflow bugs in C/C++ programs. Package: lib32asan0-CROSS_ARCH-cross Section: devel Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Conflicts: ${confl:lib32} Description: AddressSanitizer -- a fast memory error detector (32bit) AddressSanitizer (ASan) is a fast memory error detector. It finds use-after-free and {heap,stack,global}-buffer overflow bugs in C/C++ programs. Package: lib32asan0-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), lib32asan0-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Description: AddressSanitizer -- a fast memory error detector (32 bit debug symbols) AddressSanitizer (ASan) is a fast memory error detector. It finds use-after-free and {heap,stack,global}-buffer overflow bugs in C/C++ programs. Package: lib64asan0-CROSS_ARCH-cross Section: devel Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: AddressSanitizer -- a fast memory error detector (64bit) AddressSanitizer (ASan) is a fast memory error detector. It finds use-after-free and {heap,stack,global}-buffer overflow bugs in C/C++ programs. Package: lib64asan0-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), lib64asan0-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Description: AddressSanitizer -- a fast memory error detector (64bit debug symbols) AddressSanitizer (ASan) is a fast memory error detector. It finds use-after-free and {heap,stack,global}-buffer overflow bugs in C/C++ programs. Package: libn32asan0-CROSS_ARCH-cross Section: devel Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: AddressSanitizer -- a fast memory error detector (n32) AddressSanitizer (ASan) is a fast memory error detector. It finds use-after-free and {heap,stack,global}-buffer overflow bugs in C/C++ programs. Package: libn32asan0-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libn32asan0-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Description: AddressSanitizer -- a fast memory error detector (n32 debug symbols) AddressSanitizer (ASan) is a fast memory error detector. It finds use-after-free and {heap,stack,global}-buffer overflow bugs in C/C++ programs. Package: libx32asan0-CROSS_ARCH-cross Section: devel Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: AddressSanitizer -- a fast memory error detector (x32) AddressSanitizer (ASan) is a fast memory error detector. It finds use-after-free and {heap,stack,global}-buffer overflow bugs in C/C++ programs. Package: libx32asan0-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libx32asan0-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Description: AddressSanitizer -- a fast memory error detector (x32 debug symbols) AddressSanitizer (ASan) is a fast memory error detector. It finds use-after-free and {heap,stack,global}-buffer overflow bugs in C/C++ programs. Package: libhfasan0-CROSS_ARCH-cross Section: devel Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: AddressSanitizer -- a fast memory error detector (hard float ABI) AddressSanitizer (ASan) is a fast memory error detector. It finds use-after-free and {heap,stack,global}-buffer overflow bugs in C/C++ programs. Package: libhfasan0-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libhfasan0-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Description: AddressSanitizer -- a fast memory error detector (hard float ABI debug symbols) AddressSanitizer (ASan) is a fast memory error detector. It finds use-after-free and {heap,stack,global}-buffer overflow bugs in C/C++ programs. Package: libsfasan0-CROSS_ARCH-cross Section: devel Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: AddressSanitizer -- a fast memory error detector (soft float ABI) AddressSanitizer (ASan) is a fast memory error detector. It finds use-after-free and {heap,stack,global}-buffer overflow bugs in C/C++ programs. Package: libsfasan0-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libsfasan0-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Description: AddressSanitizer -- a fast memory error detector (soft float ABI debug symbols) AddressSanitizer (ASan) is a fast memory error detector. It finds use-after-free and {heap,stack,global}-buffer overflow bugs in C/C++ programs. Package: libtsan0-CROSS_ARCH-cross Section: devel Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${shlibs:Depends}, ${misc:Depends} Description: ThreadSanitizer -- a Valgrind-based detector of data races ThreadSanitizer (Tsan) is a data race detector for C/C++ programs. The Linux and Mac versions are based on Valgrind. Package: libtsan0-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libtsan0-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Description: ThreadSanitizer -- a Valgrind-based detector of data races (debug symbols) ThreadSanitizer (Tsan) is a data race detector for C/C++ programs. The Linux and Mac versions are based on Valgrind. Package: lib32tsan0-CROSS_ARCH-cross Section: devel Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Conflicts: ${confl:lib32} Description: ThreadSanitizer -- a Valgrind-based detector of data races (32bit) ThreadSanitizer (Tsan) is a data race detector for C/C++ programs. The Linux and Mac versions are based on Valgrind. Package: lib32tsan0-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), lib32tsan0-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Description: ThreadSanitizer -- a Valgrind-based detector of data races (32 bit debug symbols) ThreadSanitizer (Tsan) is a data race detector for C/C++ programs. The Linux and Mac versions are based on Valgrind. Package: lib64tsan0-CROSS_ARCH-cross Section: devel Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: ThreadSanitizer -- a Valgrind-based detector of data races (64bit) ThreadSanitizer (Tsan) is a data race detector for C/C++ programs. The Linux and Mac versions are based on Valgrind. Package: lib64tsan0-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), lib64tsan0-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Description: ThreadSanitizer -- a Valgrind-based detector of data races (64bit debug symbols) ThreadSanitizer (Tsan) is a data race detector for C/C++ programs. The Linux and Mac versions are based on Valgrind. Package: libn32tsan0-CROSS_ARCH-cross Section: devel Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: ThreadSanitizer -- a Valgrind-based detector of data races (n32) ThreadSanitizer (Tsan) is a data race detector for C/C++ programs. The Linux and Mac versions are based on Valgrind. Package: libn32tsan0-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libn32tsan0-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Description: ThreadSanitizer -- a Valgrind-based detector of data races (n32 debug symbols) ThreadSanitizer (Tsan) is a data race detector for C/C++ programs. The Linux and Mac versions are based on Valgrind. Package: libx32tsan0-CROSS_ARCH-cross Section: devel Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: ThreadSanitizer -- a Valgrind-based detector of data races (x32) ThreadSanitizer (Tsan) is a data race detector for C/C++ programs. The Linux and Mac versions are based on Valgrind. Package: libx32tsan0-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libx32tsan0-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Description: ThreadSanitizer -- a Valgrind-based detector of data races (x32 debug symbols) ThreadSanitizer (Tsan) is a data race detector for C/C++ programs. The Linux and Mac versions are based on Valgrind. Package: libhftsan0-CROSS_ARCH-cross Section: devel Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: ThreadSanitizer -- a Valgrind-based detector of data races (hard float ABI) ThreadSanitizer (Tsan) is a data race detector for C/C++ programs. The Linux and Mac versions are based on Valgrind. Package: libhftsan0-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libhftsan0-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Description: ThreadSanitizer -- a Valgrind-based detector of data races (hard float ABI debug symbols) ThreadSanitizer (Tsan) is a data race detector for C/C++ programs. The Linux and Mac versions are based on Valgrind. Package: libsftsan0-CROSS_ARCH-cross Section: devel Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: ThreadSanitizer -- a Valgrind-based detector of data races (soft float ABI) ThreadSanitizer (Tsan) is a data race detector for C/C++ programs. The Linux and Mac versions are based on Valgrind. Package: libsftsan0-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libsftsan0-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Description: ThreadSanitizer -- a Valgrind-based detector of data races (soft float ABI debug symbols) ThreadSanitizer (Tsan) is a data race detector for C/C++ programs. The Linux and Mac versions are based on Valgrind. Package: gobjc++-GCC_VER-CROSS_GNU_TYPE Architecture: @host_archs@ Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), gobjc-GCC_VER-CROSS_GNU_TYPE (= ${gcc:Version}), g++-GCC_VER-CROSS_GNU_TYPE (= ${gcc:Version}), ${shlibs:Depends}, libobjc-GCC_VER-dev-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Suggests: ${gobjcxx:multilib}, gcc-GCC_VER-doc (>= ${gcc:SoftVersion}) Provides: objc++-compiler-CROSS_GNU_TYPE Description: GNU Objective-C++ compiler This is the GNU Objective-C++ compiler, which compiles Objective-C++ on platforms supported by the gcc compiler. It uses the gcc backend to generate optimized code. Package: gobjc++-GCC_VER-multilib-CROSS_GNU_TYPE Architecture: @host_archs@ Section: devel Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), gobjc++-GCC_VER-CROSS_GNU_TYPE (= ${gcc:Version}), g++-GCC_VER-multilib-CROSS_GNU_TYPE (= ${gcc:Version}), gobjc-GCC_VER-multilib-CROSS_GNU_TYPE (= ${gcc:Version}), ${shlibs:Depends}, ${misc:Depends} Description: GNU Objective-C++ compiler (multilib files) This is the GNU Objective-C++ compiler, which compiles Objective-C++ on platforms supported by the gcc compiler. . On architectures with multilib support, the package contains files and dependencies for the non-default multilib architecture(s). Package: gobjc-GCC_VER-CROSS_GNU_TYPE Architecture: @host_archs@ Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), gcc-GCC_VER-CROSS_GNU_TYPE (= ${gcc:Version}), ${dep:libcdev}, ${shlibs:Depends}, libobjc-GCC_VER-dev-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Suggests: ${gobjc:multilib}, gcc-GCC_VER-doc (>= ${gcc:SoftVersion}), libobjc4-dbg-CROSS_ARCH-cross Provides: objc-compiler-CROSS_GNU_TYPE Description: GNU Objective-C compiler This is the GNU Objective-C compiler, which compiles Objective-C on platforms supported by the gcc compiler. It uses the gcc backend to generate optimized code. Package: gobjc-GCC_VER-multilib-CROSS_GNU_TYPE Architecture: @host_archs@ Section: devel Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), gobjc-GCC_VER-CROSS_GNU_TYPE (= ${gcc:Version}), gcc-GCC_VER-multilib-CROSS_GNU_TYPE (= ${gcc:Version}), ${dep:libobjcbiarchdev}, ${shlibs:Depends}, ${misc:Depends} Description: GNU Objective-C compiler (multilib files) This is the GNU Objective-C compiler, which compiles Objective-C on platforms supported by the gcc compiler. . On architectures with multilib support, the package contains files and dependencies for the non-default multilib architecture(s). Package: libobjc4-CROSS_ARCH-cross Section: devel Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${shlibs:Depends}, ${misc:Depends} Description: Runtime library for GNU Objective-C applications Library needed for GNU ObjC applications linked against the shared library. Package: libobjc-GCC_VER-dev-CROSS_ARCH-cross Architecture: all Section: libdevel Priority: optional Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libgcc-GCC_VER-dev-CROSS_ARCH-cross (= ${gcc:Version}), libobjc4-CROSS_ARCH-cross (>= ${gcc:Version}), ${shlibs:Depends}, ${misc:Depends} Replaces: gobjc-GCC_VER (<< ${gcc:SplitVersion}) Description: Runtime library for GNU Objective-C applications (development files) This package contains the headers and static library files needed to build GNU ObjC applications. Package: libobjc4-dbg-CROSS_ARCH-cross Section: debug Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libobjc4-CROSS_ARCH-cross (= ${gcc:Version}), libgcc1-dbg-CROSS_ARCH-cross, ${misc:Depends} Description: Runtime library for GNU Objective-C applications (debug symbols) Library needed for GNU ObjC applications linked against the shared library. Package: lib64objc4-CROSS_ARCH-cross Section: devel Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: Runtime library for GNU Objective-C applications (64bit) Library needed for GNU ObjC applications linked against the shared library. Package: lib64objc-GCC_VER-dev-CROSS_ARCH-cross Architecture: all Section: libdevel Priority: optional Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), lib64gcc-GCC_VER-dev-CROSS_ARCH-cross (= ${gcc:Version}), lib64objc4-CROSS_ARCH-cross (>= ${gcc:Version}), ${shlibs:Depends}, ${misc:Depends} Replaces: gobjc-GCC_VER-multilib (<< ${gcc:SplitVersion}) Description: Runtime library for GNU Objective-C applications (64bit development files) This package contains the headers and static library files needed to build GNU ObjC applications. Package: lib64objc4-dbg-CROSS_ARCH-cross Section: debug Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), lib64objc4-CROSS_ARCH-cross (= ${gcc:Version}), lib64gcc1-dbg-CROSS_ARCH-cross, ${misc:Depends} Description: Runtime library for GNU Objective-C applications (64 bit debug symbols) Library needed for GNU ObjC applications linked against the shared library. Package: lib32objc4-CROSS_ARCH-cross Section: devel Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Conflicts: ${confl:lib32} Description: Runtime library for GNU Objective-C applications (32bit) Library needed for GNU ObjC applications linked against the shared library. Package: lib32objc-GCC_VER-dev-CROSS_ARCH-cross Architecture: all Section: libdevel Priority: optional Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), lib32gcc-GCC_VER-dev-CROSS_ARCH-cross (= ${gcc:Version}), lib32objc4-CROSS_ARCH-cross (>= ${gcc:Version}), ${shlibs:Depends}, ${misc:Depends} Replaces: gobjc-GCC_VER-multilib (<< ${gcc:SplitVersion}) Description: Runtime library for GNU Objective-C applications (32bit development files) This package contains the headers and static library files needed to build GNU ObjC applications. Package: lib32objc4-dbg-CROSS_ARCH-cross Section: debug Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), lib32objc4-CROSS_ARCH-cross (= ${gcc:Version}), lib32gcc1-dbg-CROSS_ARCH-cross, ${misc:Depends} Description: Runtime library for GNU Objective-C applications (32 bit debug symbols) Library needed for GNU ObjC applications linked against the shared library. Package: libn32objc4-CROSS_ARCH-cross Section: devel Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: Runtime library for GNU Objective-C applications (n32) Library needed for GNU ObjC applications linked against the shared library. Package: libn32objc-GCC_VER-dev-CROSS_ARCH-cross Architecture: all Section: libdevel Priority: optional Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libn32gcc-GCC_VER-dev-CROSS_ARCH-cross (= ${gcc:Version}), libn32objc4-CROSS_ARCH-cross (>= ${gcc:Version}), ${shlibs:Depends}, ${misc:Depends} Replaces: gobjc-GCC_VER-multilib (<< ${gcc:SplitVersion}) Description: Runtime library for GNU Objective-C applications (n32 development files) This package contains the headers and static library files needed to build GNU ObjC applications. Package: libn32objc4-dbg-CROSS_ARCH-cross Section: debug Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libn32objc4-CROSS_ARCH-cross (= ${gcc:Version}), libn32gcc1-dbg-CROSS_ARCH-cross, ${misc:Depends} Description: Runtime library for GNU Objective-C applications (n32 debug symbols) Library needed for GNU ObjC applications linked against the shared library. Package: libx32objc4-CROSS_ARCH-cross Section: devel Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: Runtime library for GNU Objective-C applications (x32) Library needed for GNU ObjC applications linked against the shared library. Package: libx32objc-GCC_VER-dev-CROSS_ARCH-cross Architecture: all Section: libdevel Priority: optional Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libx32gcc-GCC_VER-dev-CROSS_ARCH-cross (= ${gcc:Version}), libx32objc4-CROSS_ARCH-cross (>= ${gcc:Version}), ${shlibs:Depends}, ${misc:Depends} Replaces: gobjc-GCC_VER-multilib (<< ${gcc:SplitVersion}) Description: Runtime library for GNU Objective-C applications (x32 development files) This package contains the headers and static library files needed to build GNU ObjC applications. Package: libx32objc4-dbg-CROSS_ARCH-cross Section: debug Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libx32objc4-CROSS_ARCH-cross (= ${gcc:Version}), libx32gcc1-dbg-CROSS_ARCH-cross, ${misc:Depends} Description: Runtime library for GNU Objective-C applications (x32 debug symbols) Library needed for GNU ObjC applications linked against the shared library. Package: libhfobjc4-CROSS_ARCH-cross Section: devel Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: Runtime library for GNU Objective-C applications (hard float ABI) Library needed for GNU ObjC applications linked against the shared library. Package: libhfobjc-GCC_VER-dev-CROSS_ARCH-cross Architecture: all Section: libdevel Priority: optional Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libhfgcc-GCC_VER-dev-CROSS_ARCH-cross (= ${gcc:Version}), libhfobjc4-CROSS_ARCH-cross (>= ${gcc:Version}), ${shlibs:Depends}, ${misc:Depends} Replaces: gobjc-GCC_VER-multilib (<< ${gcc:SplitVersion}) Description: Runtime library for GNU Objective-C applications (hard float ABI development files) This package contains the headers and static library files needed to build GNU ObjC applications. Package: libhfobjc4-dbg-CROSS_ARCH-cross Section: debug Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libhfobjc4-CROSS_ARCH-cross (= ${gcc:Version}), libhfgcc1-dbg-CROSS_ARCH-cross, ${misc:Depends} Description: Runtime library for GNU Objective-C applications (hard float ABI debug symbols) Library needed for GNU ObjC applications linked against the shared library. Package: libsfobjc4-CROSS_ARCH-cross Section: devel Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: Runtime library for GNU Objective-C applications (soft float ABI) Library needed for GNU ObjC applications linked against the shared library. Package: libsfobjc-GCC_VER-dev-CROSS_ARCH-cross Architecture: all Section: libdevel Priority: optional Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libsfgcc-GCC_VER-dev-CROSS_ARCH-cross (= ${gcc:Version}), libsfobjc4-CROSS_ARCH-cross (>= ${gcc:Version}), ${shlibs:Depends}, ${misc:Depends} Replaces: gobjc-GCC_VER-multilib (<< ${gcc:SplitVersion}) Description: Runtime library for GNU Objective-C applications (soft float development files) This package contains the headers and static library files needed to build GNU ObjC applications. Package: libsfobjc4-dbg-CROSS_ARCH-cross Section: debug Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libsfobjc4-CROSS_ARCH-cross (= ${gcc:Version}), libsfgcc1-dbg-CROSS_ARCH-cross, ${misc:Depends} Description: Runtime library for GNU Objective-C applications (soft float ABI debug symbols) Library needed for GNU ObjC applications linked against the shared library. Package: gfortran-GCC_VER-CROSS_GNU_TYPE Architecture: @host_archs@ Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), gcc-GCC_VER-CROSS_GNU_TYPE (= ${gcc:Version}), libgfortran-GCC_VER-dev-CROSS_ARCH-cross (= ${gcc:Version}), ${dep:libcdev}, ${shlibs:Depends}, ${misc:Depends} Provides: fortran95-compiler Suggests: ${gfortran:multilib}, gfortran-GCC_VER-doc, libgfortran3-dbg-CROSS_ARCH-cross Description: GNU Fortran compiler This is the GNU Fortran compiler, which compiles Fortran on platforms supported by the gcc compiler. It uses the gcc backend to generate optimized code. Package: gfortran-GCC_VER-multilib-CROSS_GNU_TYPE Architecture: @host_archs@ Section: devel Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), gfortran-GCC_VER-CROSS_GNU_TYPE (= ${gcc:Version}), gcc-GCC_VER-multilib-CROSS_GNU_TYPE (= ${gcc:Version}), ${dep:libgfortranbiarchdev}, ${shlibs:Depends}, ${misc:Depends} Description: GNU Fortran compiler (multilib files) This is the GNU Fortran compiler, which compiles Fortran on platforms supported by the gcc compiler. . On architectures with multilib support, the package contains files and dependencies for the non-default multilib architecture(s). Package: libgfortran3-CROSS_ARCH-cross Section: devel Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${shlibs:Depends}, ${misc:Depends} Description: Runtime library for GNU Fortran applications Library needed for GNU Fortran applications linked against the shared library. Package: libgfortran-GCC_VER-dev-CROSS_ARCH-cross Architecture: all Section: devel Priority: optional Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libgfortran3-CROSS_ARCH-cross, ${shlibs:Depends}, ${misc:Depends} Replaces: gfortran-GCC_VER (<< ${gcc:SplitVersion}) Breaks: gfortran-GCC_VER (<< ${gcc:SplitVersion}) Description: Runtime library for GNU Fortran applications (development files) This package contains the headers and static library files needed to build GNU Fortran applications. Package: libgfortran3-dbg-CROSS_ARCH-cross Section: debug Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libgfortran3-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Description: Runtime library for GNU Fortran applications (debug symbols) Library needed for GNU Fortran applications linked against the shared library. Package: lib64gfortran3-CROSS_ARCH-cross Section: devel Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: Runtime library for GNU Fortran applications (64bit) Library needed for GNU Fortran applications linked against the shared library. Package: lib64gfortran-GCC_VER-dev-CROSS_ARCH-cross Architecture: all Section: libdevel Priority: optional Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), lib64gfortran3-CROSS_ARCH-cross, ${shlibs:Depends}, ${misc:Depends} Replaces: gfortran-GCC_VER-multilib (<< ${gcc:SplitVersion}) Breaks: gfortran-GCC_VER-multilib (<< ${gcc:SplitVersion}) Description: Runtime library for GNU Fortran applications (64bit development files) This package contains the headers and static library files needed to build GNU Fortran applications. Package: lib64gfortran3-dbg-CROSS_ARCH-cross Section: debug Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), lib64gfortran3-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Description: Runtime library for GNU Fortran applications (64bit debug symbols) Library needed for GNU Fortran applications linked against the shared library. Package: lib32gfortran3-CROSS_ARCH-cross Section: devel Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Conflicts: ${confl:lib32} Description: Runtime library for GNU Fortran applications (32bit) Library needed for GNU Fortran applications linked against the shared library. Package: lib32gfortran-GCC_VER-dev-CROSS_ARCH-cross Architecture: all Section: libdevel Priority: optional Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), lib32gfortran3-CROSS_ARCH-cross, ${shlibs:Depends}, ${misc:Depends} Replaces: gfortran-GCC_VER-multilib (<< ${gcc:SplitVersion}) Breaks: gfortran-GCC_VER-multilib (<< ${gcc:SplitVersion}) Description: Runtime library for GNU Fortran applications (32bit development files) This package contains the headers and static library files needed to build GNU Fortran applications. Package: lib32gfortran3-dbg-CROSS_ARCH-cross Section: debug Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), lib32gfortran3-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Description: Runtime library for GNU Fortran applications (32 bit debug symbols) Library needed for GNU Fortran applications linked against the shared library. Package: libn32gfortran3-CROSS_ARCH-cross Section: devel Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: Runtime library for GNU Fortran applications (n32) Library needed for GNU Fortran applications linked against the shared library. Package: libn32gfortran-GCC_VER-dev-CROSS_ARCH-cross Architecture: all Section: libdevel Priority: optional Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libn32gfortran3-CROSS_ARCH-cross, ${shlibs:Depends}, ${misc:Depends} Replaces: gfortran-GCC_VER-multilib (<< ${gcc:SplitVersion}) Breaks: gfortran-GCC_VER-multilib (<< ${gcc:SplitVersion}) Description: Runtime library for GNU Fortran applications (n32 development files) This package contains the headers and static library files needed to build GNU Fortran applications. Package: libn32gfortran3-dbg-CROSS_ARCH-cross Section: debug Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libn32gfortran3-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Description: Runtime library for GNU Fortran applications (n32 debug symbols) Library needed for GNU Fortran applications linked against the shared library. Package: libx32gfortran3-CROSS_ARCH-cross Section: devel Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: Runtime library for GNU Fortran applications (x32) Library needed for GNU Fortran applications linked against the shared library. Package: libx32gfortran-GCC_VER-dev-CROSS_ARCH-cross Architecture: all Section: libdevel Priority: optional Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libx32gfortran3-CROSS_ARCH-cross, ${shlibs:Depends}, ${misc:Depends} Replaces: gfortran-GCC_VER-multilib (<< ${gcc:SplitVersion}) Breaks: gfortran-GCC_VER-multilib (<< ${gcc:SplitVersion}) Description: Runtime library for GNU Fortran applications (x32 development files) This package contains the headers and static library files needed to build GNU Fortran applications. Package: libx32gfortran3-dbg-CROSS_ARCH-cross Section: debug Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libx32gfortran3-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Description: Runtime library for GNU Fortran applications (x32 debug symbols) Library needed for GNU Fortran applications linked against the shared library. Package: libhfgfortran3-CROSS_ARCH-cross Section: devel Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: Runtime library for GNU Fortran applications (hard float ABI) Library needed for GNU Fortran applications linked against the shared library. Package: libhfgfortran-GCC_VER-dev-CROSS_ARCH-cross Architecture: all Section: libdevel Priority: optional Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libhfgfortran3-CROSS_ARCH-cross, ${shlibs:Depends}, ${misc:Depends} Replaces: gfortran-GCC_VER-multilib (<< ${gcc:SplitVersion}) Breaks: gfortran-GCC_VER-multilib (<< ${gcc:SplitVersion}) Description: Runtime library for GNU Fortran applications (hard float ABI development files) This package contains the headers and static library files needed to build GNU Fortran applications. Package: libhfgfortran3-dbg-CROSS_ARCH-cross Section: debug Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libhfgfortran3-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Description: Runtime library for GNU Fortran applications (hard float ABI debug symbols) Library needed for GNU Fortran applications linked against the shared library. Package: libsfgfortran3-CROSS_ARCH-cross Section: devel Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: Runtime library for GNU Fortran applications (soft float ABI) Library needed for GNU Fortran applications linked against the shared library. Package: libsfgfortran-GCC_VER-dev-CROSS_ARCH-cross Architecture: all Section: libdevel Priority: optional Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libsfgfortran3-CROSS_ARCH-cross, ${shlibs:Depends}, ${misc:Depends} Replaces: gfortran-GCC_VER-multilib (<< ${gcc:SplitVersion}) Breaks: gfortran-GCC_VER-multilib (<< ${gcc:SplitVersion}) Description: Runtime library for GNU Fortran applications (soft float ABI development files) This package contains the headers and static library files needed to build GNU Fortran applications. Package: libsfgfortran3-dbg-CROSS_ARCH-cross Section: debug Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libsfgfortran3-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Description: Runtime library for GNU Fortran applications (hard float ABI debug symbols) Library needed for GNU Fortran applications linked against the shared library. Package: gccgo-GCC_VER-CROSS_GNU_TYPE Architecture: @host_archs@ Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), gcc-GCC_VER-CROSS_GNU_TYPE (= ${gcc:Version}), libgo4-CROSS_ARCH-cross (>= ${gcc:Version}), ${dep:libcdev}, ${shlibs:Depends}, ${misc:Depends} Provides: go-compiler Suggests: ${go:multilib}, gccgo-GCC_VER-doc, libgo4-dbg-CROSS_ARCH-cross Description: GNU Go compiler This is the GNU Go compiler, which compiles Go on platforms supported by the gcc compiler. It uses the gcc backend to generate optimized code. Package: gccgo-GCC_VER-multilib-CROSS_GNU_TYPE Architecture: @host_archs@ Section: devel Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), gccgo-GCC_VER-CROSS_GNU_TYPE (= ${gcc:Version}), gcc-GCC_VER-multilib-CROSS_GNU_TYPE (= ${gcc:Version}), ${dep:libgobiarch}, ${shlibs:Depends}, ${misc:Depends} Suggests: ${dep:libgobiarchdbg} Description: GNU Go compiler (multilib files) This is the GNU Go compiler, which compiles Go on platforms supported by the gcc compiler. . On architectures with multilib support, the package contains files and dependencies for the non-default multilib architecture(s). Package: libgo4-CROSS_ARCH-cross Section: devel Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${shlibs:Depends}, ${misc:Depends} Description: Runtime library for GNU Go applications Library needed for GNU Go applications linked against the shared library. Package: libgo4-dbg-CROSS_ARCH-cross Section: debug Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libgo4-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Description: Runtime library for GNU Go applications (debug symbols) Library needed for GNU Go applications linked against the shared library. Package: lib64go4-CROSS_ARCH-cross Section: devel Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: Runtime library for GNU Go applications (64bit) Library needed for GNU Go applications linked against the shared library. Package: lib64go4-dbg-CROSS_ARCH-cross Section: debug Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), lib64go4-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Description: Runtime library for GNU Go applications (64bit debug symbols) Library needed for GNU Go applications linked against the shared library. Package: lib32go4-CROSS_ARCH-cross Section: devel Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Conflicts: ${confl:lib32} Description: Runtime library for GNU Go applications (32bit) Library needed for GNU Go applications linked against the shared library. Package: lib32go4-dbg-CROSS_ARCH-cross Section: debug Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), lib32go4-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Description: Runtime library for GNU Go applications (32 bit debug symbols) Library needed for GNU Go applications linked against the shared library. Package: libn32go4-CROSS_ARCH-cross Section: devel Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: Runtime library for GNU Go applications (n32) Library needed for GNU Go applications linked against the shared library. Package: libn32go4-dbg-CROSS_ARCH-cross Section: debug Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libn32go4-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Description: Runtime library for GNU Go applications (n32 debug symbols) Library needed for GNU Go applications linked against the shared library. Package: libx32go4-CROSS_ARCH-cross Section: devel Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libcbiarch}, ${shlibs:Depends}, ${misc:Depends} Description: Runtime library for GNU Go applications (x32) Library needed for GNU Go applications linked against the shared library. Package: libx32go4-dbg-CROSS_ARCH-cross Section: debug Architecture: all Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libx32go4-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Description: Runtime library for GNU Go applications (x32 debug symbols) Library needed for GNU Go applications linked against the shared library. Package: libstdc++6-CROSS_ARCH-cross Architecture: all Section: devel Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${dep:libc}, ${shlibs:Depends}, ${misc:Depends} Provides: libstdc++6-CROSS_ARCH-dcv1 Conflicts: scim (<< 1.4.2-1) Description: GNU Standard C++ Library v3 This package contains an additional runtime library for C++ programs built with the GNU compiler. . libstdc++-v3 is a complete rewrite from the previous libstdc++-v2, which was included up to g++-2.95. The first version of libstdc++-v3 appeared in g++-3.0. . This package contains files for CROSS_ARCH architecture, for use in cross-compile environment. Package: lib32stdc++6-CROSS_ARCH-cross Architecture: all Section: devel Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), lib32gcc1-CROSS_ARCH-cross, ${shlibs:Depends}, ${misc:Depends} Conflicts: ${confl:lib32} Provides: lib32stdc++6-CROSS_ARCH-dcv1 Description: GNU Standard C++ Library v3 (32 bit Version) This package contains an additional runtime library for C++ programs built with the GNU compiler. . This package contains files for CROSS_ARCH architecture, for use in cross-compile environment. Package: lib64stdc++6-CROSS_ARCH-cross Architecture: all Section: devel Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${shlibs:Depends}, lib64gcc1-CROSS_ARCH-cross, ${misc:Depends} Provides: lib64stdc++6-CROSS_ARCH-dcv1 Description: GNU Standard C++ Library v3 (64bit) This package contains an additional runtime library for C++ programs built with the GNU compiler. . libstdc++-v3 is a complete rewrite from the previous libstdc++-v2, which was included up to g++-2.95. The first version of libstdc++-v3 appeared in g++-3.0. . This package contains files for CROSS_ARCH architecture, for use in cross-compile environment. Package: libn32stdc++6-CROSS_ARCH-cross Architecture: all Section: devel Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${shlibs:Depends}, libn32gcc1-CROSS_ARCH-cross, ${misc:Depends} Provides: libn32stdc++6-CROSS_ARCH-dcv1 Description: GNU Standard C++ Library v3 (n32) This package contains an additional runtime library for C++ programs built with the GNU compiler. . libstdc++-v3 is a complete rewrite from the previous libstdc++-v2, which was included up to g++-2.95. The first version of libstdc++-v3 appeared in g++-3.0. . This package contains files for CROSS_ARCH architecture, for use in cross-compile environment. Package: libx32stdc++6-CROSS_ARCH-cross Architecture: all Section: devel Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${shlibs:Depends}, libx32gcc1-CROSS_ARCH-cross, ${misc:Depends} Provides: libx32stdc++6-CROSS_ARCH-dcv1 Description: GNU Standard C++ Library v3 (x32) This package contains an additional runtime library for C++ programs built with the GNU compiler. . libstdc++-v3 is a complete rewrite from the previous libstdc++-v2, which was included up to g++-2.95. The first version of libstdc++-v3 appeared in g++-3.0. . This package contains files for CROSS_ARCH architecture, for use in cross-compile environment. Package: libhfstdc++6-CROSS_ARCH-cross Architecture: all Section: devel Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${shlibs:Depends}, libhfgcc1-CROSS_ARCH-cross, ${misc:Depends} Provides: libhfstdc++6-CROSS_ARCH-dcv1 Description: GNU Standard C++ Library v3 (hard float ABI) This package contains an additional runtime library for C++ programs built with the GNU compiler. . libstdc++-v3 is a complete rewrite from the previous libstdc++-v2, which was included up to g++-2.95. The first version of libstdc++-v3 appeared in g++-3.0. . This package contains files for CROSS_ARCH architecture, for use in cross-compile environment. Package: libsfstdc++6-CROSS_ARCH-cross Architecture: all Section: devel Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), ${shlibs:Depends}, libsfgcc1-CROSS_ARCH-cross, ${misc:Depends} Provides: libsfstdc++6-CROSS_ARCH-dcv1 Description: GNU Standard C++ Library v3 (soft float ABI) This package contains an additional runtime library for C++ programs built with the GNU compiler. . libstdc++-v3 is a complete rewrite from the previous libstdc++-v2, which was included up to g++-2.95. The first version of libstdc++-v3 appeared in g++-3.0. . This package contains files for CROSS_ARCH architecture, for use in cross-compile environment. Package: libstdc++-GCC_VER-dev-CROSS_ARCH-cross Architecture: all Section: devel Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libgcc-GCC_VER-dev-CROSS_ARCH-cross (= ${gcc:Version}), libstdc++6-CROSS_ARCH-cross (>= ${gcc:Version}), ${dep:libcdev}, ${misc:Depends} Provides: libstdc++-dev-CROSS_ARCH-cross, libstdc++-dev-CROSS_ARCH-dcv1, libstdc++6-dev-CROSS_ARCH-dcv1 Description: GNU Standard C++ Library v3 (development files) This package contains the headers and static library files necessary for building C++ programs which use libstdc++. . libstdc++-v3 is a complete rewrite from the previous libstdc++-v2, which was included up to g++-2.95. The first version of libstdc++-v3 appeared in g++-3.0. . This package contains files for CROSS_ARCH architecture, for use in cross-compile environment. Package: libstdc++-GCC_VER-pic-CROSS_ARCH-cross Architecture: all Section: devel Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libstdc++6-CROSS_ARCH-cross (>= ${gcc:Version}), libstdc++6-GCC_VER-dev-CROSS_ARCH-cross (= ${gcc:Version}), ${misc:Depends} Provides: libstdc++-pic-CROSS_ARCH-dcv1 Description: GNU Standard C++ Library v3 (shared library subset kit) This is used to develop subsets of the libstdc++ shared libraries for use on custom installation floppies and in embedded systems. . Unless you are making one of those, you will not need this package. . This package contains files for CROSS_ARCH architecture, for use in cross-compile environment. Package: libstdc++6-GCC_VER-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libstdc++6-CROSS_ARCH-cross (>= ${gcc:Version}), libgcc1-dbg-CROSS_ARCH-cross, ${shlibs:Depends}, ${misc:Depends} Provides: libstdc++6-dbg-CROSS_ARCH-dcv1 Recommends: libstdc++6-GCC_VER-dev-CROSS_ARCH-cross (= ${gcc:Version}) Conflicts: libstdc++5-dbg-CROSS_ARCH-cross, libstdc++5-3.3-dbg-CROSS_ARCH-cross, libstdc++6-dbg-CROSS_ARCH-cross, libstdc++6-4.0-dbg-CROSS_ARCH-cross, libstdc++6-4.1-dbg-CROSS_ARCH-cross, libstdc++6-4.2-dbg-CROSS_ARCH-cross, libstdc++6-4.3-dbg-CROSS_ARCH-cross, libstdc++6-4.4-dbg-CROSS_ARCH-cross, libstdc++6-4.5-dbg-CROSS_ARCH-cross, libstdc++6-4.6-dbg-CROSS_ARCH-cross Description: GNU Standard C++ Library v3 (debugging files) This package contains the shared library of libstdc++ compiled with debugging symbols. . This package contains files for CROSS_ARCH architecture, for use in cross-compile environment. Package: lib32stdc++-GCC_VER-dev-CROSS_ARCH-cross Architecture: all Section: devel Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), lib32gcc-GCC_VER-dev-CROSS_ARCH-cross (= ${gcc:Version}), lib32stdc++6-CROSS_ARCH-cross (>= ${gcc:Version}), libstdc++6-GCC_VER-dev (= ${gcc:Version}), ${misc:Depends} Description: GNU Standard C++ Library v3 (development files) (CROSS_ARCH) This package contains the headers and static library files necessary for building C++ programs which use libstdc++. . libstdc++-v3 is a complete rewrite from the previous libstdc++-v2, which was included up to g++-2.95. The first version of libstdc++-v3 appeared in g++-3.0. . This package contains files for CROSS_ARCH architecture, for use in cross-compile environment. Package: lib32stdc++6-GCC_VER-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), lib32stdc++6-CROSS_ARCH-cross (>= ${gcc:Version}), libstdc++6-GCC_VER-dev-CROSS_ARCH-cross (= ${gcc:Version}), lib32gcc1-dbg-CROSS_ARCH-cross, ${shlibs:Depends}, ${misc:Depends} Provides: lib32stdc++6-dbg-CROSS_ARCH-dcv1 Conflicts: lib32stdc++6-dbg-CROSS_ARCH-cross, lib32stdc++6-4.0-dbg-CROSS_ARCH-cross, lib32stdc++6-4.1-dbg-CROSS_ARCH-cross, lib32stdc++6-4.2-dbg-CROSS_ARCH-cross, lib32stdc++6-4.3-dbg-CROSS_ARCH-cross, lib32stdc++6-4.4-dbg-CROSS_ARCH-cross, lib32stdc++6-4.5-dbg-CROSS_ARCH-cross, lib32stdc++6-4.6-dbg-CROSS_ARCH-cross Description: GNU Standard C++ Library v3 (debugging files) This package contains the shared library of libstdc++ compiled with debugging symbols. . This package contains files for CROSS_ARCH architecture, for use in cross-compile environment. Package: lib64stdc++-GCC_VER-dev-CROSS_ARCH-cross Architecture: all Section: devel Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), lib64gcc-GCC_VER-dev-CROSS_ARCH-cross (= ${gcc:Version}), lib64stdc++6-CROSS_ARCH-cross (>= ${gcc:Version}), libstdc++6-GCC_VER-dev (= ${gcc:Version}), ${misc:Depends} Description: GNU Standard C++ Library v3 (development files) (CROSS_ARCH) This package contains the headers and static library files necessary for building C++ programs which use libstdc++. . libstdc++-v3 is a complete rewrite from the previous libstdc++-v2, which was included up to g++-2.95. The first version of libstdc++-v3 appeared in g++-3.0. . This package contains files for CROSS_ARCH architecture, for use in cross-compile environment. Package: lib64stdc++6-GCC_VER-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), lib64stdc++6-CROSS_ARCH-cross (>= ${gcc:Version}), libstdc++6-GCC_VER-dev-CROSS_ARCH-cross (= ${gcc:Version}), lib64gcc1-dbg-CROSS_ARCH-cross, ${shlibs:Depends}, ${misc:Depends} Provides: lib64stdc++6-dbg-CROSS_ARCH-dcv1 Conflicts: lib64stdc++6-dbg-CROSS_ARCH-cross, lib64stdc++6-4.0-dbg-CROSS_ARCH-cross, lib64stdc++6-4.1-dbg-CROSS_ARCH-cross, lib64stdc++6-4.2-dbg-CROSS_ARCH-cross, lib64stdc++6-4.3-dbg-CROSS_ARCH-cross, lib64stdc++6-4.4-dbg-CROSS_ARCH-cross, lib64stdc++6-4.5-dbg-CROSS_ARCH-cross, lib64stdc++6-4.6-dbg-CROSS_ARCH-cross Description: GNU Standard C++ Library v3 (debugging files) This package contains the shared library of libstdc++ compiled with debugging symbols. . This package contains files for CROSS_ARCH architecture, for use in cross-compile environment. Package: libn32stdc++-GCC_VER-dev-CROSS_ARCH-cross Architecture: all Section: devel Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libn32gcc-GCC_VER-dev-CROSS_ARCH-cross (= ${gcc:Version}), libn32stdc++6-CROSS_ARCH-cross (>= ${gcc:Version}), libstdc++6-GCC_VER-dev (= ${gcc:Version}), ${misc:Depends} Description: GNU Standard C++ Library v3 (development files) (CROSS_ARCH) This package contains the headers and static library files necessary for building C++ programs which use libstdc++. . libstdc++-v3 is a complete rewrite from the previous libstdc++-v2, which was included up to g++-2.95. The first version of libstdc++-v3 appeared in g++-3.0. . This package contains files for CROSS_ARCH architecture, for use in cross-compile environment. Package: libn32stdc++6-GCC_VER-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libn32stdc++6-CROSS_ARCH-cross (>= ${gcc:Version}), libstdc++6-GCC_VER-dev-CROSS_ARCH-cross (= ${gcc:Version}), libn32gcc1-dbg-CROSS_ARCH-cross, ${shlibs:Depends}, ${misc:Depends} Provides: libn32stdc++6-dbg-CROSS_ARCH-dcv1 Conflicts: libn32stdc++6-dbg-CROSS_ARCH-cross, libn32stdc++6-4.0-dbg-CROSS_ARCH-cross, libn32stdc++6-4.1-dbg-CROSS_ARCH-cross, libn32stdc++6-4.2-dbg-CROSS_ARCH-cross, libn32stdc++6-4.3-dbg-CROSS_ARCH-cross, libn32stdc++6-4.4-dbg-CROSS_ARCH-cross, libn32stdc++6-4.5-dbg-CROSS_ARCH-cross, libn32stdc++6-4.6-dbg-CROSS_ARCH-cross Description: GNU Standard C++ Library v3 (debugging files) This package contains the shared library of libstdc++ compiled with debugging symbols. . This package contains files for CROSS_ARCH architecture, for use in cross-compile environment. Package: libx32stdc++-GCC_VER-dev-CROSS_ARCH-cross Architecture: all Section: devel Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libx32gcc-GCC_VER-dev-CROSS_ARCH-cross (= ${gcc:Version}), libx32stdc++6-CROSS_ARCH-cross (>= ${gcc:Version}), libstdc++6-GCC_VER-dev (= ${gcc:Version}), ${misc:Depends} Description: GNU Standard C++ Library v3 (development files) (CROSS_ARCH) This package contains the headers and static library files necessary for building C++ programs which use libstdc++. . libstdc++-v3 is a complete rewrite from the previous libstdc++-v2, which was included up to g++-2.95. The first version of libstdc++-v3 appeared in g++-3.0. . This package contains files for CROSS_ARCH architecture, for use in cross-compile environment. Package: libx32stdc++6-GCC_VER-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libx32stdc++6-CROSS_ARCH-cross (>= ${gcc:Version}), libstdc++6-GCC_VER-dev-CROSS_ARCH-cross (= ${gcc:Version}), libx32gcc1-dbg-CROSS_ARCH-cross, ${shlibs:Depends}, ${misc:Depends} Provides: libx32stdc++6-dbg-CROSS_ARCH-dcv1 Conflicts: libx32stdc++6-dbg-CROSS_ARCH-cross, libx32stdc++6-4.0-dbg-CROSS_ARCH-cross, libx32stdc++6-4.1-dbg-CROSS_ARCH-cross, libx32stdc++6-4.2-dbg-CROSS_ARCH-cross, libx32stdc++6-4.3-dbg-CROSS_ARCH-cross, libx32stdc++6-4.4-dbg-CROSS_ARCH-cross, libx32stdc++6-4.5-dbg-CROSS_ARCH-cross, libx32stdc++6-4.6-dbg-CROSS_ARCH-cross Description: GNU Standard C++ Library v3 (debugging files) This package contains the shared library of libstdc++ compiled with debugging symbols. . This package contains files for CROSS_ARCH architecture, for use in cross-compile environment. Package: libhfstdc++-GCC_VER-dev-CROSS_ARCH-cross Architecture: all Section: devel Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libhfgcc-GCC_VER-dev-CROSS_ARCH-cross (= ${gcc:Version}), libhfstdc++6-CROSS_ARCH-cross (>= ${gcc:Version}), libstdc++6-GCC_VER-dev (= ${gcc:Version}), ${misc:Depends} Description: GNU Standard C++ Library v3 (development files) (CROSS_ARCH) This package contains the headers and static library files necessary for building C++ programs which use libstdc++. . libstdc++-v3 is a complete rewrite from the previous libstdc++-v2, which was included up to g++-2.95. The first version of libstdc++-v3 appeared in g++-3.0. . This package contains files for CROSS_ARCH architecture, for use in cross-compile environment. Package: libhfstdc++6-GCC_VER-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libhfstdc++6-CROSS_ARCH-cross (>= ${gcc:Version}), libstdc++6-GCC_VER-dev-CROSS_ARCH-cross (= ${gcc:Version}), libhfgcc1-dbg-CROSS_ARCH-cross, ${shlibs:Depends}, ${misc:Depends} Provides: libhfstdc++6-dbg-CROSS_ARCH-dcv1 Description: GNU Standard C++ Library v3 (debugging files) This package contains the shared library of libstdc++ compiled with debugging symbols. . This package contains files for CROSS_ARCH architecture, for use in cross-compile environment. Package: libsfstdc++-GCC_VER-dev-CROSS_ARCH-cross Architecture: all Section: devel Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libsfgcc-GCC_VER-dev-CROSS_ARCH-cross (= ${gcc:Version}), libsfstdc++6-CROSS_ARCH-cross (>= ${gcc:Version}), libstdc++6-GCC_VER-dev (= ${gcc:Version}), ${misc:Depends} Description: GNU Standard C++ Library v3 (development files) (CROSS_ARCH) This package contains the headers and static library files necessary for building C++ programs which use libstdc++. . libstdc++-v3 is a complete rewrite from the previous libstdc++-v2, which was included up to g++-2.95. The first version of libstdc++-v3 appeared in g++-3.0. . This package contains files for CROSS_ARCH architecture, for use in cross-compile environment. Package: libsfstdc++6-GCC_VER-dbg-CROSS_ARCH-cross Architecture: all Section: debug Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libsfstdc++6-CROSS_ARCH-cross (>= ${gcc:Version}), libstdc++6-GCC_VER-dev-CROSS_ARCH-cross (= ${gcc:Version}), libsfgcc1-dbg-CROSS_ARCH-cross, ${shlibs:Depends}, ${misc:Depends} Provides: libsfstdc++6-dbg-CROSS_ARCH-dcv1 Description: GNU Standard C++ Library v3 (debugging files) This package contains the shared library of libstdc++ compiled with debugging symbols. . This package contains files for CROSS_ARCH architecture, for use in cross-compile environment. Package: gcj-GCC_VER-CROSS_GNU_TYPE Architecture: @host_archs@ Priority: extra Section: java Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), gcc-GCC_VER-CROSS_GNU_TYPE (= ${gcc:Version}), ${dep:libcdev}, ${shlibs:Depends}, ${misc:Depends} Suggests: gcj-GCC_VER-doc Description: GNU Java compiler This is the GNU Java compiler, which compiles Java on platforms supported by the gcc compiler. It uses the gcc backend to generate optimized code. Package: gdc-GCC_VER-CROSS_GNU_TYPE Architecture: @host_archs@ Priority: extra Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), g++-GCC_VER-CROSS_GNU_TYPE (= ${gcc:Version}), PHOBOS_DEP ${dep:libcdev}, ${shlibs:Depends}, ${misc:Depends} Provides: d-compiler, d-v2-compiler Suggests: ${gdc:multilib}, libphobos-dbg-CROSS_ARCH-cross Description: GNU D compiler (version 2), based on the GCC backend This is the GNU D compiler, which compiles D on platforms supported by gcc. It uses the gcc backend to generate optimised code. . This compiler supports D language version 2. Package: libphobos-GCC_VER-dev-CROSS_ARCH-cross Architecture: all Section: libdevel Priority: optional Depends: gcc-GCC_VER-CROSS_GNU_TYPE-base (= ${gcc:Version}), libgcc-GCC_VER-dev-CROSS_ARCH-cross (= ${gcc:Version}), ${shlibs:Depends}, ${misc:Depends} Description: Phobos D standard library This is the Phobos standard library that comes with the D2 compiler. Package: gcc-GCC_VER-source Architecture: all Priority: optional Depends: make (>= 3.81), autoconf2.64, automake, quilt, patchutils, gawk, ${misc:Depends} Description: Source of the GNU Compiler Collection This package contains the sources and patches which are needed to build the GNU Compiler Collection (GCC). gcc-4.8-arm64-cross-0.11.2/debian/README.source0000664000000000000000000000045712052417756015224 0ustar This package does not contain sources to build resulting packages. All of them are generated from contents of source binary package: - gcc-4.5-source Result of build is mangled to contain proper information about which source package they were built from and some version changes may also be applied. gcc-4.8-arm64-cross-0.11.2/debian/changelog0000664000000000000000000005214012676776330014723 0ustar gcc-4.8-arm64-cross (0.11.2) trusty-proposed; urgency=medium * Don't install libstdc++ pretty printer files. LP: #1562553. -- Matthias Klose Wed, 30 Mar 2016 17:59:15 +0200 gcc-4.8-arm64-cross (0.11.1) trusty-proposed; urgency=medium * Rebuild using 4.8.4-2ubuntu1~14.04.1. LP: #1549421. -- Matthias Klose Thu, 25 Feb 2016 10:41:35 +0100 gcc-4.8-arm64-cross (0.11) trusty; urgency=low * Build-depend on gcc-4.8-source (>= 4.8.2-13). -- Matthias Klose Mon, 13 Jan 2014 08:17:58 +0100 gcc-4.8-arm64-cross (0.9) saucy; urgency=low * Build-depend on gcc-4.8-source (>= 4.8.1-10). -- Matthias Klose Mon, 07 Oct 2013 17:15:25 +0200 gcc-4.8-arm64-cross (0.7) saucy; urgency=low * Build-depend on gcc-4.8-source (>= 4.8.1-7). -- Matthias Klose Thu, 18 Jul 2013 11:38:36 +0200 gcc-4.8-arm64-cross (0.6) saucy; urgency=low * Build-depend on gcc-4.8-source (>= 4.8.1-6). -- Matthias Klose Wed, 10 Jul 2013 09:34:21 +0200 gcc-4.8-arm64-cross (0.5) saucy; urgency=low * Build-depend on gcc-4.8-source (>= 4.8.1-5). -- Matthias Klose Sun, 30 Jun 2013 17:12:23 +0200 gcc-4.8-arm64-cross (0.4) saucy; urgency=low * Build gcj-4.8 and gdc-4.8 cross compilers. -- Matthias Klose Tue, 18 Jun 2013 13:11:34 +0200 gcc-4.8-arm64-cross (0.3) saucy; urgency=low * Build-depend on gcc-4.8-source (>= 4.8.1-2). * Don't build D and Java cross compilers. * Don't build the Go cross compiler. -- Matthias Klose Wed, 05 Jun 2013 14:49:17 +0200 gcc-4.8-arm64-cross (0.2) raring; urgency=low * Build-depend on gcc-4.8-source (>= 4.8.0-2). * Add new runtime libs to the control file. -- Matthias Klose Thu, 04 Apr 2013 12:29:26 +0200 gcc-4.7-armhf-cross (1.80) raring; urgency=low * Update to SVN 20130214 (r196053) from the gcc-4_7-branch. * Update the Linaro support to the 4.7-2013.02 release. -- Matthias Klose Fri, 15 Feb 2013 06:06:10 +0100 gcc-4.7-armhf-cross (1.79) raring; urgency=low * Build-depend on gcc-4.7-source (>= 4.7.2-19). -- Matthias Klose Sun, 20 Jan 2013 18:44:29 +0100 gcc-4.7-armhf-cross (1.78) raring; urgency=low * Build-depend on gcc-4.7-source (>= 4.7.2-18). * Merge powerpc cross build changes. -- Matthias Klose Fri, 11 Jan 2013 17:34:45 +0100 gcc-4.7-armhf-cross (1.77) raring; urgency=low * Build the libgcc1 packages from this source. -- Matthias Klose Thu, 13 Dec 2012 16:35:19 +0100 gcc-4.7-armhf-cross (1.76) raring; urgency=low * Install into /usr/lib/gcc-cross to avoid file conflicts with the native compiler for the target architecture. * Don't add /usr/local/include to the standard include path, however /usr/local/include/ is still on the path. -- Matthias Klose Sat, 08 Dec 2012 12:43:25 +0100 gcc-4.7-armhf-cross (1.75) raring; urgency=low * Fix libc6 dependencies for non-default multilib packages. -- Matthias Klose Thu, 06 Dec 2012 17:25:25 +0100 gcc-4.7-armhf-cross (1.74) raring; urgency=low * Configure --with-sysroot=/. * Don't choke on building empty packages. * Re-enable the multilib builds. * Fix -multilib dependencies. * Remove obsolete patches. -- Matthias Klose Wed, 05 Dec 2012 10:43:40 +0100 gcc-4.7-armhf-cross (1.73) raring; urgency=low * No longer build multilib cross compiler. We do not have "armel" anymore. * Updated debian/control to 4.7.2-5 * Added patch to fix libgfortran-4.7-dev section * Added patch to fix location of files for libstdc++-dev * Keep libgcc-4.7-dev for mangling -- Marcin Juszkiewicz Tue, 20 Nov 2012 15:40:37 +0100 gcc-4.7-armhf-cross (1.72) raring; urgency=low * Dropped merged patch. -- Marcin Juszkiewicz Fri, 26 Oct 2012 14:18:40 +0200 gcc-4.7-armhf-cross (1.71) raring; urgency=low * Bumped minimal version to 4.7.2-5 * Handle all new lib*dev packages * Updated patches * Added libgcc-dev and libobjc-dev into control.in -- Marcin Juszkiewicz Wed, 24 Oct 2012 20:56:00 +0200 gcc-4.7-armhf-cross (1.70) quantal; urgency=low * Update to gcc 4.7.2 -- Marcin Juszkiewicz Fri, 21 Sep 2012 13:28:25 +0200 gcc-4.7-armhf-cross (1.69) quantal; urgency=low * Update to Linaro 2012.09 release. * Fixed patch to use multiarch dirs - LP: #799965 -- Marcin Juszkiewicz Mon, 17 Sep 2012 15:05:28 +0200 gcc-4.7-armhf-cross (1.68) quantal; urgency=low * Update to Linaro 2012.08 release. -- Marcin Juszkiewicz Fri, 31 Aug 2012 13:30:54 +0200 gcc-4.7-armhf-cross (1.67) quantal; urgency=low * Update to Linaro 2012.07 release. * Dropped merged patches (--disable-multiarch one) * Added patch for debian/control.m4 to get cross build working - Debian bug #680590 -- Marcin Juszkiewicz Mon, 23 Jul 2012 11:11:03 +0200 gcc-4.7-armhf-cross (1.66) quantal; urgency=low * Fixed amd64 (arch only) build. -- Marcin Juszkiewicz Wed, 04 Jul 2012 17:03:32 +0200 gcc-4.7-armhf-cross (1.65) quantal; urgency=low * Update to 4.7.1 -- Marcin Juszkiewicz Tue, 03 Jul 2012 11:34:29 +0200 gcc-4.7-armhf-cross (1.64) quantal; urgency=low * Added lintian overrides for errors - LP: #1003226 * Fixed debian/control entries -- Marcin Juszkiewicz Wed, 23 May 2012 14:05:07 +0200 gcc-4.7-armhf-cross (1.63) quantal; urgency=low [ Wookey ] * Add gcc-4.7 support. [ Marcin Juszkiewicz ] * Added libobjc4 and Go packages into debian/control. -- Marcin Juszkiewicz Sun, 15 Apr 2012 18:39:26 +0200 gcc-4.6-armel-cross (1.62) precise; urgency=low * fixed library paths for armhf -- Marcin Juszkiewicz Fri, 16 Mar 2012 14:06:39 +0100 gcc-4.6-armel-cross (1.61) precise; urgency=low * Apply part of multiarch dirs hack from 1.59 to make cross compiler check {/usr}/lib/{TRIPLET} directories - LP: #948790 -- Marcin Juszkiewicz Thu, 08 Mar 2012 13:50:16 +0100 gcc-4.6-armel-cross (1.60) precise; urgency=low * Make -base and -multilib packages arch=all - LP: #934556 -- Marcin Juszkiewicz Thu, 23 Feb 2012 13:49:44 +0100 gcc-4.6-armel-cross (1.59) precise; urgency=low * Fix architecture for packages to not touch arm/powerpc builders - LP: #924927 - base and multilib ones are arch=all - compilers are arch='amd64 i386' not 'any' * Bump gcc to 4.6.2-14ubuntu2 to get all debian/control.m4 fixes * Wrote better version of patch to use multiarch dirs - LP: #799965 -- Marcin Juszkiewicz Thu, 16 Feb 2012 18:26:40 +0100 gcc-4.6-armel-cross (1.58) precise; urgency=low * Added hack to make cross compiler use multiarch dirs - LP: #799965 -- Marcin Juszkiewicz Wed, 18 Jan 2012 08:14:22 +0100 gcc-4.6-armel-cross (1.57) precise; urgency=low * Rebuild to keep up with recent Ubuntu gcc changes. -- Marcin Juszkiewicz Tue, 03 Jan 2012 11:33:10 +0100 gcc-4.6-armel-cross (1.56) precise; urgency=low * Enabled hardening patches for cross - closes LP: #868924 * Bumped gcc-4.6 version to 4.6.2-7 as this one has all my patches merged. * Dropped gcc-4.4 build dependency. * Added lintian overrides. * Added build-{arch,indep} targets. -- Marcin Juszkiewicz Mon, 12 Dec 2011 16:54:17 +0100 gcc-4.6-armel-cross (1.55) oneiric; urgency=low * Rebuild to keep up with recent Ubuntu gcc changes. * First multilib capable cross toolchain * Added hf/sf packages into debian/control.in * Added armhf/armel libc6-dev to EXTRA_BUILD_DEPS -- Marcin Juszkiewicz Tue, 27 Sep 2011 09:07:59 +0200 gcc-4.6-armel-cross (1.54) oneiric; urgency=low * Rebuild to keep up with recent Ubuntu gcc changes. * Updated to Linaro 2011.07 release stable updates. -- Marcin Juszkiewicz Tue, 30 Aug 2011 12:22:36 +0200 gcc-4.6-armel-cross (1.53) oneiric; urgency=low * Rebuild to keep up with Linaro 2011.07 release. * Use patches from LP: 816852 to disable multilib in gcc build * moved patches to patches/gcc/ to avoid patch-modifying-debian-files error from lintian -- Marcin Juszkiewicz Thu, 28 Jul 2011 17:39:02 +0200 gcc-4.6-armel-cross (1.52) oneiric; urgency=low * Update to 2011.06 Linaro release. -- Marcin Juszkiewicz Wed, 22 Jun 2011 18:00:33 +0200 gcc-4.6-armel-cross (1.51) oneiric; urgency=low * Unified gcc-4.[456]-armel-cross packaging - one debian/ directory is now used to generate any of those 3 versions - next versions of cross compiler are handled too (in very generic way) - armel and armhf architectures are handled equal - added README with informations how to switch version/architecture - added generation of debian/control from control.in file - takes care about target architecture - allows to add extra build dependencies - dropped old, not used code which did similar thing - added libobjc3* packages from gcc-4.6 into control - added few more files to 'clean' target: *.ddebs debian/files - added code to handle building for Linaro backport PPA - merged all rules into debian/rules file -- Marcin Juszkiewicz Fri, 03 Jun 2011 17:05:20 +0200 gcc-4.6-armel-cross (1.50) oneiric; urgency=low * remove orphaned gcc-4.6-plugin-dev-dbgsym package -- Marcin Juszkiewicz Thu, 02 Jun 2011 12:00:05 +0200 gcc-4.6-armel-cross (1.49) oneiric; urgency=low * Added missing dependency on gcc-4.4 -- Marcin Juszkiewicz Thu, 02 Jun 2011 09:51:45 +0200 gcc-4.6-armel-cross (1.48) oneiric; urgency=low * Final upload to Ubuntu. * dropped libgcc1 packages - they are now built from armel-cross-toolchain-base * re-added source/format -- Marcin Juszkiewicz Tue, 31 May 2011 10:19:17 +0200 gcc-4.6-armel-cross (1.47) UNRELEASED; urgency=low * again targetting Debian/experimental only * added libgcc1 packages * renamed libobjc2 -> libobjc3 -- Marcin Juszkiewicz Tue, 15 Mar 2011 10:23:11 +0100 gcc-4.6-armel-cross (1.46) UNRELEASED; urgency=low * First version of gcc 4.6 cross - targetting Debian/experimental only. -- Marcin Juszkiewicz Wed, 23 Feb 2011 13:50:42 +0000 gcc-4.5-armel-cross (1.45) natty; urgency=low * control: added gcc-4.5-plugin-dev-arm-linux-gnueabi - close LP #714968 * check for proper ver of gcc - need to rename vars later -- Marcin Juszkiewicz Tue, 08 Feb 2011 12:09:15 +0100 gcc-4.5-armel-cross (1.44) natty; urgency=low * switch to use wildcard instead of listing packages so ddebs will be provided - closes LP: #711523 -- Marcin Juszkiewicz Wed, 02 Feb 2011 12:46:25 +0100 gcc-4.5-armel-cross (1.43) natty; urgency=low * update to get gcc 4.5.2 release * use PKG_IGNORE_CURRENTLY_BUILDING instead of NO_PKG_MANGLE to allow to generate .ddebs * control: fix Vcs links -- Marcin Juszkiewicz Tue, 25 Jan 2011 12:29:53 +0100 gcc-4.5-armel-cross (1.42) natty; urgency=low * added backport PPA support -- Marcin Juszkiewicz Fri, 14 Jan 2011 17:17:32 +0100 gcc-4.5-armel-cross (1.41) natty; urgency=low * version bump to skip 1.39-1.40 which were PPA only - dropped flavoured toolchain support needs to be rewritten - control: dropped duplicated fields - rules: clean target removes more files -- Marcin Juszkiewicz Mon, 29 Nov 2010 12:52:11 +0100 gcc-4.5-armel-cross (1.38) maverick; urgency=low [ Marcin Juszkiewicz ] * use original packages to populate debian/files * add "crossVER" into packages to make them upgradeable with new release of gcc-4.5-armel-cross package [ Steve Langasek ] * Don't conflicts/replace gcc-3.5-base * debian/rules.common: add changelog md5sum handling. -- Steve Langasek Wed, 22 Sep 2010 03:06:35 +0000 gcc-4.5-armel-cross (1.37) maverick; urgency=low * build also gcc-4.5-arm-linux-gnueabi-base -- Marcin Juszkiewicz Thu, 16 Sep 2010 17:08:38 +0200 gcc-4.5-armel-cross (1.36) maverick; urgency=low * process only resulting debs - closes LP: #640298 -- Marcin Juszkiewicz Thu, 16 Sep 2010 15:05:23 +0200 gcc-4.5-armel-cross (1.35) maverick; urgency=low * split to gcc-4.4-armel-cross and gcc-4.5-armel-cross -- Marcin Juszkiewicz Tue, 14 Sep 2010 11:56:48 +0200 armel-cross-toolchain (1.34) maverick; urgency=low * Making improvements to package to get it accepted into Ubuntu. - added copyright informations - source/format: set to 3.0 (native) - added README.source with informations how package works * debian/control changes: - generated new one with all build dependencies cleaned - added entries for generated packages - added Vcs- fields - removed regeneration of debian/control during build - set Priority to extra - set "Section: debug" for all -dbg packages * debian/rules: - dropped version mangling which was needed in ppa - dropped using architecture name from rules - use quilt to apply patches - use "tar -xf" and depend on tar 1.20+ * GCC changes: - updated gcc debian/control.m4 patch to fix all priority and section fields - all GCC patches are merged and will be present in next versions of gcc-4.4/4.5 -- Marcin Juszkiewicz Fri, 10 Sep 2010 15:58:30 +0200 armel-cross-toolchain (1.33) maverick; urgency=low * sync with armel-cross-toolchain-base -- Marcin Juszkiewicz Wed, 08 Sep 2010 11:34:49 +0200 armel-cross-toolchain (1.32) maverick; urgency=low * build-depend on binutils-multiarch -- Marcin Juszkiewicz Tue, 07 Sep 2010 21:32:59 +0200 armel-cross-toolchain (1.31) maverick; urgency=low * fix setting target for gcc 4.5 * libmudflap is now proper arch -- Marcin Juszkiewicz Tue, 07 Sep 2010 09:56:58 +0200 armel-cross-toolchain (1.30) maverick; urgency=low * apply patch from LP 631474 to fix plugin-dev package * limit to amd64/i386 -- Marcin Juszkiewicz Mon, 06 Sep 2010 16:12:57 +0200 armel-cross-toolchain (1.29) maverick; urgency=low * Bump version -- Marcin Juszkiewicz Fri, 03 Sep 2010 15:36:30 +0200 armel-cross-toolchain (1.28) maverick; urgency=low * Split ARCH and arch:all steps -- Marcin Juszkiewicz Fri, 03 Sep 2010 14:36:18 +0200 armel-cross-toolchain (1.27) maverick; urgency=low * Fixed DEB_LIST to not have hardcoded host/target names and package versions. -- Marcin Juszkiewicz Wed, 01 Sep 2010 17:46:58 +0200 armel-cross-toolchain (1.26) maverick; urgency=low * Imported few improvements from armel-cross-toolchain-base: * use DEB_LIST to populate debian/control * added DO_SED_HACKS * simplified tasks dependencies * started to use DEB_LIST * added empty binary-arch * gcc-4.4 is in gcc44 directory... * hack PKGSOURCE in gcc-4.x packaging to not be read from changelog -- Marcin Juszkiewicz Wed, 01 Sep 2010 14:26:28 +0200 armel-cross-toolchain (1.25) maverick; urgency=low * Dropped non-gcc steps and variables * Build gcc-4.4 and gcc-4.5 * Added gcc-4.[45]-source build dependencies -- Marcin Juszkiewicz Wed, 01 Sep 2010 12:22:23 +0200 armel-cross-toolchain (1.24) maverick; urgency=low * First version of final gcc build. -- Marcin Juszkiewicz Mon, 30 Aug 2010 16:54:47 +0200 armel-cross-toolchain-base (1.23) maverick; urgency=low * Added texi2html dependency - needed by eglibc. -- Marcin Juszkiewicz Mon, 30 Aug 2010 12:30:53 +0200 armel-cross-toolchain-base (1.22) maverick; urgency=low * Added target libraries to LD_LIBRARY_PATH for dpkg-shlibdeps * Build gcc-*-base from gcc/stage2 -- Marcin Juszkiewicz Mon, 30 Aug 2010 11:42:53 +0200 armel-cross-toolchain-base (1.21) maverick; urgency=low * More build dependencies -- Marcin Juszkiewicz Fri, 27 Aug 2010 16:28:16 +0200 armel-cross-toolchain-base (1.20) maverick; urgency=low * Use gcc 4.5 by default. -- Marcin Juszkiewicz Fri, 27 Aug 2010 12:45:14 +0200 armel-cross-toolchain-base (1.19) maverick; urgency=low * Use plain Ubuntu packages and apply patches when needed. -- Marcin Juszkiewicz Thu, 26 Aug 2010 15:59:24 +0200 armel-cross-toolchain-base (1.18) maverick; urgency=low * Package libgcc1 in gcc/stage2 -- Marcin Juszkiewicz Thu, 26 Aug 2010 15:46:09 +0200 armel-cross-toolchain-base (1.17) maverick; urgency=low * Split to armel-cross-toolchain-base (binutils, eglibc, linux-headers) and armel-cross-toolchain (gcc/stage3). -- Marcin Juszkiewicz Thu, 26 Aug 2010 11:58:33 +0200 armel-cross-toolchain (1.16) maverick; urgency=low * New code for generating debian/files from -armel-cross packages. * Removed copying of linux/debian/{control,files} as we need only linux-libc-dev which gets converted with dpkg-cross. -- Marcin Juszkiewicz Mon, 23 Aug 2010 15:16:37 +0200 armel-cross-toolchain (1.15) maverick; urgency=low * Updated to versions with my changes applied. -- Marcin Juszkiewicz Mon, 23 Aug 2010 10:43:28 +0200 armel-cross-toolchain (1.14) maverick; urgency=low * Bumped gcc-4.4-source to newer patchset. -- Marcin Juszkiewicz Wed, 11 Aug 2010 17:33:33 +0200 armel-cross-toolchain (1.13) maverick; urgency=low * Eglibc/stage2 tried to use Linux headers from /usr/arm-linux-gnueabi/ -- Marcin Juszkiewicz Tue, 10 Aug 2010 17:30:40 +0200 armel-cross-toolchain (1.12) maverick; urgency=low * Remove most of eglibc/localesdata from list of generated ones. -- Marcin Juszkiewicz Tue, 10 Aug 2010 16:11:36 +0200 armel-cross-toolchain (1.11) maverick; urgency=low * Eglibc tried to use Linux headers from /usr/arm-linux-gnueabi/ -- Marcin Juszkiewicz Tue, 10 Aug 2010 13:29:33 +0200 armel-cross-toolchain (1.10) maverick; urgency=low * Fixed build-eglibc1 deps -- Marcin Juszkiewicz Tue, 10 Aug 2010 12:37:10 +0200 armel-cross-toolchain (1.9) maverick; urgency=low * Fixed build-eglibc1 patch problem. -- Marcin Juszkiewicz Tue, 10 Aug 2010 12:35:10 +0200 armel-cross-toolchain (1.8) maverick; urgency=low * Made init-eglibc really stampless. * Fixed build-eglibc1 arch problem. -- Marcin Juszkiewicz Tue, 10 Aug 2010 11:05:10 +0200 armel-cross-toolchain (1.7) maverick; urgency=low * Added NO_PKG_MANGLE=1 as I build other source packages. * init-eglibc is stampless as eglibc provides patched source -- Marcin Juszkiewicz Sun, 08 Aug 2010 18:55:10 +0200 armel-cross-toolchain (1.6) maverick; urgency=low * Added build-depends from binutils, eglibc, gcc-4.4, linux. -- Marcin Juszkiewicz Sun, 08 Aug 2010 18:15:50 +0200 armel-cross-toolchain (1.5) maverick; urgency=low * Few more fixes -- Marcin Juszkiewicz Sun, 08 Aug 2010 17:17:56 +0200 armel-cross-toolchain (1.4) maverick; urgency=low * Create stamp dir... -- Marcin Juszkiewicz Fri, 06 Aug 2010 16:56:57 +0200 armel-cross-toolchain (1.3) maverick; urgency=low * Introduced lot of variables which keep versions. Values are taken from components changelog files. -- Marcin Juszkiewicz Fri, 06 Aug 2010 16:56:57 +0200 armel-cross-toolchain (1.2) maverick; urgency=low * Fix build dependencies. -- Marcin Juszkiewicz Fri, 06 Aug 2010 12:31:43 +0200 armel-cross-toolchain (1.1) maverick; urgency=low * Fixed few lintian problems. -- Marcin Juszkiewicz Fri, 06 Aug 2010 11:05:59 +0200 armel-cross-toolchain (1.0) maverick; urgency=low * Initial packaging -- Marcin Juszkiewicz Thu, 05 Aug 2010 13:35:45 +0200 gcc-4.8-arm64-cross-0.11.2/debian/README0000664000000000000000000000067512052417756013727 0ustar This packaging directory can be used to build few versions of cross gcc: - 4.4 - 4.5 - 4.6 Steps requires to switch between them are: $ cp debian/changelog-VER debian/changelog $ debian/rules control For now cross toolchains for two architectures are available: - armel - armhf Steps requires to switch between them are: $ vi debian/changelog > change first entry to "gcc-VER-ARCH-cross" $ debian/rules control And then rebuild package. gcc-4.8-arm64-cross-0.11.2/stamp-dir/0000775000000000000000000000000012676776333013530 5ustar