Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,036 for link66 (0.14 sec)

  1. src/cmd/link/internal/ld/lib.go

    	"time"
    
    	"cmd/internal/bio"
    	"cmd/internal/goobj"
    	"cmd/internal/notsha256"
    	"cmd/internal/objabi"
    	"cmd/internal/sys"
    	"cmd/link/internal/loadelf"
    	"cmd/link/internal/loader"
    	"cmd/link/internal/loadmacho"
    	"cmd/link/internal/loadpe"
    	"cmd/link/internal/loadxcoff"
    	"cmd/link/internal/sym"
    )
    
    // Data layout and relocation.
    
    // Derived from Inferno utils/6l/l.h
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  2. test/fixedbugs/issue49619.go

    // build
    
    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This testcase caused a linker crash in DWARF generation.
    
    package main
    
    //go:noinline
    func f() any {
    	var a []any
    	return a[0]
    }
    
    func main() {
    	f()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 324 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/readme-templates/native-application-body.adoc.template

    NOTE: Gradle integrates with several IDEs: link:{userManualPath}/visual_studio_plugin.html[Visual Studio], link:{userManualPath}/xcode_plugin.html[Xcode] and https://www.jetbrains.com/help/clion/gradle-support.html[Clion].
    To learn more, have a look at their respective linked documentation to configure those IDE integration in your project.
    
    == Run the application
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/windows-resources/groovy/build.gradle

                sources {
                    cpp {
                        lib library: 'hello'
                    }
                }
            }
        }
    
        binaries {
            all {
                linker.args "user32.lib"
            }
    
            // For any shared library binaries built with Visual C++, define the DLL_EXPORT macro
            withType(SharedLibraryBinarySpec) {
                if (toolChain in VisualCpp) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 711 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/gccgo_link_ldflags.txt

    # Test that #cgo LDFLAGS are properly quoted.
    # The #cgo LDFLAGS below should pass a string with spaces to -L,
    # as though searching a directory with a space in its name.
    # It should not pass --nosuchoption to the external linker.
    
    [!cgo] skip
    
    go build
    
    [!exec:gccgo] skip
    
    # TODO: remove once gccgo on builder is updated
    [GOOS:aix] [GOARCH:ppc64] skip
    
    go build -compiler gccgo
    
    -- go.mod --
    module m
    -- cgo.go --
    package main
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 07 06:52:47 UTC 2023
    - 499 bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testfortran/fortran_test.go

    		if runtime.GOARCH == "386" {
    			fcExtra = append(fcExtra, "-m32")
    		}
    
    		// Find libgfortran. If the FORTRAN compiler isn't bundled
    		// with the C linker, this may be in a path the C linker can't
    		// find on its own. (See #14544)
    		libExt := "so"
    		switch runtime.GOOS {
    		case "darwin":
    			libExt = "dylib"
    		case "aix":
    			libExt = "a"
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 01:29:16 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. src/cmd/link/cgo_test.go

    		// These errors come from GCC or clang, not Go.
    		var noLTO = []string{
    			`unrecognized command line option "-flto"`,
    			"unable to pass LLVM bit-code files to linker",
    			"file not recognized: File format not recognized",
    			"LTO support has not been enabled",
    			"linker command failed with exit code",
    			"gcc: can't load library",
    		}
    		for _, msg := range noLTO {
    			if bytes.Contains(out, []byte(msg)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 09 22:13:02 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/prebuilt/groovy/3rd-party-lib/util/build.gradle

                    if (buildType == buildTypes.debug) {
                        cppCompiler.define 'DEBUG'
                        if (toolChain in VisualCpp) {
                            cppCompiler.args '/Zi'
                            linker.args '/DEBUG'
                        } else {
                            cppCompiler.args "-g"
                        }
                    }
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 553 bytes
    - Viewed (0)
  9. test/reflectmethod1.go

    // run
    
    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // The linker can prune methods that are not directly called or
    // assigned to interfaces, but only if reflect.Type.Method is
    // never used. Test it here.
    
    package main
    
    import "reflect"
    
    var called = false
    
    type M int
    
    func (m M) UniqueMethodName() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 11 21:19:20 UTC 2016
    - 578 bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/ObjectiveCppHelloWorldApp.groovy

                            if (targetPlatform.operatingSystem.macOsX) {
                                linker.args "-framework", "Foundation"
                            } else {
                                objcppCompiler.args "-I/usr/include/GNUstep", "-I/usr/local/include/objc", "-fconstant-string-class=NSConstantString", "-D_NATIVE_OBJC_EXCEPTIONS"
                                linker.args "-lgnustep-base", "-lobjc"
                            }
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.3K bytes
    - Viewed (0)
Back to top