Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Sparc (0.04 sec)

  1. 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)
  2. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativePlatformSamplesIntegrationTest.groovy

                        args << "-m32"
                    }
                    linker.withArguments { args ->
                        args << "-m32"
                    }
                }
                target("sparc")
            }
        }
    }
    """
    
            when:
            run "installMainArmExecutable", "installMainSparcExecutable"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    #include <mtd/ubi-user.h>
    #include <mtd/mtd-user.h>
    #include <net/route.h>
    
    #if defined(__sparc__)
    // On sparc{,64}, the kernel defines struct termios2 itself which clashes with the
    // definition in glibc. As only the error constants are needed here, include the
    // generic termibits.h (which is included by termbits.h on sparc).
    #include <asm-generic/termbits.h>
    #else
    #include <asm/termbits.h>
    #endif
    
    #ifndef PTRACE_GETREGS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  4. .teamcity/mvnw

      fi
    
      basedir="$1"
      wdir="$1"
      while [ "$wdir" != '/' ] ; do
        if [ -d "$wdir"/.mvn ] ; then
          basedir=$wdir
          break
        fi
        # workaround for JBEAP-8937 (on Solaris 10/Sparc)
        if [ -d "${wdir}" ]; then
          wdir=`cd "$wdir/.."; pwd`
        fi
        # end of workaround
      done
      echo "${basedir}"
    }
    
    # concatenates all lines of a file
    concat_lines() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 26 01:48:39 UTC 2020
    - 9.8K bytes
    - Viewed (0)
  5. mvnw

      fi
    
      basedir="$1"
      wdir="$1"
      while [ "$wdir" != '/' ] ; do
        if [ -d "$wdir"/.mvn ] ; then
          basedir=$wdir
          break
        fi
        # workaround for JBEAP-8937 (on Solaris 10/Sparc)
        if [ -d "${wdir}" ]; then
          wdir=$(cd "$wdir/.." || exit 1; pwd)
        fi
        # end of workaround
      done
      printf '%s' "$(cd "$basedir" || exit 1; pwd)"
    }
    
    # concatenates all lines of a file
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 16 20:48:20 UTC 2023
    - 11K bytes
    - Viewed (0)
  6. src/cmd/go/internal/imports/build.go

    	"mips64le":    true,
    	"mips64p32":   true,
    	"mips64p32le": true,
    	"loong64":     true,
    	"ppc":         true,
    	"riscv":       true,
    	"riscv64":     true,
    	"s390":        true,
    	"s390x":       true,
    	"sparc":       true,
    	"sparc64":     true,
    	"wasm":        true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 30 18:50:57 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/buildid.go

    		fmt.Fprintf(&buf, "\t.csect .go.buildid[XO]\n")
    	} else if (cfg.Goos != "solaris" && cfg.Goos != "illumos") || assemblerIsGas() {
    		fmt.Fprintf(&buf, "\t"+`.section .go.buildid,"e"`+"\n")
    	} else if cfg.Goarch == "sparc" || cfg.Goarch == "sparc64" {
    		fmt.Fprintf(&buf, "\t"+`.section ".go.buildid",#exclude`+"\n")
    	} else { // cfg.Goarch == "386" || cfg.Goarch == "amd64"
    		fmt.Fprintf(&buf, "\t"+`.section .go.buildid,#exclude`+"\n")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
Back to top