Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 171 for gcc_ (0.03 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/Gcc.java

     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.toolchain;
    
    import org.gradle.api.Incubating;
    
    /**
     * The <a href="http://gcc.gnu.org/">GNU GCC</a> tool chain.
     */
    @Incubating
    public interface Gcc extends GccCompatibleToolChain {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 835 bytes
    - Viewed (0)
  2. ci/official/containers/linux_arm64/builder.devtoolset/gcc9-fixups.patch

    @@ -107,6 +107,11 @@
     # endif
     #endif
     
    +#ifndef __attribute_copy__
    +/* Provide an empty definition when cdefs.h is not included.  */
    +# define __attribute_copy__(arg)
    +#endif
    +
     #ifndef __ASSEMBLER__
     /* GCC understands weak symbols and aliases; use its interface where
        possible, instead of embedded assembly language.  */
    @@ -114,7 +119,8 @@
     /* Define ALIASNAME as a strong alias for NAME.  */
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  3. ci/official/containers/linux_arm64/builder.devtoolset/build_devtoolset.sh

      rpm2cpio "devtoolset-9-gcc-9.3.1-2.2.el7.src.rpm" |cpio -idmv
      tar -xvf "gcc-9.3.1-20200408.tar.xz" --strip 1
      ;;
    devtoolset-10)
      wget --retry-connrefused --waitretry=1 --read-timeout=20 --timeout=15 --tries=5 "https://vault.centos.org/centos/7/sclo/Source/rh/devtoolset-10-gcc-10.2.1-11.2.el7.src.rpm"
      rpm2cpio "devtoolset-10-gcc-10.2.1-11.2.el7.src.rpm" |cpio -idmv
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 29 00:26:34 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  4. src/debug/elf/testdata/gcc-amd64-linux-exec

    Andrew Gerrand <******@****.***> 1441330476 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 04 02:59:49 UTC 2015
    - 8.6K bytes
    - Viewed (0)
  5. src/debug/pe/testdata/gcc-386-mingw-obj

    Russ Cox <******@****.***> 1410149331 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 2.3K bytes
    - Viewed (0)
  6. src/debug/pe/testdata/gcc-amd64-mingw-obj

    Russ Cox <******@****.***> 1410149331 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 736 bytes
    - Viewed (0)
  7. src/debug/elf/testdata/gcc-386-freebsd-exec

    Andrew Gerrand <******@****.***> 1441330476 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 04 02:59:49 UTC 2015
    - 5.6K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppMissingToolchainIntegrationTest.groovy

      - Tool chain 'gcc' (GNU GCC):
          - Could not find C++ compiler 'g++'. Searched in:
              - ${file('gcc-bin')}
      - Tool chain 'clang' (Clang):
          - Could not find C++ compiler 'clang++'. Searched in:
              - ${file('clang-bin')}""")
            }
        }
    
        @ToBeFixedForConfigurationCache
        def "can build with Clang when gcc is available but g++ is not available"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  9. arm_compiler.BUILD

    package(default_visibility = ["//visibility:public"])
    
    filegroup(
        name = "gcc",
        srcs = glob(["bin/*-gcc"]),
    )
    
    filegroup(
        name = "ar",
        srcs = glob(["bin/*-ar"]),
    )
    
    filegroup(
        name = "ld",
        srcs = glob(["bin/*-ld"]),
    )
    
    filegroup(
        name = "nm",
        srcs = glob(["bin/*-nm"]),
    )
    
    filegroup(
        name = "objcopy",
        srcs = glob(["bin/*-objcopy"]),
    )
    
    filegroup(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 12 11:17:46 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/GccToolChain.java

    import org.gradle.nativeplatform.toolchain.Gcc;
    import org.gradle.nativeplatform.toolchain.internal.gcc.metadata.GccMetadata;
    import org.gradle.nativeplatform.toolchain.internal.gcc.metadata.SystemLibraryDiscovery;
    import org.gradle.nativeplatform.toolchain.internal.metadata.CompilerMetaDataProviderFactory;
    import org.gradle.process.internal.ExecActionFactory;
    
    
    /**
     * Compiler adapter for GCC.
     */
    @NonNullApi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top