Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for aarch64 (0.18 sec)

  1. ci/official/containers/linux_arm64/devel.usertools/aarch64.bazelrc

    build --profile=/tf/pkg/profile.json.gz
    
    # Use the rebuilt gcc toolchain to compile for manylinux2014
    build --crosstool_top="@ml2014_aarch64_config_aarch64//crosstool:toolchain"
    test --crosstool_top="@ml2014_aarch64_config_aarch64//crosstool:toolchain"
    
    build --copt="-mtune=generic" --copt="-march=armv8-a" --copt="-O3"
    
    # Test-related settings below this point.
    Plain Text
    - Registered: Tue Apr 16 12:39:09 GMT 2024
    - Last Modified: Tue Nov 21 12:25:39 GMT 2023
    - 5.8K bytes
    - Viewed (0)
  2. ci/official/containers/linux_arm64/devel.usertools/aarch64_clang.bazelrc

    build --profile=/tf/pkg/profile.json.gz
    
    # Use the rebuilt gcc toolchain to compile for manylinux2014
    build --crosstool_top="@ml2014_clang_aarch64_config_aarch64//crosstool:toolchain"
    
    build --copt="-mtune=generic" --copt="-march=armv8-a" --copt="-O3"
    
    # Test-related settings below this point.
    test --build_tests_only --keep_going --test_output=errors --verbose_failures=true
    Plain Text
    - Registered: Tue Apr 16 12:39:09 GMT 2024
    - Last Modified: Tue Nov 21 12:25:39 GMT 2023
    - 6.3K bytes
    - Viewed (0)
  3. ci/official/containers/linux_arm64/builder.devtoolset/fixlinks_aarch64.sh

    Michael Hudgins <******@****.***> 1695048765 +0000
    Shell Script
    - Registered: Tue Apr 16 12:39:09 GMT 2024
    - Last Modified: Mon Sep 18 14:52:45 GMT 2023
    - 969 bytes
    - Viewed (0)
  4. arm_compiler.BUILD

            "libexec/**",
            "lib/gcc/arm-rpi-linux-gnueabihf/**",
            "include/**",
        ]),
    )
    
    filegroup(
        name = "aarch64_compiler_pieces",
        srcs = glob([
            "aarch64-none-linux-gnu/**",
            "libexec/**",
            "lib/gcc/aarch64-none-linux-gnu/**",
            "include/**",
        ]),
    )
    
    filegroup(
        name = "compiler_components",
        srcs = [
            ":ar",
            ":as",
    Plain Text
    - Registered: Tue Apr 16 12:39:09 GMT 2024
    - Last Modified: Mon Apr 12 11:17:46 GMT 2021
    - 1.2K bytes
    - Viewed (0)
  5. ci/official/containers/linux_arm64/setup.python.sh

    $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
    
    # Python 3.10 include headers fix:
    Shell Script
    - Registered: Tue Apr 16 12:39:09 GMT 2024
    - Last Modified: Fri Sep 29 00:26:34 GMT 2023
    - 2.1K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/common/Os.kt

     * limitations under the License.
     */
    
    package common
    
    enum class Arch(val suffix: String, val nameOnLinuxWindows: String, val nameOnMac: String) {
        AMD64("64bit", "amd64", "x86_64"),
        AARCH64("aarch64", "aarch64", "aarch64");
    
        fun asName() = name.lowercase().toCapitalized()
    }
    
    enum class Os(
        val agentRequirement: String,
        val androidHome: String,
        val jprofilerHome: String,
    Plain Text
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Sun Sep 24 06:56:47 GMT 2023
    - 2.4K bytes
    - Viewed (0)
  7. ci/official/containers/linux_arm64/builder.devtoolset/build_devtoolset.sh

       > "${TARGET}/usr/lib64/libstdc++.so.${LIBSTDCXX_VERSION}"
    cp "./aarch64-unknown-linux-gnu/libstdc++-v3/src/.libs/libstdc++_nonshared44.a" \
       "${TARGET}/usr/lib64"
    
    
    # Link in architecture specific includes from the system; note that we cannot
    # link in the whole aarch64-linux-gnu folder, as otherwise we're overlaying
    # system gcc paths that we do not want to find.
    Shell Script
    - Registered: Tue Apr 16 12:39:09 GMT 2024
    - Last Modified: Fri Sep 29 00:26:34 GMT 2023
    - 6.1K bytes
    - Viewed (1)
  8. api/go1.4.txt

    pkg debug/elf, const R_AARCH64_CALL26 R_AARCH64
    pkg debug/elf, const R_AARCH64_CONDBR19 = 280
    pkg debug/elf, const R_AARCH64_CONDBR19 R_AARCH64
    pkg debug/elf, const R_AARCH64_COPY = 1024
    pkg debug/elf, const R_AARCH64_COPY R_AARCH64
    pkg debug/elf, const R_AARCH64_GLOB_DAT = 1025
    pkg debug/elf, const R_AARCH64_GLOB_DAT R_AARCH64
    pkg debug/elf, const R_AARCH64_GOT_LD_PREL19 = 309
    Plain Text
    - Registered: Tue Apr 16 11:13:10 GMT 2024
    - Last Modified: Fri Dec 12 03:01:01 GMT 2014
    - 34K bytes
    - Viewed (0)
  9. buildscripts/checkdeps.sh

    			return 1
    		fi
    	done
    
    	return 0
    }
    
    assert_is_supported_arch() {
    	case "${ARCH}" in
    	x86_64 | amd64 | aarch64 | ppc64le | arm* | s390x | loong64 | loongarch64)
    		return
    		;;
    	*)
    		echo "Arch '${ARCH}' is not supported. Supported Arch: [x86_64, amd64, aarch64, ppc64le, arm*, s390x, loong64, loongarch64]"
    		exit 1
    		;;
    	esac
    }
    
    assert_is_supported_os() {
    	case "${KNAME}" in
    Shell Script
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Fri May 26 05:07:25 GMT 2023
    - 3.4K bytes
    - Viewed (0)
  10. api/go1.10.txt

    pkg debug/elf, const R_AARCH64_TLSGD_MOVW_G1 = 515
    pkg debug/elf, const R_AARCH64_TLSGD_MOVW_G1 R_AARCH64
    pkg debug/elf, const R_AARCH64_TLSLD_ADR_PAGE21 = 518
    pkg debug/elf, const R_AARCH64_TLSLD_ADR_PAGE21 R_AARCH64
    pkg debug/elf, const R_AARCH64_TLSLD_ADR_PREL21 = 517
    pkg debug/elf, const R_AARCH64_TLSLD_ADR_PREL21 R_AARCH64
    pkg debug/elf, const R_AARCH64_TLSLD_LDST128_DTPREL_LO12 = 572
    Plain Text
    - Registered: Tue Apr 16 11:13:10 GMT 2024
    - Last Modified: Tue Feb 06 05:00:01 GMT 2018
    - 30.1K bytes
    - Viewed (0)
Back to top