Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 594 for otool (0.08 sec)

  1. src/syscall/mkall.sh

    	mksyscall="./mksyscall_libc.pl -aix"
    	mktypes="GOARCH=$GOARCH go tool cgo -godefs"
    	;;
    darwin_amd64)
    	mkerrors="$mkerrors -m64"
    	mksyscall="./mksyscall.pl -darwin"
    	mktypes="GOARCH=$GOARCH go tool cgo -godefs"
    	mkasm="go run mkasm.go"
    	;;
    darwin_arm64)
    	mkerrors="$mkerrors -m64"
    	mksyscall="./mksyscall.pl -darwin"
    	mktypes="GOARCH=$GOARCH go tool cgo -godefs"
    	mkasm="go run mkasm.go"
    	;;
    dragonfly_amd64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 18:22:23 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/vet/vetflag.go

    	parseVettoolFlag(args)
    
    	// Query the vet command for its flags.
    	var tool string
    	if vetTool == "" {
    		tool = base.Tool("vet")
    	} else {
    		var err error
    		tool, err = filepath.Abs(vetTool)
    		if err != nil {
    			log.Fatal(err)
    		}
    	}
    	out := new(bytes.Buffer)
    	vetcmd := exec.Command(tool, "-flags")
    	vetcmd.Stdout = out
    	if err := vetcmd.Run(); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 14:42:39 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. test/linkmain_run.go

    	// helloworld.go is package main
        run("go tool compile -p=main -importcfg", tmp("importcfg"), "-o", tmp("linkmain.o"), "helloworld.go")
    	run("go tool compile -p=main -importcfg", tmp("importcfg"), " -pack -o", tmp("linkmain.a"), "helloworld.go")
    	run("go tool link -importcfg", tmp("importcfg"), "-o", tmp("linkmain.exe"), tmp("linkmain.o"))
    	run("go tool link -importcfg", tmp("importcfg"), "-o", tmp("linkmain.exe"), tmp("linkmain.a"))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/NativeToolChainTestInterceptor.java

        // TODO: This exists because we detect all available native tool chains on a system (clang, gcc, swiftc, msvc).
        //
        // Many of our old tests assume that available tool chains can compile many/most languages, so they do not try to
        // restrict the required set of tool chains.
        //
        // The swiftc tool chain can build _only_ Swift, so tests that expect to use the swiftc tool chain properly annotate
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/cpp/tests/nativeComponentReport.out

            target platform: platform 'current'
            tool chain: Tool chain 'clang' (Clang)
            shared library file: build/libs/hello/shared/libhello.dylib
        Static library 'hello:staticLibrary'
            build using task: :helloStaticLibrary
            build type: build type 'debug'
            flavor: flavor 'default'
            target platform: platform 'current'
            tool chain: Tool chain 'clang' (Clang)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppMissingToolchainIntegrationTest.groovy

      - Tool chain 'clang' (Clang):
          - Could not find C++ compiler 'clang++'. Searched in:
              - ${file('clang-bin')}""")
            } else {
                failure.assertHasCause("""No tool chain is available to build C++ for host operating system '${osName}' architecture '${archName}':
      - Tool chain 'visualCpp' (Visual Studio):
          - Visual Studio is not available on this operating system.
      - Tool chain 'gcc' (GNU GCC):
    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. src/cmd/link/elf_test.go

    	"text/template"
    )
    
    func getCCAndCCFLAGS(t *testing.T, env []string) (string, []string) {
    	goTool := testenv.GoToolPath(t)
    	cmd := testenv.Command(t, goTool, "env", "CC")
    	cmd.Env = env
    	ccb, err := cmd.Output()
    	if err != nil {
    		t.Fatal(err)
    	}
    	cc := strings.TrimSpace(string(ccb))
    
    	cmd = testenv.Command(t, goTool, "env", "GOGCCFLAGS")
    	cmd.Env = env
    	cflagsb, err := cmd.Output()
    	if err != nil {
    		t.Fatal(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 16:34:01 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/DefaultTool.java

     */
    package org.gradle.nativeplatform.internal;
    
    import org.gradle.nativeplatform.Tool;
    
    import java.util.ArrayList;
    import java.util.Collections;
    import java.util.List;
    
    /**
     * A tool that is part of a tool chain (compiler, linker, assembler, etc).
     */
    public class DefaultTool implements Tool {
        private final ArrayList<String> args = new ArrayList<String>();
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/GccCommandLineToolConfiguration.java

    import org.gradle.api.Incubating;
    
    /**
     * An executable tool used for GCC that allows customizing the executable.
     */
    @Incubating
    public interface GccCommandLineToolConfiguration extends CommandLineToolConfiguration {
        /**
         * The name of the executable file for this tool.
         */
        String getExecutable();
    
        /**
         * Set the name of the executable file for this tool.
         * The executable will be located in the tool chain path.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/AbstractGccCompatibleToolChainTest.groovy

                return "Test"
            }
        }
    
        def argsFor(GccCommandLineToolConfiguration tool) {
            assert tool instanceof GccCommandLineToolConfigurationInternal : "Expected argument to be an instance of GccCommandLineToolConfigurationInternal"
            def args = []
            tool.getArgAction().execute(args)
            args
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 17.2K bytes
    - Viewed (0)
Back to top