Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 599 for linknew (0.12 sec)

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

    	return nil
    }
    
    // extld returns the current external linker.
    func (ctxt *Link) extld() []string {
    	if len(flagExtld) == 0 {
    		// Return the default external linker for the platform.
    		// This only matters when link tool is called directly without explicit -extld,
    		// go tool already passes the correct linker in other cases.
    		switch buildcfg.GOOS {
    		case "darwin", "freebsd", "openbsd":
    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. src/cmd/link/linkbig_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This program generates a test to verify that a program can be
    // successfully linked even when there are very large text
    // sections present.
    
    package main
    
    import (
    	"bytes"
    	"fmt"
    	"internal/buildcfg"
    	"internal/testenv"
    	"os"
    	"testing"
    )
    
    func TestLargeText(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:22:14 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/NativeBinarySpec.java

        /**
         * Returns the {@link org.gradle.nativeplatform.BuildType} used to construct this binary.
         */
        @Variant
        BuildType getBuildType();
    
        /**
         * The libraries that should be linked into this binary.
         */
        Collection<NativeDependencySet> getLibs();
    
        /**
         * Adds a library as input to this binary.
         * <p>
         * This method accepts the following types:
         *
         * <ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/build_cache_output.txt

    # Building a trivial main package should run the compiler and linker the first time.
    go build -x -gcflags=-m -ldflags='-v -w' main.go
    stderr 'compile( |\.exe"?)'
    stderr 'main.go:2.* can inline main' # from compiler
    stderr 'link(\.exe"?)? -'
    stderr '\d+ symbols' # from linker
    
    # ... but not the second, even though it still prints the compiler and linker output.
    go build -x -gcflags=-m -ldflags='-v -w' main.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 2K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/GccToolChainCustomisationIntegrationTest.groovy

            wrapperTool(binDir, "linker", toolChain.linker)
    
            when:
            buildFile << """
    model {
        toolChains {
            ${toolChain.id} {
                path file('${binDir.toURI()}')
                eachPlatform {
                    cCompiler.executable = 'c-compiler'
                    staticLibArchiver.executable = 'static-lib'
                    linker.executable = 'linker'
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/macho_combine_dwarf.go

    	// linkedit section, but all the others can be copied directly.
    	linkseg := exem.Segment("__LINKEDIT")
    	if linkseg == nil {
    		return fmt.Errorf("missing __LINKEDIT segment")
    	}
    
    	if _, err := exef.Seek(0, 0); err != nil {
    		return err
    	}
    	if _, err := io.CopyN(outf, exef, int64(linkseg.Offset)); err != nil {
    		return err
    	}
    
    	realdwarf := dwarfm.Segment("__DWARF")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/ClassDocRendererTest.groovy

                <tr>
                    <td>
                        <literal><link linkend="method1Id">methodName</link>()</literal>
                    </td>
                    <td>
                        <para>method description</para>
                    </td>
                </tr>
                <tr>
                    <td>
                        <literal><link linkend="method2Id">methodName</link>(p)</literal>
                    </td>
                    <td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 40.8K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/eclipse/EclipseLinkedResource.java

     */
    
    package org.gradle.tooling.model.eclipse;
    
    /**
     * Linked resources are files and folders that are stored in locations in the file system outside of the project's location.
     *
     * @since 1.0-milestone-4
     */
    public interface EclipseLinkedResource {
    
        /**
         * The project-relative path of the linked resource as it appears in the workspace.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/objective-cpp/groovy/build.gradle

            all {
                //on macOS we need different linker settings than on Linux or Windows
                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: Mon Nov 27 17:53:42 UTC 2023
    - 743 bytes
    - Viewed (0)
  10. src/go/doc/comment/parse.go

    type Doc struct {
    	// Content is the sequence of content blocks in the comment.
    	Content []Block
    
    	// Links is the link definitions in the comment.
    	Links []*LinkDef
    }
    
    // A LinkDef is a single link definition.
    type LinkDef struct {
    	Text string // the link text
    	URL  string // the link URL
    	Used bool   // whether the comment uses the definition
    }
    
    // A Block is block-level content in a doc comment,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 33.5K bytes
    - Viewed (0)
Back to top