Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,036 for link66 (0.41 sec)

  1. src/cmd/go/testdata/script/ldflag.txt

    env CGO_LDFLAGS=-Wno-such-warning -Wno-unknown-warning-option
    cd ../ok
    go build
    
    # Build a main program that actually uses LDFLAGS.
    cd ..
    go build -ldflags=-v
    
    # Because we passed -v the Go linker should print the external linker
    # command which should include the flag we passed in CGO_LDFLAGS.
    stderr no-such-warning
    
    -- go.mod --
    module ldflag
    
    -- bad/bad.go --
    package bad
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 14 14:11:56 UTC 2020
    - 762 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/linkname.txt

    env GO111MODULE=off
    
    # check for linker name in error message about linker crash
    [!compiler:gc] skip
    ! go build -ldflags=-crash_for_testing x.go
    stderr [\\/]tool[\\/].*[\\/]link
    
    -- x.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 219 bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/GccLinkerTest.groovy

        BuildOperationQueue queue = Mock(BuildOperationQueue)
        WorkerLeaseService workerLeaseService = new TestWorkerLeaseService()
    
        GccLinker linker = new GccLinker(buildOperationExecutor, commandLineTool, invocationContext, false, workerLeaseService)
    
        def "links all object files in a single execution"() {
            given:
            def testDir = tmpDirProvider.testDirectory
            def outputFile = testDir.file("output/lib")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents/build.gradle

                if (targetPlatform.operatingSystem.linux) {
                    cppCompiler.args '-pthread'
                    linker.args '-pthread'
                }
            }
            all {
                if (toolChain instanceof Gcc) {
                    cppCompiler.args '-std=c++03', '-D_GLIBCXX_USE_CXX11_ABI=0'
                    linker.args '-std=c++03'
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/objective-c/groovy/build.gradle

                if (targetPlatform.operatingSystem.macOsX) {
                    linker.args "-framework", "Foundation"
                } else {
                    objcCompiler.args "-I/usr/include/GNUstep", "-fconstant-string-class=NSConstantString", "-D_NATIVE_OBJC_EXCEPTIONS"
                    linker.args "-lgnustep-base", "-lobjc"
                }
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 703 bytes
    - Viewed (0)
  6. src/cmd/link/testdata/testHashedSyms/p.go

    // license that can be found in the LICENSE file.
    
    // This test case contains two static temps (the array literals)
    // with same contents but different sizes. The linker should not
    // report a hash collision. The linker can (and actually does)
    // dedup the two symbols, by keeping the larger symbol. The dedup
    // is not a requirement for correctness and not checked in this test.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 21 21:14:19 UTC 2020
    - 908 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/cgo_undef.txt

    # The _cgo_import.go file is only needed for internal linking.
    # When generating _cgo_import.go for package c fails, an ordinary
    # external link should still work. But an internal link is expected
    # to fail, because the failure to create _cgo_import.go should cause
    # the linker to report an inability to internally link.
    
    [short] skip
    [!cgo] skip
    [!exec:ar] skip
    
    cc -c -o a/b.syso b/b.c
    cc -c -o b/lib.o b/lib.c
    exec ar rc a/libb.a b/lib.o
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 22 20:56:07 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/testshared/testdata/dep3/dep3.go

    package dep3
    
    // The point of this test file is that it references a type from
    // depBase that is also referenced in dep2, but dep2 is loaded by the
    // linker before depBase (because it is earlier in the import list).
    // There was a bug in the linker where it would not correctly read out
    // the type data in this case and later crash.
    
    import (
    	"testshared/dep2"
    	"testshared/depBase"
    )
    
    type Dep3 struct {
    	dep  depBase.Dep
    	dep2 dep2.Dep2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 503 bytes
    - Viewed (0)
  9. src/internal/platform/supported.go

    				return true
    			}
    		}
    
    		switch goos {
    		case "android":
    			return true
    		case "dragonfly":
    			// It seems that on Dragonfly thread local storage is
    			// set up by the dynamic linker, so internal cgo linking
    			// doesn't work. Test case is "go test runtime/cgo".
    			return true
    		}
    	}
    
    	switch goos {
    	case "android":
    		if goarch != "arm64" {
    			return true
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:50:22 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/ToolType.java

        OBJECTIVECPP_COMPILER("Objective-C++ compiler"),
        OBJECTIVEC_COMPILER("Objective-C compiler"),
        WINDOW_RESOURCES_COMPILER("Windows resources compiler"),
        ASSEMBLER("Assembler"),
        LINKER("Linker"),
        STATIC_LIB_ARCHIVER("Static library archiver"),
        SWIFT_COMPILER("Swift compiler"),
        SYMBOL_EXTRACTOR("Symbol extractor"),
        STRIPPER("Stripper");
    
        private final String toolName;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top