Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 862 for otool (0.04 sec)

  1. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/CompileTaskConfig.java

            }));
    
            for (String toolName : languageTransform.getBinaryTools().keySet()) {
                Tool tool = binary.getToolByName(toolName);
                if (tool instanceof PreprocessingTool) {
                    task.setMacros(((PreprocessingTool) tool).getMacros());
                }
    
                task.getCompilerArgs().set(tool.getArgs());
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/reporting/components/DiagnosticsComponentReportIntegrationTest.groovy

            tool chain: Tool chain 'clang' (Clang)
            shared library file: build/libs/nativeLib/shared/libnativeLib.dylib
        Static library 'nativeLib:staticLibrary'
            build using task: :nativeLibStaticLibrary
            build type: build type 'debug'
            flavor: flavor 'default'
            target platform: platform '$currentNative'
            tool chain: Tool chain 'clang' (Clang)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jan 16 21:36:13 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  3. test/README.md

    The tool chain and runtime also have regular Go tests in their packages.
    The main reasons to add a new test to this directory are:
    
    * it is most naturally expressed using the test runner; or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 17:18:08 UTC 2023
    - 731 bytes
    - Viewed (0)
  4. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/googletest/TestingNativeComponentReportIntegrationTest.groovy

            install using task: :installSomeExeExecutable
            build type: build type 'debug'
            flavor: flavor 'default'
            target platform: platform '$currentNative'
            tool chain: Tool chain 'clang' (Clang)
            executable file: build/exe/someExe/someExe
    
    Google test suite 'someExeTest'
    -------------------------------
    
    Source sets
        C++ source 'someExeTest:cpp'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. src/run.bat

    L16:setlocal
    L17::nolocal
    L18:
    L19:set GOBUILDFAIL=0
    L20:
    L21:set GOENV=off
    L22:..\bin\go tool dist env > env.bat
    L23:if errorlevel 1 goto fail
    L24:call .\env.bat
    L25:del env.bat
    L26:
    L27:set GOPATH=c:\nonexist-gopath
    L28:
    L29:if x%1==x--no-rebuild goto norebuild
    L30:..\bin\go tool dist test --rebuild
    L31:if errorlevel 1 goto fail
    L32:goto end
    L33:
    L34::norebuild
    L35:..\bin\go tool dist test
    L36:if errorlevel 1 goto fail
    L37:goto end
    L38:
    L39::fail
    L40:set GOBUILDFAIL=1
    L41:
    ...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 17 20:19:28 UTC 2022
    - 859 bytes
    - Viewed (0)
  6. src/internal/abi/abi_test.go

    	// parse assembly code for symabi.
    	cmd := testenv.Command(t, testenv.GoToolPath(t), "tool", "asm", "-p=p", "-gensymabis", "-o", symabi, asmSrc)
    	out, err := cmd.CombinedOutput()
    	if err != nil {
    		t.Fatalf("go tool asm -gensymabis failed: %v\n%s", err, out)
    	}
    
    	// compile go code.
    	cmd = testenv.Command(t, testenv.GoToolPath(t), "tool", "compile", "-importcfg="+importcfgfile, "-p=p", "-symabis", symabi, "-o", obj, goSrc)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 18:31:05 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileToolchainIntegrationTest.groovy

            where:
            when                                  | tool    | javaHome  | executable | errorFor
            "java home disagrees with executable" | null    | "other"   | "current"  | "executable"
            "tool disagrees with executable"      | "other" | null      | "current"  | "executable"
            "tool disagrees with java home"       | "other" | "current" | null       | "javaHome"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  8. src/syscall/js/js_js.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // The runtime package uses //go:linkname to push the setEventHandler to this
    // package.  To prevent the go tool from passing -complete to the compile tool,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 02 05:28:55 UTC 2023
    - 356 bytes
    - Viewed (0)
  9. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/JavaCompiler.java

     *
     * @since 6.7
     */
    public interface JavaCompiler {
    
        /**
         * Returns metadata information about this tool
         *
         * @return the tool metadata
         */
        @Nested
        JavaInstallationMetadata getMetadata();
    
        /**
         * Returns the path to the executable for this tool
         *
         * @return the path to the executable
         */
        @Internal
        RegularFile getExecutablePath();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 16:57:19 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/GccToolChainDiscoveryIntegrationTest.groovy

            failure.assertHasCause("""No tool chain is available to build for platform '${NativePlatformsTestFixture.defaultPlatformName}':
      - ${toolChain.instanceDisplayName}:
          - Could not find C compiler 'does-not-exist'""")
        }
    
        @Requires(IntegTestPreconditions.NotParallelExecutor)
        @ToBeFixedForConfigurationCache
        def "fails when required language tool is not available but other language tools are available"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top