Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 220 for linking (1.99 sec)

  1. 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)
  2. 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)
  3. src/crypto/internal/boring/build-goboring.sh

    clang++ -std=c++11 -fPIC -I../boringssl/include -O2 -o a.out  goboringcrypto.cc
    ./a.out || exit 2
    
    # clang implements u128 % u128 -> u128 by calling __umodti3,
    # which is in libgcc. To make the result self-contained even if linking
    # against a different compiler version, link our own __umodti3 into the syso.
    # This one is specialized so it only expects divisors below 2^64,
    # which is all BoringCrypto uses. (Otherwise it will seg fault.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. cmd/kube-controller-manager/app/plugins.go

    	allPlugins := []volume.VolumePlugin{}
    
    	// The list of plugins to probe is decided by this binary, not
    	// by dynamic linking or other "magic".  Plugins will be analyzed and
    	// initialized later.
    
    	// Each plugin can make use of VolumeConfig.  The single arg to this func contains *all* enumerated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:17:15 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/inittask.go

    		// Pick the lexicographically first initializable package.
    		s := h.pop(ldr)
    
    		// Add s to the schedule.
    		if ldr.SymSize(s) > 8 {
    			// Note: don't add s if it has no functions to run. We need
    			// s during linking to compute an ordering, but the runtime
    			// doesn't need to know about it. About 1/2 of stdlib packages
    			// fit in this bucket.
    			sched.AddAddr(ctxt.Arch, s)
    		}
    
    		// Find all incoming edges into s.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/tasks/InstallExecutable.java

            this.targetPlatform = objectFactory.property(NativePlatform.class);
            this.toolChain = objectFactory.property(NativeToolChain.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
    - 9K bytes
    - Viewed (0)
  7. ci/official/containers/linux_arm64/builder.devtoolset/build_devtoolset.sh

    # Link in architecture specific includes from the system; note that we cannot
    # link in the whole aarch64-linux-gnu folder, as otherwise we're overlaying
    # system gcc paths that we do not want to find.
    # TODO(klimek): Automate linking in all non-gcc / non-kernel include
    # directories.
    mkdir -p "${TARGET}/usr/include/aarch64-linux-gnu"
    PYTHON_VERSIONS=("python3.8" "python3.9" "python3.10" "python3.11")
    for v in "${PYTHON_VERSIONS[@]}"; do
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 29 00:26:34 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  8. src/cmd/objdump/objdump_test.go

    		t.Skipf("skipping on %s/%s, PIE buildmode not supported", runtime.GOOS, runtime.GOARCH)
    	}
    	if !platform.InternalLinkPIESupported(runtime.GOOS, runtime.GOARCH) {
    		// require cgo on platforms that PIE needs external linking
    		testenv.MustHaveCGO(t)
    	}
    	t.Parallel()
    	testDisasm(t, "fmthello.go", false, false, "-buildmode=pie")
    }
    
    func TestDisasmGoobj(t *testing.T) {
    	mustHaveDisasm(t)
    	testenv.MustHaveGoBuild(t)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. src/make.bash

    # build directive, in the build. Set it to 0 to ignore them.
    #
    # GO_EXTLINK_ENABLED: Set to 1 to invoke the host linker when building
    # packages that use cgo.  Set to 0 to do all linking internally.  This
    # controls the default behavior of the linker's -linkmode option.  The
    # default value depends on the system.
    #
    # GO_LDSO: Sets the default dynamic linker/loader (ld.so) to be used
    # by the internal linker.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:48:46 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_install_pkg_version.txt

    env GOFLAGS=
    ! go install -modfile=go.mod example.com/cmd/a@latest
    stderr '^go: -modfile cannot be used with commands that ignore the current module$'
    cd ..
    
    
    # Every test case requires linking, so we only cover the most important cases
    # when -short is set.
    [short] stop
    
    
    # 'go install pkg@version' works on a module that doesn't have a go.mod file
    # and with a module whose go.mod file has missing requirements.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 17:25:54 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top