Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 152 for I386 (0.05 sec)

  1. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/OtoolBinaryInfo.groovy

            def lines = process.inputStream.readLines()
            def archString = lines.last().split()[1]
    
            switch (archString) {
                case "I386":
                    return Architectures.forInput("x86")
                case "X86_64":
                    return Architectures.forInput("x86_64")
                default:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. src/internal/goarch/goarch.go

    // by them is useful for defining GOARCH-specific constants.
    //
    //go:generate go run gengoarch.go
    
    type ArchFamilyType int
    
    const (
    	AMD64 ArchFamilyType = iota
    	ARM
    	ARM64
    	I386
    	LOONG64
    	MIPS
    	MIPS64
    	PPC64
    	RISCV64
    	S390X
    	WASM
    )
    
    // PtrSize is the size of a pointer in bytes - unsafe.Sizeof(uintptr(0)) but as an ideal constant.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 19:48:21 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  3. platforms/jvm/platform-jvm/src/main/java/org/gradle/platform/internal/DefaultBuildPlatform.java

        }
    
        private static Architecture getArchitecture(SystemInfo systemInfo) {
            SystemInfo.Architecture architecture = systemInfo.getArchitecture();
            switch (architecture) {
                case i386:
                    return Architecture.X86;
                case amd64:
                    return Architecture.X86_64;
                case aarch64:
                    return Architecture.AARCH64;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 08:12:49 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/MixedLanguageHelloWorldApp.groovy

            return ['c', 'cpp', 'assembler']
        }
    
        String getExtraConfiguration() {
            return """
                model {
                    platforms {
                        x86 {
                            architecture "i386"
                        }
                    }
                    components {
                        all { it.targetPlatform "x86" }
                    }
                }
    """
        }
    
        SourceFile getMainSource() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/net/route/sys_freebsd.go

    			MTU:  int(nativeEndian.Uint32(m.raw[m.extOff+8 : m.extOff+12])),
    		},
    	}
    }
    
    var compatFreeBSD32 bool // 386 emulation on amd64
    
    func probeRoutingStack() (int, map[int]*wireFormat) {
    	var p uintptr
    	wordSize := int(unsafe.Sizeof(p))
    	align := wordSize
    	// In the case of kern.supported_archs="amd64 i386", we need
    	// to know the underlying kernel's architecture because the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 05 19:54:32 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/WindowsKitSdkInstall.java

            this.systemInfo = systemInfo;
        }
    
        @Override
        public WindowsSdk forPlatform(final NativePlatformInternal platform) {
            String host;
            switch (systemInfo.getArchitecture()) {
                case i386:
                    host = "x86";
                    break;
                case amd64:
                    host = "x64";
                    break;
                case aarch64:
                    host = "arm64";
                    break;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/language/assembler/AssemblyLanguageIncrementalBuildIntegrationTest.groovy

            UnitTestPreconditions.NotWindows
        ])
        def "reassembles binary with target platform change"() {
            when:
            buildFile.text = buildFile.text.replace("i386", "x86-64")
    
            run "installMainExecutable"
    
            then:
            executedAndNotSkipped ":assembleHelloSharedLibraryHelloAsm"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  8. src/cmd/link/internal/x86/obj.go

    		Gentext:          gentext,
    		Machoreloc1:      machoreloc1,
    		PEreloc1:         pereloc1,
    
    		ELF: ld.ELFArch{
    			Linuxdynld:     "/lib/ld-linux.so.2",
    			LinuxdynldMusl: "/lib/ld-musl-i386.so.1",
    			Freebsddynld:   "/usr/libexec/ld-elf.so.1",
    			Openbsddynld:   "/usr/libexec/ld.so",
    			Netbsddynld:    "/usr/libexec/ld.elf_so",
    			Solarisdynld:   "/lib/ld.so.1",
    
    			Reloc1:    elfreloc1,
    			RelocSize: 8,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 19:32:19 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/NativeBinarySpecTest.groovy

        def component = BaseComponentFixtures.createNode(NativeLibrarySpec, TestNativeComponentSpec, id)
    
        def platform1 = Stub(NativePlatform) {
            getArchitecture() >> Architectures.forInput("i386")
        }
        def buildType1 = Stub(BuildType) {
            getName() >> "BuildType1"
        }
        def resolver = Mock(NativeDependencyResolver)
    
        def "uses resolver to resolve lib to dependency"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/target.go

    			return true
    		}
    		return t.linkShared || (t.HeadType == objabi.Haix && t.LinkMode == LinkExternal)
    	}
    }
    
    //
    // Processor functions
    //
    
    func (t *Target) Is386() bool {
    	return t.Arch.Family == sys.I386
    }
    
    func (t *Target) IsARM() bool {
    	return t.Arch.Family == sys.ARM
    }
    
    func (t *Target) IsARM64() bool {
    	return t.Arch.Family == sys.ARM64
    }
    
    func (t *Target) IsAMD64() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 13 21:14:48 UTC 2022
    - 3.9K bytes
    - Viewed (0)
Back to top