Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 814 for linking (0.13 sec)

  1. LICENSE

    this license for certain libraries in order to permit linking those
    libraries into non-free programs.
    
      When a program is linked with a library, whether statically or using
    a shared library, the combination of the two is legally speaking a
    combined work, a derivative of the original library.  The ordinary
    General Public License therefore permits such linking only if the
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Jan 18 20:25:38 UTC 2016
    - 25.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/security.go

    }
    
    // checkCompilerFlagsForInternalLink returns an error if 'list'
    // contains a flag or flags that may not be fully supported by
    // internal linking (meaning that we should punt the link to the
    // external linker).
    func checkCompilerFlagsForInternalLink(name, source string, list []string) error {
    	checkOverrides := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/test/stubtest_linux_ppc64le.S

    // Copyright 2023 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.
    
    // When linking C ELFv2 objects, the Go linker may need to insert calling stubs.
    // A call stub is usually needed when the ELFv2 st_other attribute is different
    // between caller and callee.
    //
    // The type of call stub inserted will vary depending on GOPPC64 and the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 15:06:17 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/tasks/CreateStaticLibrary.java

            PlatformToolProvider toolProvider = toolChain.select(targetPlatform);
            return toolProvider.newCompiler(StaticLibraryArchiverSpec.class);
        }
    
        /**
         * The tool chain used for linking.
         *
         * @since 4.7
         */
        @Internal
        public Property<NativeToolChain> getToolChain() {
            return toolChain;
        }
    
        /**
         * The platform being linked for.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/NativeBinarySpec.java

         */
        NativeToolChain getToolChain();
    
        // TODO It would be better if these were added via a separate managed view, rather than hard coded.
        /**
         * The configuration of the linker used when linking this binary.
         *
         * Valid for {@link SharedLibraryBinarySpec} and {@link NativeExecutableBinarySpec}.
         */
        Tool getLinker();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/native/cpp_testing.adoc

    In addition, they attach the `run` task to the `check` lifecycle task.
    It also create the `testImplementation` dependency configuration.
    Dependencies that are only needed for test compilation, linking and runtime may be added to this configuration.
    The `unitTest` script block behave similarly to a `application` or `library` script block.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  7. src/cmd/link/internal/sym/symkind.go

    	SGOSTRING
    	SGOFUNC
    	SGCBITS
    	SRODATA
    	SFUNCTAB
    
    	SELFROSECT
    
    	// Read-only sections with relocations.
    	//
    	// Types STYPE-SFUNCTAB above are written to the .rodata section by default.
    	// When linking a shared object, some conceptually "read only" types need to
    	// be written to by relocations and putting them in a section called
    	// ".rodata" interacts poorly with the system linkers. The GNU linkers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. 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)
  9. src/cmd/internal/objabi/reloctype.go

    	// thread-local symbol from the thread local base and is used to implement the
    	// "local exec" model for tls access (r.Sym is not set on intel platforms but is
    	// set to a TLS symbol -- runtime.tlsg -- in the linker when externally linking).
    	R_TLS_LE
    	// R_TLS_IE, used 386, amd64, and ARM resolves to the PC-relative offset to a GOT
    	// slot containing the offset from the thread-local symbol from the thread local
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/README.md

    2. Add the license text to the top of the file and also add an ID for the chapter title.
    This is required to be able to link directly to the chapter from other chapters, as opposed to linking to a section inside.\
    The ID should preferably match the name of the `adoc` file. 
    For instance, linking to `toolchains.adoc` is possible with `<<toolchains.adoc#toolchains,Text>>`, and the declaration looks like:
        ```asciidoc
        [[toolchains]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 21:49:03 UTC 2024
    - 16.3K bytes
    - Viewed (0)
Back to top