Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for Sparc (0.04 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/target-platforms/groovy/build.gradle

                    }
                }
                target("sparc")
            }
        }
        platforms {
            arm {
                architecture "arm"
            }
            sparc {
                architecture "sparc"
            }
        }
        components {
            main(NativeExecutableSpec) {
                targetPlatform "arm"
                targetPlatform "sparc"
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 688 bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/MultipleNativeToolChainIntegrationTest.groovy

    model {
        platforms {
            i386 {
                architecture "i386"
            }
            sparc {
                architecture "sparc"
            }
        }
        toolChains {
            ${x86ToolChain.buildScriptConfig}
            ${sparcToolChain.buildScriptConfig}
            ${sparcToolChain.id} {
                target("sparc")
            }
        }
        components {
            main(NativeExecutableSpec) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. src/internal/goarch/zgoarch_sparc.go

    // Code generated by gengoarch.go using 'go generate'. DO NOT EDIT.
    
    //go:build sparc
    
    package goarch
    
    const GOARCH = `sparc`
    
    const Is386 = 0
    const IsAmd64 = 0
    const IsAmd64p32 = 0
    const IsArm = 0
    const IsArmbe = 0
    const IsArm64 = 0
    const IsArm64be = 0
    const IsLoong64 = 0
    const IsMips = 0
    const IsMipsle = 0
    const IsMips64 = 0
    const IsMips64le = 0
    const IsMips64p32 = 0
    const IsMips64p32le = 0
    const IsPpc = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 578 bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/platform/Architecture.java

     *     </tr>
     *     <tr>
     *         <td>Power PC</td>
     *         <td>"ppc"</td>
     *         <td>"ppc64"</td>
     *     </tr>
     *     <tr>
     *         <td>Sparc</td>
     *         <td>"sparc", "sparc32", "sparc-v8"</td>
     *         <td>"sparc64", "ultrasparc", "sparc-v9"</td>
     *     </tr>
     *     <tr>
     *         <td>ARM</td>
     *         <td>"arm", "arm-v7", "armv7", "arm32"</td>
     *         <td>"aarch64", "arm64", "arm-v8"</td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/platform/internal/Architectures.java

                IA_64,
                ARM_V7,
                AARCH64,
                new KnownArchitecture("ppc"),
                new KnownArchitecture("ppc64"),
                new KnownArchitecture("sparc-v8", "sparc", "sparc32"),
                new KnownArchitecture("sparc-v9", "sparc64", "ultrasparc")
        );
    
        public static ArchitectureInternal forInput(String input) {
            for (KnownArchitecture knownArchitecture : KNOWN_ARCHITECTURES) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/GccToolChainCustomisationIntegrationTest.groovy

                        args << "-m32"
                    }
                }
                target("sparc")
            }
        }
        platforms {
            arm {
                architecture "arm"
            }
            i386 {
                architecture "i386"
            }
            sparc {
                architecture "sparc"
            }
        }
        components {
            all {
                targetPlatform "arm"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/platform/BinaryNativePlatformIntegrationTest.groovy

        @ToBeFixedForConfigurationCache
        def "configure component for a single target platform"() {
            when:
            buildFile << """
    model {
        platforms {
            sparc {
                architecture "sparc"
            }
            x86 {
                architecture "x86"
            }
            x86_64 {
                architecture "x86_64"
            }
        }
        components {
            main { targetPlatform "x86" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/platform/internal/NativePlatforms.java

            ArchitectureInternal armv7 = Architectures.forInput("armv7");
            ArchitectureInternal aarch64 = Architectures.forInput("aarch64");
            ArchitectureInternal sparc = Architectures.forInput("sparc");
            ArchitectureInternal ultrasparc = Architectures.forInput("ultrasparc");
            ArchitectureInternal ppc = Architectures.forInput("ppc");
            ArchitectureInternal ppc64 = Architectures.forInput("ppc64");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/sys/cpu/endian_big.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build armbe || arm64be || m68k || mips || mips64 || mips64p32 || ppc || ppc64 || s390 || s390x || shbe || sparc || sparc64
    
    package cpu
    
    // IsBigEndian records whether the GOARCH's byte order is big endian.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 397 bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/endian_big.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    //
    //go:build armbe || arm64be || m68k || mips || mips64 || mips64p32 || ppc || ppc64 || s390 || s390x || shbe || sparc || sparc64
    
    package unix
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 330 bytes
    - Viewed (0)
Back to top