Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 150 for X86_64 (0.22 sec)

  1. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/fixtures/AbstractXcodeIntegrationSpec.groovy

            target.assertIsDynamicLibrary()
            target.assertProductNameEquals(expectedProductName)
            target.assertSupportedArchitectures(archName == 'aarch64' ? MachineArchitecture.ARM64 : MachineArchitecture.X86_64)
            assert target.name == expectedProductName
            assert target.productReference.path == sharedLib("build/lib/main/debug/$expectedBinaryName").absolutePath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/main/java/org/gradle/language/ComponentWithTargetMachines.java

         *
         * <p>For example:</p>
         * <pre>
         * targetMachines = [machines.linux.x86_64, machines.windows.x86_64]
         * </pre>
         *
         * @since 5.2
         */
        SetProperty<TargetMachine> getTargetMachines();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/GccToolChainCustomisationIntegrationTest.groovy

    model {
        platforms {
            x86 {
                architecture 'x86'
            }
            x86_64 {
                architecture 'x64'
            }
            custom {
                architecture 'foo'
            }
        }
        toolChains {
            ${toolChain.id} {
                target('x86')
                target('x86_64')
            }
            customToolchain(${toolChain.implementationClass}) {
                setTargets('custom')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/WindowsSwiftLibraryInitIntegrationTest.groovy

            dslFixtureFor(scriptDsl).getBuildFile().text.contains("targetMachines.add(machines.macOS.x86_64")
            dslFixtureFor(scriptDsl).getBuildFile().text.contains("targetMachines.add(machines.linux.x86_64")
    
            and:
            commonFilesGenerated(scriptDsl)
    
            and:
            succeeds("build")
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. src/cmd/link/testdata/pe-llvm/main.go

    // have been created by llvm-rc or msvc's rc.exe, which means there's the
    // @feat.00 symbol as well as split .rsrc$00 and .rsrc$01 section to deal with.
    //
    // rsrc.syso is created using llvm with:
    //    {i686,x86_64,armv7,arm64}-w64-mingw32-windres -i a.rc -o rsrc_$GOARCH.syso -O coff
    // where this windres calls into llvm-rc and llvm-cvtres. The source file,
    // a.rc, simply contains a reference to its own bytes:
    //
    //    resname RCDATA a.rc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 26 18:15:09 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  6. src/debug/pe/symbols_test.go

    	// corresponds to the mingw "crt2.o" object. The object itself was
    	// built using an x86_64 HOST=linux TARGET=windows clang cross
    	// compiler based on LLVM 13. More build details can be found at
    	// https://github.com/mstorsjo/llvm-mingw/releases.
    	f, err := Open("testdata/llvm-mingw-20211002-msvcrt-x86_64-crt2")
    	if err != nil {
    		t.Errorf("open failed with %v", err)
    	}
    	defer f.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 06 18:07:48 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/OtoolBinaryInfo.groovy

            def archString = lines.last().split()[1]
    
            switch (archString) {
                case "I386":
                    return Architectures.forInput("x86")
                case "X86_64":
                    return Architectures.forInput("x86_64")
                default:
                    throw new RuntimeException("Cannot determine architecture for ${archString}")
            }
        }
    
        List<String> listObjectFiles() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSingleCppProjectIntegrationTest.groovy

            given:
            buildFile << """
                apply plugin: 'cpp-application'
    
                application.targetMachines = [machines.${currentHostOperatingSystemFamilyDsl}.x86, machines.${currentHostOperatingSystemFamilyDsl}.x86_64]
            """
    
            def app = new CppApp()
            app.writeToProject(testDirectory)
            file('src/main/headers/ignore.cpp') << 'broken!'
            file('src/main/cpp/ignore.h') << 'broken!'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 27.7K bytes
    - Viewed (0)
  9. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/WindowsSwiftApplicationInitIntegrationTest.groovy

            dslFixtureFor(scriptDsl).getBuildFile().text.contains("targetMachines.add(machines.macOS.x86_64")
            dslFixtureFor(scriptDsl).getBuildFile().text.contains("targetMachines.add(machines.linux.x86_64")
    
            and:
            commonFilesGenerated(scriptDsl)
    
            and:
            succeeds("build")
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. samples/bookinfo/src/details/Gemfile.lock

    GEM
      remote: https://rubygems.org/
      specs:
        webrick (1.8.1)
    
    PLATFORMS
      aarch64-linux
      ruby
      x86_64-linux
    
    DEPENDENCIES
      webrick (~> 1.7)
    
    BUNDLED WITH
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 24 18:42:05 UTC 2024
    - 171 bytes
    - Viewed (0)
Back to top