Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for devtoolset7 (0.17 sec)

  1. ci/official/containers/linux_arm64/builder.devtoolset/build_devtoolset.sh

    #
    # Builds a devtoolset cross-compiler targeting manylinux2014 (glibc 2.17 / libstdc++ 4.8).
    
    VERSION="$1"
    TARGET="$2"
    
    case "${VERSION}" in
    devtoolset-9)
      LIBSTDCXX_VERSION="6.0.28"
      LIBSTDCXX_ABI="new"
      ;;
    devtoolset-10)
      LIBSTDCXX_VERSION="6.0.28"
      LIBSTDCXX_ABI="new"
      ;;
    *)
      echo "Usage: $0 {devtoolset-9|devtoolset-10} <target-directory> <arch>"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 29 00:26:34 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  2. ci/official/containers/linux_arm64/Dockerfile

    COPY builder.devtoolset/build_devtoolset.sh /build_devtoolset.sh
    COPY builder.devtoolset/gcc9-fixups.patch /gcc9-fixups.patch
    COPY builder.devtoolset/stringop_trunc.patch /stringop_trunc.patch
    
    RUN /build_devtoolset.sh devtoolset-10 /dt10
    
    # Build later version of patchelf that is not so buggy
    COPY builder.patchelf/build_patchelf.sh /build_patchelf.sh
    COPY apt.conf /etc/apt/
    RUN /build_patchelf.sh
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jan 08 09:32:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. ci/official/containers/linux_arm64/setup.python.sh

    $VERSION-dev
    $VERSION-venv
    $VERSION-distutils
    EOF
    /setup.packages.sh pythons.txt
    
    # Re-link pyconfig.h from aarch64-linux-gnu into the devtoolset directory
    # for any Python version present
    pushd /usr/include/aarch64-linux-gnu
    for f in $(ls | grep python); do
      # set up symlink for devtoolset-10
      rm -f /dt10/usr/include/aarch64-linux-gnu/$f
      ln -s /usr/include/aarch64-linux-gnu/$f /dt10/usr/include/aarch64-linux-gnu/$f
    done
    popd
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 29 00:26:34 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. ci/official/containers/linux_arm64/builder.packages.txt

    libffi-dev
    liblzma-dev
    libncurses5-dev
    libreadline-dev
    libsqlite3-dev
    libssl-dev
    libxml2-dev
    libxmlsec1-dev
    llvm
    make
    openssl
    tk-dev
    wget
    xz-utils
    zlib1g-dev
    git
    
    # Packages needed to build devtoolset
    file
    flex
    g++
    make
    patch
    rpm2cpio
    unar
    wget
    xz-utils
    cpio
    gawk
    texinfo
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 29 00:26:34 UTC 2023
    - 430 bytes
    - Viewed (0)
  5. ci/official/containers/linux_arm64/ld.so.conf

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ==============================================================================
    #
    # Builds a devtoolset cross-compiler targeting manylinux2014 (glibc 2.17 / libstdc++ 4.8).
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 19:00:37 UTC 2023
    - 790 bytes
    - Viewed (0)
  6. RELEASE.md

        public API of tensorflow). We don't expect this to be breaking, unless you
        were importing directly from the implementation.
    *   TensorFlow 1.15 is built using devtoolset7 (GCC7) on Ubuntu 16. This may
        lead to ABI incompatibilities with extensions built against earlier versions
        of TensorFlow.
    *   Deprecated the use of `constraint=` and `.constraint` with ResourceVariable.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top