Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 93 for i686 (0.08 sec)

  1. platforms/native/language-native/src/integTest/groovy/org/gradle/language/DuplicateBaseNamesIntegrationTest.groovy

            testApp.plugins.each { plugin ->
                buildFile << "apply plugin: '$plugin'\n"
            }
    
            buildFile << """
    model {
        platforms {
            x86 {
                architecture "i386"
            }
        }
        components {
            main(NativeExecutableSpec) {
                targetPlatform "x86"
                binaries.all {
                    linker.args "-v"
                }
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/runtimeshaded/RuntimeShadedJarCreatorTest.groovy

                    'net/',
                    'net/rubygrapefruit/',
                    'net/rubygrapefruit/platform/',
                    'net/rubygrapefruit/platform/osx-i386/',
                    'net/rubygrapefruit/platform/osx-i386/libnative-platform.dylib',
                    'org/gradle/reporting/',
                    'org/gradle/reporting/report.js',
                    'org/joda/',
                    'org/joda/time/',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:49 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/main/java/org/gradle/language/assembler/AssemblerSourceSet.java

     * }
     *
     * model {
     *     components {
     *         main(NativeLibrarySpec) {
     *             sources {
     *                 asm {
     *                     source {
     *                         srcDirs "src/main/i386", "src/shared/asm"
     *                         include "**{@literal /}*.s"
     *                     }
     *                 }
     *             }
     *         }
     *     }
     * }
     * </pre>
     */
    @Incubating @Managed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. platforms/jvm/platform-jvm/src/main/java/org/gradle/platform/Architecture.java

     * Constants for various processor architectures Gradle runs on.
     *
     * @since 7.6
     */
    @Incubating
    public enum Architecture {
        /**
         * 32-bit complex instruction set computer (CISC) architectures, including "x32", "i386", "x86"..
         */
        X86,
    
        /**
         * 64-bit variant of the X86 instruction set, including "x64", "x86_64", "amd64", "ia64".
         */
        X86_64,
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. src/cmd/link/internal/sym/reloc.go

    		switch arch.Family {
    		case sys.AMD64:
    			return elf.R_X86_64(nr).String()
    		case sys.ARM:
    			return elf.R_ARM(nr).String()
    		case sys.ARM64:
    			return elf.R_AARCH64(nr).String()
    		case sys.I386:
    			return elf.R_386(nr).String()
    		case sys.Loong64:
    			return elf.R_LARCH(nr).String()
    		case sys.MIPS, sys.MIPS64:
    			return elf.R_MIPS(nr).String()
    		case sys.PPC64:
    			return elf.R_PPC64(nr).String()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 15:33:31 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. src/cmd/link/internal/loadelf/ldelf.go

    		AMD64 | uint32(elf.R_X86_64_GOTPCRELX)<<16,
    		AMD64 | uint32(elf.R_X86_64_REX_GOTPCRELX)<<16,
    		I386 | uint32(elf.R_386_32)<<16,
    		I386 | uint32(elf.R_386_PC32)<<16,
    		I386 | uint32(elf.R_386_GOT32)<<16,
    		I386 | uint32(elf.R_386_PLT32)<<16,
    		I386 | uint32(elf.R_386_GOTOFF)<<16,
    		I386 | uint32(elf.R_386_GOTPC)<<16,
    		I386 | uint32(elf.R_386_GOT32X)<<16,
    		PPC64 | uint32(elf.R_PPC64_REL24)<<16,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:12:12 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/platform/NativePlatform.java

     * a specific {@link Architecture} and/or {@link OperatingSystem} to target.
     *
     * <pre>
     *     model {
     *         platforms {
     *             windows_x86 {
     *                 architecture "i386"
     *                 operatingSystem "windows"
     *             }
     *         }
     *     }
     * </pre>
     */
    @HasInternalProtocol
    public interface NativePlatform extends Platform, Describable {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. src/cmd/dist/main.go

    		// native (widest) instruction set on the running kernel:
    		out := run("", CheckExit, "isainfo", "-n")
    		if strings.Contains(out, "amd64") {
    			gohostarch = "amd64"
    		}
    		if strings.Contains(out, "i386") {
    			gohostarch = "386"
    		}
    	case "windows":
    		exe = ".exe"
    	}
    
    	sysinit()
    
    	if gohostarch == "" {
    		// Default Unix system.
    		out := run("", CheckExit, "uname", "-m")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 22 19:44:52 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/PlatformDetectingTestApp.groovy

    }
            """)
        ]
    
        def outputPlatform() {
            return """
        #if defined(__x86_64__) || defined(_M_X64)
        cout << "amd64";
        #elif defined(__i386) || defined(_M_IX86)
        cout << "i386";
        #elif defined(_M_IA64)
        cout << "itanium";
        #else
        cout << "unknown";
        #endif
        cout << " ";
    
        #if defined(__linux__)
        cout << "linux";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/metadata/GccMetadataProvider.java

        }
    
        private ArchitectureInternal determineArchitecture(Map<String, String> defines) {
            boolean i386 = defines.containsKey("__i386__");
            boolean amd64 = defines.containsKey("__amd64__");
            final ArchitectureInternal architecture;
            if (i386) {
                architecture = Architectures.forInput("i386");
            } else if (amd64) {
                architecture = Architectures.forInput("amd64");
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 15 06:39:06 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top